Chinaunix首页 | 论坛 | 博客
  • 博客访问: 966743
  • 博文数量: 442
  • 博客积分: 1146
  • 博客等级: 少尉
  • 技术积分: 1604
  • 用 户 组: 普通用户
  • 注册时间: 2010-11-04 12:52
个人简介

123

文章分类

全部博文(442)

文章存档

2017年(3)

2016年(15)

2015年(132)

2014年(52)

2013年(101)

2012年(110)

2011年(29)

分类: LINUX

2016-06-27 09:33:31

转载请注明出处:http://forever.blog.chinaunix.net
最新在跟踪linux内核代码的时候,发现了ip_early_demux这个不是太新的参数,本着认真负责的态度将这个参数的来龙去脉梳理了一下。

The routing cache has been suppressed in Linux 3.6 after a 2 years effort by David and the other Linux kernel developers. 
The global cache has been suppressed and some stored information have been moved to more separate resources like socket.

Metrics were stored in the routing cache entry which has disappeared. So it has been necessary to introduce a separate TCP metrics cache. 
A netlink interface is available to update/delete/add entry to the cache.

总结起来说就是Linux内核从3.6开始将全局的route cache全部剔除,取而代之的是各个子系统(tcp协议栈)内部的cache,由各个子系统维护。

当内核接收到一个TCP数据包来说,首先需要查找skb对应的路由,然后查找skb对应的socket。David Miller 发现这样做是一种浪费,对于属于同一个socket(只考虑ESTABLISHED情况)的路由是相同的,那么如果能将skb的路由缓存到socket(skb->sk)中,就可以只查找查找一次skb所属的socket,就可以顺便把路由找到了,于是David Miller提交了一个patch ipv4: Early TCP socket demux

点击(此处)折叠或打开

  1. (commit 41063e9dd11956f2d285e12e4342e1d232ba0ea2)
  2. ipv4: Early TCP socket demux.
  3.     
  4.     Input packet processing for local sockets involves two major demuxes.
  5.     One for the route and one for the socket.
  6.     
  7.     But we can optimize this down to one demux for certain kinds of local
  8.     sockets.
  9.     
  10.     Currently we only do this for established TCP sockets, but it could
  11.     at least in theory be expanded to other kinds of connections.
  12.     
  13.     If a TCP socket is established then it's identity is fully specified.
  14.     
  15.     This means that whatever input route was used during the three-way
  16.     handshake must work equally well for the rest of the connection since
  17.     the keys will not change.
  18.     
  19.     Once we move to established state, we cache the receive packet's input
  20.     route to use later.
  21.     
  22.     Like the existing cached route in sk->sk_dst_cache used for output
  23.     packets, we have to check for route invalidations using dst->obsolete
  24.     and dst->ops->check().
  25.     
  26.     Early demux occurs outside of a socket locked section, so when a route
  27.     invalidation occurs we defer the fixup of sk->sk_rx_dst until we are
  28.     actually inside of established state packet processing and thus have
  29.     the socket locked.

然而Davem添加的这个patch是有局限的,因为这个处理对于转发的数据包,增加了一个在查找路由之前查找socket的逻辑,可能导致转发效率的降低。
Alexander Duyck提出增加一个ip_early_demux参数来控制是否启动这个特性。

点击(此处)折叠或打开

  1. This change is meant to add a control for disabling early socket demux.
  2. The main motivation behind this patch is to provide an option to disable
  3. the feature as it adds an additional cost to routing that reduces overall
  4. throughput by up to 5%. For example one of my systems went from 12.1Mpps
  5. to 11.6 after the early socket demux was added. It looks like the reason
  6. for the regression is that we are now having to perform two lookups, first
  7. the one for an established socket, and then the one for the routing table.

  8. By adding this patch and toggling the value for ip_early_demux to 0 I am
  9. able to get back to the 12.1Mpps I was previously seeing.


点击(此处)折叠或打开

  1. static int ip_rcv_finish(struct sk_buff *skb)
  2. {
  3.         const struct iphdr *iph = ip_hdr(skb);
  4.         struct rtable *rt;
  5.         
  6.         if (sysctl_ip_early_demux && !skb_dst(skb) && skb->sk == NULL) {
  7.                 const struct net_protocol *ipprot;
  8.                 int protocol = iph->protocol;
  9.                 
  10.                 ipprot = rcu_dereference(inet_protos[protocol]);
  11.                 if (ipprot && ipprot->early_demux) {
  12.                         ipprot->early_demux(skb);
  13.                         /* must reload iph, skb->head might have changed */
  14.                         iph = ip_hdr(skb);
  15.                 }
  16.         }

  17.         /*
  18.          * Initialise the virtual path cache for the packet. It describes
  19.          * how the packet travels inside Linux networking.
  20.          */
  21.         if (!skb_dst(skb)) {
  22.                 int err = ip_route_input_noref(skb, iph->daddr, iph->saddr,
  23.                                                iph->tos, skb->dev);
  24.                 if (unlikely(err)) {
  25.                         if (err == -EXDEV)
  26.                                 NET_INC_STATS_BH(dev_net(skb->dev),
  27.                                                  LINUX_MIB_IPRPFILTER);
  28.                         goto drop;
  29.                 }
  30.         }


ip_early_demux就这样诞生了,目前内核中默认是1(开启),但是如果你的数据流量中60%以上都是转发的,那么请关闭这个特性。



阅读(1917) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~