Code Monkey home page Code Monkey logo

Comments (11)

 avatar commented on May 27, 2024 1

Pipe is nothing but a buffer in the kernel. And with SPLICE_F_MOVE flag it moves data from socket, instead of copying it, into that buffer.

https://blog.cloudflare.com/sockmap-tcp-splicing-of-the-future/

from ipt2socks.

 avatar commented on May 27, 2024 1

Works great with glibc. Great job!

But it may still need some patch when compiling with uclibc, since splice may be still too new for it.

https://github.com/ThingMesh/openwrt-luci/blob/ac597e471793ff37b7ebc759f6bd8ffa744995dd/libs/nixio/src/splice.c#L45

from ipt2socks.

zfl9 avatar zfl9 commented on May 27, 2024 1

有编译报错的可以请请教下 @simon-on-gh (报错应该是 splice() 啥的未定义吧)。有这问题的应该都是嵌入式设备的Linux发行版

from ipt2socks.

 avatar commented on May 27, 2024

It seems that the reference only supports TCP, though.
wongsyrone/transocks-wong#5

from ipt2socks.

zfl9 avatar zfl9 commented on May 27, 2024

http://man7.org/linux/man-pages/man2/splice.2.html

看了下文档,两个fd中必须至少有一个是pipe管道,所以没有意义。

from ipt2socks.

zfl9 avatar zfl9 commented on May 27, 2024

看起来似乎有点意思,周末在研究下

from ipt2socks.

zfl9 avatar zfl9 commented on May 27, 2024

不过看cf的那个博客,感觉sockmap更加有趣哈。UPDATE:sockmap似乎很复杂。还是splice()方便。

from ipt2socks.

zfl9 avatar zfl9 commented on May 27, 2024

Pipe is nothing but a buffer in the kernel. And with SPLICE_F_MOVE flag it moves data from socket, instead of copying it, into that buffer.

https://blog.cloudflare.com/sockmap-tcp-splicing-of-the-future/

仔细想想其实是这个道理,只不过我现在是通过用户空间的一个buffer做中转,而利用splice()的话,其实就是用一个pipe管道充当这个buffer而已。

from ipt2socks.

zfl9 avatar zfl9 commented on May 27, 2024
   SPLICE_F_MOVE
          Attempt to move pages instead of copying.  This is only a hint
          to the kernel: pages may still be copied if the kernel cannot
          move the pages from the pipe, or if the pipe buffers don't
          refer to full pages.  The initial implementation of this flag
          was buggy: therefore starting in Linux 2.6.21 it is a no-op
          (but is still permitted in a splice() call); in the future, a
          correct implementation may be restored.

如果真如文档所说(或许现在已实现真正的Move?),我觉得 splice() 与我现在的实现方式并无本质区别(这两种方式都存在两次 copy 操作),当然性能可能是会有差距,可能是因为内核空间复制数据更快?另外也少了几个系统调用的开销。不过,还是决定实现一个看看,究竟性能如何。

from ipt2socks.

 avatar commented on May 27, 2024

numbers-2mib-2

The blog tests it with 4.14 kernel and it seems that the performance of splice() is pretty close to sockmap

from ipt2socks.

zfl9 avatar zfl9 commented on May 27, 2024

已替换为 splice() 接口。感觉还可以(在 rpi3b 上测试)。欢迎继续测试,感谢你的好建议。

from ipt2socks.

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.