欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Netty解决 TCP 粘包拆包的方法

程序员文章站 2022-06-19 08:52:32
什么是粘包/拆包 一般所谓的tcp粘包是在一次接收数据不能完全地体现一个完整的消息数据。tcp通讯为何存在粘包呢?主要原因是tcp是以流的方式来处理数据,再加上网络上mtu的往往小于在应用处理的消息数...

什么是粘包/拆包

       一般所谓的tcp粘包是在一次接收数据不能完全地体现一个完整的消息数据。tcp通讯为何存在粘包呢?主要原因是tcp是以流的方式来处理数据,再加上网络上mtu的往往小于在应用处理的消息数据,所以就会引发一次接收的数据无法满足消息的需要,导致粘包的存在。处理粘包的唯一方法就是制定应用层的数据通讯协议,通过协议来规范现有接收的数据是否满足消息数据的需要。

我们都知道tcp是基于字节流的传输协议。

那么数据在通信层传播其实就像河水一样并没有明显的分界线,而数据具体表示什么意思什么地方有句号什么地方有分号这个对于tcp底层来说并不清楚。应用层向tcp层发送用于网间传输的、用8位字节表示的数据流,然后tcp把数据流分区成适当长度的报文段,之后tcp把结果包传给ip层,由它来通过网络将包传送给接收端实体的tcp层。

所以对于这个数据拆分成大包小包的问题就是我们今天要讲的粘包和拆包的问题。

1、tcp粘包拆包问题说明

粘包和拆包这两个概念估计大家还不清楚,通过下面这张图我们来分析一下:

Netty解决 TCP 粘包拆包的方法

假设客户端分别发送两个数据包d1,d2个服务端,但是发送过程中数据是何种形式进行传播这个并不清楚,分别有下列4种情况:

  • 服务端一次接受到了d1和d2两个数据包,两个包粘在一起,称为粘包;
  • 服务端分两次读取到数据包d1和d2,没有发生粘包和拆包;
  • 服务端分两次读到了数据包,第一次读到了d1和d2的部分内容,第二次读到了d2的剩下部分,这个称为拆包;
  • 服务器分三次读到了数据部分,第一次读到了d1包,第二次读到了d2包的部分内容,第三次读到了d2包的剩下内容。

2、tcp粘包产生原因

我们知道在tcp协议中,应用数据分割成tcp认为最适合发送的数据块,这部分是通过“mss”(最大数据包长度)选项来控制的,通常这种机制也被称为一种协商机制,mss规定了tcp传往另一端的最大数据块的长度。这个值tcp协议在实现的时候往往用mtu值代替(需要减去ip数据包包头的大小20bytes和tcp数据段的包头20bytes)所以往往mss为1460。通讯双方会根据双方提供的mss值得最小值确定为这次连接的最大mss值。

tcp为提高性能,发送端会将需要发送的数据发送到缓冲区,等待缓冲区满了之后,再将缓冲中的数据发送到接收方。同理,接收方也有缓冲区这样的机制,来接收数据。

发生粘包拆包的原因主要有以下这些:

  • 应用程序写入数据的字节大小大于套接字发送缓冲区的大小将发生拆包;
  • 进行mss大小的tcp分段。mss是tcp报文段中的数据字段的最大长度,当tcp报文长度-tcp头部长度>mss的时候将发生拆包;
  • 应用程序写入数据小于套接字缓冲区大小,网卡将应用多次写入的数据发送到网络上,将发生粘包;
  • 数据包大于mtu的时候将会进行切片。mtu即(maxitum transmission unit) 最大传输单元,由于以太网传输电气方面的限制,每个以太网帧都有最小的大小64bytes最大不能超过1518bytes,刨去以太网帧的帧头14bytes和帧尾crc校验部分4bytes,那么剩下承载上层协议的地方也就是data域最大就只能有1500bytes这个值我们就把它称之为mtu。这个就是网络层协议非常关心的地方,因为网络层协议比如ip协议会根据这个值来决定是否把上层传下来的数据进行分片。

3、如何解决tcp粘包拆包

我们知道tcp是*的数据流,且协议本身无法避免粘包,拆包的发生,那我们只能在应用层数据协议上,加以控制。通常在制定传输数据时,可以使用如下方法:

  1. 设置定长消息,服务端每次读取既定长度的内容作为一条完整消息;
  2. 使用带消息头的协议、消息头存储消息开始标识及消息长度信息,服务端获取消息头的时候解析出消息长度,然后向后读取该长度的内容;
  3. 设置消息边界,服务端从网络流中按消息边界分离出消息内容。比如在消息末尾加上换行符用以区分消息结束。

当然应用层还有更多复杂的方式可以解决这个问题,这个就属于网络层的问题了,我们还是用java提供的方式来解决这个问题。我们先看一个例子看看粘包是如何发生的。

服务端:

public class hellowordserver {
    private int port;

    public hellowordserver(int port) {
        this.port = port;
    }

    public void start(){
        eventloopgroup bossgroup = new nioeventloopgroup();
        eventloopgroup workgroup = new nioeventloopgroup();

        serverbootstrap server = new serverbootstrap().group(bossgroup,workgroup)
                                    .channel(nioserversocketchannel.class)
                                    .childhandler(new serverchannelinitializer());

        try {
            channelfuture future = server.bind(port).sync();
            future.channel().closefuture().sync();
        } catch (interruptedexception e) {
            e.printstacktrace();
        }finally {
            bossgroup.shutdowngracefully();
            workgroup.shutdowngracefully();
        }
    }

    public static void main(string[] args) {
        hellowordserver server = new hellowordserver(7788);
        server.start();
    }
}

服务端initializer:

public class serverchannelinitializer extends channelinitializer<socketchannel> {
    @override
    protected void initchannel(socketchannel socketchannel) throws exception {
        channelpipeline pipeline = socketchannel.pipeline();

        // 字符串解码 和 编码
        pipeline.addlast("decoder", new stringdecoder());
        pipeline.addlast("encoder", new stringencoder());

        // 自己的逻辑handler
        pipeline.addlast("handler", new hellowordserverhandler());
    }
}

服务端handler:

public class hellowordserverhandler extends channelinboundhandleradapter {
    private int counter;

    @override
    public void channelread(channelhandlercontext ctx, object msg) throws exception {
        string body = (string)msg;
        system.out.println("server receive order : " + body + ";the counter is: " + ++counter);
    }

    @override
    public void exceptioncaught(channelhandlercontext ctx, throwable cause) throws exception {
        super.exceptioncaught(ctx, cause);
    }
}

客户端:

public class helloworldclient {
    private  int port;
    private  string address;

    public helloworldclient(int port,string address) {
        this.port = port;
        this.address = address;
    }

    public void start(){
        eventloopgroup group = new nioeventloopgroup();

        bootstrap bootstrap = new bootstrap();
        bootstrap.group(group)
                .channel(niosocketchannel.class)
                .handler(new clientchannelinitializer());

        try {
            channelfuture future = bootstrap.connect(address,port).sync();         
            future.channel().closefuture().sync();
        } catch (exception e) {
            e.printstacktrace();
        }finally {
            group.shutdowngracefully();
        }

    }

    public static void main(string[] args) {
        helloworldclient client = new helloworldclient(7788,"127.0.0.1");
        client.start();
    }
}

客户端initializer:

public class clientchannelinitializer extends  channelinitializer<socketchannel> {

    protected void initchannel(socketchannel socketchannel) throws exception {
        channelpipeline pipeline = socketchannel.pipeline();

        pipeline.addlast("decoder", new stringdecoder());
        pipeline.addlast("encoder", new stringencoder());

        // 客户端的逻辑
        pipeline.addlast("handler", new helloworldclienthandler());
    }
}

客户端handler:

public class helloworldclienthandler extends channelinboundhandleradapter {
    private byte[] req;
    private int counter;

    public baseclienthandler() {
        req = ("unless required by applicable law or agreed to in writing, software\n" +
                "  distributed under the license is distributed on an \"as is\" basis,\n" +
                "  without warranties or conditions of any kind, either express or implied.\n" +
                "  see the license for the specific language governing permissions and\n" +
                "  limitations under the license.this connector uses the bio implementation that requires the jsse\n" +
                "  style configuration. when using the apr/native implementation, the\n" +
                "  penssl style configuration is required as described in the apr/native\n" +
                "  documentation.an engine represents the entry point (within catalina) that processes\n" +
                "  every request.  the engine implementation for tomcat stand alone\n" +
                "  analyzes the http headers included with the request, and passes them\n" +
                "  on to the appropriate host (virtual host)# unless required by applicable law or agreed to in writing, software\n" +
                "# distributed under the license is distributed on an \"as is\" basis,\n" +
                "# without warranties or conditions of any kind, either express or implied.\n" +
                "# see the license for the specific language governing permissions and\n" +
                "# limitations under the license.# for example, set the org.apache.catalina.util.lifecyclebase logger to log\n" +
                "# each component that extends lifecyclebase changing state:\n" +
                "#org.apache.catalina.util.lifecyclebase.level = fine"
                ).getbytes();
    }

    @override
    public void channelactive(channelhandlercontext ctx) throws exception {
        bytebuf message;

        //将上面的所有字符串作为一个消息体发送出去
        message = unpooled.buffer(req.length);
        message.writebytes(req);
        ctx.writeandflush(message);
    }

    @override
    public void channelread(channelhandlercontext ctx, object msg) throws exception {
        string buf = (string)msg;
        system.out.println("now is : " + buf + " ; the counter is : "+ (++counter));
    }

    @override
    public void exceptioncaught(channelhandlercontext ctx, throwable cause) throws exception {
        ctx.close();
    }
}

运行客户端和服务端我们能看到:

Netty解决 TCP 粘包拆包的方法

我们看到这个长长的字符串被截成了2段发送,这就是发生了拆包的现象。同样粘包我们也很容易去模拟,我们把baseclienthandler中的channelactive方法里面的:

message = unpooled.buffer(req.length);
message.writebytes(req);
ctx.writeandflush(message);

这几行代码是把我们上面的一长串字符转成的byte数组写进流里发送出去,那么我们可以在这里把上面发送消息的这几行循环几遍这样发送的内容增多了就有可能在拆包的时候把上一条消息的一部分分配到下一条消息里面了,修改如下:

for (int i = 0; i < 3; i++) {
    message = unpooled.buffer(req.length);
    message.writebytes(req);
    ctx.writeandflush(message);
}

改完之后我们再运行一下,输出太长不好截图,我们在输出结果中能看到循环3次之后的消息服务端收到的就不是之前的完整的一条了,而是被拆分了4次发送。

对于上面出现的粘包和拆包的问题,netty已有考虑,并且有实施的方案:linebasedframedecoder。
我们重新改写一下serverchannelinitializer:

public class serverchannelinitializer extends channelinitializer<socketchannel> {
    @override
    protected void initchannel(socketchannel socketchannel) throws exception {
        channelpipeline pipeline = socketchannel.pipeline();


        pipeline.addlast(new linebasedframedecoder(2048));       
        // 字符串解码 和 编码
        pipeline.addlast("decoder", new stringdecoder());
        pipeline.addlast("encoder", new stringencoder());

        // 自己的逻辑handler
        pipeline.addlast("handler", new baseserverhandler());
    }
}

新增:pipeline.addlast(new linebasedframedecoder(2048))。同时,我们还得对上面发送的消息进行改造baseclienthandler:

public class baseclienthandler extends channelinboundhandleradapter {
    private byte[] req;
    private int counter;

    req = ("unless required by applicable dfslaw or agreed to in writing, software" +
                "  distributed under the license is distributed on an \"as is\" basis," +
                "  without warranties or conditions of any kind, either express or implied." +
                "  see the license for the specific language governing permissions and" +
                "  limitations under the license.this connector uses the bio implementation that requires the jsse" +
                "  style configuration. when using the apr/native implementation, the" +
                "  penssl style configuration is required as described in the apr/native" +
                "  documentation.an engine represents the entry point (within catalina) that processes" +
                "  every request.  the engine implementation for tomcat stand alone" +
                "  analyzes the http headers included with the request, and passes them" +
                "  on to the appropriate host (virtual host)# unless required by applicable law or agreed to in writing, software" +
                "# distributed under the license is distributed on an \"as is\" basis," +
                "# without warranties or conditions of any kind, either express or implied." +
                "# see the license for the specific language governing permissions and" +
                "# limitations under the license.# for example, set the org.apache.catalina.util.lifecyclebase logger to log" +
                "# each component that extends lifecyclebase changing state:" +
                "#org.apache.catalina.util.lifecyclebase.level = fine\n"
                ).getbytes();  


    @override
    public void channelactive(channelhandlercontext ctx) throws exception {
        bytebuf message;

        message = unpooled.buffer(req.length);
        message.writebytes(req);
        ctx.writeandflush(message);
    }

    @override
    public void channelread(channelhandlercontext ctx, object msg) throws exception {
        string buf = (string)msg;
        system.out.println("now is : " + buf + " ; the counter is : "+ (++counter));
    }

    @override
    public void exceptioncaught(channelhandlercontext ctx, throwable cause) throws exception {
        ctx.close();
    }
}

去掉所有的”\n”,只保留字符串末尾的这一个。原因稍后再说。channelactive方法中我们不必再用循环多次发送消息了,只发送一次就好(第一个例子中发送一次的时候是发生了拆包的),然后我们再次运行,大家会看到这么长一串字符只发送了一串就发送完毕。程序输出我就不截图了。下面来解释一下linebasedframedecoder。

linebasedframedecoder的工作原理是它依次遍历bytebuf 中的可读字节,判断看是否有”\n” 或者” \r\n”,如果有,就以此位置为结束位置,从可读索引到结束位置区间的字节就组成了一行。它是以换行符为结束标志的解码器。支持携带结束符或者不携带结束符两种解码方式,同时支持配置单行的最大长度。如果连续读取到最大长度后仍然没有发现换行符,就会抛出异常,同时忽略掉之前读到的异常码流。这个对于我们确定消息最大长度的应用场景还是很有帮助。

对于上面的判断看是否有”\n” 或者” \r\n”以此作为结束的标志我们可能回想,要是没有”\n” 或者” \r\n”那还有什么别的方式可以判断消息是否结束呢。别担心,netty对于此已经有考虑,还有别的解码器可以帮助我们解决问题,

到此这篇关于netty解决 tcp 粘包拆包的方法的文章就介绍到这了,更多相关netty解决 tcp 粘包拆包内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!