Received: from sog-mx-4.v43.ch3.sourceforge.com ([172.29.43.194] helo=mx.sourceforge.net) by sfs-ml-1.v29.ch3.sourceforge.com with esmtp (Exim 4.76) (envelope-from ) id 1R3Vn3-0004kH-7r for bitcoin-development@lists.sourceforge.net; Tue, 13 Sep 2011 16:24:53 +0000 X-ACL-Warn: Received: from serv.jerviss.org ([12.47.47.47] helo=inana.jerviss.org) by sog-mx-4.v43.ch3.sourceforge.com with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) id 1R3Vn2-0007tG-AM for bitcoin-development@lists.sourceforge.net; Tue, 13 Sep 2011 16:24:53 +0000 Received: from [156.99.25.142] ([156.99.25.142]) (username: kjj authenticated by PLAIN symmetric_key_bits=0) by inana.jerviss.org (8.13.6/8.12.11) with ESMTP id p8DGOZIC008337 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 13 Sep 2011 11:24:40 -0500 Message-ID: <4E6F83C3.9020108@jerviss.org> Date: Tue, 13 Sep 2011 11:24:35 -0500 From: kjj User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/20110902 SeaMonkey/2.3.3 MIME-Version: 1.0 To: Gavin Andresen References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Received-SPF: pass (inana.jerviss.org: 156.99.25.142 is authenticated by a trusted mechanism) X-Spam-Score: -1.5 (-) 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.5 RP_MATCHES_RCVD Envelope sender domain matches handover relay domain 0.5 AWL AWL: From: address is in the auto white-list X-Headers-End: 1R3Vn2-0007tG-AM Cc: bitcoin-development@lists.sourceforge.net Subject: Re: [Bitcoin-development] Difficulty adjustment / time issues 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: Tue, 13 Sep 2011 16:24:53 -0000 Gavin Andresen wrote: > Background: > > Timejacking: > http://culubas.blogspot.com/2011/05/timejacking-bitcoin_802.html > > And a recent related exploit launched against the low-difficulty > alternative chains: > https://bitcointalk.org/index.php?topic=43692.msg521772#msg521772 > > > Seems to me there are two fundamental problems: > > 1) Bitcoin should be overlapping the ranges of block timestamps that > it uses to calculate difficulty adjustments. > > 2) Bitcoin's "what time is it" code is kind of a hack. > > > Fixing (1) would mean a potential block-chain split; before > considering doing that I'd like to consider second-best solutions. > > Fixing (2) is easier; incorporating a ntp library and/or simply > removing the bitcoin mining code from the client but requiring pools > and miners to have accurate-to-within-a-minute system clocks (or their > blocks will be "discouraged") seems reasonable to me. If you want to > produce blocks that the rest of the network will accept, run ntp on > your system. > > I THINK that fixing (2) will make (1) a non-issue-- if miners can't > mess around with block times very much then it will be very difficult > for them to manipulate the difficulty for their benefit. > The first thing I always do when I grab the source for my colo server is patch util.cpp so that GetAdjustedTime() returns GetTime() with no adjustment. But I'm the kind of guy that buys special GPS receivers because stratum 2 isn't low enough and occasionally checks ebay for caesium fountains. NTP has been around for long enough now that there is no reason for the client to screw with the clock. If the client sees different times on the network, it should issue a warning, and if it is off too far, it should give an error and fail to run (and/or peers should reject it). But that doesn't solve the whole problem, because the block timestamp checking is based on the assumption that the node is looking at the bitcoin clock rather than the, ahem, real clock. If we change the idea of network time to NTP, we will then need to write (and test!) new block timestamp rules to account for the new assumptions. I'm not sure that just fixing item 2 is going to stop the attacks found by ArtForz, et al. Some of the attacks Art pointed out are particularly bad because they change the incentive structure of the system, at least in the short term. We need to flip that back around ASAP. Also, this is going to cause problems for at least one pool operator.