forked from wormhole-foundation/native-token-transfers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgovernance.rs
493 lines (443 loc) · 15.9 KB
/
governance.rs
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
//! General purpose governance program.
//!
//! This program is designed to be a generic governance program that can be used to
//! execute arbitrary instructions on behalf of a guardian set.
//! The program being governed simply needs to expose admin instructions that can be
//! invoked by a signer account (that's checked by the program's access control logic).
//!
//! If the signer is set to be the "governance" PDA of this program, then the governance
//! instruction is able to invoke the program's admin instructions.
//!
//! The instruction needs to be encoded in the VAA payload, with all the
//! accounts. These accounts may be in any order, with two placeholder accounts:
//! - [`OWNER`]: the program will replace this account with the governance PDA
//! - [`PAYER`]: the program will replace this account with the payer account
use std::io;
use anchor_lang::prelude::*;
use solana_program::instruction::Instruction;
use wormhole_anchor_sdk::wormhole::PostedVaa;
use wormhole_io::{Readable, Writeable};
use wormhole_sdk::{Chain, GOVERNANCE_EMITTER};
use crate::error::GovernanceError;
pub const OWNER: Pubkey = sentinel_pubkey(b"owner");
pub const PAYER: Pubkey = sentinel_pubkey(b"payer");
#[account]
#[derive(InitSpace)]
pub struct ReplayProtection {
pub bump: u8,
}
impl ReplayProtection {
pub const SEED_PREFIX: &'static [u8] = b"replay";
}
#[derive(Accounts)]
pub struct Governance<'info> {
#[account(mut)]
pub payer: Signer<'info>,
#[account(
mut,
seeds = [b"governance"],
bump,
)]
/// CHECK: governance PDA. This PDA has to be the owner assigned to the
/// governed program.
pub governance: AccountInfo<'info>,
#[account(
constraint = vaa.emitter_chain() == Into::<u16>::into(Chain::Solana) @ GovernanceError::InvalidGovernanceChain,
constraint = *vaa.emitter_address() == GOVERNANCE_EMITTER.0 @ GovernanceError::InvalidGovernanceEmitter,
constraint = vaa.payload.1.governance_program_id == crate::ID @ GovernanceError::InvalidGovernanceProgram,
)]
pub vaa: Account<'info, PostedVaa<GovernanceMessage>>,
#[account(executable)]
pub program: AccountInfo<'info>,
#[account(
init,
space = 8 + ReplayProtection::INIT_SPACE,
payer = payer,
seeds = [
ReplayProtection::SEED_PREFIX,
vaa.emitter_chain().to_be_bytes().as_ref(),
vaa.emitter_address().as_ref(),
vaa.sequence().to_be_bytes().as_ref()
],
bump
)]
pub replay: Account<'info, ReplayProtection>,
pub system_program: Program<'info, System>,
}
/// General purpose governance message to call arbitrary instructions on a governed program.
///
/// This message adheres to the Wormhole governance packet standard:
/// https://github.com/wormhole-foundation/wormhole/blob/main/whitepapers/0002_governance_messaging.md
///
/// The wire format for this message is:
/// | field | size (bytes) | description |
/// |-----------------+----------------------------------+-----------------------------------------|
/// | MODULE | 32 | Governance module identifier |
/// | ACTION | 1 | Governance action identifier |
/// | CHAIN | 2 | Chain identifier |
/// |-----------------+----------------------------------+-----------------------------------------|
/// | program_id | 32 | Program ID of the program to be invoked |
/// | accounts_length | 2 | Number of accounts |
/// | accounts | `accounts_length` * (32 + 1 + 1) | Accounts to be passed to the program |
/// | data_length | 2 | Length of the data |
/// | data | `data_length` | Data to be passed to the program |
///
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct GovernanceMessage {
pub governance_program_id: Pubkey,
pub program_id: Pubkey,
pub accounts: Vec<Acc>,
pub data: Vec<u8>,
}
impl GovernanceMessage {
// "GeneralPurposeGovernance" (left padded)
const MODULE: [u8; 32] = [
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x65, 0x6E, 0x65, 0x72, 0x61, 0x6C,
0x50, 0x75, 0x72, 0x70, 0x6F, 0x73, 0x65, 0x47, 0x6F, 0x76, 0x65, 0x72, 0x6E, 0x61, 0x6E,
0x63, 0x65,
];
pub fn read_body<R>(reader: &mut R, governance_program_id: Pubkey) -> io::Result<Self>
where
R: io::Read,
{
let program_id: Pubkey = Pubkey::new_from_array(Readable::read(reader)?);
let accounts_len: u16 = Readable::read(reader)?;
let mut accounts = Vec::with_capacity(accounts_len as usize);
for _ in 0..accounts_len {
let pubkey: [u8; 32] = Readable::read(reader)?;
let is_signer: bool = Readable::read(reader)?;
let is_writable: bool = Readable::read(reader)?;
accounts.push(Acc {
pubkey: Pubkey::new_from_array(pubkey),
is_signer,
is_writable,
});
}
let data_len: u16 = Readable::read(reader)?;
let mut data = vec![0; data_len as usize];
reader.read_exact(&mut data)?;
Ok(GovernanceMessage {
governance_program_id,
program_id,
accounts,
data,
})
}
/// Serialises the governance packet's body. This is the part of the packet
/// that will be fed into the guardian node (the header part is populated by
/// the node itself).
pub fn write_body<W>(&self, writer: &mut W) -> io::Result<()>
where
W: io::Write,
{
let GovernanceMessage {
governance_program_id: _,
program_id,
accounts,
data,
} = self;
program_id.to_bytes().write(writer)?;
u16::try_from(accounts.len())
.map_err(|_| io::Error::new(io::ErrorKind::InvalidData, "accounts length overflow"))?
.write(writer)?;
for acc in accounts {
acc.pubkey.to_bytes().write(writer)?;
acc.is_signer.write(writer)?;
acc.is_writable.write(writer)?;
}
u16::try_from(data.len())
.map_err(|_| io::Error::new(io::ErrorKind::InvalidData, "data length overflow"))?
.write(writer)?;
writer.write_all(data)
}
}
#[test]
fn test_governance_module() {
let s = "GeneralPurposeGovernance";
let mut module = [0; 32];
module[32 - s.len()..].copy_from_slice(s.as_bytes());
assert_eq!(module, GovernanceMessage::MODULE);
}
impl AnchorDeserialize for GovernanceMessage {
fn deserialize_reader<R: io::Read>(reader: &mut R) -> io::Result<Self> {
Readable::read(reader)
}
}
impl AnchorSerialize for GovernanceMessage {
fn serialize<W: io::Write>(&self, writer: &mut W) -> io::Result<()> {
Writeable::write(self, writer)
}
}
impl Readable for GovernanceMessage {
const SIZE: Option<usize> = None;
fn read<R>(reader: &mut R) -> io::Result<Self>
where
Self: Sized,
R: io::Read,
{
let module: [u8; 32] = Readable::read(reader)?;
if module != Self::MODULE {
return Err(io::Error::new(
io::ErrorKind::InvalidData,
"Invalid GovernanceMessage module",
));
}
let action: GovernanceAction = Readable::read(reader)?;
if action != GovernanceAction::SolanaCall {
return Err(io::Error::new(
io::ErrorKind::InvalidData,
"Invalid GovernanceAction",
));
}
let chain: u16 = Readable::read(reader)?;
if Chain::from(chain) != Chain::Solana {
return Err(io::Error::new(
io::ErrorKind::InvalidData,
"Invalid GovernanceMessage chain",
));
}
let governance_program_id = Pubkey::new_from_array(Readable::read(reader)?);
Self::read_body(reader, governance_program_id)
}
}
impl Writeable for GovernanceMessage {
fn written_size(&self) -> usize {
Self::MODULE.len()
+ GovernanceAction::SIZE.unwrap() // action
+ u16::SIZE.unwrap() // chain
+ <[u8; 32]>::SIZE.unwrap() // program_id
+ u16::SIZE.unwrap() // accounts_len
+ self.accounts.iter() // accounts
.map(|_| 32 + 1 + 1).sum::<usize>()
+ u16::SIZE.unwrap() // data_len
+ self.data.len() // data
}
fn write<W>(&self, writer: &mut W) -> io::Result<()>
where
W: io::Write,
{
Self::MODULE.write(writer)?;
GovernanceAction::SolanaCall.write(writer)?;
u16::from(Chain::Solana).write(writer)?;
self.governance_program_id.to_bytes().write(writer)?;
self.write_body(writer)
}
}
#[test]
fn test_governance_message_serde() {
let program_id = Pubkey::new_unique();
let accounts = vec![
Acc {
pubkey: Pubkey::new_unique(),
is_signer: true,
is_writable: true,
},
Acc {
pubkey: Pubkey::new_unique(),
is_signer: false,
is_writable: true,
},
];
let data = vec![1, 2, 3, 4, 5];
let msg = GovernanceMessage {
governance_program_id: crate::ID,
program_id,
accounts,
data,
};
let mut buf = Vec::new();
msg.serialize(&mut buf).unwrap();
let msg2 = GovernanceMessage::deserialize(&mut buf.as_slice()).unwrap();
assert_eq!(msg, msg2);
}
#[test]
fn test_governance_message_parse_guardian() {
// hex dumped from guardian node with the following protoxt:
// ```
// current_set_index: 4
// # generic solana call
// messages: {
// sequence: 4513077582118919631
// nonce: 2809988562
// solana_call: {
// chain_id: 1
// governance_contract: "wgvEiKVzX9yyEoh41jZAdC6JqGUTS4CFXbFGBV5TKdZ"
// encoded_instruction: "00000000000000010000000000000000000000000000000000000000000000000002000000000000000200000000000000000000000000000000000000000000000001010000000000000003000000000000000000000000000000000000000000000000000100050102030405"
// }
// }
// ```
// TODO: once this program is moved into the monorepo, do an e2e integration test
let h = hex::decode("000000000000000047656e6572616c507572706f7365476f7665726e616e63650200010e027fbc6b1e61365d4b0680a3179f791b15796f93e24e9b441e3fa04ccda4a000000000000000010000000000000000000000000000000000000000000000000002000000000000000200000000000000000000000000000000000000000000000001010000000000000003000000000000000000000000000000000000000000000000000100050102030405").unwrap();
let actual = GovernanceMessage::deserialize(&mut h.as_slice()).unwrap();
let accounts = vec![
Acc {
pubkey: Pubkey::try_from("1111111ogCyDbaRMvkdsHB3qfdyFYaG1WtRUAfdh").unwrap(),
is_signer: true,
is_writable: true,
},
Acc {
pubkey: Pubkey::try_from("11111112D1oxKts8YPdTJRG5FzxTNpMtWmq8hkVx3").unwrap(),
is_signer: false,
is_writable: true,
},
];
let data = vec![1, 2, 3, 4, 5];
let expected = GovernanceMessage {
governance_program_id: crate::ID,
program_id: Pubkey::try_from("1111111QLbz7JHiBTspS962RLKV8GndWFwiEaqKM").unwrap(),
accounts,
data,
};
assert_eq!(actual, expected)
}
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
/// The known set of governance actions.
///
/// As the governance logic is expanded to more runtimes, it's important to keep
/// them in sync, at least the newer ones should ensure they don't overlap with
/// the existing ones.
///
/// Existing implementations are not strongly required to be updated to be aware
/// of new actions (as they will never need to know the action indices higher
/// than the one corresponding to the current runtime), but it's good practice.
///
/// When adding a new runtime, make sure to at least update in the README.md
pub enum GovernanceAction {
Undefined,
EvmCall,
SolanaCall,
}
impl Readable for GovernanceAction {
const SIZE: Option<usize> = Some(1);
fn read<R>(reader: &mut R) -> io::Result<Self>
where
Self: Sized,
R: io::Read,
{
match Readable::read(reader)? {
0u8 => Ok(GovernanceAction::Undefined),
1 => Ok(GovernanceAction::EvmCall),
2 => Ok(GovernanceAction::SolanaCall),
n => Err(io::Error::new(
io::ErrorKind::InvalidData,
format!("invalid action {}", n),
)),
}
}
}
impl Writeable for GovernanceAction {
fn written_size(&self) -> usize {
Self::SIZE.unwrap()
}
fn write<W>(&self, writer: &mut W) -> io::Result<()>
where
W: io::Write,
{
match self {
GovernanceAction::Undefined => Ok(()),
GovernanceAction::EvmCall => 1u8.write(writer),
GovernanceAction::SolanaCall => 2u8.write(writer),
}
}
}
impl From<GovernanceMessage> for Instruction {
fn from(val: GovernanceMessage) -> Self {
let GovernanceMessage {
governance_program_id,
program_id,
accounts,
data,
} = val;
assert_eq!(governance_program_id, crate::ID);
let accounts: Vec<AccountMeta> = accounts.into_iter().map(|a| a.into()).collect();
Instruction {
program_id,
accounts,
data,
}
}
}
impl From<Instruction> for GovernanceMessage {
fn from(instruction: Instruction) -> GovernanceMessage {
let Instruction {
program_id,
accounts,
data,
} = instruction;
let accounts: Vec<Acc> = accounts.into_iter().map(|a| a.into()).collect();
GovernanceMessage {
governance_program_id: crate::ID,
program_id,
accounts,
data,
}
}
}
/// A copy of [`solana_program::instruction::AccountMeta`] with
/// `AccountSerialize`/`AccountDeserialize` impl.
/// Would be nice to just use the original, but it lacks these traits.
#[derive(AnchorSerialize, AnchorDeserialize, Clone, Debug, PartialEq, Eq)]
pub struct Acc {
pub pubkey: Pubkey,
pub is_signer: bool,
pub is_writable: bool,
}
impl From<Acc> for AccountMeta {
fn from(val: Acc) -> Self {
let Acc {
pubkey,
is_signer,
is_writable,
} = val;
AccountMeta {
pubkey,
is_signer,
is_writable,
}
}
}
impl From<AccountMeta> for Acc {
fn from(account_meta: AccountMeta) -> Acc {
let AccountMeta {
pubkey,
is_signer,
is_writable,
} = account_meta;
Acc {
pubkey,
is_signer,
is_writable,
}
}
}
pub fn governance<'info>(ctx: Context<'_, '_, '_, 'info, Governance<'info>>) -> Result<()> {
let vaa_data = ctx.accounts.vaa.data();
let mut instruction: Instruction = vaa_data.clone().into();
ctx.accounts.replay.set_inner(ReplayProtection {
bump: ctx.bumps.replay,
});
instruction.accounts.iter_mut().for_each(|acc| {
if acc.pubkey == OWNER {
acc.pubkey = ctx.accounts.governance.key();
} else if acc.pubkey == PAYER {
acc.pubkey = ctx.accounts.payer.key();
}
});
let mut all_account_infos = ctx.accounts.to_account_infos();
all_account_infos.extend_from_slice(ctx.remaining_accounts);
solana_program::program::invoke_signed(
&instruction,
&all_account_infos,
&[&[b"governance", &[ctx.bumps.governance]]],
)?;
Ok(())
}
const fn sentinel_pubkey(input: &[u8]) -> Pubkey {
let mut output: [u8; 32] = [0; 32];
let mut i = 0;
while i < input.len() {
output[i] = input[i];
i += 1;
}
Pubkey::new_from_array(output)
}