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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
use anyhow::bail;
use aptos_types::transaction::ModuleBundle;
use aptos_types::vm_status::StatusCode;
use better_any::{Tid, TidAble};
use move_deps::move_binary_format::errors::PartialVMError;
use move_deps::move_vm_types::pop_arg;
use move_deps::move_vm_types::values::Struct;
use move_deps::{
move_binary_format::errors::PartialVMResult,
move_core_types::account_address::AccountAddress,
move_vm_runtime::native_functions::{NativeContext, NativeFunction},
move_vm_types::{
loaded_data::runtime_types::Type, natives::function::NativeResult, values::Value,
},
};
use serde::{Deserialize, Serialize};
use smallvec::smallvec;
use std::collections::{BTreeSet, VecDeque};
use std::fmt;
use std::str::FromStr;
use std::sync::Arc;
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct PackageRegistry {
pub packages: Vec<PackageMetadata>,
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct PackageMetadata {
pub name: String,
pub upgrade_policy: UpgradePolicy,
pub build_info: String,
pub manifest: String,
pub modules: Vec<ModuleMetadata>,
#[serde(with = "serde_bytes")]
pub error_map: Vec<u8>,
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct ModuleMetadata {
pub name: String,
pub source: String,
#[serde(with = "serde_bytes")]
pub source_map: Vec<u8>,
#[serde(with = "serde_bytes")]
pub abi: Vec<u8>,
}
#[derive(Clone, Copy, Debug, Serialize, Deserialize)]
pub struct UpgradePolicy {
pub policy: u8,
}
impl UpgradePolicy {
pub fn no_compat() -> Self {
UpgradePolicy { policy: 0 }
}
pub fn compat() -> Self {
UpgradePolicy { policy: 1 }
}
pub fn immutable() -> Self {
UpgradePolicy { policy: 2 }
}
}
impl FromStr for UpgradePolicy {
type Err = anyhow::Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"arbitrary" => Ok(UpgradePolicy::no_compat()),
"compatible" => Ok(UpgradePolicy::compat()),
"immutable" => Ok(UpgradePolicy::immutable()),
_ => bail!("unknown policy"),
}
}
}
impl fmt::Display for UpgradePolicy {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str(match self.policy {
0 => "arbitrary",
1 => "compatible",
_ => "immutable",
})
}
}
const EALREADY_REQUESTED: u64 = 0x03_0000;
const CHECK_COMPAT_POLICY: u8 = 1;
#[derive(Tid, Default)]
pub struct NativeCodeContext {
pub requested_module_bundle: Option<PublishRequest>,
}
pub struct PublishRequest {
pub destination: AccountAddress,
pub bundle: ModuleBundle,
pub expected_modules: BTreeSet<String>,
pub check_compat: bool,
}
fn get_move_string(v: Value) -> PartialVMResult<String> {
let bytes = v
.value_as::<Struct>()?
.unpack()?
.next()
.ok_or_else(|| PartialVMError::new(StatusCode::INTERNAL_TYPE_ERROR))?
.value_as::<Vec<u8>>()?;
String::from_utf8(bytes).map_err(|_| PartialVMError::new(StatusCode::INTERNAL_TYPE_ERROR))
}
#[derive(Clone, Debug)]
pub struct RequestPublishGasParameters {
pub base_cost: u64,
pub unit_cost: u64,
}
fn native_request_publish(
gas_params: &RequestPublishGasParameters,
context: &mut NativeContext,
_ty_args: Vec<Type>,
mut args: VecDeque<Value>,
) -> PartialVMResult<NativeResult> {
debug_assert_eq!(args.len(), 4);
let policy = pop_arg!(args, u8);
let mut code = vec![];
for module in pop_arg!(args, Vec<Value>) {
code.push(module.value_as::<Vec<u8>>()?);
}
let mut expected_modules = BTreeSet::new();
for name in pop_arg!(args, Vec<Value>) {
expected_modules.insert(get_move_string(name)?);
}
let cost = gas_params.base_cost
+ gas_params.unit_cost
* code
.iter()
.fold(0, |acc, module_code| acc + module_code.len()) as u64
+ gas_params.unit_cost
* expected_modules
.iter()
.fold(0, |acc, name| acc + name.len()) as u64;
let destination = pop_arg!(args, AccountAddress);
let code_context = context.extensions_mut().get_mut::<NativeCodeContext>();
if code_context.requested_module_bundle.is_some() {
return Ok(NativeResult::err(cost, EALREADY_REQUESTED));
}
code_context.requested_module_bundle = Some(PublishRequest {
destination,
bundle: ModuleBundle::new(code),
expected_modules,
check_compat: policy == CHECK_COMPAT_POLICY,
});
Ok(NativeResult::ok(cost, smallvec![]))
}
pub fn make_native_request_publish(gas_params: RequestPublishGasParameters) -> NativeFunction {
Arc::new(move |context, ty_args, args| {
native_request_publish(&gas_params, context, ty_args, args)
})
}
#[derive(Debug, Clone)]
pub struct GasParameters {
pub request_publish: RequestPublishGasParameters,
}
pub fn make_all(gas_params: GasParameters) -> impl Iterator<Item = (String, NativeFunction)> {
let natives = [(
"request_publish",
make_native_request_publish(gas_params.request_publish),
)];
crate::natives::helpers::make_module_natives(natives)
}