blob: ce0d62cd71b265de46e12447b3a665b10c479131 [file] [log] [blame]
Ed L. Cashin52e112b2008-02-08 04:20:09 -08001/* Copyright (c) 2007 Coraid, Inc. See COPYING for GPL terms. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * aoenet.c
4 * Ethernet portion of AoE driver
5 */
6
7#include <linux/hdreg.h>
8#include <linux/blkdev.h>
9#include <linux/netdevice.h>
Ed L Cashin03c41c42005-04-29 10:24:03 -040010#include <linux/moduleparam.h>
Eric W. Biedermane730c152007-09-17 11:53:39 -070011#include <net/net_namespace.h>
David S. Miller43ecf522007-03-01 18:30:08 -080012#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "aoe.h"
14
15#define NECODES 5
16
17static char *aoe_errlist[] =
18{
19 "no such error",
20 "unrecognized command code",
21 "bad argument parameter",
22 "device unavailable",
23 "config string present",
24 "unsupported version"
25};
26
27enum {
28 IFLISTSZ = 1024,
29};
30
31static char aoe_iflist[IFLISTSZ];
Ed L Cashin03c41c42005-04-29 10:24:03 -040032module_param_string(aoe_iflist, aoe_iflist, IFLISTSZ, 0600);
Niels de Vos61a2d072008-07-31 00:07:23 -070033MODULE_PARM_DESC(aoe_iflist, "aoe_iflist=\"dev1 [dev2 ...]\"");
Ed L Cashin03c41c42005-04-29 10:24:03 -040034
35#ifndef MODULE
36static int __init aoe_iflist_setup(char *str)
37{
38 strncpy(aoe_iflist, str, IFLISTSZ);
39 aoe_iflist[IFLISTSZ - 1] = '\0';
40 return 1;
41}
42
43__setup("aoe_iflist=", aoe_iflist_setup);
44#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46int
47is_aoe_netif(struct net_device *ifp)
48{
49 register char *p, *q;
50 register int len;
51
52 if (aoe_iflist[0] == '\0')
53 return 1;
54
Ed L Cashin03c41c42005-04-29 10:24:03 -040055 p = aoe_iflist + strspn(aoe_iflist, WHITESPACE);
56 for (; *p; p = q + strspn(q, WHITESPACE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 q = p + strcspn(p, WHITESPACE);
58 if (q != p)
59 len = q - p;
60 else
61 len = strlen(p); /* last token in aoe_iflist */
62
63 if (strlen(ifp->name) == len && !strncmp(ifp->name, p, len))
64 return 1;
65 if (q == p)
66 break;
67 }
68
69 return 0;
70}
71
72int
73set_aoe_iflist(const char __user *user_str, size_t size)
74{
75 if (size >= IFLISTSZ)
76 return -EINVAL;
77
78 if (copy_from_user(aoe_iflist, user_str, size)) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -040079 printk(KERN_INFO "aoe: copy from user failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return -EFAULT;
81 }
82 aoe_iflist[size] = 0x00;
83 return 0;
84}
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086void
David S. Millere9bb8fb2008-09-21 22:36:49 -070087aoenet_xmit(struct sk_buff_head *queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
David S. Millere9bb8fb2008-09-21 22:36:49 -070089 struct sk_buff *skb, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
David S. Millerd8779842008-09-23 20:47:22 -070091 skb_queue_walk_safe(queue, skb, tmp) {
92 __skb_unlink(skb, queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 dev_queue_xmit(skb);
David S. Millerd8779842008-09-23 20:47:22 -070094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
97/*
98 * (1) len doesn't include the header by default. I want this.
99 */
100static int
David S. Millerf2ccd8f2005-08-09 19:34:12 -0700101aoenet_rcv(struct sk_buff *skb, struct net_device *ifp, struct packet_type *pt, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
103 struct aoe_hdr *h;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -0700104 u32 n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900106 if (dev_net(ifp) != &init_net)
Eric W. Biedermane730c152007-09-17 11:53:39 -0700107 goto exit;
108
Ed L. Cashin5dc401e2006-02-07 11:26:39 -0500109 skb = skb_share_check(skb, GFP_ATOMIC);
110 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return 0;
Herbert Xu364c6ba2006-06-09 16:10:40 -0700112 if (skb_linearize(skb))
Ed L. Cashin5dc401e2006-02-07 11:26:39 -0500113 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 if (!is_aoe_netif(ifp))
115 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 skb_push(skb, ETH_HLEN); /* (1) */
117
Ed L. Cashinabdbf942007-10-16 23:27:03 -0700118 h = (struct aoe_hdr *) skb_mac_header(skb);
Harvey Harrisonf885f8d2008-04-29 01:03:30 -0700119 n = get_unaligned_be32(&h->tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if ((h->verfl & AOEFL_RSP) == 0 || (n & 1<<31))
121 goto exit;
122
123 if (h->verfl & AOEFL_ERR) {
124 n = h->err;
125 if (n > NECODES)
126 n = 0;
127 if (net_ratelimit())
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800128 printk(KERN_ERR
129 "%s%d.%d@%s; ecode=%d '%s'\n",
130 "aoe: error packet from ",
Harvey Harrisonf885f8d2008-04-29 01:03:30 -0700131 get_unaligned_be16(&h->major),
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800132 h->minor, skb->dev->name,
133 h->err, aoe_errlist[n]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 goto exit;
135 }
136
137 switch (h->cmd) {
138 case AOECMD_ATA:
139 aoecmd_ata_rsp(skb);
140 break;
141 case AOECMD_CFG:
142 aoecmd_cfg_rsp(skb);
143 break;
144 default:
Ed Cashinb6d6c512009-02-18 14:48:13 -0800145 if (h->cmd >= AOECMD_VEND_MIN)
146 break; /* don't complain about vendor commands */
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400147 printk(KERN_INFO "aoe: unknown cmd %d\n", h->cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
149exit:
150 dev_kfree_skb(skb);
151 return 0;
152}
153
Stephen Hemminger7546dd92009-03-09 08:18:29 +0000154static struct packet_type aoe_pt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 .type = __constant_htons(ETH_P_AOE),
156 .func = aoenet_rcv,
157};
158
159int __init
160aoenet_init(void)
161{
162 dev_add_pack(&aoe_pt);
163 return 0;
164}
165
166void
167aoenet_exit(void)
168{
169 dev_remove_pack(&aoe_pt);
170}
171