LCOV - code coverage report
Current view: top level - net/ipv4 - tunnel4.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 0 60 0.0 %
Date: 2014-04-07 Functions: 0 8 0.0 %
Branches: 0 42 0.0 %

           Branch data     Line data    Source code
       1                 :            : /* tunnel4.c: Generic IP tunnel transformer.
       2                 :            :  *
       3                 :            :  * Copyright (C) 2003 David S. Miller (davem@redhat.com)
       4                 :            :  */
       5                 :            : 
       6                 :            : #include <linux/init.h>
       7                 :            : #include <linux/module.h>
       8                 :            : #include <linux/mutex.h>
       9                 :            : #include <linux/netdevice.h>
      10                 :            : #include <linux/skbuff.h>
      11                 :            : #include <linux/slab.h>
      12                 :            : #include <net/icmp.h>
      13                 :            : #include <net/ip.h>
      14                 :            : #include <net/protocol.h>
      15                 :            : #include <net/xfrm.h>
      16                 :            : 
      17                 :            : static struct xfrm_tunnel __rcu *tunnel4_handlers __read_mostly;
      18                 :            : static struct xfrm_tunnel __rcu *tunnel64_handlers __read_mostly;
      19                 :            : static DEFINE_MUTEX(tunnel4_mutex);
      20                 :            : 
      21                 :            : static inline struct xfrm_tunnel __rcu **fam_handlers(unsigned short family)
      22                 :            : {
      23 [ #  # ][ #  # ]:          0 :         return (family == AF_INET) ? &tunnel4_handlers : &tunnel64_handlers;
      24                 :            : }
      25                 :            : 
      26                 :          0 : int xfrm4_tunnel_register(struct xfrm_tunnel *handler, unsigned short family)
      27                 :            : {
      28                 :            :         struct xfrm_tunnel __rcu **pprev;
      29                 :            :         struct xfrm_tunnel *t;
      30                 :            : 
      31                 :            :         int ret = -EEXIST;
      32                 :          0 :         int priority = handler->priority;
      33                 :            : 
      34                 :          0 :         mutex_lock(&tunnel4_mutex);
      35                 :            : 
      36         [ #  # ]:          0 :         for (pprev = fam_handlers(family);
      37                 :          0 :              (t = rcu_dereference_protected(*pprev,
      38                 :            :                         lockdep_is_held(&tunnel4_mutex))) != NULL;
      39                 :          0 :              pprev = &t->next) {
      40         [ #  # ]:          0 :                 if (t->priority > priority)
      41                 :            :                         break;
      42         [ #  # ]:          0 :                 if (t->priority == priority)
      43                 :            :                         goto err;
      44                 :            :         }
      45                 :            : 
      46                 :          0 :         handler->next = *pprev;
      47                 :          0 :         rcu_assign_pointer(*pprev, handler);
      48                 :            : 
      49                 :            :         ret = 0;
      50                 :            : 
      51                 :            : err:
      52                 :          0 :         mutex_unlock(&tunnel4_mutex);
      53                 :            : 
      54                 :          0 :         return ret;
      55                 :            : }
      56                 :            : EXPORT_SYMBOL(xfrm4_tunnel_register);
      57                 :            : 
      58                 :          0 : int xfrm4_tunnel_deregister(struct xfrm_tunnel *handler, unsigned short family)
      59                 :            : {
      60                 :            :         struct xfrm_tunnel __rcu **pprev;
      61                 :            :         struct xfrm_tunnel *t;
      62                 :            :         int ret = -ENOENT;
      63                 :            : 
      64                 :          0 :         mutex_lock(&tunnel4_mutex);
      65                 :            : 
      66         [ #  # ]:          0 :         for (pprev = fam_handlers(family);
      67                 :          0 :              (t = rcu_dereference_protected(*pprev,
      68                 :            :                         lockdep_is_held(&tunnel4_mutex))) != NULL;
      69                 :          0 :              pprev = &t->next) {
      70         [ #  # ]:          0 :                 if (t == handler) {
      71                 :          0 :                         *pprev = handler->next;
      72                 :            :                         ret = 0;
      73                 :          0 :                         break;
      74                 :            :                 }
      75                 :            :         }
      76                 :            : 
      77                 :          0 :         mutex_unlock(&tunnel4_mutex);
      78                 :            : 
      79                 :          0 :         synchronize_net();
      80                 :            : 
      81                 :          0 :         return ret;
      82                 :            : }
      83                 :            : EXPORT_SYMBOL(xfrm4_tunnel_deregister);
      84                 :            : 
      85                 :            : #define for_each_tunnel_rcu(head, handler)              \
      86                 :            :         for (handler = rcu_dereference(head);           \
      87                 :            :              handler != NULL;                           \
      88                 :            :              handler = rcu_dereference(handler->next))       \
      89                 :            :         
      90                 :          0 : static int tunnel4_rcv(struct sk_buff *skb)
      91                 :            : {
      92                 :            :         struct xfrm_tunnel *handler;
      93                 :            : 
      94         [ #  # ]:          0 :         if (!pskb_may_pull(skb, sizeof(struct iphdr)))
      95                 :            :                 goto drop;
      96                 :            : 
      97         [ #  # ]:          0 :         for_each_tunnel_rcu(tunnel4_handlers, handler)
      98         [ #  # ]:          0 :                 if (!handler->handler(skb))
      99                 :            :                         return 0;
     100                 :            : 
     101                 :          0 :         icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
     102                 :            : 
     103                 :            : drop:
     104                 :          0 :         kfree_skb(skb);
     105                 :          0 :         return 0;
     106                 :            : }
     107                 :            : 
     108                 :            : #if IS_ENABLED(CONFIG_IPV6)
     109                 :          0 : static int tunnel64_rcv(struct sk_buff *skb)
     110                 :            : {
     111                 :            :         struct xfrm_tunnel *handler;
     112                 :            : 
     113         [ #  # ]:          0 :         if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
     114                 :            :                 goto drop;
     115                 :            : 
     116         [ #  # ]:          0 :         for_each_tunnel_rcu(tunnel64_handlers, handler)
     117         [ #  # ]:          0 :                 if (!handler->handler(skb))
     118                 :            :                         return 0;
     119                 :            : 
     120                 :          0 :         icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
     121                 :            : 
     122                 :            : drop:
     123                 :          0 :         kfree_skb(skb);
     124                 :          0 :         return 0;
     125                 :            : }
     126                 :            : #endif
     127                 :            : 
     128                 :          0 : static void tunnel4_err(struct sk_buff *skb, u32 info)
     129                 :            : {
     130                 :            :         struct xfrm_tunnel *handler;
     131                 :            : 
     132         [ #  # ]:          0 :         for_each_tunnel_rcu(tunnel4_handlers, handler)
     133         [ #  # ]:          0 :                 if (!handler->err_handler(skb, info))
     134                 :            :                         break;
     135                 :          0 : }
     136                 :            : 
     137                 :            : #if IS_ENABLED(CONFIG_IPV6)
     138                 :          0 : static void tunnel64_err(struct sk_buff *skb, u32 info)
     139                 :            : {
     140                 :            :         struct xfrm_tunnel *handler;
     141                 :            : 
     142         [ #  # ]:          0 :         for_each_tunnel_rcu(tunnel64_handlers, handler)
     143         [ #  # ]:          0 :                 if (!handler->err_handler(skb, info))
     144                 :            :                         break;
     145                 :          0 : }
     146                 :            : #endif
     147                 :            : 
     148                 :            : static const struct net_protocol tunnel4_protocol = {
     149                 :            :         .handler        =       tunnel4_rcv,
     150                 :            :         .err_handler    =       tunnel4_err,
     151                 :            :         .no_policy      =       1,
     152                 :            :         .netns_ok       =       1,
     153                 :            : };
     154                 :            : 
     155                 :            : #if IS_ENABLED(CONFIG_IPV6)
     156                 :            : static const struct net_protocol tunnel64_protocol = {
     157                 :            :         .handler        =       tunnel64_rcv,
     158                 :            :         .err_handler    =       tunnel64_err,
     159                 :            :         .no_policy      =       1,
     160                 :            :         .netns_ok       =       1,
     161                 :            : };
     162                 :            : #endif
     163                 :            : 
     164                 :          0 : static int __init tunnel4_init(void)
     165                 :            : {
     166         [ #  # ]:          0 :         if (inet_add_protocol(&tunnel4_protocol, IPPROTO_IPIP)) {
     167                 :          0 :                 pr_err("%s: can't add protocol\n", __func__);
     168                 :          0 :                 return -EAGAIN;
     169                 :            :         }
     170                 :            : #if IS_ENABLED(CONFIG_IPV6)
     171         [ #  # ]:          0 :         if (inet_add_protocol(&tunnel64_protocol, IPPROTO_IPV6)) {
     172                 :          0 :                 pr_err("tunnel64 init: can't add protocol\n");
     173                 :          0 :                 inet_del_protocol(&tunnel4_protocol, IPPROTO_IPIP);
     174                 :          0 :                 return -EAGAIN;
     175                 :            :         }
     176                 :            : #endif
     177                 :            :         return 0;
     178                 :            : }
     179                 :            : 
     180                 :          0 : static void __exit tunnel4_fini(void)
     181                 :            : {
     182                 :            : #if IS_ENABLED(CONFIG_IPV6)
     183         [ #  # ]:          0 :         if (inet_del_protocol(&tunnel64_protocol, IPPROTO_IPV6))
     184                 :          0 :                 pr_err("tunnel64 close: can't remove protocol\n");
     185                 :            : #endif
     186         [ #  # ]:          0 :         if (inet_del_protocol(&tunnel4_protocol, IPPROTO_IPIP))
     187                 :          0 :                 pr_err("tunnel4 close: can't remove protocol\n");
     188                 :          0 : }
     189                 :            : 
     190                 :            : module_init(tunnel4_init);
     191                 :            : module_exit(tunnel4_fini);
     192                 :            : MODULE_LICENSE("GPL");

Generated by: LCOV version 1.9