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