Whamcloud - gitweb
Branch b1_6
[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                 OBD_PAGE_ALLOC(pgp->pg, 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                 OBD_PAGE_FREE(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;
811                 OBD_PAGE_ALLOC(page, CFS_ALLOC_STD);
812                 if (page == NULL)
813                         GOTO(out, rc = -ENOMEM);
814
815                 OBD_ALLOC(eap, sizeof(*eap));
816                 if (eap == NULL) {
817                         OBD_PAGE_FREE(page);
818                         GOTO(out, rc = -ENOMEM);
819                 }
820
821                 eap->eap_magic = EAP_MAGIC;
822                 eap->eap_page = page;
823                 eap->eap_eas = &eas;
824                 list_add_tail(&eap->eap_item, &eas.eas_avail);
825                 aps[i] = eap;
826         }
827
828         /* first we spin queueing io and being woken by its completion */
829         spin_lock(&eas.eas_lock);
830         for(;;) {
831                 int rc;
832
833                 /* sleep until we have a page to send */
834                 spin_unlock(&eas.eas_lock);
835                 rc = wait_event_interruptible(eas.eas_waitq, 
836                                               eas_should_wake(&eas));
837                 spin_lock(&eas.eas_lock);
838                 if (rc && !eas.eas_rc)
839                         eas.eas_rc = rc;
840                 if (eas.eas_rc)
841                         break;
842                 if (list_empty(&eas.eas_avail))
843                         continue;
844                 eap = list_entry(eas.eas_avail.next, struct echo_async_page,
845                                  eap_item);
846                 list_del(&eap->eap_item);
847                 spin_unlock(&eas.eas_lock);
848
849                 /* unbind the eap from its old page offset */
850                 if (eap->eap_cookie != NULL) {
851                         obd_teardown_async_page(exp, lsm, NULL, 
852                                                 eap->eap_cookie);
853                         eap->eap_cookie = NULL;
854                 }
855
856                 eas.eas_next_offset += CFS_PAGE_SIZE;
857                 eap->eap_off = eas.eas_next_offset;
858
859                 rc = obd_prep_async_page(exp, lsm, NULL, eap->eap_page,
860                                          eap->eap_off, &ec_async_page_ops,
861                                          eap, &eap->eap_cookie, 1, NULL);
862                 if (rc) {
863                         spin_lock(&eas.eas_lock);
864                         eas.eas_rc = rc;
865                         break;
866                 }
867
868                 if (oa->o_id != ECHO_PERSISTENT_OBJID &&
869                     (oa->o_valid & OBD_MD_FLFLAGS) != 0 &&
870                     (oa->o_flags & OBD_FL_DEBUG_CHECK) != 0)
871                         echo_client_page_debug_setup(lsm, eap->eap_page, rw, 
872                                                      oa->o_id, 
873                                                      eap->eap_off, CFS_PAGE_SIZE);
874
875                 /* always asserts urgent, which isn't quite right */
876                 rc = obd_queue_async_io(exp, lsm, NULL, eap->eap_cookie,
877                                         rw, 0, CFS_PAGE_SIZE, 0,
878                                         ASYNC_READY | ASYNC_URGENT |
879                                         ASYNC_COUNT_STABLE);
880                 spin_lock(&eas.eas_lock);
881                 if (rc && !eas.eas_rc) {
882                         eas.eas_rc = rc;
883                         break;
884                 }
885                 eas.eas_in_flight++;
886                 if (eas.eas_next_offset == eas.eas_end_offset)
887                         break;
888         } 
889
890         /* still hold the eas_lock here.. */
891
892         /* now we just spin waiting for all the rpcs to complete */
893         while(eas.eas_in_flight) {
894                 spin_unlock(&eas.eas_lock);
895                 wait_event_interruptible(eas.eas_waitq, 
896                                          eas.eas_in_flight == 0);
897                 spin_lock(&eas.eas_lock);
898         }
899         spin_unlock(&eas.eas_lock);
900
901 out:
902         if (aps != NULL) {
903                 for (i = 0; i < npages; ++ i) {
904                         cfs_page_t *page;
905
906                         eap = aps[i];
907                         page = eap->eap_page;
908                         if (eap->eap_cookie != NULL)
909                                 obd_teardown_async_page(exp, lsm, NULL,
910                                                         eap->eap_cookie);
911                         OBD_FREE(eap, sizeof(*eap));
912                         OBD_PAGE_FREE(page);
913                 }
914                 OBD_FREE(aps, npages * sizeof aps[0]);
915         }
916
917         RETURN(rc);
918 }
919
920 static int echo_client_prep_commit(struct obd_export *exp, int rw,
921                                    struct obdo *oa, struct lov_stripe_md *lsm,
922                                    obd_off offset, obd_size count,  
923                                    obd_size batch, struct obd_trans_info *oti)
924 {
925         struct obd_ioobj ioo;
926         struct niobuf_local *lnb;
927         struct niobuf_remote *rnb;
928         obd_off off;
929         obd_size npages, tot_pages;
930         int i, ret = 0;
931         ENTRY;
932
933         if (count <= 0 || (count & (~CFS_PAGE_MASK)) != 0 ||
934             (lsm != NULL && lsm->lsm_object_id != oa->o_id))
935                 RETURN(-EINVAL);
936
937         npages = batch >> CFS_PAGE_SHIFT;
938         tot_pages = count >> CFS_PAGE_SHIFT;
939
940         OBD_ALLOC(lnb, npages * sizeof(struct niobuf_local));
941         OBD_ALLOC(rnb, npages * sizeof(struct niobuf_remote));
942
943         if (lnb == NULL || rnb == NULL)
944                 GOTO(out, ret = -ENOMEM);
945
946         obdo_to_ioobj(oa, &ioo);
947
948         off = offset;
949
950         for(; tot_pages; tot_pages -= npages) {
951                 if (tot_pages < npages)
952                         npages = tot_pages;
953
954                 for (i = 0; i < npages; i++, off += CFS_PAGE_SIZE) {
955                         rnb[i].offset = off;
956                         rnb[i].len = CFS_PAGE_SIZE;
957                 }
958
959                 ioo.ioo_bufcnt = npages;
960                 oti->oti_transno = 0;
961
962                 ret = obd_preprw(rw, exp, oa, 1, &ioo, npages, rnb, lnb, oti);
963                 if (ret != 0)
964                         GOTO(out, ret);
965
966                 for (i = 0; i < npages; i++) {
967                         cfs_page_t *page = lnb[i].page;
968
969                         /* read past eof? */
970                         if (page == NULL && lnb[i].rc == 0)
971                                 continue;
972
973                         if (oa->o_id == ECHO_PERSISTENT_OBJID ||
974                             (oa->o_valid & OBD_MD_FLFLAGS) == 0 ||
975                             (oa->o_flags & OBD_FL_DEBUG_CHECK) == 0)
976                                 continue;
977
978                         if (rw == OBD_BRW_WRITE)
979                                 echo_client_page_debug_setup(lsm, page, rw,
980                                                              oa->o_id,
981                                                              rnb[i].offset,
982                                                              rnb[i].len);
983                         else
984                                 echo_client_page_debug_check(lsm, page,
985                                                              oa->o_id,
986                                                              rnb[i].offset,
987                                                              rnb[i].len);
988                 }
989
990                 ret = obd_commitrw(rw, exp, oa, 1, &ioo, npages, lnb, oti, ret);
991                 if (ret != 0)
992                         GOTO(out, ret);
993         }
994
995 out:
996         if (lnb)
997                 OBD_FREE(lnb, npages * sizeof(struct niobuf_local));
998         if (rnb)
999                 OBD_FREE(rnb, npages * sizeof(struct niobuf_remote));
1000         RETURN(ret);
1001 }
1002
1003 int echo_client_brw_ioctl(int rw, struct obd_export *exp,
1004                           struct obd_ioctl_data *data)
1005 {
1006         struct obd_device *obd = class_exp2obd(exp);
1007         struct echo_client_obd *ec = &obd->u.echo_client;
1008         struct obd_trans_info dummy_oti = { .oti_thread_id = -1 };
1009         struct ec_object *eco;
1010         int rc;
1011         ENTRY;
1012
1013         rc = echo_get_object(&eco, obd, &data->ioc_obdo1);
1014         if (rc)
1015                 RETURN(rc);
1016
1017         data->ioc_obdo1.o_valid &= ~OBD_MD_FLHANDLE;
1018         data->ioc_obdo1.o_valid |= OBD_MD_FLGROUP;
1019         data->ioc_obdo1.o_gr = FILTER_GROUP_ECHO;
1020
1021         switch((long)data->ioc_pbuf1) {
1022         case 1:
1023                 if (data->ioc_pbuf2 == NULL) { // NULL user data pointer
1024                         rc = echo_client_kbrw(obd, rw, &data->ioc_obdo1,
1025                                               eco->eco_lsm, data->ioc_offset,
1026                                               data->ioc_count, &dummy_oti);
1027                 } else {
1028 #ifdef __KERNEL__
1029                         rc = echo_client_ubrw(obd, rw, &data->ioc_obdo1,
1030                                               eco->eco_lsm, data->ioc_offset,
1031                                               data->ioc_count, data->ioc_pbuf2,
1032                                               &dummy_oti);
1033 #endif
1034                 }
1035                 break;
1036         case 2:
1037                 rc = echo_client_async_page(ec->ec_exp, rw, &data->ioc_obdo1,
1038                                            eco->eco_lsm, data->ioc_offset,
1039                                            data->ioc_count, data->ioc_plen1);
1040                 break;
1041         case 3:
1042                 rc = echo_client_prep_commit(ec->ec_exp, rw, &data->ioc_obdo1,
1043                                             eco->eco_lsm, data->ioc_offset,
1044                                             data->ioc_count, data->ioc_plen1,
1045                                             &dummy_oti);
1046                 break;
1047         default:
1048                 rc = -EINVAL;
1049         }
1050         echo_put_object(eco);
1051         RETURN(rc);
1052 }
1053
1054 static int
1055 echo_ldlm_callback (struct ldlm_lock *lock, struct ldlm_lock_desc *new,
1056                     void *data, int flag)
1057 {
1058         struct ec_object       *eco = (struct ec_object *)data;
1059         struct echo_client_obd *ec = &(eco->eco_device->u.echo_client);
1060         struct lustre_handle    lockh;
1061         struct list_head       *el;
1062         int                     found = 0;
1063         int                     rc;
1064
1065         ldlm_lock2handle (lock, &lockh);
1066
1067         /* #ifdef this out if we're not feeling paranoid */
1068         spin_lock (&ec->ec_lock);
1069         list_for_each (el, &ec->ec_objects) {
1070                 found = (eco == list_entry(el, struct ec_object,
1071                                            eco_obj_chain));
1072                 if (found)
1073                         break;
1074         }
1075         spin_unlock (&ec->ec_lock);
1076         LASSERT (found);
1077
1078         switch (flag) {
1079         case LDLM_CB_BLOCKING:
1080                 CDEBUG(D_INFO, "blocking callback on "LPX64", handle "LPX64"\n",
1081                        eco->eco_id, lockh.cookie);
1082                 rc = ldlm_cli_cancel (&lockh);
1083                 if (rc != ELDLM_OK)
1084                         CERROR ("ldlm_cli_cancel failed: %d\n", rc);
1085                 break;
1086
1087         case LDLM_CB_CANCELING:
1088                 CDEBUG(D_INFO, "cancel callback on "LPX64", handle "LPX64"\n",
1089                        eco->eco_id, lockh.cookie);
1090                 break;
1091
1092         default:
1093                 LBUG ();
1094         }
1095
1096         return (0);
1097 }
1098
1099 static int
1100 echo_client_enqueue(struct obd_export *exp, struct obdo *oa,
1101                     int mode, obd_off offset, obd_size nob)
1102 {
1103         struct obd_device      *obd = exp->exp_obd;
1104         struct echo_client_obd *ec = &obd->u.echo_client;
1105         struct lustre_handle   *ulh = &oa->o_handle;
1106         struct ldlm_enqueue_info einfo = { 0 };
1107         struct obd_info oinfo = { { { 0 } } };
1108         struct ec_object       *eco;
1109         struct ec_lock         *ecl;
1110         int                     rc;
1111
1112         if (!(mode == LCK_PR || mode == LCK_PW))
1113                 return -EINVAL;
1114
1115         if ((offset & (~CFS_PAGE_MASK)) != 0 ||
1116             (nob & (~CFS_PAGE_MASK)) != 0)
1117                 return -EINVAL;
1118
1119         rc = echo_get_object (&eco, obd, oa);
1120         if (rc != 0)
1121                 return rc;
1122
1123         rc = -ENOMEM;
1124         OBD_ALLOC (ecl, sizeof (*ecl));
1125         if (ecl == NULL)
1126                 goto failed_0;
1127
1128         ecl->ecl_mode = mode;
1129         ecl->ecl_object = eco;
1130         ecl->ecl_policy.l_extent.start = offset;
1131         ecl->ecl_policy.l_extent.end =
1132                 (nob == 0) ? ((obd_off) -1) : (offset + nob - 1);
1133
1134         einfo.ei_type = LDLM_EXTENT;
1135         einfo.ei_mode = mode;
1136         einfo.ei_cb_bl = echo_ldlm_callback;
1137         einfo.ei_cb_cp = ldlm_completion_ast;
1138         einfo.ei_cb_gl = NULL;
1139         einfo.ei_cbdata = eco;
1140
1141         oinfo.oi_policy = ecl->ecl_policy;
1142         oinfo.oi_lockh = &ecl->ecl_lock_handle;
1143         oinfo.oi_md = eco->eco_lsm;
1144         rc = obd_enqueue(ec->ec_exp, &oinfo, &einfo, NULL);
1145         if (rc != 0)
1146                 goto failed_1;
1147
1148         CDEBUG(D_INFO, "enqueue handle "LPX64"\n", ecl->ecl_lock_handle.cookie);
1149
1150         /* NB ecl takes object ref from echo_get_object() above */
1151         spin_lock(&ec->ec_lock);
1152
1153         list_add(&ecl->ecl_exp_chain, &exp->exp_ec_data.eced_locks);
1154         ulh->cookie = ecl->ecl_cookie = ec->ec_unique++;
1155
1156         spin_unlock(&ec->ec_lock);
1157
1158         oa->o_valid |= OBD_MD_FLHANDLE;
1159         return 0;
1160
1161  failed_1:
1162         OBD_FREE (ecl, sizeof (*ecl));
1163  failed_0:
1164         echo_put_object (eco);
1165         return (rc);
1166 }
1167
1168 static int
1169 echo_client_cancel(struct obd_export *exp, struct obdo *oa)
1170 {
1171         struct obd_device      *obd = exp->exp_obd;
1172         struct echo_client_obd *ec = &obd->u.echo_client;
1173         struct lustre_handle   *ulh = &oa->o_handle;
1174         struct ec_lock         *ecl = NULL;
1175         int                     found = 0;
1176         struct list_head       *el;
1177         int                     rc;
1178
1179         if ((oa->o_valid & OBD_MD_FLHANDLE) == 0)
1180                 return -EINVAL;
1181
1182         spin_lock (&ec->ec_lock);
1183
1184         list_for_each (el, &exp->exp_ec_data.eced_locks) {
1185                 ecl = list_entry (el, struct ec_lock, ecl_exp_chain);
1186                 found = (ecl->ecl_cookie == ulh->cookie);
1187                 if (found) {
1188                         list_del (&ecl->ecl_exp_chain);
1189                         break;
1190                 }
1191         }
1192
1193         spin_unlock (&ec->ec_lock);
1194
1195         if (!found)
1196                 return (-ENOENT);
1197
1198         rc = obd_cancel(ec->ec_exp, ecl->ecl_object->eco_lsm, ecl->ecl_mode,
1199                         &ecl->ecl_lock_handle);
1200
1201         echo_put_object (ecl->ecl_object);
1202         OBD_FREE (ecl, sizeof (*ecl));
1203
1204         return rc;
1205 }
1206
1207 static int
1208 echo_client_iocontrol(unsigned int cmd, struct obd_export *exp,
1209                       int len, void *karg, void *uarg)
1210 {
1211         struct obd_device      *obd;
1212         struct echo_client_obd *ec;
1213         struct ec_object       *eco;
1214         struct obd_ioctl_data  *data = karg;
1215         struct obd_trans_info   dummy_oti;
1216         struct oti_req_ack_lock *ack_lock;
1217         struct obdo            *oa;
1218         int                     rw = OBD_BRW_READ;
1219         int                     rc = 0;
1220         int                     i;
1221         ENTRY;
1222
1223         unlock_kernel();
1224
1225         memset(&dummy_oti, 0, sizeof(dummy_oti));
1226
1227         obd = exp->exp_obd;
1228         ec = &obd->u.echo_client;
1229
1230         switch (cmd) {
1231         case OBD_IOC_CREATE:                    /* may create echo object */
1232                 if (!capable (CAP_SYS_ADMIN))
1233                         GOTO (out, rc = -EPERM);
1234
1235                 rc = echo_create_object (obd, 1, &data->ioc_obdo1,
1236                                          data->ioc_pbuf1, data->ioc_plen1,
1237                                          &dummy_oti);
1238                 GOTO(out, rc);
1239
1240         case OBD_IOC_DESTROY:
1241                 if (!capable (CAP_SYS_ADMIN))
1242                         GOTO (out, rc = -EPERM);
1243                 rc = echo_get_object (&eco, obd, &data->ioc_obdo1);
1244                 if (rc == 0) {
1245                         oa = &data->ioc_obdo1;
1246                         oa->o_gr = FILTER_GROUP_ECHO;
1247                         oa->o_valid |= OBD_MD_FLGROUP;
1248                         rc = obd_destroy(ec->ec_exp, oa, eco->eco_lsm,
1249                                          &dummy_oti, NULL);
1250                         if (rc == 0)
1251                                 eco->eco_deleted = 1;
1252                         echo_put_object(eco);
1253                 }
1254                 GOTO(out, rc);
1255
1256         case OBD_IOC_GETATTR:
1257                 rc = echo_get_object (&eco, obd, &data->ioc_obdo1);
1258                 if (rc == 0) {
1259                         struct obd_info oinfo = { { { 0 } } };
1260                         oinfo.oi_md = eco->eco_lsm;
1261                         oinfo.oi_oa = &data->ioc_obdo1;
1262                         rc = obd_getattr(ec->ec_exp, &oinfo);
1263                         echo_put_object(eco);
1264                 }
1265                 GOTO(out, rc);
1266
1267         case OBD_IOC_SETATTR:
1268                 if (!capable (CAP_SYS_ADMIN))
1269                         GOTO (out, rc = -EPERM);
1270
1271                 rc = echo_get_object (&eco, obd, &data->ioc_obdo1);
1272                 if (rc == 0) {
1273                         struct obd_info oinfo = { { { 0 } } };
1274                         oinfo.oi_oa = &data->ioc_obdo1;
1275                         oinfo.oi_md = eco->eco_lsm;
1276
1277                         rc = obd_setattr(ec->ec_exp, &oinfo, NULL);
1278                         echo_put_object(eco);
1279                 }
1280                 GOTO(out, rc);
1281
1282         case OBD_IOC_BRW_WRITE:
1283                 if (!capable (CAP_SYS_ADMIN))
1284                         GOTO (out, rc = -EPERM);
1285
1286                 rw = OBD_BRW_WRITE;
1287                 /* fall through */
1288         case OBD_IOC_BRW_READ:
1289                 rc = echo_client_brw_ioctl(rw, exp, data);
1290                 GOTO(out, rc);
1291
1292         case ECHO_IOC_GET_STRIPE:
1293                 rc = echo_get_object(&eco, obd, &data->ioc_obdo1);
1294                 if (rc == 0) {
1295                         rc = echo_copyout_lsm(eco->eco_lsm, data->ioc_pbuf1,
1296                                               data->ioc_plen1);
1297                         echo_put_object(eco);
1298                 }
1299                 GOTO(out, rc);
1300
1301         case ECHO_IOC_SET_STRIPE:
1302                 if (!capable (CAP_SYS_ADMIN))
1303                         GOTO (out, rc = -EPERM);
1304
1305                 if (data->ioc_pbuf1 == NULL) {  /* unset */
1306                         rc = echo_get_object(&eco, obd, &data->ioc_obdo1);
1307                         if (rc == 0) {
1308                                 eco->eco_deleted = 1;
1309                                 echo_put_object(eco);
1310                         }
1311                 } else {
1312                         rc = echo_create_object(obd, 0, &data->ioc_obdo1,
1313                                                 data->ioc_pbuf1,
1314                                                 data->ioc_plen1, &dummy_oti);
1315                 }
1316                 GOTO (out, rc);
1317
1318         case ECHO_IOC_ENQUEUE:
1319                 if (!capable (CAP_SYS_ADMIN))
1320                         GOTO (out, rc = -EPERM);
1321
1322                 rc = echo_client_enqueue(exp, &data->ioc_obdo1,
1323                                          data->ioc_conn1, /* lock mode */
1324                                    data->ioc_offset, data->ioc_count);/*extent*/
1325                 GOTO (out, rc);
1326
1327         case ECHO_IOC_CANCEL:
1328                 rc = echo_client_cancel(exp, &data->ioc_obdo1);
1329                 GOTO (out, rc);
1330
1331         default:
1332                 CERROR ("echo_ioctl(): unrecognised ioctl %#x\n", cmd);
1333                 GOTO (out, rc = -ENOTTY);
1334         }
1335
1336         EXIT;
1337  out:
1338
1339         /* XXX this should be in a helper also called by target_send_reply */
1340         for (ack_lock = dummy_oti.oti_ack_locks, i = 0; i < 4; 
1341              i++, ack_lock++) {
1342                 if (!ack_lock->mode)
1343                         break;
1344                 ldlm_lock_decref(&ack_lock->lock, ack_lock->mode);
1345         }
1346
1347         lock_kernel();
1348
1349         return rc;
1350 }
1351
1352 static int
1353 echo_client_setup(struct obd_device *obddev, obd_count len, void *buf)
1354 {
1355         struct lustre_cfg* lcfg = buf;
1356         struct echo_client_obd *ec = &obddev->u.echo_client;
1357         struct obd_device *tgt;
1358         struct lustre_handle conn = {0, };
1359         struct obd_uuid echo_uuid = { "ECHO_UUID" };
1360         struct obd_connect_data *ocd = NULL;
1361         int rc;
1362         ENTRY;
1363
1364         if (lcfg->lcfg_bufcount < 2 || LUSTRE_CFG_BUFLEN(lcfg, 1) < 1) {
1365                 CERROR("requires a TARGET OBD name\n");
1366                 RETURN(-EINVAL);
1367         }
1368
1369         tgt = class_name2obd(lustre_cfg_string(lcfg, 1));
1370         if (!tgt || !tgt->obd_attached || !tgt->obd_set_up) {
1371                 CERROR("device not attached or not set up (%s)\n",
1372                        lustre_cfg_string(lcfg, 1));
1373                 RETURN(-EINVAL);
1374         }
1375
1376         spin_lock_init (&ec->ec_lock);
1377         CFS_INIT_LIST_HEAD (&ec->ec_objects);
1378         ec->ec_unique = 0;
1379
1380         OBD_ALLOC(ocd, sizeof(*ocd));
1381         if (ocd == NULL) {
1382                 CERROR("Can't alloc ocd connecting to %s\n",
1383                        lustre_cfg_string(lcfg, 1));
1384                 return -ENOMEM;
1385         }
1386
1387         ocd->ocd_connect_flags = OBD_CONNECT_VERSION | OBD_CONNECT_REQPORTAL;
1388         ocd->ocd_version = LUSTRE_VERSION_CODE;
1389
1390         rc = obd_connect(&conn, tgt, &echo_uuid, ocd, NULL);
1391
1392         OBD_FREE(ocd, sizeof(*ocd));
1393
1394         if (rc != 0) {
1395                 CERROR("fail to connect to device %s\n",
1396                        lustre_cfg_string(lcfg, 1));
1397                 return (rc);
1398         }
1399         ec->ec_exp = class_conn2export(&conn);
1400
1401         RETURN(rc);
1402 }
1403
1404 static int echo_client_cleanup(struct obd_device *obddev)
1405 {
1406         struct list_head       *el;
1407         struct ec_object       *eco;
1408         struct echo_client_obd *ec = &obddev->u.echo_client;
1409         int rc;
1410         ENTRY;
1411
1412         if (!list_empty(&obddev->obd_exports)) {
1413                 CERROR("still has clients!\n");
1414                 RETURN(-EBUSY);
1415         }
1416
1417         /* XXX assuming sole access */
1418         while (!list_empty(&ec->ec_objects)) {
1419                 el = ec->ec_objects.next;
1420                 eco = list_entry(el, struct ec_object, eco_obj_chain);
1421
1422                 LASSERT(eco->eco_refcount == 0);
1423                 eco->eco_refcount = 1;
1424                 eco->eco_deleted = 1;
1425                 echo_put_object(eco);
1426         }
1427
1428         rc = obd_disconnect(ec->ec_exp);
1429         if (rc != 0)
1430                 CERROR("fail to disconnect device: %d\n", rc);
1431
1432         RETURN(rc);
1433 }
1434
1435 static int echo_client_connect(struct lustre_handle *conn,
1436                                struct obd_device *src, struct obd_uuid *cluuid,
1437                                struct obd_connect_data *data, void *localdata)
1438 {
1439         struct obd_export *exp;
1440         int                rc;
1441
1442         ENTRY;
1443         rc = class_connect(conn, src, cluuid);
1444         if (rc == 0) {
1445                 exp = class_conn2export(conn);
1446                 CFS_INIT_LIST_HEAD(&exp->exp_ec_data.eced_locks);
1447                 class_export_put(exp);
1448         }
1449
1450         RETURN (rc);
1451 }
1452
1453 static int echo_client_disconnect(struct obd_export *exp)
1454 {
1455         struct obd_device      *obd;
1456         struct echo_client_obd *ec;
1457         struct ec_lock         *ecl;
1458         int                     rc;
1459         ENTRY;
1460
1461         if (exp == NULL)
1462                 GOTO(out, rc = -EINVAL);
1463
1464         obd = exp->exp_obd;
1465         ec = &obd->u.echo_client;
1466
1467         /* no more contention on export's lock list */
1468         while (!list_empty (&exp->exp_ec_data.eced_locks)) {
1469                 ecl = list_entry (exp->exp_ec_data.eced_locks.next,
1470                                   struct ec_lock, ecl_exp_chain);
1471                 list_del (&ecl->ecl_exp_chain);
1472
1473                 rc = obd_cancel(ec->ec_exp, ecl->ecl_object->eco_lsm,
1474                                  ecl->ecl_mode, &ecl->ecl_lock_handle);
1475
1476                 CDEBUG (D_INFO, "Cancel lock on object "LPX64" on disconnect "
1477                         "(%d)\n", ecl->ecl_object->eco_id, rc);
1478
1479                 echo_put_object (ecl->ecl_object);
1480                 OBD_FREE (ecl, sizeof (*ecl));
1481         }
1482
1483         rc = class_disconnect(exp);
1484         GOTO(out, rc);
1485  out:
1486         return rc;
1487 }
1488
1489 static struct obd_ops echo_obd_ops = {
1490         .o_owner       = THIS_MODULE,
1491         .o_setup       = echo_client_setup,
1492         .o_cleanup     = echo_client_cleanup,
1493         .o_iocontrol   = echo_client_iocontrol,
1494         .o_connect     = echo_client_connect,
1495         .o_disconnect  = echo_client_disconnect
1496 };
1497
1498 int echo_client_init(void)
1499 {
1500         struct lprocfs_static_vars lvars = { 0 };
1501
1502         lprocfs_echo_init_vars(&lvars);
1503         return class_register_type(&echo_obd_ops, lvars.module_vars,
1504                                    LUSTRE_ECHO_CLIENT_NAME);
1505 }
1506
1507 void echo_client_exit(void)
1508 {
1509         class_unregister_type(LUSTRE_ECHO_CLIENT_NAME);
1510 }