Christian Decker [ARCHIVE] on Nostr: ๐
Original date posted:2019-12-04 ๐ Original message: ZmnSCPxj via ...
๐
Original date posted:2019-12-04
๐ Original message:
ZmnSCPxj via Lightning-dev <lightning-dev at lists.linuxfoundation.org> writes:
> Good morning Rusty,
>
>> ZmnSCPxj ZmnSCPxj at protonmail.com writes:
>>
>> > Good morning Rusty,
>> >
>> > > > Hi all,
>> > > > I recently revisited the eltoo paper and noticed some things related
>> > > > watchtowers that might affect channel construction.
>> > > > Due to NOINPUT, any update transaction can spend from any other, so
>> > > > in theory the tower only needs the most recent update txn to resolve
>> > > > any dispute.
>> > > > In order to spend, however, the tower must also produce a witness
>> > > > script which when hashed matches the witness program of the input. To
>> > > > ensure settlement txns can only spend from exactly one update txn,
>> > > > each update txn uses unique keys for the settlement clause, meaning
>> > > > that each state has a unique witness program.
>> > >
>> > > I didn't think this was the design. The update transaction can spend
>> > > any prior, with a fixed script, due to NOINPUT.
>> > > The settlement transaction does not use NOINPUT, and thus can only
>> > > spend the matching update.
>> >
>> > My understanding is that this is not logically possible?
>>
>> You're right, no wonder I missed this problem :(
>>
>> OK, so we need to change the key(s) every time. Can we tweak it based
>> on something the watchtower will know, i.e. something in the update tx
>> itself? Obviously not the output, as that would create a circular
>> dependency. Is there some taproot thing we can use to insert some
>> noise in the input?
>
> You could always add a taproot branch with a `OP_RETURN <randomness>` tapscript, which can never be used (thus has no effect on the overall security), but can inject randomness to the outer taproot key.
> This *is* secure, since bip-schnorr indicates that `e` is `h(R | P | m)`, with `P` being the pubkey itself, so that should be enough.
>
> Or why not BIP32 derivation?
> This should be just as secure.
I still fail to see the issue, update_tx and settlement_tx are
self-contained, and there is no need to recover the prevout scriptPubKey
or any value therein. Are we talking about things built on top of eltoo?
If that's the case, we need to use noinput/anyprevout anyway, so why not
just replicate the same logic and ship them bound correctly to the
watchtower?
I'd also argue that it's not a watchtower's job to finalize the entire
off-chain contract. It's main job is to watch the blockchain and react
should anything trigger it, while anything we build on top likely has
absolute locktimes (HTLCs have absolute timeouts), so it the client that
knows when it has to check back in and settle anything that happened.
Cheers,
Christian
Published at
2023-06-09 12:57:33Event JSON
{
"id": "041678c6ac513466f13a5f1c2621fc51cf6676cfb58e6d7f228e8952413af802",
"pubkey": "72cd40332ec782dd0a7f63acb03e3b6fdafa6d91bd1b6125cd8b7117a1bb8057",
"created_at": 1686315453,
"kind": 1,
"tags": [
[
"e",
"4c9eebfb07afa82296aae9348e1049e58998072c2cbd84edcebce5b362e0df8f",
"",
"root"
],
[
"e",
"b008c8773870a660d829f1732f5eb59d0530f1477fddb805564da115743e35bc",
"",
"reply"
],
[
"p",
"4505072744a9d3e490af9262bfe38e6ee5338a77177b565b6b37730b63a7b861"
]
],
"content": "๐
Original date posted:2019-12-04\n๐ Original message:\nZmnSCPxj via Lightning-dev \u003clightning-dev at lists.linuxfoundation.org\u003e writes:\n\u003e Good morning Rusty,\n\u003e\n\u003e\u003e ZmnSCPxj ZmnSCPxj at protonmail.com writes:\n\u003e\u003e\n\u003e\u003e \u003e Good morning Rusty,\n\u003e\u003e \u003e\n\u003e\u003e \u003e \u003e \u003e Hi all,\n\u003e\u003e \u003e \u003e \u003e I recently revisited the eltoo paper and noticed some things related\n\u003e\u003e \u003e \u003e \u003e watchtowers that might affect channel construction.\n\u003e\u003e \u003e \u003e \u003e Due to NOINPUT, any update transaction can spend from any other, so\n\u003e\u003e \u003e \u003e \u003e in theory the tower only needs the most recent update txn to resolve\n\u003e\u003e \u003e \u003e \u003e any dispute.\n\u003e\u003e \u003e \u003e \u003e In order to spend, however, the tower must also produce a witness\n\u003e\u003e \u003e \u003e \u003e script which when hashed matches the witness program of the input. To\n\u003e\u003e \u003e \u003e \u003e ensure settlement txns can only spend from exactly one update txn,\n\u003e\u003e \u003e \u003e \u003e each update txn uses unique keys for the settlement clause, meaning\n\u003e\u003e \u003e \u003e \u003e that each state has a unique witness program.\n\u003e\u003e \u003e \u003e\n\u003e\u003e \u003e \u003e I didn't think this was the design. The update transaction can spend\n\u003e\u003e \u003e \u003e any prior, with a fixed script, due to NOINPUT.\n\u003e\u003e \u003e \u003e The settlement transaction does not use NOINPUT, and thus can only\n\u003e\u003e \u003e \u003e spend the matching update.\n\u003e\u003e \u003e\n\u003e\u003e \u003e My understanding is that this is not logically possible?\n\u003e\u003e\n\u003e\u003e You're right, no wonder I missed this problem :(\n\u003e\u003e\n\u003e\u003e OK, so we need to change the key(s) every time. Can we tweak it based\n\u003e\u003e on something the watchtower will know, i.e. something in the update tx\n\u003e\u003e itself? Obviously not the output, as that would create a circular\n\u003e\u003e dependency. Is there some taproot thing we can use to insert some\n\u003e\u003e noise in the input?\n\u003e\n\u003e You could always add a taproot branch with a `OP_RETURN \u003crandomness\u003e` tapscript, which can never be used (thus has no effect on the overall security), but can inject randomness to the outer taproot key.\n\u003e This *is* secure, since bip-schnorr indicates that `e` is `h(R | P | m)`, with `P` being the pubkey itself, so that should be enough.\n\u003e\n\u003e Or why not BIP32 derivation?\n\u003e This should be just as secure.\n\nI still fail to see the issue, update_tx and settlement_tx are\nself-contained, and there is no need to recover the prevout scriptPubKey\nor any value therein. Are we talking about things built on top of eltoo?\n\nIf that's the case, we need to use noinput/anyprevout anyway, so why not\njust replicate the same logic and ship them bound correctly to the\nwatchtower?\n\nI'd also argue that it's not a watchtower's job to finalize the entire\noff-chain contract. It's main job is to watch the blockchain and react\nshould anything trigger it, while anything we build on top likely has\nabsolute locktimes (HTLCs have absolute timeouts), so it the client that\nknows when it has to check back in and settle anything that happened.\n\nCheers,\nChristian",
"sig": "1c1c057a6c6534e8c69da82a455005606629b5f8ce1e125ca6493f58d728f1d03ddbcb8c9cbe1e056ac7d289d0ca2b6cf5c40f8a2376bbae085acb87c98f079c"
}