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 "user_util.h"
25 #include "kern_util.h"
28 #include "mconsole_kern.h"
33 static inline void set_ether_mac(struct net_device *dev, unsigned char *addr)
35 memcpy(dev->dev_addr, addr, ETH_ALEN);
38 #define DRIVER_NAME "uml-netdev"
40 static DEFINE_SPINLOCK(opened_lock);
41 static LIST_HEAD(opened);
43 static int uml_net_rx(struct net_device *dev)
45 struct uml_net_private *lp = dev->priv;
49 /* If we can't allocate memory, try again next round. */
50 skb = dev_alloc_skb(dev->mtu);
52 lp->stats.rx_dropped++;
57 skb_put(skb, dev->mtu);
58 skb_reset_mac_header(skb);
59 pkt_len = (*lp->read)(lp->fd, &skb, lp);
62 skb_trim(skb, pkt_len);
63 skb->protocol = (*lp->protocol)(skb);
66 lp->stats.rx_bytes += skb->len;
67 lp->stats.rx_packets++;
75 static void uml_dev_close(struct work_struct *work)
77 struct uml_net_private *lp =
78 container_of(work, struct uml_net_private, work);
82 irqreturn_t uml_net_interrupt(int irq, void *dev_id)
84 struct net_device *dev = dev_id;
85 struct uml_net_private *lp = dev->priv;
88 if(!netif_running(dev))
92 while((err = uml_net_rx(dev)) > 0) ;
95 "Device '%s' read returned %d, shutting it down\n",
97 /* dev_close can't be called in interrupt context, and takes
99 * And dev_close() can be safely called multiple times on the
100 * same device, since it tests for (dev->flags & IFF_UP). So
101 * there's no harm in delaying the device shutdown.
102 * Furthermore, the workqueue will not re-enqueue an already
103 * enqueued work item. */
104 schedule_work(&lp->work);
107 reactivate_fd(lp->fd, UM_ETH_IRQ);
110 spin_unlock(&lp->lock);
114 static int uml_net_open(struct net_device *dev)
116 struct uml_net_private *lp = dev->priv;
124 lp->fd = (*lp->open)(&lp->user);
130 err = um_request_irq(dev->irq, lp->fd, IRQ_READ, uml_net_interrupt,
131 IRQF_DISABLED | IRQF_SHARED, dev->name, dev);
133 printk(KERN_ERR "uml_net_open: failed to get irq(%d)\n", err);
138 lp->tl.data = (unsigned long) &lp->user;
139 netif_start_queue(dev);
141 /* clear buffer - it can happen that the host side of the interface
142 * is full when we get here. In this case, new data is never queued,
143 * SIGIOs never arrive, and the net never works.
145 while((err = uml_net_rx(dev)) > 0) ;
147 spin_lock(&opened_lock);
148 list_add(&lp->list, &opened);
149 spin_unlock(&opened_lock);
153 if(lp->close != NULL) (*lp->close)(lp->fd, &lp->user);
159 static int uml_net_close(struct net_device *dev)
161 struct uml_net_private *lp = dev->priv;
163 netif_stop_queue(dev);
165 free_irq(dev->irq, dev);
166 if(lp->close != NULL)
167 (*lp->close)(lp->fd, &lp->user);
170 spin_lock(&opened_lock);
172 spin_unlock(&opened_lock);
177 static int uml_net_start_xmit(struct sk_buff *skb, struct net_device *dev)
179 struct uml_net_private *lp = dev->priv;
183 netif_stop_queue(dev);
185 spin_lock_irqsave(&lp->lock, flags);
187 len = (*lp->write)(lp->fd, &skb, lp);
189 if(len == skb->len) {
190 lp->stats.tx_packets++;
191 lp->stats.tx_bytes += skb->len;
192 dev->trans_start = jiffies;
193 netif_start_queue(dev);
195 /* this is normally done in the interrupt when tx finishes */
196 netif_wake_queue(dev);
199 netif_start_queue(dev);
200 lp->stats.tx_dropped++;
203 netif_start_queue(dev);
204 printk(KERN_ERR "uml_net_start_xmit: failed(%d)\n", len);
207 spin_unlock_irqrestore(&lp->lock, flags);
214 static struct net_device_stats *uml_net_get_stats(struct net_device *dev)
216 struct uml_net_private *lp = dev->priv;
220 static void uml_net_set_multicast_list(struct net_device *dev)
222 if (dev->flags & IFF_PROMISC) return;
223 else if (dev->mc_count) dev->flags |= IFF_ALLMULTI;
224 else dev->flags &= ~IFF_ALLMULTI;
227 static void uml_net_tx_timeout(struct net_device *dev)
229 dev->trans_start = jiffies;
230 netif_wake_queue(dev);
233 static int uml_net_set_mac(struct net_device *dev, void *addr)
235 struct uml_net_private *lp = dev->priv;
236 struct sockaddr *hwaddr = addr;
238 spin_lock_irq(&lp->lock);
239 set_ether_mac(dev, hwaddr->sa_data);
240 spin_unlock_irq(&lp->lock);
245 static int uml_net_change_mtu(struct net_device *dev, int new_mtu)
247 struct uml_net_private *lp = dev->priv;
250 spin_lock_irq(&lp->lock);
252 new_mtu = (*lp->set_mtu)(new_mtu, &lp->user);
261 spin_unlock_irq(&lp->lock);
265 static void uml_net_get_drvinfo(struct net_device *dev,
266 struct ethtool_drvinfo *info)
268 strcpy(info->driver, DRIVER_NAME);
269 strcpy(info->version, "42");
272 static struct ethtool_ops uml_net_ethtool_ops = {
273 .get_drvinfo = uml_net_get_drvinfo,
274 .get_link = ethtool_op_get_link,
277 void uml_net_user_timer_expire(unsigned long _conn)
280 struct connection *conn = (struct connection *)_conn;
282 dprintk(KERN_INFO "uml_net_user_timer_expire [%p]\n", conn);
287 static void setup_etheraddr(char *str, unsigned char *addr)
296 addr[i] = simple_strtoul(str, &end, 16);
298 ((*end != ':') && (*end != ',') && (*end != '\0'))){
300 "setup_etheraddr: failed to parse '%s' "
301 "as an ethernet address\n", str);
308 "Attempt to assign a broadcast ethernet address to a "
309 "device disallowed\n");
315 random_ether_addr(addr);
318 static DEFINE_SPINLOCK(devices_lock);
319 static LIST_HEAD(devices);
321 static struct platform_driver uml_net_driver = {
326 static int driver_registered;
328 static void eth_configure(int n, void *init, char *mac,
329 struct transport *transport)
331 struct uml_net *device;
332 struct net_device *dev;
333 struct uml_net_private *lp;
336 size = transport->private_size + sizeof(struct uml_net_private) +
337 sizeof(((struct uml_net_private *) 0)->user);
339 device = kzalloc(sizeof(*device), GFP_KERNEL);
340 if (device == NULL) {
341 printk(KERN_ERR "eth_configure failed to allocate uml_net\n");
345 INIT_LIST_HEAD(&device->list);
348 setup_etheraddr(mac, device->mac);
350 printk(KERN_INFO "Netdevice %d ", n);
351 printk("(%02x:%02x:%02x:%02x:%02x:%02x) ",
352 device->mac[0], device->mac[1],
353 device->mac[2], device->mac[3],
354 device->mac[4], device->mac[5]);
356 dev = alloc_etherdev(size);
358 printk(KERN_ERR "eth_configure: failed to allocate device\n");
359 goto out_free_device;
363 /* This points to the transport private data. It's still clear, but we
364 * must memset it to 0 *now*. Let's help the drivers. */
366 INIT_WORK(&lp->work, uml_dev_close);
369 if (!driver_registered) {
370 platform_driver_register(¨_net_driver);
371 driver_registered = 1;
374 device->pdev.name = DRIVER_NAME;
375 if(platform_device_register(&device->pdev))
376 goto out_free_netdev;
377 SET_NETDEV_DEV(dev,&device->pdev.dev);
379 /* If this name ends up conflicting with an existing registered
380 * netdevice, that is OK, register_netdev{,ice}() will notice this
383 snprintf(dev->name, sizeof(dev->name), "eth%d", n);
387 * These just fill in a data structure, so there's no failure
388 * to be worried about.
390 (*transport->kern->init)(dev, init);
392 /* lp.user is the first four bytes of the transport data, which
393 * has already been initialized. This structure assignment will
394 * overwrite that, so we make sure that .user gets overwritten with
395 * what it already has.
398 *lp = ((struct uml_net_private)
399 { .list = LIST_HEAD_INIT(lp->list),
402 .mac = { 0xfe, 0xfd, 0x0, 0x0, 0x0, 0x0},
403 .protocol = transport->kern->protocol,
404 .open = transport->user->open,
405 .close = transport->user->close,
406 .remove = transport->user->remove,
407 .read = transport->kern->read,
408 .write = transport->kern->write,
409 .add_address = transport->user->add_address,
410 .delete_address = transport->user->delete_address,
411 .set_mtu = transport->user->set_mtu,
415 spin_lock_init(&lp->lock);
416 lp->tl.function = uml_net_user_timer_expire;
417 memcpy(lp->mac, device->mac, sizeof(lp->mac));
419 if ((transport->user->init != NULL) &&
420 ((*transport->user->init)(&lp->user, dev) != 0))
423 set_ether_mac(dev, device->mac);
424 dev->mtu = transport->user->max_packet;
425 dev->open = uml_net_open;
426 dev->hard_start_xmit = uml_net_start_xmit;
427 dev->stop = uml_net_close;
428 dev->get_stats = uml_net_get_stats;
429 dev->set_multicast_list = uml_net_set_multicast_list;
430 dev->tx_timeout = uml_net_tx_timeout;
431 dev->set_mac_address = uml_net_set_mac;
432 dev->change_mtu = uml_net_change_mtu;
433 dev->ethtool_ops = ¨_net_ethtool_ops;
434 dev->watchdog_timeo = (HZ >> 1);
435 dev->irq = UM_ETH_IRQ;
438 err = register_netdevice(dev);
441 goto out_undo_user_init;
443 spin_lock(&devices_lock);
444 list_add(&device->list, &devices);
445 spin_unlock(&devices_lock);
450 if (transport->user->init != NULL)
451 (*transport->user->remove)(&lp->user);
453 platform_device_unregister(&device->pdev);
460 static struct uml_net *find_device(int n)
462 struct uml_net *device;
463 struct list_head *ele;
465 spin_lock(&devices_lock);
466 list_for_each(ele, &devices){
467 device = list_entry(ele, struct uml_net, list);
468 if(device->index == n)
473 spin_unlock(&devices_lock);
477 static int eth_parse(char *str, int *index_out, char **str_out,
481 int n, err = -EINVAL;;
483 n = simple_strtoul(str, &end, 0);
485 *error_out = "Bad device number";
491 *error_out = "Expected '=' after device number";
497 *error_out = "Device already configured";
507 struct list_head list;
512 static DEFINE_SPINLOCK(transports_lock);
513 static LIST_HEAD(transports);
515 /* Filled in during early boot */
516 static LIST_HEAD(eth_cmd_line);
518 static int check_transport(struct transport *transport, char *eth, int n,
519 void **init_out, char **mac_out)
523 len = strlen(transport->name);
524 if(strncmp(eth, transport->name, len))
530 else if(*eth != '\0')
533 *init_out = kmalloc(transport->setup_size, GFP_KERNEL);
534 if(*init_out == NULL)
537 if(!transport->setup(eth, mac_out, *init_out)){
544 void register_transport(struct transport *new)
546 struct list_head *ele, *next;
547 struct eth_init *eth;
552 spin_lock(&transports_lock);
553 BUG_ON(!list_empty(&new->list));
554 list_add(&new->list, &transports);
555 spin_unlock(&transports_lock);
557 list_for_each_safe(ele, next, ð_cmd_line){
558 eth = list_entry(ele, struct eth_init, list);
559 match = check_transport(new, eth->init, eth->index, &init,
563 else if(init != NULL){
564 eth_configure(eth->index, init, mac, new);
567 list_del(ð->list);
571 static int eth_setup_common(char *str, int index)
573 struct list_head *ele;
574 struct transport *transport;
579 spin_lock(&transports_lock);
580 list_for_each(ele, &transports){
581 transport = list_entry(ele, struct transport, list);
582 if(!check_transport(transport, str, index, &init, &mac))
585 eth_configure(index, init, mac, transport);
592 spin_unlock(&transports_lock);
596 static int eth_setup(char *str)
598 struct eth_init *new;
602 err = eth_parse(str, &n, &str, &error);
604 printk(KERN_ERR "eth_setup - Couldn't parse '%s' : %s\n",
609 new = alloc_bootmem(sizeof(*new));
611 printk("eth_init : alloc_bootmem failed\n");
615 INIT_LIST_HEAD(&new->list);
619 list_add_tail(&new->list, ð_cmd_line);
623 __setup("eth", eth_setup);
624 __uml_help(eth_setup,
625 "eth[0-9]+=<transport>,<options>\n"
626 " Configure a network device.\n\n"
629 static int net_config(char *str, char **error_out)
633 err = eth_parse(str, &n, &str, error_out);
637 /* This string is broken up and the pieces used by the underlying
638 * driver. So, it is freed only if eth_setup_common fails.
640 str = kstrdup(str, GFP_KERNEL);
642 *error_out = "net_config failed to strdup string";
645 err = !eth_setup_common(str, n);
651 static int net_id(char **str, int *start_out, int *end_out)
656 n = simple_strtoul(*str, &end, 0);
657 if((*end != '\0') || (end == *str))
666 static int net_remove(int n, char **error_out)
668 struct uml_net *device;
669 struct net_device *dev;
670 struct uml_net_private *lp;
672 device = find_device(n);
680 if(lp->remove != NULL) (*lp->remove)(&lp->user);
681 unregister_netdev(dev);
682 platform_device_unregister(&device->pdev);
684 list_del(&device->list);
690 static struct mc_device net_mc = {
691 .list = LIST_HEAD_INIT(net_mc.list),
693 .config = net_config,
696 .remove = net_remove,
699 static int uml_inetaddr_event(struct notifier_block *this, unsigned long event,
702 struct in_ifaddr *ifa = ptr;
703 struct net_device *dev = ifa->ifa_dev->dev;
704 struct uml_net_private *lp;
705 void (*proc)(unsigned char *, unsigned char *, void *);
706 unsigned char addr_buf[4], netmask_buf[4];
708 if(dev->open != uml_net_open)
716 proc = lp->add_address;
719 proc = lp->delete_address;
723 memcpy(addr_buf, &ifa->ifa_address, sizeof(addr_buf));
724 memcpy(netmask_buf, &ifa->ifa_mask, sizeof(netmask_buf));
725 (*proc)(addr_buf, netmask_buf, &lp->user);
730 /* uml_net_init shouldn't be called twice on two CPUs at the same time */
731 struct notifier_block uml_inetaddr_notifier = {
732 .notifier_call = uml_inetaddr_event,
735 static int uml_net_init(void)
737 struct list_head *ele;
738 struct uml_net_private *lp;
739 struct in_device *ip;
740 struct in_ifaddr *in;
742 mconsole_register_dev(&net_mc);
743 register_inetaddr_notifier(¨_inetaddr_notifier);
745 /* Devices may have been opened already, so the uml_inetaddr_notifier
746 * didn't get a chance to run for them. This fakes it so that
747 * addresses which have already been set up get handled properly.
749 spin_lock(&opened_lock);
750 list_for_each(ele, &opened){
751 lp = list_entry(ele, struct uml_net_private, list);
752 ip = lp->dev->ip_ptr;
757 uml_inetaddr_event(NULL, NETDEV_UP, in);
761 spin_unlock(&opened_lock);
766 __initcall(uml_net_init);
768 static void close_devices(void)
770 struct list_head *ele;
771 struct uml_net_private *lp;
773 spin_lock(&opened_lock);
774 list_for_each(ele, &opened){
775 lp = list_entry(ele, struct uml_net_private, list);
776 free_irq(lp->dev->irq, lp->dev);
777 if((lp->close != NULL) && (lp->fd >= 0))
778 (*lp->close)(lp->fd, &lp->user);
779 if(lp->remove != NULL)
780 (*lp->remove)(&lp->user);
782 spin_unlock(&opened_lock);
785 __uml_exitcall(close_devices);
787 struct sk_buff *ether_adjust_skb(struct sk_buff *skb, int extra)
789 if((skb != NULL) && (skb_tailroom(skb) < extra)){
790 struct sk_buff *skb2;
792 skb2 = skb_copy_expand(skb, 0, extra, GFP_ATOMIC);
796 if(skb != NULL) skb_put(skb, extra);
800 void iter_addresses(void *d, void (*cb)(unsigned char *, unsigned char *,
804 struct net_device *dev = d;
805 struct in_device *ip = dev->ip_ptr;
806 struct in_ifaddr *in;
807 unsigned char address[4], netmask[4];
809 if(ip == NULL) return;
812 memcpy(address, &in->ifa_address, sizeof(address));
813 memcpy(netmask, &in->ifa_mask, sizeof(netmask));
814 (*cb)(address, netmask, arg);
819 int dev_netmask(void *d, void *m)
821 struct net_device *dev = d;
822 struct in_device *ip = dev->ip_ptr;
823 struct in_ifaddr *in;
824 __be32 *mask_out = m;
833 *mask_out = in->ifa_mask;
837 void *get_output_buffer(int *len_out)
841 ret = (void *) __get_free_pages(GFP_KERNEL, 0);
842 if(ret) *len_out = PAGE_SIZE;
847 void free_output_buffer(void *buffer)
849 free_pages((unsigned long) buffer, 0);
852 int tap_setup_common(char *str, char *type, char **dev_name, char **mac_out,
857 remain = split_if_spec(str, dev_name, mac_out, gate_addr, NULL);
859 printk("tap_setup_common - Extra garbage on specification : "
867 unsigned short eth_protocol(struct sk_buff *skb)
869 return(eth_type_trans(skb, skb->dev));