1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2 * vim:expandtab:shiftwidth=8:tabstop=8:
4 * Copyright (c) 2001-2003 Cluster File Systems, Inc.
6 * This file is part of Lustre, http://www.lustre.org.
8 * Lustre is free software; you can redistribute it and/or
9 * modify it under the terms of version 2 of the GNU General Public
10 * License as published by the Free Software Foundation.
12 * Lustre is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Lustre; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #define DEBUG_SUBSYSTEM S_ECHO
24 #include <linux/version.h>
25 #include <linux/module.h>
27 #include <linux/completion.h>
28 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
29 #include <linux/iobuf.h>
31 #include <asm/div64.h>
33 #include <liblustre.h>
36 #include <linux/obd.h>
37 #include <linux/obd_support.h>
38 #include <linux/obd_class.h>
39 #include <linux/obd_echo.h>
40 #include <linux/lustre_debug.h>
41 #include <linux/lprocfs_status.h>
43 static obd_id last_object_id;
47 echo_printk_object (char *msg, struct ec_object *eco)
49 struct lov_stripe_md *lsm = eco->eco_lsm;
52 printk (KERN_INFO "Lustre: %s: object %p: "LPX64", refs %d%s: "LPX64
53 "=%u!%u\n", msg, eco, eco->eco_id, eco->eco_refcount,
54 eco->eco_deleted ? "(deleted) " : "",
55 lsm->lsm_object_id, lsm->lsm_stripe_size,
56 lsm->lsm_stripe_count);
58 for (i = 0; i < lsm->lsm_stripe_count; i++)
59 printk (KERN_INFO "Lustre: @%2u:"LPX64"\n",
60 lsm->lsm_oinfo[i].loi_ost_idx,
61 lsm->lsm_oinfo[i].loi_id);
65 static struct ec_object *
66 echo_find_object_locked (struct obd_device *obd, obd_id id)
68 struct echo_client_obd *ec = &obd->u.echo_client;
69 struct ec_object *eco = NULL;
72 list_for_each (el, &ec->ec_objects) {
73 eco = list_entry (el, struct ec_object, eco_obj_chain);
75 if (eco->eco_id == id)
82 echo_copyout_lsm (struct lov_stripe_md *lsm, void *ulsm, int ulsm_nob)
86 nob = offsetof (struct lov_stripe_md, lsm_oinfo[lsm->lsm_stripe_count]);
90 if (copy_to_user (ulsm, lsm, nob))
97 echo_copyin_lsm (struct obd_device *obd, struct lov_stripe_md *lsm,
98 void *ulsm, int ulsm_nob)
100 struct echo_client_obd *ec = &obd->u.echo_client;
103 if (ulsm_nob < sizeof (*lsm))
106 if (copy_from_user (lsm, ulsm, sizeof (*lsm)))
109 nob = lsm->lsm_stripe_count * sizeof (lsm->lsm_oinfo[0]);
111 if (ulsm_nob < nob ||
112 lsm->lsm_stripe_count > ec->ec_nstripes ||
113 lsm->lsm_magic != LOV_MAGIC ||
114 (lsm->lsm_stripe_size & (PAGE_SIZE - 1)) != 0 ||
115 ((__u64)lsm->lsm_stripe_size * lsm->lsm_stripe_count > ~0UL))
118 if (copy_from_user(lsm->lsm_oinfo,
119 ((struct lov_stripe_md *)ulsm)->lsm_oinfo, nob))
125 static struct ec_object *
126 echo_allocate_object (struct obd_device *obd)
128 struct echo_client_obd *ec = &obd->u.echo_client;
129 struct ec_object *eco;
132 OBD_ALLOC(eco, sizeof (*eco));
136 rc = obd_alloc_memmd(ec->ec_exp, &eco->eco_lsm);
138 OBD_FREE(eco, sizeof (*eco));
142 eco->eco_device = obd;
143 eco->eco_deleted = 0;
144 eco->eco_refcount = 0;
145 eco->eco_lsm->lsm_magic = LOV_MAGIC;
146 /* leave stripe count 0 by default */
152 echo_free_object (struct ec_object *eco)
154 struct obd_device *obd = eco->eco_device;
155 struct echo_client_obd *ec = &obd->u.echo_client;
157 LASSERT (eco->eco_refcount == 0);
158 obd_free_memmd(ec->ec_exp, &eco->eco_lsm);
159 OBD_FREE (eco, sizeof (*eco));
162 static int echo_create_object(struct obd_device *obd, int on_target,
163 struct obdo *oa, void *ulsm, int ulsm_nob,
164 struct obd_trans_info *oti)
166 struct echo_client_obd *ec = &obd->u.echo_client;
167 struct ec_object *eco2;
168 struct ec_object *eco;
169 struct lov_stripe_md *lsm;
173 if ((oa->o_valid & OBD_MD_FLID) == 0 && /* no obj id */
174 (on_target || /* set_stripe */
175 ec->ec_nstripes != 0)) { /* LOV */
176 CERROR ("No valid oid\n");
181 eco = echo_allocate_object (obd);
187 rc = echo_copyin_lsm (obd, lsm, ulsm, ulsm_nob);
191 /* setup object ID here for !on_target and LOV hint */
192 if ((oa->o_valid & OBD_MD_FLID) != 0)
193 eco->eco_id = lsm->lsm_object_id = oa->o_id;
195 if (lsm->lsm_stripe_count == 0)
196 lsm->lsm_stripe_count = ec->ec_nstripes;
198 if (lsm->lsm_stripe_size == 0)
199 lsm->lsm_stripe_size = PAGE_SIZE;
201 idx = ll_insecure_random_int();
203 /* setup stripes: indices + default ids if required */
204 for (i = 0; i < lsm->lsm_stripe_count; i++) {
205 if (lsm->lsm_oinfo[i].loi_id == 0)
206 lsm->lsm_oinfo[i].loi_id = lsm->lsm_object_id;
208 lsm->lsm_oinfo[i].loi_ost_idx =
209 (idx + i) % ec->ec_nstripes;
212 OBD_ALLOC(eco, sizeof(*eco));
213 eco->eco_device = obd;
218 oa->o_id = ++last_object_id;
221 /* XXX get some filter group constants */
223 oa->o_valid |= OBD_MD_FLGROUP;
224 rc = obd_create(ec->ec_exp, oa, &lsm, oti);
228 /* See what object ID we were given */
229 eco->eco_id = oa->o_id = lsm->lsm_object_id;
230 oa->o_valid |= OBD_MD_FLID;
232 LASSERT(eco->eco_lsm == NULL || eco->eco_lsm == lsm);
236 spin_lock (&ec->ec_lock);
238 eco2 = echo_find_object_locked (obd, oa->o_id);
239 if (eco2 != NULL) { /* conflict */
240 spin_unlock (&ec->ec_lock);
242 CERROR ("Can't create object id "LPX64": id already exists%s\n",
243 oa->o_id, on_target ? " (undoing create)" : "");
246 obd_destroy(ec->ec_exp, oa, lsm, oti);
252 list_add (&eco->eco_obj_chain, &ec->ec_objects);
253 spin_unlock (&ec->ec_lock);
255 "created %p: "LPX64"=%u#%u@%u refs %d del %d\n",
257 eco->eco_lsm->lsm_stripe_size,
258 eco->eco_lsm->lsm_stripe_count,
259 eco->eco_lsm->lsm_oinfo[0].loi_ost_idx,
260 eco->eco_refcount, eco->eco_deleted);
264 echo_free_object (eco);
269 echo_get_object (struct ec_object **ecop, struct obd_device *obd,
272 struct echo_client_obd *ec = &obd->u.echo_client;
273 struct ec_object *eco;
274 struct ec_object *eco2;
277 if ((oa->o_valid & OBD_MD_FLID) == 0)
279 CERROR ("No valid oid\n");
283 spin_lock (&ec->ec_lock);
284 eco = echo_find_object_locked (obd, oa->o_id);
286 if (eco->eco_deleted) /* being deleted */
287 return (-EAGAIN); /* (see comment in cleanup) */
290 spin_unlock (&ec->ec_lock);
293 "found %p: "LPX64"=%u#%u@%u refs %d del %d\n",
295 eco->eco_lsm->lsm_stripe_size,
296 eco->eco_lsm->lsm_stripe_count,
297 eco->eco_lsm->lsm_oinfo[0].loi_ost_idx,
298 eco->eco_refcount, eco->eco_deleted);
301 spin_unlock (&ec->ec_lock);
303 if (ec->ec_nstripes != 0) /* striping required */
306 eco = echo_allocate_object (obd);
310 eco->eco_id = eco->eco_lsm->lsm_object_id = oa->o_id;
312 spin_lock (&ec->ec_lock);
314 eco2 = echo_find_object_locked (obd, oa->o_id);
315 if (eco2 == NULL) { /* didn't race */
316 list_add (&eco->eco_obj_chain, &ec->ec_objects);
317 spin_unlock (&ec->ec_lock);
318 eco->eco_refcount = 1;
321 "created %p: "LPX64"=%u#%u@%d refs %d del %d\n",
323 eco->eco_lsm->lsm_stripe_size,
324 eco->eco_lsm->lsm_stripe_count,
325 eco->eco_lsm->lsm_oinfo[0].loi_ost_idx,
326 eco->eco_refcount, eco->eco_deleted);
330 if (eco2->eco_deleted)
331 rc = -EAGAIN; /* lose race */
333 eco2->eco_refcount++; /* take existing */
336 LASSERT (eco2->eco_id == eco2->eco_lsm->lsm_object_id);
338 "found(2) %p: "LPX64"=%u#%u@%d refs %d del %d\n",
340 eco2->eco_lsm->lsm_stripe_size,
341 eco2->eco_lsm->lsm_stripe_count,
342 eco2->eco_lsm->lsm_oinfo[0].loi_ost_idx,
343 eco2->eco_refcount, eco2->eco_deleted);
346 spin_unlock (&ec->ec_lock);
348 echo_free_object (eco);
353 echo_put_object (struct ec_object *eco)
355 struct obd_device *obd = eco->eco_device;
356 struct echo_client_obd *ec = &obd->u.echo_client;
358 /* Release caller's ref on the object.
359 * delete => mark for deletion when last ref goes
362 spin_lock (&ec->ec_lock);
365 LASSERT (eco->eco_refcount >= 0);
367 CDEBUG(D_INFO, "put %p: "LPX64"=%u#%u@%d refs %d del %d\n",
369 eco->eco_lsm->lsm_stripe_size,
370 eco->eco_lsm->lsm_stripe_count,
371 eco->eco_lsm->lsm_oinfo[0].loi_ost_idx,
372 eco->eco_refcount, eco->eco_deleted);
374 if (eco->eco_refcount != 0 || !eco->eco_deleted) {
375 spin_unlock (&ec->ec_lock);
379 spin_unlock (&ec->ec_lock);
381 /* NB leave obj in the object list. We must prevent anyone from
382 * attempting to enqueue on this object number until we can be
383 * sure there will be no more lock callbacks.
385 obd_cancel_unused(ec->ec_exp, eco->eco_lsm, 0, NULL);
387 /* now we can let it go */
388 spin_lock (&ec->ec_lock);
389 list_del (&eco->eco_obj_chain);
390 spin_unlock (&ec->ec_lock);
392 LASSERT (eco->eco_refcount == 0);
394 echo_free_object (eco);
398 echo_get_stripe_off_id (struct lov_stripe_md *lsm, obd_off *offp, obd_id *idp)
400 unsigned long stripe_count;
401 unsigned long stripe_size;
403 unsigned long woffset;
407 if (lsm->lsm_stripe_count <= 1)
411 stripe_size = lsm->lsm_stripe_size;
412 stripe_count = lsm->lsm_stripe_count;
414 /* width = # bytes in all stripes */
415 width = stripe_size * stripe_count;
417 /* woffset = offset within a width; offset = whole number of widths */
418 woffset = do_div (offset, width);
420 stripe_index = woffset / stripe_size;
422 *idp = lsm->lsm_oinfo[stripe_index].loi_id;
423 *offp = offset * stripe_size + woffset % stripe_size;
426 static int echo_client_kbrw(struct obd_device *obd, int rw, struct obdo *oa,
427 struct lov_stripe_md *lsm, obd_off offset,
428 obd_size count, struct obd_trans_info *oti)
430 struct echo_client_obd *ec = &obd->u.echo_client;
432 struct brw_page *pga;
433 struct brw_page *pgp;
440 /* oa_id == 0 => speed test (no verification) else...
441 * oa & 1 => use HIGHMEM
443 verify = (oa->o_id != 0);
444 gfp_mask = ((oa->o_id & 1) == 0) ? GFP_KERNEL : GFP_HIGHUSER;
446 LASSERT(rw == OBD_BRW_WRITE || rw == OBD_BRW_READ);
449 (count & (PAGE_SIZE - 1)) != 0 ||
451 lsm->lsm_object_id != oa->o_id))
454 /* XXX think again with misaligned I/O */
455 npages = count >> PAGE_SHIFT;
457 OBD_ALLOC(pga, npages * sizeof(*pga));
461 for (i = 0, pgp = pga, off = offset;
463 i++, pgp++, off += PAGE_SIZE) {
465 LASSERT (pgp->pg == NULL); /* for cleanup */
468 pgp->pg = alloc_pages (gfp_mask, 0);
472 pgp->count = PAGE_SIZE;
477 void *addr = kmap(pgp->pg);
478 obd_off stripe_off = off;
479 obd_id stripe_id = oa->o_id;
481 if (rw == OBD_BRW_WRITE) {
482 echo_get_stripe_off_id(lsm, &stripe_off,
484 page_debug_setup(addr, pgp->count,
485 stripe_off, stripe_id);
487 page_debug_setup(addr, pgp->count,
488 0xdeadbeef00c0ffeeULL,
489 0xdeadbeef00c0ffeeULL);
495 rc = obd_brw(rw, ec->ec_exp, oa, lsm, npages, pga, oti);
501 for (i = 0, pgp = pga; i < npages; i++, pgp++) {
506 void *addr = kmap(pgp->pg);
507 obd_off stripe_off = pgp->off;
508 obd_id stripe_id = oa->o_id;
511 echo_get_stripe_off_id (lsm, &stripe_off, &stripe_id);
512 vrc = page_debug_check("test_brw", addr, pgp->count,
513 stripe_off, stripe_id);
514 if (vrc != 0 && rc == 0)
519 __free_pages(pgp->pg, 0);
521 OBD_FREE(pga, npages * sizeof(*pga));
526 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
527 static int echo_client_ubrw(struct obd_device *obd, int rw,
528 struct obdo *oa, struct lov_stripe_md *lsm,
529 obd_off offset, obd_size count, char *buffer,
530 struct obd_trans_info *oti)
532 struct echo_client_obd *ec = &obd->u.echo_client;
534 struct brw_page *pga;
535 struct brw_page *pgp;
537 struct kiobuf *kiobuf;
541 LASSERT (rw == OBD_BRW_WRITE ||
544 /* NB: for now, only whole pages, page aligned */
547 ((long)buffer & (PAGE_SIZE - 1)) != 0 ||
548 (count & (PAGE_SIZE - 1)) != 0 ||
549 (lsm != NULL && lsm->lsm_object_id != oa->o_id))
552 /* XXX think again with misaligned I/O */
553 npages = count >> PAGE_SHIFT;
555 OBD_ALLOC(pga, npages * sizeof(*pga));
559 rc = alloc_kiovec (1, &kiobuf);
563 rc = map_user_kiobuf ((rw == OBD_BRW_READ) ? READ : WRITE,
564 kiobuf, (unsigned long)buffer, count);
568 LASSERT (kiobuf->offset == 0);
569 LASSERT (kiobuf->nr_pages == npages);
571 for (i = 0, off = offset, pgp = pga;
573 i++, off += PAGE_SIZE, pgp++) {
575 pgp->pg = kiobuf->maplist[i];
576 pgp->count = PAGE_SIZE;
580 rc = obd_brw(rw, ec->ec_exp, oa, lsm, npages, pga, oti);
582 // if (rw == OBD_BRW_READ)
583 // mark_dirty_kiobuf (kiobuf, count);
585 unmap_kiobuf (kiobuf);
587 free_kiovec (1, &kiobuf);
589 OBD_FREE(pga, npages * sizeof(*pga));
593 static int echo_client_ubrw(struct obd_device *obd, int rw,
594 struct obdo *oa, struct lov_stripe_md *lsm,
595 obd_off offset, obd_size count, char *buffer,
596 struct obd_trans_info *oti)
598 #warning "echo_client_ubrw() needs to be ported on 2.6 yet"
605 struct echo_async_state;
607 #define EAP_MAGIC 79277927
608 struct echo_async_page {
610 struct page *eap_page;
613 struct echo_async_state *eap_eas;
614 struct list_head eap_item;
617 struct echo_async_state {
619 obd_off eas_next_offset;
620 obd_off eas_end_offset;
623 wait_queue_head_t eas_waitq;
624 struct list_head eas_avail;
628 static int eas_should_wake(struct echo_async_state *eas)
632 spin_lock_irqsave(&eas->eas_lock, flags);
633 if (eas->eas_rc == 0 && !list_empty(&eas->eas_avail))
635 spin_unlock_irqrestore(&eas->eas_lock, flags);
639 struct echo_async_page *eap_from_cookie(void *cookie)
641 struct echo_async_page *eap = cookie;
642 if (eap->eap_magic != EAP_MAGIC)
643 return ERR_PTR(-EINVAL);
647 static int ec_ap_make_ready(void *data, int cmd)
649 /* our pages are issued ready */
653 static int ec_ap_refresh_count(void *data, int cmd)
655 /* our pages are issued with a stable count */
659 static void ec_ap_fill_obdo(void *data, int cmd, struct obdo *oa)
661 struct echo_async_page *eap;
662 eap = eap_from_cookie(data);
666 memcpy(oa, &eap->eap_eas->eas_oa, sizeof(*oa));
668 static void ec_ap_completion(void *data, int cmd, int rc)
670 struct echo_async_page *eap = eap_from_cookie(data);
671 struct echo_async_state *eas;
678 spin_lock_irqsave(&eas->eas_lock, flags);
679 if (rc && !eas->eas_rc)
681 eas->eas_in_flight--;
682 list_add(&eap->eap_item, &eas->eas_avail);
683 wake_up(&eas->eas_waitq);
684 spin_unlock_irqrestore(&eas->eas_lock, flags);
687 static struct obd_async_page_ops ec_async_page_ops = {
688 .ap_make_ready = ec_ap_make_ready,
689 .ap_refresh_count = ec_ap_refresh_count,
690 .ap_fill_obdo = ec_ap_fill_obdo,
691 .ap_completion = ec_ap_completion,
694 static int echo_client_async_page(struct obd_export *exp, int rw,
695 struct obdo *oa, struct lov_stripe_md *lsm,
696 obd_off offset, obd_size count,
700 struct echo_async_page *eap;
701 struct echo_async_state eas;
702 struct list_head *pos, *n;
709 /* oa_id == 0 => speed test (no verification) else...
710 * oa & 1 => use HIGHMEM
712 verify = (oa->o_id != 0);
713 gfp_mask = ((oa->o_id & 1) == 0) ? GFP_KERNEL : GFP_HIGHUSER;
716 LASSERT(rw == OBD_BRW_WRITE || rw == OBD_BRW_READ);
719 (count & (PAGE_SIZE - 1)) != 0 ||
721 lsm->lsm_object_id != oa->o_id))
724 /* XXX think again with misaligned I/O */
725 npages = batching >> PAGE_SHIFT;
727 memcpy(&eas.eas_oa, oa, sizeof(*oa));
728 eas.eas_next_offset = offset;
729 eas.eas_end_offset = offset + count;
730 spin_lock_init(&eas.eas_lock);
731 init_waitqueue_head(&eas.eas_waitq);
732 eas.eas_in_flight = 0;
734 INIT_LIST_HEAD(&eas.eas_avail);
736 /* prepare the group of pages that we're going to be keeping
738 for (i = 0; i < npages; i++) {
739 struct page *page = alloc_page(GFP_KERNEL);
741 GOTO(out, rc = -ENOMEM);
743 list_add_tail(&page->list, &pages);
745 OBD_ALLOC(eap, sizeof(*eap));
747 GOTO(out, rc = -ENOMEM);
749 eap->eap_magic = EAP_MAGIC;
750 eap->eap_page = page;
752 eap->eap_cookie = ERR_PTR(-ENOENT);
753 list_add_tail(&eap->eap_item, &eas.eas_avail);
756 /* first we spin queueing io and being woken by its completion */
757 spin_lock_irqsave(&eas.eas_lock, flags);
761 /* sleep until we have a page to send */
762 spin_unlock_irqrestore(&eas.eas_lock, flags);
763 rc = wait_event_interruptible(eas.eas_waitq,
764 eas_should_wake(&eas));
765 spin_lock_irqsave(&eas.eas_lock, flags);
766 if (rc && !eas.eas_rc)
770 if (list_empty(&eas.eas_avail))
772 eap = list_entry(eas.eas_avail.next, struct echo_async_page,
774 list_del(&eap->eap_item);
775 spin_unlock_irqrestore(&eas.eas_lock, flags);
777 /* unbind the eap from its old page offset */
778 if (!IS_ERR(eap->eap_cookie)) {
779 obd_teardown_async_page(exp, lsm, NULL,
781 eap->eap_cookie = ERR_PTR(-ENOENT);
784 eas.eas_next_offset += PAGE_SIZE;
785 eap->eap_off = eas.eas_next_offset;
787 rc = obd_prep_async_page(exp, lsm, NULL, eap->eap_page,
788 eap->eap_off, &ec_async_page_ops,
789 eap, &eap->eap_cookie);
791 spin_lock_irqsave(&eas.eas_lock, flags);
796 /* always asserts urgent, which isn't quite right */
797 rc = obd_queue_async_io(exp, lsm, NULL, eap->eap_cookie,
799 ASYNC_READY | ASYNC_URGENT |
801 spin_lock_irqsave(&eas.eas_lock, flags);
802 if (rc && !eas.eas_rc) {
807 if (eas.eas_next_offset == eas.eas_end_offset)
811 /* still hold the eas_lock here.. */
813 /* now we just spin waiting for all the rpcs to complete */
814 while(eas.eas_in_flight) {
815 spin_unlock_irqrestore(&eas.eas_lock, flags);
816 wait_event_interruptible(eas.eas_waitq,
817 eas.eas_in_flight == 0);
818 spin_lock_irqsave(&eas.eas_lock, flags);
820 spin_unlock_irqrestore(&eas.eas_lock, flags);
823 list_for_each_safe(pos, n, &pages) {
824 struct page *page = list_entry(pos, struct page, list);
826 list_del(&page->list);
828 eap = (struct echo_async_page *)page->private;
829 if (!IS_ERR(eap->eap_cookie))
830 obd_teardown_async_page(exp, lsm, NULL,
832 OBD_FREE(eap, sizeof(*eap));
840 static int echo_client_prep_commit(struct obd_export *exp, int rw,
841 struct obdo *oa, struct lov_stripe_md *lsm,
842 obd_off offset, obd_size count,
843 obd_size batch, struct obd_trans_info *oti)
845 struct obd_ioobj ioo;
846 struct niobuf_local *lnb;
847 struct niobuf_remote *rnb;
849 obd_size npages, tot_pages;
850 int i, ret = 0, err = 0;
853 if (count <= 0 || (count & (PAGE_SIZE - 1)) != 0 ||
854 (lsm != NULL && lsm->lsm_object_id != oa->o_id))
857 npages = batch >> PAGE_SHIFT;
858 tot_pages = count >> PAGE_SHIFT;
860 OBD_ALLOC(lnb, npages * sizeof(struct niobuf_local));
861 OBD_ALLOC(rnb, npages * sizeof(struct niobuf_remote));
863 if (lnb == NULL || rnb == NULL)
864 GOTO(out, ret = -ENOMEM);
866 obdo_to_ioobj(oa, &ioo);
867 ioo.ioo_bufcnt = npages;
871 for(; tot_pages; tot_pages -= npages) {
872 if (tot_pages < npages)
875 for (i = 0; i < npages; i++, off += PAGE_SIZE) {
877 rnb[i].len = PAGE_SIZE;
880 /* XXX this can't be the best.. */
881 memset(oti, 0, sizeof(*oti));
883 ret = obd_preprw(rw, exp, oa, 1, &ioo, npages, rnb, lnb, oti);
887 for (i = 0; i < npages; i++) {
888 struct page *page = lnb[i].page;
892 if (page == NULL && lnb[i].rc == 0)
895 addr = kmap(lnb[i].page);
897 if (rw == OBD_BRW_WRITE)
898 page_debug_setup(addr, PAGE_SIZE,
899 rnb[i].offset, oa->o_id);
901 err = page_debug_check("prep_commit", addr,
902 PAGE_SIZE, rnb[i].offset,
908 ret = obd_commitrw(rw, exp, oa, 1, &ioo, npages, lnb, oti);
912 GOTO(out, ret = err);
917 OBD_FREE(lnb, npages * sizeof(struct niobuf_local));
919 OBD_FREE(rnb, npages * sizeof(struct niobuf_remote));
923 int echo_client_brw_ioctl(int rw, struct obd_export *exp,
924 struct obd_ioctl_data *data)
926 struct obd_device *obd = class_exp2obd(exp);
927 struct echo_client_obd *ec = &obd->u.echo_client;
928 struct obd_trans_info dummy_oti;
929 struct ec_object *eco;
933 rc = echo_get_object(&eco, obd, &data->ioc_obdo1);
937 memset(&dummy_oti, 0, sizeof(dummy_oti));
939 data->ioc_obdo1.o_valid &= ~OBD_MD_FLHANDLE;
940 data->ioc_obdo1.o_valid |= OBD_MD_FLGROUP;
941 data->ioc_obdo1.o_gr = 2;
943 switch((long)data->ioc_pbuf1) {
945 if (data->ioc_pbuf2 == NULL) { // NULL user data pointer
946 rc = echo_client_kbrw(obd, rw, &data->ioc_obdo1,
947 eco->eco_lsm, data->ioc_offset,
948 data->ioc_count, &dummy_oti);
951 rc = echo_client_ubrw(obd, rw, &data->ioc_obdo1,
952 eco->eco_lsm, data->ioc_offset,
953 data->ioc_count, data->ioc_pbuf2,
959 rc = echo_client_async_page(ec->ec_exp, rw, &data->ioc_obdo1,
960 eco->eco_lsm, data->ioc_offset,
961 data->ioc_count, data->ioc_plen1);
964 rc = echo_client_prep_commit(ec->ec_exp, rw, &data->ioc_obdo1,
965 eco->eco_lsm, data->ioc_offset,
966 data->ioc_count, data->ioc_plen1,
972 echo_put_object(eco);
977 echo_ldlm_callback (struct ldlm_lock *lock, struct ldlm_lock_desc *new,
978 void *data, int flag)
980 struct ec_object *eco = (struct ec_object *)data;
981 struct echo_client_obd *ec = &(eco->eco_device->u.echo_client);
982 struct lustre_handle lockh;
983 struct list_head *el;
987 ldlm_lock2handle (lock, &lockh);
989 /* #ifdef this out if we're not feeling paranoid */
990 spin_lock (&ec->ec_lock);
991 list_for_each (el, &ec->ec_objects) {
992 found = (eco == list_entry(el, struct ec_object,
997 spin_unlock (&ec->ec_lock);
1001 case LDLM_CB_BLOCKING:
1002 CDEBUG(D_INFO, "blocking callback on "LPX64", handle "LPX64"\n",
1003 eco->eco_id, lockh.cookie);
1004 rc = ldlm_cli_cancel (&lockh);
1006 CERROR ("ldlm_cli_cancel failed: %d\n", rc);
1009 case LDLM_CB_CANCELING:
1010 CDEBUG(D_INFO, "cancel callback on "LPX64", handle "LPX64"\n",
1011 eco->eco_id, lockh.cookie);
1022 echo_client_enqueue(struct obd_export *exp, struct obdo *oa,
1023 int mode, obd_off offset, obd_size nob)
1025 struct obd_device *obd = exp->exp_obd;
1026 struct echo_client_obd *ec = &obd->u.echo_client;
1027 struct lustre_handle *ulh = obdo_handle (oa);
1028 struct ec_object *eco;
1029 struct ec_lock *ecl;
1033 if (!(mode == LCK_PR || mode == LCK_PW))
1036 if ((offset & (PAGE_SIZE - 1)) != 0 ||
1037 (nob & (PAGE_SIZE - 1)) != 0)
1040 rc = echo_get_object (&eco, obd, oa);
1045 OBD_ALLOC (ecl, sizeof (*ecl));
1049 ecl->ecl_mode = mode;
1050 ecl->ecl_object = eco;
1051 ecl->ecl_extent.start = offset;
1052 ecl->ecl_extent.end = (nob == 0) ? ((obd_off) -1) : (offset + nob - 1);
1055 rc = obd_enqueue(ec->ec_exp, eco->eco_lsm, NULL, LDLM_EXTENT,
1056 &ecl->ecl_extent,sizeof(ecl->ecl_extent), mode,
1057 &flags, echo_ldlm_callback, eco,
1058 &ecl->ecl_lock_handle);
1062 CDEBUG(D_INFO, "enqueue handle "LPX64"\n", ecl->ecl_lock_handle.cookie);
1064 /* NB ecl takes object ref from echo_get_object() above */
1065 spin_lock(&ec->ec_lock);
1067 list_add(&ecl->ecl_exp_chain, &exp->exp_ec_data.eced_locks);
1068 ulh->cookie = ecl->ecl_cookie = ec->ec_unique++;
1070 spin_unlock(&ec->ec_lock);
1072 oa->o_valid |= OBD_MD_FLHANDLE;
1076 OBD_FREE (ecl, sizeof (*ecl));
1078 echo_put_object (eco);
1083 echo_client_cancel(struct obd_export *exp, struct obdo *oa)
1085 struct obd_device *obd = exp->exp_obd;
1086 struct echo_client_obd *ec = &obd->u.echo_client;
1087 struct lustre_handle *ulh = obdo_handle (oa);
1088 struct ec_lock *ecl = NULL;
1090 struct list_head *el;
1093 if ((oa->o_valid & OBD_MD_FLHANDLE) == 0)
1096 spin_lock (&ec->ec_lock);
1098 list_for_each (el, &exp->exp_ec_data.eced_locks) {
1099 ecl = list_entry (el, struct ec_lock, ecl_exp_chain);
1100 found = (ecl->ecl_cookie == ulh->cookie);
1102 list_del (&ecl->ecl_exp_chain);
1107 spin_unlock (&ec->ec_lock);
1112 rc = obd_cancel(ec->ec_exp, ecl->ecl_object->eco_lsm, ecl->ecl_mode,
1113 &ecl->ecl_lock_handle);
1115 echo_put_object (ecl->ecl_object);
1116 OBD_FREE (ecl, sizeof (*ecl));
1122 echo_client_iocontrol(unsigned int cmd, struct obd_export *exp,
1123 int len, void *karg, void *uarg)
1125 struct obd_device *obd;
1126 struct echo_client_obd *ec;
1127 struct ec_object *eco;
1128 struct obd_ioctl_data *data = karg;
1129 struct obd_trans_info dummy_oti;
1130 struct oti_req_ack_lock *ack_lock;
1132 int rw = OBD_BRW_READ;
1137 memset(&dummy_oti, 0, sizeof(dummy_oti));
1140 ec = &obd->u.echo_client;
1143 case OBD_IOC_CREATE: /* may create echo object */
1144 if (!capable (CAP_SYS_ADMIN))
1145 GOTO (out, rc = -EPERM);
1147 rc = echo_create_object (obd, 1, &data->ioc_obdo1,
1148 data->ioc_pbuf1, data->ioc_plen1,
1152 case OBD_IOC_DESTROY:
1153 if (!capable (CAP_SYS_ADMIN))
1154 GOTO (out, rc = -EPERM);
1156 rc = echo_get_object (&eco, obd, &data->ioc_obdo1);
1158 oa = &data->ioc_obdo1;
1160 oa->o_valid |= OBD_MD_FLGROUP;
1161 rc = obd_destroy(ec->ec_exp, oa, eco->eco_lsm,
1164 eco->eco_deleted = 1;
1165 echo_put_object(eco);
1169 case OBD_IOC_GETATTR:
1170 rc = echo_get_object (&eco, obd, &data->ioc_obdo1);
1172 rc = obd_getattr(ec->ec_exp, &data->ioc_obdo1,
1174 echo_put_object(eco);
1178 case OBD_IOC_SETATTR:
1179 if (!capable (CAP_SYS_ADMIN))
1180 GOTO (out, rc = -EPERM);
1182 rc = echo_get_object (&eco, obd, &data->ioc_obdo1);
1184 rc = obd_setattr(ec->ec_exp, &data->ioc_obdo1,
1185 eco->eco_lsm, NULL);
1186 echo_put_object(eco);
1190 case OBD_IOC_BRW_WRITE:
1191 if (!capable (CAP_SYS_ADMIN))
1192 GOTO (out, rc = -EPERM);
1196 case OBD_IOC_BRW_READ:
1197 rc = echo_client_brw_ioctl(rw, exp, data);
1200 case ECHO_IOC_GET_STRIPE:
1201 rc = echo_get_object(&eco, obd, &data->ioc_obdo1);
1203 rc = echo_copyout_lsm(eco->eco_lsm, data->ioc_pbuf1,
1205 echo_put_object(eco);
1209 case ECHO_IOC_SET_STRIPE:
1210 if (!capable (CAP_SYS_ADMIN))
1211 GOTO (out, rc = -EPERM);
1213 if (data->ioc_pbuf1 == NULL) { /* unset */
1214 rc = echo_get_object(&eco, obd, &data->ioc_obdo1);
1216 eco->eco_deleted = 1;
1217 echo_put_object(eco);
1220 rc = echo_create_object(obd, 0, &data->ioc_obdo1,
1222 data->ioc_plen1, &dummy_oti);
1226 case ECHO_IOC_ENQUEUE:
1227 if (!capable (CAP_SYS_ADMIN))
1228 GOTO (out, rc = -EPERM);
1230 rc = echo_client_enqueue(exp, &data->ioc_obdo1,
1231 data->ioc_conn1, /* lock mode */
1232 data->ioc_offset, data->ioc_count);/*extent*/
1235 case ECHO_IOC_CANCEL:
1236 rc = echo_client_cancel(exp, &data->ioc_obdo1);
1240 CERROR ("echo_ioctl(): unrecognised ioctl %#x\n", cmd);
1241 GOTO (out, rc = -ENOTTY);
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;
1250 if (!ack_lock->mode)
1252 ldlm_lock_decref(&ack_lock->lock, ack_lock->mode);
1259 echo_client_setup(struct obd_device *obddev, obd_count len, void *buf)
1261 struct lustre_cfg* lcfg = buf;
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" };
1269 if (lcfg->lcfg_inllen1 < 1) {
1270 CERROR("requires a TARGET OBD name\n");
1274 tgt = class_name2obd(lcfg->lcfg_inlbuf1);
1275 if (!tgt || !tgt->obd_attached || !tgt->obd_set_up) {
1276 CERROR("device not attached or not set up (%s)\n",
1277 lcfg->lcfg_inlbuf1);
1281 spin_lock_init (&ec->ec_lock);
1282 INIT_LIST_HEAD (&ec->ec_objects);
1285 rc = obd_connect(&conn, tgt, &echo_uuid);
1287 CERROR("fail to connect to device %s\n", lcfg->lcfg_inlbuf1);
1290 ec->ec_exp = class_conn2export(&conn);
1295 static int echo_client_cleanup(struct obd_device *obddev, int flags)
1297 struct list_head *el;
1298 struct ec_object *eco;
1299 struct echo_client_obd *ec = &obddev->u.echo_client;
1303 if (!list_empty(&obddev->obd_exports)) {
1304 CERROR("still has clients!\n");
1308 /* XXX assuming sole access */
1309 while (!list_empty(&ec->ec_objects)) {
1310 el = ec->ec_objects.next;
1311 eco = list_entry(el, struct ec_object, eco_obj_chain);
1313 LASSERT(eco->eco_refcount == 0);
1314 eco->eco_refcount = 1;
1315 eco->eco_deleted = 1;
1316 echo_put_object(eco);
1319 rc = obd_disconnect(ec->ec_exp, 0);
1321 CERROR("fail to disconnect device: %d\n", rc);
1326 static int echo_client_connect(struct lustre_handle *conn,
1327 struct obd_device *src, struct obd_uuid *cluuid)
1329 struct obd_export *exp;
1332 rc = class_connect(conn, src, cluuid);
1334 exp = class_conn2export(conn);
1335 INIT_LIST_HEAD(&exp->exp_ec_data.eced_locks);
1336 class_export_put(exp);
1342 static int echo_client_disconnect(struct obd_export *exp, int flags)
1344 struct obd_device *obd;
1345 struct echo_client_obd *ec;
1346 struct ec_lock *ecl;
1351 GOTO(out, rc = -EINVAL);
1354 ec = &obd->u.echo_client;
1356 /* no more contention on export's lock list */
1357 while (!list_empty (&exp->exp_ec_data.eced_locks)) {
1358 ecl = list_entry (exp->exp_ec_data.eced_locks.next,
1359 struct ec_lock, ecl_exp_chain);
1360 list_del (&ecl->ecl_exp_chain);
1362 rc = obd_cancel(ec->ec_exp, ecl->ecl_object->eco_lsm,
1363 ecl->ecl_mode, &ecl->ecl_lock_handle);
1365 CDEBUG (D_INFO, "Cancel lock on object "LPX64" on disconnect "
1366 "(%d)\n", ecl->ecl_object->eco_id, rc);
1368 echo_put_object (ecl->ecl_object);
1369 OBD_FREE (ecl, sizeof (*ecl));
1372 rc = class_disconnect(exp, 0);
1378 static struct obd_ops echo_obd_ops = {
1379 o_owner: THIS_MODULE,
1380 o_setup: echo_client_setup,
1381 o_cleanup: echo_client_cleanup,
1382 o_iocontrol: echo_client_iocontrol,
1383 o_connect: echo_client_connect,
1384 o_disconnect: echo_client_disconnect
1387 int echo_client_init(void)
1389 struct lprocfs_static_vars lvars;
1391 lprocfs_init_vars(echo, &lvars);
1392 return class_register_type(&echo_obd_ops, lvars.module_vars,
1393 OBD_ECHO_CLIENT_DEVICENAME);
1396 void echo_client_exit(void)
1398 class_unregister_type(OBD_ECHO_CLIENT_DEVICENAME);