uml: improve checking and diagnostics of ethernet MACs
[safe/jmp/linux-2.6] / arch / um / drivers / net_kern.c
1 /*
2  * Copyright (C) 2001 Lennert Buytenhek (buytenh@gnu.org) and
3  * James Leu (jleu@mindspring.net).
4  * Copyright (C) 2001 by various other people who didn't put their name here.
5  * Licensed under the GPL.
6  */
7
8 #include "linux/kernel.h"
9 #include "linux/netdevice.h"
10 #include "linux/rtnetlink.h"
11 #include "linux/skbuff.h"
12 #include "linux/socket.h"
13 #include "linux/spinlock.h"
14 #include "linux/module.h"
15 #include "linux/init.h"
16 #include "linux/etherdevice.h"
17 #include "linux/list.h"
18 #include "linux/inetdevice.h"
19 #include "linux/ctype.h"
20 #include "linux/bootmem.h"
21 #include "linux/ethtool.h"
22 #include "linux/platform_device.h"
23 #include "asm/uaccess.h"
24 #include "kern_util.h"
25 #include "net_kern.h"
26 #include "net_user.h"
27 #include "mconsole_kern.h"
28 #include "init.h"
29 #include "irq_user.h"
30 #include "irq_kern.h"
31
32 static inline void set_ether_mac(struct net_device *dev, unsigned char *addr)
33 {
34         memcpy(dev->dev_addr, addr, ETH_ALEN);
35 }
36
37 #define DRIVER_NAME "uml-netdev"
38
39 static DEFINE_SPINLOCK(opened_lock);
40 static LIST_HEAD(opened);
41
42 static int uml_net_rx(struct net_device *dev)
43 {
44         struct uml_net_private *lp = dev->priv;
45         int pkt_len;
46         struct sk_buff *skb;
47
48         /* If we can't allocate memory, try again next round. */
49         skb = dev_alloc_skb(dev->mtu);
50         if (skb == NULL) {
51                 lp->stats.rx_dropped++;
52                 return 0;
53         }
54
55         skb->dev = dev;
56         skb_put(skb, dev->mtu);
57         skb_reset_mac_header(skb);
58         pkt_len = (*lp->read)(lp->fd, &skb, lp);
59
60         if (pkt_len > 0) {
61                 skb_trim(skb, pkt_len);
62                 skb->protocol = (*lp->protocol)(skb);
63                 netif_rx(skb);
64
65                 lp->stats.rx_bytes += skb->len;
66                 lp->stats.rx_packets++;
67                 return pkt_len;
68         }
69
70         kfree_skb(skb);
71         return pkt_len;
72 }
73
74 static void uml_dev_close(struct work_struct *work)
75 {
76         struct uml_net_private *lp =
77                 container_of(work, struct uml_net_private, work);
78         dev_close(lp->dev);
79 }
80
81 irqreturn_t uml_net_interrupt(int irq, void *dev_id)
82 {
83         struct net_device *dev = dev_id;
84         struct uml_net_private *lp = dev->priv;
85         int err;
86
87         if(!netif_running(dev))
88                 return(IRQ_NONE);
89
90         spin_lock(&lp->lock);
91         while((err = uml_net_rx(dev)) > 0) ;
92         if(err < 0) {
93                 printk(KERN_ERR
94                        "Device '%s' read returned %d, shutting it down\n",
95                        dev->name, err);
96                 /* dev_close can't be called in interrupt context, and takes
97                  * again lp->lock.
98                  * And dev_close() can be safely called multiple times on the
99                  * same device, since it tests for (dev->flags & IFF_UP). So
100                  * there's no harm in delaying the device shutdown.
101                  * Furthermore, the workqueue will not re-enqueue an already
102                  * enqueued work item. */
103                 schedule_work(&lp->work);
104                 goto out;
105         }
106         reactivate_fd(lp->fd, UM_ETH_IRQ);
107
108 out:
109         spin_unlock(&lp->lock);
110         return IRQ_HANDLED;
111 }
112
113 static int uml_net_open(struct net_device *dev)
114 {
115         struct uml_net_private *lp = dev->priv;
116         int err;
117
118         if(lp->fd >= 0){
119                 err = -ENXIO;
120                 goto out;
121         }
122
123         lp->fd = (*lp->open)(&lp->user);
124         if(lp->fd < 0){
125                 err = lp->fd;
126                 goto out;
127         }
128
129         err = um_request_irq(dev->irq, lp->fd, IRQ_READ, uml_net_interrupt,
130                              IRQF_DISABLED | IRQF_SHARED, dev->name, dev);
131         if(err != 0){
132                 printk(KERN_ERR "uml_net_open: failed to get irq(%d)\n", err);
133                 err = -ENETUNREACH;
134                 goto out_close;
135         }
136
137         lp->tl.data = (unsigned long) &lp->user;
138         netif_start_queue(dev);
139
140         /* clear buffer - it can happen that the host side of the interface
141          * is full when we get here.  In this case, new data is never queued,
142          * SIGIOs never arrive, and the net never works.
143          */
144         while((err = uml_net_rx(dev)) > 0) ;
145
146         spin_lock(&opened_lock);
147         list_add(&lp->list, &opened);
148         spin_unlock(&opened_lock);
149
150         return 0;
151 out_close:
152         if(lp->close != NULL) (*lp->close)(lp->fd, &lp->user);
153         lp->fd = -1;
154 out:
155         return err;
156 }
157
158 static int uml_net_close(struct net_device *dev)
159 {
160         struct uml_net_private *lp = dev->priv;
161
162         netif_stop_queue(dev);
163
164         free_irq(dev->irq, dev);
165         if(lp->close != NULL)
166                 (*lp->close)(lp->fd, &lp->user);
167         lp->fd = -1;
168
169         spin_lock(&opened_lock);
170         list_del(&lp->list);
171         spin_unlock(&opened_lock);
172
173         return 0;
174 }
175
176 static int uml_net_start_xmit(struct sk_buff *skb, struct net_device *dev)
177 {
178         struct uml_net_private *lp = dev->priv;
179         unsigned long flags;
180         int len;
181
182         netif_stop_queue(dev);
183
184         spin_lock_irqsave(&lp->lock, flags);
185
186         len = (*lp->write)(lp->fd, &skb, lp);
187
188         if(len == skb->len) {
189                 lp->stats.tx_packets++;
190                 lp->stats.tx_bytes += skb->len;
191                 dev->trans_start = jiffies;
192                 netif_start_queue(dev);
193
194                 /* this is normally done in the interrupt when tx finishes */
195                 netif_wake_queue(dev);
196         }
197         else if(len == 0){
198                 netif_start_queue(dev);
199                 lp->stats.tx_dropped++;
200         }
201         else {
202                 netif_start_queue(dev);
203                 printk(KERN_ERR "uml_net_start_xmit: failed(%d)\n", len);
204         }
205
206         spin_unlock_irqrestore(&lp->lock, flags);
207
208         dev_kfree_skb(skb);
209
210         return 0;
211 }
212
213 static struct net_device_stats *uml_net_get_stats(struct net_device *dev)
214 {
215         struct uml_net_private *lp = dev->priv;
216         return &lp->stats;
217 }
218
219 static void uml_net_set_multicast_list(struct net_device *dev)
220 {
221         if (dev->flags & IFF_PROMISC) return;
222         else if (dev->mc_count) dev->flags |= IFF_ALLMULTI;
223         else dev->flags &= ~IFF_ALLMULTI;
224 }
225
226 static void uml_net_tx_timeout(struct net_device *dev)
227 {
228         dev->trans_start = jiffies;
229         netif_wake_queue(dev);
230 }
231
232 static int uml_net_set_mac(struct net_device *dev, void *addr)
233 {
234         struct uml_net_private *lp = dev->priv;
235         struct sockaddr *hwaddr = addr;
236
237         spin_lock_irq(&lp->lock);
238         set_ether_mac(dev, hwaddr->sa_data);
239         spin_unlock_irq(&lp->lock);
240
241         return 0;
242 }
243
244 static int uml_net_change_mtu(struct net_device *dev, int new_mtu)
245 {
246         struct uml_net_private *lp = dev->priv;
247         int err = 0;
248
249         spin_lock_irq(&lp->lock);
250
251         new_mtu = (*lp->set_mtu)(new_mtu, &lp->user);
252         if(new_mtu < 0){
253                 err = new_mtu;
254                 goto out;
255         }
256
257         dev->mtu = new_mtu;
258
259  out:
260         spin_unlock_irq(&lp->lock);
261         return err;
262 }
263
264 static void uml_net_get_drvinfo(struct net_device *dev,
265                                 struct ethtool_drvinfo *info)
266 {
267         strcpy(info->driver, DRIVER_NAME);
268         strcpy(info->version, "42");
269 }
270
271 static struct ethtool_ops uml_net_ethtool_ops = {
272         .get_drvinfo    = uml_net_get_drvinfo,
273         .get_link       = ethtool_op_get_link,
274 };
275
276 void uml_net_user_timer_expire(unsigned long _conn)
277 {
278 #ifdef undef
279         struct connection *conn = (struct connection *)_conn;
280
281         dprintk(KERN_INFO "uml_net_user_timer_expire [%p]\n", conn);
282         do_connect(conn);
283 #endif
284 }
285
286 static void setup_etheraddr(char *str, unsigned char *addr, char *name)
287 {
288         char *end;
289         int i;
290
291         if(str == NULL)
292                 goto random;
293
294         for(i=0;i<6;i++){
295                 addr[i] = simple_strtoul(str, &end, 16);
296                 if((end == str) ||
297                    ((*end != ':') && (*end != ',') && (*end != '\0'))){
298                         printk(KERN_ERR
299                                "setup_etheraddr: failed to parse '%s' "
300                                "as an ethernet address\n", str);
301                         goto random;
302                 }
303                 str = end + 1;
304         }
305         if (is_multicast_ether_addr(addr)) {
306                 printk(KERN_ERR
307                        "Attempt to assign a multicast ethernet address to a "
308                        "device disallowed\n");
309                 goto random;
310         }
311         if (!is_valid_ether_addr(addr)) {
312                 printk(KERN_ERR
313                        "Attempt to assign an invalid ethernet address to a "
314                        "device disallowed\n");
315                 goto random;
316         }
317         if (!is_local_ether_addr(addr)) {
318                 printk(KERN_WARNING
319                        "Warning: attempt to assign a globally valid ethernet address to a "
320                        "device\n");
321                 printk(KERN_WARNING "You should better enable the 2nd rightmost bit "
322                       "in the first byte of the MAC, i.e. "
323                       "%02x:%02x:%02x:%02x:%02x:%02x\n",
324                       addr[0] | 0x02, addr[1], addr[2], addr[3], addr[4], addr[5]);
325         }
326         return;
327
328 random:
329         printk(KERN_INFO
330                "Choosing a random ethernet address for device %s\n", name);
331         random_ether_addr(addr);
332 }
333
334 static DEFINE_SPINLOCK(devices_lock);
335 static LIST_HEAD(devices);
336
337 static struct platform_driver uml_net_driver = {
338         .driver = {
339                 .name  = DRIVER_NAME,
340         },
341 };
342 static int driver_registered;
343
344 static void eth_configure(int n, void *init, char *mac,
345                           struct transport *transport)
346 {
347         struct uml_net *device;
348         struct net_device *dev;
349         struct uml_net_private *lp;
350         int save, err, size;
351         char name[sizeof(dev->name)];
352
353         size = transport->private_size + sizeof(struct uml_net_private) +
354                 sizeof(((struct uml_net_private *) 0)->user);
355
356         device = kzalloc(sizeof(*device), GFP_KERNEL);
357         if (device == NULL) {
358                 printk(KERN_ERR "eth_configure failed to allocate uml_net\n");
359                 return;
360         }
361
362         INIT_LIST_HEAD(&device->list);
363         device->index = n;
364
365         /* If this name ends up conflicting with an existing registered
366          * netdevice, that is OK, register_netdev{,ice}() will notice this
367          * and fail.
368          */
369         snprintf(name, sizeof(name), "eth%d", n);
370
371         setup_etheraddr(mac, device->mac, name);
372
373         printk(KERN_INFO "Netdevice %d ", n);
374         printk("(%02x:%02x:%02x:%02x:%02x:%02x) ",
375                device->mac[0], device->mac[1],
376                device->mac[2], device->mac[3],
377                device->mac[4], device->mac[5]);
378         printk(": ");
379         dev = alloc_etherdev(size);
380         if (dev == NULL) {
381                 printk(KERN_ERR "eth_configure: failed to allocate device\n");
382                 goto out_free_device;
383         }
384
385         lp = dev->priv;
386         /* This points to the transport private data. It's still clear, but we
387          * must memset it to 0 *now*. Let's help the drivers. */
388         memset(lp, 0, size);
389         INIT_WORK(&lp->work, uml_dev_close);
390
391         /* sysfs register */
392         if (!driver_registered) {
393                 platform_driver_register(&uml_net_driver);
394                 driver_registered = 1;
395         }
396         device->pdev.id = n;
397         device->pdev.name = DRIVER_NAME;
398         if(platform_device_register(&device->pdev))
399                 goto out_free_netdev;
400         SET_NETDEV_DEV(dev,&device->pdev.dev);
401
402         strcpy(dev->name, name);
403         device->dev = dev;
404
405         /*
406          * These just fill in a data structure, so there's no failure
407          * to be worried about.
408          */
409         (*transport->kern->init)(dev, init);
410
411         /* lp.user is the first four bytes of the transport data, which
412          * has already been initialized.  This structure assignment will
413          * overwrite that, so we make sure that .user gets overwritten with
414          * what it already has.
415          */
416         save = lp->user[0];
417         *lp = ((struct uml_net_private)
418                 { .list                 = LIST_HEAD_INIT(lp->list),
419                   .dev                  = dev,
420                   .fd                   = -1,
421                   .mac                  = { 0xfe, 0xfd, 0x0, 0x0, 0x0, 0x0},
422                   .protocol             = transport->kern->protocol,
423                   .open                 = transport->user->open,
424                   .close                = transport->user->close,
425                   .remove               = transport->user->remove,
426                   .read                 = transport->kern->read,
427                   .write                = transport->kern->write,
428                   .add_address          = transport->user->add_address,
429                   .delete_address       = transport->user->delete_address,
430                   .set_mtu              = transport->user->set_mtu,
431                   .user                 = { save } });
432
433         init_timer(&lp->tl);
434         spin_lock_init(&lp->lock);
435         lp->tl.function = uml_net_user_timer_expire;
436         memcpy(lp->mac, device->mac, sizeof(lp->mac));
437
438         if ((transport->user->init != NULL) &&
439             ((*transport->user->init)(&lp->user, dev) != 0))
440                 goto out_unregister;
441
442         set_ether_mac(dev, device->mac);
443         dev->mtu = transport->user->max_packet;
444         dev->open = uml_net_open;
445         dev->hard_start_xmit = uml_net_start_xmit;
446         dev->stop = uml_net_close;
447         dev->get_stats = uml_net_get_stats;
448         dev->set_multicast_list = uml_net_set_multicast_list;
449         dev->tx_timeout = uml_net_tx_timeout;
450         dev->set_mac_address = uml_net_set_mac;
451         dev->change_mtu = uml_net_change_mtu;
452         dev->ethtool_ops = &uml_net_ethtool_ops;
453         dev->watchdog_timeo = (HZ >> 1);
454         dev->irq = UM_ETH_IRQ;
455
456         rtnl_lock();
457         err = register_netdevice(dev);
458         rtnl_unlock();
459         if (err)
460                 goto out_undo_user_init;
461
462         spin_lock(&devices_lock);
463         list_add(&device->list, &devices);
464         spin_unlock(&devices_lock);
465
466         return;
467
468 out_undo_user_init:
469         if (transport->user->init != NULL)
470                 (*transport->user->remove)(&lp->user);
471 out_unregister:
472         platform_device_unregister(&device->pdev);
473 out_free_netdev:
474         free_netdev(dev);
475 out_free_device: ;
476         kfree(device);
477 }
478
479 static struct uml_net *find_device(int n)
480 {
481         struct uml_net *device;
482         struct list_head *ele;
483
484         spin_lock(&devices_lock);
485         list_for_each(ele, &devices){
486                 device = list_entry(ele, struct uml_net, list);
487                 if(device->index == n)
488                         goto out;
489         }
490         device = NULL;
491  out:
492         spin_unlock(&devices_lock);
493         return device;
494 }
495
496 static int eth_parse(char *str, int *index_out, char **str_out,
497                      char **error_out)
498 {
499         char *end;
500         int n, err = -EINVAL;;
501
502         n = simple_strtoul(str, &end, 0);
503         if(end == str){
504                 *error_out = "Bad device number";
505                 return err;
506         }
507
508         str = end;
509         if(*str != '='){
510                 *error_out = "Expected '=' after device number";
511                 return err;
512         }
513
514         str++;
515         if(find_device(n)){
516                 *error_out = "Device already configured";
517                 return err;
518         }
519
520         *index_out = n;
521         *str_out = str;
522         return 0;
523 }
524
525 struct eth_init {
526         struct list_head list;
527         char *init;
528         int index;
529 };
530
531 static DEFINE_SPINLOCK(transports_lock);
532 static LIST_HEAD(transports);
533
534 /* Filled in during early boot */
535 static LIST_HEAD(eth_cmd_line);
536
537 static int check_transport(struct transport *transport, char *eth, int n,
538                            void **init_out, char **mac_out)
539 {
540         int len;
541
542         len = strlen(transport->name);
543         if(strncmp(eth, transport->name, len))
544                 return 0;
545
546         eth += len;
547         if(*eth == ',')
548                 eth++;
549         else if(*eth != '\0')
550                 return 0;
551
552         *init_out = kmalloc(transport->setup_size, GFP_KERNEL);
553         if(*init_out == NULL)
554                 return 1;
555
556         if(!transport->setup(eth, mac_out, *init_out)){
557                 kfree(*init_out);
558                 *init_out = NULL;
559         }
560         return 1;
561 }
562
563 void register_transport(struct transport *new)
564 {
565         struct list_head *ele, *next;
566         struct eth_init *eth;
567         void *init;
568         char *mac = NULL;
569         int match;
570
571         spin_lock(&transports_lock);
572         BUG_ON(!list_empty(&new->list));
573         list_add(&new->list, &transports);
574         spin_unlock(&transports_lock);
575
576         list_for_each_safe(ele, next, &eth_cmd_line){
577                 eth = list_entry(ele, struct eth_init, list);
578                 match = check_transport(new, eth->init, eth->index, &init,
579                                         &mac);
580                 if(!match)
581                         continue;
582                 else if(init != NULL){
583                         eth_configure(eth->index, init, mac, new);
584                         kfree(init);
585                 }
586                 list_del(&eth->list);
587         }
588 }
589
590 static int eth_setup_common(char *str, int index)
591 {
592         struct list_head *ele;
593         struct transport *transport;
594         void *init;
595         char *mac = NULL;
596         int found = 0;
597
598         spin_lock(&transports_lock);
599         list_for_each(ele, &transports){
600                 transport = list_entry(ele, struct transport, list);
601                 if(!check_transport(transport, str, index, &init, &mac))
602                         continue;
603                 if(init != NULL){
604                         eth_configure(index, init, mac, transport);
605                         kfree(init);
606                 }
607                 found = 1;
608                 break;
609         }
610
611         spin_unlock(&transports_lock);
612         return found;
613 }
614
615 static int eth_setup(char *str)
616 {
617         struct eth_init *new;
618         char *error;
619         int n, err;
620
621         err = eth_parse(str, &n, &str, &error);
622         if(err){
623                 printk(KERN_ERR "eth_setup - Couldn't parse '%s' : %s\n",
624                        str, error);
625                 return 1;
626         }
627
628         new = alloc_bootmem(sizeof(*new));
629         if (new == NULL){
630                 printk("eth_init : alloc_bootmem failed\n");
631                 return 1;
632         }
633
634         INIT_LIST_HEAD(&new->list);
635         new->index = n;
636         new->init = str;
637
638         list_add_tail(&new->list, &eth_cmd_line);
639         return 1;
640 }
641
642 __setup("eth", eth_setup);
643 __uml_help(eth_setup,
644 "eth[0-9]+=<transport>,<options>\n"
645 "    Configure a network device.\n\n"
646 );
647
648 static int net_config(char *str, char **error_out)
649 {
650         int n, err;
651
652         err = eth_parse(str, &n, &str, error_out);
653         if(err)
654                 return err;
655
656         /* This string is broken up and the pieces used by the underlying
657          * driver.  So, it is freed only if eth_setup_common fails.
658          */
659         str = kstrdup(str, GFP_KERNEL);
660         if(str == NULL){
661                 *error_out = "net_config failed to strdup string";
662                 return -ENOMEM;
663         }
664         err = !eth_setup_common(str, n);
665         if(err)
666                 kfree(str);
667         return(err);
668 }
669
670 static int net_id(char **str, int *start_out, int *end_out)
671 {
672         char *end;
673         int n;
674
675         n = simple_strtoul(*str, &end, 0);
676         if((*end != '\0') || (end == *str))
677                 return -1;
678
679         *start_out = n;
680         *end_out = n;
681         *str = end;
682         return n;
683 }
684
685 static int net_remove(int n, char **error_out)
686 {
687         struct uml_net *device;
688         struct net_device *dev;
689         struct uml_net_private *lp;
690
691         device = find_device(n);
692         if(device == NULL)
693                 return -ENODEV;
694
695         dev = device->dev;
696         lp = dev->priv;
697         if(lp->fd > 0)
698                 return -EBUSY;
699         if(lp->remove != NULL) (*lp->remove)(&lp->user);
700         unregister_netdev(dev);
701         platform_device_unregister(&device->pdev);
702
703         list_del(&device->list);
704         kfree(device);
705         free_netdev(dev);
706         return 0;
707 }
708
709 static struct mc_device net_mc = {
710         .list           = LIST_HEAD_INIT(net_mc.list),
711         .name           = "eth",
712         .config         = net_config,
713         .get_config     = NULL,
714         .id             = net_id,
715         .remove         = net_remove,
716 };
717
718 static int uml_inetaddr_event(struct notifier_block *this, unsigned long event,
719                               void *ptr)
720 {
721         struct in_ifaddr *ifa = ptr;
722         struct net_device *dev = ifa->ifa_dev->dev;
723         struct uml_net_private *lp;
724         void (*proc)(unsigned char *, unsigned char *, void *);
725         unsigned char addr_buf[4], netmask_buf[4];
726
727         if(dev->open != uml_net_open)
728                 return NOTIFY_DONE;
729
730         lp = dev->priv;
731
732         proc = NULL;
733         switch (event){
734         case NETDEV_UP:
735                 proc = lp->add_address;
736                 break;
737         case NETDEV_DOWN:
738                 proc = lp->delete_address;
739                 break;
740         }
741         if(proc != NULL){
742                 memcpy(addr_buf, &ifa->ifa_address, sizeof(addr_buf));
743                 memcpy(netmask_buf, &ifa->ifa_mask, sizeof(netmask_buf));
744                 (*proc)(addr_buf, netmask_buf, &lp->user);
745         }
746         return NOTIFY_DONE;
747 }
748
749 /* uml_net_init shouldn't be called twice on two CPUs at the same time */
750 struct notifier_block uml_inetaddr_notifier = {
751         .notifier_call          = uml_inetaddr_event,
752 };
753
754 static int uml_net_init(void)
755 {
756         struct list_head *ele;
757         struct uml_net_private *lp;
758         struct in_device *ip;
759         struct in_ifaddr *in;
760
761         mconsole_register_dev(&net_mc);
762         register_inetaddr_notifier(&uml_inetaddr_notifier);
763
764         /* Devices may have been opened already, so the uml_inetaddr_notifier
765          * didn't get a chance to run for them.  This fakes it so that
766          * addresses which have already been set up get handled properly.
767          */
768         spin_lock(&opened_lock);
769         list_for_each(ele, &opened){
770                 lp = list_entry(ele, struct uml_net_private, list);
771                 ip = lp->dev->ip_ptr;
772                 if(ip == NULL)
773                         continue;
774                 in = ip->ifa_list;
775                 while(in != NULL){
776                         uml_inetaddr_event(NULL, NETDEV_UP, in);
777                         in = in->ifa_next;
778                 }
779         }
780         spin_unlock(&opened_lock);
781
782         return 0;
783 }
784
785 __initcall(uml_net_init);
786
787 static void close_devices(void)
788 {
789         struct list_head *ele;
790         struct uml_net_private *lp;
791
792         spin_lock(&opened_lock);
793         list_for_each(ele, &opened){
794                 lp = list_entry(ele, struct uml_net_private, list);
795                 free_irq(lp->dev->irq, lp->dev);
796                 if((lp->close != NULL) && (lp->fd >= 0))
797                         (*lp->close)(lp->fd, &lp->user);
798                 if(lp->remove != NULL)
799                         (*lp->remove)(&lp->user);
800         }
801         spin_unlock(&opened_lock);
802 }
803
804 __uml_exitcall(close_devices);
805
806 struct sk_buff *ether_adjust_skb(struct sk_buff *skb, int extra)
807 {
808         if((skb != NULL) && (skb_tailroom(skb) < extra)){
809                 struct sk_buff *skb2;
810
811                 skb2 = skb_copy_expand(skb, 0, extra, GFP_ATOMIC);
812                 dev_kfree_skb(skb);
813                 skb = skb2;
814         }
815         if(skb != NULL) skb_put(skb, extra);
816         return(skb);
817 }
818
819 void iter_addresses(void *d, void (*cb)(unsigned char *, unsigned char *,
820                                         void *),
821                     void *arg)
822 {
823         struct net_device *dev = d;
824         struct in_device *ip = dev->ip_ptr;
825         struct in_ifaddr *in;
826         unsigned char address[4], netmask[4];
827
828         if(ip == NULL) return;
829         in = ip->ifa_list;
830         while(in != NULL){
831                 memcpy(address, &in->ifa_address, sizeof(address));
832                 memcpy(netmask, &in->ifa_mask, sizeof(netmask));
833                 (*cb)(address, netmask, arg);
834                 in = in->ifa_next;
835         }
836 }
837
838 int dev_netmask(void *d, void *m)
839 {
840         struct net_device *dev = d;
841         struct in_device *ip = dev->ip_ptr;
842         struct in_ifaddr *in;
843         __be32 *mask_out = m;
844
845         if(ip == NULL)
846                 return(1);
847
848         in = ip->ifa_list;
849         if(in == NULL)
850                 return(1);
851
852         *mask_out = in->ifa_mask;
853         return(0);
854 }
855
856 void *get_output_buffer(int *len_out)
857 {
858         void *ret;
859
860         ret = (void *) __get_free_pages(GFP_KERNEL, 0);
861         if(ret) *len_out = PAGE_SIZE;
862         else *len_out = 0;
863         return ret;
864 }
865
866 void free_output_buffer(void *buffer)
867 {
868         free_pages((unsigned long) buffer, 0);
869 }
870
871 int tap_setup_common(char *str, char *type, char **dev_name, char **mac_out,
872                      char **gate_addr)
873 {
874         char *remain;
875
876         remain = split_if_spec(str, dev_name, mac_out, gate_addr, NULL);
877         if(remain != NULL){
878                 printk("tap_setup_common - Extra garbage on specification : "
879                        "'%s'\n", remain);
880                 return(1);
881         }
882
883         return(0);
884 }
885
886 unsigned short eth_protocol(struct sk_buff *skb)
887 {
888         return(eth_type_trans(skb, skb->dev));
889 }