-
Notifications
You must be signed in to change notification settings - Fork 214
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Operator attestation policy #10721
Operator attestation policy #10721
Changes from all commits
caf6d7a
621e22f
0b57a65
1e52a41
fb4ff30
bc28201
cd2a40c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import { makeTracer } from '@agoric/internal'; | ||
import { prepareDurablePublishKit } from '@agoric/notifier'; | ||
import { M } from '@endo/patterns'; | ||
import { keyEQ, M } from '@endo/patterns'; | ||
import { Fail } from '@endo/errors'; | ||
import { CctpTxEvidenceShape } from '../type-guards.js'; | ||
import { defineInertInvitation } from '../utils/zoe.js'; | ||
import { prepareOperatorKit } from './operator-kit.js'; | ||
|
@@ -18,7 +19,7 @@ export const INVITATION_MAKERS_DESC = 'oracle operator invitation'; | |
|
||
const TransactionFeedKitI = harden({ | ||
operatorPowers: M.interface('Transaction Feed Admin', { | ||
submitEvidence: M.call(CctpTxEvidenceShape, M.any()).returns(), | ||
attest: M.call(CctpTxEvidenceShape, M.string()).returns(), | ||
}), | ||
creator: M.interface('Transaction Feed Creator', { | ||
// TODO narrow the return shape to OperatorKit | ||
|
@@ -118,23 +119,16 @@ export const prepareTransactionFeedKit = (zone, zcf) => { | |
/** | ||
* Add evidence from an operator. | ||
* | ||
* NB: the operatorKit is responsible for | ||
* | ||
* @param {CctpTxEvidence} evidence | ||
* @param {OperatorKit} operatorKit | ||
* @param {string} operatorId | ||
*/ | ||
submitEvidence(evidence, operatorKit) { | ||
const { pending } = this.state; | ||
trace( | ||
'submitEvidence', | ||
operatorKit.operator.getStatus().operatorId, | ||
evidence, | ||
); | ||
const { operatorId } = operatorKit.operator.getStatus(); | ||
|
||
// TODO should this verify that the operator is one made by this exo? | ||
// This doesn't work... | ||
// operatorKit === operators.get(operatorId) || | ||
// Fail`operatorKit mismatch`; | ||
attest(evidence, operatorId) { | ||
const { operators, pending } = this.state; | ||
trace('submitEvidence', operatorId, evidence); | ||
|
||
// TODO https://github.com/Agoric/agoric-sdk/pull/10720 | ||
// TODO validate that it's a valid for Fast USDC before accepting | ||
// E.g. that the `recipientAddress` is the FU settlement account and that | ||
// the EUD is a chain supported by FU. | ||
|
@@ -154,18 +148,46 @@ export const prepareTransactionFeedKit = (zone, zcf) => { | |
const found = [...pending.values()].filter(store => | ||
store.has(txHash), | ||
); | ||
// TODO determine the real policy for checking agreement | ||
if (found.length < pending.getSize()) { | ||
// not all have seen it | ||
const minAttestations = Math.ceil(operators.getSize() / 2); | ||
trace( | ||
'transaction', | ||
txHash, | ||
'has', | ||
found.length, | ||
'of', | ||
minAttestations, | ||
'necessary attestations', | ||
); | ||
if (found.length < minAttestations) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this seems to be the gist of it. |
||
return; | ||
} | ||
|
||
// TODO verify that all found deep equal | ||
let lastEvidence; | ||
for (const store of found) { | ||
const next = store.get(txHash); | ||
if (lastEvidence) { | ||
if (keyEQ(lastEvidence, next)) { | ||
lastEvidence = next; | ||
} else { | ||
trace( | ||
'🚨 conflicting evidence for', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is this a red-alert situation? It seems like we recover: we don't act on inconsistent evidence. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it deserves immediate operational attention if two oracles are disagreeing. At least one is unreliable and may require immediate action. |
||
txHash, | ||
':', | ||
lastEvidence, | ||
'!=', | ||
next, | ||
Comment on lines
+176
to
+178
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. if we have to use this in anger, I expect we'll want to see which operator submitted which evidence. is that already traced? |
||
); | ||
Fail`conflicting evidence for ${txHash}`; | ||
} | ||
} | ||
lastEvidence = next; | ||
} | ||
|
||
// all agree, so remove from pending and publish | ||
for (const pendingStore of pending.values()) { | ||
pendingStore.delete(txHash); | ||
// sufficient agreement, so remove from pending and publish | ||
for (const store of found) { | ||
Comment on lines
-166
to
+187
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the change from |
||
store.delete(txHash); | ||
} | ||
trace('publishing evidence', evidence); | ||
publisher.publish(evidence); | ||
}, | ||
}, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,3 +156,11 @@ export const configurations = { | |
}, | ||
}; | ||
harden(configurations); | ||
|
||
// Constraints on the configurations | ||
const MAINNET_EXPECTED_ORACLES = 3; | ||
assert( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
new Set(Object.values(configurations.MAINNET.oracles)).size === | ||
MAINNET_EXPECTED_ORACLES, | ||
`Mainnet must have exactly ${MAINNET_EXPECTED_ORACLES} oracles`, | ||
); |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,50 +47,87 @@ test('happy aggregation', async t => { | |
const evidenceSubscriber = feedKit.public.getEvidenceSubscriber(); | ||
|
||
const { op1, op2, op3 } = await makeOperators(feedKit); | ||
const evidence = MockCctpTxEvidences.AGORIC_PLUS_OSMO(); | ||
const results = await Promise.all([ | ||
op1.operator.submitEvidence(evidence), | ||
op2.operator.submitEvidence(evidence), | ||
op3.operator.submitEvidence(evidence), | ||
]); | ||
t.deepEqual(results, [undefined, undefined, undefined]); | ||
|
||
const e1 = MockCctpTxEvidences.AGORIC_PLUS_OSMO(); | ||
op1.operator.submitEvidence(e1); | ||
op2.operator.submitEvidence(e1); | ||
|
||
// Publishes with 2 of 3 | ||
const accepted = await evidenceSubscriber.getUpdateSince(0); | ||
t.deepEqual(accepted, { | ||
value: evidence, | ||
value: e1, | ||
updateCount: 1n, | ||
}); | ||
|
||
// verify that it doesn't publish until three match | ||
await Promise.all([ | ||
// once it publishes, it doesn't remember that it already saw these | ||
op1.operator.submitEvidence(evidence), | ||
op2.operator.submitEvidence(evidence), | ||
// but this time the third is different | ||
op3.operator.submitEvidence(MockCctpTxEvidences.AGORIC_PLUS_DYDX()), | ||
]); | ||
// Now third operator catches up with same evidence already published | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I haven't thought carefully about whether this is sufficient test coverage. |
||
op3.operator.submitEvidence(e1); | ||
t.like(await evidenceSubscriber.getUpdateSince(0), { | ||
// Update count is still 1 | ||
// The confirming evidence doesn't change anything | ||
updateCount: 1n, | ||
}); | ||
await op3.operator.submitEvidence(evidence); | ||
|
||
const e2 = MockCctpTxEvidences.AGORIC_PLUS_DYDX(); | ||
assert(e1.txHash !== e2.txHash); | ||
op1.operator.submitEvidence(e2); | ||
t.like(await evidenceSubscriber.getUpdateSince(0), { | ||
// op1 attestation insufficient | ||
updateCount: 1n, | ||
}); | ||
}); | ||
|
||
test('disagreement', async t => { | ||
const feedKit = makeFeedKit(); | ||
const { op1, op2 } = await makeOperators(feedKit); | ||
const e1 = MockCctpTxEvidences.AGORIC_PLUS_OSMO(); | ||
const e1bad = { ...e1, tx: { ...e1.tx, amount: 999_999_999n } }; | ||
assert(e1.txHash === e1bad.txHash); | ||
op1.operator.submitEvidence(e1); | ||
|
||
t.throws(() => op2.operator.submitEvidence(e1bad), { | ||
message: | ||
'conflicting evidence for "0xc81bc6105b60a234c7c50ac17816ebcd5561d366df8bf3be59ff387552761702"', | ||
}); | ||
}); | ||
|
||
test('disagreement after publishing', async t => { | ||
const feedKit = makeFeedKit(); | ||
const evidenceSubscriber = feedKit.public.getEvidenceSubscriber(); | ||
const { op1, op2, op3 } = await makeOperators(feedKit); | ||
const e1 = MockCctpTxEvidences.AGORIC_PLUS_OSMO(); | ||
const e1bad = { ...e1, tx: { ...e1.tx, amount: 999_999_999n } }; | ||
assert(e1.txHash === e1bad.txHash); | ||
op1.operator.submitEvidence(e1); | ||
op2.operator.submitEvidence(e1); | ||
|
||
t.like(await evidenceSubscriber.getUpdateSince(0), { | ||
updateCount: 1n, | ||
}); | ||
|
||
// it's simply ignored | ||
t.notThrows(() => op3.operator.submitEvidence(e1bad)); | ||
t.like(await evidenceSubscriber.getUpdateSince(0), { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why ask for updates since 0 again? isn't the n+1th call supposed to pass in the updateCount from the nth call? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's just a handy way to ask for the latest without risk of a hanging await while writing tests |
||
updateCount: 1n, | ||
}); | ||
|
||
// now another op repeats the bad evidence, so it's published to the stream. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ooh. tricky. |
||
// It's the responsibility of the Advancer to fail because it has already processed that tx hash. | ||
op1.operator.submitEvidence(e1bad); | ||
t.like(await evidenceSubscriber.getUpdateSince(0), { | ||
updateCount: 2n, | ||
}); | ||
}); | ||
|
||
// TODO: find a way to get this working | ||
test.skip('forged source', async t => { | ||
test('disabled operator', async t => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. good; the "unknown transaction" test mixed in testing this, and I wondered about reducing coverage. |
||
const feedKit = makeFeedKit(); | ||
const { op1 } = await makeOperators(feedKit); | ||
const evidence = MockCctpTxEvidences.AGORIC_PLUS_OSMO(); | ||
|
||
// op1 is different than the facets object the evidence must come from | ||
t.throws(() => | ||
feedKit.operatorPowers.submitEvidence( | ||
evidence, | ||
// @ts-expect-error XXX Types of property '[GET_INTERFACE_GUARD]' are incompatible. | ||
op1, | ||
), | ||
); | ||
// works before disabling | ||
op1.operator.submitEvidence(evidence); | ||
|
||
op1.admin.disable(); | ||
|
||
t.throws(() => op1.operator.submitEvidence(evidence), { | ||
message: 'submitEvidence for disabled operator', | ||
}); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for... what?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I must have gotten a Slack notification!
I'll get that in before merge. I'll probably wait for another reviewer's comments before pushing again.