[DRIVER MODEL] Convert platform drivers to use struct platform_driver
[deliverable/linux.git] / arch / um / drivers / net_kern.c
CommitLineData
1da177e4
LT
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/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"
d052d1be 23#include "linux/platform_device.h"
1da177e4
LT
24#include "asm/uaccess.h"
25#include "user_util.h"
26#include "kern_util.h"
27#include "net_kern.h"
28#include "net_user.h"
29#include "mconsole_kern.h"
30#include "init.h"
31#include "irq_user.h"
32#include "irq_kern.h"
33
34#define DRIVER_NAME "uml-netdev"
35
36static DEFINE_SPINLOCK(opened_lock);
37LIST_HEAD(opened);
38
39static int uml_net_rx(struct net_device *dev)
40{
41 struct uml_net_private *lp = dev->priv;
42 int pkt_len;
43 struct sk_buff *skb;
44
45 /* If we can't allocate memory, try again next round. */
46 skb = dev_alloc_skb(dev->mtu);
47 if (skb == NULL) {
48 lp->stats.rx_dropped++;
49 return 0;
50 }
51
52 skb->dev = dev;
53 skb_put(skb, dev->mtu);
54 skb->mac.raw = skb->data;
55 pkt_len = (*lp->read)(lp->fd, &skb, lp);
56
57 if (pkt_len > 0) {
58 skb_trim(skb, pkt_len);
59 skb->protocol = (*lp->protocol)(skb);
60 netif_rx(skb);
61
62 lp->stats.rx_bytes += skb->len;
63 lp->stats.rx_packets++;
64 return pkt_len;
65 }
66
67 kfree_skb(skb);
68 return pkt_len;
69}
70
71irqreturn_t uml_net_interrupt(int irq, void *dev_id, struct pt_regs *regs)
72{
73 struct net_device *dev = dev_id;
74 struct uml_net_private *lp = dev->priv;
75 int err;
76
77 if(!netif_running(dev))
78 return(IRQ_NONE);
79
80 spin_lock(&lp->lock);
81 while((err = uml_net_rx(dev)) > 0) ;
82 if(err < 0) {
83 printk(KERN_ERR
84 "Device '%s' read returned %d, shutting it down\n",
85 dev->name, err);
86 dev_close(dev);
87 goto out;
88 }
89 reactivate_fd(lp->fd, UM_ETH_IRQ);
90
91 out:
92 spin_unlock(&lp->lock);
93 return(IRQ_HANDLED);
94}
95
96static int uml_net_open(struct net_device *dev)
97{
98 struct uml_net_private *lp = dev->priv;
1da177e4
LT
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){
0e76422c 109 dev_ip_addr(dev, &lp->mac[2]);
1da177e4
LT
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
1da177e4
LT
149 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
3ae5eaec
RK
287static struct platform_driver uml_net_driver = {
288 .driver = {
289 .name = DRIVER_NAME,
290 },
1da177e4
LT
291};
292static int driver_registered;
293
294static int eth_configure(int n, void *init, char *mac,
295 struct transport *transport)
296{
297 struct uml_net *device;
298 struct net_device *dev;
299 struct uml_net_private *lp;
300 int save, err, size;
301
302 size = transport->private_size + sizeof(struct uml_net_private) +
303 sizeof(((struct uml_net_private *) 0)->user);
304
305 device = kmalloc(sizeof(*device), GFP_KERNEL);
306 if (device == NULL) {
307 printk(KERN_ERR "eth_configure failed to allocate uml_net\n");
308 return(1);
309 }
310
311 memset(device, 0, sizeof(*device));
312 INIT_LIST_HEAD(&device->list);
313 device->index = n;
314
315 spin_lock(&devices_lock);
316 list_add(&device->list, &devices);
317 spin_unlock(&devices_lock);
318
319 if (setup_etheraddr(mac, device->mac))
320 device->have_mac = 1;
321
322 printk(KERN_INFO "Netdevice %d ", n);
323 if (device->have_mac)
324 printk("(%02x:%02x:%02x:%02x:%02x:%02x) ",
325 device->mac[0], device->mac[1],
326 device->mac[2], device->mac[3],
327 device->mac[4], device->mac[5]);
328 printk(": ");
329 dev = alloc_etherdev(size);
330 if (dev == NULL) {
331 printk(KERN_ERR "eth_configure: failed to allocate device\n");
332 return 1;
333 }
334
335 /* sysfs register */
336 if (!driver_registered) {
3ae5eaec 337 platform_driver_register(&uml_net_driver);
1da177e4
LT
338 driver_registered = 1;
339 }
340 device->pdev.id = n;
341 device->pdev.name = DRIVER_NAME;
342 platform_device_register(&device->pdev);
343 SET_NETDEV_DEV(dev,&device->pdev.dev);
344
345 /* If this name ends up conflicting with an existing registered
346 * netdevice, that is OK, register_netdev{,ice}() will notice this
347 * and fail.
348 */
349 snprintf(dev->name, sizeof(dev->name), "eth%d", n);
350 device->dev = dev;
351
352 (*transport->kern->init)(dev, init);
353
354 dev->mtu = transport->user->max_packet;
355 dev->open = uml_net_open;
356 dev->hard_start_xmit = uml_net_start_xmit;
357 dev->stop = uml_net_close;
358 dev->get_stats = uml_net_get_stats;
359 dev->set_multicast_list = uml_net_set_multicast_list;
360 dev->tx_timeout = uml_net_tx_timeout;
361 dev->set_mac_address = uml_net_set_mac;
362 dev->change_mtu = uml_net_change_mtu;
363 dev->do_ioctl = uml_net_ioctl;
364 dev->watchdog_timeo = (HZ >> 1);
365 dev->irq = UM_ETH_IRQ;
366
367 rtnl_lock();
368 err = register_netdevice(dev);
369 rtnl_unlock();
370 if (err) {
371 device->dev = NULL;
372 /* XXX: should we call ->remove() here? */
373 free_netdev(dev);
374 return 1;
375 }
376 lp = dev->priv;
377
378 /* lp.user is the first four bytes of the transport data, which
379 * has already been initialized. This structure assignment will
380 * overwrite that, so we make sure that .user gets overwritten with
381 * what it already has.
382 */
383 save = lp->user[0];
384 *lp = ((struct uml_net_private)
385 { .list = LIST_HEAD_INIT(lp->list),
386 .dev = dev,
387 .fd = -1,
388 .mac = { 0xfe, 0xfd, 0x0, 0x0, 0x0, 0x0},
389 .have_mac = device->have_mac,
390 .protocol = transport->kern->protocol,
391 .open = transport->user->open,
392 .close = transport->user->close,
393 .remove = transport->user->remove,
394 .read = transport->kern->read,
395 .write = transport->kern->write,
396 .add_address = transport->user->add_address,
397 .delete_address = transport->user->delete_address,
398 .set_mtu = transport->user->set_mtu,
399 .user = { save } });
400
401 init_timer(&lp->tl);
402 spin_lock_init(&lp->lock);
403 lp->tl.function = uml_net_user_timer_expire;
404 if (lp->have_mac)
405 memcpy(lp->mac, device->mac, sizeof(lp->mac));
406
407 if (transport->user->init)
408 (*transport->user->init)(&lp->user, dev);
409
410 if (device->have_mac)
411 set_ether_mac(dev, device->mac);
412
413 spin_lock(&opened_lock);
414 list_add(&lp->list, &opened);
415 spin_unlock(&opened_lock);
416
417 return(0);
418}
419
420static struct uml_net *find_device(int n)
421{
422 struct uml_net *device;
423 struct list_head *ele;
424
425 spin_lock(&devices_lock);
426 list_for_each(ele, &devices){
427 device = list_entry(ele, struct uml_net, list);
428 if(device->index == n)
429 goto out;
430 }
431 device = NULL;
432 out:
433 spin_unlock(&devices_lock);
434 return(device);
435}
436
437static int eth_parse(char *str, int *index_out, char **str_out)
438{
439 char *end;
440 int n;
441
442 n = simple_strtoul(str, &end, 0);
443 if(end == str){
444 printk(KERN_ERR "eth_setup: Failed to parse '%s'\n", str);
445 return(1);
446 }
447 if(n < 0){
448 printk(KERN_ERR "eth_setup: device %d is negative\n", n);
449 return(1);
450 }
451 str = end;
452 if(*str != '='){
453 printk(KERN_ERR
454 "eth_setup: expected '=' after device number\n");
455 return(1);
456 }
457 str++;
458 if(find_device(n)){
459 printk(KERN_ERR "eth_setup: Device %d already configured\n",
460 n);
461 return(1);
462 }
463 if(index_out) *index_out = n;
464 *str_out = str;
465 return(0);
466}
467
468struct eth_init {
469 struct list_head list;
470 char *init;
471 int index;
472};
473
474/* Filled in at boot time. Will need locking if the transports become
475 * modular.
476 */
477struct list_head transports = LIST_HEAD_INIT(transports);
478
479/* Filled in during early boot */
480struct list_head eth_cmd_line = LIST_HEAD_INIT(eth_cmd_line);
481
482static int check_transport(struct transport *transport, char *eth, int n,
483 void **init_out, char **mac_out)
484{
485 int len;
486
487 len = strlen(transport->name);
488 if(strncmp(eth, transport->name, len))
489 return(0);
490
491 eth += len;
492 if(*eth == ',')
493 eth++;
494 else if(*eth != '\0')
495 return(0);
496
497 *init_out = kmalloc(transport->setup_size, GFP_KERNEL);
498 if(*init_out == NULL)
499 return(1);
500
501 if(!transport->setup(eth, mac_out, *init_out)){
502 kfree(*init_out);
503 *init_out = NULL;
504 }
505 return(1);
506}
507
508void register_transport(struct transport *new)
509{
510 struct list_head *ele, *next;
511 struct eth_init *eth;
512 void *init;
513 char *mac = NULL;
514 int match;
515
516 list_add(&new->list, &transports);
517
518 list_for_each_safe(ele, next, &eth_cmd_line){
519 eth = list_entry(ele, struct eth_init, list);
520 match = check_transport(new, eth->init, eth->index, &init,
521 &mac);
522 if(!match)
523 continue;
524 else if(init != NULL){
525 eth_configure(eth->index, init, mac, new);
526 kfree(init);
527 }
528 list_del(&eth->list);
529 }
530}
531
532static int eth_setup_common(char *str, int index)
533{
534 struct list_head *ele;
535 struct transport *transport;
536 void *init;
537 char *mac = NULL;
538
539 list_for_each(ele, &transports){
540 transport = list_entry(ele, struct transport, list);
541 if(!check_transport(transport, str, index, &init, &mac))
542 continue;
543 if(init != NULL){
544 eth_configure(index, init, mac, transport);
545 kfree(init);
546 }
547 return(1);
548 }
549 return(0);
550}
551
552static int eth_setup(char *str)
553{
554 struct eth_init *new;
555 int n, err;
556
557 err = eth_parse(str, &n, &str);
558 if(err) return(1);
559
560 new = alloc_bootmem(sizeof(new));
561 if (new == NULL){
562 printk("eth_init : alloc_bootmem failed\n");
563 return(1);
564 }
565
566 INIT_LIST_HEAD(&new->list);
567 new->index = n;
568 new->init = str;
569
570 list_add_tail(&new->list, &eth_cmd_line);
571 return(1);
572}
573
574__setup("eth", eth_setup);
575__uml_help(eth_setup,
576"eth[0-9]+=<transport>,<options>\n"
577" Configure a network device.\n\n"
578);
579
580#if 0
581static int eth_init(void)
582{
583 struct list_head *ele, *next;
584 struct eth_init *eth;
585
586 list_for_each_safe(ele, next, &eth_cmd_line){
587 eth = list_entry(ele, struct eth_init, list);
588
589 if(eth_setup_common(eth->init, eth->index))
590 list_del(&eth->list);
591 }
592
593 return(1);
594}
595__initcall(eth_init);
596#endif
597
598static int net_config(char *str)
599{
600 int n, err;
601
602 err = eth_parse(str, &n, &str);
603 if(err) return(err);
604
605 str = uml_strdup(str);
606 if(str == NULL){
607 printk(KERN_ERR "net_config failed to strdup string\n");
608 return(-1);
609 }
610 err = !eth_setup_common(str, n);
611 if(err)
612 kfree(str);
613 return(err);
614}
615
29d56cfe
JD
616static int net_id(char **str, int *start_out, int *end_out)
617{
618 char *end;
619 int n;
620
621 n = simple_strtoul(*str, &end, 0);
622 if((*end != '\0') || (end == *str))
623 return -1;
624
625 *start_out = n;
626 *end_out = n;
627 *str = end;
628 return n;
629}
630
631static int net_remove(int n)
1da177e4
LT
632{
633 struct uml_net *device;
634 struct net_device *dev;
635 struct uml_net_private *lp;
1da177e4
LT
636
637 device = find_device(n);
638 if(device == NULL)
29d56cfe 639 return -ENODEV;
1da177e4
LT
640
641 dev = device->dev;
642 lp = dev->priv;
29d56cfe
JD
643 if(lp->fd > 0)
644 return -EBUSY;
1da177e4
LT
645 if(lp->remove != NULL) (*lp->remove)(&lp->user);
646 unregister_netdev(dev);
647 platform_device_unregister(&device->pdev);
648
649 list_del(&device->list);
650 kfree(device);
651 free_netdev(dev);
29d56cfe 652 return 0;
1da177e4
LT
653}
654
655static struct mc_device net_mc = {
656 .name = "eth",
657 .config = net_config,
658 .get_config = NULL,
29d56cfe 659 .id = net_id,
1da177e4
LT
660 .remove = net_remove,
661};
662
663static int uml_inetaddr_event(struct notifier_block *this, unsigned long event,
664 void *ptr)
665{
666 struct in_ifaddr *ifa = ptr;
1da177e4
LT
667 struct net_device *dev = ifa->ifa_dev->dev;
668 struct uml_net_private *lp;
669 void (*proc)(unsigned char *, unsigned char *, void *);
670 unsigned char addr_buf[4], netmask_buf[4];
671
672 if(dev->open != uml_net_open) return(NOTIFY_DONE);
673
674 lp = dev->priv;
675
676 proc = NULL;
677 switch (event){
678 case NETDEV_UP:
679 proc = lp->add_address;
680 break;
681 case NETDEV_DOWN:
682 proc = lp->delete_address;
683 break;
684 }
685 if(proc != NULL){
0e76422c
BS
686 memcpy(addr_buf, &ifa->ifa_address, sizeof(addr_buf));
687 memcpy(netmask_buf, &ifa->ifa_mask, sizeof(netmask_buf));
1da177e4
LT
688 (*proc)(addr_buf, netmask_buf, &lp->user);
689 }
690 return(NOTIFY_DONE);
691}
692
693struct notifier_block uml_inetaddr_notifier = {
694 .notifier_call = uml_inetaddr_event,
695};
696
697static int uml_net_init(void)
698{
699 struct list_head *ele;
700 struct uml_net_private *lp;
701 struct in_device *ip;
702 struct in_ifaddr *in;
703
704 mconsole_register_dev(&net_mc);
705 register_inetaddr_notifier(&uml_inetaddr_notifier);
706
707 /* Devices may have been opened already, so the uml_inetaddr_notifier
708 * didn't get a chance to run for them. This fakes it so that
709 * addresses which have already been set up get handled properly.
710 */
711 list_for_each(ele, &opened){
712 lp = list_entry(ele, struct uml_net_private, list);
713 ip = lp->dev->ip_ptr;
714 if(ip == NULL) continue;
715 in = ip->ifa_list;
716 while(in != NULL){
717 uml_inetaddr_event(NULL, NETDEV_UP, in);
718 in = in->ifa_next;
719 }
720 }
721
722 return(0);
723}
724
725__initcall(uml_net_init);
726
727static void close_devices(void)
728{
729 struct list_head *ele;
730 struct uml_net_private *lp;
731
732 list_for_each(ele, &opened){
733 lp = list_entry(ele, struct uml_net_private, list);
734 if((lp->close != NULL) && (lp->fd >= 0))
735 (*lp->close)(lp->fd, &lp->user);
736 if(lp->remove != NULL) (*lp->remove)(&lp->user);
737 }
738}
739
740__uml_exitcall(close_devices);
741
742int setup_etheraddr(char *str, unsigned char *addr)
743{
744 char *end;
745 int i;
746
747 if(str == NULL)
748 return(0);
749 for(i=0;i<6;i++){
750 addr[i] = simple_strtoul(str, &end, 16);
751 if((end == str) ||
752 ((*end != ':') && (*end != ',') && (*end != '\0'))){
753 printk(KERN_ERR
754 "setup_etheraddr: failed to parse '%s' "
755 "as an ethernet address\n", str);
756 return(0);
757 }
758 str = end + 1;
759 }
760 if(addr[0] & 1){
761 printk(KERN_ERR
762 "Attempt to assign a broadcast ethernet address to a "
763 "device disallowed\n");
764 return(0);
765 }
766 return(1);
767}
768
0e76422c 769void dev_ip_addr(void *d, unsigned char *bin_buf)
1da177e4
LT
770{
771 struct net_device *dev = d;
772 struct in_device *ip = dev->ip_ptr;
773 struct in_ifaddr *in;
1da177e4
LT
774
775 if((ip == NULL) || ((in = ip->ifa_list) == NULL)){
776 printk(KERN_WARNING "dev_ip_addr - device not assigned an "
777 "IP address\n");
778 return;
779 }
0e76422c 780 memcpy(bin_buf, &in->ifa_address, sizeof(in->ifa_address));
1da177e4
LT
781}
782
783void set_ether_mac(void *d, unsigned char *addr)
784{
785 struct net_device *dev = d;
786
787 memcpy(dev->dev_addr, addr, ETH_ALEN);
788}
789
790struct sk_buff *ether_adjust_skb(struct sk_buff *skb, int extra)
791{
792 if((skb != NULL) && (skb_tailroom(skb) < extra)){
793 struct sk_buff *skb2;
794
795 skb2 = skb_copy_expand(skb, 0, extra, GFP_ATOMIC);
796 dev_kfree_skb(skb);
797 skb = skb2;
798 }
799 if(skb != NULL) skb_put(skb, extra);
800 return(skb);
801}
802
803void iter_addresses(void *d, void (*cb)(unsigned char *, unsigned char *,
804 void *),
805 void *arg)
806{
807 struct net_device *dev = d;
808 struct in_device *ip = dev->ip_ptr;
809 struct in_ifaddr *in;
810 unsigned char address[4], netmask[4];
811
812 if(ip == NULL) return;
813 in = ip->ifa_list;
814 while(in != NULL){
0e76422c
BS
815 memcpy(address, &in->ifa_address, sizeof(address));
816 memcpy(netmask, &in->ifa_mask, sizeof(netmask));
1da177e4
LT
817 (*cb)(address, netmask, arg);
818 in = in->ifa_next;
819 }
820}
821
822int dev_netmask(void *d, void *m)
823{
824 struct net_device *dev = d;
825 struct in_device *ip = dev->ip_ptr;
826 struct in_ifaddr *in;
827 __u32 *mask_out = m;
828
829 if(ip == NULL)
830 return(1);
831
832 in = ip->ifa_list;
833 if(in == NULL)
834 return(1);
835
836 *mask_out = in->ifa_mask;
837 return(0);
838}
839
840void *get_output_buffer(int *len_out)
841{
842 void *ret;
843
844 ret = (void *) __get_free_pages(GFP_KERNEL, 0);
845 if(ret) *len_out = PAGE_SIZE;
846 else *len_out = 0;
847 return(ret);
848}
849
850void free_output_buffer(void *buffer)
851{
852 free_pages((unsigned long) buffer, 0);
853}
854
855int tap_setup_common(char *str, char *type, char **dev_name, char **mac_out,
856 char **gate_addr)
857{
858 char *remain;
859
860 remain = split_if_spec(str, dev_name, mac_out, gate_addr, NULL);
861 if(remain != NULL){
862 printk("tap_setup_common - Extra garbage on specification : "
863 "'%s'\n", remain);
864 return(1);
865 }
866
867 return(0);
868}
869
870unsigned short eth_protocol(struct sk_buff *skb)
871{
872 return(eth_type_trans(skb, skb->dev));
873}
874
875/*
876 * Overrides for Emacs so that we follow Linus's tabbing style.
877 * Emacs will notice this stuff at the end of the file and automatically
878 * adjust the settings for this buffer only. This must remain at the end
879 * of the file.
880 * ---------------------------------------------------------------------------
881 * Local variables:
882 * c-file-style: "linux"
883 * End:
884 */
This page took 0.117285 seconds and 5 git commands to generate.