Whamcloud - gitweb
Branch HEAD
[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
118         for (i = 0; i < lsm->lsm_stripe_count; i++) {
119                 if (copy_from_user(lsm->lsm_oinfo[i],
120                                    ((struct lov_stripe_md *)ulsm)->lsm_oinfo[i],
121                                    sizeof(lsm->lsm_oinfo[0])))
122                         return (-EFAULT);
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 echo_client_page_debug_check(struct lov_stripe_md *lsm,
470                                         cfs_page_t *page, obd_id id,
471                                         obd_off offset, obd_off count)
472 {
473         obd_off stripe_off;
474         obd_id  stripe_id;
475         char   *addr;
476         int     delta;
477         int     rc;
478         int     rc2;
479
480         /* no partial pages on the client */
481         LASSERT(count == CFS_PAGE_SIZE);
482
483         addr = cfs_kmap(page);
484
485         for (rc = delta = 0; delta < CFS_PAGE_SIZE; delta += OBD_ECHO_BLOCK_SIZE) {
486                 stripe_off = offset + delta;
487                 stripe_id = id;
488                 echo_get_stripe_off_id (lsm, &stripe_off, &stripe_id);
489
490                 rc2 = block_debug_check("test_brw",
491                                         addr + delta, OBD_ECHO_BLOCK_SIZE,
492                                         stripe_off, stripe_id);
493                 if (rc2 != 0) {
494                         CERROR ("Error in echo object "LPX64"\n", id);
495                         rc = rc2;
496                 }
497         }
498
499         cfs_kunmap(page);
500         return rc;
501 }
502
503 static int echo_client_kbrw(struct obd_device *obd, int rw, struct obdo *oa,
504                             struct lov_stripe_md *lsm, obd_off offset,
505                             obd_size count, struct obd_trans_info *oti)
506 {
507         struct echo_client_obd *ec = &obd->u.echo_client;
508         struct obd_info         oinfo = { { { 0 } } };
509         obd_count               npages;
510         struct brw_page        *pga;
511         struct brw_page        *pgp;
512         obd_off                 off;
513         int                     i;
514         int                     rc;
515         int                     verify;
516         int                     gfp_mask;
517
518         verify = ((oa->o_id) != ECHO_PERSISTENT_OBJID &&
519                   (oa->o_valid & OBD_MD_FLFLAGS) != 0 &&
520                   (oa->o_flags & OBD_FL_DEBUG_CHECK) != 0);
521
522         gfp_mask = ((oa->o_id & 2) == 0) ? CFS_ALLOC_STD : CFS_ALLOC_HIGHUSER;
523
524         LASSERT(rw == OBD_BRW_WRITE || rw == OBD_BRW_READ);
525         LASSERT(lsm != NULL);
526         LASSERT(lsm->lsm_object_id == oa->o_id);
527
528         if (count <= 0 ||
529             (count & (~CFS_PAGE_MASK)) != 0)
530                 return (-EINVAL);
531
532         /* XXX think again with misaligned I/O */
533         npages = count >> CFS_PAGE_SHIFT;
534
535         OBD_ALLOC(pga, npages * sizeof(*pga));
536         if (pga == NULL)
537                 return (-ENOMEM);
538
539         for (i = 0, pgp = pga, off = offset;
540              i < npages;
541              i++, pgp++, off += CFS_PAGE_SIZE) {
542
543                 LASSERT (pgp->pg == NULL);      /* for cleanup */
544
545                 rc = -ENOMEM;
546                 OBD_PAGE_ALLOC(pgp->pg, gfp_mask);
547                 if (pgp->pg == NULL)
548                         goto out;
549
550                 pgp->count = CFS_PAGE_SIZE;
551                 pgp->off = off;
552                 pgp->flag = 0;
553
554                 if (verify)
555                         echo_client_page_debug_setup(lsm, pgp->pg, rw,
556                                                      oa->o_id, off, pgp->count);
557         }
558
559         oinfo.oi_oa = oa;
560         oinfo.oi_md = lsm;
561         rc = obd_brw(rw, ec->ec_exp, &oinfo, npages, pga, oti);
562
563  out:
564         if (rc != 0 || rw != OBD_BRW_READ)
565                 verify = 0;
566
567         for (i = 0, pgp = pga; i < npages; i++, pgp++) {
568                 if (pgp->pg == NULL)
569                         continue;
570
571                 if (verify) {
572                         int vrc;
573                         vrc = echo_client_page_debug_check(lsm, pgp->pg, oa->o_id,
574                                                            pgp->off, pgp->count);
575                         if (vrc != 0 && rc == 0)
576                                 rc = vrc;
577                 }
578                 OBD_PAGE_FREE(pgp->pg);
579         }
580         OBD_FREE(pga, npages * sizeof(*pga));
581         return (rc);
582 }
583
584 struct echo_async_state;
585
586 #define EAP_MAGIC 79277927
587 struct echo_async_page {
588         int                     eap_magic;
589         cfs_page_t             *eap_page;
590         void                    *eap_cookie;
591         obd_off                 eap_off;
592         struct echo_async_state *eap_eas;
593         struct list_head        eap_item;
594 };
595
596 #define EAP_FROM_COOKIE(c)                                                      \
597         (LASSERT(((struct echo_async_page *)(c))->eap_magic == EAP_MAGIC),      \
598          (struct echo_async_page *)(c))
599
600 struct echo_async_state {
601         spinlock_t              eas_lock;
602         obd_off                 eas_next_offset;
603         obd_off                 eas_end_offset;
604         int                     eas_in_flight;
605         int                     eas_rc;
606         cfs_waitq_t             eas_waitq;
607         struct list_head        eas_avail;
608         struct obdo             eas_oa;
609         struct lov_stripe_md    *eas_lsm;
610 };
611
612 static int eas_should_wake(struct echo_async_state *eas)
613 {
614         int rc = 0;
615
616         spin_lock(&eas->eas_lock);
617         if (eas->eas_rc == 0 && !list_empty(&eas->eas_avail))
618             rc = 1;
619         spin_unlock(&eas->eas_lock);
620         return rc;
621 };
622
623 static int ec_ap_make_ready(void *data, int cmd)
624 {
625         /* our pages are issued ready */
626         LBUG();
627         return 0;
628 }
629 static int ec_ap_refresh_count(void *data, int cmd)
630 {
631         /* our pages are issued with a stable count */
632         LBUG();
633         return CFS_PAGE_SIZE;
634 }
635 static void ec_ap_fill_obdo(void *data, int cmd, struct obdo *oa)
636 {
637         struct echo_async_page *eap = EAP_FROM_COOKIE(data);
638
639         memcpy(oa, &eap->eap_eas->eas_oa, sizeof(*oa));
640 }
641
642 static int ec_ap_completion(void *data, int cmd, struct obdo *oa, int rc)
643 {
644         struct echo_async_page *eap = EAP_FROM_COOKIE(data);
645         struct echo_async_state *eas;
646
647         eas = eap->eap_eas;
648
649         if (cmd == OBD_BRW_READ &&
650             eas->eas_oa.o_id != ECHO_PERSISTENT_OBJID &&
651             (eas->eas_oa.o_valid & OBD_MD_FLFLAGS) != 0 &&
652             (eas->eas_oa.o_flags & OBD_FL_DEBUG_CHECK) != 0)
653                 echo_client_page_debug_check(eas->eas_lsm, eap->eap_page,
654                                              eas->eas_oa.o_id, eap->eap_off,
655                                              CFS_PAGE_SIZE);
656
657         spin_lock(&eas->eas_lock);
658         if (rc && !eas->eas_rc)
659                 eas->eas_rc = rc;
660         eas->eas_in_flight--;
661         list_add(&eap->eap_item, &eas->eas_avail);
662         cfs_waitq_signal(&eas->eas_waitq);
663         spin_unlock(&eas->eas_lock);
664         return 0;
665 }
666
667 static struct obd_async_page_ops ec_async_page_ops = {
668         .ap_make_ready =        ec_ap_make_ready,
669         .ap_refresh_count =     ec_ap_refresh_count,
670         .ap_fill_obdo =         ec_ap_fill_obdo,
671         .ap_completion =        ec_ap_completion,
672 };
673
674 static int echo_client_async_page(struct obd_export *exp, int rw,
675                                    struct obdo *oa, struct lov_stripe_md *lsm,
676                                    obd_off offset, obd_size count,
677                                    obd_size batching)
678 {
679         obd_count npages, i;
680         struct echo_async_page *eap;
681         struct echo_async_state eas;
682         int rc = 0;
683         struct echo_async_page **aps = NULL;
684
685         ENTRY;
686 #if 0
687         int                     verify;
688         int                     gfp_mask;
689
690         verify = ((oa->o_id) != ECHO_PERSISTENT_OBJID &&
691                   (oa->o_valid & OBD_MD_FLFLAGS) != 0 &&
692                   (oa->o_flags & OBD_FL_DEBUG_CHECK) != 0);
693
694         gfp_mask = ((oa->o_id & 2) == 0) ? GFP_KERNEL : GFP_HIGHUSER;
695 #endif
696
697         LASSERT(rw == OBD_BRW_WRITE || rw == OBD_BRW_READ);
698
699         if (count <= 0 ||
700             (count & (~CFS_PAGE_MASK)) != 0 ||
701             (lsm != NULL &&
702              lsm->lsm_object_id != oa->o_id))
703                 return (-EINVAL);
704
705         /* XXX think again with misaligned I/O */
706         npages = batching >> CFS_PAGE_SHIFT;
707
708         memcpy(&eas.eas_oa, oa, sizeof(*oa));
709         eas.eas_next_offset = offset;
710         eas.eas_end_offset = offset + count;
711         spin_lock_init(&eas.eas_lock);
712         cfs_waitq_init(&eas.eas_waitq);
713         eas.eas_in_flight = 0;
714         eas.eas_rc = 0;
715         eas.eas_lsm = lsm;
716         CFS_INIT_LIST_HEAD(&eas.eas_avail);
717
718         OBD_ALLOC(aps, npages * sizeof aps[0]);
719         if (aps == NULL)
720                 return (-ENOMEM);
721
722         /* prepare the group of pages that we're going to be keeping
723          * in flight */
724         for (i = 0; i < npages; i++) {
725                 cfs_page_t *page;
726                 OBD_PAGE_ALLOC(page, CFS_ALLOC_STD);
727                 if (page == NULL)
728                         GOTO(out, rc = -ENOMEM);
729
730                 OBD_ALLOC(eap, sizeof(*eap));
731                 if (eap == NULL) {
732                         OBD_PAGE_FREE(page);
733                         GOTO(out, rc = -ENOMEM);
734                 }
735
736                 eap->eap_magic = EAP_MAGIC;
737                 eap->eap_page = page;
738                 eap->eap_eas = &eas;
739                 list_add_tail(&eap->eap_item, &eas.eas_avail);
740                 aps[i] = eap;
741         }
742
743         /* first we spin queueing io and being woken by its completion */
744         spin_lock(&eas.eas_lock);
745         for(;;) {
746                 int rc;
747
748                 /* sleep until we have a page to send */
749                 spin_unlock(&eas.eas_lock);
750                 rc = wait_event_interruptible(eas.eas_waitq,
751                                               eas_should_wake(&eas));
752                 spin_lock(&eas.eas_lock);
753                 if (rc && !eas.eas_rc)
754                         eas.eas_rc = rc;
755                 if (eas.eas_rc)
756                         break;
757                 if (list_empty(&eas.eas_avail))
758                         continue;
759                 eap = list_entry(eas.eas_avail.next, struct echo_async_page,
760                                  eap_item);
761                 list_del(&eap->eap_item);
762                 spin_unlock(&eas.eas_lock);
763
764                 /* unbind the eap from its old page offset */
765                 if (eap->eap_cookie != NULL) {
766                         obd_teardown_async_page(exp, lsm, NULL,
767                                                 eap->eap_cookie);
768                         eap->eap_cookie = NULL;
769                 }
770
771                 eas.eas_next_offset += CFS_PAGE_SIZE;
772                 eap->eap_off = eas.eas_next_offset;
773
774                 rc = obd_prep_async_page(exp, lsm, NULL, eap->eap_page,
775                                          eap->eap_off, &ec_async_page_ops,
776                                          eap, &eap->eap_cookie, 1, NULL);
777                 if (rc) {
778                         spin_lock(&eas.eas_lock);
779                         eas.eas_rc = rc;
780                         break;
781                 }
782
783                 if (oa->o_id != ECHO_PERSISTENT_OBJID &&
784                     (oa->o_valid & OBD_MD_FLFLAGS) != 0 &&
785                     (oa->o_flags & OBD_FL_DEBUG_CHECK) != 0)
786                         echo_client_page_debug_setup(lsm, eap->eap_page, rw,
787                                                      oa->o_id,
788                                                      eap->eap_off, CFS_PAGE_SIZE);
789
790                 /* always asserts urgent, which isn't quite right */
791                 rc = obd_queue_async_io(exp, lsm, NULL, eap->eap_cookie,
792                                         rw, 0, CFS_PAGE_SIZE, 0,
793                                         ASYNC_READY | ASYNC_URGENT |
794                                         ASYNC_COUNT_STABLE);
795                 spin_lock(&eas.eas_lock);
796                 if (rc && !eas.eas_rc) {
797                         eas.eas_rc = rc;
798                         break;
799                 }
800                 eas.eas_in_flight++;
801                 if (eas.eas_next_offset == eas.eas_end_offset)
802                         break;
803         }
804
805         /* still hold the eas_lock here.. */
806
807         /* now we just spin waiting for all the rpcs to complete */
808         while(eas.eas_in_flight) {
809                 spin_unlock(&eas.eas_lock);
810                 wait_event_interruptible(eas.eas_waitq,
811                                          eas.eas_in_flight == 0);
812                 spin_lock(&eas.eas_lock);
813         }
814         spin_unlock(&eas.eas_lock);
815
816 out:
817         if (aps != NULL) {
818                 for (i = 0; i < npages; ++ i) {
819                         cfs_page_t *page;
820
821                         eap = aps[i];
822                         page = eap->eap_page;
823                         if (eap->eap_cookie != NULL)
824                                 obd_teardown_async_page(exp, lsm, NULL,
825                                                         eap->eap_cookie);
826                         OBD_FREE(eap, sizeof(*eap));
827                         OBD_PAGE_FREE(page);
828                 }
829                 OBD_FREE(aps, npages * sizeof aps[0]);
830         }
831
832         RETURN(rc);
833 }
834
835 static int echo_client_prep_commit(struct obd_export *exp, int rw,
836                                    struct obdo *oa, struct lov_stripe_md *lsm,
837                                    obd_off offset, obd_size count,
838                                    obd_size batch, struct obd_trans_info *oti)
839 {
840         struct obd_ioobj ioo;
841         struct niobuf_local *lnb;
842         struct niobuf_remote *rnb;
843         obd_off off;
844         obd_size npages, tot_pages;
845         int i, ret = 0;
846         ENTRY;
847
848         if (count <= 0 || (count & (~CFS_PAGE_MASK)) != 0 ||
849             (lsm != NULL && lsm->lsm_object_id != oa->o_id))
850                 RETURN(-EINVAL);
851
852         npages = batch >> CFS_PAGE_SHIFT;
853         tot_pages = count >> CFS_PAGE_SHIFT;
854
855         OBD_ALLOC(lnb, npages * sizeof(struct niobuf_local));
856         OBD_ALLOC(rnb, npages * sizeof(struct niobuf_remote));
857
858         if (lnb == NULL || rnb == NULL)
859                 GOTO(out, ret = -ENOMEM);
860
861         obdo_to_ioobj(oa, &ioo);
862
863         off = offset;
864
865         for(; tot_pages; tot_pages -= npages) {
866                 if (tot_pages < npages)
867                         npages = tot_pages;
868
869                 for (i = 0; i < npages; i++, off += CFS_PAGE_SIZE) {
870                         rnb[i].offset = off;
871                         rnb[i].len = CFS_PAGE_SIZE;
872                 }
873
874                 ioo.ioo_bufcnt = npages;
875                 oti->oti_transno = 0;
876
877                 ret = obd_preprw(rw, exp, oa, 1, &ioo, npages, rnb, lnb, oti,
878                                  NULL);
879                 if (ret != 0)
880                         GOTO(out, ret);
881
882                 for (i = 0; i < npages; i++) {
883                         cfs_page_t *page = lnb[i].page;
884
885                         /* read past eof? */
886                         if (page == NULL && lnb[i].rc == 0)
887                                 continue;
888
889                         if (oa->o_id == ECHO_PERSISTENT_OBJID ||
890                             (oa->o_valid & OBD_MD_FLFLAGS) == 0 ||
891                             (oa->o_flags & OBD_FL_DEBUG_CHECK) == 0)
892                                 continue;
893
894                         if (rw == OBD_BRW_WRITE)
895                                 echo_client_page_debug_setup(lsm, page, rw,
896                                                              oa->o_id,
897                                                              rnb[i].offset,
898                                                              rnb[i].len);
899                         else
900                                 echo_client_page_debug_check(lsm, page,
901                                                              oa->o_id,
902                                                              rnb[i].offset,
903                                                              rnb[i].len);
904                 }
905
906                 ret = obd_commitrw(rw, exp, oa, 1, &ioo, npages, lnb, oti, ret);
907                 if (ret != 0)
908                         GOTO(out, ret);
909         }
910
911 out:
912         if (lnb)
913                 OBD_FREE(lnb, npages * sizeof(struct niobuf_local));
914         if (rnb)
915                 OBD_FREE(rnb, npages * sizeof(struct niobuf_remote));
916         RETURN(ret);
917 }
918
919 int echo_client_brw_ioctl(int rw, struct obd_export *exp,
920                           struct obd_ioctl_data *data)
921 {
922         struct obd_device *obd = class_exp2obd(exp);
923         struct echo_client_obd *ec = &obd->u.echo_client;
924         struct obd_trans_info dummy_oti = { .oti_thread_id = -1 };
925         struct ec_object *eco;
926         int rc;
927         ENTRY;
928
929         rc = echo_get_object(&eco, obd, &data->ioc_obdo1);
930         if (rc)
931                 RETURN(rc);
932
933         data->ioc_obdo1.o_valid &= ~OBD_MD_FLHANDLE;
934         data->ioc_obdo1.o_valid |= OBD_MD_FLGROUP;
935         data->ioc_obdo1.o_gr = FILTER_GROUP_ECHO;
936
937         switch((long)data->ioc_pbuf1) {
938         case 1:
939                 rc = echo_client_kbrw(obd, rw, &data->ioc_obdo1,
940                                               eco->eco_lsm, data->ioc_offset,
941                                               data->ioc_count, &dummy_oti);
942                 break;
943         case 2:
944                 rc = echo_client_async_page(ec->ec_exp, rw, &data->ioc_obdo1,
945                                            eco->eco_lsm, data->ioc_offset,
946                                            data->ioc_count, data->ioc_plen1);
947                 break;
948         case 3:
949                 rc = echo_client_prep_commit(ec->ec_exp, rw, &data->ioc_obdo1,
950                                             eco->eco_lsm, data->ioc_offset,
951                                             data->ioc_count, data->ioc_plen1,
952                                             &dummy_oti);
953                 break;
954         default:
955                 rc = -EINVAL;
956         }
957         echo_put_object(eco);
958         RETURN(rc);
959 }
960
961 static int
962 echo_ldlm_callback (struct ldlm_lock *lock, struct ldlm_lock_desc *new,
963                     void *data, int flag)
964 {
965         struct ec_object       *eco = (struct ec_object *)data;
966         struct echo_client_obd *ec = &(eco->eco_device->u.echo_client);
967         struct lustre_handle    lockh;
968         struct list_head       *el;
969         int                     found = 0;
970         int                     rc;
971
972         ldlm_lock2handle (lock, &lockh);
973
974         /* #ifdef this out if we're not feeling paranoid */
975         spin_lock (&ec->ec_lock);
976         list_for_each (el, &ec->ec_objects) {
977                 found = (eco == list_entry(el, struct ec_object,
978                                            eco_obj_chain));
979                 if (found)
980                         break;
981         }
982         spin_unlock (&ec->ec_lock);
983         LASSERT (found);
984
985         switch (flag) {
986         case LDLM_CB_BLOCKING:
987                 CDEBUG(D_INFO, "blocking callback on "LPX64", handle "LPX64"\n",
988                        eco->eco_id, lockh.cookie);
989                 rc = ldlm_cli_cancel (&lockh);
990                 if (rc != ELDLM_OK)
991                         CERROR ("ldlm_cli_cancel failed: %d\n", rc);
992                 break;
993
994         case LDLM_CB_CANCELING:
995                 CDEBUG(D_INFO, "cancel callback on "LPX64", handle "LPX64"\n",
996                        eco->eco_id, lockh.cookie);
997                 break;
998
999         default:
1000                 LBUG ();
1001         }
1002
1003         return (0);
1004 }
1005
1006 static int
1007 echo_client_enqueue(struct obd_export *exp, struct obdo *oa,
1008                     int mode, obd_off offset, obd_size nob)
1009 {
1010         struct obd_device      *obd = exp->exp_obd;
1011         struct echo_client_obd *ec = &obd->u.echo_client;
1012         struct lustre_handle   *ulh = obdo_handle (oa);
1013         struct ldlm_enqueue_info einfo = { 0 };
1014         struct obd_info oinfo = { { { 0 } } };
1015         struct ec_object       *eco;
1016         struct ec_lock         *ecl;
1017         int                     rc;
1018
1019         if (!(mode == LCK_PR || mode == LCK_PW))
1020                 return -EINVAL;
1021
1022         if ((offset & (~CFS_PAGE_MASK)) != 0 ||
1023             (nob & (~CFS_PAGE_MASK)) != 0)
1024                 return -EINVAL;
1025
1026         rc = echo_get_object (&eco, obd, oa);
1027         if (rc != 0)
1028                 return rc;
1029
1030         rc = -ENOMEM;
1031         OBD_ALLOC (ecl, sizeof (*ecl));
1032         if (ecl == NULL)
1033                 goto failed_0;
1034
1035         ecl->ecl_mode = mode;
1036         ecl->ecl_object = eco;
1037         ecl->ecl_policy.l_extent.start = offset;
1038         ecl->ecl_policy.l_extent.end =
1039                 (nob == 0) ? ((obd_off) -1) : (offset + nob - 1);
1040
1041         einfo.ei_type = LDLM_EXTENT;
1042         einfo.ei_mode = mode;
1043         einfo.ei_cb_bl = echo_ldlm_callback;
1044         einfo.ei_cb_cp = ldlm_completion_ast;
1045         einfo.ei_cb_gl = NULL;
1046         einfo.ei_cbdata = eco;
1047
1048         oinfo.oi_policy = ecl->ecl_policy;
1049         oinfo.oi_lockh = &ecl->ecl_lock_handle;
1050         oinfo.oi_md = eco->eco_lsm;
1051         rc = obd_enqueue(ec->ec_exp, &oinfo, &einfo, NULL);
1052         if (rc != 0)
1053                 goto failed_1;
1054
1055         CDEBUG(D_INFO, "enqueue handle "LPX64"\n", ecl->ecl_lock_handle.cookie);
1056
1057         /* NB ecl takes object ref from echo_get_object() above */
1058         spin_lock(&ec->ec_lock);
1059
1060         list_add(&ecl->ecl_exp_chain, &exp->exp_ec_data.eced_locks);
1061         ulh->cookie = ecl->ecl_cookie = ec->ec_unique++;
1062
1063         spin_unlock(&ec->ec_lock);
1064
1065         oa->o_valid |= OBD_MD_FLHANDLE;
1066         return 0;
1067
1068  failed_1:
1069         OBD_FREE (ecl, sizeof (*ecl));
1070  failed_0:
1071         echo_put_object (eco);
1072         return (rc);
1073 }
1074
1075 static int
1076 echo_client_cancel(struct obd_export *exp, struct obdo *oa)
1077 {
1078         struct obd_device      *obd = exp->exp_obd;
1079         struct echo_client_obd *ec = &obd->u.echo_client;
1080         struct lustre_handle   *ulh = obdo_handle (oa);
1081         struct ec_lock         *ecl = NULL;
1082         int                     found = 0;
1083         struct list_head       *el;
1084         int                     rc;
1085
1086         if ((oa->o_valid & OBD_MD_FLHANDLE) == 0)
1087                 return -EINVAL;
1088
1089         spin_lock (&ec->ec_lock);
1090
1091         list_for_each (el, &exp->exp_ec_data.eced_locks) {
1092                 ecl = list_entry (el, struct ec_lock, ecl_exp_chain);
1093                 found = (ecl->ecl_cookie == ulh->cookie);
1094                 if (found) {
1095                         list_del (&ecl->ecl_exp_chain);
1096                         break;
1097                 }
1098         }
1099
1100         spin_unlock (&ec->ec_lock);
1101
1102         if (!found)
1103                 return (-ENOENT);
1104
1105         rc = obd_cancel(ec->ec_exp, ecl->ecl_object->eco_lsm, ecl->ecl_mode,
1106                         &ecl->ecl_lock_handle);
1107
1108         echo_put_object (ecl->ecl_object);
1109         OBD_FREE (ecl, sizeof (*ecl));
1110
1111         return rc;
1112 }
1113
1114 static int
1115 echo_client_iocontrol(unsigned int cmd, struct obd_export *exp,
1116                       int len, void *karg, void *uarg)
1117 {
1118         struct obd_device      *obd;
1119         struct echo_client_obd *ec;
1120         struct ec_object       *eco;
1121         struct obd_ioctl_data  *data = karg;
1122         struct obd_trans_info   dummy_oti;
1123         struct oti_req_ack_lock *ack_lock;
1124         struct obdo            *oa;
1125         int                     rw = OBD_BRW_READ;
1126         int                     rc = 0;
1127         int                     i;
1128         ENTRY;
1129
1130         unlock_kernel();
1131
1132         memset(&dummy_oti, 0, sizeof(dummy_oti));
1133
1134         obd = exp->exp_obd;
1135         ec = &obd->u.echo_client;
1136
1137         switch (cmd) {
1138         case OBD_IOC_CREATE:                    /* may create echo object */
1139                 if (!capable (CAP_SYS_ADMIN))
1140                         GOTO (out, rc = -EPERM);
1141
1142                 rc = echo_create_object (obd, 1, &data->ioc_obdo1,
1143                                          data->ioc_pbuf1, data->ioc_plen1,
1144                                          &dummy_oti);
1145                 GOTO(out, rc);
1146
1147         case OBD_IOC_DESTROY:
1148                 if (!capable (CAP_SYS_ADMIN))
1149                         GOTO (out, rc = -EPERM);
1150
1151                 rc = echo_get_object (&eco, obd, &data->ioc_obdo1);
1152                 if (rc == 0) {
1153                         oa = &data->ioc_obdo1;
1154                         oa->o_gr = FILTER_GROUP_ECHO;
1155                         oa->o_valid |= OBD_MD_FLGROUP;
1156                         rc = obd_destroy(ec->ec_exp, oa, eco->eco_lsm,
1157                                          &dummy_oti, NULL);
1158                         if (rc == 0)
1159                                 eco->eco_deleted = 1;
1160                         echo_put_object(eco);
1161                 }
1162                 GOTO(out, rc);
1163
1164         case OBD_IOC_GETATTR:
1165                 rc = echo_get_object (&eco, obd, &data->ioc_obdo1);
1166                 if (rc == 0) {
1167                         struct obd_info oinfo = { { { 0 } } };
1168                         oinfo.oi_md = eco->eco_lsm;
1169                         oinfo.oi_oa = &data->ioc_obdo1;
1170                         rc = obd_getattr(ec->ec_exp, &oinfo);
1171                         echo_put_object(eco);
1172                 }
1173                 GOTO(out, rc);
1174
1175         case OBD_IOC_SETATTR:
1176                 if (!capable (CAP_SYS_ADMIN))
1177                         GOTO (out, rc = -EPERM);
1178
1179                 rc = echo_get_object (&eco, obd, &data->ioc_obdo1);
1180                 if (rc == 0) {
1181                         struct obd_info oinfo = { { { 0 } } };
1182                         oinfo.oi_oa = &data->ioc_obdo1;
1183                         oinfo.oi_md = eco->eco_lsm;
1184
1185                         rc = obd_setattr(ec->ec_exp, &oinfo, NULL);
1186                         echo_put_object(eco);
1187                 }
1188                 GOTO(out, rc);
1189
1190         case OBD_IOC_BRW_WRITE:
1191                 if (!capable (CAP_SYS_ADMIN))
1192                         GOTO (out, rc = -EPERM);
1193
1194                 rw = OBD_BRW_WRITE;
1195                 /* fall through */
1196         case OBD_IOC_BRW_READ:
1197                 rc = echo_client_brw_ioctl(rw, exp, data);
1198                 GOTO(out, rc);
1199
1200         case ECHO_IOC_GET_STRIPE:
1201                 rc = echo_get_object(&eco, obd, &data->ioc_obdo1);
1202                 if (rc == 0) {
1203                         rc = echo_copyout_lsm(eco->eco_lsm, data->ioc_pbuf1,
1204                                               data->ioc_plen1);
1205                         echo_put_object(eco);
1206                 }
1207                 GOTO(out, rc);
1208
1209         case ECHO_IOC_SET_STRIPE:
1210                 if (!capable (CAP_SYS_ADMIN))
1211                         GOTO (out, rc = -EPERM);
1212
1213                 if (data->ioc_pbuf1 == NULL) {  /* unset */
1214                         rc = echo_get_object(&eco, obd, &data->ioc_obdo1);
1215                         if (rc == 0) {
1216                                 eco->eco_deleted = 1;
1217                                 echo_put_object(eco);
1218                         }
1219                 } else {
1220                         rc = echo_create_object(obd, 0, &data->ioc_obdo1,
1221                                                 data->ioc_pbuf1,
1222                                                 data->ioc_plen1, &dummy_oti);
1223                 }
1224                 GOTO (out, rc);
1225
1226         case ECHO_IOC_ENQUEUE:
1227                 if (!capable (CAP_SYS_ADMIN))
1228                         GOTO (out, rc = -EPERM);
1229
1230                 rc = echo_client_enqueue(exp, &data->ioc_obdo1,
1231                                          data->ioc_conn1, /* lock mode */
1232                                    data->ioc_offset, data->ioc_count);/*extent*/
1233                 GOTO (out, rc);
1234
1235         case ECHO_IOC_CANCEL:
1236                 rc = echo_client_cancel(exp, &data->ioc_obdo1);
1237                 GOTO (out, rc);
1238
1239         default:
1240                 CERROR ("echo_ioctl(): unrecognised ioctl %#x\n", cmd);
1241                 GOTO (out, rc = -ENOTTY);
1242         }
1243
1244         EXIT;
1245  out:
1246
1247         /* XXX this should be in a helper also called by target_send_reply */
1248         for (ack_lock = dummy_oti.oti_ack_locks, i = 0; i < 4;
1249              i++, ack_lock++) {
1250                 if (!ack_lock->mode)
1251                         break;
1252                 ldlm_lock_decref(&ack_lock->lock, ack_lock->mode);
1253         }
1254
1255         lock_kernel();
1256
1257         return rc;
1258 }
1259
1260 static int echo_client_setup(struct obd_device *obddev, struct lustre_cfg *lcfg)
1261 {
1262         struct echo_client_obd *ec = &obddev->u.echo_client;
1263         struct obd_device *tgt;
1264         struct lustre_handle conn = {0, };
1265         struct obd_uuid echo_uuid = { "ECHO_UUID" };
1266         struct obd_connect_data *ocd = NULL;
1267         int rc;
1268         ENTRY;
1269
1270         if (lcfg->lcfg_bufcount < 2 || LUSTRE_CFG_BUFLEN(lcfg, 1) < 1) {
1271                 CERROR("requires a TARGET OBD name\n");
1272                 RETURN(-EINVAL);
1273         }
1274
1275         tgt = class_name2obd(lustre_cfg_string(lcfg, 1));
1276         if (!tgt || !tgt->obd_attached || !tgt->obd_set_up) {
1277                 CERROR("device not attached or not set up (%s)\n",
1278                        lustre_cfg_string(lcfg, 1));
1279                 RETURN(-EINVAL);
1280         }
1281
1282         spin_lock_init (&ec->ec_lock);
1283         CFS_INIT_LIST_HEAD (&ec->ec_objects);
1284         ec->ec_unique = 0;
1285
1286         OBD_ALLOC(ocd, sizeof(*ocd));
1287         if (ocd == NULL) {
1288                 CERROR("Can't alloc ocd connecting to %s\n",
1289                        lustre_cfg_string(lcfg, 1));
1290                 return -ENOMEM;
1291         }
1292
1293         ocd->ocd_connect_flags = OBD_CONNECT_VERSION | OBD_CONNECT_REQPORTAL;
1294         ocd->ocd_version = LUSTRE_VERSION_CODE;
1295         ocd->ocd_group = FILTER_GROUP_ECHO;
1296
1297         rc = obd_connect(NULL, &conn, tgt, &echo_uuid, ocd, NULL);
1298
1299         OBD_FREE(ocd, sizeof(*ocd));
1300
1301         if (rc != 0) {
1302                 CERROR("fail to connect to device %s\n",
1303                        lustre_cfg_string(lcfg, 1));
1304                 return (rc);
1305         }
1306         ec->ec_exp = class_conn2export(&conn);
1307
1308         RETURN(rc);
1309 }
1310
1311 static int echo_client_cleanup(struct obd_device *obddev)
1312 {
1313         struct list_head       *el;
1314         struct ec_object       *eco;
1315         struct echo_client_obd *ec = &obddev->u.echo_client;
1316         int rc;
1317         ENTRY;
1318
1319         if (!list_empty(&obddev->obd_exports)) {
1320                 CERROR("still has clients!\n");
1321                 RETURN(-EBUSY);
1322         }
1323
1324         /* XXX assuming sole access */
1325         while (!list_empty(&ec->ec_objects)) {
1326                 el = ec->ec_objects.next;
1327                 eco = list_entry(el, struct ec_object, eco_obj_chain);
1328
1329                 LASSERT(eco->eco_refcount == 0);
1330                 eco->eco_refcount = 1;
1331                 eco->eco_deleted = 1;
1332                 echo_put_object(eco);
1333         }
1334
1335         rc = obd_disconnect(ec->ec_exp);
1336         if (rc != 0)
1337                 CERROR("fail to disconnect device: %d\n", rc);
1338
1339         RETURN(rc);
1340 }
1341
1342 static int echo_client_connect(const struct lu_env *env,
1343                                struct lustre_handle *conn,
1344                                struct obd_device *src, struct obd_uuid *cluuid,
1345                                struct obd_connect_data *data, void *localdata)
1346 {
1347         struct obd_export *exp;
1348         int                rc;
1349
1350         ENTRY;
1351         rc = class_connect(conn, src, cluuid);
1352         if (rc == 0) {
1353                 exp = class_conn2export(conn);
1354                 CFS_INIT_LIST_HEAD(&exp->exp_ec_data.eced_locks);
1355                 class_export_put(exp);
1356         }
1357
1358         RETURN (rc);
1359 }
1360
1361 static int echo_client_disconnect(struct obd_export *exp)
1362 {
1363         struct obd_device      *obd;
1364         struct echo_client_obd *ec;
1365         struct ec_lock         *ecl;
1366         int                     rc;
1367         ENTRY;
1368
1369         if (exp == NULL)
1370                 GOTO(out, rc = -EINVAL);
1371
1372         obd = exp->exp_obd;
1373         ec = &obd->u.echo_client;
1374
1375         /* no more contention on export's lock list */
1376         while (!list_empty (&exp->exp_ec_data.eced_locks)) {
1377                 ecl = list_entry (exp->exp_ec_data.eced_locks.next,
1378                                   struct ec_lock, ecl_exp_chain);
1379                 list_del (&ecl->ecl_exp_chain);
1380
1381                 rc = obd_cancel(ec->ec_exp, ecl->ecl_object->eco_lsm,
1382                                  ecl->ecl_mode, &ecl->ecl_lock_handle);
1383
1384                 CDEBUG (D_INFO, "Cancel lock on object "LPX64" on disconnect "
1385                         "(%d)\n", ecl->ecl_object->eco_id, rc);
1386
1387                 echo_put_object (ecl->ecl_object);
1388                 OBD_FREE (ecl, sizeof (*ecl));
1389         }
1390
1391         rc = class_disconnect(exp);
1392         GOTO(out, rc);
1393  out:
1394         return rc;
1395 }
1396
1397 static struct obd_ops echo_obd_ops = {
1398         .o_owner       = THIS_MODULE,
1399         .o_setup       = echo_client_setup,
1400         .o_cleanup     = echo_client_cleanup,
1401         .o_iocontrol   = echo_client_iocontrol,
1402         .o_connect     = echo_client_connect,
1403         .o_disconnect  = echo_client_disconnect
1404 };
1405
1406 int echo_client_init(void)
1407 {
1408         struct lprocfs_static_vars lvars = { 0 };
1409
1410         lprocfs_echo_init_vars(&lvars);
1411         return class_register_type(&echo_obd_ops, NULL, lvars.module_vars,
1412                                    LUSTRE_ECHO_CLIENT_NAME, NULL);
1413 }
1414
1415 void echo_client_exit(void)
1416 {
1417         class_unregister_type(LUSTRE_ECHO_CLIENT_NAME);
1418 }