Whamcloud - gitweb
port the patch(9414) on HEAD(b1_5)
[fs/lustre-release.git] / lustre / obdecho / echo_client.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (c) 2001-2003 Cluster File Systems, Inc.
5  *
6  *   This file is part of the Lustre file system, http://www.lustre.org
7  *   Lustre is a trademark of Cluster File Systems, Inc.
8  *
9  *   You may have signed or agreed to another license before downloading
10  *   this software.  If so, you are bound by the terms and conditions
11  *   of that agreement, and the following does not apply to you.  See the
12  *   LICENSE file included with this distribution for more information.
13  *
14  *   If you did not agree to a different license, then this copy of Lustre
15  *   is open source software; you can redistribute it and/or modify it
16  *   under the terms of version 2 of the GNU General Public License as
17  *   published by the Free Software Foundation.
18  *
19  *   In either case, Lustre is distributed in the hope that it will be
20  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
21  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  *   license text for more details.
23  */
24
25 #define DEBUG_SUBSYSTEM S_ECHO
26 #ifdef __KERNEL__
27 #include <libcfs/libcfs.h>
28 #else
29 #include <liblustre.h>
30 #endif
31
32 #include <obd.h>
33 #include <obd_support.h>
34 #include <obd_class.h>
35 #include <obd_echo.h>
36 #include <lustre_debug.h>
37 #include <lprocfs_status.h>
38
39 static obd_id last_object_id;
40
41 #if 0
42 static void
43 echo_printk_object (char *msg, struct ec_object *eco)
44 {
45         struct lov_stripe_md *lsm = eco->eco_lsm;
46         int                   i;
47
48         printk (KERN_INFO "Lustre: %s: object %p: "LPX64", refs %d%s: "LPX64
49                 "=%u!%u\n", msg, eco, eco->eco_id, eco->eco_refcount,
50                 eco->eco_deleted ? "(deleted) " : "",
51                 lsm->lsm_object_id, lsm->lsm_stripe_size,
52                 lsm->lsm_stripe_count);
53
54         for (i = 0; i < lsm->lsm_stripe_count; i++)
55                 printk (KERN_INFO "Lustre:   @%2u:"LPX64"\n",
56                         lsm->lsm_oinfo[i].loi_ost_idx,
57                         lsm->lsm_oinfo[i].loi_id);
58 }
59 #endif
60
61 static struct ec_object *
62 echo_find_object_locked (struct obd_device *obd, obd_id id)
63 {
64         struct echo_client_obd *ec = &obd->u.echo_client;
65         struct ec_object       *eco = NULL;
66         struct list_head       *el;
67
68         list_for_each (el, &ec->ec_objects) {
69                 eco = list_entry (el, struct ec_object, eco_obj_chain);
70
71                 if (eco->eco_id == id)
72                         return (eco);
73         }
74         return (NULL);
75 }
76
77 static int
78 echo_copyout_lsm (struct lov_stripe_md *lsm, void *_ulsm, int ulsm_nob)
79 {
80         struct lov_stripe_md *ulsm = _ulsm;
81         int nob, i;
82
83         nob = offsetof (struct lov_stripe_md, lsm_oinfo[lsm->lsm_stripe_count]);
84         if (nob > ulsm_nob)
85                 return (-EINVAL);
86
87         if (copy_to_user (ulsm, lsm, sizeof(ulsm)))
88                 return (-EFAULT);
89
90         for (i = 0; i < lsm->lsm_stripe_count; i++) {
91                 if (copy_to_user (ulsm->lsm_oinfo[i], lsm->lsm_oinfo[i],
92                                   sizeof(lsm->lsm_oinfo[0])))
93                         return (-EFAULT);
94         }
95         return (0);
96 }
97
98 static int
99 echo_copyin_lsm (struct obd_device *obd, struct lov_stripe_md *lsm,
100                  void *ulsm, int ulsm_nob)
101 {
102         struct echo_client_obd *ec = &obd->u.echo_client;
103         int                     i;
104
105         if (ulsm_nob < sizeof (*lsm))
106                 return (-EINVAL);
107
108         if (copy_from_user (lsm, ulsm, sizeof (*lsm)))
109                 return (-EFAULT);
110
111         if (lsm->lsm_stripe_count > ec->ec_nstripes ||
112             lsm->lsm_magic != LOV_MAGIC ||
113             (lsm->lsm_stripe_size & (~CFS_PAGE_MASK)) != 0 ||
114             ((__u64)lsm->lsm_stripe_size * lsm->lsm_stripe_count > ~0UL))
115                 return (-EINVAL);
116
117         for (i = 0; i < lsm->lsm_stripe_count; i++) {
118                 if (copy_from_user(lsm->lsm_oinfo[i],
119                                    ((struct lov_stripe_md *)ulsm)->lsm_oinfo[i],
120                                    sizeof(lsm->lsm_oinfo[0])))
121                         return (-EFAULT);
122         }
123
124         return (0);
125 }
126
127 static struct ec_object *
128 echo_allocate_object (struct obd_device *obd)
129 {
130         struct echo_client_obd *ec = &obd->u.echo_client;
131         struct ec_object       *eco;
132         int rc;
133
134         OBD_ALLOC(eco, sizeof (*eco));
135         if (eco == NULL)
136                 return NULL;
137
138         rc = obd_alloc_memmd(ec->ec_exp, &eco->eco_lsm);
139         if (rc < 0) {
140                 OBD_FREE(eco, sizeof (*eco));
141                 return NULL;
142         }
143
144         eco->eco_device = obd;
145         eco->eco_deleted = 0;
146         eco->eco_refcount = 0;
147         eco->eco_lsm->lsm_magic = LOV_MAGIC;
148         /* leave stripe count 0 by default */
149
150         return (eco);
151 }
152
153 static void
154 echo_free_object (struct ec_object *eco)
155 {
156         struct obd_device      *obd = eco->eco_device;
157         struct echo_client_obd *ec = &obd->u.echo_client;
158
159         LASSERT (eco->eco_refcount == 0);
160         if (!eco->eco_lsm) 
161                 CERROR("No object %s\n", obd->obd_name);
162         else 
163                 obd_free_memmd(ec->ec_exp, &eco->eco_lsm);
164         OBD_FREE (eco, sizeof (*eco));
165 }
166
167 static int echo_create_object(struct obd_device *obd, int on_target,
168                               struct obdo *oa, void *ulsm, int ulsm_nob,
169                               struct obd_trans_info *oti)
170 {
171         struct echo_client_obd *ec = &obd->u.echo_client;
172         struct ec_object       *eco2;
173         struct ec_object       *eco;
174         struct lov_stripe_md   *lsm;
175         int                     rc;
176         int                     i, idx;
177
178         if ((oa->o_valid & OBD_MD_FLID) == 0 && /* no obj id */
179             (on_target ||                       /* set_stripe */
180              ec->ec_nstripes != 0)) {           /* LOV */
181                 CERROR ("No valid oid\n");
182                 return (-EINVAL);
183         }
184
185         if (ulsm != NULL) {
186                 eco = echo_allocate_object (obd);
187                 if (eco == NULL) 
188                         return (-ENOMEM);
189
190                 lsm = eco->eco_lsm;
191
192                 rc = echo_copyin_lsm (obd, lsm, ulsm, ulsm_nob);
193                 if (rc != 0)
194                         goto failed;
195
196                 /* setup object ID here for !on_target and LOV hint */
197                 if ((oa->o_valid & OBD_MD_FLID) != 0)
198                         eco->eco_id = lsm->lsm_object_id = oa->o_id;
199
200                 if (lsm->lsm_stripe_count == 0)
201                         lsm->lsm_stripe_count = ec->ec_nstripes;
202
203                 if (lsm->lsm_stripe_size == 0)
204                         lsm->lsm_stripe_size = CFS_PAGE_SIZE;
205
206                 idx = ll_rand();
207
208                 /* setup stripes: indices + default ids if required */
209                 for (i = 0; i < lsm->lsm_stripe_count; i++) {
210                         if (lsm->lsm_oinfo[i]->loi_id == 0)
211                                 lsm->lsm_oinfo[i]->loi_id = lsm->lsm_object_id;
212
213                         lsm->lsm_oinfo[i]->loi_ost_idx =
214                                 (idx + i) % ec->ec_nstripes;
215                 }
216         } else {
217                 OBD_ALLOC(eco, sizeof(*eco));
218                 if (!eco) 
219                         return (-ENOMEM);
220                 eco->eco_device = obd;
221                 lsm = NULL;
222         }
223
224         if (oa->o_id == 0)
225                 oa->o_id = ++last_object_id;
226
227         if (on_target) {
228                 oa->o_gr = FILTER_GROUP_ECHO;
229                 oa->o_valid |= OBD_MD_FLGROUP;
230
231                 rc = obd_create(ec->ec_exp, oa, &lsm, oti);
232                 if (rc != 0)
233                         goto failed;
234
235                 /* See what object ID we were given */
236                 eco->eco_id = oa->o_id = lsm->lsm_object_id;
237                 oa->o_valid |= OBD_MD_FLID;
238
239                 LASSERT(eco->eco_lsm == NULL || eco->eco_lsm == lsm);
240                 eco->eco_lsm = lsm;
241         }
242
243         spin_lock (&ec->ec_lock);
244
245         eco2 = echo_find_object_locked (obd, oa->o_id);
246         if (eco2 != NULL) {                     /* conflict */
247                 spin_unlock (&ec->ec_lock);
248
249                 CERROR ("Can't create object id "LPX64": id already exists%s\n",
250                         oa->o_id, on_target ? " (undoing create)" : "");
251
252                 if (on_target)
253                         obd_destroy(ec->ec_exp, oa, lsm, oti, NULL);
254
255                 rc = -EEXIST;
256                 goto failed;
257         }
258
259         list_add (&eco->eco_obj_chain, &ec->ec_objects);
260         spin_unlock (&ec->ec_lock);
261         CDEBUG (D_INFO,
262                 "created %p: "LPX64"=%u#%u@%u refs %d del %d\n",
263                 eco, eco->eco_id,
264                 eco->eco_lsm->lsm_stripe_size,
265                 eco->eco_lsm->lsm_stripe_count,
266                 eco->eco_lsm->lsm_oinfo[0]->loi_ost_idx,
267                 eco->eco_refcount, eco->eco_deleted);
268         return (0);
269
270  failed:
271         echo_free_object (eco);
272         if (rc) 
273                 CERROR("%s: err %d on create\n", obd->obd_name, rc);
274         return (rc);
275 }
276
277 static int
278 echo_get_object (struct ec_object **ecop, struct obd_device *obd,
279                  struct obdo *oa)
280 {
281         struct echo_client_obd *ec = &obd->u.echo_client;
282         struct ec_object       *eco;
283         struct ec_object       *eco2;
284         int                     rc;
285
286         if ((oa->o_valid & OBD_MD_FLID) == 0 ||
287             oa->o_id == 0)                      /* disallow use of object id 0 */
288         {
289                 CERROR ("No valid oid\n");
290                 return (-EINVAL);
291         }
292
293         spin_lock (&ec->ec_lock);
294         eco = echo_find_object_locked (obd, oa->o_id);
295         if (eco != NULL) {
296                 if (eco->eco_deleted) {           /* being deleted */
297                         spin_unlock(&ec->ec_lock);/* (see comment in cleanup) */
298                         return (-EAGAIN);
299                 }
300
301                 eco->eco_refcount++;
302                 spin_unlock (&ec->ec_lock);
303                 *ecop = eco;
304                 CDEBUG (D_INFO,
305                         "found %p: "LPX64"=%u#%u@%u refs %d del %d\n",
306                         eco, eco->eco_id,
307                         eco->eco_lsm->lsm_stripe_size,
308                         eco->eco_lsm->lsm_stripe_count,
309                         eco->eco_lsm->lsm_oinfo[0]->loi_ost_idx,
310                         eco->eco_refcount, eco->eco_deleted);
311                 return (0);
312         }
313         spin_unlock (&ec->ec_lock);
314
315         if (ec->ec_nstripes != 0)               /* striping required */
316                 return (-ENOENT);
317
318         eco = echo_allocate_object (obd);
319         if (eco == NULL)
320                 return (-ENOMEM);
321
322         eco->eco_id = eco->eco_lsm->lsm_object_id = oa->o_id;
323
324         spin_lock (&ec->ec_lock);
325
326         eco2 = echo_find_object_locked (obd, oa->o_id);
327         if (eco2 == NULL) {                     /* didn't race */
328                 list_add (&eco->eco_obj_chain, &ec->ec_objects);
329                 spin_unlock (&ec->ec_lock);
330                 eco->eco_refcount = 1;
331                 *ecop = eco;
332                 CDEBUG (D_INFO,
333                         "created %p: "LPX64"=%u#%u@%d refs %d del %d\n",
334                         eco, eco->eco_id,
335                         eco->eco_lsm->lsm_stripe_size,
336                         eco->eco_lsm->lsm_stripe_count,
337                         eco->eco_lsm->lsm_oinfo[0]->loi_ost_idx,
338                         eco->eco_refcount, eco->eco_deleted);
339                 return (0);
340         }
341
342         if (eco2->eco_deleted)
343                 rc = -EAGAIN;                   /* lose race */
344         else {
345                 eco2->eco_refcount++;           /* take existing */
346                 *ecop = eco2;
347                 rc = 0;
348                 LASSERT (eco2->eco_id == eco2->eco_lsm->lsm_object_id);
349                 CDEBUG (D_INFO,
350                         "found(2) %p: "LPX64"=%u#%u@%d refs %d del %d\n",
351                         eco2, eco2->eco_id,
352                         eco2->eco_lsm->lsm_stripe_size,
353                         eco2->eco_lsm->lsm_stripe_count,
354                         eco2->eco_lsm->lsm_oinfo[0]->loi_ost_idx,
355                         eco2->eco_refcount, eco2->eco_deleted);
356         }
357
358         spin_unlock (&ec->ec_lock);
359
360         echo_free_object (eco);
361         return (rc);
362 }
363
364 static void
365 echo_put_object (struct ec_object *eco)
366 {
367         struct obd_device      *obd = eco->eco_device;
368         struct echo_client_obd *ec = &obd->u.echo_client;
369
370         /* Release caller's ref on the object.
371          * delete => mark for deletion when last ref goes
372          */
373
374         spin_lock (&ec->ec_lock);
375
376         eco->eco_refcount--;
377         LASSERT (eco->eco_refcount >= 0);
378
379         CDEBUG(D_INFO, "put %p: "LPX64"=%u#%u@%d refs %d del %d\n",
380                eco, eco->eco_id,
381                eco->eco_lsm->lsm_stripe_size,
382                eco->eco_lsm->lsm_stripe_count,
383                eco->eco_lsm->lsm_oinfo[0]->loi_ost_idx,
384                eco->eco_refcount, eco->eco_deleted);
385
386         if (eco->eco_refcount != 0 || !eco->eco_deleted) {
387                 spin_unlock (&ec->ec_lock);
388                 return;
389         }
390
391         spin_unlock (&ec->ec_lock);
392
393         /* NB leave obj in the object list.  We must prevent anyone from
394          * attempting to enqueue on this object number until we can be
395          * sure there will be no more lock callbacks.
396          */
397         obd_cancel_unused(ec->ec_exp, eco->eco_lsm, 0, NULL);
398
399         /* now we can let it go */
400         spin_lock (&ec->ec_lock);
401         list_del (&eco->eco_obj_chain);
402         spin_unlock (&ec->ec_lock);
403
404         LASSERT (eco->eco_refcount == 0);
405
406         echo_free_object (eco);
407 }
408
409 static void
410 echo_get_stripe_off_id (struct lov_stripe_md *lsm, obd_off *offp, obd_id *idp)
411 {
412         unsigned long stripe_count;
413         unsigned long stripe_size;
414         unsigned long width;
415         unsigned long woffset;
416         int           stripe_index;
417         obd_off       offset;
418
419         if (lsm->lsm_stripe_count <= 1)
420                 return;
421
422         offset       = *offp;
423         stripe_size  = lsm->lsm_stripe_size;
424         stripe_count = lsm->lsm_stripe_count;
425
426         /* width = # bytes in all stripes */
427         width = stripe_size * stripe_count;
428
429         /* woffset = offset within a width; offset = whole number of widths */
430         woffset = do_div (offset, width);
431
432         stripe_index = woffset / stripe_size;
433
434         *idp = lsm->lsm_oinfo[stripe_index]->loi_id;
435         *offp = offset * stripe_size + woffset % stripe_size;
436 }
437
438 static void 
439 echo_client_page_debug_setup(struct lov_stripe_md *lsm, 
440                              cfs_page_t *page, int rw, obd_id id, 
441                              obd_off offset, obd_off count)
442 {
443         char    *addr;
444         obd_off  stripe_off;
445         obd_id   stripe_id;
446         int      delta;
447
448         /* no partial pages on the client */
449         LASSERT(count == CFS_PAGE_SIZE);
450
451         addr = cfs_kmap(page);
452
453         for (delta = 0; delta < CFS_PAGE_SIZE; delta += OBD_ECHO_BLOCK_SIZE) {
454                 if (rw == OBD_BRW_WRITE) {
455                         stripe_off = offset + delta;
456                         stripe_id = id;
457                         echo_get_stripe_off_id(lsm, &stripe_off, &stripe_id);
458                 } else {
459                         stripe_off = 0xdeadbeef00c0ffeeULL;
460                         stripe_id = 0xdeadbeef00c0ffeeULL;
461                 }
462                 block_debug_setup(addr + delta, OBD_ECHO_BLOCK_SIZE, 
463                                   stripe_off, stripe_id);
464         }
465
466         cfs_kunmap(page);
467 }
468
469 static int
470 echo_client_page_debug_check(struct lov_stripe_md *lsm, 
471                              cfs_page_t *page, obd_id id, 
472                              obd_off offset, obd_off count)
473 {
474         obd_off stripe_off;
475         obd_id  stripe_id;
476         char   *addr;
477         int     delta;
478         int     rc;
479         int     rc2;
480
481         /* no partial pages on the client */
482         LASSERT(count == CFS_PAGE_SIZE);
483
484         addr = cfs_kmap(page);
485
486         for (rc = delta = 0; delta < CFS_PAGE_SIZE; delta += OBD_ECHO_BLOCK_SIZE) {
487                 stripe_off = offset + delta;
488                 stripe_id = id;
489                 echo_get_stripe_off_id (lsm, &stripe_off, &stripe_id);
490
491                 rc2 = block_debug_check("test_brw", 
492                                         addr + delta, OBD_ECHO_BLOCK_SIZE, 
493                                         stripe_off, stripe_id);
494                 if (rc2 != 0) {
495                         CERROR ("Error in echo object "LPX64"\n", id);
496                         rc = rc2;
497                 }
498         }
499
500         cfs_kunmap(page);
501         return rc;
502 }
503
504 static int echo_client_kbrw(struct obd_device *obd, int rw, struct obdo *oa,
505                             struct lov_stripe_md *lsm, obd_off offset,
506                             obd_size count, struct obd_trans_info *oti)
507 {
508         struct echo_client_obd *ec = &obd->u.echo_client;
509         struct obd_info         oinfo = { { { 0 } } };
510         obd_count               npages;
511         struct brw_page        *pga;
512         struct brw_page        *pgp;
513         obd_off                 off;
514         int                     i;
515         int                     rc;
516         int                     verify;
517         int                     gfp_mask;
518
519         verify = ((oa->o_id) != ECHO_PERSISTENT_OBJID &&
520                   (oa->o_valid & OBD_MD_FLFLAGS) != 0 &&
521                   (oa->o_flags & OBD_FL_DEBUG_CHECK) != 0);
522
523         gfp_mask = ((oa->o_id & 2) == 0) ? CFS_ALLOC_STD : CFS_ALLOC_HIGHUSER;
524
525         LASSERT(rw == OBD_BRW_WRITE || rw == OBD_BRW_READ);
526         LASSERT(lsm != NULL);
527         LASSERT(lsm->lsm_object_id == oa->o_id);
528
529         if (count <= 0 ||
530             (count & (~CFS_PAGE_MASK)) != 0)
531                 return (-EINVAL);
532
533         /* XXX think again with misaligned I/O */
534         npages = count >> CFS_PAGE_SHIFT;
535
536         OBD_ALLOC(pga, npages * sizeof(*pga));
537         if (pga == NULL)
538                 return (-ENOMEM);
539
540         for (i = 0, pgp = pga, off = offset;
541              i < npages;
542              i++, pgp++, off += CFS_PAGE_SIZE) {
543
544                 LASSERT (pgp->pg == NULL);      /* for cleanup */
545
546                 rc = -ENOMEM;
547                 pgp->pg = cfs_alloc_page (gfp_mask);
548                 if (pgp->pg == NULL)
549                         goto out;
550
551                 pgp->count = CFS_PAGE_SIZE;
552                 pgp->off = off;
553                 pgp->flag = 0;
554
555                 if (verify)
556                         echo_client_page_debug_setup(lsm, pgp->pg, rw,
557                                                      oa->o_id, off, pgp->count);
558         }
559
560         oinfo.oi_oa = oa;
561         oinfo.oi_md = lsm;
562         rc = obd_brw(rw, ec->ec_exp, &oinfo, npages, pga, oti);
563
564  out:
565         if (rc != 0 || rw != OBD_BRW_READ)
566                 verify = 0;
567
568         for (i = 0, pgp = pga; i < npages; i++, pgp++) {
569                 if (pgp->pg == NULL)
570                         continue;
571
572                 if (verify) {
573                         int vrc;
574                         vrc = echo_client_page_debug_check(lsm, pgp->pg, oa->o_id,
575                                                            pgp->off, pgp->count);
576                         if (vrc != 0 && rc == 0)
577                                 rc = vrc;
578                 }
579                 cfs_free_page(pgp->pg);
580         }
581         OBD_FREE(pga, npages * sizeof(*pga));
582         return (rc);
583 }
584
585 #ifdef __KERNEL__
586 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
587 #include <linux/iobuf.h>
588
589 static int echo_client_ubrw(struct obd_device *obd, int rw,
590                             struct obdo *oa, struct lov_stripe_md *lsm,
591                             obd_off offset, obd_size count, char *buffer,
592                             struct obd_trans_info *oti)
593 {
594         struct echo_client_obd *ec = &obd->u.echo_client;
595         struct obd_info         oinfo = { { { 0 } } };
596         obd_count               npages;
597         struct brw_page        *pga;
598         struct brw_page        *pgp;
599         obd_off                 off;
600         struct kiobuf          *kiobuf;
601         int                     i;
602         int                     rc;
603
604         LASSERT (rw == OBD_BRW_WRITE || rw == OBD_BRW_READ);
605
606         /* NB: for now, only whole pages, page aligned */
607
608         if (count <= 0 ||
609             ((long)buffer & (~CFS_PAGE_MASK)) != 0 ||
610             (count & (~CFS_PAGE_MASK)) != 0 ||
611             (lsm != NULL && lsm->lsm_object_id != oa->o_id))
612                 return (-EINVAL);
613
614         /* XXX think again with misaligned I/O */
615         npages = count >> CFS_PAGE_SHIFT;
616
617         OBD_ALLOC(pga, npages * sizeof(*pga));
618         if (pga == NULL)
619                 return (-ENOMEM);
620
621         rc = alloc_kiovec (1, &kiobuf);
622         if (rc != 0)
623                 goto out_1;
624
625         rc = map_user_kiobuf ((rw == OBD_BRW_READ) ? READ : WRITE,
626                               kiobuf, (unsigned long)buffer, count);
627         if (rc != 0)
628                 goto out_2;
629
630         LASSERT (kiobuf->offset == 0);
631         LASSERT (kiobuf->nr_pages == npages);
632
633         for (i = 0, off = offset, pgp = pga;
634              i < npages;
635              i++, off += CFS_PAGE_SIZE, pgp++) {
636                 pgp->off = off;
637                 pgp->pg = kiobuf->maplist[i];
638                 pgp->count = CFS_PAGE_SIZE;
639                 pgp->flag = 0;
640         }
641
642         oinfo.oi_oa = oa;
643         oinfo.oi_md = lsm;
644         rc = obd_brw(rw, ec->ec_exp, &oinfo, npages, pga, oti);
645
646         //        if (rw == OBD_BRW_READ)
647         //                mark_dirty_kiobuf (kiobuf, count);
648
649         unmap_kiobuf (kiobuf);
650  out_2:
651         free_kiovec (1, &kiobuf);
652  out_1:
653         OBD_FREE(pga, npages * sizeof(*pga));
654         return (rc);
655 }
656 #else
657 static int echo_client_ubrw(struct obd_device *obd, int rw,
658                             struct obdo *oa, struct lov_stripe_md *lsm,
659                             obd_off offset, obd_size count, char *buffer,
660                             struct obd_trans_info *oti)
661 {
662         /* echo_client_ubrw() needs to be ported on 2.6 yet */
663         LBUG();
664         return 0;
665 }
666 #endif
667 #endif
668
669 struct echo_async_state;
670
671 #define EAP_MAGIC 79277927
672 struct echo_async_page {
673         int                     eap_magic;
674         cfs_page_t             *eap_page;
675         void                    *eap_cookie;
676         obd_off                 eap_off;
677         struct echo_async_state *eap_eas;
678         struct list_head        eap_item;
679 };
680
681 #define EAP_FROM_COOKIE(c)                                                      \
682         (LASSERT(((struct echo_async_page *)(c))->eap_magic == EAP_MAGIC),      \
683          (struct echo_async_page *)(c))
684
685 struct echo_async_state {
686         spinlock_t              eas_lock;
687         obd_off                 eas_next_offset;
688         obd_off                 eas_end_offset;
689         int                     eas_in_flight;
690         int                     eas_rc;
691         cfs_waitq_t             eas_waitq;
692         struct list_head        eas_avail;
693         struct obdo             eas_oa;
694         struct lov_stripe_md    *eas_lsm;
695 };
696
697 static int eas_should_wake(struct echo_async_state *eas)
698 {
699         int rc = 0;
700
701         spin_lock(&eas->eas_lock);
702         if (eas->eas_rc == 0 && !list_empty(&eas->eas_avail))
703             rc = 1;
704         spin_unlock(&eas->eas_lock);
705         return rc;
706 };
707
708 static int ec_ap_make_ready(void *data, int cmd)
709 {
710         /* our pages are issued ready */
711         LBUG();
712         return 0;
713 }
714 static int ec_ap_refresh_count(void *data, int cmd)
715 {
716         /* our pages are issued with a stable count */
717         LBUG();
718         return CFS_PAGE_SIZE;
719 }
720 static void ec_ap_fill_obdo(void *data, int cmd, struct obdo *oa)
721 {
722         struct echo_async_page *eap = EAP_FROM_COOKIE(data);
723
724         memcpy(oa, &eap->eap_eas->eas_oa, sizeof(*oa));
725 }
726
727 static int ec_ap_completion(void *data, int cmd, struct obdo *oa, int rc)
728 {
729         struct echo_async_page *eap = EAP_FROM_COOKIE(data);
730         struct echo_async_state *eas;
731
732         eas = eap->eap_eas;
733
734         if (cmd == OBD_BRW_READ &&
735             eas->eas_oa.o_id != ECHO_PERSISTENT_OBJID &&
736             (eas->eas_oa.o_valid & OBD_MD_FLFLAGS) != 0 &&
737             (eas->eas_oa.o_flags & OBD_FL_DEBUG_CHECK) != 0)
738                 echo_client_page_debug_check(eas->eas_lsm, eap->eap_page, 
739                                              eas->eas_oa.o_id, eap->eap_off,
740                                              CFS_PAGE_SIZE);
741
742         spin_lock(&eas->eas_lock);
743         if (rc && !eas->eas_rc)
744                 eas->eas_rc = rc;
745         eas->eas_in_flight--;
746         list_add(&eap->eap_item, &eas->eas_avail);
747         cfs_waitq_signal(&eas->eas_waitq);
748         spin_unlock(&eas->eas_lock);
749         return 0;
750 }
751
752 static struct obd_async_page_ops ec_async_page_ops = {
753         .ap_make_ready =        ec_ap_make_ready,
754         .ap_refresh_count =     ec_ap_refresh_count,
755         .ap_fill_obdo =         ec_ap_fill_obdo,
756         .ap_completion =        ec_ap_completion,
757 };
758
759 static int echo_client_async_page(struct obd_export *exp, int rw,
760                                    struct obdo *oa, struct lov_stripe_md *lsm,
761                                    obd_off offset, obd_size count,
762                                    obd_size batching)
763 {
764         obd_count npages, i;
765         struct echo_async_page *eap;
766         struct echo_async_state eas;
767         int rc = 0;
768         struct echo_async_page **aps = NULL;
769
770         ENTRY;
771 #if 0
772         int                     verify;
773         int                     gfp_mask;
774
775         verify = ((oa->o_id) != ECHO_PERSISTENT_OBJID &&
776                   (oa->o_valid & OBD_MD_FLFLAGS) != 0 &&
777                   (oa->o_flags & OBD_FL_DEBUG_CHECK) != 0);
778
779         gfp_mask = ((oa->o_id & 2) == 0) ? GFP_KERNEL : GFP_HIGHUSER;
780 #endif
781
782         LASSERT(rw == OBD_BRW_WRITE || rw == OBD_BRW_READ);
783
784         if (count <= 0 ||
785             (count & (~CFS_PAGE_MASK)) != 0 ||
786             (lsm != NULL &&
787              lsm->lsm_object_id != oa->o_id))
788                 return (-EINVAL);
789
790         /* XXX think again with misaligned I/O */
791         npages = batching >> CFS_PAGE_SHIFT;
792
793         memcpy(&eas.eas_oa, oa, sizeof(*oa));
794         eas.eas_next_offset = offset;
795         eas.eas_end_offset = offset + count;
796         spin_lock_init(&eas.eas_lock);
797         cfs_waitq_init(&eas.eas_waitq);
798         eas.eas_in_flight = 0;
799         eas.eas_rc = 0;
800         eas.eas_lsm = lsm;
801         CFS_INIT_LIST_HEAD(&eas.eas_avail);
802
803         OBD_ALLOC(aps, npages * sizeof aps[0]);
804         if (aps == NULL)
805                 return (-ENOMEM);
806
807         /* prepare the group of pages that we're going to be keeping
808          * in flight */
809         for (i = 0; i < npages; i++) {
810                 cfs_page_t *page = cfs_alloc_page(CFS_ALLOC_STD);
811                 if (page == NULL)
812                         GOTO(out, rc = -ENOMEM);
813
814                 OBD_ALLOC(eap, sizeof(*eap));
815                 if (eap == NULL) {
816                         cfs_free_page(page);
817                         GOTO(out, rc = -ENOMEM);
818                 }
819
820                 eap->eap_magic = EAP_MAGIC;
821                 eap->eap_page = page;
822                 eap->eap_eas = &eas;
823                 list_add_tail(&eap->eap_item, &eas.eas_avail);
824                 aps[i] = eap;
825         }
826
827         /* first we spin queueing io and being woken by its completion */
828         spin_lock(&eas.eas_lock);
829         for(;;) {
830                 int rc;
831
832                 /* sleep until we have a page to send */
833                 spin_unlock(&eas.eas_lock);
834                 rc = wait_event_interruptible(eas.eas_waitq, 
835                                               eas_should_wake(&eas));
836                 spin_lock(&eas.eas_lock);
837                 if (rc && !eas.eas_rc)
838                         eas.eas_rc = rc;
839                 if (eas.eas_rc)
840                         break;
841                 if (list_empty(&eas.eas_avail))
842                         continue;
843                 eap = list_entry(eas.eas_avail.next, struct echo_async_page,
844                                  eap_item);
845                 list_del(&eap->eap_item);
846                 spin_unlock(&eas.eas_lock);
847
848                 /* unbind the eap from its old page offset */
849                 if (eap->eap_cookie != NULL) {
850                         obd_teardown_async_page(exp, lsm, NULL, 
851                                                 eap->eap_cookie);
852                         eap->eap_cookie = NULL;
853                 }
854
855                 eas.eas_next_offset += CFS_PAGE_SIZE;
856                 eap->eap_off = eas.eas_next_offset;
857
858                 rc = obd_prep_async_page(exp, lsm, NULL, eap->eap_page,
859                                          eap->eap_off, &ec_async_page_ops,
860                                          eap, &eap->eap_cookie);
861                 if (rc) {
862                         spin_lock(&eas.eas_lock);
863                         eas.eas_rc = rc;
864                         break;
865                 }
866
867                 if (oa->o_id != ECHO_PERSISTENT_OBJID &&
868                     (oa->o_valid & OBD_MD_FLFLAGS) != 0 &&
869                     (oa->o_flags & OBD_FL_DEBUG_CHECK) != 0)
870                         echo_client_page_debug_setup(lsm, eap->eap_page, rw, 
871                                                      oa->o_id, 
872                                                      eap->eap_off, CFS_PAGE_SIZE);
873
874                 /* always asserts urgent, which isn't quite right */
875                 rc = obd_queue_async_io(exp, lsm, NULL, eap->eap_cookie,
876                                         rw, 0, CFS_PAGE_SIZE, 0,
877                                         ASYNC_READY | ASYNC_URGENT |
878                                         ASYNC_COUNT_STABLE);
879                 spin_lock(&eas.eas_lock);
880                 if (rc && !eas.eas_rc) {
881                         eas.eas_rc = rc;
882                         break;
883                 }
884                 eas.eas_in_flight++;
885                 if (eas.eas_next_offset == eas.eas_end_offset)
886                         break;
887         } 
888
889         /* still hold the eas_lock here.. */
890
891         /* now we just spin waiting for all the rpcs to complete */
892         while(eas.eas_in_flight) {
893                 spin_unlock(&eas.eas_lock);
894                 wait_event_interruptible(eas.eas_waitq, 
895                                          eas.eas_in_flight == 0);
896                 spin_lock(&eas.eas_lock);
897         }
898         spin_unlock(&eas.eas_lock);
899
900 out:
901         if (aps != NULL) {
902                 for (i = 0; i < npages; ++ i) {
903                         cfs_page_t *page;
904
905                         eap = aps[i];
906                         page = eap->eap_page;
907                         if (eap->eap_cookie != NULL)
908                                 obd_teardown_async_page(exp, lsm, NULL,
909                                                         eap->eap_cookie);
910                         OBD_FREE(eap, sizeof(*eap));
911                         cfs_free_page(page);
912                 }
913                 OBD_FREE(aps, npages * sizeof aps[0]);
914         }
915
916         RETURN(rc);
917 }
918
919 static int echo_client_prep_commit(struct obd_export *exp, int rw,
920                                    struct obdo *oa, struct lov_stripe_md *lsm,
921                                    obd_off offset, obd_size count,  
922                                    obd_size batch, struct obd_trans_info *oti)
923 {
924         struct obd_ioobj ioo;
925         struct niobuf_local *lnb;
926         struct niobuf_remote *rnb;
927         obd_off off;
928         obd_size npages, tot_pages;
929         int i, ret = 0;
930         ENTRY;
931
932         if (count <= 0 || (count & (~CFS_PAGE_MASK)) != 0 ||
933             (lsm != NULL && lsm->lsm_object_id != oa->o_id))
934                 RETURN(-EINVAL);
935
936         npages = batch >> CFS_PAGE_SHIFT;
937         tot_pages = count >> CFS_PAGE_SHIFT;
938
939         OBD_ALLOC(lnb, npages * sizeof(struct niobuf_local));
940         OBD_ALLOC(rnb, npages * sizeof(struct niobuf_remote));
941
942         if (lnb == NULL || rnb == NULL)
943                 GOTO(out, ret = -ENOMEM);
944
945         obdo_to_ioobj(oa, &ioo);
946
947         off = offset;
948
949         for(; tot_pages; tot_pages -= npages) {
950                 if (tot_pages < npages)
951                         npages = tot_pages;
952
953                 for (i = 0; i < npages; i++, off += CFS_PAGE_SIZE) {
954                         rnb[i].offset = off;
955                         rnb[i].len = CFS_PAGE_SIZE;
956                 }
957
958                 ioo.ioo_bufcnt = npages;
959                 oti->oti_transno = 0;
960
961                 ret = obd_preprw(rw, exp, oa, 1, &ioo, npages, rnb, lnb, oti);
962                 if (ret != 0)
963                         GOTO(out, ret);
964
965                 for (i = 0; i < npages; i++) {
966                         cfs_page_t *page = lnb[i].page;
967
968                         /* read past eof? */
969                         if (page == NULL && lnb[i].rc == 0)
970                                 continue;
971
972                         if (oa->o_id == ECHO_PERSISTENT_OBJID ||
973                             (oa->o_valid & OBD_MD_FLFLAGS) == 0 ||
974                             (oa->o_flags & OBD_FL_DEBUG_CHECK) == 0)
975                                 continue;
976
977                         if (rw == OBD_BRW_WRITE)
978                                 echo_client_page_debug_setup(lsm, page, rw,
979                                                              oa->o_id,
980                                                              rnb[i].offset,
981                                                              rnb[i].len);
982                         else
983                                 echo_client_page_debug_check(lsm, page,
984                                                              oa->o_id,
985                                                              rnb[i].offset,
986                                                              rnb[i].len);
987                 }
988
989                 ret = obd_commitrw(rw, exp, oa, 1, &ioo, npages, lnb, oti, ret);
990                 if (ret != 0)
991                         GOTO(out, ret);
992         }
993
994 out:
995         if (lnb)
996                 OBD_FREE(lnb, npages * sizeof(struct niobuf_local));
997         if (rnb)
998                 OBD_FREE(rnb, npages * sizeof(struct niobuf_remote));
999         RETURN(ret);
1000 }
1001
1002 int echo_client_brw_ioctl(int rw, struct obd_export *exp,
1003                           struct obd_ioctl_data *data)
1004 {
1005         struct obd_device *obd = class_exp2obd(exp);
1006         struct echo_client_obd *ec = &obd->u.echo_client;
1007         struct obd_trans_info dummy_oti = { .oti_thread_id = -1 };
1008         struct ec_object *eco;
1009         int rc;
1010         ENTRY;
1011
1012         rc = echo_get_object(&eco, obd, &data->ioc_obdo1);
1013         if (rc)
1014                 RETURN(rc);
1015
1016         data->ioc_obdo1.o_valid &= ~OBD_MD_FLHANDLE;
1017         data->ioc_obdo1.o_valid |= OBD_MD_FLGROUP;
1018         data->ioc_obdo1.o_gr = FILTER_GROUP_ECHO;
1019
1020         switch((long)data->ioc_pbuf1) {
1021         case 1:
1022                 if (data->ioc_pbuf2 == NULL) { // NULL user data pointer
1023                         rc = echo_client_kbrw(obd, rw, &data->ioc_obdo1,
1024                                               eco->eco_lsm, data->ioc_offset,
1025                                               data->ioc_count, &dummy_oti);
1026                 } else {
1027 #ifdef __KERNEL__
1028                         rc = echo_client_ubrw(obd, rw, &data->ioc_obdo1,
1029                                               eco->eco_lsm, data->ioc_offset,
1030                                               data->ioc_count, data->ioc_pbuf2,
1031                                               &dummy_oti);
1032 #endif
1033                 }
1034                 break;
1035         case 2:
1036                 rc = echo_client_async_page(ec->ec_exp, rw, &data->ioc_obdo1,
1037                                            eco->eco_lsm, data->ioc_offset,
1038                                            data->ioc_count, data->ioc_plen1);
1039                 break;
1040         case 3:
1041                 rc = echo_client_prep_commit(ec->ec_exp, rw, &data->ioc_obdo1,
1042                                             eco->eco_lsm, data->ioc_offset,
1043                                             data->ioc_count, data->ioc_plen1,
1044                                             &dummy_oti);
1045                 break;
1046         default:
1047                 rc = -EINVAL;
1048         }
1049         echo_put_object(eco);
1050         RETURN(rc);
1051 }
1052
1053 static int
1054 echo_ldlm_callback (struct ldlm_lock *lock, struct ldlm_lock_desc *new,
1055                     void *data, int flag)
1056 {
1057         struct ec_object       *eco = (struct ec_object *)data;
1058         struct echo_client_obd *ec = &(eco->eco_device->u.echo_client);
1059         struct lustre_handle    lockh;
1060         struct list_head       *el;
1061         int                     found = 0;
1062         int                     rc;
1063
1064         ldlm_lock2handle (lock, &lockh);
1065
1066         /* #ifdef this out if we're not feeling paranoid */
1067         spin_lock (&ec->ec_lock);
1068         list_for_each (el, &ec->ec_objects) {
1069                 found = (eco == list_entry(el, struct ec_object,
1070                                            eco_obj_chain));
1071                 if (found)
1072                         break;
1073         }
1074         spin_unlock (&ec->ec_lock);
1075         LASSERT (found);
1076
1077         switch (flag) {
1078         case LDLM_CB_BLOCKING:
1079                 CDEBUG(D_INFO, "blocking callback on "LPX64", handle "LPX64"\n",
1080                        eco->eco_id, lockh.cookie);
1081                 rc = ldlm_cli_cancel (&lockh);
1082                 if (rc != ELDLM_OK)
1083                         CERROR ("ldlm_cli_cancel failed: %d\n", rc);
1084                 break;
1085
1086         case LDLM_CB_CANCELING:
1087                 CDEBUG(D_INFO, "cancel callback on "LPX64", handle "LPX64"\n",
1088                        eco->eco_id, lockh.cookie);
1089                 break;
1090
1091         default:
1092                 LBUG ();
1093         }
1094
1095         return (0);
1096 }
1097
1098 static int
1099 echo_client_enqueue(struct obd_export *exp, struct obdo *oa,
1100                     int mode, obd_off offset, obd_size nob)
1101 {
1102         struct obd_device      *obd = exp->exp_obd;
1103         struct echo_client_obd *ec = &obd->u.echo_client;
1104         struct lustre_handle   *ulh = obdo_handle (oa);
1105         struct obd_enqueue_info einfo = { 0 };
1106         struct obd_info oinfo = { { { 0 } } };
1107         struct ec_object       *eco;
1108         struct ec_lock         *ecl;
1109         int                     rc;
1110
1111         if (!(mode == LCK_PR || mode == LCK_PW))
1112                 return -EINVAL;
1113
1114         if ((offset & (~CFS_PAGE_MASK)) != 0 ||
1115             (nob & (~CFS_PAGE_MASK)) != 0)
1116                 return -EINVAL;
1117
1118         rc = echo_get_object (&eco, obd, oa);
1119         if (rc != 0)
1120                 return rc;
1121
1122         rc = -ENOMEM;
1123         OBD_ALLOC (ecl, sizeof (*ecl));
1124         if (ecl == NULL)
1125                 goto failed_0;
1126
1127         ecl->ecl_mode = mode;
1128         ecl->ecl_object = eco;
1129         ecl->ecl_policy.l_extent.start = offset;
1130         ecl->ecl_policy.l_extent.end =
1131                 (nob == 0) ? ((obd_off) -1) : (offset + nob - 1);
1132
1133         einfo.ei_type = LDLM_EXTENT;
1134         einfo.ei_mode = mode;
1135         einfo.ei_cb_bl = echo_ldlm_callback;
1136         einfo.ei_cb_cp = ldlm_completion_ast;
1137         einfo.ei_cb_gl = NULL;
1138         einfo.ei_cbdata = eco;
1139
1140         oinfo.oi_policy = ecl->ecl_policy;
1141         oinfo.oi_lockh = &ecl->ecl_lock_handle;
1142         oinfo.oi_md = eco->eco_lsm;
1143         rc = obd_enqueue(ec->ec_exp, &oinfo, &einfo);
1144         if (rc != 0)
1145                 goto failed_1;
1146
1147         CDEBUG(D_INFO, "enqueue handle "LPX64"\n", ecl->ecl_lock_handle.cookie);
1148
1149         /* NB ecl takes object ref from echo_get_object() above */
1150         spin_lock(&ec->ec_lock);
1151
1152         list_add(&ecl->ecl_exp_chain, &exp->exp_ec_data.eced_locks);
1153         ulh->cookie = ecl->ecl_cookie = ec->ec_unique++;
1154
1155         spin_unlock(&ec->ec_lock);
1156
1157         oa->o_valid |= OBD_MD_FLHANDLE;
1158         return 0;
1159
1160  failed_1:
1161         OBD_FREE (ecl, sizeof (*ecl));
1162  failed_0:
1163         echo_put_object (eco);
1164         return (rc);
1165 }
1166
1167 static int
1168 echo_client_cancel(struct obd_export *exp, struct obdo *oa)
1169 {
1170         struct obd_device      *obd = exp->exp_obd;
1171         struct echo_client_obd *ec = &obd->u.echo_client;
1172         struct lustre_handle   *ulh = obdo_handle (oa);
1173         struct ec_lock         *ecl = NULL;
1174         int                     found = 0;
1175         struct list_head       *el;
1176         int                     rc;
1177
1178         if ((oa->o_valid & OBD_MD_FLHANDLE) == 0)
1179                 return -EINVAL;
1180
1181         spin_lock (&ec->ec_lock);
1182
1183         list_for_each (el, &exp->exp_ec_data.eced_locks) {
1184                 ecl = list_entry (el, struct ec_lock, ecl_exp_chain);
1185                 found = (ecl->ecl_cookie == ulh->cookie);
1186                 if (found) {
1187                         list_del (&ecl->ecl_exp_chain);
1188                         break;
1189                 }
1190         }
1191
1192         spin_unlock (&ec->ec_lock);
1193
1194         if (!found)
1195                 return (-ENOENT);
1196
1197         rc = obd_cancel(ec->ec_exp, ecl->ecl_object->eco_lsm, ecl->ecl_mode,
1198                         &ecl->ecl_lock_handle);
1199
1200         echo_put_object (ecl->ecl_object);
1201         OBD_FREE (ecl, sizeof (*ecl));
1202
1203         return rc;
1204 }
1205
1206 static int
1207 echo_client_iocontrol(unsigned int cmd, struct obd_export *exp,
1208                       int len, void *karg, void *uarg)
1209 {
1210         struct obd_device      *obd;
1211         struct echo_client_obd *ec;
1212         struct ec_object       *eco;
1213         struct obd_ioctl_data  *data = karg;
1214         struct obd_trans_info   dummy_oti;
1215         struct oti_req_ack_lock *ack_lock;
1216         struct obdo            *oa;
1217         int                     rw = OBD_BRW_READ;
1218         int                     rc = 0;
1219         int                     i;
1220         ENTRY;
1221
1222         unlock_kernel();
1223
1224         memset(&dummy_oti, 0, sizeof(dummy_oti));
1225
1226         obd = exp->exp_obd;
1227         ec = &obd->u.echo_client;
1228
1229         switch (cmd) {
1230         case OBD_IOC_CREATE:                    /* may create echo object */
1231                 if (!capable (CAP_SYS_ADMIN))
1232                         GOTO (out, rc = -EPERM);
1233
1234                 rc = echo_create_object (obd, 1, &data->ioc_obdo1,
1235                                          data->ioc_pbuf1, data->ioc_plen1,
1236                                          &dummy_oti);
1237                 GOTO(out, rc);
1238
1239         case OBD_IOC_DESTROY:
1240                 if (!capable (CAP_SYS_ADMIN))
1241                         GOTO (out, rc = -EPERM);
1242                 rc = echo_get_object (&eco, obd, &data->ioc_obdo1);
1243                 if (rc == 0) {
1244                         oa = &data->ioc_obdo1;
1245                         oa->o_gr = FILTER_GROUP_ECHO;
1246                         oa->o_valid |= OBD_MD_FLGROUP;
1247                         rc = obd_destroy(ec->ec_exp, oa, eco->eco_lsm,
1248                                          &dummy_oti, NULL);
1249                         if (rc == 0)
1250                                 eco->eco_deleted = 1;
1251                         echo_put_object(eco);
1252                 }
1253                 GOTO(out, rc);
1254
1255         case OBD_IOC_GETATTR:
1256                 rc = echo_get_object (&eco, obd, &data->ioc_obdo1);
1257                 if (rc == 0) {
1258                         struct obd_info oinfo = { { { 0 } } };
1259                         oinfo.oi_md = eco->eco_lsm;
1260                         oinfo.oi_oa = &data->ioc_obdo1;
1261                         rc = obd_getattr(ec->ec_exp, &oinfo);
1262                         echo_put_object(eco);
1263                 }
1264                 GOTO(out, rc);
1265
1266         case OBD_IOC_SETATTR:
1267                 if (!capable (CAP_SYS_ADMIN))
1268                         GOTO (out, rc = -EPERM);
1269
1270                 rc = echo_get_object (&eco, obd, &data->ioc_obdo1);
1271                 if (rc == 0) {
1272                         struct obd_info oinfo = { { { 0 } } };
1273                         oinfo.oi_oa = &data->ioc_obdo1;
1274                         oinfo.oi_md = eco->eco_lsm;
1275
1276                         rc = obd_setattr(ec->ec_exp, &oinfo, NULL);
1277                         echo_put_object(eco);
1278                 }
1279                 GOTO(out, rc);
1280
1281         case OBD_IOC_BRW_WRITE:
1282                 if (!capable (CAP_SYS_ADMIN))
1283                         GOTO (out, rc = -EPERM);
1284
1285                 rw = OBD_BRW_WRITE;
1286                 /* fall through */
1287         case OBD_IOC_BRW_READ:
1288                 rc = echo_client_brw_ioctl(rw, exp, data);
1289                 GOTO(out, rc);
1290
1291         case ECHO_IOC_GET_STRIPE:
1292                 rc = echo_get_object(&eco, obd, &data->ioc_obdo1);
1293                 if (rc == 0) {
1294                         rc = echo_copyout_lsm(eco->eco_lsm, data->ioc_pbuf1,
1295                                               data->ioc_plen1);
1296                         echo_put_object(eco);
1297                 }
1298                 GOTO(out, rc);
1299
1300         case ECHO_IOC_SET_STRIPE:
1301                 if (!capable (CAP_SYS_ADMIN))
1302                         GOTO (out, rc = -EPERM);
1303
1304                 if (data->ioc_pbuf1 == NULL) {  /* unset */
1305                         rc = echo_get_object(&eco, obd, &data->ioc_obdo1);
1306                         if (rc == 0) {
1307                                 eco->eco_deleted = 1;
1308                                 echo_put_object(eco);
1309                         }
1310                 } else {
1311                         rc = echo_create_object(obd, 0, &data->ioc_obdo1,
1312                                                 data->ioc_pbuf1,
1313                                                 data->ioc_plen1, &dummy_oti);
1314                 }
1315                 GOTO (out, rc);
1316
1317         case ECHO_IOC_ENQUEUE:
1318                 if (!capable (CAP_SYS_ADMIN))
1319                         GOTO (out, rc = -EPERM);
1320
1321                 rc = echo_client_enqueue(exp, &data->ioc_obdo1,
1322                                          data->ioc_conn1, /* lock mode */
1323                                    data->ioc_offset, data->ioc_count);/*extent*/
1324                 GOTO (out, rc);
1325
1326         case ECHO_IOC_CANCEL:
1327                 rc = echo_client_cancel(exp, &data->ioc_obdo1);
1328                 GOTO (out, rc);
1329
1330         default:
1331                 CERROR ("echo_ioctl(): unrecognised ioctl %#x\n", cmd);
1332                 GOTO (out, rc = -ENOTTY);
1333         }
1334
1335         EXIT;
1336  out:
1337
1338         /* XXX this should be in a helper also called by target_send_reply */
1339         for (ack_lock = dummy_oti.oti_ack_locks, i = 0; i < 4; 
1340              i++, ack_lock++) {
1341                 if (!ack_lock->mode)
1342                         break;
1343                 ldlm_lock_decref(&ack_lock->lock, ack_lock->mode);
1344         }
1345
1346         lock_kernel();
1347
1348         return rc;
1349 }
1350
1351 static int
1352 echo_client_setup(struct obd_device *obddev, obd_count len, void *buf)
1353 {
1354         struct lustre_cfg* lcfg = buf;
1355         struct echo_client_obd *ec = &obddev->u.echo_client;
1356         struct obd_device *tgt;
1357         struct lustre_handle conn = {0, };
1358         struct obd_uuid echo_uuid = { "ECHO_UUID" };
1359         struct obd_connect_data *ocd = NULL;
1360         int rc;
1361         ENTRY;
1362
1363         if (lcfg->lcfg_bufcount < 2 || LUSTRE_CFG_BUFLEN(lcfg, 1) < 1) {
1364                 CERROR("requires a TARGET OBD name\n");
1365                 RETURN(-EINVAL);
1366         }
1367
1368         tgt = class_name2obd(lustre_cfg_string(lcfg, 1));
1369         if (!tgt || !tgt->obd_attached || !tgt->obd_set_up) {
1370                 CERROR("device not attached or not set up (%s)\n",
1371                        lustre_cfg_string(lcfg, 1));
1372                 RETURN(-EINVAL);
1373         }
1374
1375         spin_lock_init (&ec->ec_lock);
1376         CFS_INIT_LIST_HEAD (&ec->ec_objects);
1377         ec->ec_unique = 0;
1378
1379         OBD_ALLOC(ocd, sizeof(*ocd));
1380         if (ocd == NULL) {
1381                 CERROR("Can't alloc ocd connecting to %s\n",
1382                        lustre_cfg_string(lcfg, 1));
1383                 return -ENOMEM;
1384         }
1385
1386         ocd->ocd_connect_flags = OBD_CONNECT_VERSION;
1387         ocd->ocd_version = LUSTRE_VERSION_CODE;
1388
1389         rc = obd_connect(&conn, tgt, &echo_uuid, ocd);
1390
1391         OBD_FREE(ocd, sizeof(*ocd));
1392
1393         if (rc != 0) {
1394                 CERROR("fail to connect to device %s\n",
1395                        lustre_cfg_string(lcfg, 1));
1396                 return (rc);
1397         }
1398         ec->ec_exp = class_conn2export(&conn);
1399
1400         RETURN(rc);
1401 }
1402
1403 static int echo_client_cleanup(struct obd_device *obddev)
1404 {
1405         struct list_head       *el;
1406         struct ec_object       *eco;
1407         struct echo_client_obd *ec = &obddev->u.echo_client;
1408         int rc;
1409         ENTRY;
1410
1411         if (!list_empty(&obddev->obd_exports)) {
1412                 CERROR("still has clients!\n");
1413                 RETURN(-EBUSY);
1414         }
1415
1416         /* XXX assuming sole access */
1417         while (!list_empty(&ec->ec_objects)) {
1418                 el = ec->ec_objects.next;
1419                 eco = list_entry(el, struct ec_object, eco_obj_chain);
1420
1421                 LASSERT(eco->eco_refcount == 0);
1422                 eco->eco_refcount = 1;
1423                 eco->eco_deleted = 1;
1424                 echo_put_object(eco);
1425         }
1426
1427         rc = obd_disconnect(ec->ec_exp);
1428         if (rc != 0)
1429                 CERROR("fail to disconnect device: %d\n", rc);
1430
1431         RETURN(rc);
1432 }
1433
1434 static int echo_client_connect(struct lustre_handle *conn,
1435                                struct obd_device *src, struct obd_uuid *cluuid,
1436                                struct obd_connect_data *data)
1437 {
1438         struct obd_export *exp;
1439         int                rc;
1440
1441         ENTRY;
1442         rc = class_connect(conn, src, cluuid);
1443         if (rc == 0) {
1444                 exp = class_conn2export(conn);
1445                 CFS_INIT_LIST_HEAD(&exp->exp_ec_data.eced_locks);
1446                 class_export_put(exp);
1447         }
1448
1449         RETURN (rc);
1450 }
1451
1452 static int echo_client_disconnect(struct obd_export *exp)
1453 {
1454         struct obd_device      *obd;
1455         struct echo_client_obd *ec;
1456         struct ec_lock         *ecl;
1457         int                     rc;
1458         ENTRY;
1459
1460         if (exp == NULL)
1461                 GOTO(out, rc = -EINVAL);
1462
1463         obd = exp->exp_obd;
1464         ec = &obd->u.echo_client;
1465
1466         /* no more contention on export's lock list */
1467         while (!list_empty (&exp->exp_ec_data.eced_locks)) {
1468                 ecl = list_entry (exp->exp_ec_data.eced_locks.next,
1469                                   struct ec_lock, ecl_exp_chain);
1470                 list_del (&ecl->ecl_exp_chain);
1471
1472                 rc = obd_cancel(ec->ec_exp, ecl->ecl_object->eco_lsm,
1473                                  ecl->ecl_mode, &ecl->ecl_lock_handle);
1474
1475                 CDEBUG (D_INFO, "Cancel lock on object "LPX64" on disconnect "
1476                         "(%d)\n", ecl->ecl_object->eco_id, rc);
1477
1478                 echo_put_object (ecl->ecl_object);
1479                 OBD_FREE (ecl, sizeof (*ecl));
1480         }
1481
1482         rc = class_disconnect(exp);
1483         GOTO(out, rc);
1484  out:
1485         return rc;
1486 }
1487
1488 static struct obd_ops echo_obd_ops = {
1489         .o_owner       = THIS_MODULE,
1490         .o_setup       = echo_client_setup,
1491         .o_cleanup     = echo_client_cleanup,
1492         .o_iocontrol   = echo_client_iocontrol,
1493         .o_connect     = echo_client_connect,
1494         .o_disconnect  = echo_client_disconnect
1495 };
1496
1497 int echo_client_init(void)
1498 {
1499         struct lprocfs_static_vars lvars;
1500
1501         lprocfs_init_vars(echo, &lvars);
1502         return class_register_type(&echo_obd_ops, lvars.module_vars,
1503                                    LUSTRE_ECHO_CLIENT_NAME);
1504 }
1505
1506 void echo_client_exit(void)
1507 {
1508         class_unregister_type(LUSTRE_ECHO_CLIENT_NAME);
1509 }