blob: b2c292a66218b8b6637a51e8bc8ff9df769b03cb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Dikef28169d2007-02-10 01:43:53 -08002 * Copyright (C) 2001 Lennert Buytenhek (buytenh@gnu.org) and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#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"
Russell Kingd052d1b2005-10-29 19:07:23 +010022#include "linux/platform_device.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "asm/uaccess.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#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
Paolo 'Blaisorblade' Giarrussobf61f502006-09-25 23:33:07 -070032static inline void set_ether_mac(struct net_device *dev, unsigned char *addr)
33{
34 memcpy(dev->dev_addr, addr, ETH_ALEN);
35}
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#define DRIVER_NAME "uml-netdev"
38
39static DEFINE_SPINLOCK(opened_lock);
Jeff Dike90107722006-01-06 00:18:54 -080040static LIST_HEAD(opened);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42static 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);
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -070057 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 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
Peter Zijlstraeff3b632006-12-13 00:33:50 -080074static void uml_dev_close(struct work_struct *work)
Paolo 'Blaisorblade' Giarrusso71c8d4c2006-01-18 17:42:56 -080075{
Peter Zijlstraeff3b632006-12-13 00:33:50 -080076 struct uml_net_private *lp =
77 container_of(work, struct uml_net_private, work);
78 dev_close(lp->dev);
Paolo 'Blaisorblade' Giarrusso71c8d4c2006-01-18 17:42:56 -080079}
80
Al Viro7bea96f2006-10-08 22:49:34 +010081irqreturn_t uml_net_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
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) {
Jeff Dikef28169d2007-02-10 01:43:53 -080093 printk(KERN_ERR
94 "Device '%s' read returned %d, shutting it down\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 dev->name, err);
Paolo 'Blaisorblade' Giarrusso71c8d4c2006-01-18 17:42:56 -080096 /* 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
Peter Zijlstraeff3b632006-12-13 00:33:50 -0800100 * 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 goto out;
105 }
106 reactivate_fd(lp->fd, UM_ETH_IRQ);
107
Paolo 'Blaisorblade' Giarrusso71c8d4c2006-01-18 17:42:56 -0800108out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 spin_unlock(&lp->lock);
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800110 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113static int uml_net_open(struct net_device *dev)
114{
115 struct uml_net_private *lp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 int err;
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 if(lp->fd >= 0){
119 err = -ENXIO;
120 goto out;
121 }
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 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,
Thomas Gleixnerbd6aa652006-07-01 19:29:27 -0700130 IRQF_DISABLED | IRQF_SHARED, dev->name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 if(err != 0){
132 printk(KERN_ERR "uml_net_open: failed to get irq(%d)\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 err = -ENETUNREACH;
Jeff Dike14d9ead2006-02-07 12:58:42 -0800134 goto out_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
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
Jeff Dike14d9ead2006-02-07 12:58:42 -0800146 spin_lock(&opened_lock);
147 list_add(&lp->list, &opened);
148 spin_unlock(&opened_lock);
149
150 return 0;
151out_close:
152 if(lp->close != NULL) (*lp->close)(lp->fd, &lp->user);
153 lp->fd = -1;
154out:
Jeff Dike14d9ead2006-02-07 12:58:42 -0800155 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
158static int uml_net_close(struct net_device *dev)
159{
160 struct uml_net_private *lp = dev->priv;
Jeff Dikef28169d2007-02-10 01:43:53 -0800161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 free_irq(dev->irq, dev);
165 if(lp->close != NULL)
166 (*lp->close)(lp->fd, &lp->user);
167 lp->fd = -1;
168
Jeff Dike14d9ead2006-02-07 12:58:42 -0800169 spin_lock(&opened_lock);
170 list_del(&lp->list);
171 spin_unlock(&opened_lock);
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return 0;
174}
175
176static 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);
Jeff Dikef28169d2007-02-10 01:43:53 -0800196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 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
213static 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
219static 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
226static void uml_net_tx_timeout(struct net_device *dev)
227{
228 dev->trans_start = jiffies;
229 netif_wake_queue(dev);
230}
231
232static 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
Paolo 'Blaisorblade' Giarrusso48af05e2006-09-27 01:50:31 -0700237 spin_lock_irq(&lp->lock);
Paolo 'Blaisorblade' Giarrussobf61f502006-09-25 23:33:07 -0700238 set_ether_mac(dev, hwaddr->sa_data);
Paolo 'Blaisorblade' Giarrusso48af05e2006-09-27 01:50:31 -0700239 spin_unlock_irq(&lp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800241 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
244static 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
Paolo 'Blaisorblade' Giarrusso48af05e2006-09-27 01:50:31 -0700249 spin_lock_irq(&lp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
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:
Paolo 'Blaisorblade' Giarrusso48af05e2006-09-27 01:50:31 -0700260 spin_unlock_irq(&lp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return err;
262}
263
Christoph Hellwig6d387482005-11-07 06:21:21 +0100264static void uml_net_get_drvinfo(struct net_device *dev,
265 struct ethtool_drvinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
Christoph Hellwig6d387482005-11-07 06:21:21 +0100267 strcpy(info->driver, DRIVER_NAME);
268 strcpy(info->version, "42");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
Christoph Hellwig6d387482005-11-07 06:21:21 +0100271static struct ethtool_ops uml_net_ethtool_ops = {
272 .get_drvinfo = uml_net_get_drvinfo,
273 .get_link = ethtool_op_get_link,
274};
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276void 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
Paolo 'Blaisorblade' Giarrussoe0247152007-05-06 14:51:13 -0700286static void setup_etheraddr(char *str, unsigned char *addr, char *name)
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700287{
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 }
Paolo 'Blaisorblade' Giarrussoe0247152007-05-06 14:51:13 -0700305 if (is_multicast_ether_addr(addr)) {
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700306 printk(KERN_ERR
Paolo 'Blaisorblade' Giarrussoe0247152007-05-06 14:51:13 -0700307 "Attempt to assign a multicast ethernet address to a "
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700308 "device disallowed\n");
309 goto random;
310 }
Paolo 'Blaisorblade' Giarrussoe0247152007-05-06 14:51:13 -0700311 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 }
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700326 return;
327
328random:
Paolo 'Blaisorblade' Giarrussoe0247152007-05-06 14:51:13 -0700329 printk(KERN_INFO
330 "Choosing a random ethernet address for device %s\n", name);
Ollie Wildd6c64102006-09-29 15:50:28 -0700331 random_ether_addr(addr);
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700332}
333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334static DEFINE_SPINLOCK(devices_lock);
Jeff Dike90107722006-01-06 00:18:54 -0800335static LIST_HEAD(devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Russell King3ae5eae2005-11-09 22:32:44 +0000337static struct platform_driver uml_net_driver = {
338 .driver = {
339 .name = DRIVER_NAME,
340 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341};
342static int driver_registered;
343
Jeff Dikef34d9d22007-05-06 14:51:04 -0700344static void eth_configure(int n, void *init, char *mac,
345 struct transport *transport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
347 struct uml_net *device;
348 struct net_device *dev;
349 struct uml_net_private *lp;
Paolo 'Blaisorblade' Giarrussoc74c69b2007-05-06 14:51:15 -0700350 int err, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Paolo 'Blaisorblade' Giarrussoc74c69b2007-05-06 14:51:15 -0700352 size = transport->private_size + sizeof(struct uml_net_private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Yan Burman0268bd02006-12-12 19:54:52 +0100354 device = kzalloc(sizeof(*device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (device == NULL) {
Paolo 'Blaisorblade' Giarrusso8c840832007-05-06 14:51:14 -0700356 printk(KERN_ERR "eth_configure failed to allocate struct "
357 "uml_net\n");
Jeff Dikef34d9d22007-05-06 14:51:04 -0700358 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
360
Paolo 'Blaisorblade' Giarrusso8c840832007-05-06 14:51:14 -0700361 dev = alloc_etherdev(size);
362 if (dev == NULL) {
363 printk(KERN_ERR "eth_configure: failed to allocate struct "
364 "net_device for eth%d\n", n);
365 goto out_free_device;
366 }
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 INIT_LIST_HEAD(&device->list);
369 device->index = n;
370
Paolo 'Blaisorblade' Giarrussoe0247152007-05-06 14:51:13 -0700371 /* If this name ends up conflicting with an existing registered
372 * netdevice, that is OK, register_netdev{,ice}() will notice this
373 * and fail.
374 */
Paolo 'Blaisorblade' Giarrusso8c840832007-05-06 14:51:14 -0700375 snprintf(dev->name, sizeof(dev->name), "eth%d", n);
Paolo 'Blaisorblade' Giarrussoe0247152007-05-06 14:51:13 -0700376
Paolo 'Blaisorblade' Giarrusso8c840832007-05-06 14:51:14 -0700377 setup_etheraddr(mac, device->mac, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 printk(KERN_INFO "Netdevice %d ", n);
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700380 printk("(%02x:%02x:%02x:%02x:%02x:%02x) ",
381 device->mac[0], device->mac[1],
382 device->mac[2], device->mac[3],
383 device->mac[4], device->mac[5]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 printk(": ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Paolo 'Blaisorblade' Giarrussoe56a7882006-01-18 17:42:55 -0800386 lp = dev->priv;
387 /* This points to the transport private data. It's still clear, but we
388 * must memset it to 0 *now*. Let's help the drivers. */
389 memset(lp, 0, size);
Peter Zijlstraeff3b632006-12-13 00:33:50 -0800390 INIT_WORK(&lp->work, uml_dev_close);
Paolo 'Blaisorblade' Giarrussoe56a7882006-01-18 17:42:55 -0800391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 /* sysfs register */
393 if (!driver_registered) {
Russell King3ae5eae2005-11-09 22:32:44 +0000394 platform_driver_register(&uml_net_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 driver_registered = 1;
396 }
397 device->pdev.id = n;
398 device->pdev.name = DRIVER_NAME;
Jeff Dikef34d9d22007-05-06 14:51:04 -0700399 if(platform_device_register(&device->pdev))
400 goto out_free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 SET_NETDEV_DEV(dev,&device->pdev.dev);
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 device->dev = dev;
404
Jeff Dikef34d9d22007-05-06 14:51:04 -0700405 /*
406 * These just fill in a data structure, so there's no failure
407 * to be worried about.
408 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 (*transport->kern->init)(dev, init);
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 *lp = ((struct uml_net_private)
412 { .list = LIST_HEAD_INIT(lp->list),
413 .dev = dev,
414 .fd = -1,
415 .mac = { 0xfe, 0xfd, 0x0, 0x0, 0x0, 0x0},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 .protocol = transport->kern->protocol,
417 .open = transport->user->open,
418 .close = transport->user->close,
419 .remove = transport->user->remove,
420 .read = transport->kern->read,
421 .write = transport->kern->write,
422 .add_address = transport->user->add_address,
423 .delete_address = transport->user->delete_address,
Paolo 'Blaisorblade' Giarrussoc74c69b2007-05-06 14:51:15 -0700424 .set_mtu = transport->user->set_mtu });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 init_timer(&lp->tl);
427 spin_lock_init(&lp->lock);
428 lp->tl.function = uml_net_user_timer_expire;
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700429 memcpy(lp->mac, device->mac, sizeof(lp->mac));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Jeff Dikef34d9d22007-05-06 14:51:04 -0700431 if ((transport->user->init != NULL) &&
432 ((*transport->user->init)(&lp->user, dev) != 0))
433 goto out_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700435 set_ether_mac(dev, device->mac);
Jeff Dikef34d9d22007-05-06 14:51:04 -0700436 dev->mtu = transport->user->max_packet;
437 dev->open = uml_net_open;
438 dev->hard_start_xmit = uml_net_start_xmit;
439 dev->stop = uml_net_close;
440 dev->get_stats = uml_net_get_stats;
441 dev->set_multicast_list = uml_net_set_multicast_list;
442 dev->tx_timeout = uml_net_tx_timeout;
443 dev->set_mac_address = uml_net_set_mac;
444 dev->change_mtu = uml_net_change_mtu;
445 dev->ethtool_ops = &uml_net_ethtool_ops;
446 dev->watchdog_timeo = (HZ >> 1);
447 dev->irq = UM_ETH_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Jeff Dikef34d9d22007-05-06 14:51:04 -0700449 rtnl_lock();
450 err = register_netdevice(dev);
451 rtnl_unlock();
452 if (err)
453 goto out_undo_user_init;
454
455 spin_lock(&devices_lock);
456 list_add(&device->list, &devices);
457 spin_unlock(&devices_lock);
458
459 return;
460
461out_undo_user_init:
Paolo 'Blaisorblade' Giarrusso8c840832007-05-06 14:51:14 -0700462 if (transport->user->remove != NULL)
Jeff Dikef34d9d22007-05-06 14:51:04 -0700463 (*transport->user->remove)(&lp->user);
464out_unregister:
465 platform_device_unregister(&device->pdev);
466out_free_netdev:
467 free_netdev(dev);
Paolo 'Blaisorblade' Giarrusso8c840832007-05-06 14:51:14 -0700468out_free_device:
Jeff Dikef34d9d22007-05-06 14:51:04 -0700469 kfree(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
472static struct uml_net *find_device(int n)
473{
474 struct uml_net *device;
475 struct list_head *ele;
476
477 spin_lock(&devices_lock);
478 list_for_each(ele, &devices){
479 device = list_entry(ele, struct uml_net, list);
480 if(device->index == n)
481 goto out;
482 }
483 device = NULL;
484 out:
485 spin_unlock(&devices_lock);
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800486 return device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Jeff Dikef28169d2007-02-10 01:43:53 -0800489static int eth_parse(char *str, int *index_out, char **str_out,
490 char **error_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
492 char *end;
Jeff Dikef28169d2007-02-10 01:43:53 -0800493 int n, err = -EINVAL;;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 n = simple_strtoul(str, &end, 0);
496 if(end == str){
Jeff Dikef28169d2007-02-10 01:43:53 -0800497 *error_out = "Bad device number";
498 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
Jeff Dikef28169d2007-02-10 01:43:53 -0800500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 str = end;
502 if(*str != '='){
Jeff Dikef28169d2007-02-10 01:43:53 -0800503 *error_out = "Expected '=' after device number";
504 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
Jeff Dikef28169d2007-02-10 01:43:53 -0800506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 str++;
508 if(find_device(n)){
Jeff Dikef28169d2007-02-10 01:43:53 -0800509 *error_out = "Device already configured";
510 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
Jeff Dikef28169d2007-02-10 01:43:53 -0800512
513 *index_out = n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 *str_out = str;
Jeff Dikef28169d2007-02-10 01:43:53 -0800515 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
518struct eth_init {
519 struct list_head list;
520 char *init;
521 int index;
522};
523
Jeff Diked3b7f692007-02-10 01:43:56 -0800524static DEFINE_SPINLOCK(transports_lock);
525static LIST_HEAD(transports);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527/* Filled in during early boot */
Jeff Dikec862fc32007-02-10 01:44:04 -0800528static LIST_HEAD(eth_cmd_line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530static int check_transport(struct transport *transport, char *eth, int n,
531 void **init_out, char **mac_out)
532{
533 int len;
534
535 len = strlen(transport->name);
536 if(strncmp(eth, transport->name, len))
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800537 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 eth += len;
540 if(*eth == ',')
541 eth++;
542 else if(*eth != '\0')
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800543 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 *init_out = kmalloc(transport->setup_size, GFP_KERNEL);
546 if(*init_out == NULL)
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800547 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 if(!transport->setup(eth, mac_out, *init_out)){
550 kfree(*init_out);
551 *init_out = NULL;
552 }
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800553 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
556void register_transport(struct transport *new)
557{
558 struct list_head *ele, *next;
559 struct eth_init *eth;
560 void *init;
561 char *mac = NULL;
562 int match;
563
Jeff Diked3b7f692007-02-10 01:43:56 -0800564 spin_lock(&transports_lock);
565 BUG_ON(!list_empty(&new->list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 list_add(&new->list, &transports);
Jeff Diked3b7f692007-02-10 01:43:56 -0800567 spin_unlock(&transports_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 list_for_each_safe(ele, next, &eth_cmd_line){
570 eth = list_entry(ele, struct eth_init, list);
571 match = check_transport(new, eth->init, eth->index, &init,
572 &mac);
573 if(!match)
574 continue;
575 else if(init != NULL){
576 eth_configure(eth->index, init, mac, new);
577 kfree(init);
578 }
579 list_del(&eth->list);
580 }
581}
582
583static int eth_setup_common(char *str, int index)
584{
585 struct list_head *ele;
586 struct transport *transport;
587 void *init;
588 char *mac = NULL;
Jeff Dikec862fc32007-02-10 01:44:04 -0800589 int found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Jeff Dikec862fc32007-02-10 01:44:04 -0800591 spin_lock(&transports_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 list_for_each(ele, &transports){
593 transport = list_entry(ele, struct transport, list);
594 if(!check_transport(transport, str, index, &init, &mac))
595 continue;
596 if(init != NULL){
597 eth_configure(index, init, mac, transport);
598 kfree(init);
599 }
Jeff Dikec862fc32007-02-10 01:44:04 -0800600 found = 1;
601 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
Jeff Dikec862fc32007-02-10 01:44:04 -0800603
604 spin_unlock(&transports_lock);
605 return found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
608static int eth_setup(char *str)
609{
610 struct eth_init *new;
Jeff Dikef28169d2007-02-10 01:43:53 -0800611 char *error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 int n, err;
613
Jeff Dikef28169d2007-02-10 01:43:53 -0800614 err = eth_parse(str, &n, &str, &error);
615 if(err){
616 printk(KERN_ERR "eth_setup - Couldn't parse '%s' : %s\n",
617 str, error);
Jeff Dike1183dc92006-09-27 01:50:43 -0700618 return 1;
Jeff Dikef28169d2007-02-10 01:43:53 -0800619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Jeff Dike1183dc92006-09-27 01:50:43 -0700621 new = alloc_bootmem(sizeof(*new));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (new == NULL){
623 printk("eth_init : alloc_bootmem failed\n");
Jeff Dike1183dc92006-09-27 01:50:43 -0700624 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626
627 INIT_LIST_HEAD(&new->list);
628 new->index = n;
629 new->init = str;
630
631 list_add_tail(&new->list, &eth_cmd_line);
Jeff Dike1183dc92006-09-27 01:50:43 -0700632 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
635__setup("eth", eth_setup);
636__uml_help(eth_setup,
637"eth[0-9]+=<transport>,<options>\n"
638" Configure a network device.\n\n"
639);
640
Jeff Dikef28169d2007-02-10 01:43:53 -0800641static int net_config(char *str, char **error_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 int n, err;
644
Jeff Dikef28169d2007-02-10 01:43:53 -0800645 err = eth_parse(str, &n, &str, error_out);
646 if(err)
647 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Jeff Dikef28169d2007-02-10 01:43:53 -0800649 /* This string is broken up and the pieces used by the underlying
650 * driver. So, it is freed only if eth_setup_common fails.
651 */
Jeff Dike970d6e32006-01-06 00:18:48 -0800652 str = kstrdup(str, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if(str == NULL){
Jeff Dikef28169d2007-02-10 01:43:53 -0800654 *error_out = "net_config failed to strdup string";
655 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657 err = !eth_setup_common(str, n);
Jeff Dikef28169d2007-02-10 01:43:53 -0800658 if(err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 kfree(str);
660 return(err);
661}
662
Jeff Dike29d56cf2005-06-25 14:55:25 -0700663static int net_id(char **str, int *start_out, int *end_out)
664{
665 char *end;
666 int n;
667
668 n = simple_strtoul(*str, &end, 0);
669 if((*end != '\0') || (end == *str))
670 return -1;
671
672 *start_out = n;
673 *end_out = n;
674 *str = end;
675 return n;
676}
677
Jeff Dikef28169d2007-02-10 01:43:53 -0800678static int net_remove(int n, char **error_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 struct uml_net *device;
681 struct net_device *dev;
682 struct uml_net_private *lp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 device = find_device(n);
685 if(device == NULL)
Jeff Dike29d56cf2005-06-25 14:55:25 -0700686 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 dev = device->dev;
689 lp = dev->priv;
Jeff Dike29d56cf2005-06-25 14:55:25 -0700690 if(lp->fd > 0)
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800691 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if(lp->remove != NULL) (*lp->remove)(&lp->user);
693 unregister_netdev(dev);
694 platform_device_unregister(&device->pdev);
695
696 list_del(&device->list);
697 kfree(device);
698 free_netdev(dev);
Jeff Dike29d56cf2005-06-25 14:55:25 -0700699 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
702static struct mc_device net_mc = {
Jeff Dike84f48d42007-02-10 01:44:01 -0800703 .list = LIST_HEAD_INIT(net_mc.list),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 .name = "eth",
705 .config = net_config,
706 .get_config = NULL,
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800707 .id = net_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 .remove = net_remove,
709};
710
711static int uml_inetaddr_event(struct notifier_block *this, unsigned long event,
712 void *ptr)
713{
714 struct in_ifaddr *ifa = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 struct net_device *dev = ifa->ifa_dev->dev;
716 struct uml_net_private *lp;
717 void (*proc)(unsigned char *, unsigned char *, void *);
718 unsigned char addr_buf[4], netmask_buf[4];
719
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800720 if(dev->open != uml_net_open)
721 return NOTIFY_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 lp = dev->priv;
724
725 proc = NULL;
726 switch (event){
727 case NETDEV_UP:
728 proc = lp->add_address;
729 break;
730 case NETDEV_DOWN:
731 proc = lp->delete_address;
732 break;
733 }
734 if(proc != NULL){
Bodo Stroesser0e764222005-11-07 00:58:47 -0800735 memcpy(addr_buf, &ifa->ifa_address, sizeof(addr_buf));
736 memcpy(netmask_buf, &ifa->ifa_mask, sizeof(netmask_buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 (*proc)(addr_buf, netmask_buf, &lp->user);
738 }
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800739 return NOTIFY_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
Jeff Dikec862fc32007-02-10 01:44:04 -0800742/* uml_net_init shouldn't be called twice on two CPUs at the same time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743struct notifier_block uml_inetaddr_notifier = {
744 .notifier_call = uml_inetaddr_event,
745};
746
747static int uml_net_init(void)
748{
749 struct list_head *ele;
Jeff Dikef28169d2007-02-10 01:43:53 -0800750 struct uml_net_private *lp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 struct in_device *ip;
752 struct in_ifaddr *in;
753
754 mconsole_register_dev(&net_mc);
755 register_inetaddr_notifier(&uml_inetaddr_notifier);
756
757 /* Devices may have been opened already, so the uml_inetaddr_notifier
758 * didn't get a chance to run for them. This fakes it so that
759 * addresses which have already been set up get handled properly.
760 */
Jeff Dikec862fc32007-02-10 01:44:04 -0800761 spin_lock(&opened_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 list_for_each(ele, &opened){
763 lp = list_entry(ele, struct uml_net_private, list);
764 ip = lp->dev->ip_ptr;
Jeff Dikec862fc32007-02-10 01:44:04 -0800765 if(ip == NULL)
766 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 in = ip->ifa_list;
768 while(in != NULL){
769 uml_inetaddr_event(NULL, NETDEV_UP, in);
770 in = in->ifa_next;
771 }
Jeff Dikef28169d2007-02-10 01:43:53 -0800772 }
Jeff Dikec862fc32007-02-10 01:44:04 -0800773 spin_unlock(&opened_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Jeff Dikec862fc32007-02-10 01:44:04 -0800775 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776}
777
778__initcall(uml_net_init);
779
780static void close_devices(void)
781{
782 struct list_head *ele;
783 struct uml_net_private *lp;
784
Jeff Dikec862fc32007-02-10 01:44:04 -0800785 spin_lock(&opened_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 list_for_each(ele, &opened){
787 lp = list_entry(ele, struct uml_net_private, list);
Jeff Dike8d93c702006-01-06 00:19:06 -0800788 free_irq(lp->dev->irq, lp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if((lp->close != NULL) && (lp->fd >= 0))
790 (*lp->close)(lp->fd, &lp->user);
Jeff Dikec862fc32007-02-10 01:44:04 -0800791 if(lp->remove != NULL)
792 (*lp->remove)(&lp->user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
Jeff Dikec862fc32007-02-10 01:44:04 -0800794 spin_unlock(&opened_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
797__uml_exitcall(close_devices);
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799struct sk_buff *ether_adjust_skb(struct sk_buff *skb, int extra)
800{
801 if((skb != NULL) && (skb_tailroom(skb) < extra)){
802 struct sk_buff *skb2;
803
804 skb2 = skb_copy_expand(skb, 0, extra, GFP_ATOMIC);
805 dev_kfree_skb(skb);
806 skb = skb2;
807 }
808 if(skb != NULL) skb_put(skb, extra);
809 return(skb);
810}
811
Jeff Dikef28169d2007-02-10 01:43:53 -0800812void iter_addresses(void *d, void (*cb)(unsigned char *, unsigned char *,
813 void *),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 void *arg)
815{
816 struct net_device *dev = d;
817 struct in_device *ip = dev->ip_ptr;
818 struct in_ifaddr *in;
819 unsigned char address[4], netmask[4];
820
821 if(ip == NULL) return;
822 in = ip->ifa_list;
823 while(in != NULL){
Bodo Stroesser0e764222005-11-07 00:58:47 -0800824 memcpy(address, &in->ifa_address, sizeof(address));
825 memcpy(netmask, &in->ifa_mask, sizeof(netmask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 (*cb)(address, netmask, arg);
827 in = in->ifa_next;
828 }
829}
830
831int dev_netmask(void *d, void *m)
832{
833 struct net_device *dev = d;
834 struct in_device *ip = dev->ip_ptr;
835 struct in_ifaddr *in;
Al Viroa144ea42006-09-28 18:00:55 -0700836 __be32 *mask_out = m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Jeff Dikef28169d2007-02-10 01:43:53 -0800838 if(ip == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 return(1);
840
841 in = ip->ifa_list;
Jeff Dikef28169d2007-02-10 01:43:53 -0800842 if(in == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return(1);
844
845 *mask_out = in->ifa_mask;
846 return(0);
847}
848
849void *get_output_buffer(int *len_out)
850{
851 void *ret;
852
853 ret = (void *) __get_free_pages(GFP_KERNEL, 0);
854 if(ret) *len_out = PAGE_SIZE;
855 else *len_out = 0;
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800856 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857}
858
859void free_output_buffer(void *buffer)
860{
861 free_pages((unsigned long) buffer, 0);
862}
863
Jeff Dikef28169d2007-02-10 01:43:53 -0800864int tap_setup_common(char *str, char *type, char **dev_name, char **mac_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 char **gate_addr)
866{
867 char *remain;
868
869 remain = split_if_spec(str, dev_name, mac_out, gate_addr, NULL);
870 if(remain != NULL){
871 printk("tap_setup_common - Extra garbage on specification : "
872 "'%s'\n", remain);
873 return(1);
874 }
875
876 return(0);
877}
878
879unsigned short eth_protocol(struct sk_buff *skb)
880{
881 return(eth_type_trans(skb, skb->dev));
882}