GithubHelp home page GithubHelp logo

New Feature: Rate limiting about torrent HOT 8 CLOSED

anacrolix avatar anacrolix commented on May 21, 2024
New Feature: Rate limiting

from torrent.

Comments (8)

anacrolix avatar anacrolix commented on May 21, 2024

There are no current plans. I believe it's quite straightforward. It can be done via a connection hook. All writing and reading on the wire are done via connection.rw. That's already a series of hooks that take care of protocol encryption, TCP vs. uTP, as well as deadlines. You could add a hook either before any handshaking occurs (client.{incoming,outgoing}Connection), or during the message exchange loop (client.connectionLoop) as you see fit. Rate limiting on downloads would result in the peer doing the appropriate things with the protocol. Rate limiting on upload is a little harder. Currently connection.writeOptimizer will help significantly applying backpressure from inability to write due to rate limiting back to the client. There's probably some improvements that could be done there, but it's not necessary to get the basics working.

I tried to link to areas of the code via https://sourcegraph.com/github.com/anacrolix/torrent but it didn't work very well.

from torrent.

jpillora avatar jpillora commented on May 21, 2024

Passing a facade connection.rw sounds like a good idea. Could newConnection() become newConnection(nc net.Conn)? Could then move c.conn = nc and c.rw = nc inside the constructor.

Then before you call newConnection:

type ConnectionHook func(nc net.Conn) net.Conn

func (cl *client) SetDownloadHook(hook ConnectionHook) {
}
func (cl *client) SetUploadHook(hook ConnectionHook) {
}

//outgoing
if cl.hookUpload != nil {
  nc = cl.HookUpload(nc)
}
c := newConnection(nc)


//incoming
if cl.hookDownload != nil {
  nc = cl.hookDownload(nc)
}
c := newConnection(nc)

Or hooks could just be public, and you set them directly.

I can try my hand at a PR if needed

from torrent.

anacrolix avatar anacrolix commented on May 21, 2024

I believe newConnection did take a bunch of arguments previously to completely instantiate itself in one go. I removed a lot of assumptions from it (like that it had to be connected immediately) so as to allow manipulating a lot of its optional state, and installing hooks as required. If you see in receiveHandshakes and initiateHandshakes that connection fields are then further manipulated, I thought it best not to give people the false assumption that fields like rw and conn were necessarily only assigned to in newConnection.

I think since connections can exist before torrents are even added, that perhaps the hooks could come in via the client Config. I see no reason to allow modifying the hooks once a client is already created via NewClient. This will let us simplify our management of the hooks. A PR would be great. When/where to install the hooks is up to you. That is whether you want them before or after handshakes, above or below the encryption/BitTorrent protocol or directly on top of the transport.

I'm also not sure if it's necessary to separate the ReadWriter into separate parts (ie by having Upload/Download separate). I'm not sure what's gained/lost from this. At least presently it's rw io.ReadWriter, but the read/write parts are used separately. Whatever works best.

from torrent.

jpillora avatar jpillora commented on May 21, 2024

Hey @anacrolix sorry, haven't had time to look into this for a while. I've started my torrent client and I've got a ways to go, though rate limiting still will be needed.

Check out the planned features https://github.com/jpillora/cloud-torrent and let me know if it's something you'd use or if you have any ideas - comment on the issues - we'll leave this issue just for rate limiting.

from torrent.

anacrolix avatar anacrolix commented on May 21, 2024

I have a similar private project. anacrolix/torrent is designed with supporting the features you require for that project in mind.

from torrent.

jpillora avatar jpillora commented on May 21, 2024

Alrighty, well if you ever want to combine forces - let me know

from torrent.

anacrolix avatar anacrolix commented on May 21, 2024

@jpillora Note this was fixed in d4cbdc5 and 836bb34.

from torrent.

jpillora avatar jpillora commented on May 21, 2024

from torrent.

Related Issues (20)

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.