blob: 71ff78c9e4d6c24a3d752cc35956645aa752eb34 [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 * aoecmd.c
4 * Filesystem request handling methods
5 */
6
7#include <linux/hdreg.h>
8#include <linux/blkdev.h>
9#include <linux/skbuff.h>
10#include <linux/netdevice.h>
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050011#include <linux/genhd.h>
Ed L. Cashin68e0d422008-02-08 04:20:00 -080012#include <linux/moduleparam.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070013#include <net/net_namespace.h>
Ed L. Cashin475172f2005-09-29 12:47:40 -040014#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include "aoe.h"
16
Ed L. Cashinb751e8b2006-09-20 14:36:50 -040017static int aoe_deadsecs = 60 * 3;
18module_param(aoe_deadsecs, int, 0644);
19MODULE_PARM_DESC(aoe_deadsecs, "After aoe_deadsecs seconds, give up and fail dev.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Ed L. Cashin7df620d2008-02-08 04:20:07 -080021static int aoe_maxout = 16;
22module_param(aoe_maxout, int, 0644);
23MODULE_PARM_DESC(aoe_maxout,
24 "Only aoe_maxout outstanding packets for every MAC on eX.Y.");
25
Ed L. Cashin68e0d422008-02-08 04:20:00 -080026static struct sk_buff *
Ed L. Cashine407a7f2006-09-20 14:36:49 -040027new_skb(ulong len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
29 struct sk_buff *skb;
30
31 skb = alloc_skb(len, GFP_ATOMIC);
32 if (skb) {
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -070033 skb_reset_mac_header(skb);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -070034 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 skb->protocol = __constant_htons(ETH_P_AOE);
36 skb->priority = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 skb->next = skb->prev = NULL;
38
39 /* tell the network layer not to perform IP checksums
40 * or to get the NIC to do it
41 */
42 skb->ip_summed = CHECKSUM_NONE;
43 }
44 return skb;
45}
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047static struct frame *
Ed L. Cashin68e0d422008-02-08 04:20:00 -080048getframe(struct aoetgt *t, int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
50 struct frame *f, *e;
51
Ed L. Cashin68e0d422008-02-08 04:20:00 -080052 f = t->frames;
53 e = f + t->nframes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 for (; f<e; f++)
55 if (f->tag == tag)
56 return f;
57 return NULL;
58}
59
60/*
61 * Leave the top bit clear so we have tagspace for userland.
62 * The bottom 16 bits are the xmit tick for rexmit/rttavg processing.
63 * This driver reserves tag -1 to mean "unused frame."
64 */
65static int
Ed L. Cashin68e0d422008-02-08 04:20:00 -080066newtag(struct aoetgt *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
68 register ulong n;
69
70 n = jiffies & 0xffff;
Ed L. Cashin68e0d422008-02-08 04:20:00 -080071 return n |= (++t->lasttag & 0x7fff) << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
73
74static int
Ed L. Cashin68e0d422008-02-08 04:20:00 -080075aoehdr_atainit(struct aoedev *d, struct aoetgt *t, struct aoe_hdr *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Ed L. Cashin68e0d422008-02-08 04:20:00 -080077 u32 host_tag = newtag(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Ed L. Cashin68e0d422008-02-08 04:20:00 -080079 memcpy(h->src, t->ifp->nd->dev_addr, sizeof h->src);
80 memcpy(h->dst, t->addr, sizeof h->dst);
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070081 h->type = __constant_cpu_to_be16(ETH_P_AOE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 h->verfl = AOE_HVER;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070083 h->major = cpu_to_be16(d->aoemajor);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 h->minor = d->aoeminor;
85 h->cmd = AOECMD_ATA;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -070086 h->tag = cpu_to_be32(host_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 return host_tag;
89}
90
Ed L. Cashin19bf2632006-09-20 14:36:49 -040091static inline void
92put_lba(struct aoe_atahdr *ah, sector_t lba)
93{
94 ah->lba0 = lba;
95 ah->lba1 = lba >>= 8;
96 ah->lba2 = lba >>= 8;
97 ah->lba3 = lba >>= 8;
98 ah->lba4 = lba >>= 8;
99 ah->lba5 = lba >>= 8;
100}
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static void
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800103ifrotate(struct aoetgt *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800105 t->ifp++;
106 if (t->ifp >= &t->ifs[NAOEIFS] || t->ifp->nd == NULL)
107 t->ifp = t->ifs;
108 if (t->ifp->nd == NULL) {
109 printk(KERN_INFO "aoe: no interface to rotate to\n");
110 BUG();
111 }
112}
113
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800114static void
115skb_pool_put(struct aoedev *d, struct sk_buff *skb)
116{
David S. Millere9bb8fb2008-09-21 22:36:49 -0700117 __skb_queue_tail(&d->skbpool, skb);
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800118}
119
120static struct sk_buff *
121skb_pool_get(struct aoedev *d)
122{
David S. Millere9bb8fb2008-09-21 22:36:49 -0700123 struct sk_buff *skb = skb_peek(&d->skbpool);
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800124
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800125 if (skb && atomic_read(&skb_shinfo(skb)->dataref) == 1) {
David S. Millere9bb8fb2008-09-21 22:36:49 -0700126 __skb_unlink(skb, &d->skbpool);
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800127 return skb;
128 }
David S. Millere9bb8fb2008-09-21 22:36:49 -0700129 if (skb_queue_len(&d->skbpool) < NSKBPOOLMAX &&
130 (skb = new_skb(ETH_ZLEN)))
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800131 return skb;
David S. Millere9bb8fb2008-09-21 22:36:49 -0700132
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800133 return NULL;
134}
135
136/* freeframe is where we do our load balancing so it's a little hairy. */
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800137static struct frame *
138freeframe(struct aoedev *d)
139{
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800140 struct frame *f, *e, *rf;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800141 struct aoetgt **t;
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800142 struct sk_buff *skb;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800143
144 if (d->targets[0] == NULL) { /* shouldn't happen, but I'm paranoid */
145 printk(KERN_ERR "aoe: NULL TARGETS!\n");
146 return NULL;
147 }
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800148 t = d->tgt;
149 t++;
150 if (t >= &d->targets[NTARGETS] || !*t)
151 t = d->targets;
152 for (;;) {
153 if ((*t)->nout < (*t)->maxout
154 && t != d->htgt
155 && (*t)->ifp->nd) {
156 rf = NULL;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800157 f = (*t)->frames;
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800158 e = f + (*t)->nframes;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800159 for (; f < e; f++) {
160 if (f->tag != FREETAG)
161 continue;
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800162 skb = f->skb;
163 if (!skb
164 && !(f->skb = skb = new_skb(ETH_ZLEN)))
165 continue;
166 if (atomic_read(&skb_shinfo(skb)->dataref)
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800167 != 1) {
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800168 if (!rf)
169 rf = f;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800170 continue;
171 }
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800172gotone: skb_shinfo(skb)->nr_frags = skb->data_len = 0;
173 skb_trim(skb, 0);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800174 d->tgt = t;
175 ifrotate(*t);
176 return f;
177 }
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800178 /* Work can be done, but the network layer is
179 holding our precious packets. Try to grab
180 one from the pool. */
181 f = rf;
182 if (f == NULL) { /* more paranoia */
183 printk(KERN_ERR
184 "aoe: freeframe: %s.\n",
185 "unexpected null rf");
186 d->flags |= DEVFL_KICKME;
187 return NULL;
188 }
189 skb = skb_pool_get(d);
190 if (skb) {
191 skb_pool_put(d, f->skb);
192 f->skb = skb;
193 goto gotone;
194 }
195 (*t)->dataref++;
196 if ((*t)->nout == 0)
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800197 d->flags |= DEVFL_KICKME;
198 }
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800199 if (t == d->tgt) /* we've looped and found nada */
200 break;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800201 t++;
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800202 if (t >= &d->targets[NTARGETS] || !*t)
203 t = d->targets;
204 }
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800205 return NULL;
206}
207
208static int
209aoecmd_ata_rw(struct aoedev *d)
210{
211 struct frame *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 struct aoe_hdr *h;
213 struct aoe_atahdr *ah;
214 struct buf *buf;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800215 struct bio_vec *bv;
216 struct aoetgt *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 struct sk_buff *skb;
218 ulong bcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 char writebit, extbit;
220
221 writebit = 0x10;
222 extbit = 0x4;
223
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800224 f = freeframe(d);
225 if (f == NULL)
226 return 0;
227 t = *d->tgt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 buf = d->inprocess;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800229 bv = buf->bv;
230 bcnt = t->ifp->maxbcnt;
231 if (bcnt == 0)
232 bcnt = DEFAULTBCNT;
233 if (bcnt > buf->bv_resid)
234 bcnt = buf->bv_resid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 /* initialize the headers & frame */
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400236 skb = f->skb;
Ed L. Cashinabdbf942007-10-16 23:27:03 -0700237 h = (struct aoe_hdr *) skb_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 ah = (struct aoe_atahdr *) (h+1);
Ed L. Cashin19900cd2006-12-22 01:09:21 -0800239 skb_put(skb, sizeof *h + sizeof *ah);
240 memset(h, 0, skb->len);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800241 f->tag = aoehdr_atainit(d, t, h);
242 t->nout++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 f->waited = 0;
244 f->buf = buf;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800245 f->bufaddr = page_address(bv->bv_page) + buf->bv_off;
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400246 f->bcnt = bcnt;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800247 f->lba = buf->sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 /* set up ata header */
250 ah->scnt = bcnt >> 9;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800251 put_lba(ah, buf->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (d->flags & DEVFL_EXT) {
253 ah->aflags |= AOEAFL_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 } else {
255 extbit = 0;
256 ah->lba3 &= 0x0f;
257 ah->lba3 |= 0xe0; /* LBA bit + obsolete 0xa0 */
258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (bio_data_dir(buf->bio) == WRITE) {
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800260 skb_fill_page_desc(skb, 0, bv->bv_page, buf->bv_off, bcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 ah->aflags |= AOEAFL_WRITE;
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400262 skb->len += bcnt;
263 skb->data_len = bcnt;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800264 t->wpkts++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 } else {
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800266 t->rpkts++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 writebit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
269
270 ah->cmdstat = WIN_READ | writebit | extbit;
271
272 /* mark all tracking fields and load out */
273 buf->nframesout += 1;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800274 buf->bv_off += bcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 buf->bv_resid -= bcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 buf->resid -= bcnt;
277 buf->sector += bcnt >> 9;
278 if (buf->resid == 0) {
279 d->inprocess = NULL;
280 } else if (buf->bv_resid == 0) {
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800281 buf->bv = ++bv;
282 buf->bv_resid = bv->bv_len;
283 WARN_ON(buf->bv_resid == 0);
284 buf->bv_off = bv->bv_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800287 skb->dev = t->ifp->nd;
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400288 skb = skb_clone(skb, GFP_ATOMIC);
David S. Millere9bb8fb2008-09-21 22:36:49 -0700289 if (skb)
290 __skb_queue_tail(&d->sendq, skb);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800291 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500294/* some callers cannot sleep, and they can call this function,
295 * transmitting the packets later, when interrupts are on
296 */
David S. Millere9bb8fb2008-09-21 22:36:49 -0700297static void
298aoecmd_cfg_pkts(ushort aoemajor, unsigned char aoeminor, struct sk_buff_head *queue)
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500299{
300 struct aoe_hdr *h;
301 struct aoe_cfghdr *ch;
David S. Millere9bb8fb2008-09-21 22:36:49 -0700302 struct sk_buff *skb;
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500303 struct net_device *ifp;
304
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500305 read_lock(&dev_base_lock);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700306 for_each_netdev(&init_net, ifp) {
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500307 dev_hold(ifp);
308 if (!is_aoe_netif(ifp))
Pavel Emelianov7562f872007-05-03 15:13:45 -0700309 goto cont;
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500310
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400311 skb = new_skb(sizeof *h + sizeof *ch);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500312 if (skb == NULL) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400313 printk(KERN_INFO "aoe: skb alloc failure\n");
Pavel Emelianov7562f872007-05-03 15:13:45 -0700314 goto cont;
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500315 }
Ed L. Cashin19900cd2006-12-22 01:09:21 -0800316 skb_put(skb, sizeof *h + sizeof *ch);
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400317 skb->dev = ifp;
David S. Millere9bb8fb2008-09-21 22:36:49 -0700318 __skb_queue_tail(queue, skb);
Ed L. Cashinabdbf942007-10-16 23:27:03 -0700319 h = (struct aoe_hdr *) skb_mac_header(skb);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500320 memset(h, 0, sizeof *h + sizeof *ch);
321
322 memset(h->dst, 0xff, sizeof h->dst);
323 memcpy(h->src, ifp->dev_addr, sizeof h->src);
324 h->type = __constant_cpu_to_be16(ETH_P_AOE);
325 h->verfl = AOE_HVER;
326 h->major = cpu_to_be16(aoemajor);
327 h->minor = aoeminor;
328 h->cmd = AOECMD_CFG;
329
Pavel Emelianov7562f872007-05-03 15:13:45 -0700330cont:
331 dev_put(ifp);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500332 }
333 read_unlock(&dev_base_lock);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500334}
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336static void
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800337resend(struct aoedev *d, struct aoetgt *t, struct frame *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 struct sk_buff *skb;
340 struct aoe_hdr *h;
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400341 struct aoe_atahdr *ah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 char buf[128];
343 u32 n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800345 ifrotate(t);
346 n = newtag(t);
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400347 skb = f->skb;
Ed L. Cashinabdbf942007-10-16 23:27:03 -0700348 h = (struct aoe_hdr *) skb_mac_header(skb);
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400349 ah = (struct aoe_atahdr *) (h+1);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800350
351 snprintf(buf, sizeof buf,
352 "%15s e%ld.%d oldtag=%08x@%08lx newtag=%08x "
353 "s=%012llx d=%012llx nout=%d\n",
354 "retransmit", d->aoemajor, d->aoeminor, f->tag, jiffies, n,
Ed L. Cashin1eb0da42008-02-08 04:20:01 -0800355 mac_addr(h->src),
356 mac_addr(h->dst), t->nout);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800357 aoechr_error(buf);
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 f->tag = n;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -0700360 h->tag = cpu_to_be32(n);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800361 memcpy(h->dst, t->addr, sizeof h->dst);
362 memcpy(h->src, t->ifp->nd->dev_addr, sizeof h->src);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800364 switch (ah->cmdstat) {
365 default:
366 break;
367 case WIN_READ:
368 case WIN_READ_EXT:
369 case WIN_WRITE:
370 case WIN_WRITE_EXT:
371 put_lba(ah, f->lba);
372
373 n = f->bcnt;
374 if (n > DEFAULTBCNT)
375 n = DEFAULTBCNT;
376 ah->scnt = n >> 9;
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400377 if (ah->aflags & AOEAFL_WRITE) {
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400378 skb_fill_page_desc(skb, 0, virt_to_page(f->bufaddr),
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800379 offset_in_page(f->bufaddr), n);
380 skb->len = sizeof *h + sizeof *ah + n;
381 skb->data_len = n;
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400382 }
383 }
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800384 skb->dev = t->ifp->nd;
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400385 skb = skb_clone(skb, GFP_ATOMIC);
386 if (skb == NULL)
387 return;
David S. Millere9bb8fb2008-09-21 22:36:49 -0700388 __skb_queue_tail(&d->sendq, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
391static int
392tsince(int tag)
393{
394 int n;
395
396 n = jiffies & 0xffff;
397 n -= tag & 0xffff;
398 if (n < 0)
399 n += 1<<16;
400 return n;
401}
402
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800403static struct aoeif *
404getif(struct aoetgt *t, struct net_device *nd)
405{
406 struct aoeif *p, *e;
407
408 p = t->ifs;
409 e = p + NAOEIFS;
410 for (; p < e; p++)
411 if (p->nd == nd)
412 return p;
413 return NULL;
414}
415
416static struct aoeif *
417addif(struct aoetgt *t, struct net_device *nd)
418{
419 struct aoeif *p;
420
421 p = getif(t, NULL);
422 if (!p)
423 return NULL;
424 p->nd = nd;
425 p->maxbcnt = DEFAULTBCNT;
426 p->lost = 0;
427 p->lostjumbo = 0;
428 return p;
429}
430
431static void
432ejectif(struct aoetgt *t, struct aoeif *ifp)
433{
434 struct aoeif *e;
435 ulong n;
436
437 e = t->ifs + NAOEIFS - 1;
438 n = (e - ifp) * sizeof *ifp;
439 memmove(ifp, ifp+1, n);
440 e->nd = NULL;
441}
442
443static int
444sthtith(struct aoedev *d)
445{
446 struct frame *f, *e, *nf;
447 struct sk_buff *skb;
448 struct aoetgt *ht = *d->htgt;
449
450 f = ht->frames;
451 e = f + ht->nframes;
452 for (; f < e; f++) {
453 if (f->tag == FREETAG)
454 continue;
455 nf = freeframe(d);
456 if (!nf)
457 return 0;
458 skb = nf->skb;
459 *nf = *f;
460 f->skb = skb;
461 f->tag = FREETAG;
462 nf->waited = 0;
463 ht->nout--;
464 (*d->tgt)->nout++;
465 resend(d, *d->tgt, nf);
466 }
467 /* he's clean, he's useless. take away his interfaces */
468 memset(ht->ifs, 0, sizeof ht->ifs);
469 d->htgt = NULL;
470 return 1;
471}
472
473static inline unsigned char
474ata_scnt(unsigned char *packet) {
475 struct aoe_hdr *h;
476 struct aoe_atahdr *ah;
477
478 h = (struct aoe_hdr *) packet;
479 ah = (struct aoe_atahdr *) (h+1);
480 return ah->scnt;
481}
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483static void
484rexmit_timer(ulong vp)
485{
David S. Millere9bb8fb2008-09-21 22:36:49 -0700486 struct sk_buff_head queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 struct aoedev *d;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800488 struct aoetgt *t, **tt, **te;
489 struct aoeif *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 struct frame *f, *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 register long timeout;
492 ulong flags, n;
493
494 d = (struct aoedev *) vp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 /* timeout is always ~150% of the moving average */
497 timeout = d->rttavg;
498 timeout += timeout >> 1;
499
500 spin_lock_irqsave(&d->lock, flags);
501
502 if (d->flags & DEVFL_TKILL) {
Ed L. Cashin1c6f3fc2006-01-25 13:54:44 -0500503 spin_unlock_irqrestore(&d->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return;
505 }
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800506 tt = d->targets;
507 te = tt + NTARGETS;
508 for (; tt < te && *tt; tt++) {
509 t = *tt;
510 f = t->frames;
511 e = f + t->nframes;
512 for (; f < e; f++) {
513 if (f->tag == FREETAG
514 || tsince(f->tag) < timeout)
515 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 n = f->waited += timeout;
517 n /= HZ;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800518 if (n > aoe_deadsecs) {
519 /* waited too long. device failure. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 aoedev_downdev(d);
Ed L. Cashin1c6f3fc2006-01-25 13:54:44 -0500521 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800523
524 if (n > HELPWAIT /* see if another target can help */
525 && (tt != d->targets || d->targets[1]))
526 d->htgt = tt;
527
528 if (t->nout == t->maxout) {
529 if (t->maxout > 1)
530 t->maxout--;
531 t->lastwadj = jiffies;
532 }
533
534 ifp = getif(t, f->skb->dev);
535 if (ifp && ++ifp->lost > (t->nframes << 1)
536 && (ifp != t->ifs || t->ifs[1].nd)) {
537 ejectif(t, ifp);
538 ifp = NULL;
539 }
540
541 if (ata_scnt(skb_mac_header(f->skb)) > DEFAULTBCNT / 512
542 && ifp && ++ifp->lostjumbo > (t->nframes << 1)
543 && ifp->maxbcnt != DEFAULTBCNT) {
544 printk(KERN_INFO
545 "aoe: e%ld.%d: "
546 "too many lost jumbo on "
547 "%s:%012llx - "
548 "falling back to %d frames.\n",
549 d->aoemajor, d->aoeminor,
550 ifp->nd->name, mac_addr(t->addr),
551 DEFAULTBCNT);
552 ifp->maxbcnt = 0;
553 }
554 resend(d, t, f);
555 }
556
557 /* window check */
558 if (t->nout == t->maxout
559 && t->maxout < t->nframes
560 && (jiffies - t->lastwadj)/HZ > 10) {
561 t->maxout++;
562 t->lastwadj = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564 }
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800565
David S. Millere9bb8fb2008-09-21 22:36:49 -0700566 if (!skb_queue_empty(&d->sendq)) {
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800567 n = d->rttavg <<= 1;
568 if (n > MAXTIMER)
569 d->rttavg = MAXTIMER;
570 }
571
572 if (d->flags & DEVFL_KICKME || d->htgt) {
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400573 d->flags &= ~DEVFL_KICKME;
574 aoecmd_work(d);
575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
David S. Millere9bb8fb2008-09-21 22:36:49 -0700577 __skb_queue_head_init(&queue);
578 skb_queue_splice_init(&d->sendq, &queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 d->timer.expires = jiffies + TIMERTICK;
581 add_timer(&d->timer);
582
583 spin_unlock_irqrestore(&d->lock, flags);
584
David S. Millere9bb8fb2008-09-21 22:36:49 -0700585 aoenet_xmit(&queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800588/* enters with d->lock held */
589void
590aoecmd_work(struct aoedev *d)
591{
592 struct buf *buf;
593loop:
594 if (d->htgt && !sthtith(d))
595 return;
596 if (d->inprocess == NULL) {
597 if (list_empty(&d->bufq))
598 return;
599 buf = container_of(d->bufq.next, struct buf, bufs);
600 list_del(d->bufq.next);
601 d->inprocess = buf;
602 }
603 if (aoecmd_ata_rw(d))
604 goto loop;
605}
606
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500607/* this function performs work that has been deferred until sleeping is OK
608 */
609void
David Howellsc4028952006-11-22 14:57:56 +0000610aoecmd_sleepwork(struct work_struct *work)
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500611{
David Howellsc4028952006-11-22 14:57:56 +0000612 struct aoedev *d = container_of(work, struct aoedev, work);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500613
614 if (d->flags & DEVFL_GDALLOC)
615 aoeblk_gdalloc(d);
616
617 if (d->flags & DEVFL_NEWSIZE) {
618 struct block_device *bd;
619 unsigned long flags;
620 u64 ssize;
621
Tejun Heo80795ae2008-08-25 19:56:07 +0900622 ssize = get_capacity(d->gd);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500623 bd = bdget_disk(d->gd, 0);
624
625 if (bd) {
626 mutex_lock(&bd->bd_inode->i_mutex);
627 i_size_write(bd->bd_inode, (loff_t)ssize<<9);
628 mutex_unlock(&bd->bd_inode->i_mutex);
629 bdput(bd);
630 }
631 spin_lock_irqsave(&d->lock, flags);
632 d->flags |= DEVFL_UP;
633 d->flags &= ~DEVFL_NEWSIZE;
634 spin_unlock_irqrestore(&d->lock, flags);
635 }
636}
637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638static void
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800639ataid_complete(struct aoedev *d, struct aoetgt *t, unsigned char *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
641 u64 ssize;
642 u16 n;
643
644 /* word 83: command set supported */
Harvey Harrisonf885f8d2008-04-29 01:03:30 -0700645 n = get_unaligned_le16(&id[83 << 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 /* word 86: command set/feature enabled */
Harvey Harrisonf885f8d2008-04-29 01:03:30 -0700648 n |= get_unaligned_le16(&id[86 << 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 if (n & (1<<10)) { /* bit 10: LBA 48 */
651 d->flags |= DEVFL_EXT;
652
653 /* word 100: number lba48 sectors */
Harvey Harrisonf885f8d2008-04-29 01:03:30 -0700654 ssize = get_unaligned_le64(&id[100 << 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 /* set as in ide-disk.c:init_idedisk_capacity */
657 d->geo.cylinders = ssize;
658 d->geo.cylinders /= (255 * 63);
659 d->geo.heads = 255;
660 d->geo.sectors = 63;
661 } else {
662 d->flags &= ~DEVFL_EXT;
663
664 /* number lba28 sectors */
Harvey Harrisonf885f8d2008-04-29 01:03:30 -0700665 ssize = get_unaligned_le32(&id[60 << 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 /* NOTE: obsolete in ATA 6 */
Harvey Harrisonf885f8d2008-04-29 01:03:30 -0700668 d->geo.cylinders = get_unaligned_le16(&id[54 << 1]);
669 d->geo.heads = get_unaligned_le16(&id[55 << 1]);
670 d->geo.sectors = get_unaligned_le16(&id[56 << 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500672
673 if (d->ssize != ssize)
Ed L. Cashin1d759812008-02-08 04:20:08 -0800674 printk(KERN_INFO
675 "aoe: %012llx e%ld.%d v%04x has %llu sectors\n",
Ed L. Cashin1eb0da42008-02-08 04:20:01 -0800676 mac_addr(t->addr),
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500677 d->aoemajor, d->aoeminor,
678 d->fw_ver, (long long)ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 d->ssize = ssize;
680 d->geo.start = 0;
Ed L. Cashin6b9699b2008-02-08 04:20:06 -0800681 if (d->flags & (DEVFL_GDALLOC|DEVFL_NEWSIZE))
682 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 if (d->gd != NULL) {
Tejun Heo80795ae2008-08-25 19:56:07 +0900684 set_capacity(d->gd, ssize);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500685 d->flags |= DEVFL_NEWSIZE;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800686 } else
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500687 d->flags |= DEVFL_GDALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 schedule_work(&d->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
690
691static void
692calc_rttavg(struct aoedev *d, int rtt)
693{
694 register long n;
695
696 n = rtt;
Ed L. Cashindced3a02006-09-20 14:36:49 -0400697 if (n < 0) {
698 n = -rtt;
699 if (n < MINTIMER)
700 n = MINTIMER;
701 else if (n > MAXTIMER)
702 n = MAXTIMER;
703 d->mintimer += (n - d->mintimer) >> 1;
704 } else if (n < d->mintimer)
705 n = d->mintimer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 else if (n > MAXTIMER)
707 n = MAXTIMER;
708
709 /* g == .25; cf. Congestion Avoidance and Control, Jacobson & Karels; 1988 */
710 n -= d->rttavg;
711 d->rttavg += n >> 2;
712}
713
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800714static struct aoetgt *
715gettgt(struct aoedev *d, char *addr)
716{
717 struct aoetgt **t, **e;
718
719 t = d->targets;
720 e = t + NTARGETS;
721 for (; t < e && *t; t++)
722 if (memcmp((*t)->addr, addr, sizeof((*t)->addr)) == 0)
723 return *t;
724 return NULL;
725}
726
727static inline void
Linus Torvalds03054de2008-02-08 09:42:46 -0800728diskstats(struct gendisk *disk, struct bio *bio, ulong duration, sector_t sector)
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800729{
730 unsigned long n_sect = bio->bi_size >> 9;
731 const int rw = bio_data_dir(bio);
Jens Axboe28f13702008-05-07 10:15:46 +0200732 struct hd_struct *part;
Tejun Heoc9959052008-08-25 19:47:21 +0900733 int cpu;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800734
Tejun Heo074a7ac2008-08-25 19:56:14 +0900735 cpu = part_stat_lock();
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200736 part = disk_map_sector_rcu(disk, sector);
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200737
Tejun Heo074a7ac2008-08-25 19:56:14 +0900738 part_stat_inc(cpu, part, ios[rw]);
739 part_stat_add(cpu, part, ticks[rw], duration);
740 part_stat_add(cpu, part, sectors[rw], n_sect);
741 part_stat_add(cpu, part, io_ticks, duration);
Tejun Heoc9959052008-08-25 19:47:21 +0900742
Tejun Heo074a7ac2008-08-25 19:56:14 +0900743 part_stat_unlock();
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800744}
745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746void
747aoecmd_ata_rsp(struct sk_buff *skb)
748{
David S. Millere9bb8fb2008-09-21 22:36:49 -0700749 struct sk_buff_head queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 struct aoedev *d;
Ed L. Cashinddec63e2006-09-20 14:36:49 -0400751 struct aoe_hdr *hin, *hout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 struct aoe_atahdr *ahin, *ahout;
753 struct frame *f;
754 struct buf *buf;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800755 struct aoetgt *t;
756 struct aoeif *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 register long n;
758 ulong flags;
759 char ebuf[128];
ecashin@coraid.com32465c62005-04-18 22:00:18 -0700760 u16 aoemajor;
761
Ed L. Cashinabdbf942007-10-16 23:27:03 -0700762 hin = (struct aoe_hdr *) skb_mac_header(skb);
Harvey Harrisonf885f8d2008-04-29 01:03:30 -0700763 aoemajor = get_unaligned_be16(&hin->major);
ecashin@coraid.com32465c62005-04-18 22:00:18 -0700764 d = aoedev_by_aoeaddr(aoemajor, hin->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (d == NULL) {
766 snprintf(ebuf, sizeof ebuf, "aoecmd_ata_rsp: ata response "
767 "for unknown device %d.%d\n",
ecashin@coraid.com32465c62005-04-18 22:00:18 -0700768 aoemajor, hin->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 aoechr_error(ebuf);
770 return;
771 }
772
773 spin_lock_irqsave(&d->lock, flags);
774
Harvey Harrisonf885f8d2008-04-29 01:03:30 -0700775 n = get_unaligned_be32(&hin->tag);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800776 t = gettgt(d, hin->src);
777 if (t == NULL) {
778 printk(KERN_INFO "aoe: can't find target e%ld.%d:%012llx\n",
Ed L. Cashin1eb0da42008-02-08 04:20:01 -0800779 d->aoemajor, d->aoeminor, mac_addr(hin->src));
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800780 spin_unlock_irqrestore(&d->lock, flags);
781 return;
782 }
783 f = getframe(t, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (f == NULL) {
Ed L. Cashindced3a02006-09-20 14:36:49 -0400785 calc_rttavg(d, -tsince(n));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 spin_unlock_irqrestore(&d->lock, flags);
787 snprintf(ebuf, sizeof ebuf,
788 "%15s e%d.%d tag=%08x@%08lx\n",
789 "unexpected rsp",
Harvey Harrisonf885f8d2008-04-29 01:03:30 -0700790 get_unaligned_be16(&hin->major),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 hin->minor,
Harvey Harrisonf885f8d2008-04-29 01:03:30 -0700792 get_unaligned_be32(&hin->tag),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 jiffies);
794 aoechr_error(ebuf);
795 return;
796 }
797
798 calc_rttavg(d, tsince(f->tag));
799
800 ahin = (struct aoe_atahdr *) (hin+1);
Ed L. Cashinabdbf942007-10-16 23:27:03 -0700801 hout = (struct aoe_hdr *) skb_mac_header(f->skb);
Ed L. Cashinddec63e2006-09-20 14:36:49 -0400802 ahout = (struct aoe_atahdr *) (hout+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 buf = f->buf;
804
805 if (ahin->cmdstat & 0xa9) { /* these bits cleared on success */
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400806 printk(KERN_ERR
Ed L. Cashin1d759812008-02-08 04:20:08 -0800807 "aoe: ata error cmd=%2.2Xh stat=%2.2Xh from e%ld.%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 ahout->cmdstat, ahin->cmdstat,
809 d->aoemajor, d->aoeminor);
810 if (buf)
811 buf->flags |= BUFFL_FAIL;
812 } else {
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800813 if (d->htgt && t == *d->htgt) /* I'll help myself, thank you. */
814 d->htgt = NULL;
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400815 n = ahout->scnt << 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 switch (ahout->cmdstat) {
817 case WIN_READ:
818 case WIN_READ_EXT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (skb->len - sizeof *hin - sizeof *ahin < n) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400820 printk(KERN_ERR
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800821 "aoe: %s. skb->len=%d need=%ld\n",
822 "runt data size in read", skb->len, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 /* fail frame f? just returning will rexmit. */
824 spin_unlock_irqrestore(&d->lock, flags);
825 return;
826 }
827 memcpy(f->bufaddr, ahin+1, n);
828 case WIN_WRITE:
829 case WIN_WRITE_EXT:
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800830 ifp = getif(t, skb->dev);
831 if (ifp) {
832 ifp->lost = 0;
Ed L. Cashin6bb62852006-09-20 14:36:49 -0400833 if (n > DEFAULTBCNT)
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800834 ifp->lostjumbo = 0;
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400835 }
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800836 if (f->bcnt -= n) {
837 f->lba += n >> 9;
838 f->bufaddr += n;
839 resend(d, t, f);
840 goto xmit;
841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 break;
843 case WIN_IDENTIFY:
844 if (skb->len - sizeof *hin - sizeof *ahin < 512) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400845 printk(KERN_INFO
846 "aoe: runt data size in ataid. skb->len=%d\n",
Ed L. Cashin6bb62852006-09-20 14:36:49 -0400847 skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 spin_unlock_irqrestore(&d->lock, flags);
849 return;
850 }
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800851 ataid_complete(d, t, (char *) (ahin+1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 break;
853 default:
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400854 printk(KERN_INFO
855 "aoe: unrecognized ata command %2.2Xh for %d.%d\n",
Ed L. Cashin6bb62852006-09-20 14:36:49 -0400856 ahout->cmdstat,
Harvey Harrisonf885f8d2008-04-29 01:03:30 -0700857 get_unaligned_be16(&hin->major),
Ed L. Cashin6bb62852006-09-20 14:36:49 -0400858 hin->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
860 }
861
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800862 if (buf && --buf->nframesout == 0 && buf->resid == 0) {
Linus Torvalds03054de2008-02-08 09:42:46 -0800863 diskstats(d->gd, buf->bio, jiffies - buf->stime, buf->sector);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800864 n = (buf->flags & BUFFL_FAIL) ? -EIO : 0;
865 bio_endio(buf->bio, n);
866 mempool_free(buf, d->bufpool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
868
869 f->buf = NULL;
870 f->tag = FREETAG;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800871 t->nout--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 aoecmd_work(d);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800874xmit:
David S. Millere9bb8fb2008-09-21 22:36:49 -0700875 __skb_queue_head_init(&queue);
876 skb_queue_splice_init(&d->sendq, &queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 spin_unlock_irqrestore(&d->lock, flags);
David S. Millere9bb8fb2008-09-21 22:36:49 -0700879 aoenet_xmit(&queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
881
882void
883aoecmd_cfg(ushort aoemajor, unsigned char aoeminor)
884{
David S. Millere9bb8fb2008-09-21 22:36:49 -0700885 struct sk_buff_head queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
David S. Millere9bb8fb2008-09-21 22:36:49 -0700887 __skb_queue_head_init(&queue);
888 aoecmd_cfg_pkts(aoemajor, aoeminor, &queue);
889 aoenet_xmit(&queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800892struct sk_buff *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893aoecmd_ata_id(struct aoedev *d)
894{
895 struct aoe_hdr *h;
896 struct aoe_atahdr *ah;
897 struct frame *f;
898 struct sk_buff *skb;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800899 struct aoetgt *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400901 f = freeframe(d);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800902 if (f == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return NULL;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800904
905 t = *d->tgt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 /* initialize the headers & frame */
Ed L. Cashine407a7f2006-09-20 14:36:49 -0400908 skb = f->skb;
Ed L. Cashinabdbf942007-10-16 23:27:03 -0700909 h = (struct aoe_hdr *) skb_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 ah = (struct aoe_atahdr *) (h+1);
Ed L. Cashin19900cd2006-12-22 01:09:21 -0800911 skb_put(skb, sizeof *h + sizeof *ah);
912 memset(h, 0, skb->len);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800913 f->tag = aoehdr_atainit(d, t, h);
914 t->nout++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 f->waited = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 /* set up ata header */
918 ah->scnt = 1;
919 ah->cmdstat = WIN_IDENTIFY;
920 ah->lba3 = 0xa0;
921
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800922 skb->dev = t->ifp->nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500924 d->rttavg = MAXTIMER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 d->timer.function = rexmit_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Ed L. Cashin4f51dc52006-09-20 14:36:49 -0400927 return skb_clone(skb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928}
929
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800930static struct aoetgt *
931addtgt(struct aoedev *d, char *addr, ulong nframes)
932{
933 struct aoetgt *t, **tt, **te;
934 struct frame *f, *e;
935
936 tt = d->targets;
937 te = tt + NTARGETS;
938 for (; tt < te && *tt; tt++)
939 ;
940
Ed L. Cashin578c4aa2008-02-08 04:20:09 -0800941 if (tt == te) {
942 printk(KERN_INFO
943 "aoe: device addtgt failure; too many targets\n");
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800944 return NULL;
Ed L. Cashin578c4aa2008-02-08 04:20:09 -0800945 }
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800946 t = kcalloc(1, sizeof *t, GFP_ATOMIC);
947 f = kcalloc(nframes, sizeof *f, GFP_ATOMIC);
Ed L. Cashin578c4aa2008-02-08 04:20:09 -0800948 if (!t || !f) {
949 kfree(f);
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800950 kfree(t);
Ed L. Cashin578c4aa2008-02-08 04:20:09 -0800951 printk(KERN_INFO "aoe: cannot allocate memory to add target\n");
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800952 return NULL;
953 }
954
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800955 t->nframes = nframes;
956 t->frames = f;
957 e = f + nframes;
Ed L. Cashin9bb237b2008-02-08 04:20:05 -0800958 for (; f < e; f++)
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800959 f->tag = FREETAG;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800960 memcpy(t->addr, addr, sizeof t->addr);
961 t->ifp = t->ifs;
962 t->maxout = t->nframes;
963 return *tt = t;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800964}
965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966void
967aoecmd_cfg_rsp(struct sk_buff *skb)
968{
969 struct aoedev *d;
970 struct aoe_hdr *h;
971 struct aoe_cfghdr *ch;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800972 struct aoetgt *t;
973 struct aoeif *ifp;
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -0700974 ulong flags, sysminor, aoemajor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 struct sk_buff *sl;
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400976 u16 n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Ed L. Cashinabdbf942007-10-16 23:27:03 -0700978 h = (struct aoe_hdr *) skb_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 ch = (struct aoe_cfghdr *) (h+1);
980
981 /*
982 * Enough people have their dip switches set backwards to
983 * warrant a loud message for this special case.
984 */
Harvey Harrison823ed722008-07-04 09:28:32 +0200985 aoemajor = get_unaligned_be16(&h->major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (aoemajor == 0xfff) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400987 printk(KERN_ERR "aoe: Warning: shelf address is all ones. "
Ed L. Cashin6bb62852006-09-20 14:36:49 -0400988 "Check shelf dip switches.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return;
990 }
991
992 sysminor = SYSMINOR(aoemajor, h->minor);
ecashin@coraid.comfc458dc2005-04-18 22:00:17 -0700993 if (sysminor * AOE_PARTITIONS + AOE_PARTITIONS > MINORMASK) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400994 printk(KERN_INFO "aoe: e%ld.%d: minor number too large\n",
ecashin@coraid.comfc458dc2005-04-18 22:00:17 -0700995 aoemajor, (int) h->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 return;
997 }
998
Ed L. Cashin19bf2632006-09-20 14:36:49 -0400999 n = be16_to_cpu(ch->bufcnt);
Ed L. Cashin7df620d2008-02-08 04:20:07 -08001000 if (n > aoe_maxout) /* keep it reasonable */
1001 n = aoe_maxout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001003 d = aoedev_by_sysminor_m(sysminor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (d == NULL) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -04001005 printk(KERN_INFO "aoe: device sysminor_m failure\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return;
1007 }
1008
1009 spin_lock_irqsave(&d->lock, flags);
1010
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001011 t = gettgt(d, h->src);
1012 if (!t) {
1013 t = addtgt(d, h->src, n);
1014 if (!t) {
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001015 spin_unlock_irqrestore(&d->lock, flags);
1016 return;
1017 }
1018 }
1019 ifp = getif(t, skb->dev);
1020 if (!ifp) {
1021 ifp = addif(t, skb->dev);
1022 if (!ifp) {
1023 printk(KERN_INFO
1024 "aoe: device addif failure; "
1025 "too many interfaces?\n");
1026 spin_unlock_irqrestore(&d->lock, flags);
1027 return;
1028 }
1029 }
1030 if (ifp->maxbcnt) {
1031 n = ifp->nd->mtu;
Ed L. Cashin19bf2632006-09-20 14:36:49 -04001032 n -= sizeof (struct aoe_hdr) + sizeof (struct aoe_atahdr);
1033 n /= 512;
1034 if (n > ch->scnt)
1035 n = ch->scnt;
Ed L. Cashin4f51dc52006-09-20 14:36:49 -04001036 n = n ? n * 512 : DEFAULTBCNT;
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001037 if (n != ifp->maxbcnt) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -04001038 printk(KERN_INFO
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001039 "aoe: e%ld.%d: setting %d%s%s:%012llx\n",
1040 d->aoemajor, d->aoeminor, n,
1041 " byte data frames on ", ifp->nd->name,
Ed L. Cashin1eb0da42008-02-08 04:20:01 -08001042 mac_addr(t->addr));
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001043 ifp->maxbcnt = n;
Ed L. Cashin4f51dc52006-09-20 14:36:49 -04001044 }
Ed L. Cashin19bf2632006-09-20 14:36:49 -04001045 }
Ed L. Cashin3ae1c242006-01-19 13:46:19 -05001046
1047 /* don't change users' perspective */
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001048 if (d->nopen) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 spin_unlock_irqrestore(&d->lock, flags);
1050 return;
1051 }
ecashin@coraid.com63e9cc52005-04-18 22:00:20 -07001052 d->fw_ver = be16_to_cpu(ch->fwver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001054 sl = aoecmd_ata_id(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 spin_unlock_irqrestore(&d->lock, flags);
1057
David S. Millere9bb8fb2008-09-21 22:36:49 -07001058 if (sl) {
1059 struct sk_buff_head queue;
1060 __skb_queue_head_init(&queue);
1061 __skb_queue_tail(&queue, sl);
1062 aoenet_xmit(&queue);
1063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
Ed L. Cashin68e0d422008-02-08 04:20:00 -08001066void
1067aoecmd_cleanslate(struct aoedev *d)
1068{
1069 struct aoetgt **t, **te;
1070 struct aoeif *p, *e;
1071
1072 d->mintimer = MINTIMER;
1073
1074 t = d->targets;
1075 te = t + NTARGETS;
1076 for (; t < te && *t; t++) {
1077 (*t)->maxout = (*t)->nframes;
1078 p = (*t)->ifs;
1079 e = p + NAOEIFS;
1080 for (; p < e; p++) {
1081 p->lostjumbo = 0;
1082 p->lost = 0;
1083 p->maxbcnt = DEFAULTBCNT;
1084 }
1085 }
1086}