Phonet: routing table backend
[linux-2.6-block.git] / net / phonet / pn_dev.c
index c2b77a698695371a5b08d2da94876ff2a71f50c7..71fffa587783213c2299e4a5a1cc1e385a4a2749 100644 (file)
 #include <linux/net.h>
 #include <linux/netdevice.h>
 #include <linux/phonet.h>
+#include <linux/proc_fs.h>
+#include <linux/if_arp.h>
 #include <net/sock.h>
 #include <net/netns/generic.h>
 #include <net/phonet/pn_dev.h>
 
+struct phonet_routes {
+       spinlock_t              lock;
+       struct net_device       *table[64];
+};
+
 struct phonet_net {
        struct phonet_device_list pndevs;
+       struct phonet_routes routes;
 };
 
 int phonet_net_id;
@@ -152,10 +160,11 @@ int phonet_address_del(struct net_device *dev, u8 addr)
 }
 
 /* Gets a source address toward a destination, through a interface. */
-u8 phonet_address_get(struct net_device *dev, u8 addr)
+u8 phonet_address_get(struct net_device *dev, u8 daddr)
 {
        struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
        struct phonet_device *pnd;
+       u8 saddr;
 
        spin_lock_bh(&pndevs->lock);
        pnd = __phonet_get(dev);
@@ -163,12 +172,26 @@ u8 phonet_address_get(struct net_device *dev, u8 addr)
                BUG_ON(bitmap_empty(pnd->addrs, 64));
 
                /* Use same source address as destination, if possible */
-               if (!test_bit(addr >> 2, pnd->addrs))
-                       addr = find_first_bit(pnd->addrs, 64) << 2;
+               if (test_bit(daddr >> 2, pnd->addrs))
+                       saddr = daddr;
+               else
+                       saddr = find_first_bit(pnd->addrs, 64) << 2;
        } else
-               addr = PN_NO_ADDR;
+               saddr = PN_NO_ADDR;
        spin_unlock_bh(&pndevs->lock);
-       return addr;
+
+       if (saddr == PN_NO_ADDR) {
+               /* Fallback to another device */
+               struct net_device *def_dev;
+
+               def_dev = phonet_device_get(dev_net(dev));
+               if (def_dev) {
+                       if (def_dev != dev)
+                               saddr = phonet_address_get(def_dev, daddr);
+                       dev_put(def_dev);
+               }
+       }
+       return saddr;
 }
 
 int phonet_address_lookup(struct net *net, u8 addr)
@@ -194,14 +217,44 @@ found:
        return err;
 }
 
+/* automatically configure a Phonet device, if supported */
+static int phonet_device_autoconf(struct net_device *dev)
+{
+       struct if_phonet_req req;
+       int ret;
+
+       if (!dev->netdev_ops->ndo_do_ioctl)
+               return -EOPNOTSUPP;
+
+       ret = dev->netdev_ops->ndo_do_ioctl(dev, (struct ifreq *)&req,
+                                               SIOCPNGAUTOCONF);
+       if (ret < 0)
+               return ret;
+
+       ASSERT_RTNL();
+       ret = phonet_address_add(dev, req.ifr_phonet_autoconf.device);
+       if (ret)
+               return ret;
+       phonet_address_notify(RTM_NEWADDR, dev,
+                               req.ifr_phonet_autoconf.device);
+       return 0;
+}
+
 /* notify Phonet of device events */
 static int phonet_device_notify(struct notifier_block *me, unsigned long what,
                                void *arg)
 {
        struct net_device *dev = arg;
 
-       if (what == NETDEV_UNREGISTER)
+       switch (what) {
+       case NETDEV_REGISTER:
+               if (dev->type == ARPHRD_PHONET)
+                       phonet_device_autoconf(dev);
+               break;
+       case NETDEV_UNREGISTER:
                phonet_device_destroy(dev);
+               break;
+       }
        return 0;
 
 }
@@ -214,12 +267,18 @@ static struct notifier_block phonet_device_notifier = {
 /* Per-namespace Phonet devices handling */
 static int phonet_init_net(struct net *net)
 {
-       struct phonet_net *pnn = kmalloc(sizeof(*pnn), GFP_KERNEL);
+       struct phonet_net *pnn = kzalloc(sizeof(*pnn), GFP_KERNEL);
        if (!pnn)
                return -ENOMEM;
 
+       if (!proc_net_fops_create(net, "phonet", 0, &pn_sock_seq_fops)) {
+               kfree(pnn);
+               return -ENOMEM;
+       }
+
        INIT_LIST_HEAD(&pnn->pndevs.list);
        spin_lock_init(&pnn->pndevs.lock);
+       spin_lock_init(&pnn->routes.lock);
        net_assign_generic(net, phonet_net_id, pnn);
        return 0;
 }
@@ -233,6 +292,8 @@ static void phonet_exit_net(struct net *net)
        for_each_netdev(net, dev)
                phonet_device_destroy(dev);
        rtnl_unlock();
+
+       proc_net_remove(net, "phonet");
        kfree(pnn);
 }
 
@@ -261,3 +322,69 @@ void phonet_device_exit(void)
        unregister_netdevice_notifier(&phonet_device_notifier);
        unregister_pernet_gen_device(phonet_net_id, &phonet_net_ops);
 }
+
+int phonet_route_add(struct net_device *dev, u8 daddr)
+{
+       struct phonet_net *pnn = net_generic(dev_net(dev), phonet_net_id);
+       struct phonet_routes *routes = &pnn->routes;
+       int err = -EEXIST;
+
+       daddr = daddr >> 2;
+       spin_lock_bh(&routes->lock);
+       if (routes->table[daddr] == NULL) {
+               routes->table[daddr] = dev;
+               dev_hold(dev);
+               err = 0;
+       }
+       spin_unlock_bh(&routes->lock);
+       return err;
+}
+
+int phonet_route_del(struct net_device *dev, u8 daddr)
+{
+       struct phonet_net *pnn = net_generic(dev_net(dev), phonet_net_id);
+       struct phonet_routes *routes = &pnn->routes;
+       int err = -ENOENT;
+
+       daddr = daddr >> 2;
+       spin_lock_bh(&routes->lock);
+       if (dev == routes->table[daddr]) {
+               routes->table[daddr] = NULL;
+               dev_put(dev);
+               err = 0;
+       }
+       spin_unlock_bh(&routes->lock);
+       return err;
+}
+
+struct net_device *phonet_route_get(struct net *net, u8 daddr)
+{
+       struct phonet_net *pnn = net_generic(net, phonet_net_id);
+       struct phonet_routes *routes = &pnn->routes;
+       struct net_device *dev;
+
+       ASSERT_RTNL(); /* no need to hold the device */
+
+       daddr >>= 2;
+       spin_lock_bh(&routes->lock);
+       dev = routes->table[daddr];
+       spin_unlock_bh(&routes->lock);
+       return dev;
+}
+
+struct net_device *phonet_route_output(struct net *net, u8 daddr)
+{
+       struct phonet_net *pnn = net_generic(net, phonet_net_id);
+       struct phonet_routes *routes = &pnn->routes;
+       struct net_device *dev;
+
+       spin_lock_bh(&routes->lock);
+       dev = routes->table[daddr >> 2];
+       if (dev)
+               dev_hold(dev);
+       spin_unlock_bh(&routes->lock);
+
+       if (!dev)
+               dev = phonet_device_get(net); /* Default route */
+       return dev;
+}