Coder Social home page Coder Social logo

curvecp's People

Contributors

danderson avatar

Watchers

 avatar

curvecp's Issues

Integer overflow in congestion.go

For the additive increase step in congestion.go, the calculation 
s.txThrottle*s.txThrottle*s.txThrottle can overflow:

  // These maths taken straight from the implementation. I'm
  // not sure I get why it adjusts the way it does, but I
  // want to make progress.
  const timeConstant = 2251799813685248 // 2^51
  if s.txThrottle < 16*time.Millisecond {
    // N = N - cN^3, avoids 1 division and is close to the next curve.
    s.txThrottle -= s.txThrottle * s.txThrottle * s.txThrottle / timeConstant
  } else {
    // N = N/(1 + cN^2)
    s.txThrottle = s.txThrottle / (1 + s.txThrottle*s.txThrottle/timeConstant)
  }

Since s.txThrottle here can still be up to 15999999, and 15999999^3 exceeds 
2^63, the calculation will overflow and wrap around.

The second expression can actually overflow too, but only if the connection 
gets throttled down to less than about one block every three seconds.

Also of note is that since you're using integer arithmetic here, there's going 
to be some loss of precision compared to curvecpmessage.c's floating point 
calculation for the second case, which will limit how quickly the throughput 
grows.  It also means once txThrottle is less than about 47ms, it'll stop 
reducing further because txThrottle*txThrottle/timeConstant will truncate to 0.


Probably the simplest thing to do is just always use the floating point 
calculation strategy:

    // N = N/(1 + cN^2)
    d := float64(s.txThrottle)
    s.txThrottle = time.Duration(d/(1+d*d*(1.0/(1<<51))) + 0.5)

(+0.5 is so it rounds and reaches a fixed point before collapsing to 0)

Original issue reported on code.google.com by [email protected] on 31 Jan 2013 at 1:39

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.