LCOV - code coverage report
Current view: top level - net/ipv4 - devinet.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 146 835 17.5 %
Date: 2014-04-07 Functions: 12 55 21.8 %
Branches: 82 695 11.8 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  *      NET3    IP device support routines.
       3                 :            :  *
       4                 :            :  *              This program is free software; you can redistribute it and/or
       5                 :            :  *              modify it under the terms of the GNU General Public License
       6                 :            :  *              as published by the Free Software Foundation; either version
       7                 :            :  *              2 of the License, or (at your option) any later version.
       8                 :            :  *
       9                 :            :  *      Derived from the IP parts of dev.c 1.0.19
      10                 :            :  *              Authors:        Ross Biro
      11                 :            :  *                              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
      12                 :            :  *                              Mark Evans, <evansmp@uhura.aston.ac.uk>
      13                 :            :  *
      14                 :            :  *      Additional Authors:
      15                 :            :  *              Alan Cox, <gw4pts@gw4pts.ampr.org>
      16                 :            :  *              Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
      17                 :            :  *
      18                 :            :  *      Changes:
      19                 :            :  *              Alexey Kuznetsov:       pa_* fields are replaced with ifaddr
      20                 :            :  *                                      lists.
      21                 :            :  *              Cyrus Durgin:           updated for kmod
      22                 :            :  *              Matthias Andree:        in devinet_ioctl, compare label and
      23                 :            :  *                                      address (4.4BSD alias style support),
      24                 :            :  *                                      fall back to comparing just the label
      25                 :            :  *                                      if no match found.
      26                 :            :  */
      27                 :            : 
      28                 :            : 
      29                 :            : #include <asm/uaccess.h>
      30                 :            : #include <linux/bitops.h>
      31                 :            : #include <linux/capability.h>
      32                 :            : #include <linux/module.h>
      33                 :            : #include <linux/types.h>
      34                 :            : #include <linux/kernel.h>
      35                 :            : #include <linux/string.h>
      36                 :            : #include <linux/mm.h>
      37                 :            : #include <linux/socket.h>
      38                 :            : #include <linux/sockios.h>
      39                 :            : #include <linux/in.h>
      40                 :            : #include <linux/errno.h>
      41                 :            : #include <linux/interrupt.h>
      42                 :            : #include <linux/if_addr.h>
      43                 :            : #include <linux/if_ether.h>
      44                 :            : #include <linux/inet.h>
      45                 :            : #include <linux/netdevice.h>
      46                 :            : #include <linux/etherdevice.h>
      47                 :            : #include <linux/skbuff.h>
      48                 :            : #include <linux/init.h>
      49                 :            : #include <linux/notifier.h>
      50                 :            : #include <linux/inetdevice.h>
      51                 :            : #include <linux/igmp.h>
      52                 :            : #include <linux/slab.h>
      53                 :            : #include <linux/hash.h>
      54                 :            : #ifdef CONFIG_SYSCTL
      55                 :            : #include <linux/sysctl.h>
      56                 :            : #endif
      57                 :            : #include <linux/kmod.h>
      58                 :            : #include <linux/netconf.h>
      59                 :            : 
      60                 :            : #include <net/arp.h>
      61                 :            : #include <net/ip.h>
      62                 :            : #include <net/tcp.h>
      63                 :            : #include <net/route.h>
      64                 :            : #include <net/ip_fib.h>
      65                 :            : #include <net/rtnetlink.h>
      66                 :            : #include <net/net_namespace.h>
      67                 :            : #include <net/addrconf.h>
      68                 :            : 
      69                 :            : #include "fib_lookup.h"
      70                 :            : 
      71                 :            : static struct ipv4_devconf ipv4_devconf = {
      72                 :            :         .data = {
      73                 :            :                 [IPV4_DEVCONF_ACCEPT_REDIRECTS - 1] = 1,
      74                 :            :                 [IPV4_DEVCONF_SEND_REDIRECTS - 1] = 1,
      75                 :            :                 [IPV4_DEVCONF_SECURE_REDIRECTS - 1] = 1,
      76                 :            :                 [IPV4_DEVCONF_SHARED_MEDIA - 1] = 1,
      77                 :            :                 [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL - 1] = 10000 /*ms*/,
      78                 :            :                 [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL - 1] =  1000 /*ms*/,
      79                 :            :         },
      80                 :            : };
      81                 :            : 
      82                 :            : static struct ipv4_devconf ipv4_devconf_dflt = {
      83                 :            :         .data = {
      84                 :            :                 [IPV4_DEVCONF_ACCEPT_REDIRECTS - 1] = 1,
      85                 :            :                 [IPV4_DEVCONF_SEND_REDIRECTS - 1] = 1,
      86                 :            :                 [IPV4_DEVCONF_SECURE_REDIRECTS - 1] = 1,
      87                 :            :                 [IPV4_DEVCONF_SHARED_MEDIA - 1] = 1,
      88                 :            :                 [IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE - 1] = 1,
      89                 :            :                 [IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL - 1] = 10000 /*ms*/,
      90                 :            :                 [IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL - 1] =  1000 /*ms*/,
      91                 :            :         },
      92                 :            : };
      93                 :            : 
      94                 :            : #define IPV4_DEVCONF_DFLT(net, attr) \
      95                 :            :         IPV4_DEVCONF((*net->ipv4.devconf_dflt), attr)
      96                 :            : 
      97                 :            : static const struct nla_policy ifa_ipv4_policy[IFA_MAX+1] = {
      98                 :            :         [IFA_LOCAL]             = { .type = NLA_U32 },
      99                 :            :         [IFA_ADDRESS]           = { .type = NLA_U32 },
     100                 :            :         [IFA_BROADCAST]         = { .type = NLA_U32 },
     101                 :            :         [IFA_LABEL]             = { .type = NLA_STRING, .len = IFNAMSIZ - 1 },
     102                 :            :         [IFA_CACHEINFO]         = { .len = sizeof(struct ifa_cacheinfo) },
     103                 :            : };
     104                 :            : 
     105                 :            : #define IN4_ADDR_HSIZE_SHIFT    8
     106                 :            : #define IN4_ADDR_HSIZE          (1U << IN4_ADDR_HSIZE_SHIFT)
     107                 :            : 
     108                 :            : static struct hlist_head inet_addr_lst[IN4_ADDR_HSIZE];
     109                 :            : static DEFINE_SPINLOCK(inet_addr_hash_lock);
     110                 :            : 
     111                 :            : static u32 inet_addr_hash(struct net *net, __be32 addr)
     112                 :            : {
     113                 :            :         u32 val = (__force u32) addr ^ net_hash_mix(net);
     114                 :            : 
     115                 :            :         return hash_32(val, IN4_ADDR_HSIZE_SHIFT);
     116                 :            : }
     117                 :            : 
     118                 :          0 : static void inet_hash_insert(struct net *net, struct in_ifaddr *ifa)
     119                 :            : {
     120                 :          0 :         u32 hash = inet_addr_hash(net, ifa->ifa_local);
     121                 :            : 
     122                 :            :         spin_lock(&inet_addr_hash_lock);
     123                 :          0 :         hlist_add_head_rcu(&ifa->hash, &inet_addr_lst[hash]);
     124                 :            :         spin_unlock(&inet_addr_hash_lock);
     125                 :          0 : }
     126                 :            : 
     127                 :          0 : static void inet_hash_remove(struct in_ifaddr *ifa)
     128                 :            : {
     129                 :            :         spin_lock(&inet_addr_hash_lock);
     130                 :            :         hlist_del_init_rcu(&ifa->hash);
     131                 :            :         spin_unlock(&inet_addr_hash_lock);
     132                 :          0 : }
     133                 :            : 
     134                 :            : /**
     135                 :            :  * __ip_dev_find - find the first device with a given source address.
     136                 :            :  * @net: the net namespace
     137                 :            :  * @addr: the source address
     138                 :            :  * @devref: if true, take a reference on the found device
     139                 :            :  *
     140                 :            :  * If a caller uses devref=false, it should be protected by RCU, or RTNL
     141                 :            :  */
     142                 :          0 : struct net_device *__ip_dev_find(struct net *net, __be32 addr, bool devref)
     143                 :            : {
     144                 :            :         u32 hash = inet_addr_hash(net, addr);
     145                 :            :         struct net_device *result = NULL;
     146                 :            :         struct in_ifaddr *ifa;
     147                 :            : 
     148                 :            :         rcu_read_lock();
     149 [ +  - ][ #  # ]:        160 :         hlist_for_each_entry_rcu(ifa, &inet_addr_lst[hash], hash) {
                 [ +  - ]
     150         [ +  - ]:        160 :                 if (ifa->ifa_local == addr) {
     151                 :        160 :                         struct net_device *dev = ifa->ifa_dev->dev;
     152                 :            : 
     153                 :            :                         if (!net_eq(dev_net(dev), net))
     154                 :            :                                 continue;
     155                 :            :                         result = dev;
     156                 :        160 :                         break;
     157                 :            :                 }
     158                 :            :         }
     159         [ -  - ]:        160 :         if (!result) {
     160                 :          0 :                 struct flowi4 fl4 = { .daddr = addr };
     161                 :          0 :                 struct fib_result res = { 0 };
     162                 :            :                 struct fib_table *local;
     163                 :            : 
     164                 :            :                 /* Fallback to FIB local table so that communication
     165                 :            :                  * over loopback subnets work.
     166                 :            :                  */
     167                 :            :                 local = fib_get_table(net, RT_TABLE_LOCAL);
     168   [ #  #  #  # ]:          0 :                 if (local &&
     169         [ #  # ]:          0 :                     !fib_table_lookup(local, &fl4, &res, FIB_LOOKUP_NOREF) &&
     170                 :          0 :                     res.type == RTN_LOCAL)
     171                 :          0 :                         result = FIB_RES_DEV(res);
     172                 :            :         }
     173         [ #  # ]:          0 :         if (result && devref)
     174                 :            :                 dev_hold(result);
     175                 :            :         rcu_read_unlock();
     176                 :        160 :         return result;
     177                 :            : }
     178                 :            : EXPORT_SYMBOL(__ip_dev_find);
     179                 :            : 
     180                 :            : static void rtmsg_ifa(int event, struct in_ifaddr *, struct nlmsghdr *, u32);
     181                 :            : 
     182                 :            : static BLOCKING_NOTIFIER_HEAD(inetaddr_chain);
     183                 :            : static void inet_del_ifa(struct in_device *in_dev, struct in_ifaddr **ifap,
     184                 :            :                          int destroy);
     185                 :            : #ifdef CONFIG_SYSCTL
     186                 :            : static void devinet_sysctl_register(struct in_device *idev);
     187                 :            : static void devinet_sysctl_unregister(struct in_device *idev);
     188                 :            : #else
     189                 :            : static void devinet_sysctl_register(struct in_device *idev)
     190                 :            : {
     191                 :            : }
     192                 :            : static void devinet_sysctl_unregister(struct in_device *idev)
     193                 :            : {
     194                 :            : }
     195                 :            : #endif
     196                 :            : 
     197                 :            : /* Locks all the inet devices. */
     198                 :            : 
     199                 :            : static struct in_ifaddr *inet_alloc_ifa(void)
     200                 :            : {
     201                 :            :         return kzalloc(sizeof(struct in_ifaddr), GFP_KERNEL);
     202                 :            : }
     203                 :            : 
     204                 :          0 : static void inet_rcu_free_ifa(struct rcu_head *head)
     205                 :            : {
     206                 :          0 :         struct in_ifaddr *ifa = container_of(head, struct in_ifaddr, rcu_head);
     207         [ #  # ]:          0 :         if (ifa->ifa_dev)
     208                 :            :                 in_dev_put(ifa->ifa_dev);
     209                 :          0 :         kfree(ifa);
     210                 :          0 : }
     211                 :            : 
     212                 :            : static void inet_free_ifa(struct in_ifaddr *ifa)
     213                 :            : {
     214                 :          0 :         call_rcu(&ifa->rcu_head, inet_rcu_free_ifa);
     215                 :            : }
     216                 :            : 
     217                 :          0 : void in_dev_finish_destroy(struct in_device *idev)
     218                 :            : {
     219                 :          0 :         struct net_device *dev = idev->dev;
     220                 :            : 
     221         [ #  # ]:          0 :         WARN_ON(idev->ifa_list);
     222         [ #  # ]:          0 :         WARN_ON(idev->mc_list);
     223                 :          0 :         kfree(rcu_dereference_protected(idev->mc_hash, 1));
     224                 :            : #ifdef NET_REFCNT_DEBUG
     225                 :            :         pr_debug("%s: %p=%s\n", __func__, idev, dev ? dev->name : "NIL");
     226                 :            : #endif
     227                 :            :         dev_put(dev);
     228         [ #  # ]:          0 :         if (!idev->dead)
     229                 :          0 :                 pr_err("Freeing alive in_device %p\n", idev);
     230                 :            :         else
     231                 :          0 :                 kfree(idev);
     232                 :          0 : }
     233                 :            : EXPORT_SYMBOL(in_dev_finish_destroy);
     234                 :            : 
     235                 :          0 : static struct in_device *inetdev_init(struct net_device *dev)
     236                 :            : {
     237                 :            :         struct in_device *in_dev;
     238                 :            : 
     239         [ #  # ]:          0 :         ASSERT_RTNL();
     240                 :            : 
     241                 :            :         in_dev = kzalloc(sizeof(*in_dev), GFP_KERNEL);
     242         [ #  # ]:          0 :         if (!in_dev)
     243                 :            :                 goto out;
     244                 :          0 :         memcpy(&in_dev->cnf, dev_net(dev)->ipv4.devconf_dflt,
     245                 :            :                         sizeof(in_dev->cnf));
     246                 :          0 :         in_dev->cnf.sysctl = NULL;
     247                 :          0 :         in_dev->dev = dev;
     248                 :          0 :         in_dev->arp_parms = neigh_parms_alloc(dev, &arp_tbl);
     249         [ #  # ]:          0 :         if (!in_dev->arp_parms)
     250                 :            :                 goto out_kfree;
     251         [ #  # ]:          0 :         if (IPV4_DEVCONF(in_dev->cnf, FORWARDING))
     252                 :          0 :                 dev_disable_lro(dev);
     253                 :            :         /* Reference in_dev->dev */
     254                 :            :         dev_hold(dev);
     255                 :            :         /* Account for reference dev->ip_ptr (below) */
     256                 :          0 :         in_dev_hold(in_dev);
     257                 :            : 
     258                 :          0 :         devinet_sysctl_register(in_dev);
     259                 :          0 :         ip_mc_init_dev(in_dev);
     260         [ #  # ]:          0 :         if (dev->flags & IFF_UP)
     261                 :          0 :                 ip_mc_up(in_dev);
     262                 :            : 
     263                 :            :         /* we can receive as soon as ip_ptr is set -- do this last */
     264                 :          0 :         rcu_assign_pointer(dev->ip_ptr, in_dev);
     265                 :            : out:
     266                 :          0 :         return in_dev;
     267                 :            : out_kfree:
     268                 :          0 :         kfree(in_dev);
     269                 :            :         in_dev = NULL;
     270                 :          0 :         goto out;
     271                 :            : }
     272                 :            : 
     273                 :          0 : static void in_dev_rcu_put(struct rcu_head *head)
     274                 :            : {
     275                 :          0 :         struct in_device *idev = container_of(head, struct in_device, rcu_head);
     276                 :            :         in_dev_put(idev);
     277                 :          0 : }
     278                 :            : 
     279                 :          0 : static void inetdev_destroy(struct in_device *in_dev)
     280                 :            : {
     281                 :            :         struct in_ifaddr *ifa;
     282                 :            :         struct net_device *dev;
     283                 :            : 
     284         [ #  # ]:          0 :         ASSERT_RTNL();
     285                 :            : 
     286                 :          0 :         dev = in_dev->dev;
     287                 :            : 
     288                 :          0 :         in_dev->dead = 1;
     289                 :            : 
     290                 :          0 :         ip_mc_destroy_dev(in_dev);
     291                 :            : 
     292         [ #  # ]:          0 :         while ((ifa = in_dev->ifa_list) != NULL) {
     293                 :          0 :                 inet_del_ifa(in_dev, &in_dev->ifa_list, 0);
     294                 :            :                 inet_free_ifa(ifa);
     295                 :            :         }
     296                 :            : 
     297                 :          0 :         RCU_INIT_POINTER(dev->ip_ptr, NULL);
     298                 :            : 
     299                 :            :         devinet_sysctl_unregister(in_dev);
     300                 :          0 :         neigh_parms_release(&arp_tbl, in_dev->arp_parms);
     301                 :          0 :         arp_ifdown(dev);
     302                 :            : 
     303                 :          0 :         call_rcu(&in_dev->rcu_head, in_dev_rcu_put);
     304                 :          0 : }
     305                 :            : 
     306                 :          0 : int inet_addr_onlink(struct in_device *in_dev, __be32 a, __be32 b)
     307                 :            : {
     308                 :            :         rcu_read_lock();
     309 [ #  # ][ #  # ]:          0 :         for_primary_ifa(in_dev) {
     310         [ #  # ]:          0 :                 if (inet_ifa_match(a, ifa)) {
     311 [ #  # ][ #  # ]:          0 :                         if (!b || inet_ifa_match(b, ifa)) {
     312                 :            :                                 rcu_read_unlock();
     313                 :          0 :                                 return 1;
     314                 :            :                         }
     315                 :            :                 }
     316                 :            :         } endfor_ifa(in_dev);
     317                 :            :         rcu_read_unlock();
     318                 :          0 :         return 0;
     319                 :            : }
     320                 :            : 
     321                 :          0 : static void __inet_del_ifa(struct in_device *in_dev, struct in_ifaddr **ifap,
     322                 :            :                          int destroy, struct nlmsghdr *nlh, u32 portid)
     323                 :            : {
     324                 :            :         struct in_ifaddr *promote = NULL;
     325                 :          0 :         struct in_ifaddr *ifa, *ifa1 = *ifap;
     326                 :          0 :         struct in_ifaddr *last_prim = in_dev->ifa_list;
     327                 :            :         struct in_ifaddr *prev_prom = NULL;
     328 [ #  # ][ #  # ]:          0 :         int do_promote = IN_DEV_PROMOTE_SECONDARIES(in_dev);
     329                 :            : 
     330         [ #  # ]:          0 :         ASSERT_RTNL();
     331                 :            : 
     332                 :            :         /* 1. Deleting primary ifaddr forces deletion all secondaries
     333                 :            :          * unless alias promotion is set
     334                 :            :          **/
     335                 :            : 
     336         [ #  # ]:          0 :         if (!(ifa1->ifa_flags & IFA_F_SECONDARY)) {
     337                 :          0 :                 struct in_ifaddr **ifap1 = &ifa1->ifa_next;
     338                 :            : 
     339         [ #  # ]:          0 :                 while ((ifa = *ifap1) != NULL) {
     340 [ #  # ][ #  # ]:          0 :                         if (!(ifa->ifa_flags & IFA_F_SECONDARY) &&
     341                 :          0 :                             ifa1->ifa_scope <= ifa->ifa_scope)
     342                 :            :                                 last_prim = ifa;
     343                 :            : 
     344 [ #  # ][ #  # ]:          0 :                         if (!(ifa->ifa_flags & IFA_F_SECONDARY) ||
     345         [ #  # ]:          0 :                             ifa1->ifa_mask != ifa->ifa_mask ||
     346                 :          0 :                             !inet_ifa_match(ifa1->ifa_address, ifa)) {
     347                 :          0 :                                 ifap1 = &ifa->ifa_next;
     348                 :            :                                 prev_prom = ifa;
     349                 :          0 :                                 continue;
     350                 :            :                         }
     351                 :            : 
     352         [ #  # ]:          0 :                         if (!do_promote) {
     353                 :          0 :                                 inet_hash_remove(ifa);
     354                 :          0 :                                 *ifap1 = ifa->ifa_next;
     355                 :            : 
     356                 :          0 :                                 rtmsg_ifa(RTM_DELADDR, ifa, nlh, portid);
     357                 :          0 :                                 blocking_notifier_call_chain(&inetaddr_chain,
     358                 :            :                                                 NETDEV_DOWN, ifa);
     359                 :            :                                 inet_free_ifa(ifa);
     360                 :            :                         } else {
     361                 :            :                                 promote = ifa;
     362                 :            :                                 break;
     363                 :            :                         }
     364                 :            :                 }
     365                 :            :         }
     366                 :            : 
     367                 :            :         /* On promotion all secondaries from subnet are changing
     368                 :            :          * the primary IP, we must remove all their routes silently
     369                 :            :          * and later to add them back with new prefsrc. Do this
     370                 :            :          * while all addresses are on the device list.
     371                 :            :          */
     372         [ #  # ]:          0 :         for (ifa = promote; ifa; ifa = ifa->ifa_next) {
     373 [ #  # ][ #  # ]:          0 :                 if (ifa1->ifa_mask == ifa->ifa_mask &&
     374                 :          0 :                     inet_ifa_match(ifa1->ifa_address, ifa))
     375                 :          0 :                         fib_del_ifaddr(ifa, ifa1);
     376                 :            :         }
     377                 :            : 
     378                 :            :         /* 2. Unlink it */
     379                 :            : 
     380                 :          0 :         *ifap = ifa1->ifa_next;
     381                 :          0 :         inet_hash_remove(ifa1);
     382                 :            : 
     383                 :            :         /* 3. Announce address deletion */
     384                 :            : 
     385                 :            :         /* Send message first, then call notifier.
     386                 :            :            At first sight, FIB update triggered by notifier
     387                 :            :            will refer to already deleted ifaddr, that could confuse
     388                 :            :            netlink listeners. It is not true: look, gated sees
     389                 :            :            that route deleted and if it still thinks that ifaddr
     390                 :            :            is valid, it will try to restore deleted routes... Grr.
     391                 :            :            So that, this order is correct.
     392                 :            :          */
     393                 :          0 :         rtmsg_ifa(RTM_DELADDR, ifa1, nlh, portid);
     394                 :          0 :         blocking_notifier_call_chain(&inetaddr_chain, NETDEV_DOWN, ifa1);
     395                 :            : 
     396         [ #  # ]:          0 :         if (promote) {
     397                 :          0 :                 struct in_ifaddr *next_sec = promote->ifa_next;
     398                 :            : 
     399         [ #  # ]:          0 :                 if (prev_prom) {
     400                 :          0 :                         prev_prom->ifa_next = promote->ifa_next;
     401                 :          0 :                         promote->ifa_next = last_prim->ifa_next;
     402                 :          0 :                         last_prim->ifa_next = promote;
     403                 :            :                 }
     404                 :            : 
     405                 :          0 :                 promote->ifa_flags &= ~IFA_F_SECONDARY;
     406                 :          0 :                 rtmsg_ifa(RTM_NEWADDR, promote, nlh, portid);
     407                 :          0 :                 blocking_notifier_call_chain(&inetaddr_chain,
     408                 :            :                                 NETDEV_UP, promote);
     409         [ #  # ]:          0 :                 for (ifa = next_sec; ifa; ifa = ifa->ifa_next) {
     410 [ #  # ][ #  # ]:          0 :                         if (ifa1->ifa_mask != ifa->ifa_mask ||
     411                 :          0 :                             !inet_ifa_match(ifa1->ifa_address, ifa))
     412                 :          0 :                                         continue;
     413                 :          0 :                         fib_add_ifaddr(ifa);
     414                 :            :                 }
     415                 :            : 
     416                 :            :         }
     417         [ #  # ]:          0 :         if (destroy)
     418                 :            :                 inet_free_ifa(ifa1);
     419                 :          0 : }
     420                 :            : 
     421                 :          0 : static void inet_del_ifa(struct in_device *in_dev, struct in_ifaddr **ifap,
     422                 :            :                          int destroy)
     423                 :            : {
     424                 :          0 :         __inet_del_ifa(in_dev, ifap, destroy, NULL, 0);
     425                 :            : }
     426                 :            : 
     427                 :            : static void check_lifetime(struct work_struct *work);
     428                 :            : 
     429                 :            : static DECLARE_DELAYED_WORK(check_lifetime_work, check_lifetime);
     430                 :            : 
     431                 :          0 : static int __inet_insert_ifa(struct in_ifaddr *ifa, struct nlmsghdr *nlh,
     432                 :            :                              u32 portid)
     433                 :            : {
     434                 :          0 :         struct in_device *in_dev = ifa->ifa_dev;
     435                 :            :         struct in_ifaddr *ifa1, **ifap, **last_primary;
     436                 :            : 
     437         [ #  # ]:          0 :         ASSERT_RTNL();
     438                 :            : 
     439         [ #  # ]:          0 :         if (!ifa->ifa_local) {
     440                 :            :                 inet_free_ifa(ifa);
     441                 :          0 :                 return 0;
     442                 :            :         }
     443                 :            : 
     444                 :          0 :         ifa->ifa_flags &= ~IFA_F_SECONDARY;
     445                 :          0 :         last_primary = &in_dev->ifa_list;
     446                 :            : 
     447         [ #  # ]:          0 :         for (ifap = &in_dev->ifa_list; (ifa1 = *ifap) != NULL;
     448                 :          0 :              ifap = &ifa1->ifa_next) {
     449 [ #  # ][ #  # ]:          0 :                 if (!(ifa1->ifa_flags & IFA_F_SECONDARY) &&
     450                 :          0 :                     ifa->ifa_scope <= ifa1->ifa_scope)
     451                 :          0 :                         last_primary = &ifa1->ifa_next;
     452 [ #  # ][ #  # ]:          0 :                 if (ifa1->ifa_mask == ifa->ifa_mask &&
     453                 :          0 :                     inet_ifa_match(ifa1->ifa_address, ifa)) {
     454         [ #  # ]:          0 :                         if (ifa1->ifa_local == ifa->ifa_local) {
     455                 :            :                                 inet_free_ifa(ifa);
     456                 :          0 :                                 return -EEXIST;
     457                 :            :                         }
     458         [ #  # ]:          0 :                         if (ifa1->ifa_scope != ifa->ifa_scope) {
     459                 :            :                                 inet_free_ifa(ifa);
     460                 :          0 :                                 return -EINVAL;
     461                 :            :                         }
     462                 :          0 :                         ifa->ifa_flags |= IFA_F_SECONDARY;
     463                 :            :                 }
     464                 :            :         }
     465                 :            : 
     466         [ #  # ]:          0 :         if (!(ifa->ifa_flags & IFA_F_SECONDARY)) {
     467                 :          0 :                 net_srandom(ifa->ifa_local);
     468                 :            :                 ifap = last_primary;
     469                 :            :         }
     470                 :            : 
     471                 :          0 :         ifa->ifa_next = *ifap;
     472                 :          0 :         *ifap = ifa;
     473                 :            : 
     474                 :          0 :         inet_hash_insert(dev_net(in_dev->dev), ifa);
     475                 :            : 
     476                 :          0 :         cancel_delayed_work(&check_lifetime_work);
     477                 :            :         schedule_delayed_work(&check_lifetime_work, 0);
     478                 :            : 
     479                 :            :         /* Send message first, then call notifier.
     480                 :            :            Notifier will trigger FIB update, so that
     481                 :            :            listeners of netlink will know about new ifaddr */
     482                 :          0 :         rtmsg_ifa(RTM_NEWADDR, ifa, nlh, portid);
     483                 :          0 :         blocking_notifier_call_chain(&inetaddr_chain, NETDEV_UP, ifa);
     484                 :            : 
     485                 :          0 :         return 0;
     486                 :            : }
     487                 :            : 
     488                 :            : static int inet_insert_ifa(struct in_ifaddr *ifa)
     489                 :            : {
     490                 :          0 :         return __inet_insert_ifa(ifa, NULL, 0);
     491                 :            : }
     492                 :            : 
     493                 :          0 : static int inet_set_ifa(struct net_device *dev, struct in_ifaddr *ifa)
     494                 :            : {
     495                 :            :         struct in_device *in_dev = __in_dev_get_rtnl(dev);
     496                 :            : 
     497         [ #  # ]:          0 :         ASSERT_RTNL();
     498                 :            : 
     499         [ #  # ]:          0 :         if (!in_dev) {
     500                 :            :                 inet_free_ifa(ifa);
     501                 :          0 :                 return -ENOBUFS;
     502                 :            :         }
     503                 :            :         ipv4_devconf_setall(in_dev);
     504         [ #  # ]:          0 :         if (ifa->ifa_dev != in_dev) {
     505         [ #  # ]:          0 :                 WARN_ON(ifa->ifa_dev);
     506                 :          0 :                 in_dev_hold(in_dev);
     507                 :          0 :                 ifa->ifa_dev = in_dev;
     508                 :            :         }
     509         [ #  # ]:          0 :         if (ipv4_is_loopback(ifa->ifa_local))
     510                 :          0 :                 ifa->ifa_scope = RT_SCOPE_HOST;
     511                 :          0 :         return inet_insert_ifa(ifa);
     512                 :            : }
     513                 :            : 
     514                 :            : /* Caller must hold RCU or RTNL :
     515                 :            :  * We dont take a reference on found in_device
     516                 :            :  */
     517                 :          0 : struct in_device *inetdev_by_index(struct net *net, int ifindex)
     518                 :            : {
     519                 :            :         struct net_device *dev;
     520                 :            :         struct in_device *in_dev = NULL;
     521                 :            : 
     522                 :            :         rcu_read_lock();
     523                 :          0 :         dev = dev_get_by_index_rcu(net, ifindex);
     524   [ #  #  #  # ]:          0 :         if (dev)
     525                 :          0 :                 in_dev = rcu_dereference_rtnl(dev->ip_ptr);
     526                 :            :         rcu_read_unlock();
     527                 :          0 :         return in_dev;
     528                 :            : }
     529                 :            : EXPORT_SYMBOL(inetdev_by_index);
     530                 :            : 
     531                 :            : /* Called only from RTNL semaphored context. No locks. */
     532                 :            : 
     533                 :          0 : struct in_ifaddr *inet_ifa_byprefix(struct in_device *in_dev, __be32 prefix,
     534                 :            :                                     __be32 mask)
     535                 :            : {
     536         [ #  # ]:          0 :         ASSERT_RTNL();
     537                 :            : 
     538 [ #  # ][ #  # ]:          0 :         for_primary_ifa(in_dev) {
     539 [ #  # ][ #  # ]:          0 :                 if (ifa->ifa_mask == mask && inet_ifa_match(prefix, ifa))
     540                 :            :                         return ifa;
     541                 :            :         } endfor_ifa(in_dev);
     542                 :            :         return NULL;
     543                 :            : }
     544                 :            : 
     545                 :          0 : static int inet_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh)
     546                 :            : {
     547                 :            :         struct net *net = sock_net(skb->sk);
     548                 :            :         struct nlattr *tb[IFA_MAX+1];
     549                 :          0 :         struct in_device *in_dev;
     550                 :            :         struct ifaddrmsg *ifm;
     551                 :          0 :         struct in_ifaddr *ifa, **ifap;
     552                 :            :         int err = -EINVAL;
     553                 :            : 
     554         [ #  # ]:          0 :         ASSERT_RTNL();
     555                 :            : 
     556                 :            :         err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv4_policy);
     557         [ #  # ]:          0 :         if (err < 0)
     558                 :            :                 goto errout;
     559                 :            : 
     560                 :            :         ifm = nlmsg_data(nlh);
     561                 :          0 :         in_dev = inetdev_by_index(net, ifm->ifa_index);
     562         [ #  # ]:          0 :         if (in_dev == NULL) {
     563                 :            :                 err = -ENODEV;
     564                 :            :                 goto errout;
     565                 :            :         }
     566                 :            : 
     567         [ #  # ]:          0 :         for (ifap = &in_dev->ifa_list; (ifa = *ifap) != NULL;
     568                 :          0 :              ifap = &ifa->ifa_next) {
     569 [ #  # ][ #  # ]:          0 :                 if (tb[IFA_LOCAL] &&
     570                 :          0 :                     ifa->ifa_local != nla_get_be32(tb[IFA_LOCAL]))
     571                 :          0 :                         continue;
     572                 :            : 
     573 [ #  # ][ #  # ]:          0 :                 if (tb[IFA_LABEL] && nla_strcmp(tb[IFA_LABEL], ifa->ifa_label))
     574                 :          0 :                         continue;
     575                 :            : 
     576 [ #  # ][ #  # ]:          0 :                 if (tb[IFA_ADDRESS] &&
     577         [ #  # ]:          0 :                     (ifm->ifa_prefixlen != ifa->ifa_prefixlen ||
     578                 :            :                     !inet_ifa_match(nla_get_be32(tb[IFA_ADDRESS]), ifa)))
     579                 :          0 :                         continue;
     580                 :            : 
     581                 :          0 :                 __inet_del_ifa(in_dev, ifap, 1, nlh, NETLINK_CB(skb).portid);
     582                 :          0 :                 return 0;
     583                 :            :         }
     584                 :            : 
     585                 :            :         err = -EADDRNOTAVAIL;
     586                 :            : errout:
     587                 :          0 :         return err;
     588                 :            : }
     589                 :            : 
     590                 :            : #define INFINITY_LIFE_TIME      0xFFFFFFFF
     591                 :            : 
     592                 :          0 : static void check_lifetime(struct work_struct *work)
     593                 :            : {
     594                 :            :         unsigned long now, next, next_sec, next_sched;
     595                 :            :         struct in_ifaddr *ifa;
     596                 :            :         struct hlist_node *n;
     597                 :            :         int i;
     598                 :            : 
     599                 :       1258 :         now = jiffies;
     600                 :       1258 :         next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
     601                 :            : 
     602         [ +  + ]:     323306 :         for (i = 0; i < IN4_ADDR_HSIZE; i++) {
     603                 :            :                 bool change_needed = false;
     604                 :            : 
     605                 :            :                 rcu_read_lock();
     606 [ +  + ][ -  + ]:     325822 :                 hlist_for_each_entry_rcu(ifa, &inet_addr_lst[i], hash) {
                 [ +  + ]
     607                 :            :                         unsigned long age;
     608                 :            : 
     609         [ +  - ]:       2516 :                         if (ifa->ifa_flags & IFA_F_PERMANENT)
     610                 :       2516 :                                 continue;
     611                 :            : 
     612                 :            :                         /* We try to batch several events at once. */
     613                 :          0 :                         age = (now - ifa->ifa_tstamp +
     614                 :            :                                ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
     615                 :            : 
     616 [ #  # ][ #  # ]:          0 :                         if (ifa->ifa_valid_lft != INFINITY_LIFE_TIME &&
     617                 :            :                             age >= ifa->ifa_valid_lft) {
     618                 :            :                                 change_needed = true;
     619         [ #  # ]:          0 :                         } else if (ifa->ifa_preferred_lft ==
     620                 :            :                                    INFINITY_LIFE_TIME) {
     621                 :          0 :                                 continue;
     622         [ #  # ]:          0 :                         } else if (age >= ifa->ifa_preferred_lft) {
     623         [ #  # ]:          0 :                                 if (time_before(ifa->ifa_tstamp +
     624                 :            :                                                 ifa->ifa_valid_lft * HZ, next))
     625                 :            :                                         next = ifa->ifa_tstamp +
     626                 :            :                                                ifa->ifa_valid_lft * HZ;
     627                 :            : 
     628         [ #  # ]:          0 :                                 if (!(ifa->ifa_flags & IFA_F_DEPRECATED))
     629                 :            :                                         change_needed = true;
     630         [ #  # ]:          0 :                         } else if (time_before(ifa->ifa_tstamp +
     631                 :            :                                                ifa->ifa_preferred_lft * HZ,
     632                 :            :                                                next)) {
     633                 :            :                                 next = ifa->ifa_tstamp +
     634                 :            :                                        ifa->ifa_preferred_lft * HZ;
     635                 :            :                         }
     636                 :            :                 }
     637                 :            :                 rcu_read_unlock();
     638         [ +  - ]:     322048 :                 if (!change_needed)
     639                 :     322048 :                         continue;
     640                 :          0 :                 rtnl_lock();
     641 [ #  # ][ #  # ]:          0 :                 hlist_for_each_entry_safe(ifa, n, &inet_addr_lst[i], hash) {
                 [ #  # ]
     642                 :            :                         unsigned long age;
     643                 :            : 
     644         [ #  # ]:          0 :                         if (ifa->ifa_flags & IFA_F_PERMANENT)
     645                 :          0 :                                 continue;
     646                 :            : 
     647                 :            :                         /* We try to batch several events at once. */
     648                 :          0 :                         age = (now - ifa->ifa_tstamp +
     649                 :            :                                ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
     650                 :            : 
     651 [ #  # ][ #  # ]:          0 :                         if (ifa->ifa_valid_lft != INFINITY_LIFE_TIME &&
     652                 :            :                             age >= ifa->ifa_valid_lft) {
     653                 :            :                                 struct in_ifaddr **ifap;
     654                 :            : 
     655         [ #  # ]:          0 :                                 for (ifap = &ifa->ifa_dev->ifa_list;
     656                 :          0 :                                      *ifap != NULL; ifap = &(*ifap)->ifa_next) {
     657         [ #  # ]:          0 :                                         if (*ifap == ifa) {
     658                 :            :                                                 inet_del_ifa(ifa->ifa_dev,
     659                 :            :                                                              ifap, 1);
     660                 :            :                                                 break;
     661                 :            :                                         }
     662                 :            :                                 }
     663         [ #  # ]:          0 :                         } else if (ifa->ifa_preferred_lft !=
     664         [ #  # ]:          0 :                                    INFINITY_LIFE_TIME &&
     665         [ #  # ]:          0 :                                    age >= ifa->ifa_preferred_lft &&
     666                 :          0 :                                    !(ifa->ifa_flags & IFA_F_DEPRECATED)) {
     667                 :          0 :                                 ifa->ifa_flags |= IFA_F_DEPRECATED;
     668                 :          0 :                                 rtmsg_ifa(RTM_NEWADDR, ifa, NULL, 0);
     669                 :            :                         }
     670                 :            :                 }
     671                 :          0 :                 rtnl_unlock();
     672                 :            :         }
     673                 :            : 
     674                 :       1258 :         next_sec = round_jiffies_up(next);
     675                 :            :         next_sched = next;
     676                 :            : 
     677                 :            :         /* If rounded timeout is accurate enough, accept it. */
     678         [ -  + ]:       1258 :         if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
     679                 :            :                 next_sched = next_sec;
     680                 :            : 
     681                 :       1258 :         now = jiffies;
     682                 :            :         /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
     683         [ -  + ]:       1258 :         if (time_before(next_sched, now + ADDRCONF_TIMER_FUZZ_MAX))
     684                 :          0 :                 next_sched = now + ADDRCONF_TIMER_FUZZ_MAX;
     685                 :            : 
     686                 :       1258 :         schedule_delayed_work(&check_lifetime_work, next_sched - now);
     687                 :       1258 : }
     688                 :            : 
     689                 :          0 : static void set_ifa_lifetime(struct in_ifaddr *ifa, __u32 valid_lft,
     690                 :            :                              __u32 prefered_lft)
     691                 :            : {
     692                 :            :         unsigned long timeout;
     693                 :            : 
     694                 :          0 :         ifa->ifa_flags &= ~(IFA_F_PERMANENT | IFA_F_DEPRECATED);
     695                 :            : 
     696                 :            :         timeout = addrconf_timeout_fixup(valid_lft, HZ);
     697         [ #  # ]:          0 :         if (addrconf_finite_timeout(timeout))
     698                 :          0 :                 ifa->ifa_valid_lft = timeout;
     699                 :            :         else
     700                 :          0 :                 ifa->ifa_flags |= IFA_F_PERMANENT;
     701                 :            : 
     702                 :            :         timeout = addrconf_timeout_fixup(prefered_lft, HZ);
     703         [ #  # ]:          0 :         if (addrconf_finite_timeout(timeout)) {
     704         [ #  # ]:          0 :                 if (timeout == 0)
     705                 :          0 :                         ifa->ifa_flags |= IFA_F_DEPRECATED;
     706                 :          0 :                 ifa->ifa_preferred_lft = timeout;
     707                 :            :         }
     708                 :          0 :         ifa->ifa_tstamp = jiffies;
     709         [ #  # ]:          0 :         if (!ifa->ifa_cstamp)
     710                 :          0 :                 ifa->ifa_cstamp = ifa->ifa_tstamp;
     711                 :          0 : }
     712                 :            : 
     713                 :          0 : static struct in_ifaddr *rtm_to_ifaddr(struct net *net, struct nlmsghdr *nlh,
     714                 :            :                                        __u32 *pvalid_lft, __u32 *pprefered_lft)
     715                 :            : {
     716                 :            :         struct nlattr *tb[IFA_MAX+1];
     717                 :            :         struct in_ifaddr *ifa;
     718                 :            :         struct ifaddrmsg *ifm;
     719                 :          0 :         struct net_device *dev;
     720                 :            :         struct in_device *in_dev;
     721                 :            :         int err;
     722                 :            : 
     723                 :            :         err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv4_policy);
     724         [ #  # ]:          0 :         if (err < 0)
     725                 :            :                 goto errout;
     726                 :            : 
     727                 :            :         ifm = nlmsg_data(nlh);
     728                 :            :         err = -EINVAL;
     729 [ #  # ][ #  # ]:          0 :         if (ifm->ifa_prefixlen > 32 || tb[IFA_LOCAL] == NULL)
     730                 :            :                 goto errout;
     731                 :            : 
     732                 :          0 :         dev = __dev_get_by_index(net, ifm->ifa_index);
     733                 :            :         err = -ENODEV;
     734         [ #  # ]:          0 :         if (dev == NULL)
     735                 :            :                 goto errout;
     736                 :            : 
     737                 :            :         in_dev = __in_dev_get_rtnl(dev);
     738                 :            :         err = -ENOBUFS;
     739         [ #  # ]:          0 :         if (in_dev == NULL)
     740                 :            :                 goto errout;
     741                 :            : 
     742                 :            :         ifa = inet_alloc_ifa();
     743         [ #  # ]:          0 :         if (ifa == NULL)
     744                 :            :                 /*
     745                 :            :                  * A potential indev allocation can be left alive, it stays
     746                 :            :                  * assigned to its device and is destroy with it.
     747                 :            :                  */
     748                 :            :                 goto errout;
     749                 :            : 
     750                 :            :         ipv4_devconf_setall(in_dev);
     751                 :          0 :         in_dev_hold(in_dev);
     752                 :            : 
     753         [ #  # ]:          0 :         if (tb[IFA_ADDRESS] == NULL)
     754                 :          0 :                 tb[IFA_ADDRESS] = tb[IFA_LOCAL];
     755                 :            : 
     756                 :            :         INIT_HLIST_NODE(&ifa->hash);
     757                 :          0 :         ifa->ifa_prefixlen = ifm->ifa_prefixlen;
     758                 :          0 :         ifa->ifa_mask = inet_make_mask(ifm->ifa_prefixlen);
     759                 :          0 :         ifa->ifa_flags = ifm->ifa_flags;
     760                 :          0 :         ifa->ifa_scope = ifm->ifa_scope;
     761                 :          0 :         ifa->ifa_dev = in_dev;
     762                 :            : 
     763                 :          0 :         ifa->ifa_local = nla_get_be32(tb[IFA_LOCAL]);
     764                 :          0 :         ifa->ifa_address = nla_get_be32(tb[IFA_ADDRESS]);
     765                 :            : 
     766         [ #  # ]:          0 :         if (tb[IFA_BROADCAST])
     767                 :          0 :                 ifa->ifa_broadcast = nla_get_be32(tb[IFA_BROADCAST]);
     768                 :            : 
     769         [ #  # ]:          0 :         if (tb[IFA_LABEL])
     770                 :          0 :                 nla_strlcpy(ifa->ifa_label, tb[IFA_LABEL], IFNAMSIZ);
     771                 :            :         else
     772                 :          0 :                 memcpy(ifa->ifa_label, dev->name, IFNAMSIZ);
     773                 :            : 
     774         [ #  # ]:          0 :         if (tb[IFA_CACHEINFO]) {
     775                 :            :                 struct ifa_cacheinfo *ci;
     776                 :            : 
     777                 :            :                 ci = nla_data(tb[IFA_CACHEINFO]);
     778 [ #  # ][ #  # ]:          0 :                 if (!ci->ifa_valid || ci->ifa_prefered > ci->ifa_valid) {
     779                 :            :                         err = -EINVAL;
     780                 :            :                         goto errout_free;
     781                 :            :                 }
     782                 :          0 :                 *pvalid_lft = ci->ifa_valid;
     783                 :          0 :                 *pprefered_lft = ci->ifa_prefered;
     784                 :            :         }
     785                 :            : 
     786                 :          0 :         return ifa;
     787                 :            : 
     788                 :            : errout_free:
     789                 :            :         inet_free_ifa(ifa);
     790                 :            : errout:
     791                 :          0 :         return ERR_PTR(err);
     792                 :            : }
     793                 :            : 
     794                 :          0 : static struct in_ifaddr *find_matching_ifa(struct in_ifaddr *ifa)
     795                 :            : {
     796                 :          0 :         struct in_device *in_dev = ifa->ifa_dev;
     797                 :            :         struct in_ifaddr *ifa1, **ifap;
     798                 :            : 
     799         [ #  # ]:          0 :         if (!ifa->ifa_local)
     800                 :            :                 return NULL;
     801                 :            : 
     802         [ #  # ]:          0 :         for (ifap = &in_dev->ifa_list; (ifa1 = *ifap) != NULL;
     803                 :          0 :              ifap = &ifa1->ifa_next) {
     804 [ #  # ][ #  # ]:          0 :                 if (ifa1->ifa_mask == ifa->ifa_mask &&
     805         [ #  # ]:          0 :                     inet_ifa_match(ifa1->ifa_address, ifa) &&
     806                 :          0 :                     ifa1->ifa_local == ifa->ifa_local)
     807                 :            :                         return ifa1;
     808                 :            :         }
     809                 :            :         return NULL;
     810                 :            : }
     811                 :            : 
     812                 :          0 : static int inet_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
     813                 :            : {
     814                 :            :         struct net *net = sock_net(skb->sk);
     815                 :            :         struct in_ifaddr *ifa;
     816                 :            :         struct in_ifaddr *ifa_existing;
     817                 :          0 :         __u32 valid_lft = INFINITY_LIFE_TIME;
     818                 :          0 :         __u32 prefered_lft = INFINITY_LIFE_TIME;
     819                 :            : 
     820         [ #  # ]:          0 :         ASSERT_RTNL();
     821                 :            : 
     822                 :          0 :         ifa = rtm_to_ifaddr(net, nlh, &valid_lft, &prefered_lft);
     823         [ #  # ]:          0 :         if (IS_ERR(ifa))
     824                 :          0 :                 return PTR_ERR(ifa);
     825                 :            : 
     826                 :          0 :         ifa_existing = find_matching_ifa(ifa);
     827         [ #  # ]:          0 :         if (!ifa_existing) {
     828                 :            :                 /* It would be best to check for !NLM_F_CREATE here but
     829                 :            :                  * userspace alreay relies on not having to provide this.
     830                 :            :                  */
     831                 :          0 :                 set_ifa_lifetime(ifa, valid_lft, prefered_lft);
     832                 :          0 :                 return __inet_insert_ifa(ifa, nlh, NETLINK_CB(skb).portid);
     833                 :            :         } else {
     834                 :            :                 inet_free_ifa(ifa);
     835                 :            : 
     836         [ #  # ]:          0 :                 if (nlh->nlmsg_flags & NLM_F_EXCL ||
     837                 :            :                     !(nlh->nlmsg_flags & NLM_F_REPLACE))
     838                 :            :                         return -EEXIST;
     839                 :            :                 ifa = ifa_existing;
     840                 :          0 :                 set_ifa_lifetime(ifa, valid_lft, prefered_lft);
     841                 :          0 :                 cancel_delayed_work(&check_lifetime_work);
     842                 :            :                 schedule_delayed_work(&check_lifetime_work, 0);
     843                 :          0 :                 rtmsg_ifa(RTM_NEWADDR, ifa, nlh, NETLINK_CB(skb).portid);
     844                 :          0 :                 blocking_notifier_call_chain(&inetaddr_chain, NETDEV_UP, ifa);
     845                 :            :         }
     846                 :          0 :         return 0;
     847                 :            : }
     848                 :            : 
     849                 :            : /*
     850                 :            :  *      Determine a default network mask, based on the IP address.
     851                 :            :  */
     852                 :            : 
     853                 :          0 : static int inet_abc_len(__be32 addr)
     854                 :            : {
     855                 :            :         int rc = -1;    /* Something else, probably a multicast. */
     856                 :            : 
     857         [ #  # ]:          0 :         if (ipv4_is_zeronet(addr))
     858                 :            :                 rc = 0;
     859                 :            :         else {
     860         [ #  # ]:          0 :                 __u32 haddr = ntohl(addr);
     861                 :            : 
     862         [ #  # ]:          0 :                 if (IN_CLASSA(haddr))
     863                 :            :                         rc = 8;
     864         [ #  # ]:          0 :                 else if (IN_CLASSB(haddr))
     865                 :            :                         rc = 16;
     866         [ #  # ]:          0 :                 else if (IN_CLASSC(haddr))
     867                 :            :                         rc = 24;
     868                 :            :         }
     869                 :            : 
     870                 :          0 :         return rc;
     871                 :            : }
     872                 :            : 
     873                 :            : 
     874                 :          0 : int devinet_ioctl(struct net *net, unsigned int cmd, void __user *arg)
     875                 :            : {
     876                 :            :         struct ifreq ifr;
     877                 :            :         struct sockaddr_in sin_orig;
     878                 :            :         struct sockaddr_in *sin = (struct sockaddr_in *)&ifr.ifr_addr;
     879                 :            :         struct in_device *in_dev;
     880                 :            :         struct in_ifaddr **ifap = NULL;
     881                 :            :         struct in_ifaddr *ifa = NULL;
     882                 :          9 :         struct net_device *dev;
     883                 :            :         char *colon;
     884                 :            :         int ret = -EFAULT;
     885                 :            :         int tryaddrmatch = 0;
     886                 :            : 
     887                 :            :         /*
     888                 :            :          *      Fetch the caller's info block into kernel space
     889                 :            :          */
     890                 :            : 
     891         [ +  + ]:         10 :         if (copy_from_user(&ifr, arg, sizeof(struct ifreq)))
     892                 :            :                 goto out;
     893                 :          9 :         ifr.ifr_name[IFNAMSIZ - 1] = 0;
     894                 :            : 
     895                 :            :         /* save original address for comparison */
     896                 :          9 :         memcpy(&sin_orig, sin, sizeof(*sin));
     897                 :            : 
     898                 :          9 :         colon = strchr(ifr.ifr_name, ':');
     899         [ -  + ]:          9 :         if (colon)
     900                 :          0 :                 *colon = 0;
     901                 :            : 
     902                 :          9 :         dev_load(net, ifr.ifr_name);
     903                 :            : 
     904   [ +  -  -  - ]:          9 :         switch (cmd) {
     905                 :            :         case SIOCGIFADDR:       /* Get interface address */
     906                 :            :         case SIOCGIFBRDADDR:    /* Get the broadcast address */
     907                 :            :         case SIOCGIFDSTADDR:    /* Get the destination address */
     908                 :            :         case SIOCGIFNETMASK:    /* Get the netmask for the interface */
     909                 :            :                 /* Note that these ioctls will not sleep,
     910                 :            :                    so that we do not impose a lock.
     911                 :            :                    One day we will be forced to put shlock here (I mean SMP)
     912                 :            :                  */
     913                 :          9 :                 tryaddrmatch = (sin_orig.sin_family == AF_INET);
     914                 :          9 :                 memset(sin, 0, sizeof(*sin));
     915                 :          9 :                 sin->sin_family = AF_INET;
     916                 :          9 :                 break;
     917                 :            : 
     918                 :            :         case SIOCSIFFLAGS:
     919                 :            :                 ret = -EPERM;
     920         [ #  # ]:          0 :                 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
     921                 :            :                         goto out;
     922                 :            :                 break;
     923                 :            :         case SIOCSIFADDR:       /* Set interface address (and family) */
     924                 :            :         case SIOCSIFBRDADDR:    /* Set the broadcast address */
     925                 :            :         case SIOCSIFDSTADDR:    /* Set the destination address */
     926                 :            :         case SIOCSIFNETMASK:    /* Set the netmask for the interface */
     927                 :            :         case SIOCKILLADDR:      /* Nuke all sockets on this address */
     928                 :            :                 ret = -EPERM;
     929         [ #  # ]:          0 :                 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
     930                 :            :                         goto out;
     931                 :            :                 ret = -EINVAL;
     932         [ #  # ]:          0 :                 if (sin->sin_family != AF_INET)
     933                 :            :                         goto out;
     934                 :            :                 break;
     935                 :            :         default:
     936                 :            :                 ret = -EINVAL;
     937                 :            :                 goto out;
     938                 :            :         }
     939                 :            : 
     940                 :          9 :         rtnl_lock();
     941                 :            : 
     942                 :            :         ret = -ENODEV;
     943                 :          9 :         dev = __dev_get_by_name(net, ifr.ifr_name);
     944         [ +  - ]:          9 :         if (!dev)
     945                 :            :                 goto done;
     946                 :            : 
     947         [ -  + ]:          9 :         if (colon)
     948                 :          0 :                 *colon = ':';
     949                 :            : 
     950                 :            :         in_dev = __in_dev_get_rtnl(dev);
     951         [ +  - ]:          9 :         if (in_dev) {
     952         [ +  - ]:          9 :                 if (tryaddrmatch) {
     953                 :            :                         /* Matthias Andree */
     954                 :            :                         /* compare label and address (4.4BSD style) */
     955                 :            :                         /* note: we only do this for a limited set of ioctls
     956                 :            :                            and only if the original address family was AF_INET.
     957                 :            :                            This is checked above. */
     958         [ +  + ]:         13 :                         for (ifap = &in_dev->ifa_list; (ifa = *ifap) != NULL;
     959                 :          4 :                              ifap = &ifa->ifa_next) {
     960 [ +  - ][ +  + ]:          8 :                                 if (!strcmp(ifr.ifr_name, ifa->ifa_label) &&
     961                 :            :                                     sin_orig.sin_addr.s_addr ==
     962                 :          8 :                                                         ifa->ifa_local) {
     963                 :            :                                         break; /* found */
     964                 :            :                                 }
     965                 :            :                         }
     966                 :            :                 }
     967                 :            :                 /* we didn't get a match, maybe the application is
     968                 :            :                    4.3BSD-style and passed in junk so we fall back to
     969                 :            :                    comparing just the label */
     970         [ +  + ]:          9 :                 if (!ifa) {
     971         [ +  + ]:          5 :                         for (ifap = &in_dev->ifa_list; (ifa = *ifap) != NULL;
     972                 :          0 :                              ifap = &ifa->ifa_next)
     973         [ -  + ]:          4 :                                 if (!strcmp(ifr.ifr_name, ifa->ifa_label))
     974                 :            :                                         break;
     975                 :            :                 }
     976                 :            :         }
     977                 :            : 
     978                 :            :         ret = -EADDRNOTAVAIL;
     979         [ +  + ]:          9 :         if (!ifa && cmd != SIOCSIFADDR && cmd != SIOCSIFFLAGS
     980         [ -  + ]:          1 :             && cmd != SIOCKILLADDR)
     981                 :            :                 goto done;
     982                 :            : 
     983   [ +  +  +  +  :          8 :         switch (cmd) {
          -  -  -  -  -  
                   -  - ]
     984                 :            :         case SIOCGIFADDR:       /* Get interface address */
     985                 :          2 :                 sin->sin_addr.s_addr = ifa->ifa_local;
     986                 :          2 :                 goto rarok;
     987                 :            : 
     988                 :            :         case SIOCGIFBRDADDR:    /* Get the broadcast address */
     989                 :          2 :                 sin->sin_addr.s_addr = ifa->ifa_broadcast;
     990                 :          2 :                 goto rarok;
     991                 :            : 
     992                 :            :         case SIOCGIFDSTADDR:    /* Get the destination address */
     993                 :          2 :                 sin->sin_addr.s_addr = ifa->ifa_address;
     994                 :          2 :                 goto rarok;
     995                 :            : 
     996                 :            :         case SIOCGIFNETMASK:    /* Get the netmask for the interface */
     997                 :          2 :                 sin->sin_addr.s_addr = ifa->ifa_mask;
     998                 :          2 :                 goto rarok;
     999                 :            : 
    1000                 :            :         case SIOCSIFFLAGS:
    1001         [ #  # ]:          0 :                 if (colon) {
    1002                 :            :                         ret = -EADDRNOTAVAIL;
    1003         [ #  # ]:          0 :                         if (!ifa)
    1004                 :            :                                 break;
    1005                 :            :                         ret = 0;
    1006         [ #  # ]:          0 :                         if (!(ifr.ifr_flags & IFF_UP))
    1007                 :            :                                 inet_del_ifa(in_dev, ifap, 1);
    1008                 :            :                         break;
    1009                 :            :                 }
    1010                 :          0 :                 ret = dev_change_flags(dev, ifr.ifr_flags);
    1011                 :          0 :                 break;
    1012                 :            : 
    1013                 :            :         case SIOCSIFADDR:       /* Set interface address (and family) */
    1014                 :            :                 ret = -EINVAL;
    1015         [ #  # ]:          0 :                 if (inet_abc_len(sin->sin_addr.s_addr) < 0)
    1016                 :            :                         break;
    1017                 :            : 
    1018         [ #  # ]:          0 :                 if (!ifa) {
    1019                 :            :                         ret = -ENOBUFS;
    1020                 :            :                         ifa = inet_alloc_ifa();
    1021         [ #  # ]:          0 :                         if (!ifa)
    1022                 :            :                                 break;
    1023                 :            :                         INIT_HLIST_NODE(&ifa->hash);
    1024         [ #  # ]:          0 :                         if (colon)
    1025                 :          0 :                                 memcpy(ifa->ifa_label, ifr.ifr_name, IFNAMSIZ);
    1026                 :            :                         else
    1027                 :          0 :                                 memcpy(ifa->ifa_label, dev->name, IFNAMSIZ);
    1028                 :            :                 } else {
    1029                 :            :                         ret = 0;
    1030         [ #  # ]:          0 :                         if (ifa->ifa_local == sin->sin_addr.s_addr)
    1031                 :            :                                 break;
    1032                 :            :                         inet_del_ifa(in_dev, ifap, 0);
    1033                 :          0 :                         ifa->ifa_broadcast = 0;
    1034                 :          0 :                         ifa->ifa_scope = 0;
    1035                 :            :                 }
    1036                 :            : 
    1037                 :          0 :                 ifa->ifa_address = ifa->ifa_local = sin->sin_addr.s_addr;
    1038                 :            : 
    1039         [ #  # ]:          0 :                 if (!(dev->flags & IFF_POINTOPOINT)) {
    1040                 :          0 :                         ifa->ifa_prefixlen = inet_abc_len(ifa->ifa_address);
    1041                 :          0 :                         ifa->ifa_mask = inet_make_mask(ifa->ifa_prefixlen);
    1042 [ #  # ][ #  # ]:          0 :                         if ((dev->flags & IFF_BROADCAST) &&
    1043                 :            :                             ifa->ifa_prefixlen < 31)
    1044                 :          0 :                                 ifa->ifa_broadcast = ifa->ifa_address |
    1045                 :          0 :                                                      ~ifa->ifa_mask;
    1046                 :            :                 } else {
    1047                 :          0 :                         ifa->ifa_prefixlen = 32;
    1048                 :          0 :                         ifa->ifa_mask = inet_make_mask(32);
    1049                 :            :                 }
    1050                 :          0 :                 set_ifa_lifetime(ifa, INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
    1051                 :          0 :                 ret = inet_set_ifa(dev, ifa);
    1052                 :          0 :                 break;
    1053                 :            : 
    1054                 :            :         case SIOCSIFBRDADDR:    /* Set the broadcast address */
    1055                 :            :                 ret = 0;
    1056         [ #  # ]:          0 :                 if (ifa->ifa_broadcast != sin->sin_addr.s_addr) {
    1057                 :            :                         inet_del_ifa(in_dev, ifap, 0);
    1058                 :          0 :                         ifa->ifa_broadcast = sin->sin_addr.s_addr;
    1059                 :            :                         inet_insert_ifa(ifa);
    1060                 :            :                 }
    1061                 :            :                 break;
    1062                 :            : 
    1063                 :            :         case SIOCSIFDSTADDR:    /* Set the destination address */
    1064                 :            :                 ret = 0;
    1065         [ #  # ]:          0 :                 if (ifa->ifa_address == sin->sin_addr.s_addr)
    1066                 :            :                         break;
    1067                 :            :                 ret = -EINVAL;
    1068         [ #  # ]:          0 :                 if (inet_abc_len(sin->sin_addr.s_addr) < 0)
    1069                 :            :                         break;
    1070                 :            :                 ret = 0;
    1071                 :            :                 inet_del_ifa(in_dev, ifap, 0);
    1072                 :          0 :                 ifa->ifa_address = sin->sin_addr.s_addr;
    1073                 :            :                 inet_insert_ifa(ifa);
    1074                 :            :                 break;
    1075                 :            : 
    1076                 :            :         case SIOCSIFNETMASK:    /* Set the netmask for the interface */
    1077                 :            : 
    1078                 :            :                 /*
    1079                 :            :                  *      The mask we set must be legal.
    1080                 :            :                  */
    1081                 :            :                 ret = -EINVAL;
    1082         [ #  # ]:          0 :                 if (bad_mask(sin->sin_addr.s_addr, 0))
    1083                 :            :                         break;
    1084                 :            :                 ret = 0;
    1085         [ #  # ]:          0 :                 if (ifa->ifa_mask != sin->sin_addr.s_addr) {
    1086                 :            :                         __be32 old_mask = ifa->ifa_mask;
    1087                 :            :                         inet_del_ifa(in_dev, ifap, 0);
    1088                 :          0 :                         ifa->ifa_mask = sin->sin_addr.s_addr;
    1089                 :          0 :                         ifa->ifa_prefixlen = inet_mask_len(ifa->ifa_mask);
    1090                 :            : 
    1091                 :            :                         /* See if current broadcast address matches
    1092                 :            :                          * with current netmask, then recalculate
    1093                 :            :                          * the broadcast address. Otherwise it's a
    1094                 :            :                          * funny address, so don't touch it since
    1095                 :            :                          * the user seems to know what (s)he's doing...
    1096                 :            :                          */
    1097    [ - ][ #  # ]:          0 :                         if ((dev->flags & IFF_BROADCAST) &&
    1098         [ #  # ]:          0 :                             (ifa->ifa_prefixlen < 31) &&
    1099                 :          0 :                             (ifa->ifa_broadcast ==
    1100                 :          0 :                              (ifa->ifa_local|~old_mask))) {
    1101                 :          0 :                                 ifa->ifa_broadcast = (ifa->ifa_local |
    1102                 :          0 :                                                       ~sin->sin_addr.s_addr);
    1103                 :            :                         }
    1104                 :            :                         inet_insert_ifa(ifa);
    1105                 :            :                 }
    1106                 :            :                 break;
    1107                 :            :         case SIOCKILLADDR:      /* Nuke all connections on this address */
    1108                 :          0 :                 ret = tcp_nuke_addr(net, (struct sockaddr *) sin);
    1109                 :          0 :                 break;
    1110                 :            :         }
    1111                 :            : done:
    1112                 :          1 :         rtnl_unlock();
    1113                 :            : out:
    1114                 :         10 :         return ret;
    1115                 :            : rarok:
    1116                 :          8 :         rtnl_unlock();
    1117         [ -  + ]:          8 :         ret = copy_to_user(arg, &ifr, sizeof(struct ifreq)) ? -EFAULT : 0;
    1118                 :            :         goto out;
    1119                 :            : }
    1120                 :            : 
    1121                 :          0 : static int inet_gifconf(struct net_device *dev, char __user *buf, int len)
    1122                 :            : {
    1123                 :            :         struct in_device *in_dev = __in_dev_get_rtnl(dev);
    1124                 :            :         struct in_ifaddr *ifa;
    1125                 :            :         struct ifreq ifr;
    1126                 :            :         int done = 0;
    1127                 :            : 
    1128         [ +  - ]:         15 :         if (!in_dev)
    1129                 :            :                 goto out;
    1130                 :            : 
    1131         [ +  + ]:         25 :         for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
    1132         [ -  + ]:         10 :                 if (!buf) {
    1133                 :          0 :                         done += sizeof(ifr);
    1134                 :          0 :                         continue;
    1135                 :            :                 }
    1136            [ + ]:         10 :                 if (len < (int) sizeof(ifr))
    1137                 :            :                         break;
    1138                 :         10 :                 memset(&ifr, 0, sizeof(struct ifreq));
    1139                 :         10 :                 strcpy(ifr.ifr_name, ifa->ifa_label);
    1140                 :            : 
    1141                 :         10 :                 (*(struct sockaddr_in *)&ifr.ifr_addr).sin_family = AF_INET;
    1142                 :         10 :                 (*(struct sockaddr_in *)&ifr.ifr_addr).sin_addr.s_addr =
    1143                 :         10 :                                                                 ifa->ifa_local;
    1144                 :            : 
    1145         [ +  - ]:         10 :                 if (copy_to_user(buf, &ifr, sizeof(struct ifreq))) {
    1146                 :            :                         done = -EFAULT;
    1147                 :            :                         break;
    1148                 :            :                 }
    1149                 :         10 :                 buf  += sizeof(struct ifreq);
    1150                 :         10 :                 len  -= sizeof(struct ifreq);
    1151                 :         10 :                 done += sizeof(struct ifreq);
    1152                 :            :         }
    1153                 :            : out:
    1154                 :          0 :         return done;
    1155                 :            : }
    1156                 :            : 
    1157                 :          0 : __be32 inet_select_addr(const struct net_device *dev, __be32 dst, int scope)
    1158                 :            : {
    1159                 :            :         __be32 addr = 0;
    1160                 :            :         struct in_device *in_dev;
    1161                 :            :         struct net *net = dev_net(dev);
    1162                 :            : 
    1163                 :            :         rcu_read_lock();
    1164                 :            :         in_dev = __in_dev_get_rcu(dev);
    1165         [ +  - ]:         65 :         if (!in_dev)
    1166                 :            :                 goto no_in_dev;
    1167                 :            : 
    1168 [ +  - ][ +  - ]:         65 :         for_primary_ifa(in_dev) {
    1169         [ -  + ]:         65 :                 if (ifa->ifa_scope > scope)
    1170                 :          0 :                         continue;
    1171 [ +  - ][ +  - ]:         65 :                 if (!dst || inet_ifa_match(dst, ifa)) {
    1172                 :         65 :                         addr = ifa->ifa_local;
    1173                 :         65 :                         break;
    1174                 :            :                 }
    1175         [ #  # ]:          0 :                 if (!addr)
    1176                 :          0 :                         addr = ifa->ifa_local;
    1177                 :            :         } endfor_ifa(in_dev);
    1178                 :            : 
    1179         [ -  + ]:         65 :         if (addr)
    1180                 :            :                 goto out_unlock;
    1181                 :            : no_in_dev:
    1182                 :            : 
    1183                 :            :         /* Not loopback addresses on loopback should be preferred
    1184                 :            :            in this case. It is importnat that lo is the first interface
    1185                 :            :            in dev_base list.
    1186                 :            :          */
    1187         [ #  # ]:          0 :         for_each_netdev_rcu(net, dev) {
    1188                 :            :                 in_dev = __in_dev_get_rcu(dev);
    1189         [ #  # ]:          0 :                 if (!in_dev)
    1190                 :          0 :                         continue;
    1191                 :            : 
    1192 [ #  # ][ #  # ]:          0 :                 for_primary_ifa(in_dev) {
    1193 [ #  # ][ #  # ]:          0 :                         if (ifa->ifa_scope != RT_SCOPE_LINK &&
    1194                 :          0 :                             ifa->ifa_scope <= scope) {
    1195                 :          0 :                                 addr = ifa->ifa_local;
    1196                 :          0 :                                 goto out_unlock;
    1197                 :            :                         }
    1198                 :            :                 } endfor_ifa(in_dev);
    1199                 :            :         }
    1200                 :            : out_unlock:
    1201                 :            :         rcu_read_unlock();
    1202                 :         65 :         return addr;
    1203                 :            : }
    1204                 :            : EXPORT_SYMBOL(inet_select_addr);
    1205                 :            : 
    1206                 :          0 : static __be32 confirm_addr_indev(struct in_device *in_dev, __be32 dst,
    1207                 :            :                               __be32 local, int scope)
    1208                 :            : {
    1209                 :            :         int same = 0;
    1210                 :            :         __be32 addr = 0;
    1211                 :            : 
    1212         [ #  # ]:          0 :         for_ifa(in_dev) {
    1213 [ #  # ][ #  # ]:          0 :                 if (!addr &&
    1214 [ #  # ][ #  # ]:          0 :                     (local == ifa->ifa_local || !local) &&
    1215                 :          0 :                     ifa->ifa_scope <= scope) {
    1216                 :            :                         addr = ifa->ifa_local;
    1217         [ #  # ]:          0 :                         if (same)
    1218                 :            :                                 break;
    1219                 :            :                 }
    1220         [ #  # ]:          0 :                 if (!same) {
    1221 [ #  # ][ #  # ]:          0 :                         same = (!local || inet_ifa_match(local, ifa)) &&
                 [ #  # ]
    1222         [ #  # ]:          0 :                                 (!dst || inet_ifa_match(dst, ifa));
    1223         [ #  # ]:          0 :                         if (same && addr) {
    1224         [ #  # ]:          0 :                                 if (local || !dst)
    1225                 :            :                                         break;
    1226                 :            :                                 /* Is the selected addr into dst subnet? */
    1227         [ #  # ]:          0 :                                 if (inet_ifa_match(addr, ifa))
    1228                 :            :                                         break;
    1229                 :            :                                 /* No, then can we use new local src? */
    1230         [ #  # ]:          0 :                                 if (ifa->ifa_scope <= scope) {
    1231                 :          0 :                                         addr = ifa->ifa_local;
    1232                 :            :                                         break;
    1233                 :            :                                 }
    1234                 :            :                                 /* search for large dst subnet for addr */
    1235                 :            :                                 same = 0;
    1236                 :            :                         }
    1237                 :            :                 }
    1238                 :            :         } endfor_ifa(in_dev);
    1239                 :            : 
    1240         [ #  # ]:          0 :         return same ? addr : 0;
    1241                 :            : }
    1242                 :            : 
    1243                 :            : /*
    1244                 :            :  * Confirm that local IP address exists using wildcards:
    1245                 :            :  * - in_dev: only on this interface, 0=any interface
    1246                 :            :  * - dst: only in the same subnet as dst, 0=any dst
    1247                 :            :  * - local: address, 0=autoselect the local address
    1248                 :            :  * - scope: maximum allowed scope value for the local address
    1249                 :            :  */
    1250                 :          0 : __be32 inet_confirm_addr(struct in_device *in_dev,
    1251                 :            :                          __be32 dst, __be32 local, int scope)
    1252                 :            : {
    1253                 :            :         __be32 addr = 0;
    1254                 :          0 :         struct net_device *dev;
    1255                 :            :         struct net *net;
    1256                 :            : 
    1257         [ #  # ]:          0 :         if (scope != RT_SCOPE_LINK)
    1258                 :          0 :                 return confirm_addr_indev(in_dev, dst, local, scope);
    1259                 :            : 
    1260                 :            :         net = dev_net(in_dev->dev);
    1261                 :            :         rcu_read_lock();
    1262         [ #  # ]:          0 :         for_each_netdev_rcu(net, dev) {
    1263                 :            :                 in_dev = __in_dev_get_rcu(dev);
    1264         [ #  # ]:          0 :                 if (in_dev) {
    1265                 :          0 :                         addr = confirm_addr_indev(in_dev, dst, local, scope);
    1266         [ #  # ]:          0 :                         if (addr)
    1267                 :            :                                 break;
    1268                 :            :                 }
    1269                 :            :         }
    1270                 :            :         rcu_read_unlock();
    1271                 :            : 
    1272                 :          0 :         return addr;
    1273                 :            : }
    1274                 :            : EXPORT_SYMBOL(inet_confirm_addr);
    1275                 :            : 
    1276                 :            : /*
    1277                 :            :  *      Device notifier
    1278                 :            :  */
    1279                 :            : 
    1280                 :          0 : int register_inetaddr_notifier(struct notifier_block *nb)
    1281                 :            : {
    1282                 :          0 :         return blocking_notifier_chain_register(&inetaddr_chain, nb);
    1283                 :            : }
    1284                 :            : EXPORT_SYMBOL(register_inetaddr_notifier);
    1285                 :            : 
    1286                 :          0 : int unregister_inetaddr_notifier(struct notifier_block *nb)
    1287                 :            : {
    1288                 :          0 :         return blocking_notifier_chain_unregister(&inetaddr_chain, nb);
    1289                 :            : }
    1290                 :            : EXPORT_SYMBOL(unregister_inetaddr_notifier);
    1291                 :            : 
    1292                 :            : /* Rename ifa_labels for a device name change. Make some effort to preserve
    1293                 :            :  * existing alias numbering and to create unique labels if possible.
    1294                 :            : */
    1295                 :          0 : static void inetdev_changename(struct net_device *dev, struct in_device *in_dev)
    1296                 :            : {
    1297                 :            :         struct in_ifaddr *ifa;
    1298                 :            :         int named = 0;
    1299                 :            : 
    1300         [ #  # ]:          0 :         for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
    1301                 :            :                 char old[IFNAMSIZ], *dot;
    1302                 :            : 
    1303                 :          0 :                 memcpy(old, ifa->ifa_label, IFNAMSIZ);
    1304                 :          0 :                 memcpy(ifa->ifa_label, dev->name, IFNAMSIZ);
    1305         [ #  # ]:          0 :                 if (named++ == 0)
    1306                 :            :                         goto skip;
    1307                 :          0 :                 dot = strchr(old, ':');
    1308         [ #  # ]:          0 :                 if (dot == NULL) {
    1309                 :          0 :                         sprintf(old, ":%d", named);
    1310                 :            :                         dot = old;
    1311                 :            :                 }
    1312         [ #  # ]:          0 :                 if (strlen(dot) + strlen(dev->name) < IFNAMSIZ)
    1313                 :          0 :                         strcat(ifa->ifa_label, dot);
    1314                 :            :                 else
    1315                 :          0 :                         strcpy(ifa->ifa_label + (IFNAMSIZ - strlen(dot) - 1), dot);
    1316                 :            : skip:
    1317                 :          0 :                 rtmsg_ifa(RTM_NEWADDR, ifa, NULL, 0);
    1318                 :            :         }
    1319                 :          0 : }
    1320                 :            : 
    1321                 :            : static bool inetdev_valid_mtu(unsigned int mtu)
    1322                 :            : {
    1323                 :            :         return mtu >= 68;
    1324                 :            : }
    1325                 :            : 
    1326                 :          0 : static void inetdev_send_gratuitous_arp(struct net_device *dev,
    1327                 :            :                                         struct in_device *in_dev)
    1328                 :            : 
    1329                 :            : {
    1330                 :            :         struct in_ifaddr *ifa;
    1331                 :            : 
    1332         [ #  # ]:          0 :         for (ifa = in_dev->ifa_list; ifa;
    1333                 :          0 :              ifa = ifa->ifa_next) {
    1334                 :          0 :                 arp_send(ARPOP_REQUEST, ETH_P_ARP,
    1335                 :            :                          ifa->ifa_local, dev,
    1336                 :            :                          ifa->ifa_local, NULL,
    1337                 :          0 :                          dev->dev_addr, NULL);
    1338                 :            :         }
    1339                 :          0 : }
    1340                 :            : 
    1341                 :            : /* Called only under RTNL semaphore */
    1342                 :            : 
    1343                 :          0 : static int inetdev_event(struct notifier_block *this, unsigned long event,
    1344                 :            :                          void *ptr)
    1345                 :            : {
    1346                 :          0 :         struct net_device *dev = netdev_notifier_info_to_dev(ptr);
    1347                 :          0 :         struct in_device *in_dev = __in_dev_get_rtnl(dev);
    1348                 :            : 
    1349         [ #  # ]:          0 :         ASSERT_RTNL();
    1350                 :            : 
    1351         [ #  # ]:          0 :         if (!in_dev) {
    1352         [ #  # ]:          0 :                 if (event == NETDEV_REGISTER) {
    1353                 :          0 :                         in_dev = inetdev_init(dev);
    1354         [ #  # ]:          0 :                         if (!in_dev)
    1355                 :            :                                 return notifier_from_errno(-ENOMEM);
    1356         [ #  # ]:          0 :                         if (dev->flags & IFF_LOOPBACK) {
    1357                 :            :                                 IN_DEV_CONF_SET(in_dev, NOXFRM, 1);
    1358                 :            :                                 IN_DEV_CONF_SET(in_dev, NOPOLICY, 1);
    1359                 :            :                         }
    1360         [ #  # ]:          0 :                 } else if (event == NETDEV_CHANGEMTU) {
    1361                 :            :                         /* Re-enabling IP */
    1362         [ #  # ]:          0 :                         if (inetdev_valid_mtu(dev->mtu))
    1363                 :          0 :                                 in_dev = inetdev_init(dev);
    1364                 :            :                 }
    1365                 :            :                 goto out;
    1366                 :            :         }
    1367                 :            : 
    1368   [ #  #  #  #  :          0 :         switch (event) {
          #  #  #  #  #  
                   #  # ]
    1369                 :            :         case NETDEV_REGISTER:
    1370                 :            :                 pr_debug("%s: bug\n", __func__);
    1371                 :          0 :                 RCU_INIT_POINTER(dev->ip_ptr, NULL);
    1372                 :          0 :                 break;
    1373                 :            :         case NETDEV_UP:
    1374         [ #  # ]:          0 :                 if (!inetdev_valid_mtu(dev->mtu))
    1375                 :            :                         break;
    1376         [ #  # ]:          0 :                 if (dev->flags & IFF_LOOPBACK) {
    1377                 :            :                         struct in_ifaddr *ifa = inet_alloc_ifa();
    1378                 :            : 
    1379         [ #  # ]:          0 :                         if (ifa) {
    1380                 :            :                                 INIT_HLIST_NODE(&ifa->hash);
    1381                 :          0 :                                 ifa->ifa_local =
    1382                 :          0 :                                   ifa->ifa_address = htonl(INADDR_LOOPBACK);
    1383                 :          0 :                                 ifa->ifa_prefixlen = 8;
    1384                 :          0 :                                 ifa->ifa_mask = inet_make_mask(8);
    1385                 :          0 :                                 in_dev_hold(in_dev);
    1386                 :          0 :                                 ifa->ifa_dev = in_dev;
    1387                 :          0 :                                 ifa->ifa_scope = RT_SCOPE_HOST;
    1388                 :          0 :                                 memcpy(ifa->ifa_label, dev->name, IFNAMSIZ);
    1389                 :          0 :                                 set_ifa_lifetime(ifa, INFINITY_LIFE_TIME,
    1390                 :            :                                                  INFINITY_LIFE_TIME);
    1391                 :            :                                 inet_insert_ifa(ifa);
    1392                 :            :                         }
    1393                 :            :                 }
    1394                 :          0 :                 ip_mc_up(in_dev);
    1395                 :            :                 /* fall through */
    1396                 :            :         case NETDEV_CHANGEADDR:
    1397         [ #  # ]:          0 :                 if (!IN_DEV_ARP_NOTIFY(in_dev))
    1398                 :            :                         break;
    1399                 :            :                 /* fall through */
    1400                 :            :         case NETDEV_NOTIFY_PEERS:
    1401                 :            :                 /* Send gratuitous ARP to notify of link change */
    1402                 :          0 :                 inetdev_send_gratuitous_arp(dev, in_dev);
    1403                 :          0 :                 break;
    1404                 :            :         case NETDEV_DOWN:
    1405                 :          0 :                 ip_mc_down(in_dev);
    1406                 :          0 :                 break;
    1407                 :            :         case NETDEV_PRE_TYPE_CHANGE:
    1408                 :          0 :                 ip_mc_unmap(in_dev);
    1409                 :          0 :                 break;
    1410                 :            :         case NETDEV_POST_TYPE_CHANGE:
    1411                 :          0 :                 ip_mc_remap(in_dev);
    1412                 :          0 :                 break;
    1413                 :            :         case NETDEV_CHANGEMTU:
    1414         [ #  # ]:          0 :                 if (inetdev_valid_mtu(dev->mtu))
    1415                 :            :                         break;
    1416                 :            :                 /* disable IP when MTU is not enough */
    1417                 :            :         case NETDEV_UNREGISTER:
    1418                 :          0 :                 inetdev_destroy(in_dev);
    1419                 :          0 :                 break;
    1420                 :            :         case NETDEV_CHANGENAME:
    1421                 :            :                 /* Do not notify about label change, this event is
    1422                 :            :                  * not interesting to applications using netlink.
    1423                 :            :                  */
    1424                 :          0 :                 inetdev_changename(dev, in_dev);
    1425                 :            : 
    1426                 :            :                 devinet_sysctl_unregister(in_dev);
    1427                 :          0 :                 devinet_sysctl_register(in_dev);
    1428                 :          0 :                 break;
    1429                 :            :         }
    1430                 :            : out:
    1431                 :            :         return NOTIFY_DONE;
    1432                 :            : }
    1433                 :            : 
    1434                 :            : static struct notifier_block ip_netdev_notifier = {
    1435                 :            :         .notifier_call = inetdev_event,
    1436                 :            : };
    1437                 :            : 
    1438                 :            : static size_t inet_nlmsg_size(void)
    1439                 :            : {
    1440                 :            :         return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
    1441                 :            :                + nla_total_size(4) /* IFA_ADDRESS */
    1442                 :            :                + nla_total_size(4) /* IFA_LOCAL */
    1443                 :            :                + nla_total_size(4) /* IFA_BROADCAST */
    1444                 :            :                + nla_total_size(IFNAMSIZ); /* IFA_LABEL */
    1445                 :            : }
    1446                 :            : 
    1447                 :            : static inline u32 cstamp_delta(unsigned long cstamp)
    1448                 :            : {
    1449                 :       2272 :         return (cstamp - INITIAL_JIFFIES) * 100UL / HZ;
    1450                 :            : }
    1451                 :            : 
    1452                 :          0 : static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
    1453                 :            :                          unsigned long tstamp, u32 preferred, u32 valid)
    1454                 :            : {
    1455                 :            :         struct ifa_cacheinfo ci;
    1456                 :            : 
    1457                 :       1136 :         ci.cstamp = cstamp_delta(cstamp);
    1458                 :       1136 :         ci.tstamp = cstamp_delta(tstamp);
    1459                 :       1136 :         ci.ifa_prefered = preferred;
    1460                 :       1136 :         ci.ifa_valid = valid;
    1461                 :            : 
    1462                 :       1136 :         return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
    1463                 :            : }
    1464                 :            : 
    1465                 :          0 : static int inet_fill_ifaddr(struct sk_buff *skb, struct in_ifaddr *ifa,
    1466                 :            :                             u32 portid, u32 seq, int event, unsigned int flags)
    1467                 :            : {
    1468                 :            :         struct ifaddrmsg *ifm;
    1469                 :            :         struct nlmsghdr  *nlh;
    1470                 :            :         u32 preferred, valid;
    1471                 :            : 
    1472                 :       1136 :         nlh = nlmsg_put(skb, portid, seq, event, sizeof(*ifm), flags);
    1473         [ +  - ]:       1136 :         if (nlh == NULL)
    1474                 :            :                 return -EMSGSIZE;
    1475                 :            : 
    1476                 :            :         ifm = nlmsg_data(nlh);
    1477                 :       1136 :         ifm->ifa_family = AF_INET;
    1478                 :       1136 :         ifm->ifa_prefixlen = ifa->ifa_prefixlen;
    1479                 :       1136 :         ifm->ifa_flags = ifa->ifa_flags;
    1480                 :       1136 :         ifm->ifa_scope = ifa->ifa_scope;
    1481                 :       1136 :         ifm->ifa_index = ifa->ifa_dev->dev->ifindex;
    1482                 :            : 
    1483         [ -  + ]:       1136 :         if (!(ifm->ifa_flags & IFA_F_PERMANENT)) {
    1484                 :          0 :                 preferred = ifa->ifa_preferred_lft;
    1485                 :          0 :                 valid = ifa->ifa_valid_lft;
    1486         [ #  # ]:          0 :                 if (preferred != INFINITY_LIFE_TIME) {
    1487                 :          0 :                         long tval = (jiffies - ifa->ifa_tstamp) / HZ;
    1488                 :            : 
    1489         [ #  # ]:          0 :                         if (preferred > tval)
    1490                 :          0 :                                 preferred -= tval;
    1491                 :            :                         else
    1492                 :            :                                 preferred = 0;
    1493         [ #  # ]:          0 :                         if (valid != INFINITY_LIFE_TIME) {
    1494         [ #  # ]:          0 :                                 if (valid > tval)
    1495                 :          0 :                                         valid -= tval;
    1496                 :            :                                 else
    1497                 :            :                                         valid = 0;
    1498                 :            :                         }
    1499                 :            :                 }
    1500                 :            :         } else {
    1501                 :            :                 preferred = INFINITY_LIFE_TIME;
    1502                 :            :                 valid = INFINITY_LIFE_TIME;
    1503                 :            :         }
    1504   [ +  -  +  - ]:       2272 :         if ((ifa->ifa_address &&
    1505         [ +  - ]:       1136 :              nla_put_be32(skb, IFA_ADDRESS, ifa->ifa_address)) ||
    1506         [ +  - ]:       1136 :             (ifa->ifa_local &&
    1507         [ #  # ]:       1136 :              nla_put_be32(skb, IFA_LOCAL, ifa->ifa_local)) ||
    1508         [ +  - ]:        568 :             (ifa->ifa_broadcast &&
    1509         [ #  # ]:          0 :              nla_put_be32(skb, IFA_BROADCAST, ifa->ifa_broadcast)) ||
    1510         [ +  - ]:       1136 :             (ifa->ifa_label[0] &&
    1511         [ +  - ]:       1136 :              nla_put_string(skb, IFA_LABEL, ifa->ifa_label)) ||
    1512                 :          0 :             put_cacheinfo(skb, ifa->ifa_cstamp, ifa->ifa_tstamp,
    1513                 :            :                           preferred, valid))
    1514                 :            :                 goto nla_put_failure;
    1515                 :            : 
    1516                 :       1136 :         return nlmsg_end(skb, nlh);
    1517                 :            : 
    1518                 :            : nla_put_failure:
    1519                 :            :         nlmsg_cancel(skb, nlh);
    1520                 :            :         return -EMSGSIZE;
    1521                 :            : }
    1522                 :            : 
    1523                 :          0 : static int inet_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
    1524                 :            : {
    1525                 :            :         struct net *net = sock_net(skb->sk);
    1526                 :            :         int h, s_h;
    1527                 :            :         int idx, s_idx;
    1528                 :            :         int ip_idx, s_ip_idx;
    1529                 :       1704 :         struct net_device *dev;
    1530                 :            :         struct in_device *in_dev;
    1531                 :            :         struct in_ifaddr *ifa;
    1532                 :            :         struct hlist_head *head;
    1533                 :            : 
    1534                 :       1136 :         s_h = cb->args[0];
    1535                 :       1136 :         s_idx = idx = cb->args[1];
    1536                 :       1136 :         s_ip_idx = ip_idx = cb->args[2];
    1537                 :            : 
    1538         [ +  + ]:     146544 :         for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
    1539                 :            :                 idx = 0;
    1540                 :     145408 :                 head = &net->dev_index_head[h];
    1541                 :            :                 rcu_read_lock();
    1542                 :     290816 :                 cb->seq = atomic_read(&net->ipv4.dev_addr_genid) ^
    1543                 :     145408 :                           net->dev_base_seq;
    1544 [ +  + ][ -  + ]:     147112 :                 hlist_for_each_entry_rcu(dev, head, index_hlist) {
                 [ +  + ]
    1545         [ +  - ]:       1704 :                         if (idx < s_idx)
    1546                 :            :                                 goto cont;
    1547         [ +  - ]:       1704 :                         if (h > s_h || idx > s_idx)
    1548                 :            :                                 s_ip_idx = 0;
    1549                 :            :                         in_dev = __in_dev_get_rcu(dev);
    1550         [ +  - ]:       1704 :                         if (!in_dev)
    1551                 :            :                                 goto cont;
    1552                 :            : 
    1553         [ +  + ]:       2840 :                         for (ifa = in_dev->ifa_list, ip_idx = 0; ifa;
    1554                 :       1136 :                              ifa = ifa->ifa_next, ip_idx++) {
    1555         [ +  - ]:       1136 :                                 if (ip_idx < s_ip_idx)
    1556                 :       1136 :                                         continue;
    1557         [ -  + ]:          0 :                                 if (inet_fill_ifaddr(skb, ifa,
    1558                 :          0 :                                              NETLINK_CB(cb->skb).portid,
    1559                 :          0 :                                              cb->nlh->nlmsg_seq,
    1560                 :            :                                              RTM_NEWADDR, NLM_F_MULTI) <= 0) {
    1561                 :            :                                         rcu_read_unlock();
    1562                 :            :                                         goto done;
    1563                 :            :                                 }
    1564                 :            :                                 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
    1565                 :            :                         }
    1566                 :            : cont:
    1567                 :       1704 :                         idx++;
    1568                 :            :                 }
    1569                 :            :                 rcu_read_unlock();
    1570                 :            :         }
    1571                 :            : 
    1572                 :            : done:
    1573                 :       1136 :         cb->args[0] = h;
    1574                 :       1136 :         cb->args[1] = idx;
    1575                 :       1136 :         cb->args[2] = ip_idx;
    1576                 :            : 
    1577                 :       1136 :         return skb->len;
    1578                 :            : }
    1579                 :            : 
    1580                 :          0 : static void rtmsg_ifa(int event, struct in_ifaddr *ifa, struct nlmsghdr *nlh,
    1581                 :            :                       u32 portid)
    1582                 :            : {
    1583                 :            :         struct sk_buff *skb;
    1584         [ #  # ]:          0 :         u32 seq = nlh ? nlh->nlmsg_seq : 0;
    1585                 :            :         int err = -ENOBUFS;
    1586                 :            :         struct net *net;
    1587                 :            : 
    1588                 :            :         net = dev_net(ifa->ifa_dev->dev);
    1589                 :            :         skb = nlmsg_new(inet_nlmsg_size(), GFP_KERNEL);
    1590         [ #  # ]:          0 :         if (skb == NULL)
    1591                 :            :                 goto errout;
    1592                 :            : 
    1593                 :          0 :         err = inet_fill_ifaddr(skb, ifa, portid, seq, event, 0);
    1594         [ #  # ]:          0 :         if (err < 0) {
    1595                 :            :                 /* -EMSGSIZE implies BUG in inet_nlmsg_size() */
    1596         [ #  # ]:          0 :                 WARN_ON(err == -EMSGSIZE);
    1597                 :          0 :                 kfree_skb(skb);
    1598                 :          0 :                 goto errout;
    1599                 :            :         }
    1600                 :          0 :         rtnl_notify(skb, net, portid, RTNLGRP_IPV4_IFADDR, nlh, GFP_KERNEL);
    1601                 :          0 :         return;
    1602                 :            : errout:
    1603         [ #  # ]:          0 :         if (err < 0)
    1604                 :          0 :                 rtnl_set_sk_err(net, RTNLGRP_IPV4_IFADDR, err);
    1605                 :            : }
    1606                 :            : 
    1607                 :          0 : static size_t inet_get_link_af_size(const struct net_device *dev)
    1608                 :            : {
    1609                 :          0 :         struct in_device *in_dev = rcu_dereference_rtnl(dev->ip_ptr);
    1610                 :            : 
    1611         [ #  # ]:          0 :         if (!in_dev)
    1612                 :            :                 return 0;
    1613                 :            : 
    1614                 :          0 :         return nla_total_size(IPV4_DEVCONF_MAX * 4); /* IFLA_INET_CONF */
    1615                 :            : }
    1616                 :            : 
    1617                 :          0 : static int inet_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
    1618                 :            : {
    1619                 :       1665 :         struct in_device *in_dev = rcu_dereference_rtnl(dev->ip_ptr);
    1620                 :            :         struct nlattr *nla;
    1621                 :            :         int i;
    1622                 :            : 
    1623         [ +  - ]:       1665 :         if (!in_dev)
    1624                 :            :                 return -ENODATA;
    1625                 :            : 
    1626                 :       1665 :         nla = nla_reserve(skb, IFLA_INET_CONF, IPV4_DEVCONF_MAX * 4);
    1627         [ +  - ]:       1665 :         if (nla == NULL)
    1628                 :            :                 return -EMSGSIZE;
    1629                 :            : 
    1630         [ +  - ]:      48285 :         for (i = 0; i < IPV4_DEVCONF_MAX; i++)
    1631                 :      46620 :                 ((u32 *) nla_data(nla))[i] = in_dev->cnf.data[i];
    1632                 :            : 
    1633                 :            :         return 0;
    1634                 :            : }
    1635                 :            : 
    1636                 :            : static const struct nla_policy inet_af_policy[IFLA_INET_MAX+1] = {
    1637                 :            :         [IFLA_INET_CONF]        = { .type = NLA_NESTED },
    1638                 :            : };
    1639                 :            : 
    1640                 :          0 : static int inet_validate_link_af(const struct net_device *dev,
    1641                 :            :                                  const struct nlattr *nla)
    1642                 :            : {
    1643                 :          0 :         struct nlattr *a, *tb[IFLA_INET_MAX+1];
    1644                 :            :         int err, rem;
    1645                 :            : 
    1646 [ #  # ][ #  # ]:          0 :         if (dev && !__in_dev_get_rtnl(dev))
    1647                 :            :                 return -EAFNOSUPPORT;
    1648                 :            : 
    1649                 :            :         err = nla_parse_nested(tb, IFLA_INET_MAX, nla, inet_af_policy);
    1650         [ #  # ]:          0 :         if (err < 0)
    1651                 :            :                 return err;
    1652                 :            : 
    1653         [ #  # ]:          0 :         if (tb[IFLA_INET_CONF]) {
    1654         [ #  # ]:          0 :                 nla_for_each_nested(a, tb[IFLA_INET_CONF], rem) {
    1655                 :            :                         int cfgid = nla_type(a);
    1656                 :            : 
    1657         [ #  # ]:          0 :                         if (nla_len(a) < 4)
    1658                 :            :                                 return -EINVAL;
    1659                 :            : 
    1660         [ #  # ]:          0 :                         if (cfgid <= 0 || cfgid > IPV4_DEVCONF_MAX)
    1661                 :            :                                 return -EINVAL;
    1662                 :            :                 }
    1663                 :            :         }
    1664                 :            : 
    1665                 :            :         return 0;
    1666                 :            : }
    1667                 :            : 
    1668                 :          0 : static int inet_set_link_af(struct net_device *dev, const struct nlattr *nla)
    1669                 :            : {
    1670                 :            :         struct in_device *in_dev = __in_dev_get_rtnl(dev);
    1671                 :          0 :         struct nlattr *a, *tb[IFLA_INET_MAX+1];
    1672                 :            :         int rem;
    1673                 :            : 
    1674         [ #  # ]:          0 :         if (!in_dev)
    1675                 :            :                 return -EAFNOSUPPORT;
    1676                 :            : 
    1677         [ #  # ]:          0 :         if (nla_parse_nested(tb, IFLA_INET_MAX, nla, NULL) < 0)
    1678                 :          0 :                 BUG();
    1679                 :            : 
    1680         [ #  # ]:          0 :         if (tb[IFLA_INET_CONF]) {
    1681         [ #  # ]:          0 :                 nla_for_each_nested(a, tb[IFLA_INET_CONF], rem)
    1682                 :          0 :                         ipv4_devconf_set(in_dev, nla_type(a), nla_get_u32(a));
    1683                 :            :         }
    1684                 :            : 
    1685                 :            :         return 0;
    1686                 :            : }
    1687                 :            : 
    1688                 :          0 : static int inet_netconf_msgsize_devconf(int type)
    1689                 :            : {
    1690                 :            :         int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
    1691                 :            :                    + nla_total_size(4); /* NETCONFA_IFINDEX */
    1692                 :            : 
    1693                 :            :         /* type -1 is used for ALL */
    1694         [ #  # ]:          0 :         if (type == -1 || type == NETCONFA_FORWARDING)
    1695                 :            :                 size += nla_total_size(4);
    1696         [ #  # ]:          0 :         if (type == -1 || type == NETCONFA_RP_FILTER)
    1697                 :          0 :                 size += nla_total_size(4);
    1698         [ #  # ]:          0 :         if (type == -1 || type == NETCONFA_MC_FORWARDING)
    1699                 :          0 :                 size += nla_total_size(4);
    1700                 :            : 
    1701                 :          0 :         return size;
    1702                 :            : }
    1703                 :            : 
    1704                 :          0 : static int inet_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
    1705                 :            :                                      struct ipv4_devconf *devconf, u32 portid,
    1706                 :            :                                      u32 seq, int event, unsigned int flags,
    1707                 :            :                                      int type)
    1708                 :            : {
    1709                 :            :         struct nlmsghdr  *nlh;
    1710                 :            :         struct netconfmsg *ncm;
    1711                 :            : 
    1712                 :          0 :         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
    1713                 :            :                         flags);
    1714         [ #  # ]:          0 :         if (nlh == NULL)
    1715                 :            :                 return -EMSGSIZE;
    1716                 :            : 
    1717                 :            :         ncm = nlmsg_data(nlh);
    1718                 :          0 :         ncm->ncm_family = AF_INET;
    1719                 :            : 
    1720         [ #  # ]:          0 :         if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
    1721                 :            :                 goto nla_put_failure;
    1722                 :            : 
    1723                 :            :         /* type -1 is used for ALL */
    1724   [ #  #  #  # ]:          0 :         if ((type == -1 || type == NETCONFA_FORWARDING) &&
    1725                 :          0 :             nla_put_s32(skb, NETCONFA_FORWARDING,
    1726                 :            :                         IPV4_DEVCONF(*devconf, FORWARDING)) < 0)
    1727                 :            :                 goto nla_put_failure;
    1728   [ #  #  #  # ]:          0 :         if ((type == -1 || type == NETCONFA_RP_FILTER) &&
    1729                 :          0 :             nla_put_s32(skb, NETCONFA_RP_FILTER,
    1730                 :            :                         IPV4_DEVCONF(*devconf, RP_FILTER)) < 0)
    1731                 :            :                 goto nla_put_failure;
    1732   [ #  #  #  # ]:          0 :         if ((type == -1 || type == NETCONFA_MC_FORWARDING) &&
    1733                 :          0 :             nla_put_s32(skb, NETCONFA_MC_FORWARDING,
    1734                 :            :                         IPV4_DEVCONF(*devconf, MC_FORWARDING)) < 0)
    1735                 :            :                 goto nla_put_failure;
    1736                 :            : 
    1737                 :          0 :         return nlmsg_end(skb, nlh);
    1738                 :            : 
    1739                 :            : nla_put_failure:
    1740                 :            :         nlmsg_cancel(skb, nlh);
    1741                 :            :         return -EMSGSIZE;
    1742                 :            : }
    1743                 :            : 
    1744                 :          0 : void inet_netconf_notify_devconf(struct net *net, int type, int ifindex,
    1745                 :            :                                  struct ipv4_devconf *devconf)
    1746                 :            : {
    1747                 :            :         struct sk_buff *skb;
    1748                 :            :         int err = -ENOBUFS;
    1749                 :            : 
    1750                 :          0 :         skb = nlmsg_new(inet_netconf_msgsize_devconf(type), GFP_ATOMIC);
    1751         [ #  # ]:          0 :         if (skb == NULL)
    1752                 :            :                 goto errout;
    1753                 :            : 
    1754                 :          0 :         err = inet_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
    1755                 :            :                                         RTM_NEWNETCONF, 0, type);
    1756         [ #  # ]:          0 :         if (err < 0) {
    1757                 :            :                 /* -EMSGSIZE implies BUG in inet_netconf_msgsize_devconf() */
    1758         [ #  # ]:          0 :                 WARN_ON(err == -EMSGSIZE);
    1759                 :          0 :                 kfree_skb(skb);
    1760                 :          0 :                 goto errout;
    1761                 :            :         }
    1762                 :          0 :         rtnl_notify(skb, net, 0, RTNLGRP_IPV4_NETCONF, NULL, GFP_ATOMIC);
    1763                 :          0 :         return;
    1764                 :            : errout:
    1765         [ #  # ]:          0 :         if (err < 0)
    1766                 :          0 :                 rtnl_set_sk_err(net, RTNLGRP_IPV4_NETCONF, err);
    1767                 :            : }
    1768                 :            : 
    1769                 :            : static const struct nla_policy devconf_ipv4_policy[NETCONFA_MAX+1] = {
    1770                 :            :         [NETCONFA_IFINDEX]      = { .len = sizeof(int) },
    1771                 :            :         [NETCONFA_FORWARDING]   = { .len = sizeof(int) },
    1772                 :            :         [NETCONFA_RP_FILTER]    = { .len = sizeof(int) },
    1773                 :            : };
    1774                 :            : 
    1775                 :          0 : static int inet_netconf_get_devconf(struct sk_buff *in_skb,
    1776                 :            :                                     struct nlmsghdr *nlh)
    1777                 :            : {
    1778                 :            :         struct net *net = sock_net(in_skb->sk);
    1779                 :            :         struct nlattr *tb[NETCONFA_MAX+1];
    1780                 :            :         struct netconfmsg *ncm;
    1781                 :            :         struct sk_buff *skb;
    1782                 :            :         struct ipv4_devconf *devconf;
    1783                 :            :         struct in_device *in_dev;
    1784                 :          0 :         struct net_device *dev;
    1785                 :            :         int ifindex;
    1786                 :            :         int err;
    1787                 :            : 
    1788                 :            :         err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
    1789                 :            :                           devconf_ipv4_policy);
    1790         [ #  # ]:          0 :         if (err < 0)
    1791                 :            :                 goto errout;
    1792                 :            : 
    1793                 :            :         err = EINVAL;
    1794         [ #  # ]:          0 :         if (!tb[NETCONFA_IFINDEX])
    1795                 :            :                 goto errout;
    1796                 :            : 
    1797                 :            :         ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
    1798      [ #  #  # ]:          0 :         switch (ifindex) {
    1799                 :            :         case NETCONFA_IFINDEX_ALL:
    1800                 :          0 :                 devconf = net->ipv4.devconf_all;
    1801                 :          0 :                 break;
    1802                 :            :         case NETCONFA_IFINDEX_DEFAULT:
    1803                 :          0 :                 devconf = net->ipv4.devconf_dflt;
    1804                 :          0 :                 break;
    1805                 :            :         default:
    1806                 :          0 :                 dev = __dev_get_by_index(net, ifindex);
    1807         [ #  # ]:          0 :                 if (dev == NULL)
    1808                 :            :                         goto errout;
    1809                 :            :                 in_dev = __in_dev_get_rtnl(dev);
    1810         [ #  # ]:          0 :                 if (in_dev == NULL)
    1811                 :            :                         goto errout;
    1812                 :          0 :                 devconf = &in_dev->cnf;
    1813                 :          0 :                 break;
    1814                 :            :         }
    1815                 :            : 
    1816                 :            :         err = -ENOBUFS;
    1817                 :          0 :         skb = nlmsg_new(inet_netconf_msgsize_devconf(-1), GFP_ATOMIC);
    1818         [ #  # ]:          0 :         if (skb == NULL)
    1819                 :            :                 goto errout;
    1820                 :            : 
    1821                 :          0 :         err = inet_netconf_fill_devconf(skb, ifindex, devconf,
    1822                 :            :                                         NETLINK_CB(in_skb).portid,
    1823                 :            :                                         nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
    1824                 :            :                                         -1);
    1825         [ #  # ]:          0 :         if (err < 0) {
    1826                 :            :                 /* -EMSGSIZE implies BUG in inet_netconf_msgsize_devconf() */
    1827         [ #  # ]:          0 :                 WARN_ON(err == -EMSGSIZE);
    1828                 :          0 :                 kfree_skb(skb);
    1829                 :          0 :                 goto errout;
    1830                 :            :         }
    1831                 :          0 :         err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
    1832                 :            : errout:
    1833                 :          0 :         return err;
    1834                 :            : }
    1835                 :            : 
    1836                 :          0 : static int inet_netconf_dump_devconf(struct sk_buff *skb,
    1837                 :            :                                      struct netlink_callback *cb)
    1838                 :            : {
    1839                 :            :         struct net *net = sock_net(skb->sk);
    1840                 :            :         int h, s_h;
    1841                 :            :         int idx, s_idx;
    1842                 :          0 :         struct net_device *dev;
    1843                 :            :         struct in_device *in_dev;
    1844                 :            :         struct hlist_head *head;
    1845                 :            : 
    1846                 :          0 :         s_h = cb->args[0];
    1847                 :          0 :         s_idx = idx = cb->args[1];
    1848                 :            : 
    1849         [ #  # ]:          0 :         for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
    1850                 :            :                 idx = 0;
    1851                 :          0 :                 head = &net->dev_index_head[h];
    1852                 :            :                 rcu_read_lock();
    1853                 :          0 :                 cb->seq = atomic_read(&net->ipv4.dev_addr_genid) ^
    1854                 :          0 :                           net->dev_base_seq;
    1855 [ #  # ][ #  # ]:          0 :                 hlist_for_each_entry_rcu(dev, head, index_hlist) {
                 [ #  # ]
    1856         [ #  # ]:          0 :                         if (idx < s_idx)
    1857                 :            :                                 goto cont;
    1858                 :            :                         in_dev = __in_dev_get_rcu(dev);
    1859         [ #  # ]:          0 :                         if (!in_dev)
    1860                 :            :                                 goto cont;
    1861                 :            : 
    1862         [ #  # ]:          0 :                         if (inet_netconf_fill_devconf(skb, dev->ifindex,
    1863                 :            :                                                       &in_dev->cnf,
    1864                 :          0 :                                                       NETLINK_CB(cb->skb).portid,
    1865                 :          0 :                                                       cb->nlh->nlmsg_seq,
    1866                 :            :                                                       RTM_NEWNETCONF,
    1867                 :            :                                                       NLM_F_MULTI,
    1868                 :            :                                                       -1) <= 0) {
    1869                 :            :                                 rcu_read_unlock();
    1870                 :            :                                 goto done;
    1871                 :            :                         }
    1872                 :            :                         nl_dump_check_consistent(cb, nlmsg_hdr(skb));
    1873                 :            : cont:
    1874                 :          0 :                         idx++;
    1875                 :            :                 }
    1876                 :            :                 rcu_read_unlock();
    1877                 :            :         }
    1878         [ #  # ]:          0 :         if (h == NETDEV_HASHENTRIES) {
    1879         [ #  # ]:          0 :                 if (inet_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
    1880                 :            :                                               net->ipv4.devconf_all,
    1881                 :          0 :                                               NETLINK_CB(cb->skb).portid,
    1882                 :          0 :                                               cb->nlh->nlmsg_seq,
    1883                 :            :                                               RTM_NEWNETCONF, NLM_F_MULTI,
    1884                 :            :                                               -1) <= 0)
    1885                 :            :                         goto done;
    1886                 :            :                 else
    1887                 :          0 :                         h++;
    1888                 :            :         }
    1889         [ #  # ]:          0 :         if (h == NETDEV_HASHENTRIES + 1) {
    1890         [ #  # ]:          0 :                 if (inet_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
    1891                 :            :                                               net->ipv4.devconf_dflt,
    1892                 :          0 :                                               NETLINK_CB(cb->skb).portid,
    1893                 :          0 :                                               cb->nlh->nlmsg_seq,
    1894                 :            :                                               RTM_NEWNETCONF, NLM_F_MULTI,
    1895                 :            :                                               -1) <= 0)
    1896                 :            :                         goto done;
    1897                 :            :                 else
    1898                 :          0 :                         h++;
    1899                 :            :         }
    1900                 :            : done:
    1901                 :          0 :         cb->args[0] = h;
    1902                 :          0 :         cb->args[1] = idx;
    1903                 :            : 
    1904                 :          0 :         return skb->len;
    1905                 :            : }
    1906                 :            : 
    1907                 :            : #ifdef CONFIG_SYSCTL
    1908                 :            : 
    1909                 :          0 : static void devinet_copy_dflt_conf(struct net *net, int i)
    1910                 :            : {
    1911                 :          0 :         struct net_device *dev;
    1912                 :            : 
    1913                 :            :         rcu_read_lock();
    1914         [ #  # ]:          0 :         for_each_netdev_rcu(net, dev) {
    1915                 :            :                 struct in_device *in_dev;
    1916                 :            : 
    1917                 :            :                 in_dev = __in_dev_get_rcu(dev);
    1918 [ #  # ][ #  # ]:          0 :                 if (in_dev && !test_bit(i, in_dev->cnf.state))
    1919                 :          0 :                         in_dev->cnf.data[i] = net->ipv4.devconf_dflt->data[i];
    1920                 :            :         }
    1921                 :            :         rcu_read_unlock();
    1922                 :          0 : }
    1923                 :            : 
    1924                 :            : /* called with RTNL locked */
    1925                 :          0 : static void inet_forward_change(struct net *net)
    1926                 :            : {
    1927                 :          0 :         struct net_device *dev;
    1928                 :          0 :         int on = IPV4_DEVCONF_ALL(net, FORWARDING);
    1929                 :            : 
    1930                 :          0 :         IPV4_DEVCONF_ALL(net, ACCEPT_REDIRECTS) = !on;
    1931                 :          0 :         IPV4_DEVCONF_DFLT(net, FORWARDING) = on;
    1932                 :          0 :         inet_netconf_notify_devconf(net, NETCONFA_FORWARDING,
    1933                 :            :                                     NETCONFA_IFINDEX_ALL,
    1934                 :            :                                     net->ipv4.devconf_all);
    1935                 :          0 :         inet_netconf_notify_devconf(net, NETCONFA_FORWARDING,
    1936                 :            :                                     NETCONFA_IFINDEX_DEFAULT,
    1937                 :            :                                     net->ipv4.devconf_dflt);
    1938                 :            : 
    1939         [ #  # ]:          0 :         for_each_netdev(net, dev) {
    1940                 :            :                 struct in_device *in_dev;
    1941         [ #  # ]:          0 :                 if (on)
    1942                 :          0 :                         dev_disable_lro(dev);
    1943                 :            :                 rcu_read_lock();
    1944                 :            :                 in_dev = __in_dev_get_rcu(dev);
    1945         [ #  # ]:          0 :                 if (in_dev) {
    1946                 :            :                         IN_DEV_CONF_SET(in_dev, FORWARDING, on);
    1947                 :          0 :                         inet_netconf_notify_devconf(net, NETCONFA_FORWARDING,
    1948                 :            :                                                     dev->ifindex, &in_dev->cnf);
    1949                 :            :                 }
    1950                 :            :                 rcu_read_unlock();
    1951                 :            :         }
    1952                 :          0 : }
    1953                 :            : 
    1954                 :          0 : static int devinet_conf_proc(struct ctl_table *ctl, int write,
    1955                 :            :                              void __user *buffer,
    1956                 :            :                              size_t *lenp, loff_t *ppos)
    1957                 :            : {
    1958                 :        230 :         int old_value = *(int *)ctl->data;
    1959                 :        230 :         int ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
    1960                 :        230 :         int new_value = *(int *)ctl->data;
    1961                 :            : 
    1962         [ -  + ]:        230 :         if (write) {
    1963                 :          0 :                 struct ipv4_devconf *cnf = ctl->extra1;
    1964                 :          0 :                 struct net *net = ctl->extra2;
    1965                 :          0 :                 int i = (int *)ctl->data - cnf->data;
    1966                 :            : 
    1967                 :          0 :                 set_bit(i, cnf->state);
    1968                 :            : 
    1969         [ #  # ]:          0 :                 if (cnf == net->ipv4.devconf_dflt)
    1970                 :          0 :                         devinet_copy_dflt_conf(net, i);
    1971         [ #  # ]:          0 :                 if (i == IPV4_DEVCONF_ACCEPT_LOCAL - 1 ||
    1972                 :          0 :                     i == IPV4_DEVCONF_ROUTE_LOCALNET - 1)
    1973         [ #  # ]:          0 :                         if ((new_value == 0) && (old_value != 0))
    1974                 :          0 :                                 rt_cache_flush(net);
    1975         [ #  # ]:          0 :                 if (i == IPV4_DEVCONF_RP_FILTER - 1 &&
    1976                 :          0 :                     new_value != old_value) {
    1977                 :            :                         int ifindex;
    1978                 :            : 
    1979         [ #  # ]:          0 :                         if (cnf == net->ipv4.devconf_dflt)
    1980                 :            :                                 ifindex = NETCONFA_IFINDEX_DEFAULT;
    1981         [ #  # ]:          0 :                         else if (cnf == net->ipv4.devconf_all)
    1982                 :            :                                 ifindex = NETCONFA_IFINDEX_ALL;
    1983                 :            :                         else {
    1984                 :            :                                 struct in_device *idev =
    1985                 :            :                                         container_of(cnf, struct in_device,
    1986                 :            :                                                      cnf);
    1987                 :          0 :                                 ifindex = idev->dev->ifindex;
    1988                 :            :                         }
    1989                 :          0 :                         inet_netconf_notify_devconf(net, NETCONFA_RP_FILTER,
    1990                 :            :                                                     ifindex, cnf);
    1991                 :            :                 }
    1992                 :            :         }
    1993                 :            : 
    1994                 :        230 :         return ret;
    1995                 :            : }
    1996                 :            : 
    1997                 :          0 : static int devinet_sysctl_forward(struct ctl_table *ctl, int write,
    1998                 :            :                                   void __user *buffer,
    1999                 :            :                                   size_t *lenp, loff_t *ppos)
    2000                 :            : {
    2001                 :         12 :         int *valp = ctl->data;
    2002                 :         12 :         int val = *valp;
    2003                 :         12 :         loff_t pos = *ppos;
    2004                 :         12 :         int ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
    2005                 :            : 
    2006 [ -  + ][ #  # ]:         12 :         if (write && *valp != val) {
    2007                 :          0 :                 struct net *net = ctl->extra2;
    2008                 :            : 
    2009         [ #  # ]:          0 :                 if (valp != &IPV4_DEVCONF_DFLT(net, FORWARDING)) {
    2010         [ #  # ]:          0 :                         if (!rtnl_trylock()) {
    2011                 :            :                                 /* Restore the original values before restarting */
    2012                 :          0 :                                 *valp = val;
    2013                 :          0 :                                 *ppos = pos;
    2014                 :          0 :                                 return restart_syscall();
    2015                 :            :                         }
    2016         [ #  # ]:          0 :                         if (valp == &IPV4_DEVCONF_ALL(net, FORWARDING)) {
    2017                 :          0 :                                 inet_forward_change(net);
    2018                 :            :                         } else {
    2019                 :          0 :                                 struct ipv4_devconf *cnf = ctl->extra1;
    2020                 :            :                                 struct in_device *idev =
    2021                 :            :                                         container_of(cnf, struct in_device, cnf);
    2022         [ #  # ]:          0 :                                 if (*valp)
    2023                 :          0 :                                         dev_disable_lro(idev->dev);
    2024                 :          0 :                                 inet_netconf_notify_devconf(net,
    2025                 :            :                                                             NETCONFA_FORWARDING,
    2026                 :          0 :                                                             idev->dev->ifindex,
    2027                 :            :                                                             cnf);
    2028                 :            :                         }
    2029                 :          0 :                         rtnl_unlock();
    2030                 :          0 :                         rt_cache_flush(net);
    2031                 :            :                 } else
    2032                 :          0 :                         inet_netconf_notify_devconf(net, NETCONFA_FORWARDING,
    2033                 :            :                                                     NETCONFA_IFINDEX_DEFAULT,
    2034                 :            :                                                     net->ipv4.devconf_dflt);
    2035                 :            :         }
    2036                 :            : 
    2037                 :         12 :         return ret;
    2038                 :            : }
    2039                 :            : 
    2040                 :          0 : static int ipv4_doint_and_flush(struct ctl_table *ctl, int write,
    2041                 :            :                                 void __user *buffer,
    2042                 :            :                                 size_t *lenp, loff_t *ppos)
    2043                 :            : {
    2044                 :         40 :         int *valp = ctl->data;
    2045                 :         40 :         int val = *valp;
    2046                 :         40 :         int ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
    2047                 :         40 :         struct net *net = ctl->extra2;
    2048                 :            : 
    2049 [ -  + ][ #  # ]:         40 :         if (write && *valp != val)
    2050                 :          0 :                 rt_cache_flush(net);
    2051                 :            : 
    2052                 :          0 :         return ret;
    2053                 :            : }
    2054                 :            : 
    2055                 :            : #define DEVINET_SYSCTL_ENTRY(attr, name, mval, proc) \
    2056                 :            :         { \
    2057                 :            :                 .procname       = name, \
    2058                 :            :                 .data           = ipv4_devconf.data + \
    2059                 :            :                                   IPV4_DEVCONF_ ## attr - 1, \
    2060                 :            :                 .maxlen         = sizeof(int), \
    2061                 :            :                 .mode           = mval, \
    2062                 :            :                 .proc_handler   = proc, \
    2063                 :            :                 .extra1         = &ipv4_devconf, \
    2064                 :            :         }
    2065                 :            : 
    2066                 :            : #define DEVINET_SYSCTL_RW_ENTRY(attr, name) \
    2067                 :            :         DEVINET_SYSCTL_ENTRY(attr, name, 0644, devinet_conf_proc)
    2068                 :            : 
    2069                 :            : #define DEVINET_SYSCTL_RO_ENTRY(attr, name) \
    2070                 :            :         DEVINET_SYSCTL_ENTRY(attr, name, 0444, devinet_conf_proc)
    2071                 :            : 
    2072                 :            : #define DEVINET_SYSCTL_COMPLEX_ENTRY(attr, name, proc) \
    2073                 :            :         DEVINET_SYSCTL_ENTRY(attr, name, 0644, proc)
    2074                 :            : 
    2075                 :            : #define DEVINET_SYSCTL_FLUSHING_ENTRY(attr, name) \
    2076                 :            :         DEVINET_SYSCTL_COMPLEX_ENTRY(attr, name, ipv4_doint_and_flush)
    2077                 :            : 
    2078                 :            : static struct devinet_sysctl_table {
    2079                 :            :         struct ctl_table_header *sysctl_header;
    2080                 :            :         struct ctl_table devinet_vars[__IPV4_DEVCONF_MAX];
    2081                 :            : } devinet_sysctl = {
    2082                 :            :         .devinet_vars = {
    2083                 :            :                 DEVINET_SYSCTL_COMPLEX_ENTRY(FORWARDING, "forwarding",
    2084                 :            :                                              devinet_sysctl_forward),
    2085                 :            :                 DEVINET_SYSCTL_RO_ENTRY(MC_FORWARDING, "mc_forwarding"),
    2086                 :            : 
    2087                 :            :                 DEVINET_SYSCTL_RW_ENTRY(ACCEPT_REDIRECTS, "accept_redirects"),
    2088                 :            :                 DEVINET_SYSCTL_RW_ENTRY(SECURE_REDIRECTS, "secure_redirects"),
    2089                 :            :                 DEVINET_SYSCTL_RW_ENTRY(SHARED_MEDIA, "shared_media"),
    2090                 :            :                 DEVINET_SYSCTL_RW_ENTRY(RP_FILTER, "rp_filter"),
    2091                 :            :                 DEVINET_SYSCTL_RW_ENTRY(SEND_REDIRECTS, "send_redirects"),
    2092                 :            :                 DEVINET_SYSCTL_RW_ENTRY(ACCEPT_SOURCE_ROUTE,
    2093                 :            :                                         "accept_source_route"),
    2094                 :            :                 DEVINET_SYSCTL_RW_ENTRY(ACCEPT_LOCAL, "accept_local"),
    2095                 :            :                 DEVINET_SYSCTL_RW_ENTRY(SRC_VMARK, "src_valid_mark"),
    2096                 :            :                 DEVINET_SYSCTL_RW_ENTRY(PROXY_ARP, "proxy_arp"),
    2097                 :            :                 DEVINET_SYSCTL_RW_ENTRY(MEDIUM_ID, "medium_id"),
    2098                 :            :                 DEVINET_SYSCTL_RW_ENTRY(BOOTP_RELAY, "bootp_relay"),
    2099                 :            :                 DEVINET_SYSCTL_RW_ENTRY(LOG_MARTIANS, "log_martians"),
    2100                 :            :                 DEVINET_SYSCTL_RW_ENTRY(TAG, "tag"),
    2101                 :            :                 DEVINET_SYSCTL_RW_ENTRY(ARPFILTER, "arp_filter"),
    2102                 :            :                 DEVINET_SYSCTL_RW_ENTRY(ARP_ANNOUNCE, "arp_announce"),
    2103                 :            :                 DEVINET_SYSCTL_RW_ENTRY(ARP_IGNORE, "arp_ignore"),
    2104                 :            :                 DEVINET_SYSCTL_RW_ENTRY(ARP_ACCEPT, "arp_accept"),
    2105                 :            :                 DEVINET_SYSCTL_RW_ENTRY(ARP_NOTIFY, "arp_notify"),
    2106                 :            :                 DEVINET_SYSCTL_RW_ENTRY(PROXY_ARP_PVLAN, "proxy_arp_pvlan"),
    2107                 :            :                 DEVINET_SYSCTL_RW_ENTRY(FORCE_IGMP_VERSION,
    2108                 :            :                                         "force_igmp_version"),
    2109                 :            :                 DEVINET_SYSCTL_RW_ENTRY(IGMPV2_UNSOLICITED_REPORT_INTERVAL,
    2110                 :            :                                         "igmpv2_unsolicited_report_interval"),
    2111                 :            :                 DEVINET_SYSCTL_RW_ENTRY(IGMPV3_UNSOLICITED_REPORT_INTERVAL,
    2112                 :            :                                         "igmpv3_unsolicited_report_interval"),
    2113                 :            : 
    2114                 :            :                 DEVINET_SYSCTL_FLUSHING_ENTRY(NOXFRM, "disable_xfrm"),
    2115                 :            :                 DEVINET_SYSCTL_FLUSHING_ENTRY(NOPOLICY, "disable_policy"),
    2116                 :            :                 DEVINET_SYSCTL_FLUSHING_ENTRY(PROMOTE_SECONDARIES,
    2117                 :            :                                               "promote_secondaries"),
    2118                 :            :                 DEVINET_SYSCTL_FLUSHING_ENTRY(ROUTE_LOCALNET,
    2119                 :            :                                               "route_localnet"),
    2120                 :            :         },
    2121                 :            : };
    2122                 :            : 
    2123                 :          0 : static int __devinet_sysctl_register(struct net *net, char *dev_name,
    2124                 :            :                                         struct ipv4_devconf *p)
    2125                 :            : {
    2126                 :            :         int i;
    2127                 :            :         struct devinet_sysctl_table *t;
    2128                 :            :         char path[sizeof("net/ipv4/conf/") + IFNAMSIZ];
    2129                 :            : 
    2130                 :          0 :         t = kmemdup(&devinet_sysctl, sizeof(*t), GFP_KERNEL);
    2131         [ #  # ]:          0 :         if (!t)
    2132                 :            :                 goto out;
    2133                 :            : 
    2134         [ #  # ]:          0 :         for (i = 0; i < ARRAY_SIZE(t->devinet_vars) - 1; i++) {
    2135                 :          0 :                 t->devinet_vars[i].data += (char *)p - (char *)&ipv4_devconf;
    2136                 :          0 :                 t->devinet_vars[i].extra1 = p;
    2137                 :          0 :                 t->devinet_vars[i].extra2 = net;
    2138                 :            :         }
    2139                 :            : 
    2140                 :          0 :         snprintf(path, sizeof(path), "net/ipv4/conf/%s", dev_name);
    2141                 :            : 
    2142                 :          0 :         t->sysctl_header = register_net_sysctl(net, path, t->devinet_vars);
    2143         [ #  # ]:          0 :         if (!t->sysctl_header)
    2144                 :            :                 goto free;
    2145                 :            : 
    2146                 :          0 :         p->sysctl = t;
    2147                 :          0 :         return 0;
    2148                 :            : 
    2149                 :            : free:
    2150                 :          0 :         kfree(t);
    2151                 :            : out:
    2152                 :            :         return -ENOBUFS;
    2153                 :            : }
    2154                 :            : 
    2155                 :          0 : static void __devinet_sysctl_unregister(struct ipv4_devconf *cnf)
    2156                 :            : {
    2157                 :          0 :         struct devinet_sysctl_table *t = cnf->sysctl;
    2158                 :            : 
    2159         [ #  # ]:          0 :         if (t == NULL)
    2160                 :          0 :                 return;
    2161                 :            : 
    2162                 :          0 :         cnf->sysctl = NULL;
    2163                 :          0 :         unregister_net_sysctl_table(t->sysctl_header);
    2164                 :          0 :         kfree(t);
    2165                 :            : }
    2166                 :            : 
    2167                 :          0 : static void devinet_sysctl_register(struct in_device *idev)
    2168                 :            : {
    2169                 :          0 :         neigh_sysctl_register(idev->dev, idev->arp_parms, "ipv4", NULL);
    2170                 :          0 :         __devinet_sysctl_register(dev_net(idev->dev), idev->dev->name,
    2171                 :            :                                         &idev->cnf);
    2172                 :          0 : }
    2173                 :            : 
    2174                 :            : static void devinet_sysctl_unregister(struct in_device *idev)
    2175                 :            : {
    2176                 :          0 :         __devinet_sysctl_unregister(&idev->cnf);
    2177                 :          0 :         neigh_sysctl_unregister(idev->arp_parms);
    2178                 :            : }
    2179                 :            : 
    2180                 :            : static struct ctl_table ctl_forward_entry[] = {
    2181                 :            :         {
    2182                 :            :                 .procname       = "ip_forward",
    2183                 :            :                 .data           = &ipv4_devconf.data[
    2184                 :            :                                         IPV4_DEVCONF_FORWARDING - 1],
    2185                 :            :                 .maxlen         = sizeof(int),
    2186                 :            :                 .mode           = 0644,
    2187                 :            :                 .proc_handler   = devinet_sysctl_forward,
    2188                 :            :                 .extra1         = &ipv4_devconf,
    2189                 :            :                 .extra2         = &init_net,
    2190                 :            :         },
    2191                 :            :         { },
    2192                 :            : };
    2193                 :            : #endif
    2194                 :            : 
    2195                 :          0 : static __net_init int devinet_init_net(struct net *net)
    2196                 :            : {
    2197                 :            :         int err;
    2198                 :            :         struct ipv4_devconf *all, *dflt;
    2199                 :            : #ifdef CONFIG_SYSCTL
    2200                 :            :         struct ctl_table *tbl = ctl_forward_entry;
    2201                 :            :         struct ctl_table_header *forw_hdr;
    2202                 :            : #endif
    2203                 :            : 
    2204                 :            :         err = -ENOMEM;
    2205                 :            :         all = &ipv4_devconf;
    2206                 :            :         dflt = &ipv4_devconf_dflt;
    2207                 :            : 
    2208                 :            :         if (!net_eq(net, &init_net)) {
    2209                 :            :                 all = kmemdup(all, sizeof(ipv4_devconf), GFP_KERNEL);
    2210                 :            :                 if (all == NULL)
    2211                 :            :                         goto err_alloc_all;
    2212                 :            : 
    2213                 :            :                 dflt = kmemdup(dflt, sizeof(ipv4_devconf_dflt), GFP_KERNEL);
    2214                 :            :                 if (dflt == NULL)
    2215                 :            :                         goto err_alloc_dflt;
    2216                 :            : 
    2217                 :            : #ifdef CONFIG_SYSCTL
    2218                 :            :                 tbl = kmemdup(tbl, sizeof(ctl_forward_entry), GFP_KERNEL);
    2219                 :            :                 if (tbl == NULL)
    2220                 :            :                         goto err_alloc_ctl;
    2221                 :            : 
    2222                 :            :                 tbl[0].data = &all->data[IPV4_DEVCONF_FORWARDING - 1];
    2223                 :            :                 tbl[0].extra1 = all;
    2224                 :            :                 tbl[0].extra2 = net;
    2225                 :            : #endif
    2226                 :            :         }
    2227                 :            : 
    2228                 :            : #ifdef CONFIG_SYSCTL
    2229                 :          0 :         err = __devinet_sysctl_register(net, "all", all);
    2230         [ #  # ]:          0 :         if (err < 0)
    2231                 :            :                 goto err_reg_all;
    2232                 :            : 
    2233                 :          0 :         err = __devinet_sysctl_register(net, "default", dflt);
    2234         [ #  # ]:          0 :         if (err < 0)
    2235                 :            :                 goto err_reg_dflt;
    2236                 :            : 
    2237                 :            :         err = -ENOMEM;
    2238                 :          0 :         forw_hdr = register_net_sysctl(net, "net/ipv4", tbl);
    2239         [ #  # ]:          0 :         if (forw_hdr == NULL)
    2240                 :            :                 goto err_reg_ctl;
    2241                 :          0 :         net->ipv4.forw_hdr = forw_hdr;
    2242                 :            : #endif
    2243                 :            : 
    2244                 :          0 :         net->ipv4.devconf_all = all;
    2245                 :          0 :         net->ipv4.devconf_dflt = dflt;
    2246                 :          0 :         return 0;
    2247                 :            : 
    2248                 :            : #ifdef CONFIG_SYSCTL
    2249                 :            : err_reg_ctl:
    2250                 :          0 :         __devinet_sysctl_unregister(dflt);
    2251                 :            : err_reg_dflt:
    2252                 :          0 :         __devinet_sysctl_unregister(all);
    2253                 :            : err_reg_all:
    2254                 :            :         if (tbl != ctl_forward_entry)
    2255                 :            :                 kfree(tbl);
    2256                 :            : err_alloc_ctl:
    2257                 :            : #endif
    2258                 :            :         if (dflt != &ipv4_devconf_dflt)
    2259                 :            :                 kfree(dflt);
    2260                 :            : err_alloc_dflt:
    2261                 :            :         if (all != &ipv4_devconf)
    2262                 :            :                 kfree(all);
    2263                 :            : err_alloc_all:
    2264                 :          0 :         return err;
    2265                 :            : }
    2266                 :            : 
    2267                 :          0 : static __net_exit void devinet_exit_net(struct net *net)
    2268                 :            : {
    2269                 :            : #ifdef CONFIG_SYSCTL
    2270                 :            :         struct ctl_table *tbl;
    2271                 :            : 
    2272                 :          0 :         tbl = net->ipv4.forw_hdr->ctl_table_arg;
    2273                 :          0 :         unregister_net_sysctl_table(net->ipv4.forw_hdr);
    2274                 :          0 :         __devinet_sysctl_unregister(net->ipv4.devconf_dflt);
    2275                 :          0 :         __devinet_sysctl_unregister(net->ipv4.devconf_all);
    2276                 :          0 :         kfree(tbl);
    2277                 :            : #endif
    2278                 :          0 :         kfree(net->ipv4.devconf_dflt);
    2279                 :          0 :         kfree(net->ipv4.devconf_all);
    2280                 :          0 : }
    2281                 :            : 
    2282                 :            : static __net_initdata struct pernet_operations devinet_ops = {
    2283                 :            :         .init = devinet_init_net,
    2284                 :            :         .exit = devinet_exit_net,
    2285                 :            : };
    2286                 :            : 
    2287                 :            : static struct rtnl_af_ops inet_af_ops = {
    2288                 :            :         .family           = AF_INET,
    2289                 :            :         .fill_link_af     = inet_fill_link_af,
    2290                 :            :         .get_link_af_size = inet_get_link_af_size,
    2291                 :            :         .validate_link_af = inet_validate_link_af,
    2292                 :            :         .set_link_af      = inet_set_link_af,
    2293                 :            : };
    2294                 :            : 
    2295                 :          0 : void __init devinet_init(void)
    2296                 :            : {
    2297                 :            :         int i;
    2298                 :            : 
    2299         [ #  # ]:          0 :         for (i = 0; i < IN4_ADDR_HSIZE; i++)
    2300                 :          0 :                 INIT_HLIST_HEAD(&inet_addr_lst[i]);
    2301                 :            : 
    2302                 :          0 :         register_pernet_subsys(&devinet_ops);
    2303                 :            : 
    2304                 :          0 :         register_gifconf(PF_INET, inet_gifconf);
    2305                 :          0 :         register_netdevice_notifier(&ip_netdev_notifier);
    2306                 :            : 
    2307                 :            :         schedule_delayed_work(&check_lifetime_work, 0);
    2308                 :            : 
    2309                 :          0 :         rtnl_af_register(&inet_af_ops);
    2310                 :            : 
    2311                 :          0 :         rtnl_register(PF_INET, RTM_NEWADDR, inet_rtm_newaddr, NULL, NULL);
    2312                 :          0 :         rtnl_register(PF_INET, RTM_DELADDR, inet_rtm_deladdr, NULL, NULL);
    2313                 :          0 :         rtnl_register(PF_INET, RTM_GETADDR, NULL, inet_dump_ifaddr, NULL);
    2314                 :          0 :         rtnl_register(PF_INET, RTM_GETNETCONF, inet_netconf_get_devconf,
    2315                 :            :                       inet_netconf_dump_devconf, NULL);
    2316                 :          0 : }
    2317                 :            : 

Generated by: LCOV version 1.9