-
Notifications
You must be signed in to change notification settings - Fork 16
/
module.go
181 lines (146 loc) · 5.6 KB
/
module.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*
Copyright 2022 Loophole Labs
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package scale
import (
"context"
"fmt"
"runtime"
"github.com/loopholelabs/scale/log"
interfaces "github.com/loopholelabs/scale-signature-interfaces"
"github.com/loopholelabs/polyglot"
"github.com/google/uuid"
"github.com/tetratelabs/wazero/api"
)
type module[T interfaces.Signature] struct {
// template is the template that the module
// was created from
template *template[T]
// instantiatedModule is the instantiated wasm module
instantiatedModule api.Module
// runFunction is the exported `run` function
runFunction api.Function
// resizeFunction is the exported `resize` function
resizeFunction api.Function
// function is set during the initialization of the module
function *function[T]
// signature is set during the initialization of the module
signature T
}
// newModule creates a new module
func newModule[T interfaces.Signature](ctx context.Context, template *template[T]) (*module[T], error) {
name := fmt.Sprintf("%s.%s", template.identifier, uuid.New().String())
config := template.runtime.moduleConfig.WithName(name)
for k, v := range template.env {
config = config.WithEnv(k, v)
}
if template.runtime.config.stdout != nil && !template.runtime.config.rawOutput {
config = config.WithStdout(log.NewNamedLogger(name, template.runtime.config.stdout))
}
if template.runtime.config.stderr != nil && !template.runtime.config.rawOutput {
config = config.WithStderr(log.NewNamedLogger(name, template.runtime.config.stderr))
}
instantiatedModule, err := template.runtime.runtime.InstantiateModule(ctx, template.compiled, config)
if err != nil {
return nil, fmt.Errorf("failed to instantiate module '%s': %w", template.identifier, err)
}
run := instantiatedModule.ExportedFunction("run")
resize := instantiatedModule.ExportedFunction("resize")
initialize := instantiatedModule.ExportedFunction("initialize")
if run == nil || resize == nil || initialize == nil {
return nil, fmt.Errorf("failed to find run, resize, or initialize implementations for function %s", template.identifier)
}
packed, err := initialize.Call(ctx)
if err != nil {
return nil, fmt.Errorf("failed to run initialize function for '%s': %w", template.identifier, err)
}
if packed[0] != 0 {
offset, length := unpackUint32(packed[0])
buf, ok := instantiatedModule.Memory().Read(offset, length)
if !ok {
return nil, fmt.Errorf("failed to read memory for function '%s'", template.identifier)
}
dec := polyglot.GetDecoder(buf)
valErr, err := dec.Error()
polyglot.ReturnDecoder(dec)
if err != nil {
return nil, fmt.Errorf("failed to decode error for function '%s': %w", template.identifier, err)
}
return nil, fmt.Errorf("failed to initialize function '%s': %s", template.identifier, valErr)
}
return &module[T]{
template: template,
instantiatedModule: instantiatedModule,
runFunction: run,
resizeFunction: resize,
}, nil
}
// run runs the module
//
// The signature of the module must be set before calling this function
func (m *module[T]) run(ctx context.Context) error {
buf := m.signature.Write()
writeBuffer, err := m.resizeFunction.Call(ctx, uint64(len(buf)))
if err != nil {
return fmt.Errorf("failed to allocate memory for function '%s': %w", m.template.identifier, err)
}
if !m.instantiatedModule.Memory().Write(uint32(writeBuffer[0]), buf) {
return fmt.Errorf("failed to write memory for function '%s'", m.template.identifier)
}
packed, err := m.runFunction.Call(ctx)
if err != nil {
return fmt.Errorf("failed to run function '%s': %w", m.template.identifier, err)
}
if packed[0] == 0 {
return fmt.Errorf("failed to run function '%s'", m.template.identifier)
}
ptr, length := unpackUint32(packed[0])
buf, ok := m.instantiatedModule.Memory().Read(ptr, length)
if !ok {
return fmt.Errorf("failed to read memory for function '%s'", m.template.identifier)
}
err = m.signature.Read(buf)
if err != nil {
return fmt.Errorf("error while running function '%s': %w", m.template.identifier, err)
}
return nil
}
// register sets the module's instance field and registers it as an active module with the runtime
func (m *module[T]) register(function *function[T]) {
m.function = function
m.template.runtime.activeModulesMu.Lock()
m.template.runtime.activeModules[m.instantiatedModule.Name()] = m
m.template.runtime.activeModulesMu.Unlock()
}
// cleanup removes the module from the runtime's active modules map
func (m *module[T]) cleanup() {
m.function = nil
m.template.runtime.activeModulesMu.Lock()
// m.instantiatedModule.CloseWithExitCode(m.template.runtime.config.context, 0)
delete(m.template.runtime.activeModules, m.instantiatedModule.Name())
m.template.runtime.activeModulesMu.Unlock()
}
// setSignature sets the module's signature
func (m *module[T]) setSignature(signature T) {
m.signature = signature
}
func (m *module[T]) EnsureSetFinalizer() {
runtime.SetFinalizer(m, func(m *module[T]) {
m.close(m)
})
}
func (m *module[T]) Close(_ *module[T]) {
_ = m.instantiatedModule.Close(context.Background())
}
func (m *module[T]) close(_ *module[T]) {
_ = m.instantiatedModule.Close(context.Background())
}