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.
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"
27 #include "mconsole_kern.h"
32 static inline void set_ether_mac(struct net_device *dev, unsigned char *addr)
34 memcpy(dev->dev_addr, addr, ETH_ALEN);
37 #define DRIVER_NAME "uml-netdev"
39 static DEFINE_SPINLOCK(opened_lock);
40 static LIST_HEAD(opened);
42 static int uml_net_rx(struct net_device *dev)
44 struct uml_net_private *lp = dev->priv;
48 /* If we can't allocate memory, try again next round. */
49 skb = dev_alloc_skb(dev->mtu);
51 lp->stats.rx_dropped++;
56 skb_put(skb, dev->mtu);
57 skb_reset_mac_header(skb);
58 pkt_len = (*lp->read)(lp->fd, &skb, lp);
61 skb_trim(skb, pkt_len);
62 skb->protocol = (*lp->protocol)(skb);
65 lp->stats.rx_bytes += skb->len;
66 lp->stats.rx_packets++;
74 static void uml_dev_close(struct work_struct *work)
76 struct uml_net_private *lp =
77 container_of(work, struct uml_net_private, work);
81 irqreturn_t uml_net_interrupt(int irq, void *dev_id)
83 struct net_device *dev = dev_id;
84 struct uml_net_private *lp = dev->priv;
87 if(!netif_running(dev))
91 while((err = uml_net_rx(dev)) > 0) ;
94 "Device '%s' read returned %d, shutting it down\n",
96 /* dev_close can't be called in interrupt context, and takes
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);
106 reactivate_fd(lp->fd, UM_ETH_IRQ);
109 spin_unlock(&lp->lock);
113 static int uml_net_open(struct net_device *dev)
115 struct uml_net_private *lp = dev->priv;
123 lp->fd = (*lp->open)(&lp->user);
129 err = um_request_irq(dev->irq, lp->fd, IRQ_READ, uml_net_interrupt,
130 IRQF_DISABLED | IRQF_SHARED, dev->name, dev);
132 printk(KERN_ERR "uml_net_open: failed to get irq(%d)\n", err);
137 lp->tl.data = (unsigned long) &lp->user;
138 netif_start_queue(dev);
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.
144 while((err = uml_net_rx(dev)) > 0) ;
146 spin_lock(&opened_lock);
147 list_add(&lp->list, &opened);
148 spin_unlock(&opened_lock);
152 if(lp->close != NULL) (*lp->close)(lp->fd, &lp->user);
158 static int uml_net_close(struct net_device *dev)
160 struct uml_net_private *lp = dev->priv;
162 netif_stop_queue(dev);
164 free_irq(dev->irq, dev);
165 if(lp->close != NULL)
166 (*lp->close)(lp->fd, &lp->user);
169 spin_lock(&opened_lock);
171 spin_unlock(&opened_lock);
176 static int uml_net_start_xmit(struct sk_buff *skb, struct net_device *dev)
178 struct uml_net_private *lp = dev->priv;
182 netif_stop_queue(dev);
184 spin_lock_irqsave(&lp->lock, flags);
186 len = (*lp->write)(lp->fd, &skb, lp);
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);
194 /* this is normally done in the interrupt when tx finishes */
195 netif_wake_queue(dev);
198 netif_start_queue(dev);
199 lp->stats.tx_dropped++;
202 netif_start_queue(dev);
203 printk(KERN_ERR "uml_net_start_xmit: failed(%d)\n", len);
206 spin_unlock_irqrestore(&lp->lock, flags);
213 static struct net_device_stats *uml_net_get_stats(struct net_device *dev)
215 struct uml_net_private *lp = dev->priv;
219 static void uml_net_set_multicast_list(struct net_device *dev)
221 if (dev->flags & IFF_PROMISC) return;
222 else if (dev->mc_count) dev->flags |= IFF_ALLMULTI;
223 else dev->flags &= ~IFF_ALLMULTI;
226 static void uml_net_tx_timeout(struct net_device *dev)
228 dev->trans_start = jiffies;
229 netif_wake_queue(dev);
232 static int uml_net_set_mac(struct net_device *dev, void *addr)
234 struct uml_net_private *lp = dev->priv;
235 struct sockaddr *hwaddr = addr;
237 spin_lock_irq(&lp->lock);
238 set_ether_mac(dev, hwaddr->sa_data);
239 spin_unlock_irq(&lp->lock);
244 static int uml_net_change_mtu(struct net_device *dev, int new_mtu)
246 struct uml_net_private *lp = dev->priv;
249 spin_lock_irq(&lp->lock);
251 new_mtu = (*lp->set_mtu)(new_mtu, &lp->user);
260 spin_unlock_irq(&lp->lock);
264 static void uml_net_get_drvinfo(struct net_device *dev,
265 struct ethtool_drvinfo *info)
267 strcpy(info->driver, DRIVER_NAME);
268 strcpy(info->version, "42");
271 static struct ethtool_ops uml_net_ethtool_ops = {
272 .get_drvinfo = uml_net_get_drvinfo,
273 .get_link = ethtool_op_get_link,
276 void uml_net_user_timer_expire(unsigned long _conn)
279 struct connection *conn = (struct connection *)_conn;
281 dprintk(KERN_INFO "uml_net_user_timer_expire [%p]\n", conn);
286 static void setup_etheraddr(char *str, unsigned char *addr)
295 addr[i] = simple_strtoul(str, &end, 16);
297 ((*end != ':') && (*end != ',') && (*end != '\0'))){
299 "setup_etheraddr: failed to parse '%s' "
300 "as an ethernet address\n", str);
307 "Attempt to assign a broadcast ethernet address to a "
308 "device disallowed\n");
314 random_ether_addr(addr);
317 static DEFINE_SPINLOCK(devices_lock);
318 static LIST_HEAD(devices);
320 static struct platform_driver uml_net_driver = {
325 static int driver_registered;
327 static void eth_configure(int n, void *init, char *mac,
328 struct transport *transport)
330 struct uml_net *device;
331 struct net_device *dev;
332 struct uml_net_private *lp;
335 size = transport->private_size + sizeof(struct uml_net_private) +
336 sizeof(((struct uml_net_private *) 0)->user);
338 device = kzalloc(sizeof(*device), GFP_KERNEL);
339 if (device == NULL) {
340 printk(KERN_ERR "eth_configure failed to allocate uml_net\n");
344 INIT_LIST_HEAD(&device->list);
347 setup_etheraddr(mac, device->mac);
349 printk(KERN_INFO "Netdevice %d ", n);
350 printk("(%02x:%02x:%02x:%02x:%02x:%02x) ",
351 device->mac[0], device->mac[1],
352 device->mac[2], device->mac[3],
353 device->mac[4], device->mac[5]);
355 dev = alloc_etherdev(size);
357 printk(KERN_ERR "eth_configure: failed to allocate device\n");
358 goto out_free_device;
362 /* This points to the transport private data. It's still clear, but we
363 * must memset it to 0 *now*. Let's help the drivers. */
365 INIT_WORK(&lp->work, uml_dev_close);
368 if (!driver_registered) {
369 platform_driver_register(¨_net_driver);
370 driver_registered = 1;
373 device->pdev.name = DRIVER_NAME;
374 if(platform_device_register(&device->pdev))
375 goto out_free_netdev;
376 SET_NETDEV_DEV(dev,&device->pdev.dev);
378 /* If this name ends up conflicting with an existing registered
379 * netdevice, that is OK, register_netdev{,ice}() will notice this
382 snprintf(dev->name, sizeof(dev->name), "eth%d", n);
386 * These just fill in a data structure, so there's no failure
387 * to be worried about.
389 (*transport->kern->init)(dev, init);
391 /* lp.user is the first four bytes of the transport data, which
392 * has already been initialized. This structure assignment will
393 * overwrite that, so we make sure that .user gets overwritten with
394 * what it already has.
397 *lp = ((struct uml_net_private)
398 { .list = LIST_HEAD_INIT(lp->list),
401 .mac = { 0xfe, 0xfd, 0x0, 0x0, 0x0, 0x0},
402 .protocol = transport->kern->protocol,
403 .open = transport->user->open,
404 .close = transport->user->close,
405 .remove = transport->user->remove,
406 .read = transport->kern->read,
407 .write = transport->kern->write,
408 .add_address = transport->user->add_address,
409 .delete_address = transport->user->delete_address,
410 .set_mtu = transport->user->set_mtu,
414 spin_lock_init(&lp->lock);
415 lp->tl.function = uml_net_user_timer_expire;
416 memcpy(lp->mac, device->mac, sizeof(lp->mac));
418 if ((transport->user->init != NULL) &&
419 ((*transport->user->init)(&lp->user, dev) != 0))
422 set_ether_mac(dev, device->mac);
423 dev->mtu = transport->user->max_packet;
424 dev->open = uml_net_open;
425 dev->hard_start_xmit = uml_net_start_xmit;
426 dev->stop = uml_net_close;
427 dev->get_stats = uml_net_get_stats;
428 dev->set_multicast_list = uml_net_set_multicast_list;
429 dev->tx_timeout = uml_net_tx_timeout;
430 dev->set_mac_address = uml_net_set_mac;
431 dev->change_mtu = uml_net_change_mtu;
432 dev->ethtool_ops = ¨_net_ethtool_ops;
433 dev->watchdog_timeo = (HZ >> 1);
434 dev->irq = UM_ETH_IRQ;
437 err = register_netdevice(dev);
440 goto out_undo_user_init;
442 spin_lock(&devices_lock);
443 list_add(&device->list, &devices);
444 spin_unlock(&devices_lock);
449 if (transport->user->init != NULL)
450 (*transport->user->remove)(&lp->user);
452 platform_device_unregister(&device->pdev);
459 static struct uml_net *find_device(int n)
461 struct uml_net *device;
462 struct list_head *ele;
464 spin_lock(&devices_lock);
465 list_for_each(ele, &devices){
466 device = list_entry(ele, struct uml_net, list);
467 if(device->index == n)
472 spin_unlock(&devices_lock);
476 static int eth_parse(char *str, int *index_out, char **str_out,
480 int n, err = -EINVAL;;
482 n = simple_strtoul(str, &end, 0);
484 *error_out = "Bad device number";
490 *error_out = "Expected '=' after device number";
496 *error_out = "Device already configured";
506 struct list_head list;
511 static DEFINE_SPINLOCK(transports_lock);
512 static LIST_HEAD(transports);
514 /* Filled in during early boot */
515 static LIST_HEAD(eth_cmd_line);
517 static int check_transport(struct transport *transport, char *eth, int n,
518 void **init_out, char **mac_out)
522 len = strlen(transport->name);
523 if(strncmp(eth, transport->name, len))
529 else if(*eth != '\0')
532 *init_out = kmalloc(transport->setup_size, GFP_KERNEL);
533 if(*init_out == NULL)
536 if(!transport->setup(eth, mac_out, *init_out)){
543 void register_transport(struct transport *new)
545 struct list_head *ele, *next;
546 struct eth_init *eth;
551 spin_lock(&transports_lock);
552 BUG_ON(!list_empty(&new->list));
553 list_add(&new->list, &transports);
554 spin_unlock(&transports_lock);
556 list_for_each_safe(ele, next, ð_cmd_line){
557 eth = list_entry(ele, struct eth_init, list);
558 match = check_transport(new, eth->init, eth->index, &init,
562 else if(init != NULL){
563 eth_configure(eth->index, init, mac, new);
566 list_del(ð->list);
570 static int eth_setup_common(char *str, int index)
572 struct list_head *ele;
573 struct transport *transport;
578 spin_lock(&transports_lock);
579 list_for_each(ele, &transports){
580 transport = list_entry(ele, struct transport, list);
581 if(!check_transport(transport, str, index, &init, &mac))
584 eth_configure(index, init, mac, transport);
591 spin_unlock(&transports_lock);
595 static int eth_setup(char *str)
597 struct eth_init *new;
601 err = eth_parse(str, &n, &str, &error);
603 printk(KERN_ERR "eth_setup - Couldn't parse '%s' : %s\n",
608 new = alloc_bootmem(sizeof(*new));
610 printk("eth_init : alloc_bootmem failed\n");
614 INIT_LIST_HEAD(&new->list);
618 list_add_tail(&new->list, ð_cmd_line);
622 __setup("eth", eth_setup);
623 __uml_help(eth_setup,
624 "eth[0-9]+=<transport>,<options>\n"
625 " Configure a network device.\n\n"
628 static int net_config(char *str, char **error_out)
632 err = eth_parse(str, &n, &str, error_out);
636 /* This string is broken up and the pieces used by the underlying
637 * driver. So, it is freed only if eth_setup_common fails.
639 str = kstrdup(str, GFP_KERNEL);
641 *error_out = "net_config failed to strdup string";
644 err = !eth_setup_common(str, n);
650 static int net_id(char **str, int *start_out, int *end_out)
655 n = simple_strtoul(*str, &end, 0);
656 if((*end != '\0') || (end == *str))
665 static int net_remove(int n, char **error_out)
667 struct uml_net *device;
668 struct net_device *dev;
669 struct uml_net_private *lp;
671 device = find_device(n);
679 if(lp->remove != NULL) (*lp->remove)(&lp->user);
680 unregister_netdev(dev);
681 platform_device_unregister(&device->pdev);
683 list_del(&device->list);
689 static struct mc_device net_mc = {
690 .list = LIST_HEAD_INIT(net_mc.list),
692 .config = net_config,
695 .remove = net_remove,
698 static int uml_inetaddr_event(struct notifier_block *this, unsigned long event,
701 struct in_ifaddr *ifa = ptr;
702 struct net_device *dev = ifa->ifa_dev->dev;
703 struct uml_net_private *lp;
704 void (*proc)(unsigned char *, unsigned char *, void *);
705 unsigned char addr_buf[4], netmask_buf[4];
707 if(dev->open != uml_net_open)
715 proc = lp->add_address;
718 proc = lp->delete_address;
722 memcpy(addr_buf, &ifa->ifa_address, sizeof(addr_buf));
723 memcpy(netmask_buf, &ifa->ifa_mask, sizeof(netmask_buf));
724 (*proc)(addr_buf, netmask_buf, &lp->user);
729 /* uml_net_init shouldn't be called twice on two CPUs at the same time */
730 struct notifier_block uml_inetaddr_notifier = {
731 .notifier_call = uml_inetaddr_event,
734 static int uml_net_init(void)
736 struct list_head *ele;
737 struct uml_net_private *lp;
738 struct in_device *ip;
739 struct in_ifaddr *in;
741 mconsole_register_dev(&net_mc);
742 register_inetaddr_notifier(¨_inetaddr_notifier);
744 /* Devices may have been opened already, so the uml_inetaddr_notifier
745 * didn't get a chance to run for them. This fakes it so that
746 * addresses which have already been set up get handled properly.
748 spin_lock(&opened_lock);
749 list_for_each(ele, &opened){
750 lp = list_entry(ele, struct uml_net_private, list);
751 ip = lp->dev->ip_ptr;
756 uml_inetaddr_event(NULL, NETDEV_UP, in);
760 spin_unlock(&opened_lock);
765 __initcall(uml_net_init);
767 static void close_devices(void)
769 struct list_head *ele;
770 struct uml_net_private *lp;
772 spin_lock(&opened_lock);
773 list_for_each(ele, &opened){
774 lp = list_entry(ele, struct uml_net_private, list);
775 free_irq(lp->dev->irq, lp->dev);
776 if((lp->close != NULL) && (lp->fd >= 0))
777 (*lp->close)(lp->fd, &lp->user);
778 if(lp->remove != NULL)
779 (*lp->remove)(&lp->user);
781 spin_unlock(&opened_lock);
784 __uml_exitcall(close_devices);
786 struct sk_buff *ether_adjust_skb(struct sk_buff *skb, int extra)
788 if((skb != NULL) && (skb_tailroom(skb) < extra)){
789 struct sk_buff *skb2;
791 skb2 = skb_copy_expand(skb, 0, extra, GFP_ATOMIC);
795 if(skb != NULL) skb_put(skb, extra);
799 void iter_addresses(void *d, void (*cb)(unsigned char *, unsigned char *,
803 struct net_device *dev = d;
804 struct in_device *ip = dev->ip_ptr;
805 struct in_ifaddr *in;
806 unsigned char address[4], netmask[4];
808 if(ip == NULL) return;
811 memcpy(address, &in->ifa_address, sizeof(address));
812 memcpy(netmask, &in->ifa_mask, sizeof(netmask));
813 (*cb)(address, netmask, arg);
818 int dev_netmask(void *d, void *m)
820 struct net_device *dev = d;
821 struct in_device *ip = dev->ip_ptr;
822 struct in_ifaddr *in;
823 __be32 *mask_out = m;
832 *mask_out = in->ifa_mask;
836 void *get_output_buffer(int *len_out)
840 ret = (void *) __get_free_pages(GFP_KERNEL, 0);
841 if(ret) *len_out = PAGE_SIZE;
846 void free_output_buffer(void *buffer)
848 free_pages((unsigned long) buffer, 0);
851 int tap_setup_common(char *str, char *type, char **dev_name, char **mac_out,
856 remain = split_if_spec(str, dev_name, mac_out, gate_addr, NULL);
858 printk("tap_setup_common - Extra garbage on specification : "
866 unsigned short eth_protocol(struct sk_buff *skb)
868 return(eth_type_trans(skb, skb->dev));