1 /* Copyright (c) 2007 Coraid, Inc. See COPYING for GPL terms. */
4 * Ethernet portion of AoE driver
7 #include <linux/hdreg.h>
8 #include <linux/blkdev.h>
9 #include <linux/netdevice.h>
10 #include <linux/moduleparam.h>
11 #include <net/net_namespace.h>
12 #include <asm/unaligned.h>
17 static char *aoe_errlist[] =
20 "unrecognized command code",
21 "bad argument parameter",
23 "config string present",
31 static char aoe_iflist[IFLISTSZ];
32 module_param_string(aoe_iflist, aoe_iflist, IFLISTSZ, 0600);
33 MODULE_PARM_DESC(aoe_iflist, "aoe_iflist=\"dev1 [dev2 ...]\"\n");
36 static int __init aoe_iflist_setup(char *str)
38 strncpy(aoe_iflist, str, IFLISTSZ);
39 aoe_iflist[IFLISTSZ - 1] = '\0';
43 __setup("aoe_iflist=", aoe_iflist_setup);
47 is_aoe_netif(struct net_device *ifp)
52 if (aoe_iflist[0] == '\0')
55 p = aoe_iflist + strspn(aoe_iflist, WHITESPACE);
56 for (; *p; p = q + strspn(q, WHITESPACE)) {
57 q = p + strcspn(p, WHITESPACE);
61 len = strlen(p); /* last token in aoe_iflist */
63 if (strlen(ifp->name) == len && !strncmp(ifp->name, p, len))
73 set_aoe_iflist(const char __user *user_str, size_t size)
78 if (copy_from_user(aoe_iflist, user_str, size)) {
79 printk(KERN_INFO "aoe: copy from user failed\n");
82 aoe_iflist[size] = 0x00;
87 mac_addr(char addr[6])
90 char *p = (char *) &n;
92 memcpy(p + 2, addr, 6); /* (sizeof addr != 6) */
94 return (unsigned long long) __be64_to_cpu(n);
98 aoenet_xmit(struct sk_buff *sl)
104 skb->next = skb->prev = NULL;
110 * (1) len doesn't include the header by default. I want this.
113 aoenet_rcv(struct sk_buff *skb, struct net_device *ifp, struct packet_type *pt, struct net_device *orig_dev)
118 if (dev_net(ifp) != &init_net)
121 skb = skb_share_check(skb, GFP_ATOMIC);
124 if (skb_linearize(skb))
126 if (!is_aoe_netif(ifp))
128 skb_push(skb, ETH_HLEN); /* (1) */
130 h = (struct aoe_hdr *) skb_mac_header(skb);
131 n = be32_to_cpu(get_unaligned(&h->tag));
132 if ((h->verfl & AOEFL_RSP) == 0 || (n & 1<<31))
135 if (h->verfl & AOEFL_ERR) {
141 "%s%d.%d@%s; ecode=%d '%s'\n",
142 "aoe: error packet from ",
143 be16_to_cpu(get_unaligned(&h->major)),
144 h->minor, skb->dev->name,
145 h->err, aoe_errlist[n]);
157 printk(KERN_INFO "aoe: unknown cmd %d\n", h->cmd);
164 static struct packet_type aoe_pt = {
165 .type = __constant_htons(ETH_P_AOE),
172 dev_add_pack(&aoe_pt);
179 dev_remove_pack(&aoe_pt);