]> nv-tegra.nvidia Code Review - linux-2.6.git/blob - net/phonet/pn_dev.c
net: pass kern to net_proto_family create function
[linux-2.6.git] / net / phonet / pn_dev.c
1 /*
2  * File: pn_dev.c
3  *
4  * Phonet network device
5  *
6  * Copyright (C) 2008 Nokia Corporation.
7  *
8  * Contact: Remi Denis-Courmont <remi.denis-courmont@nokia.com>
9  * Original author: Sakari Ailus <sakari.ailus@nokia.com>
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * version 2 as published by the Free Software Foundation.
14  *
15  * This program is distributed in the hope that it will be useful, but
16  * WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
23  * 02110-1301 USA
24  */
25
26 #include <linux/kernel.h>
27 #include <linux/net.h>
28 #include <linux/netdevice.h>
29 #include <linux/phonet.h>
30 #include <linux/proc_fs.h>
31 #include <linux/if_arp.h>
32 #include <net/sock.h>
33 #include <net/netns/generic.h>
34 #include <net/phonet/pn_dev.h>
35
36 struct phonet_routes {
37         spinlock_t              lock;
38         struct net_device       *table[64];
39 };
40
41 struct phonet_net {
42         struct phonet_device_list pndevs;
43         struct phonet_routes routes;
44 };
45
46 int phonet_net_id;
47
48 struct phonet_device_list *phonet_device_list(struct net *net)
49 {
50         struct phonet_net *pnn = net_generic(net, phonet_net_id);
51         return &pnn->pndevs;
52 }
53
54 /* Allocate new Phonet device. */
55 static struct phonet_device *__phonet_device_alloc(struct net_device *dev)
56 {
57         struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
58         struct phonet_device *pnd = kmalloc(sizeof(*pnd), GFP_ATOMIC);
59         if (pnd == NULL)
60                 return NULL;
61         pnd->netdev = dev;
62         bitmap_zero(pnd->addrs, 64);
63
64         list_add(&pnd->list, &pndevs->list);
65         return pnd;
66 }
67
68 static struct phonet_device *__phonet_get(struct net_device *dev)
69 {
70         struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
71         struct phonet_device *pnd;
72
73         list_for_each_entry(pnd, &pndevs->list, list) {
74                 if (pnd->netdev == dev)
75                         return pnd;
76         }
77         return NULL;
78 }
79
80 static void phonet_device_destroy(struct net_device *dev)
81 {
82         struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
83         struct phonet_device *pnd;
84
85         ASSERT_RTNL();
86
87         spin_lock_bh(&pndevs->lock);
88         pnd = __phonet_get(dev);
89         if (pnd)
90                 list_del(&pnd->list);
91         spin_unlock_bh(&pndevs->lock);
92
93         if (pnd) {
94                 u8 addr;
95
96                 for (addr = find_first_bit(pnd->addrs, 64); addr < 64;
97                         addr = find_next_bit(pnd->addrs, 64, 1+addr))
98                         phonet_address_notify(RTM_DELADDR, dev, addr);
99                 kfree(pnd);
100         }
101 }
102
103 struct net_device *phonet_device_get(struct net *net)
104 {
105         struct phonet_device_list *pndevs = phonet_device_list(net);
106         struct phonet_device *pnd;
107         struct net_device *dev = NULL;
108
109         spin_lock_bh(&pndevs->lock);
110         list_for_each_entry(pnd, &pndevs->list, list) {
111                 dev = pnd->netdev;
112                 BUG_ON(!dev);
113
114                 if ((dev->reg_state == NETREG_REGISTERED) &&
115                         ((pnd->netdev->flags & IFF_UP)) == IFF_UP)
116                         break;
117                 dev = NULL;
118         }
119         if (dev)
120                 dev_hold(dev);
121         spin_unlock_bh(&pndevs->lock);
122         return dev;
123 }
124
125 int phonet_address_add(struct net_device *dev, u8 addr)
126 {
127         struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
128         struct phonet_device *pnd;
129         int err = 0;
130
131         spin_lock_bh(&pndevs->lock);
132         /* Find or create Phonet-specific device data */
133         pnd = __phonet_get(dev);
134         if (pnd == NULL)
135                 pnd = __phonet_device_alloc(dev);
136         if (unlikely(pnd == NULL))
137                 err = -ENOMEM;
138         else if (test_and_set_bit(addr >> 2, pnd->addrs))
139                 err = -EEXIST;
140         spin_unlock_bh(&pndevs->lock);
141         return err;
142 }
143
144 int phonet_address_del(struct net_device *dev, u8 addr)
145 {
146         struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
147         struct phonet_device *pnd;
148         int err = 0;
149
150         spin_lock_bh(&pndevs->lock);
151         pnd = __phonet_get(dev);
152         if (!pnd || !test_and_clear_bit(addr >> 2, pnd->addrs))
153                 err = -EADDRNOTAVAIL;
154         else if (bitmap_empty(pnd->addrs, 64)) {
155                 list_del(&pnd->list);
156                 kfree(pnd);
157         }
158         spin_unlock_bh(&pndevs->lock);
159         return err;
160 }
161
162 /* Gets a source address toward a destination, through a interface. */
163 u8 phonet_address_get(struct net_device *dev, u8 daddr)
164 {
165         struct phonet_device_list *pndevs = phonet_device_list(dev_net(dev));
166         struct phonet_device *pnd;
167         u8 saddr;
168
169         spin_lock_bh(&pndevs->lock);
170         pnd = __phonet_get(dev);
171         if (pnd) {
172                 BUG_ON(bitmap_empty(pnd->addrs, 64));
173
174                 /* Use same source address as destination, if possible */
175                 if (test_bit(daddr >> 2, pnd->addrs))
176                         saddr = daddr;
177                 else
178                         saddr = find_first_bit(pnd->addrs, 64) << 2;
179         } else
180                 saddr = PN_NO_ADDR;
181         spin_unlock_bh(&pndevs->lock);
182
183         if (saddr == PN_NO_ADDR) {
184                 /* Fallback to another device */
185                 struct net_device *def_dev;
186
187                 def_dev = phonet_device_get(dev_net(dev));
188                 if (def_dev) {
189                         if (def_dev != dev)
190                                 saddr = phonet_address_get(def_dev, daddr);
191                         dev_put(def_dev);
192                 }
193         }
194         return saddr;
195 }
196
197 int phonet_address_lookup(struct net *net, u8 addr)
198 {
199         struct phonet_device_list *pndevs = phonet_device_list(net);
200         struct phonet_device *pnd;
201         int err = -EADDRNOTAVAIL;
202
203         spin_lock_bh(&pndevs->lock);
204         list_for_each_entry(pnd, &pndevs->list, list) {
205                 /* Don't allow unregistering devices! */
206                 if ((pnd->netdev->reg_state != NETREG_REGISTERED) ||
207                                 ((pnd->netdev->flags & IFF_UP)) != IFF_UP)
208                         continue;
209
210                 if (test_bit(addr >> 2, pnd->addrs)) {
211                         err = 0;
212                         goto found;
213                 }
214         }
215 found:
216         spin_unlock_bh(&pndevs->lock);
217         return err;
218 }
219
220 /* automatically configure a Phonet device, if supported */
221 static int phonet_device_autoconf(struct net_device *dev)
222 {
223         struct if_phonet_req req;
224         int ret;
225
226         if (!dev->netdev_ops->ndo_do_ioctl)
227                 return -EOPNOTSUPP;
228
229         ret = dev->netdev_ops->ndo_do_ioctl(dev, (struct ifreq *)&req,
230                                                 SIOCPNGAUTOCONF);
231         if (ret < 0)
232                 return ret;
233
234         ASSERT_RTNL();
235         ret = phonet_address_add(dev, req.ifr_phonet_autoconf.device);
236         if (ret)
237                 return ret;
238         phonet_address_notify(RTM_NEWADDR, dev,
239                                 req.ifr_phonet_autoconf.device);
240         return 0;
241 }
242
243 static void phonet_route_autodel(struct net_device *dev)
244 {
245         struct phonet_net *pnn = net_generic(dev_net(dev), phonet_net_id);
246         unsigned i;
247         DECLARE_BITMAP(deleted, 64);
248
249         /* Remove left-over Phonet routes */
250         bitmap_zero(deleted, 64);
251         spin_lock_bh(&pnn->routes.lock);
252         for (i = 0; i < 64; i++)
253                 if (dev == pnn->routes.table[i]) {
254                         set_bit(i, deleted);
255                         pnn->routes.table[i] = NULL;
256                         dev_put(dev);
257                 }
258         spin_unlock_bh(&pnn->routes.lock);
259         for (i = find_first_bit(deleted, 64); i < 64;
260                         i = find_next_bit(deleted, 64, i + 1))
261                 rtm_phonet_notify(RTM_DELROUTE, dev, i);
262 }
263
264 /* notify Phonet of device events */
265 static int phonet_device_notify(struct notifier_block *me, unsigned long what,
266                                 void *arg)
267 {
268         struct net_device *dev = arg;
269
270         switch (what) {
271         case NETDEV_REGISTER:
272                 if (dev->type == ARPHRD_PHONET)
273                         phonet_device_autoconf(dev);
274                 break;
275         case NETDEV_UNREGISTER:
276                 phonet_device_destroy(dev);
277                 phonet_route_autodel(dev);
278                 break;
279         }
280         return 0;
281
282 }
283
284 static struct notifier_block phonet_device_notifier = {
285         .notifier_call = phonet_device_notify,
286         .priority = 0,
287 };
288
289 /* Per-namespace Phonet devices handling */
290 static int phonet_init_net(struct net *net)
291 {
292         struct phonet_net *pnn = kzalloc(sizeof(*pnn), GFP_KERNEL);
293         if (!pnn)
294                 return -ENOMEM;
295
296         if (!proc_net_fops_create(net, "phonet", 0, &pn_sock_seq_fops)) {
297                 kfree(pnn);
298                 return -ENOMEM;
299         }
300
301         INIT_LIST_HEAD(&pnn->pndevs.list);
302         spin_lock_init(&pnn->pndevs.lock);
303         spin_lock_init(&pnn->routes.lock);
304         net_assign_generic(net, phonet_net_id, pnn);
305         return 0;
306 }
307
308 static void phonet_exit_net(struct net *net)
309 {
310         struct phonet_net *pnn = net_generic(net, phonet_net_id);
311         struct net_device *dev;
312         unsigned i;
313
314         rtnl_lock();
315         for_each_netdev(net, dev)
316                 phonet_device_destroy(dev);
317
318         for (i = 0; i < 64; i++) {
319                 dev = pnn->routes.table[i];
320                 if (dev) {
321                         rtm_phonet_notify(RTM_DELROUTE, dev, i);
322                         dev_put(dev);
323                 }
324         }
325         rtnl_unlock();
326
327         proc_net_remove(net, "phonet");
328         kfree(pnn);
329 }
330
331 static struct pernet_operations phonet_net_ops = {
332         .init = phonet_init_net,
333         .exit = phonet_exit_net,
334 };
335
336 /* Initialize Phonet devices list */
337 int __init phonet_device_init(void)
338 {
339         int err = register_pernet_gen_device(&phonet_net_id, &phonet_net_ops);
340         if (err)
341                 return err;
342
343         register_netdevice_notifier(&phonet_device_notifier);
344         err = phonet_netlink_register();
345         if (err)
346                 phonet_device_exit();
347         return err;
348 }
349
350 void phonet_device_exit(void)
351 {
352         rtnl_unregister_all(PF_PHONET);
353         unregister_netdevice_notifier(&phonet_device_notifier);
354         unregister_pernet_gen_device(phonet_net_id, &phonet_net_ops);
355 }
356
357 int phonet_route_add(struct net_device *dev, u8 daddr)
358 {
359         struct phonet_net *pnn = net_generic(dev_net(dev), phonet_net_id);
360         struct phonet_routes *routes = &pnn->routes;
361         int err = -EEXIST;
362
363         daddr = daddr >> 2;
364         spin_lock_bh(&routes->lock);
365         if (routes->table[daddr] == NULL) {
366                 routes->table[daddr] = dev;
367                 dev_hold(dev);
368                 err = 0;
369         }
370         spin_unlock_bh(&routes->lock);
371         return err;
372 }
373
374 int phonet_route_del(struct net_device *dev, u8 daddr)
375 {
376         struct phonet_net *pnn = net_generic(dev_net(dev), phonet_net_id);
377         struct phonet_routes *routes = &pnn->routes;
378         int err = -ENOENT;
379
380         daddr = daddr >> 2;
381         spin_lock_bh(&routes->lock);
382         if (dev == routes->table[daddr]) {
383                 routes->table[daddr] = NULL;
384                 dev_put(dev);
385                 err = 0;
386         }
387         spin_unlock_bh(&routes->lock);
388         return err;
389 }
390
391 struct net_device *phonet_route_get(struct net *net, u8 daddr)
392 {
393         struct phonet_net *pnn = net_generic(net, phonet_net_id);
394         struct phonet_routes *routes = &pnn->routes;
395         struct net_device *dev;
396
397         ASSERT_RTNL(); /* no need to hold the device */
398
399         daddr >>= 2;
400         spin_lock_bh(&routes->lock);
401         dev = routes->table[daddr];
402         spin_unlock_bh(&routes->lock);
403         return dev;
404 }
405
406 struct net_device *phonet_route_output(struct net *net, u8 daddr)
407 {
408         struct phonet_net *pnn = net_generic(net, phonet_net_id);
409         struct phonet_routes *routes = &pnn->routes;
410         struct net_device *dev;
411
412         spin_lock_bh(&routes->lock);
413         dev = routes->table[daddr >> 2];
414         if (dev)
415                 dev_hold(dev);
416         spin_unlock_bh(&routes->lock);
417
418         if (!dev)
419                 dev = phonet_device_get(net); /* Default route */
420         return dev;
421 }