blob: b097a24c149622ee530c4649b4c1d875847608d5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Dikecd1ae0e2007-10-16 01:27:29 -07002 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Jeff Dikef28169d2007-02-10 01:43:53 -08003 * Copyright (C) 2001 Lennert Buytenhek (buytenh@gnu.org) and
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * James Leu (jleu@mindspring.net).
5 * Copyright (C) 2001 by various other people who didn't put their name here.
6 * Licensed under the GPL.
7 */
8
Jeff Dikecd1ae0e2007-10-16 01:27:29 -07009#include <linux/bootmem.h>
10#include <linux/etherdevice.h>
11#include <linux/ethtool.h>
12#include <linux/inetdevice.h>
13#include <linux/init.h>
14#include <linux/list.h>
15#include <linux/netdevice.h>
16#include <linux/platform_device.h>
17#include <linux/rtnetlink.h>
18#include <linux/skbuff.h>
19#include <linux/spinlock.h>
20#include "init.h"
21#include "irq_kern.h"
22#include "irq_user.h"
23#include "mconsole_kern.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "net_kern.h"
25#include "net_user.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Paolo 'Blaisorblade' Giarrussobf61f502006-09-25 23:33:07 -070027static inline void set_ether_mac(struct net_device *dev, unsigned char *addr)
28{
29 memcpy(dev->dev_addr, addr, ETH_ALEN);
30}
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#define DRIVER_NAME "uml-netdev"
33
34static DEFINE_SPINLOCK(opened_lock);
Jeff Dike90107722006-01-06 00:18:54 -080035static LIST_HEAD(opened);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37static int uml_net_rx(struct net_device *dev)
38{
39 struct uml_net_private *lp = dev->priv;
40 int pkt_len;
41 struct sk_buff *skb;
42
43 /* If we can't allocate memory, try again next round. */
44 skb = dev_alloc_skb(dev->mtu);
45 if (skb == NULL) {
46 lp->stats.rx_dropped++;
47 return 0;
48 }
49
50 skb->dev = dev;
51 skb_put(skb, dev->mtu);
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -070052 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 pkt_len = (*lp->read)(lp->fd, &skb, lp);
54
55 if (pkt_len > 0) {
56 skb_trim(skb, pkt_len);
57 skb->protocol = (*lp->protocol)(skb);
58 netif_rx(skb);
59
60 lp->stats.rx_bytes += skb->len;
61 lp->stats.rx_packets++;
62 return pkt_len;
63 }
64
65 kfree_skb(skb);
66 return pkt_len;
67}
68
Peter Zijlstraeff3b632006-12-13 00:33:50 -080069static void uml_dev_close(struct work_struct *work)
Paolo 'Blaisorblade' Giarrusso71c8d4c2006-01-18 17:42:56 -080070{
Peter Zijlstraeff3b632006-12-13 00:33:50 -080071 struct uml_net_private *lp =
72 container_of(work, struct uml_net_private, work);
73 dev_close(lp->dev);
Paolo 'Blaisorblade' Giarrusso71c8d4c2006-01-18 17:42:56 -080074}
75
Al Viro7bea96f2006-10-08 22:49:34 +010076irqreturn_t uml_net_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
78 struct net_device *dev = dev_id;
79 struct uml_net_private *lp = dev->priv;
80 int err;
81
Jeff Dikecd1ae0e2007-10-16 01:27:29 -070082 if (!netif_running(dev))
83 return IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 spin_lock(&lp->lock);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -070086 while ((err = uml_net_rx(dev)) > 0) ;
87 if (err < 0) {
Jeff Dikef28169d2007-02-10 01:43:53 -080088 printk(KERN_ERR
89 "Device '%s' read returned %d, shutting it down\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 dev->name, err);
Paolo 'Blaisorblade' Giarrusso71c8d4c2006-01-18 17:42:56 -080091 /* dev_close can't be called in interrupt context, and takes
92 * again lp->lock.
93 * And dev_close() can be safely called multiple times on the
94 * same device, since it tests for (dev->flags & IFF_UP). So
Peter Zijlstraeff3b632006-12-13 00:33:50 -080095 * there's no harm in delaying the device shutdown.
96 * Furthermore, the workqueue will not re-enqueue an already
97 * enqueued work item. */
98 schedule_work(&lp->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 goto out;
100 }
101 reactivate_fd(lp->fd, UM_ETH_IRQ);
102
Paolo 'Blaisorblade' Giarrusso71c8d4c2006-01-18 17:42:56 -0800103out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 spin_unlock(&lp->lock);
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800105 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
108static int uml_net_open(struct net_device *dev)
109{
110 struct uml_net_private *lp = dev->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 int err;
112
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700113 if (lp->fd >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 err = -ENXIO;
115 goto out;
116 }
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 lp->fd = (*lp->open)(&lp->user);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700119 if (lp->fd < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 err = lp->fd;
121 goto out;
122 }
123
124 err = um_request_irq(dev->irq, lp->fd, IRQ_READ, uml_net_interrupt,
Thomas Gleixnerbd6aa652006-07-01 19:29:27 -0700125 IRQF_DISABLED | IRQF_SHARED, dev->name, dev);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700126 if (err != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 printk(KERN_ERR "uml_net_open: failed to get irq(%d)\n", err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 err = -ENETUNREACH;
Jeff Dike14d9ead2006-02-07 12:58:42 -0800129 goto out_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131
132 lp->tl.data = (unsigned long) &lp->user;
133 netif_start_queue(dev);
134
135 /* clear buffer - it can happen that the host side of the interface
136 * is full when we get here. In this case, new data is never queued,
137 * SIGIOs never arrive, and the net never works.
138 */
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700139 while ((err = uml_net_rx(dev)) > 0) ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Jeff Dike14d9ead2006-02-07 12:58:42 -0800141 spin_lock(&opened_lock);
142 list_add(&lp->list, &opened);
143 spin_unlock(&opened_lock);
144
145 return 0;
146out_close:
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700147 if (lp->close != NULL) (*lp->close)(lp->fd, &lp->user);
Jeff Dike14d9ead2006-02-07 12:58:42 -0800148 lp->fd = -1;
149out:
Jeff Dike14d9ead2006-02-07 12:58:42 -0800150 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
153static int uml_net_close(struct net_device *dev)
154{
155 struct uml_net_private *lp = dev->priv;
Jeff Dikef28169d2007-02-10 01:43:53 -0800156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 free_irq(dev->irq, dev);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700160 if (lp->close != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 (*lp->close)(lp->fd, &lp->user);
162 lp->fd = -1;
163
Jeff Dike14d9ead2006-02-07 12:58:42 -0800164 spin_lock(&opened_lock);
165 list_del(&lp->list);
166 spin_unlock(&opened_lock);
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return 0;
169}
170
171static int uml_net_start_xmit(struct sk_buff *skb, struct net_device *dev)
172{
173 struct uml_net_private *lp = dev->priv;
174 unsigned long flags;
175 int len;
176
177 netif_stop_queue(dev);
178
179 spin_lock_irqsave(&lp->lock, flags);
180
181 len = (*lp->write)(lp->fd, &skb, lp);
182
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700183 if (len == skb->len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 lp->stats.tx_packets++;
185 lp->stats.tx_bytes += skb->len;
186 dev->trans_start = jiffies;
187 netif_start_queue(dev);
188
189 /* this is normally done in the interrupt when tx finishes */
190 netif_wake_queue(dev);
Jeff Dikef28169d2007-02-10 01:43:53 -0800191 }
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700192 else if (len == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 netif_start_queue(dev);
194 lp->stats.tx_dropped++;
195 }
196 else {
197 netif_start_queue(dev);
198 printk(KERN_ERR "uml_net_start_xmit: failed(%d)\n", len);
199 }
200
201 spin_unlock_irqrestore(&lp->lock, flags);
202
203 dev_kfree_skb(skb);
204
205 return 0;
206}
207
208static struct net_device_stats *uml_net_get_stats(struct net_device *dev)
209{
210 struct uml_net_private *lp = dev->priv;
211 return &lp->stats;
212}
213
214static void uml_net_set_multicast_list(struct net_device *dev)
215{
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700216 if (dev->flags & IFF_PROMISC)
217 return;
218 else if (dev->mc_count)
219 dev->flags |= IFF_ALLMULTI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 else dev->flags &= ~IFF_ALLMULTI;
221}
222
223static void uml_net_tx_timeout(struct net_device *dev)
224{
225 dev->trans_start = jiffies;
226 netif_wake_queue(dev);
227}
228
229static int uml_net_set_mac(struct net_device *dev, void *addr)
230{
231 struct uml_net_private *lp = dev->priv;
232 struct sockaddr *hwaddr = addr;
233
Paolo 'Blaisorblade' Giarrusso48af05e2006-09-27 01:50:31 -0700234 spin_lock_irq(&lp->lock);
Paolo 'Blaisorblade' Giarrussobf61f502006-09-25 23:33:07 -0700235 set_ether_mac(dev, hwaddr->sa_data);
Paolo 'Blaisorblade' Giarrusso48af05e2006-09-27 01:50:31 -0700236 spin_unlock_irq(&lp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800238 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
241static int uml_net_change_mtu(struct net_device *dev, int new_mtu)
242{
243 struct uml_net_private *lp = dev->priv;
244 int err = 0;
245
Paolo 'Blaisorblade' Giarrusso48af05e2006-09-27 01:50:31 -0700246 spin_lock_irq(&lp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 new_mtu = (*lp->set_mtu)(new_mtu, &lp->user);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700249 if (new_mtu < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 err = new_mtu;
251 goto out;
252 }
253
254 dev->mtu = new_mtu;
255
256 out:
Paolo 'Blaisorblade' Giarrusso48af05e2006-09-27 01:50:31 -0700257 spin_unlock_irq(&lp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return err;
259}
260
Christoph Hellwig6d387482005-11-07 06:21:21 +0100261static void uml_net_get_drvinfo(struct net_device *dev,
262 struct ethtool_drvinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Christoph Hellwig6d387482005-11-07 06:21:21 +0100264 strcpy(info->driver, DRIVER_NAME);
265 strcpy(info->version, "42");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Christoph Hellwig6d387482005-11-07 06:21:21 +0100268static struct ethtool_ops uml_net_ethtool_ops = {
269 .get_drvinfo = uml_net_get_drvinfo,
270 .get_link = ethtool_op_get_link,
271};
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273void uml_net_user_timer_expire(unsigned long _conn)
274{
275#ifdef undef
276 struct connection *conn = (struct connection *)_conn;
277
278 dprintk(KERN_INFO "uml_net_user_timer_expire [%p]\n", conn);
279 do_connect(conn);
280#endif
281}
282
Paolo 'Blaisorblade' Giarrussoe0247152007-05-06 14:51:13 -0700283static void setup_etheraddr(char *str, unsigned char *addr, char *name)
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700284{
285 char *end;
286 int i;
287
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700288 if (str == NULL)
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700289 goto random;
290
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700291 for (i = 0;i < 6; i++) {
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700292 addr[i] = simple_strtoul(str, &end, 16);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700293 if ((end == str) ||
294 ((*end != ':') && (*end != ',') && (*end != '\0'))) {
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700295 printk(KERN_ERR
296 "setup_etheraddr: failed to parse '%s' "
297 "as an ethernet address\n", str);
298 goto random;
299 }
300 str = end + 1;
301 }
Paolo 'Blaisorblade' Giarrussoe0247152007-05-06 14:51:13 -0700302 if (is_multicast_ether_addr(addr)) {
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700303 printk(KERN_ERR
Paolo 'Blaisorblade' Giarrussoe0247152007-05-06 14:51:13 -0700304 "Attempt to assign a multicast ethernet address to a "
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700305 "device disallowed\n");
306 goto random;
307 }
Paolo 'Blaisorblade' Giarrussoe0247152007-05-06 14:51:13 -0700308 if (!is_valid_ether_addr(addr)) {
309 printk(KERN_ERR
310 "Attempt to assign an invalid ethernet address to a "
311 "device disallowed\n");
312 goto random;
313 }
314 if (!is_local_ether_addr(addr)) {
315 printk(KERN_WARNING
Jeff Dike7d982302007-05-08 00:35:04 -0700316 "Warning: attempt to assign a globally valid ethernet "
317 "address to a device\n");
318 printk(KERN_WARNING "You should better enable the 2nd "
319 "rightmost bit in the first byte of the MAC,\n");
320 printk(KERN_WARNING "i.e. %02x:%02x:%02x:%02x:%02x:%02x\n",
321 addr[0] | 0x02, addr[1], addr[2], addr[3], addr[4],
322 addr[5]);
323 goto random;
Paolo 'Blaisorblade' Giarrussoe0247152007-05-06 14:51:13 -0700324 }
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700325 return;
326
327random:
Paolo 'Blaisorblade' Giarrussoe0247152007-05-06 14:51:13 -0700328 printk(KERN_INFO
329 "Choosing a random ethernet address for device %s\n", name);
Ollie Wildd6c64102006-09-29 15:50:28 -0700330 random_ether_addr(addr);
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700331}
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333static DEFINE_SPINLOCK(devices_lock);
Jeff Dike90107722006-01-06 00:18:54 -0800334static LIST_HEAD(devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Russell King3ae5eae2005-11-09 22:32:44 +0000336static struct platform_driver uml_net_driver = {
337 .driver = {
338 .name = DRIVER_NAME,
339 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340};
341static int driver_registered;
342
Jeff Dike2e3f5252007-05-06 14:51:29 -0700343static void net_device_release(struct device *dev)
344{
345 struct uml_net *device = dev->driver_data;
346 struct net_device *netdev = device->dev;
347 struct uml_net_private *lp = netdev->priv;
348
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700349 if (lp->remove != NULL)
Jeff Dike2e3f5252007-05-06 14:51:29 -0700350 (*lp->remove)(&lp->user);
351 list_del(&device->list);
352 kfree(device);
353 free_netdev(netdev);
354}
355
Jeff Dikef34d9d22007-05-06 14:51:04 -0700356static void eth_configure(int n, void *init, char *mac,
357 struct transport *transport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 struct uml_net *device;
360 struct net_device *dev;
361 struct uml_net_private *lp;
Paolo 'Blaisorblade' Giarrussoc74c69b2007-05-06 14:51:15 -0700362 int err, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Paolo 'Blaisorblade' Giarrussoc74c69b2007-05-06 14:51:15 -0700364 size = transport->private_size + sizeof(struct uml_net_private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Yan Burman0268bd02006-12-12 19:54:52 +0100366 device = kzalloc(sizeof(*device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (device == NULL) {
Paolo 'Blaisorblade' Giarrusso8c840832007-05-06 14:51:14 -0700368 printk(KERN_ERR "eth_configure failed to allocate struct "
369 "uml_net\n");
Jeff Dikef34d9d22007-05-06 14:51:04 -0700370 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372
Paolo 'Blaisorblade' Giarrusso8c840832007-05-06 14:51:14 -0700373 dev = alloc_etherdev(size);
374 if (dev == NULL) {
375 printk(KERN_ERR "eth_configure: failed to allocate struct "
376 "net_device for eth%d\n", n);
377 goto out_free_device;
378 }
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 INIT_LIST_HEAD(&device->list);
381 device->index = n;
382
Paolo 'Blaisorblade' Giarrussoe0247152007-05-06 14:51:13 -0700383 /* If this name ends up conflicting with an existing registered
384 * netdevice, that is OK, register_netdev{,ice}() will notice this
385 * and fail.
386 */
Paolo 'Blaisorblade' Giarrusso8c840832007-05-06 14:51:14 -0700387 snprintf(dev->name, sizeof(dev->name), "eth%d", n);
Paolo 'Blaisorblade' Giarrussoe0247152007-05-06 14:51:13 -0700388
Paolo 'Blaisorblade' Giarrusso8c840832007-05-06 14:51:14 -0700389 setup_etheraddr(mac, device->mac, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 printk(KERN_INFO "Netdevice %d ", n);
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700392 printk("(%02x:%02x:%02x:%02x:%02x:%02x) ",
393 device->mac[0], device->mac[1],
394 device->mac[2], device->mac[3],
395 device->mac[4], device->mac[5]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 printk(": ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Paolo 'Blaisorblade' Giarrussoe56a7882006-01-18 17:42:55 -0800398 lp = dev->priv;
399 /* This points to the transport private data. It's still clear, but we
400 * must memset it to 0 *now*. Let's help the drivers. */
401 memset(lp, 0, size);
Peter Zijlstraeff3b632006-12-13 00:33:50 -0800402 INIT_WORK(&lp->work, uml_dev_close);
Paolo 'Blaisorblade' Giarrussoe56a7882006-01-18 17:42:55 -0800403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 /* sysfs register */
405 if (!driver_registered) {
Russell King3ae5eae2005-11-09 22:32:44 +0000406 platform_driver_register(&uml_net_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 driver_registered = 1;
408 }
409 device->pdev.id = n;
410 device->pdev.name = DRIVER_NAME;
Jeff Dike2e3f5252007-05-06 14:51:29 -0700411 device->pdev.dev.release = net_device_release;
412 device->pdev.dev.driver_data = device;
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700413 if (platform_device_register(&device->pdev))
Jeff Dikef34d9d22007-05-06 14:51:04 -0700414 goto out_free_netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 SET_NETDEV_DEV(dev,&device->pdev.dev);
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 device->dev = dev;
418
Jeff Dikef34d9d22007-05-06 14:51:04 -0700419 /*
420 * These just fill in a data structure, so there's no failure
421 * to be worried about.
422 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 (*transport->kern->init)(dev, init);
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 *lp = ((struct uml_net_private)
426 { .list = LIST_HEAD_INIT(lp->list),
427 .dev = dev,
428 .fd = -1,
429 .mac = { 0xfe, 0xfd, 0x0, 0x0, 0x0, 0x0},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 .protocol = transport->kern->protocol,
431 .open = transport->user->open,
432 .close = transport->user->close,
433 .remove = transport->user->remove,
434 .read = transport->kern->read,
435 .write = transport->kern->write,
436 .add_address = transport->user->add_address,
437 .delete_address = transport->user->delete_address,
Paolo 'Blaisorblade' Giarrussoc74c69b2007-05-06 14:51:15 -0700438 .set_mtu = transport->user->set_mtu });
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 init_timer(&lp->tl);
441 spin_lock_init(&lp->lock);
442 lp->tl.function = uml_net_user_timer_expire;
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700443 memcpy(lp->mac, device->mac, sizeof(lp->mac));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Jeff Dikef34d9d22007-05-06 14:51:04 -0700445 if ((transport->user->init != NULL) &&
446 ((*transport->user->init)(&lp->user, dev) != 0))
447 goto out_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Jeff Dikeb10aeee2006-09-29 01:58:50 -0700449 set_ether_mac(dev, device->mac);
Jeff Dikef34d9d22007-05-06 14:51:04 -0700450 dev->mtu = transport->user->max_packet;
451 dev->open = uml_net_open;
452 dev->hard_start_xmit = uml_net_start_xmit;
453 dev->stop = uml_net_close;
454 dev->get_stats = uml_net_get_stats;
455 dev->set_multicast_list = uml_net_set_multicast_list;
456 dev->tx_timeout = uml_net_tx_timeout;
457 dev->set_mac_address = uml_net_set_mac;
458 dev->change_mtu = uml_net_change_mtu;
459 dev->ethtool_ops = &uml_net_ethtool_ops;
460 dev->watchdog_timeo = (HZ >> 1);
461 dev->irq = UM_ETH_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Jeff Dikef34d9d22007-05-06 14:51:04 -0700463 rtnl_lock();
464 err = register_netdevice(dev);
465 rtnl_unlock();
466 if (err)
467 goto out_undo_user_init;
468
469 spin_lock(&devices_lock);
470 list_add(&device->list, &devices);
471 spin_unlock(&devices_lock);
472
473 return;
474
475out_undo_user_init:
Paolo 'Blaisorblade' Giarrusso8c840832007-05-06 14:51:14 -0700476 if (transport->user->remove != NULL)
Jeff Dikef34d9d22007-05-06 14:51:04 -0700477 (*transport->user->remove)(&lp->user);
478out_unregister:
479 platform_device_unregister(&device->pdev);
Jeff Dike7d982302007-05-08 00:35:04 -0700480 return; /* platform_device_unregister frees dev and device */
Jeff Dikef34d9d22007-05-06 14:51:04 -0700481out_free_netdev:
482 free_netdev(dev);
Paolo 'Blaisorblade' Giarrusso8c840832007-05-06 14:51:14 -0700483out_free_device:
Jeff Dikef34d9d22007-05-06 14:51:04 -0700484 kfree(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
487static struct uml_net *find_device(int n)
488{
489 struct uml_net *device;
490 struct list_head *ele;
491
492 spin_lock(&devices_lock);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700493 list_for_each(ele, &devices) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 device = list_entry(ele, struct uml_net, list);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700495 if (device->index == n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 goto out;
497 }
498 device = NULL;
499 out:
500 spin_unlock(&devices_lock);
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800501 return device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
Jeff Dikef28169d2007-02-10 01:43:53 -0800504static int eth_parse(char *str, int *index_out, char **str_out,
505 char **error_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
507 char *end;
Jeff Dikef28169d2007-02-10 01:43:53 -0800508 int n, err = -EINVAL;;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 n = simple_strtoul(str, &end, 0);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700511 if (end == str) {
Jeff Dikef28169d2007-02-10 01:43:53 -0800512 *error_out = "Bad device number";
513 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
Jeff Dikef28169d2007-02-10 01:43:53 -0800515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 str = end;
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700517 if (*str != '=') {
Jeff Dikef28169d2007-02-10 01:43:53 -0800518 *error_out = "Expected '=' after device number";
519 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
Jeff Dikef28169d2007-02-10 01:43:53 -0800521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 str++;
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700523 if (find_device(n)) {
Jeff Dikef28169d2007-02-10 01:43:53 -0800524 *error_out = "Device already configured";
525 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
Jeff Dikef28169d2007-02-10 01:43:53 -0800527
528 *index_out = n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 *str_out = str;
Jeff Dikef28169d2007-02-10 01:43:53 -0800530 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
533struct eth_init {
534 struct list_head list;
535 char *init;
536 int index;
537};
538
Jeff Diked3b7f692007-02-10 01:43:56 -0800539static DEFINE_SPINLOCK(transports_lock);
540static LIST_HEAD(transports);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542/* Filled in during early boot */
Jeff Dikec862fc32007-02-10 01:44:04 -0800543static LIST_HEAD(eth_cmd_line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545static int check_transport(struct transport *transport, char *eth, int n,
546 void **init_out, char **mac_out)
547{
548 int len;
549
550 len = strlen(transport->name);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700551 if (strncmp(eth, transport->name, len))
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800552 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 eth += len;
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700555 if (*eth == ',')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 eth++;
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700557 else if (*eth != '\0')
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800558 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 *init_out = kmalloc(transport->setup_size, GFP_KERNEL);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700561 if (*init_out == NULL)
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800562 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700564 if (!transport->setup(eth, mac_out, *init_out)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 kfree(*init_out);
566 *init_out = NULL;
567 }
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800568 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
571void register_transport(struct transport *new)
572{
573 struct list_head *ele, *next;
574 struct eth_init *eth;
575 void *init;
576 char *mac = NULL;
577 int match;
578
Jeff Diked3b7f692007-02-10 01:43:56 -0800579 spin_lock(&transports_lock);
580 BUG_ON(!list_empty(&new->list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 list_add(&new->list, &transports);
Jeff Diked3b7f692007-02-10 01:43:56 -0800582 spin_unlock(&transports_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700584 list_for_each_safe(ele, next, &eth_cmd_line) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 eth = list_entry(ele, struct eth_init, list);
586 match = check_transport(new, eth->init, eth->index, &init,
587 &mac);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700588 if (!match)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 continue;
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700590 else if (init != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 eth_configure(eth->index, init, mac, new);
592 kfree(init);
593 }
594 list_del(&eth->list);
595 }
596}
597
598static int eth_setup_common(char *str, int index)
599{
600 struct list_head *ele;
601 struct transport *transport;
602 void *init;
603 char *mac = NULL;
Jeff Dikec862fc32007-02-10 01:44:04 -0800604 int found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Jeff Dikec862fc32007-02-10 01:44:04 -0800606 spin_lock(&transports_lock);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700607 list_for_each(ele, &transports) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 transport = list_entry(ele, struct transport, list);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700609 if (!check_transport(transport, str, index, &init, &mac))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 continue;
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700611 if (init != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 eth_configure(index, init, mac, transport);
613 kfree(init);
614 }
Jeff Dikec862fc32007-02-10 01:44:04 -0800615 found = 1;
616 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
Jeff Dikec862fc32007-02-10 01:44:04 -0800618
619 spin_unlock(&transports_lock);
620 return found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
Jeff Dike97a1fcb2007-07-23 18:43:48 -0700623static int __init eth_setup(char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625 struct eth_init *new;
Jeff Dikef28169d2007-02-10 01:43:53 -0800626 char *error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 int n, err;
628
Jeff Dikef28169d2007-02-10 01:43:53 -0800629 err = eth_parse(str, &n, &str, &error);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700630 if (err) {
Jeff Dikef28169d2007-02-10 01:43:53 -0800631 printk(KERN_ERR "eth_setup - Couldn't parse '%s' : %s\n",
632 str, error);
Jeff Dike1183dc92006-09-27 01:50:43 -0700633 return 1;
Jeff Dikef28169d2007-02-10 01:43:53 -0800634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Jeff Dike1183dc92006-09-27 01:50:43 -0700636 new = alloc_bootmem(sizeof(*new));
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700637 if (new == NULL) {
638 printk(KERN_ERR "eth_init : alloc_bootmem failed\n");
Jeff Dike1183dc92006-09-27 01:50:43 -0700639 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
641
642 INIT_LIST_HEAD(&new->list);
643 new->index = n;
644 new->init = str;
645
646 list_add_tail(&new->list, &eth_cmd_line);
Jeff Dike1183dc92006-09-27 01:50:43 -0700647 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
650__setup("eth", eth_setup);
651__uml_help(eth_setup,
652"eth[0-9]+=<transport>,<options>\n"
653" Configure a network device.\n\n"
654);
655
Jeff Dikef28169d2007-02-10 01:43:53 -0800656static int net_config(char *str, char **error_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
658 int n, err;
659
Jeff Dikef28169d2007-02-10 01:43:53 -0800660 err = eth_parse(str, &n, &str, error_out);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700661 if (err)
Jeff Dikef28169d2007-02-10 01:43:53 -0800662 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Jeff Dikef28169d2007-02-10 01:43:53 -0800664 /* This string is broken up and the pieces used by the underlying
665 * driver. So, it is freed only if eth_setup_common fails.
666 */
Jeff Dike970d6e32006-01-06 00:18:48 -0800667 str = kstrdup(str, GFP_KERNEL);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700668 if (str == NULL) {
Jeff Dikef28169d2007-02-10 01:43:53 -0800669 *error_out = "net_config failed to strdup string";
670 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
672 err = !eth_setup_common(str, n);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700673 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 kfree(str);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700675 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Jeff Dike29d56cf2005-06-25 14:55:25 -0700678static int net_id(char **str, int *start_out, int *end_out)
679{
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700680 char *end;
681 int n;
Jeff Dike29d56cf2005-06-25 14:55:25 -0700682
683 n = simple_strtoul(*str, &end, 0);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700684 if ((*end != '\0') || (end == *str))
Jeff Dike29d56cf2005-06-25 14:55:25 -0700685 return -1;
686
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700687 *start_out = n;
688 *end_out = n;
689 *str = end;
690 return n;
Jeff Dike29d56cf2005-06-25 14:55:25 -0700691}
692
Jeff Dikef28169d2007-02-10 01:43:53 -0800693static int net_remove(int n, char **error_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
695 struct uml_net *device;
696 struct net_device *dev;
697 struct uml_net_private *lp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 device = find_device(n);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700700 if (device == NULL)
Jeff Dike29d56cf2005-06-25 14:55:25 -0700701 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 dev = device->dev;
704 lp = dev->priv;
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700705 if (lp->fd > 0)
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800706 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 unregister_netdev(dev);
708 platform_device_unregister(&device->pdev);
709
Jeff Dike29d56cf2005-06-25 14:55:25 -0700710 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
713static struct mc_device net_mc = {
Jeff Dike84f48d42007-02-10 01:44:01 -0800714 .list = LIST_HEAD_INIT(net_mc.list),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 .name = "eth",
716 .config = net_config,
717 .get_config = NULL,
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800718 .id = net_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 .remove = net_remove,
720};
721
722static int uml_inetaddr_event(struct notifier_block *this, unsigned long event,
723 void *ptr)
724{
725 struct in_ifaddr *ifa = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 struct net_device *dev = ifa->ifa_dev->dev;
727 struct uml_net_private *lp;
728 void (*proc)(unsigned char *, unsigned char *, void *);
729 unsigned char addr_buf[4], netmask_buf[4];
730
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700731 if (dev->open != uml_net_open)
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800732 return NOTIFY_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 lp = dev->priv;
735
736 proc = NULL;
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700737 switch (event) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 case NETDEV_UP:
739 proc = lp->add_address;
740 break;
741 case NETDEV_DOWN:
742 proc = lp->delete_address;
743 break;
744 }
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700745 if (proc != NULL) {
Bodo Stroesser0e764222005-11-07 00:58:47 -0800746 memcpy(addr_buf, &ifa->ifa_address, sizeof(addr_buf));
747 memcpy(netmask_buf, &ifa->ifa_mask, sizeof(netmask_buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 (*proc)(addr_buf, netmask_buf, &lp->user);
749 }
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800750 return NOTIFY_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
Jeff Dikec862fc32007-02-10 01:44:04 -0800753/* uml_net_init shouldn't be called twice on two CPUs at the same time */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754struct notifier_block uml_inetaddr_notifier = {
755 .notifier_call = uml_inetaddr_event,
756};
757
758static int uml_net_init(void)
759{
760 struct list_head *ele;
Jeff Dikef28169d2007-02-10 01:43:53 -0800761 struct uml_net_private *lp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 struct in_device *ip;
763 struct in_ifaddr *in;
764
765 mconsole_register_dev(&net_mc);
766 register_inetaddr_notifier(&uml_inetaddr_notifier);
767
768 /* Devices may have been opened already, so the uml_inetaddr_notifier
769 * didn't get a chance to run for them. This fakes it so that
770 * addresses which have already been set up get handled properly.
771 */
Jeff Dikec862fc32007-02-10 01:44:04 -0800772 spin_lock(&opened_lock);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700773 list_for_each(ele, &opened) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 lp = list_entry(ele, struct uml_net_private, list);
775 ip = lp->dev->ip_ptr;
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700776 if (ip == NULL)
Jeff Dikec862fc32007-02-10 01:44:04 -0800777 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 in = ip->ifa_list;
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700779 while (in != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 uml_inetaddr_event(NULL, NETDEV_UP, in);
781 in = in->ifa_next;
782 }
Jeff Dikef28169d2007-02-10 01:43:53 -0800783 }
Jeff Dikec862fc32007-02-10 01:44:04 -0800784 spin_unlock(&opened_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Jeff Dikec862fc32007-02-10 01:44:04 -0800786 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
789__initcall(uml_net_init);
790
791static void close_devices(void)
792{
793 struct list_head *ele;
794 struct uml_net_private *lp;
795
Jeff Dikec862fc32007-02-10 01:44:04 -0800796 spin_lock(&opened_lock);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700797 list_for_each(ele, &opened) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 lp = list_entry(ele, struct uml_net_private, list);
Jeff Dike8d93c702006-01-06 00:19:06 -0800799 free_irq(lp->dev->irq, lp->dev);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700800 if ((lp->close != NULL) && (lp->fd >= 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 (*lp->close)(lp->fd, &lp->user);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700802 if (lp->remove != NULL)
Jeff Dikec862fc32007-02-10 01:44:04 -0800803 (*lp->remove)(&lp->user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
Jeff Dikec862fc32007-02-10 01:44:04 -0800805 spin_unlock(&opened_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
808__uml_exitcall(close_devices);
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810struct sk_buff *ether_adjust_skb(struct sk_buff *skb, int extra)
811{
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700812 if ((skb != NULL) && (skb_tailroom(skb) < extra)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 struct sk_buff *skb2;
814
815 skb2 = skb_copy_expand(skb, 0, extra, GFP_ATOMIC);
816 dev_kfree_skb(skb);
817 skb = skb2;
818 }
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700819 if (skb != NULL) skb_put(skb, extra);
820 return skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
822
Jeff Dikef28169d2007-02-10 01:43:53 -0800823void iter_addresses(void *d, void (*cb)(unsigned char *, unsigned char *,
824 void *),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 void *arg)
826{
827 struct net_device *dev = d;
828 struct in_device *ip = dev->ip_ptr;
829 struct in_ifaddr *in;
830 unsigned char address[4], netmask[4];
831
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700832 if (ip == NULL) return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 in = ip->ifa_list;
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700834 while (in != NULL) {
Bodo Stroesser0e764222005-11-07 00:58:47 -0800835 memcpy(address, &in->ifa_address, sizeof(address));
836 memcpy(netmask, &in->ifa_mask, sizeof(netmask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 (*cb)(address, netmask, arg);
838 in = in->ifa_next;
839 }
840}
841
842int dev_netmask(void *d, void *m)
843{
844 struct net_device *dev = d;
845 struct in_device *ip = dev->ip_ptr;
846 struct in_ifaddr *in;
Al Viroa144ea42006-09-28 18:00:55 -0700847 __be32 *mask_out = m;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700849 if (ip == NULL)
850 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 in = ip->ifa_list;
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700853 if (in == NULL)
854 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 *mask_out = in->ifa_mask;
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700857 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
859
860void *get_output_buffer(int *len_out)
861{
862 void *ret;
863
864 ret = (void *) __get_free_pages(GFP_KERNEL, 0);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700865 if (ret) *len_out = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 else *len_out = 0;
Jeff Dike4ea21cd2007-02-10 01:43:56 -0800867 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
869
870void free_output_buffer(void *buffer)
871{
872 free_pages((unsigned long) buffer, 0);
873}
874
Jeff Dikef28169d2007-02-10 01:43:53 -0800875int tap_setup_common(char *str, char *type, char **dev_name, char **mac_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 char **gate_addr)
877{
878 char *remain;
879
880 remain = split_if_spec(str, dev_name, mac_out, gate_addr, NULL);
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700881 if (remain != NULL) {
882 printk(KERN_ERR "tap_setup_common - Extra garbage on "
883 "specification : '%s'\n", remain);
884 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 }
886
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700887 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889
890unsigned short eth_protocol(struct sk_buff *skb)
891{
Jeff Dikecd1ae0e2007-10-16 01:27:29 -0700892 return eth_type_trans(skb, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893}