]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/block/aoe/aoenet.c
[IPV6]: Support Source Address Selection API (RFC5014).
[mirror_ubuntu-zesty-kernel.git] / drivers / block / aoe / aoenet.c
CommitLineData
52e112b3 1/* Copyright (c) 2007 Coraid, Inc. See COPYING for GPL terms. */
1da177e4
LT
2/*
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>
03c41c43 10#include <linux/moduleparam.h>
e730c155 11#include <net/net_namespace.h>
43ecf529 12#include <asm/unaligned.h>
1da177e4
LT
13#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];
03c41c43
EC
32module_param_string(aoe_iflist, aoe_iflist, IFLISTSZ, 0600);
33MODULE_PARM_DESC(aoe_iflist, "aoe_iflist=\"dev1 [dev2 ...]\"\n");
34
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
1da177e4
LT
45
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
03c41c43
EC
55 p = aoe_iflist + strspn(aoe_iflist, WHITESPACE);
56 for (; *p; p = q + strspn(q, WHITESPACE)) {
1da177e4
LT
57 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)) {
a12c93f0 79 printk(KERN_INFO "aoe: copy from user failed\n");
1da177e4
LT
80 return -EFAULT;
81 }
82 aoe_iflist[size] = 0x00;
83 return 0;
84}
85
1eb0da4c 86unsigned long long
1da177e4
LT
87mac_addr(char addr[6])
88{
63e9cc5d 89 __be64 n = 0;
1da177e4
LT
90 char *p = (char *) &n;
91
92 memcpy(p + 2, addr, 6); /* (sizeof addr != 6) */
93
1eb0da4c 94 return (unsigned long long) __be64_to_cpu(n);
1da177e4
LT
95}
96
1da177e4
LT
97void
98aoenet_xmit(struct sk_buff *sl)
99{
100 struct sk_buff *skb;
101
102 while ((skb = sl)) {
103 sl = sl->next;
104 skb->next = skb->prev = NULL;
105 dev_queue_xmit(skb);
106 }
107}
108
109/*
110 * (1) len doesn't include the header by default. I want this.
111 */
112static int
f2ccd8fa 113aoenet_rcv(struct sk_buff *skb, struct net_device *ifp, struct packet_type *pt, struct net_device *orig_dev)
1da177e4
LT
114{
115 struct aoe_hdr *h;
63e9cc5d 116 u32 n;
1da177e4 117
e730c155
EB
118 if (ifp->nd_net != &init_net)
119 goto exit;
120
5dc401ee
EC
121 skb = skb_share_check(skb, GFP_ATOMIC);
122 if (skb == NULL)
1da177e4 123 return 0;
364c6bad 124 if (skb_linearize(skb))
5dc401ee 125 goto exit;
1da177e4
LT
126 if (!is_aoe_netif(ifp))
127 goto exit;
1da177e4
LT
128 skb_push(skb, ETH_HLEN); /* (1) */
129
abdbf94d 130 h = (struct aoe_hdr *) skb_mac_header(skb);
43ecf529 131 n = be32_to_cpu(get_unaligned(&h->tag));
1da177e4
LT
132 if ((h->verfl & AOEFL_RSP) == 0 || (n & 1<<31))
133 goto exit;
134
135 if (h->verfl & AOEFL_ERR) {
136 n = h->err;
137 if (n > NECODES)
138 n = 0;
139 if (net_ratelimit())
68e0d42f
EC
140 printk(KERN_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]);
1da177e4
LT
146 goto exit;
147 }
148
149 switch (h->cmd) {
150 case AOECMD_ATA:
151 aoecmd_ata_rsp(skb);
152 break;
153 case AOECMD_CFG:
154 aoecmd_cfg_rsp(skb);
155 break;
156 default:
a12c93f0 157 printk(KERN_INFO "aoe: unknown cmd %d\n", h->cmd);
1da177e4
LT
158 }
159exit:
160 dev_kfree_skb(skb);
161 return 0;
162}
163
164static struct packet_type aoe_pt = {
165 .type = __constant_htons(ETH_P_AOE),
166 .func = aoenet_rcv,
167};
168
169int __init
170aoenet_init(void)
171{
172 dev_add_pack(&aoe_pt);
173 return 0;
174}
175
176void
177aoenet_exit(void)
178{
179 dev_remove_pack(&aoe_pt);
180}
181