Received: from sog-mx-2.v43.ch3.sourceforge.com ([172.29.43.192] helo=mx.sourceforge.net) by sfs-ml-4.v29.ch3.sourceforge.com with esmtp (Exim 4.76) (envelope-from ) id 1USYIy-0002yd-Ts for bitcoin-development@lists.sourceforge.net; Wed, 17 Apr 2013 19:46:08 +0000 Received-SPF: pass (sog-mx-2.v43.ch3.sourceforge.com: domain of gmail.com designates 209.85.216.48 as permitted sender) client-ip=209.85.216.48; envelope-from=etotheipi@gmail.com; helo=mail-qa0-f48.google.com; Received: from mail-qa0-f48.google.com ([209.85.216.48]) by sog-mx-2.v43.ch3.sourceforge.com with esmtps (TLSv1:RC4-SHA:128) (Exim 4.76) id 1USYIx-0004KE-4W for bitcoin-development@lists.sourceforge.net; Wed, 17 Apr 2013 19:46:08 +0000 Received: by mail-qa0-f48.google.com with SMTP id bn16so1088449qab.7 for ; Wed, 17 Apr 2013 12:46:01 -0700 (PDT) X-Received: by 10.224.221.136 with SMTP id ic8mr7853542qab.17.1366227961647; Wed, 17 Apr 2013 12:46:01 -0700 (PDT) Received: from [192.168.1.85] (c-76-111-96-126.hsd1.md.comcast.net. [76.111.96.126]) by mx.google.com with ESMTPS id e2sm9032627qey.3.2013.04.17.12.46.00 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 17 Apr 2013 12:46:00 -0700 (PDT) Message-ID: <516EFBB8.8060805@gmail.com> Date: Wed, 17 Apr 2013 15:44:56 -0400 From: Alan Reiner User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130329 Thunderbird/17.0.5 MIME-Version: 1.0 To: bitcoin-development@lists.sourceforge.net References: <453bfc69-b2ab-4992-9807-55270fbda0db@email.android.com> In-Reply-To: X-Enigmail-Version: 1.5.1 Content-Type: multipart/alternative; boundary="------------000300000603010002000707" X-Spam-Score: -0.6 (/) X-Spam-Report: Spam Filtering performed by mx.sourceforge.net. See http://spamassassin.org/tag/ for more details. -1.5 SPF_CHECK_PASS SPF reports sender host as permitted sender for sender-domain 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (etotheipi[at]gmail.com) -0.0 SPF_PASS SPF: sender matches SPF record 1.0 HTML_MESSAGE BODY: HTML included in message -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature X-Headers-End: 1USYIx-0004KE-4W Subject: Re: [Bitcoin-development] Anti DoS for tx replacement X-BeenThere: bitcoin-development@lists.sourceforge.net X-Mailman-Version: 2.1.9 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Apr 2013 19:46:09 -0000 This is a multi-part message in MIME format. --------------000300000603010002000707 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit One of the big topics of recent past on IRC is "malleability" of transactions: to what extent can someone /else /change your signed transaction without affecting its validity? In the past I used to consider this just annoying, but not so malicious. But in terms of HFT, it sounds like malicious behavior is possible: To recap the procedure: (1) Alice creates a transaction, Tx1, for 10 BTC to a 2-of-2-{Alice, Bob} address. It has a locktime of 30 days in the future. (2) Before signing the transaction, she gets Bob to sign a transaction, Tx2, from 2-of-2-{Alice, Bob} back to herself. That transaction references the Tx1 by hash. (3) Any time in the next 30 days, Alice can sign an alternate Tx2 transactions reducing the amount returned to self and increasing amount to Bob, as a method of paying Bob more. Bob doesn't need to broadcast anything except for the last one, 29 days later. It was originally conceived that Bob couldn't do anything malicious, because Alice gets Bob to sign Tx2-spending-Tx1 before she gives him Tx1. The problem is that Bob can follow her process, then broadcast/mine Tx1' (Tx1-prime), which has a different number of 0x00 pad bytes in the signatures, or "flips the sign" of one of the s-values in the signature, thus changing the hash of Tx1. By doing this, Bob has now created a transaction, Tx1', that Tx2 no longer returns to Alice. It's not flat-out theft, because Tx1 still sends to a 2-of-2 address requiring both of their signatures. But Bob didn't risk anything to do this, besides his reputation/trust. He now has Alice's money locked and can hold it for ransom, since she needs his signature to do move it. He could offer his signature for half of it. Of course, these types of HFT contracts will usually be between parties that have some mutual respect/history. Thus, they are not usually zero-trust. But we should find a way to try to close that, if possible. For instance, if the malleability was reduced to one bit, you could just have Bob sign two different transactions before Alice broadcasts Tx1. The two tx would be from either variant. But I know there's too many bits of malleability in the transaction serialization for that to work. Is there any way to avoid this? -Alan On 04/17/2013 05:48 AM, Mike Hearn wrote: > When this system was first being discussed, Gavin was concerned that > miner incentives were to ignore replacements because it meant extra > work and the replacement might have equal or lower fees than before > (or indeed, no fees). He proposed two solutions: one is to > progressively raise the fee on each replacement. The other is to > specify lock time in terms of blocks and then step it backwards once > for each replacement, thus ensuring that by replacing the transaction > you get to claim any attached fee earlier. > > It should be apparent that both solutions can be implemented by > whichever application is running the contract - the core Bitcoin > network and software is agnostic either way. > > Now, Gavin and I disagreed on whether this would actually be > necessary. As I already pointed out, both solutions seriously reduce > the utility of HFT because they limit how often you can update the > contract. Instead of an online game billing you per second, maybe it > can only do it per minute or per 10 minutes with the lock time > solution because otherwise you run out of blocks, and with > ever-increasing fees perhaps the contract becomes too expensive to > justify after a while. > > So it'd be nice if this ended up not being necessary. Experience > indicates that rational miners typically don't pursue a short-termist > profit-at-any-cost agenda - free transactions have always been > included in blocks, miners include transactions even though you could > avoid a lot of complexity by just not including any at all, etc. Some > miners like BTC Guild have actually sacrificed significant amounts of > money for the good of the system. You can see this in terms of > rational self interest - miners earn Bitcoins thus it's in their > interest for Bitcoins to be as useful as possible, as that is what > gives them value. Or you can see it in terms of ideologically-driven > altruism. Or both. > > If I were to implement an application that used tx replacement, I > would probably start with replacements that don't change the fees and > don't count down the lock time field. We can then observe whether > miners bother changing their software to behave differently, or > whether the inherent utility of the application is enough to convince > them to play by the default rules. Ideally at least one application > made possible by this feature is a "killer app" - something so useful > / unique / compelling that people want to obtain Bitcoin just to use > it. If someone can find such an app, then rational miners should want > tx replacement to work as reliably as possible because it boosts the > value of their earnings. > > There are some other misc details - reactivation requires that we bump > the protocol version and start relaying non-final transactions to new > nodes again. Those nodes should relay replacements but not let them > enter wallets unless/until the wallet software itself can handle them > better, for instance, by communicating via APIs anticipated > confirmation times. This is something for individual wallet APIs to > handle on their own, and just ignoring non-final transactions is a > perfectly workable approach for Bitcoin-Qt. > > > ------------------------------------------------------------------------------ > Precog is a next-generation analytics platform capable of advanced > analytics on semi-structured data. The platform includes APIs for building > apps and a phenomenal toolset for data science. Developers can use > our toolset for easy data analysis & visualization. Get a free account! > http://www2.precog.com/precogplatform/slashdotnewsletter > > > _______________________________________________ > Bitcoin-development mailing list > Bitcoin-development@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/bitcoin-development --------------000300000603010002000707 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit One of the big topics of recent past on IRC is "malleability" of transactions:  to what extent can someone else change your signed transaction without affecting its validity?  In the past I used to consider this just annoying, but not so malicious.  But in terms of HFT, it sounds like malicious behavior is possible:

To recap the procedure:

(1)  Alice creates a transaction, Tx1, for 10 BTC to a 2-of-2-{Alice, Bob} address.  It has a locktime of 30 days in the future.
(2)  Before signing the transaction, she gets Bob to sign a transaction, Tx2, from 2-of-2-{Alice, Bob} back to herself.   That transaction references the Tx1 by hash.
(3)  Any time in the next 30 days, Alice can sign an alternate Tx2 transactions reducing the amount returned to self and increasing amount to Bob, as a method of paying Bob more.  Bob doesn't need to broadcast anything except for the last one, 29 days later.

It was originally conceived that Bob couldn't do anything malicious, because Alice gets Bob to sign Tx2-spending-Tx1 before she gives him Tx1.  The problem is that Bob can follow her process, then broadcast/mine Tx1' (Tx1-prime), which has a different number of 0x00 pad bytes in the signatures, or "flips the sign" of one of the s-values in the signature, thus changing the hash of Tx1.

By doing this, Bob has now created a transaction, Tx1', that Tx2 no longer returns to Alice.  It's not flat-out theft, because Tx1 still sends to a 2-of-2 address requiring both of their signatures.  But Bob didn't risk anything to do this, besides his reputation/trust.  He now has Alice's money locked and can hold it for ransom, since she needs his signature to do move it.  He could offer his signature for half of it.

Of course, these types of HFT contracts will usually be between parties that have some mutual respect/history.  Thus, they are not usually zero-trust.   But we should find a way to try to close that, if possible.  For instance, if the malleability was reduced to one bit, you could just have Bob sign two different transactions before Alice broadcasts Tx1.  The two tx would be from either variant.  But I know there's too many bits of malleability in the transaction serialization for that to work.  Is there any way to avoid this?

-Alan



On 04/17/2013 05:48 AM, Mike Hearn wrote:
When this system was first being discussed, Gavin was concerned that miner incentives were to ignore replacements because it meant extra work and the replacement might have equal or lower fees than before (or indeed, no fees). He proposed two solutions: one is to progressively raise the fee on each replacement. The other is to specify lock time in terms of blocks and then step it backwards once for each replacement, thus ensuring that by replacing the transaction you get to claim any attached fee earlier.

It should be apparent that both solutions can be implemented by whichever application is running the contract - the core Bitcoin network and software is agnostic either way.

Now, Gavin and I disagreed on whether this would actually be necessary. As I already pointed out, both solutions seriously reduce the utility of HFT because they limit how often you can update the contract. Instead of an online game billing you per second, maybe it can only do it per minute or per 10 minutes with the lock time solution because otherwise you run out of blocks, and with ever-increasing fees perhaps the contract becomes too expensive to justify after a while.

So it'd be nice if this ended up not being necessary. Experience indicates that rational miners typically don't pursue a short-termist profit-at-any-cost agenda - free transactions have always been included in blocks, miners include transactions even though you could avoid a lot of complexity by just not including any at all, etc. Some miners like BTC Guild have actually sacrificed significant amounts of money for the good of the system. You can see this in terms of rational self interest - miners earn Bitcoins thus it's in their interest for Bitcoins to be as useful as possible, as that is what gives them value. Or you can see it in terms of ideologically-driven altruism. Or both.

If I were to implement an application that used tx replacement, I would probably start with replacements that don't change the fees and don't count down the lock time field. We can then observe whether miners bother changing their software to behave differently, or whether the inherent utility of the application is enough to convince them to play by the default rules. Ideally at least one application made possible by this feature is a "killer app" - something so useful / unique / compelling that people want to obtain Bitcoin just to use it. If someone can find such an app, then rational miners should want tx replacement to work as reliably as possible because it boosts the value of their earnings.

There are some other misc details - reactivation requires that we bump the protocol version and start relaying non-final transactions to new nodes again. Those nodes should relay replacements but not let them enter wallets unless/until the wallet software itself can handle them better, for instance, by communicating via APIs anticipated confirmation times. This is something for individual wallet APIs to handle on their own, and just ignoring non-final transactions is a perfectly workable approach for Bitcoin-Qt.


------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter


_______________________________________________
Bitcoin-development mailing list
Bitcoin-development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bitcoin-development

--------------000300000603010002000707--