4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 only,
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License version 2 for more details (a copy is included
14 * in the LICENSE file that accompanied this code).
16 * You should have received a copy of the GNU General Public License
17 * version 2 along with this program; If not, see
18 * http://www.gnu.org/licenses/gpl-2.0.html
23 * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2011, 2017, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
30 * Lustre is a trademark of Sun Microsystems, Inc.
33 #define DEBUG_SUBSYSTEM S_LMV
35 #include <linux/file.h>
36 #include <linux/module.h>
37 #include <linux/init.h>
38 #include <linux/user_namespace.h>
39 #ifdef HAVE_UIDGID_HEADER
40 # include <linux/uidgid.h>
42 #include <linux/slab.h>
43 #include <linux/pagemap.h>
45 #include <linux/math64.h>
46 #include <linux/seq_file.h>
47 #include <linux/namei.h>
49 #include <obd_support.h>
50 #include <lustre_lib.h>
51 #include <lustre_net.h>
52 #include <obd_class.h>
53 #include <lustre_lmv.h>
54 #include <lprocfs_status.h>
55 #include <cl_object.h>
56 #include <lustre_fid.h>
57 #include <uapi/linux/lustre/lustre_ioctl.h>
58 #include <lustre_kernelcomm.h>
59 #include "lmv_internal.h"
61 static int lmv_check_connect(struct obd_device *obd);
63 static void lmv_activate_target(struct lmv_obd *lmv,
64 struct lmv_tgt_desc *tgt,
67 if (tgt->ltd_active == activate)
70 tgt->ltd_active = activate;
71 lmv->desc.ld_active_tgt_count += (activate ? 1 : -1);
73 tgt->ltd_exp->exp_obd->obd_inactive = !activate;
79 * -EINVAL : UUID can't be found in the LMV's target list
80 * -ENOTCONN: The UUID is found, but the target connection is bad (!)
81 * -EBADF : The UUID is found, but the OBD of the wrong type (!)
83 static int lmv_set_mdc_active(struct lmv_obd *lmv,
84 const struct obd_uuid *uuid,
87 struct lmv_tgt_desc *tgt = NULL;
88 struct obd_device *obd;
93 CDEBUG(D_INFO, "Searching in lmv %p for uuid %s (activate=%d)\n",
94 lmv, uuid->uuid, activate);
96 spin_lock(&lmv->lmv_lock);
97 for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
99 if (tgt == NULL || tgt->ltd_exp == NULL)
102 CDEBUG(D_INFO, "Target idx %d is %s conn %#llx\n", i,
103 tgt->ltd_uuid.uuid, tgt->ltd_exp->exp_handle.h_cookie);
105 if (obd_uuid_equals(uuid, &tgt->ltd_uuid))
109 if (i == lmv->desc.ld_tgt_count)
110 GOTO(out_lmv_lock, rc = -EINVAL);
112 obd = class_exp2obd(tgt->ltd_exp);
114 GOTO(out_lmv_lock, rc = -ENOTCONN);
116 CDEBUG(D_INFO, "Found OBD %s=%s device %d (%p) type %s at LMV idx %d\n",
117 obd->obd_name, obd->obd_uuid.uuid, obd->obd_minor, obd,
118 obd->obd_type->typ_name, i);
119 LASSERT(strcmp(obd->obd_type->typ_name, LUSTRE_MDC_NAME) == 0);
121 if (tgt->ltd_active == activate) {
122 CDEBUG(D_INFO, "OBD %p already %sactive!\n", obd,
123 activate ? "" : "in");
124 GOTO(out_lmv_lock, rc);
127 CDEBUG(D_INFO, "Marking OBD %p %sactive\n", obd,
128 activate ? "" : "in");
129 lmv_activate_target(lmv, tgt, activate);
133 spin_unlock(&lmv->lmv_lock);
137 struct obd_uuid *lmv_get_uuid(struct obd_export *exp)
139 struct lmv_obd *lmv = &exp->exp_obd->u.lmv;
140 struct lmv_tgt_desc *tgt = lmv->tgts[0];
142 return (tgt == NULL) ? NULL : obd_get_uuid(tgt->ltd_exp);
145 static int lmv_notify(struct obd_device *obd, struct obd_device *watched,
146 enum obd_notify_event ev)
148 struct obd_connect_data *conn_data;
149 struct lmv_obd *lmv = &obd->u.lmv;
150 struct obd_uuid *uuid;
154 if (strcmp(watched->obd_type->typ_name, LUSTRE_MDC_NAME)) {
155 CERROR("unexpected notification of %s %s!\n",
156 watched->obd_type->typ_name,
161 uuid = &watched->u.cli.cl_target_uuid;
162 if (ev == OBD_NOTIFY_ACTIVE || ev == OBD_NOTIFY_INACTIVE) {
164 * Set MDC as active before notifying the observer, so the
165 * observer can use the MDC normally.
167 rc = lmv_set_mdc_active(lmv, uuid,
168 ev == OBD_NOTIFY_ACTIVE);
170 CERROR("%sactivation of %s failed: %d\n",
171 ev == OBD_NOTIFY_ACTIVE ? "" : "de",
175 } else if (ev == OBD_NOTIFY_OCD) {
176 conn_data = &watched->u.cli.cl_import->imp_connect_data;
178 * XXX: Make sure that ocd_connect_flags from all targets are
179 * the same. Otherwise one of MDTs runs wrong version or
180 * something like this. --umka
182 obd->obd_self_export->exp_connect_data = *conn_data;
186 * Pass the notification up the chain.
188 if (obd->obd_observer)
189 rc = obd_notify(obd->obd_observer, watched, ev);
194 static int lmv_connect(const struct lu_env *env,
195 struct obd_export **pexp, struct obd_device *obd,
196 struct obd_uuid *cluuid, struct obd_connect_data *data,
199 struct lmv_obd *lmv = &obd->u.lmv;
200 struct lustre_handle conn = { 0 };
201 struct obd_export *exp;
205 rc = class_connect(&conn, obd, cluuid);
207 CERROR("class_connection() returned %d\n", rc);
211 exp = class_conn2export(&conn);
214 lmv->conn_data = *data;
215 lmv->lmv_cache = localdata;
217 lmv->lmv_tgts_kobj = kobject_create_and_add("target_obds",
218 &obd->obd_kset.kobj);
219 if (!lmv->lmv_tgts_kobj) {
220 CERROR("%s: cannot create /sys/fs/lustre/%s/%s/target_obds\n",
221 obd->obd_name, obd->obd_type->typ_name, obd->obd_name);
224 rc = lmv_check_connect(obd);
233 if (lmv->lmv_tgts_kobj)
234 kobject_put(lmv->lmv_tgts_kobj);
236 class_disconnect(exp);
241 static int lmv_init_ea_size(struct obd_export *exp, __u32 easize,
244 struct obd_device *obd = exp->exp_obd;
245 struct lmv_obd *lmv = &obd->u.lmv;
251 if (lmv->max_easize < easize) {
252 lmv->max_easize = easize;
255 if (lmv->max_def_easize < def_easize) {
256 lmv->max_def_easize = def_easize;
263 if (lmv->connected == 0)
266 for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
267 struct lmv_tgt_desc *tgt = lmv->tgts[i];
269 if (tgt == NULL || tgt->ltd_exp == NULL) {
270 CWARN("%s: NULL export for %d\n", obd->obd_name, i);
273 if (!tgt->ltd_active)
276 rc = md_init_ea_size(tgt->ltd_exp, easize, def_easize);
278 CERROR("%s: obd_init_ea_size() failed on MDT target %d:"
279 " rc = %d\n", obd->obd_name, i, rc);
286 #define MAX_STRING_SIZE 128
288 int lmv_connect_mdc(struct obd_device *obd, struct lmv_tgt_desc *tgt)
290 struct lmv_obd *lmv = &obd->u.lmv;
291 struct obd_device *mdc_obd;
292 struct obd_export *mdc_exp;
293 struct lu_fld_target target;
297 mdc_obd = class_find_client_obd(&tgt->ltd_uuid, LUSTRE_MDC_NAME,
300 CERROR("target %s not attached\n", tgt->ltd_uuid.uuid);
304 CDEBUG(D_CONFIG, "connect to %s(%s) - %s, %s\n",
305 mdc_obd->obd_name, mdc_obd->obd_uuid.uuid,
306 tgt->ltd_uuid.uuid, obd->obd_uuid.uuid);
308 if (!mdc_obd->obd_set_up) {
309 CERROR("target %s is not set up\n", tgt->ltd_uuid.uuid);
313 rc = obd_connect(NULL, &mdc_exp, mdc_obd, &obd->obd_uuid,
314 &lmv->conn_data, lmv->lmv_cache);
316 CERROR("target %s connect error %d\n", tgt->ltd_uuid.uuid, rc);
321 * Init fid sequence client for this mdc and add new fld target.
323 rc = obd_fid_init(mdc_obd, mdc_exp, LUSTRE_SEQ_METADATA);
327 target.ft_srv = NULL;
328 target.ft_exp = mdc_exp;
329 target.ft_idx = tgt->ltd_idx;
331 fld_client_add_target(&lmv->lmv_fld, &target);
333 rc = obd_register_observer(mdc_obd, obd);
335 obd_disconnect(mdc_exp);
336 CERROR("target %s register_observer error %d\n",
337 tgt->ltd_uuid.uuid, rc);
341 if (obd->obd_observer) {
343 * Tell the observer about the new target.
345 rc = obd_notify(obd->obd_observer, mdc_exp->exp_obd,
348 obd_disconnect(mdc_exp);
354 tgt->ltd_exp = mdc_exp;
355 lmv->desc.ld_active_tgt_count++;
357 md_init_ea_size(tgt->ltd_exp, lmv->max_easize, lmv->max_def_easize);
359 CDEBUG(D_CONFIG, "Connected to %s(%s) successfully (%d)\n",
360 mdc_obd->obd_name, mdc_obd->obd_uuid.uuid,
361 atomic_read(&obd->obd_refcount));
363 lmv_statfs_check_update(obd, tgt);
365 if (lmv->lmv_tgts_kobj)
366 /* Even if we failed to create the link, that's fine */
367 rc = sysfs_create_link(lmv->lmv_tgts_kobj,
368 &mdc_obd->obd_kset.kobj,
373 static void lmv_del_target(struct lmv_obd *lmv, int index)
375 if (lmv->tgts[index] == NULL)
378 OBD_FREE_PTR(lmv->tgts[index]);
379 lmv->tgts[index] = NULL;
383 static int lmv_add_target(struct obd_device *obd, struct obd_uuid *uuidp,
384 __u32 index, int gen)
386 struct obd_device *mdc_obd;
387 struct lmv_obd *lmv = &obd->u.lmv;
388 struct lmv_tgt_desc *tgt;
389 int orig_tgt_count = 0;
393 CDEBUG(D_CONFIG, "Target uuid: %s. index %d\n", uuidp->uuid, index);
394 mdc_obd = class_find_client_obd(uuidp, LUSTRE_MDC_NAME,
397 CERROR("%s: Target %s not attached: rc = %d\n",
398 obd->obd_name, uuidp->uuid, -EINVAL);
402 mutex_lock(&lmv->lmv_init_mutex);
403 if ((index < lmv->tgts_size) && (lmv->tgts[index] != NULL)) {
404 tgt = lmv->tgts[index];
405 CERROR("%s: UUID %s already assigned at LMV target index %d:"
406 " rc = %d\n", obd->obd_name,
407 obd_uuid2str(&tgt->ltd_uuid), index, -EEXIST);
408 mutex_unlock(&lmv->lmv_init_mutex);
412 if (index >= lmv->tgts_size) {
413 /* We need to reallocate the lmv target array. */
414 struct lmv_tgt_desc **newtgts, **old = NULL;
418 while (newsize < index + 1)
419 newsize = newsize << 1;
420 OBD_ALLOC(newtgts, sizeof(*newtgts) * newsize);
421 if (newtgts == NULL) {
422 mutex_unlock(&lmv->lmv_init_mutex);
426 if (lmv->tgts_size) {
427 memcpy(newtgts, lmv->tgts,
428 sizeof(*newtgts) * lmv->tgts_size);
430 oldsize = lmv->tgts_size;
434 lmv->tgts_size = newsize;
437 OBD_FREE(old, sizeof(*old) * oldsize);
439 CDEBUG(D_CONFIG, "tgts: %p size: %d\n", lmv->tgts,
445 mutex_unlock(&lmv->lmv_init_mutex);
449 mutex_init(&tgt->ltd_fid_mutex);
450 tgt->ltd_idx = index;
451 tgt->ltd_uuid = *uuidp;
453 lmv->tgts[index] = tgt;
454 if (index >= lmv->desc.ld_tgt_count) {
455 orig_tgt_count = lmv->desc.ld_tgt_count;
456 lmv->desc.ld_tgt_count = index + 1;
459 if (lmv->connected == 0) {
460 /* lmv_check_connect() will connect this target. */
461 mutex_unlock(&lmv->lmv_init_mutex);
465 /* Otherwise let's connect it ourselves */
466 mutex_unlock(&lmv->lmv_init_mutex);
467 rc = lmv_connect_mdc(obd, tgt);
469 spin_lock(&lmv->lmv_lock);
470 if (lmv->desc.ld_tgt_count == index + 1)
471 lmv->desc.ld_tgt_count = orig_tgt_count;
472 memset(tgt, 0, sizeof(*tgt));
473 spin_unlock(&lmv->lmv_lock);
475 int easize = sizeof(struct lmv_stripe_md) +
476 lmv->desc.ld_tgt_count * sizeof(struct lu_fid);
477 lmv_init_ea_size(obd->obd_self_export, easize, 0);
483 static int lmv_check_connect(struct obd_device *obd)
485 struct lmv_obd *lmv = &obd->u.lmv;
486 struct lmv_tgt_desc *tgt;
495 mutex_lock(&lmv->lmv_init_mutex);
496 if (lmv->connected) {
497 mutex_unlock(&lmv->lmv_init_mutex);
501 if (lmv->desc.ld_tgt_count == 0) {
502 mutex_unlock(&lmv->lmv_init_mutex);
503 CERROR("%s: no targets configured.\n", obd->obd_name);
507 LASSERT(lmv->tgts != NULL);
509 if (lmv->tgts[0] == NULL) {
510 mutex_unlock(&lmv->lmv_init_mutex);
511 CERROR("%s: no target configured for index 0.\n",
516 CDEBUG(D_CONFIG, "Time to connect %s to %s\n",
517 obd->obd_uuid.uuid, obd->obd_name);
519 for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
523 rc = lmv_connect_mdc(obd, tgt);
529 easize = lmv_mds_md_size(lmv->desc.ld_tgt_count, LMV_MAGIC);
530 lmv_init_ea_size(obd->obd_self_export, easize, 0);
531 mutex_unlock(&lmv->lmv_init_mutex);
542 --lmv->desc.ld_active_tgt_count;
543 rc2 = obd_disconnect(tgt->ltd_exp);
545 CERROR("LMV target %s disconnect on "
546 "MDC idx %d: error %d\n",
547 tgt->ltd_uuid.uuid, i, rc2);
552 mutex_unlock(&lmv->lmv_init_mutex);
557 static int lmv_disconnect_mdc(struct obd_device *obd, struct lmv_tgt_desc *tgt)
559 struct lmv_obd *lmv = &obd->u.lmv;
560 struct obd_device *mdc_obd;
564 LASSERT(tgt != NULL);
565 LASSERT(obd != NULL);
567 mdc_obd = class_exp2obd(tgt->ltd_exp);
570 mdc_obd->obd_force = obd->obd_force;
571 mdc_obd->obd_fail = obd->obd_fail;
572 mdc_obd->obd_no_recov = obd->obd_no_recov;
574 if (lmv->lmv_tgts_kobj)
575 sysfs_remove_link(lmv->lmv_tgts_kobj,
579 rc = obd_fid_fini(tgt->ltd_exp->exp_obd);
581 CERROR("Can't finanize fids factory\n");
583 CDEBUG(D_INFO, "Disconnected from %s(%s) successfully\n",
584 tgt->ltd_exp->exp_obd->obd_name,
585 tgt->ltd_exp->exp_obd->obd_uuid.uuid);
587 obd_register_observer(tgt->ltd_exp->exp_obd, NULL);
588 rc = obd_disconnect(tgt->ltd_exp);
590 if (tgt->ltd_active) {
591 CERROR("Target %s disconnect error %d\n",
592 tgt->ltd_uuid.uuid, rc);
596 lmv_activate_target(lmv, tgt, 0);
601 static int lmv_disconnect(struct obd_export *exp)
603 struct obd_device *obd = class_exp2obd(exp);
604 struct lmv_obd *lmv = &obd->u.lmv;
612 for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
613 if (lmv->tgts[i] == NULL || lmv->tgts[i]->ltd_exp == NULL)
616 lmv_disconnect_mdc(obd, lmv->tgts[i]);
619 if (lmv->lmv_tgts_kobj)
620 kobject_put(lmv->lmv_tgts_kobj);
624 * This is the case when no real connection is established by
625 * lmv_check_connect().
628 class_export_put(exp);
629 rc = class_disconnect(exp);
635 static int lmv_fid2path(struct obd_export *exp, int len, void *karg,
638 struct obd_device *obddev = class_exp2obd(exp);
639 struct lmv_obd *lmv = &obddev->u.lmv;
640 struct getinfo_fid2path *gf;
641 struct lmv_tgt_desc *tgt;
642 struct getinfo_fid2path *remote_gf = NULL;
643 struct lu_fid root_fid;
644 int remote_gf_size = 0;
648 tgt = lmv_find_target(lmv, &gf->gf_fid);
650 RETURN(PTR_ERR(tgt));
652 root_fid = *gf->gf_u.gf_root_fid;
653 LASSERT(fid_is_sane(&root_fid));
656 rc = obd_iocontrol(OBD_IOC_FID2PATH, tgt->ltd_exp, len, gf, uarg);
657 if (rc != 0 && rc != -EREMOTE)
658 GOTO(out_fid2path, rc);
660 /* If remote_gf != NULL, it means just building the
661 * path on the remote MDT, copy this path segement to gf */
662 if (remote_gf != NULL) {
663 struct getinfo_fid2path *ori_gf;
667 ori_gf = (struct getinfo_fid2path *)karg;
668 if (strlen(ori_gf->gf_u.gf_path) + 1 +
669 strlen(gf->gf_u.gf_path) + 1 > ori_gf->gf_pathlen)
670 GOTO(out_fid2path, rc = -EOVERFLOW);
672 ptr = ori_gf->gf_u.gf_path;
674 len = strlen(gf->gf_u.gf_path);
675 /* move the current path to the right to release space
676 * for closer-to-root part */
677 memmove(ptr + len + 1, ptr, strlen(ori_gf->gf_u.gf_path));
678 memcpy(ptr, gf->gf_u.gf_path, len);
682 CDEBUG(D_INFO, "%s: get path %s "DFID" rec: %llu ln: %u\n",
683 tgt->ltd_exp->exp_obd->obd_name,
684 gf->gf_u.gf_path, PFID(&gf->gf_fid), gf->gf_recno,
688 GOTO(out_fid2path, rc);
690 /* sigh, has to go to another MDT to do path building further */
691 if (remote_gf == NULL) {
692 remote_gf_size = sizeof(*remote_gf) + PATH_MAX;
693 OBD_ALLOC(remote_gf, remote_gf_size);
694 if (remote_gf == NULL)
695 GOTO(out_fid2path, rc = -ENOMEM);
696 remote_gf->gf_pathlen = PATH_MAX;
699 if (!fid_is_sane(&gf->gf_fid)) {
700 CERROR("%s: invalid FID "DFID": rc = %d\n",
701 tgt->ltd_exp->exp_obd->obd_name,
702 PFID(&gf->gf_fid), -EINVAL);
703 GOTO(out_fid2path, rc = -EINVAL);
706 tgt = lmv_find_target(lmv, &gf->gf_fid);
708 GOTO(out_fid2path, rc = -EINVAL);
710 remote_gf->gf_fid = gf->gf_fid;
711 remote_gf->gf_recno = -1;
712 remote_gf->gf_linkno = -1;
713 memset(remote_gf->gf_u.gf_path, 0, remote_gf->gf_pathlen);
714 *remote_gf->gf_u.gf_root_fid = root_fid;
716 goto repeat_fid2path;
719 if (remote_gf != NULL)
720 OBD_FREE(remote_gf, remote_gf_size);
724 static int lmv_hsm_req_count(struct lmv_obd *lmv,
725 const struct hsm_user_request *hur,
726 const struct lmv_tgt_desc *tgt_mds)
730 struct lmv_tgt_desc *curr_tgt;
732 /* count how many requests must be sent to the given target */
733 for (i = 0; i < hur->hur_request.hr_itemcount; i++) {
734 curr_tgt = lmv_find_target(lmv, &hur->hur_user_item[i].hui_fid);
735 if (IS_ERR(curr_tgt))
736 RETURN(PTR_ERR(curr_tgt));
737 if (obd_uuid_equals(&curr_tgt->ltd_uuid, &tgt_mds->ltd_uuid))
743 static int lmv_hsm_req_build(struct lmv_obd *lmv,
744 struct hsm_user_request *hur_in,
745 const struct lmv_tgt_desc *tgt_mds,
746 struct hsm_user_request *hur_out)
749 struct lmv_tgt_desc *curr_tgt;
751 /* build the hsm_user_request for the given target */
752 hur_out->hur_request = hur_in->hur_request;
754 for (i = 0; i < hur_in->hur_request.hr_itemcount; i++) {
755 curr_tgt = lmv_find_target(lmv,
756 &hur_in->hur_user_item[i].hui_fid);
757 if (IS_ERR(curr_tgt))
758 RETURN(PTR_ERR(curr_tgt));
759 if (obd_uuid_equals(&curr_tgt->ltd_uuid, &tgt_mds->ltd_uuid)) {
760 hur_out->hur_user_item[nr_out] =
761 hur_in->hur_user_item[i];
765 hur_out->hur_request.hr_itemcount = nr_out;
766 memcpy(hur_data(hur_out), hur_data(hur_in),
767 hur_in->hur_request.hr_data_len);
772 static int lmv_hsm_ct_unregister(struct obd_device *obd, unsigned int cmd,
773 int len, struct lustre_kernelcomm *lk,
776 struct lmv_obd *lmv = &obd->u.lmv;
781 /* unregister request (call from llapi_hsm_copytool_fini) */
782 for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
783 struct lmv_tgt_desc *tgt = lmv->tgts[i];
785 if (tgt == NULL || tgt->ltd_exp == NULL)
787 /* best effort: try to clean as much as possible
788 * (continue on error) */
789 obd_iocontrol(cmd, tgt->ltd_exp, len, lk, uarg);
792 /* Whatever the result, remove copytool from kuc groups.
793 * Unreached coordinators will get EPIPE on next requests
794 * and will unregister automatically.
796 rc = libcfs_kkuc_group_rem(&obd->obd_uuid, lk->lk_uid, lk->lk_group);
801 static int lmv_hsm_ct_register(struct obd_device *obd, unsigned int cmd,
802 int len, struct lustre_kernelcomm *lk,
805 struct lmv_obd *lmv = &obd->u.lmv;
809 bool any_set = false;
810 struct kkuc_ct_data *kcd;
815 filp = fget(lk->lk_wfd);
819 if (lk->lk_flags & LK_FLG_DATANR)
820 kcd_size = offsetof(struct kkuc_ct_data,
821 kcd_archives[lk->lk_data_count]);
823 kcd_size = sizeof(*kcd);
825 OBD_ALLOC(kcd, kcd_size);
827 GOTO(err_fput, rc = -ENOMEM);
829 kcd->kcd_nr_archives = lk->lk_data_count;
830 if (lk->lk_flags & LK_FLG_DATANR) {
831 kcd->kcd_magic = KKUC_CT_DATA_ARRAY_MAGIC;
832 if (lk->lk_data_count > 0)
833 memcpy(kcd->kcd_archives, lk->lk_data,
834 sizeof(*kcd->kcd_archives) * lk->lk_data_count);
836 kcd->kcd_magic = KKUC_CT_DATA_BITMAP_MAGIC;
839 rc = libcfs_kkuc_group_add(filp, &obd->obd_uuid, lk->lk_uid,
840 lk->lk_group, kcd, kcd_size);
841 OBD_FREE(kcd, kcd_size);
845 /* All or nothing: try to register to all MDS.
846 * In case of failure, unregister from previous MDS,
847 * except if it because of inactive target. */
848 for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
849 struct lmv_tgt_desc *tgt = lmv->tgts[i];
851 if (tgt == NULL || tgt->ltd_exp == NULL)
854 err = obd_iocontrol(cmd, tgt->ltd_exp, len, lk, uarg);
856 if (tgt->ltd_active) {
857 /* permanent error */
858 CERROR("%s: iocontrol MDC %s on MDT"
859 " idx %d cmd %x: err = %d\n",
860 lmv2obd_dev(lmv)->obd_name,
861 tgt->ltd_uuid.uuid, i, cmd, err);
863 lk->lk_flags |= LK_FLG_STOP;
864 /* unregister from previous MDS */
865 for (j = 0; j < i; j++) {
867 if (tgt == NULL || tgt->ltd_exp == NULL)
869 obd_iocontrol(cmd, tgt->ltd_exp, len,
872 GOTO(err_kkuc_rem, rc);
874 /* else: transient error.
875 * kuc will register to the missing MDT
883 /* no registration done: return error */
884 GOTO(err_kkuc_rem, rc = -ENOTCONN);
889 libcfs_kkuc_group_rem(&obd->obd_uuid, lk->lk_uid, lk->lk_group);
899 static int lmv_iocontrol(unsigned int cmd, struct obd_export *exp,
900 int len, void *karg, void __user *uarg)
902 struct obd_device *obddev = class_exp2obd(exp);
903 struct lmv_obd *lmv = &obddev->u.lmv;
904 struct lmv_tgt_desc *tgt = NULL;
908 __u32 count = lmv->desc.ld_tgt_count;
915 case IOC_OBD_STATFS: {
916 struct obd_ioctl_data *data = karg;
917 struct obd_device *mdc_obd;
918 struct obd_statfs stat_buf = {0};
921 memcpy(&index, data->ioc_inlbuf2, sizeof(__u32));
922 if ((index >= count))
925 tgt = lmv->tgts[index];
926 if (tgt == NULL || !tgt->ltd_active)
929 mdc_obd = class_exp2obd(tgt->ltd_exp);
934 if (copy_to_user(data->ioc_pbuf2, obd2cli_tgt(mdc_obd),
935 min((int) data->ioc_plen2,
936 (int) sizeof(struct obd_uuid))))
939 rc = obd_statfs(NULL, tgt->ltd_exp, &stat_buf,
940 ktime_get_seconds() - OBD_STATFS_CACHE_SECONDS,
944 if (copy_to_user(data->ioc_pbuf1, &stat_buf,
945 min((int) data->ioc_plen1,
946 (int) sizeof(stat_buf))))
950 case OBD_IOC_QUOTACTL: {
951 struct if_quotactl *qctl = karg;
952 struct obd_quotactl *oqctl;
954 if (qctl->qc_valid == QC_MDTIDX) {
955 if (count <= qctl->qc_idx)
958 tgt = lmv->tgts[qctl->qc_idx];
959 if (tgt == NULL || tgt->ltd_exp == NULL)
961 } else if (qctl->qc_valid == QC_UUID) {
962 for (i = 0; i < count; i++) {
966 if (!obd_uuid_equals(&tgt->ltd_uuid,
970 if (tgt->ltd_exp == NULL)
982 LASSERT(tgt != NULL && tgt->ltd_exp != NULL);
983 OBD_ALLOC_PTR(oqctl);
987 QCTL_COPY(oqctl, qctl);
988 rc = obd_quotactl(tgt->ltd_exp, oqctl);
990 QCTL_COPY(qctl, oqctl);
991 qctl->qc_valid = QC_MDTIDX;
992 qctl->obd_uuid = tgt->ltd_uuid;
997 case LL_IOC_GET_CONNECT_FLAGS: {
999 if (tgt == NULL || tgt->ltd_exp == NULL)
1001 rc = obd_iocontrol(cmd, tgt->ltd_exp, len, karg, uarg);
1004 case LL_IOC_FID2MDTIDX: {
1005 struct lu_fid *fid = karg;
1008 rc = lmv_fld_lookup(lmv, fid, &mdt_index);
1012 /* Note: this is from llite(see ll_dir_ioctl()), @uarg does not
1013 * point to user space memory for FID2MDTIDX. */
1014 *(__u32 *)uarg = mdt_index;
1017 case OBD_IOC_FID2PATH: {
1018 rc = lmv_fid2path(exp, len, karg, uarg);
1021 case LL_IOC_HSM_STATE_GET:
1022 case LL_IOC_HSM_STATE_SET:
1023 case LL_IOC_HSM_ACTION: {
1024 struct md_op_data *op_data = karg;
1026 tgt = lmv_find_target(lmv, &op_data->op_fid1);
1028 RETURN(PTR_ERR(tgt));
1030 if (tgt->ltd_exp == NULL)
1033 rc = obd_iocontrol(cmd, tgt->ltd_exp, len, karg, uarg);
1036 case LL_IOC_HSM_PROGRESS: {
1037 const struct hsm_progress_kernel *hpk = karg;
1039 tgt = lmv_find_target(lmv, &hpk->hpk_fid);
1041 RETURN(PTR_ERR(tgt));
1042 rc = obd_iocontrol(cmd, tgt->ltd_exp, len, karg, uarg);
1045 case LL_IOC_HSM_REQUEST: {
1046 struct hsm_user_request *hur = karg;
1047 unsigned int reqcount = hur->hur_request.hr_itemcount;
1052 /* if the request is about a single fid
1053 * or if there is a single MDS, no need to split
1055 if (reqcount == 1 || count == 1) {
1056 tgt = lmv_find_target(lmv,
1057 &hur->hur_user_item[0].hui_fid);
1059 RETURN(PTR_ERR(tgt));
1060 rc = obd_iocontrol(cmd, tgt->ltd_exp, len, karg, uarg);
1062 /* split fid list to their respective MDS */
1063 for (i = 0; i < count; i++) {
1066 struct hsm_user_request *req;
1069 if (tgt == NULL || tgt->ltd_exp == NULL)
1072 nr = lmv_hsm_req_count(lmv, hur, tgt);
1075 if (nr == 0) /* nothing for this MDS */
1078 /* build a request with fids for this MDS */
1079 reqlen = offsetof(typeof(*hur),
1081 + hur->hur_request.hr_data_len;
1082 OBD_ALLOC_LARGE(req, reqlen);
1085 rc1 = lmv_hsm_req_build(lmv, hur, tgt, req);
1087 GOTO(hsm_req_err, rc1);
1088 rc1 = obd_iocontrol(cmd, tgt->ltd_exp, reqlen,
1091 if (rc1 != 0 && rc == 0)
1093 OBD_FREE_LARGE(req, reqlen);
1098 case LL_IOC_LOV_SWAP_LAYOUTS: {
1099 struct md_op_data *op_data = karg;
1100 struct lmv_tgt_desc *tgt1, *tgt2;
1102 tgt1 = lmv_find_target(lmv, &op_data->op_fid1);
1104 RETURN(PTR_ERR(tgt1));
1106 tgt2 = lmv_find_target(lmv, &op_data->op_fid2);
1108 RETURN(PTR_ERR(tgt2));
1110 if ((tgt1->ltd_exp == NULL) || (tgt2->ltd_exp == NULL))
1113 /* only files on same MDT can have their layouts swapped */
1114 if (tgt1->ltd_idx != tgt2->ltd_idx)
1117 rc = obd_iocontrol(cmd, tgt1->ltd_exp, len, karg, uarg);
1120 case LL_IOC_HSM_CT_START: {
1121 struct lustre_kernelcomm *lk = karg;
1122 if (lk->lk_flags & LK_FLG_STOP)
1123 rc = lmv_hsm_ct_unregister(obddev, cmd, len, lk, uarg);
1125 rc = lmv_hsm_ct_register(obddev, cmd, len, lk, uarg);
1129 for (i = 0; i < count; i++) {
1130 struct obd_device *mdc_obd;
1134 if (tgt == NULL || tgt->ltd_exp == NULL)
1136 /* ll_umount_begin() sets force flag but for lmv, not
1137 * mdc. Let's pass it through */
1138 mdc_obd = class_exp2obd(tgt->ltd_exp);
1139 mdc_obd->obd_force = obddev->obd_force;
1140 err = obd_iocontrol(cmd, tgt->ltd_exp, len, karg, uarg);
1142 if (tgt->ltd_active) {
1143 CERROR("error: iocontrol MDC %s on MDT"
1144 " idx %d cmd %x: err = %d\n",
1145 tgt->ltd_uuid.uuid, i, cmd, err);
1159 * This is _inode_ placement policy function (not name).
1161 static int lmv_placement_policy(struct obd_device *obd,
1162 struct md_op_data *op_data, u32 *mds)
1164 struct lmv_obd *lmv = &obd->u.lmv;
1165 struct lmv_user_md *lum;
1169 LASSERT(mds != NULL);
1171 if (lmv->desc.ld_tgt_count == 1) {
1176 lum = op_data->op_data;
1178 * 1. See if the stripe offset is specified by lum.
1179 * 2. Then check if there is default stripe offset.
1180 * 3. Finally choose MDS by name hash if the parent
1181 * is striped directory. (see lmv_locate_tgt()).
1183 * presently explicit MDT location is not supported
1184 * for foreign dirs (as it can't be embedded into free
1185 * format LMV, like with lum_stripe_offset), so we only
1186 * rely on default stripe offset or then name hashing.
1188 if (op_data->op_cli_flags & CLI_SET_MEA && lum != NULL &&
1189 le32_to_cpu(lum->lum_magic != LMV_MAGIC_FOREIGN) &&
1190 le32_to_cpu(lum->lum_stripe_offset) != (__u32)-1) {
1191 *mds = le32_to_cpu(lum->lum_stripe_offset);
1192 } else if (op_data->op_code == LUSTRE_OPC_MKDIR &&
1193 op_data->op_default_mea1 &&
1194 op_data->op_default_mea1->lsm_md_master_mdt_index !=
1196 *mds = op_data->op_default_mea1->lsm_md_master_mdt_index;
1197 op_data->op_mds = *mds;
1199 *mds = op_data->op_mds;
1205 int __lmv_fid_alloc(struct lmv_obd *lmv, struct lu_fid *fid, u32 mds)
1207 struct lmv_tgt_desc *tgt;
1211 tgt = lmv_get_target(lmv, mds, NULL);
1213 RETURN(PTR_ERR(tgt));
1216 * New seq alloc and FLD setup should be atomic. Otherwise we may find
1217 * on server that seq in new allocated fid is not yet known.
1219 mutex_lock(&tgt->ltd_fid_mutex);
1221 if (tgt->ltd_active == 0 || tgt->ltd_exp == NULL)
1222 GOTO(out, rc = -ENODEV);
1225 * Asking underlying tgt layer to allocate new fid.
1227 rc = obd_fid_alloc(NULL, tgt->ltd_exp, fid, NULL);
1229 LASSERT(fid_is_sane(fid));
1235 mutex_unlock(&tgt->ltd_fid_mutex);
1239 int lmv_fid_alloc(const struct lu_env *env, struct obd_export *exp,
1240 struct lu_fid *fid, struct md_op_data *op_data)
1242 struct obd_device *obd = class_exp2obd(exp);
1243 struct lmv_obd *lmv = &obd->u.lmv;
1248 LASSERT(op_data != NULL);
1249 LASSERT(fid != NULL);
1251 rc = lmv_placement_policy(obd, op_data, &mds);
1253 CERROR("Can't get target for allocating fid, "
1258 rc = __lmv_fid_alloc(lmv, fid, mds);
1260 CERROR("Can't alloc new fid, rc %d\n", rc);
1267 static int lmv_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
1269 struct lmv_obd *lmv = &obd->u.lmv;
1270 struct lmv_desc *desc;
1274 if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1) {
1275 CERROR("LMV setup requires a descriptor\n");
1279 desc = (struct lmv_desc *)lustre_cfg_buf(lcfg, 1);
1280 if (sizeof(*desc) > LUSTRE_CFG_BUFLEN(lcfg, 1)) {
1281 CERROR("Lmv descriptor size wrong: %d > %d\n",
1282 (int)sizeof(*desc), LUSTRE_CFG_BUFLEN(lcfg, 1));
1286 lmv->tgts_size = 32U;
1287 OBD_ALLOC(lmv->tgts, sizeof(*lmv->tgts) * lmv->tgts_size);
1288 if (lmv->tgts == NULL)
1291 obd_str2uuid(&lmv->desc.ld_uuid, desc->ld_uuid.uuid);
1292 lmv->desc.ld_tgt_count = 0;
1293 lmv->desc.ld_active_tgt_count = 0;
1294 lmv->desc.ld_qos_maxage = 60;
1295 lmv->max_def_easize = 0;
1296 lmv->max_easize = 0;
1298 spin_lock_init(&lmv->lmv_lock);
1299 mutex_init(&lmv->lmv_init_mutex);
1301 rc = lmv_tunables_init(obd);
1303 CWARN("%s: error adding LMV sysfs/debugfs files: rc = %d\n",
1306 rc = fld_client_init(&lmv->lmv_fld, obd->obd_name,
1307 LUSTRE_CLI_FLD_HASH_DHT);
1309 CERROR("Can't init FLD, err %d\n", rc);
1319 static int lmv_cleanup(struct obd_device *obd)
1321 struct lmv_obd *lmv = &obd->u.lmv;
1324 fld_client_fini(&lmv->lmv_fld);
1325 if (lmv->tgts != NULL) {
1327 for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
1328 if (lmv->tgts[i] == NULL)
1330 lmv_del_target(lmv, i);
1332 OBD_FREE(lmv->tgts, sizeof(*lmv->tgts) * lmv->tgts_size);
1338 static int lmv_process_config(struct obd_device *obd, size_t len, void *buf)
1340 struct lustre_cfg *lcfg = buf;
1341 struct obd_uuid obd_uuid;
1347 switch (lcfg->lcfg_command) {
1349 /* modify_mdc_tgts add 0:lustre-clilmv 1:lustre-MDT0000_UUID
1350 * 2:0 3:1 4:lustre-MDT0000-mdc_UUID */
1351 if (LUSTRE_CFG_BUFLEN(lcfg, 1) > sizeof(obd_uuid.uuid))
1352 GOTO(out, rc = -EINVAL);
1354 obd_str2uuid(&obd_uuid, lustre_cfg_buf(lcfg, 1));
1356 if (sscanf(lustre_cfg_buf(lcfg, 2), "%u", &index) != 1)
1357 GOTO(out, rc = -EINVAL);
1358 if (sscanf(lustre_cfg_buf(lcfg, 3), "%d", &gen) != 1)
1359 GOTO(out, rc = -EINVAL);
1360 rc = lmv_add_target(obd, &obd_uuid, index, gen);
1363 CERROR("Unknown command: %d\n", lcfg->lcfg_command);
1364 GOTO(out, rc = -EINVAL);
1370 static int lmv_select_statfs_mdt(struct lmv_obd *lmv, __u32 flags)
1374 if (flags & OBD_STATFS_FOR_MDT0)
1377 if (lmv->lmv_statfs_start || lmv->desc.ld_tgt_count == 1)
1378 return lmv->lmv_statfs_start;
1380 /* choose initial MDT for this client */
1382 struct lnet_process_id lnet_id;
1383 if (LNetGetId(i, &lnet_id) == -ENOENT)
1386 if (LNET_NETTYP(LNET_NIDNET(lnet_id.nid)) != LOLND) {
1387 /* We dont need a full 64-bit modulus, just enough
1388 * to distribute the requests across MDTs evenly.
1390 lmv->lmv_statfs_start =
1391 (u32)lnet_id.nid % lmv->desc.ld_tgt_count;
1396 return lmv->lmv_statfs_start;
1399 static int lmv_statfs(const struct lu_env *env, struct obd_export *exp,
1400 struct obd_statfs *osfs, time64_t max_age, __u32 flags)
1402 struct obd_device *obd = class_exp2obd(exp);
1403 struct lmv_obd *lmv = &obd->u.lmv;
1404 struct obd_statfs *temp;
1409 OBD_ALLOC(temp, sizeof(*temp));
1413 /* distribute statfs among MDTs */
1414 idx = lmv_select_statfs_mdt(lmv, flags);
1416 for (i = 0; i < lmv->desc.ld_tgt_count; i++, idx++) {
1417 idx = idx % lmv->desc.ld_tgt_count;
1418 if (lmv->tgts[idx] == NULL || lmv->tgts[idx]->ltd_exp == NULL)
1421 rc = obd_statfs(env, lmv->tgts[idx]->ltd_exp, temp,
1424 CERROR("%s: can't stat MDS #%d: rc = %d\n",
1425 lmv->tgts[idx]->ltd_exp->exp_obd->obd_name, i,
1427 GOTO(out_free_temp, rc);
1430 if (temp->os_state & OS_STATE_SUM ||
1431 flags == OBD_STATFS_FOR_MDT0) {
1432 /* reset to the last aggregated values
1433 * and don't sum with non-aggrated data */
1434 /* If the statfs is from mount, it needs to retrieve
1435 * necessary information from MDT0. i.e. mount does
1436 * not need the merged osfs from all of MDT. Also
1437 * clients can be mounted as long as MDT0 is in
1446 osfs->os_bavail += temp->os_bavail;
1447 osfs->os_blocks += temp->os_blocks;
1448 osfs->os_ffree += temp->os_ffree;
1449 osfs->os_files += temp->os_files;
1450 osfs->os_granted += temp->os_granted;
1456 OBD_FREE(temp, sizeof(*temp));
1460 static int lmv_statfs_update(void *cookie, int rc)
1462 struct obd_info *oinfo = cookie;
1463 struct obd_device *obd = oinfo->oi_obd;
1464 struct lmv_obd *lmv = &obd->u.lmv;
1465 struct lmv_tgt_desc *tgt = oinfo->oi_tgt;
1466 struct obd_statfs *osfs = oinfo->oi_osfs;
1469 * NB: don't deactivate TGT upon error, because we may not trigger async
1470 * statfs any longer, then there is no chance to activate TGT.
1473 spin_lock(&lmv->lmv_lock);
1474 tgt->ltd_statfs = *osfs;
1475 tgt->ltd_statfs_age = ktime_get_seconds();
1476 spin_unlock(&lmv->lmv_lock);
1482 /* update tgt statfs async if it's ld_qos_maxage old */
1483 int lmv_statfs_check_update(struct obd_device *obd, struct lmv_tgt_desc *tgt)
1485 struct obd_info oinfo = {
1488 .oi_cb_up = lmv_statfs_update,
1492 if (ktime_get_seconds() - tgt->ltd_statfs_age <
1493 obd->u.lmv.desc.ld_qos_maxage)
1496 rc = obd_statfs_async(tgt->ltd_exp, &oinfo, 0, NULL);
1501 static int lmv_get_root(struct obd_export *exp, const char *fileset,
1504 struct obd_device *obd = exp->exp_obd;
1505 struct lmv_obd *lmv = &obd->u.lmv;
1509 rc = md_get_root(lmv->tgts[0]->ltd_exp, fileset, fid);
1513 static int lmv_getxattr(struct obd_export *exp, const struct lu_fid *fid,
1514 u64 obd_md_valid, const char *name, size_t buf_size,
1515 struct ptlrpc_request **req)
1517 struct obd_device *obd = exp->exp_obd;
1518 struct lmv_obd *lmv = &obd->u.lmv;
1519 struct lmv_tgt_desc *tgt;
1523 tgt = lmv_find_target(lmv, fid);
1525 RETURN(PTR_ERR(tgt));
1527 rc = md_getxattr(tgt->ltd_exp, fid, obd_md_valid, name, buf_size, req);
1532 static int lmv_setxattr(struct obd_export *exp, const struct lu_fid *fid,
1533 u64 obd_md_valid, const char *name,
1534 const void *value, size_t value_size,
1535 unsigned int xattr_flags, u32 suppgid,
1536 struct ptlrpc_request **req)
1538 struct obd_device *obd = exp->exp_obd;
1539 struct lmv_obd *lmv = &obd->u.lmv;
1540 struct lmv_tgt_desc *tgt;
1544 tgt = lmv_find_target(lmv, fid);
1546 RETURN(PTR_ERR(tgt));
1548 rc = md_setxattr(tgt->ltd_exp, fid, obd_md_valid, name,
1549 value, value_size, xattr_flags, suppgid, req);
1554 static int lmv_getattr(struct obd_export *exp, struct md_op_data *op_data,
1555 struct ptlrpc_request **request)
1557 struct obd_device *obd = exp->exp_obd;
1558 struct lmv_obd *lmv = &obd->u.lmv;
1559 struct lmv_tgt_desc *tgt;
1563 tgt = lmv_find_target(lmv, &op_data->op_fid1);
1565 RETURN(PTR_ERR(tgt));
1567 if (op_data->op_flags & MF_GET_MDT_IDX) {
1568 op_data->op_mds = tgt->ltd_idx;
1572 rc = md_getattr(tgt->ltd_exp, op_data, request);
1577 static int lmv_null_inode(struct obd_export *exp, const struct lu_fid *fid)
1579 struct obd_device *obd = exp->exp_obd;
1580 struct lmv_obd *lmv = &obd->u.lmv;
1584 CDEBUG(D_INODE, "CBDATA for "DFID"\n", PFID(fid));
1587 * With DNE every object can have two locks in different namespaces:
1588 * lookup lock in space of MDT storing direntry and update/open lock in
1589 * space of MDT storing inode.
1591 for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
1592 if (lmv->tgts[i] == NULL || lmv->tgts[i]->ltd_exp == NULL)
1594 md_null_inode(lmv->tgts[i]->ltd_exp, fid);
1600 static int lmv_close(struct obd_export *exp, struct md_op_data *op_data,
1601 struct md_open_data *mod, struct ptlrpc_request **request)
1603 struct obd_device *obd = exp->exp_obd;
1604 struct lmv_obd *lmv = &obd->u.lmv;
1605 struct lmv_tgt_desc *tgt;
1609 tgt = lmv_find_target(lmv, &op_data->op_fid1);
1611 RETURN(PTR_ERR(tgt));
1613 CDEBUG(D_INODE, "CLOSE "DFID"\n", PFID(&op_data->op_fid1));
1614 rc = md_close(tgt->ltd_exp, op_data, mod, request);
1618 struct lmv_tgt_desc*
1619 __lmv_locate_tgt(struct lmv_obd *lmv, struct lmv_stripe_md *lsm,
1620 const char *name, int namelen, struct lu_fid *fid, u32 *mds,
1623 struct lmv_tgt_desc *tgt;
1624 const struct lmv_oinfo *oinfo;
1626 if (lsm == NULL || namelen == 0) {
1627 tgt = lmv_find_target(lmv, fid);
1632 *mds = tgt->ltd_idx;
1636 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_NAME_HASH)) {
1637 if (cfs_fail_val >= lsm->lsm_md_stripe_count)
1638 return ERR_PTR(-EBADF);
1639 oinfo = &lsm->lsm_md_oinfo[cfs_fail_val];
1641 oinfo = lsm_name_to_stripe_info(lsm, name, namelen,
1644 return ERR_CAST(oinfo);
1648 *fid = oinfo->lmo_fid;
1650 *mds = oinfo->lmo_mds;
1652 tgt = lmv_get_target(lmv, oinfo->lmo_mds, NULL);
1654 CDEBUG(D_INFO, "locate on mds %u "DFID"\n", oinfo->lmo_mds,
1655 PFID(&oinfo->lmo_fid));
1662 * Locate mdt by fid or name
1664 * For striped directory, it will locate the stripe by name hash, if hash_type
1665 * is unknown, it will return the stripe specified by 'op_data->op_stripe_index'
1666 * which is set outside, and if dir is migrating, 'op_data->op_post_migrate'
1667 * indicates whether old or new layout is used to locate.
1669 * For normal direcotry, it will locate MDS by FID directly.
1671 * \param[in] lmv LMV device
1672 * \param[in] op_data client MD stack parameters, name, namelen
1674 * \param[in] fid object FID used to locate MDS.
1676 * retval pointer to the lmv_tgt_desc if succeed.
1677 * ERR_PTR(errno) if failed.
1679 struct lmv_tgt_desc*
1680 lmv_locate_tgt(struct lmv_obd *lmv, struct md_op_data *op_data,
1683 struct lmv_stripe_md *lsm = op_data->op_mea1;
1684 struct lmv_oinfo *oinfo;
1685 struct lmv_tgt_desc *tgt;
1687 /* foreign dir is not striped dir */
1688 if (lsm && lsm->lsm_md_magic == LMV_MAGIC_FOREIGN)
1689 return ERR_PTR(-ENODATA);
1691 /* During creating VOLATILE file, it should honor the mdt
1692 * index if the file under striped dir is being restored, see
1694 if (op_data->op_bias & MDS_CREATE_VOLATILE &&
1695 (int)op_data->op_mds != -1) {
1696 tgt = lmv_get_target(lmv, op_data->op_mds, NULL);
1703 /* refill the right parent fid */
1704 for (i = 0; i < lsm->lsm_md_stripe_count; i++) {
1705 oinfo = &lsm->lsm_md_oinfo[i];
1706 if (oinfo->lmo_mds == op_data->op_mds) {
1707 *fid = oinfo->lmo_fid;
1712 if (i == lsm->lsm_md_stripe_count)
1713 *fid = lsm->lsm_md_oinfo[0].lmo_fid;
1715 } else if (lmv_is_dir_bad_hash(lsm)) {
1716 LASSERT(op_data->op_stripe_index < lsm->lsm_md_stripe_count);
1717 oinfo = &lsm->lsm_md_oinfo[op_data->op_stripe_index];
1719 *fid = oinfo->lmo_fid;
1720 op_data->op_mds = oinfo->lmo_mds;
1721 tgt = lmv_get_target(lmv, oinfo->lmo_mds, NULL);
1723 tgt = __lmv_locate_tgt(lmv, lsm, op_data->op_name,
1724 op_data->op_namelen, fid,
1726 op_data->op_post_migrate);
1732 int lmv_create(struct obd_export *exp, struct md_op_data *op_data,
1733 const void *data, size_t datalen, umode_t mode, uid_t uid,
1734 gid_t gid, cfs_cap_t cap_effective, __u64 rdev,
1735 struct ptlrpc_request **request)
1737 struct obd_device *obd = exp->exp_obd;
1738 struct lmv_obd *lmv = &obd->u.lmv;
1739 struct lmv_tgt_desc *tgt;
1743 if (!lmv->desc.ld_active_tgt_count)
1746 if (lmv_is_dir_bad_hash(op_data->op_mea1))
1749 if (lmv_is_dir_migrating(op_data->op_mea1)) {
1751 * if parent is migrating, create() needs to lookup existing
1752 * name, to avoid creating new file under old layout of
1753 * migrating directory, check old layout here.
1755 tgt = lmv_locate_tgt(lmv, op_data, &op_data->op_fid1);
1757 RETURN(PTR_ERR(tgt));
1759 rc = md_getattr_name(tgt->ltd_exp, op_data, request);
1761 ptlrpc_req_finished(*request);
1769 op_data->op_post_migrate = true;
1772 tgt = lmv_locate_tgt(lmv, op_data, &op_data->op_fid1);
1774 RETURN(PTR_ERR(tgt));
1776 CDEBUG(D_INODE, "CREATE name '%.*s' on "DFID" -> mds #%x\n",
1777 (int)op_data->op_namelen, op_data->op_name,
1778 PFID(&op_data->op_fid1), op_data->op_mds);
1780 rc = lmv_fid_alloc(NULL, exp, &op_data->op_fid2, op_data);
1784 if (exp_connect_flags(exp) & OBD_CONNECT_DIR_STRIPE) {
1785 /* Send the create request to the MDT where the object
1786 * will be located */
1787 tgt = lmv_find_target(lmv, &op_data->op_fid2);
1789 RETURN(PTR_ERR(tgt));
1791 op_data->op_mds = tgt->ltd_idx;
1793 CDEBUG(D_CONFIG, "Server doesn't support striped dirs\n");
1796 CDEBUG(D_INODE, "CREATE obj "DFID" -> mds #%x\n",
1797 PFID(&op_data->op_fid2), op_data->op_mds);
1799 op_data->op_flags |= MF_MDC_CANCEL_FID1;
1800 rc = md_create(tgt->ltd_exp, op_data, data, datalen, mode, uid, gid,
1801 cap_effective, rdev, request);
1803 if (*request == NULL)
1805 CDEBUG(D_INODE, "Created - "DFID"\n", PFID(&op_data->op_fid2));
1811 lmv_enqueue(struct obd_export *exp, struct ldlm_enqueue_info *einfo,
1812 const union ldlm_policy_data *policy, struct md_op_data *op_data,
1813 struct lustre_handle *lockh, __u64 extra_lock_flags)
1815 struct obd_device *obd = exp->exp_obd;
1816 struct lmv_obd *lmv = &obd->u.lmv;
1817 struct lmv_tgt_desc *tgt;
1821 CDEBUG(D_INODE, "ENQUEUE on "DFID"\n", PFID(&op_data->op_fid1));
1823 tgt = lmv_find_target(lmv, &op_data->op_fid1);
1825 RETURN(PTR_ERR(tgt));
1827 CDEBUG(D_INODE, "ENQUEUE on "DFID" -> mds #%u\n",
1828 PFID(&op_data->op_fid1), tgt->ltd_idx);
1830 rc = md_enqueue(tgt->ltd_exp, einfo, policy, op_data, lockh,
1837 lmv_getattr_name(struct obd_export *exp,struct md_op_data *op_data,
1838 struct ptlrpc_request **preq)
1840 struct obd_device *obd = exp->exp_obd;
1841 struct lmv_obd *lmv = &obd->u.lmv;
1842 struct lmv_tgt_desc *tgt;
1843 struct mdt_body *body;
1849 tgt = lmv_locate_tgt(lmv, op_data, &op_data->op_fid1);
1851 RETURN(PTR_ERR(tgt));
1853 CDEBUG(D_INODE, "GETATTR_NAME for %*s on "DFID" -> mds #%d\n",
1854 (int)op_data->op_namelen, op_data->op_name,
1855 PFID(&op_data->op_fid1), tgt->ltd_idx);
1857 rc = md_getattr_name(tgt->ltd_exp, op_data, preq);
1858 if (rc == -ENOENT && lmv_dir_retry_check_update(op_data)) {
1859 ptlrpc_req_finished(*preq);
1867 body = req_capsule_server_get(&(*preq)->rq_pill, &RMF_MDT_BODY);
1868 LASSERT(body != NULL);
1870 if (body->mbo_valid & OBD_MD_MDS) {
1871 op_data->op_fid1 = body->mbo_fid1;
1872 op_data->op_valid |= OBD_MD_FLCROSSREF;
1873 op_data->op_namelen = 0;
1874 op_data->op_name = NULL;
1876 ptlrpc_req_finished(*preq);
1885 #define md_op_data_fid(op_data, fl) \
1886 (fl == MF_MDC_CANCEL_FID1 ? &op_data->op_fid1 : \
1887 fl == MF_MDC_CANCEL_FID2 ? &op_data->op_fid2 : \
1888 fl == MF_MDC_CANCEL_FID3 ? &op_data->op_fid3 : \
1889 fl == MF_MDC_CANCEL_FID4 ? &op_data->op_fid4 : \
1892 static int lmv_early_cancel(struct obd_export *exp, struct lmv_tgt_desc *tgt,
1893 struct md_op_data *op_data, __u32 op_tgt,
1894 enum ldlm_mode mode, int bits, int flag)
1896 struct lu_fid *fid = md_op_data_fid(op_data, flag);
1897 struct lmv_obd *lmv = &exp->exp_obd->u.lmv;
1898 union ldlm_policy_data policy = { { 0 } };
1902 if (!fid_is_sane(fid))
1906 tgt = lmv_find_target(lmv, fid);
1908 RETURN(PTR_ERR(tgt));
1911 if (tgt->ltd_idx != op_tgt) {
1912 CDEBUG(D_INODE, "EARLY_CANCEL on "DFID"\n", PFID(fid));
1913 policy.l_inodebits.bits = bits;
1914 rc = md_cancel_unused(tgt->ltd_exp, fid, &policy,
1915 mode, LCF_ASYNC, NULL);
1918 "EARLY_CANCEL skip operation target %d on "DFID"\n",
1920 op_data->op_flags |= flag;
1928 * llite passes fid of an target inode in op_data->op_fid1 and id of directory in
1931 static int lmv_link(struct obd_export *exp, struct md_op_data *op_data,
1932 struct ptlrpc_request **request)
1934 struct obd_device *obd = exp->exp_obd;
1935 struct lmv_obd *lmv = &obd->u.lmv;
1936 struct lmv_tgt_desc *tgt;
1940 LASSERT(op_data->op_namelen != 0);
1942 CDEBUG(D_INODE, "LINK "DFID":%*s to "DFID"\n",
1943 PFID(&op_data->op_fid2), (int)op_data->op_namelen,
1944 op_data->op_name, PFID(&op_data->op_fid1));
1946 op_data->op_fsuid = from_kuid(&init_user_ns, current_fsuid());
1947 op_data->op_fsgid = from_kgid(&init_user_ns, current_fsgid());
1948 op_data->op_cap = cfs_curproc_cap_pack();
1950 if (lmv_is_dir_migrating(op_data->op_mea2)) {
1951 struct lu_fid fid1 = op_data->op_fid1;
1952 struct lmv_stripe_md *lsm1 = op_data->op_mea1;
1955 * avoid creating new file under old layout of migrating
1956 * directory, check it here.
1958 tgt = __lmv_locate_tgt(lmv, op_data->op_mea2, op_data->op_name,
1959 op_data->op_namelen, &op_data->op_fid2,
1960 &op_data->op_mds, false);
1961 tgt = lmv_locate_tgt(lmv, op_data, &op_data->op_fid1);
1963 RETURN(PTR_ERR(tgt));
1965 op_data->op_fid1 = op_data->op_fid2;
1966 op_data->op_mea1 = op_data->op_mea2;
1967 rc = md_getattr_name(tgt->ltd_exp, op_data, request);
1968 op_data->op_fid1 = fid1;
1969 op_data->op_mea1 = lsm1;
1971 ptlrpc_req_finished(*request);
1980 tgt = __lmv_locate_tgt(lmv, op_data->op_mea2, op_data->op_name,
1981 op_data->op_namelen, &op_data->op_fid2,
1982 &op_data->op_mds, true);
1984 RETURN(PTR_ERR(tgt));
1987 * Cancel UPDATE lock on child (fid1).
1989 op_data->op_flags |= MF_MDC_CANCEL_FID2;
1990 rc = lmv_early_cancel(exp, NULL, op_data, tgt->ltd_idx, LCK_EX,
1991 MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID1);
1995 rc = md_link(tgt->ltd_exp, op_data, request);
2000 static int lmv_migrate(struct obd_export *exp, struct md_op_data *op_data,
2001 const char *name, size_t namelen,
2002 struct ptlrpc_request **request)
2004 struct obd_device *obd = exp->exp_obd;
2005 struct lmv_obd *lmv = &obd->u.lmv;
2006 struct lmv_stripe_md *lsm = op_data->op_mea1;
2007 struct lmv_tgt_desc *parent_tgt;
2008 struct lmv_tgt_desc *sp_tgt;
2009 struct lmv_tgt_desc *tp_tgt = NULL;
2010 struct lmv_tgt_desc *child_tgt;
2011 struct lmv_tgt_desc *tgt;
2012 struct lu_fid target_fid;
2017 LASSERT(op_data->op_cli_flags & CLI_MIGRATE);
2019 CDEBUG(D_INODE, "MIGRATE "DFID"/%.*s\n",
2020 PFID(&op_data->op_fid1), (int)namelen, name);
2022 op_data->op_fsuid = from_kuid(&init_user_ns, current_fsuid());
2023 op_data->op_fsgid = from_kgid(&init_user_ns, current_fsgid());
2024 op_data->op_cap = cfs_curproc_cap_pack();
2026 parent_tgt = lmv_find_target(lmv, &op_data->op_fid1);
2027 if (IS_ERR(parent_tgt))
2028 RETURN(PTR_ERR(parent_tgt));
2031 __u32 hash_type = lsm->lsm_md_hash_type;
2032 __u32 stripe_count = lsm->lsm_md_stripe_count;
2035 * old stripes are appended after new stripes for migrating
2038 if (lsm->lsm_md_hash_type & LMV_HASH_FLAG_MIGRATION) {
2039 hash_type = lsm->lsm_md_migrate_hash;
2040 stripe_count -= lsm->lsm_md_migrate_offset;
2043 rc = lmv_name_to_stripe_index(hash_type, stripe_count, name,
2048 if (lsm->lsm_md_hash_type & LMV_HASH_FLAG_MIGRATION)
2049 rc += lsm->lsm_md_migrate_offset;
2051 /* save it in fid4 temporarily for early cancel */
2052 op_data->op_fid4 = lsm->lsm_md_oinfo[rc].lmo_fid;
2053 sp_tgt = lmv_get_target(lmv, lsm->lsm_md_oinfo[rc].lmo_mds,
2056 RETURN(PTR_ERR(sp_tgt));
2059 * if parent is being migrated too, fill op_fid2 with target
2060 * stripe fid, otherwise the target stripe is not created yet.
2062 if (lsm->lsm_md_hash_type & LMV_HASH_FLAG_MIGRATION) {
2063 hash_type = lsm->lsm_md_hash_type &
2064 ~LMV_HASH_FLAG_MIGRATION;
2065 stripe_count = lsm->lsm_md_migrate_offset;
2067 rc = lmv_name_to_stripe_index(hash_type, stripe_count,
2072 op_data->op_fid2 = lsm->lsm_md_oinfo[rc].lmo_fid;
2073 tp_tgt = lmv_get_target(lmv,
2074 lsm->lsm_md_oinfo[rc].lmo_mds,
2077 RETURN(PTR_ERR(tp_tgt));
2080 sp_tgt = parent_tgt;
2083 child_tgt = lmv_find_target(lmv, &op_data->op_fid3);
2084 if (IS_ERR(child_tgt))
2085 RETURN(PTR_ERR(child_tgt));
2087 if (!S_ISDIR(op_data->op_mode) && tp_tgt)
2088 rc = __lmv_fid_alloc(lmv, &target_fid, tp_tgt->ltd_idx);
2090 rc = lmv_fid_alloc(NULL, exp, &target_fid, op_data);
2095 * for directory, send migrate request to the MDT where the object will
2096 * be migrated to, because we can't create a striped directory remotely.
2098 * otherwise, send to the MDT where source is located because regular
2099 * file may open lease.
2101 * NB. if MDT doesn't support DIR_MIGRATE, send to source MDT too for
2102 * backward compatibility.
2104 if (S_ISDIR(op_data->op_mode) &&
2105 (exp_connect_flags2(exp) & OBD_CONNECT2_DIR_MIGRATE)) {
2106 tgt = lmv_find_target(lmv, &target_fid);
2108 RETURN(PTR_ERR(tgt));
2113 /* cancel UPDATE lock of parent master object */
2114 rc = lmv_early_cancel(exp, parent_tgt, op_data, tgt->ltd_idx, LCK_EX,
2115 MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID1);
2119 /* cancel UPDATE lock of source parent */
2120 if (sp_tgt != parent_tgt) {
2122 * migrate RPC packs master object FID, because we can only pack
2123 * two FIDs in reint RPC, but MDS needs to know both source
2124 * parent and target parent, and it will obtain them from master
2125 * FID and LMV, the other FID in RPC is kept for target.
2127 * since this FID is not passed to MDC, cancel it anyway.
2129 rc = lmv_early_cancel(exp, sp_tgt, op_data, -1, LCK_EX,
2130 MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID4);
2134 op_data->op_flags &= ~MF_MDC_CANCEL_FID4;
2136 op_data->op_fid4 = target_fid;
2138 /* cancel UPDATE locks of target parent */
2139 rc = lmv_early_cancel(exp, tp_tgt, op_data, tgt->ltd_idx, LCK_EX,
2140 MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID2);
2144 /* cancel LOOKUP lock of source if source is remote object */
2145 if (child_tgt != sp_tgt) {
2146 rc = lmv_early_cancel(exp, sp_tgt, op_data, tgt->ltd_idx,
2147 LCK_EX, MDS_INODELOCK_LOOKUP,
2148 MF_MDC_CANCEL_FID3);
2153 /* cancel ELC locks of source */
2154 rc = lmv_early_cancel(exp, child_tgt, op_data, tgt->ltd_idx, LCK_EX,
2155 MDS_INODELOCK_ELC, MF_MDC_CANCEL_FID3);
2159 rc = md_rename(tgt->ltd_exp, op_data, name, namelen, NULL, 0, request);
2164 static int lmv_rename(struct obd_export *exp, struct md_op_data *op_data,
2165 const char *old, size_t oldlen,
2166 const char *new, size_t newlen,
2167 struct ptlrpc_request **request)
2169 struct obd_device *obd = exp->exp_obd;
2170 struct lmv_obd *lmv = &obd->u.lmv;
2171 struct lmv_tgt_desc *sp_tgt;
2172 struct lmv_tgt_desc *tp_tgt = NULL;
2173 struct lmv_tgt_desc *src_tgt = NULL;
2174 struct lmv_tgt_desc *tgt;
2175 struct mdt_body *body;
2180 LASSERT(oldlen != 0);
2182 if (op_data->op_cli_flags & CLI_MIGRATE) {
2183 rc = lmv_migrate(exp, op_data, old, oldlen, request);
2187 op_data->op_fsuid = from_kuid(&init_user_ns, current_fsuid());
2188 op_data->op_fsgid = from_kgid(&init_user_ns, current_fsgid());
2189 op_data->op_cap = cfs_curproc_cap_pack();
2191 if (lmv_is_dir_migrating(op_data->op_mea2)) {
2192 struct lu_fid fid1 = op_data->op_fid1;
2193 struct lmv_stripe_md *lsm1 = op_data->op_mea1;
2196 * we avoid creating new file under old layout of migrating
2197 * directory, if there is an existing file with new name under
2198 * old layout, we can't unlink file in old layout and rename to
2199 * new layout in one transaction, so return -EBUSY here.`
2201 tgt = __lmv_locate_tgt(lmv, op_data->op_mea2, new, newlen,
2202 &op_data->op_fid2, &op_data->op_mds,
2205 RETURN(PTR_ERR(tgt));
2207 op_data->op_fid1 = op_data->op_fid2;
2208 op_data->op_mea1 = op_data->op_mea2;
2209 op_data->op_name = new;
2210 op_data->op_namelen = newlen;
2211 rc = md_getattr_name(tgt->ltd_exp, op_data, request);
2212 op_data->op_fid1 = fid1;
2213 op_data->op_mea1 = lsm1;
2214 op_data->op_name = NULL;
2215 op_data->op_namelen = 0;
2217 ptlrpc_req_finished(*request);
2226 /* rename to new layout for migrating directory */
2227 tp_tgt = __lmv_locate_tgt(lmv, op_data->op_mea2, new, newlen,
2228 &op_data->op_fid2, &op_data->op_mds, true);
2230 RETURN(PTR_ERR(tp_tgt));
2232 /* Since the target child might be destroyed, and it might become
2233 * orphan, and we can only check orphan on the local MDT right now, so
2234 * we send rename request to the MDT where target child is located. If
2235 * target child does not exist, then it will send the request to the
2237 if (fid_is_sane(&op_data->op_fid4)) {
2238 tgt = lmv_find_target(lmv, &op_data->op_fid4);
2240 RETURN(PTR_ERR(tgt));
2245 op_data->op_flags |= MF_MDC_CANCEL_FID4;
2247 /* cancel UPDATE locks of target parent */
2248 rc = lmv_early_cancel(exp, tp_tgt, op_data, tgt->ltd_idx, LCK_EX,
2249 MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID2);
2253 if (fid_is_sane(&op_data->op_fid4)) {
2254 /* cancel LOOKUP lock of target on target parent */
2255 if (tgt != tp_tgt) {
2256 rc = lmv_early_cancel(exp, tp_tgt, op_data,
2257 tgt->ltd_idx, LCK_EX,
2258 MDS_INODELOCK_LOOKUP,
2259 MF_MDC_CANCEL_FID4);
2265 if (fid_is_sane(&op_data->op_fid3)) {
2266 src_tgt = lmv_find_target(lmv, &op_data->op_fid3);
2267 if (IS_ERR(src_tgt))
2268 RETURN(PTR_ERR(src_tgt));
2270 /* cancel ELC locks of source */
2271 rc = lmv_early_cancel(exp, src_tgt, op_data, tgt->ltd_idx,
2272 LCK_EX, MDS_INODELOCK_ELC,
2273 MF_MDC_CANCEL_FID3);
2279 sp_tgt = __lmv_locate_tgt(lmv, op_data->op_mea1, old, oldlen,
2280 &op_data->op_fid1, &op_data->op_mds,
2281 op_data->op_post_migrate);
2283 RETURN(PTR_ERR(sp_tgt));
2285 /* cancel UPDATE locks of source parent */
2286 rc = lmv_early_cancel(exp, sp_tgt, op_data, tgt->ltd_idx, LCK_EX,
2287 MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID1);
2291 if (fid_is_sane(&op_data->op_fid3)) {
2292 /* cancel LOOKUP lock of source on source parent */
2293 if (src_tgt != sp_tgt) {
2294 rc = lmv_early_cancel(exp, sp_tgt, op_data,
2295 tgt->ltd_idx, LCK_EX,
2296 MDS_INODELOCK_LOOKUP,
2297 MF_MDC_CANCEL_FID3);
2304 CDEBUG(D_INODE, "RENAME "DFID"/%.*s to "DFID"/%.*s\n",
2305 PFID(&op_data->op_fid1), (int)oldlen, old,
2306 PFID(&op_data->op_fid2), (int)newlen, new);
2308 rc = md_rename(tgt->ltd_exp, op_data, old, oldlen, new, newlen,
2310 if (rc == -ENOENT && lmv_dir_retry_check_update(op_data)) {
2311 ptlrpc_req_finished(*request);
2316 if (rc && rc != -EXDEV)
2319 body = req_capsule_server_get(&(*request)->rq_pill, &RMF_MDT_BODY);
2323 /* Not cross-ref case, just get out of here. */
2324 if (likely(!(body->mbo_valid & OBD_MD_MDS)))
2327 op_data->op_fid4 = body->mbo_fid1;
2329 ptlrpc_req_finished(*request);
2332 tgt = lmv_find_target(lmv, &op_data->op_fid4);
2334 RETURN(PTR_ERR(tgt));
2336 if (fid_is_sane(&op_data->op_fid4)) {
2337 /* cancel LOOKUP lock of target on target parent */
2338 if (tgt != tp_tgt) {
2339 rc = lmv_early_cancel(exp, tp_tgt, op_data,
2340 tgt->ltd_idx, LCK_EX,
2341 MDS_INODELOCK_LOOKUP,
2342 MF_MDC_CANCEL_FID4);
2351 static int lmv_setattr(struct obd_export *exp, struct md_op_data *op_data,
2352 void *ea, size_t ealen, struct ptlrpc_request **request)
2354 struct obd_device *obd = exp->exp_obd;
2355 struct lmv_obd *lmv = &obd->u.lmv;
2356 struct lmv_tgt_desc *tgt;
2360 CDEBUG(D_INODE, "SETATTR for "DFID", valid 0x%x/0x%x\n",
2361 PFID(&op_data->op_fid1), op_data->op_attr.ia_valid,
2362 op_data->op_xvalid);
2364 op_data->op_flags |= MF_MDC_CANCEL_FID1;
2365 tgt = lmv_find_target(lmv, &op_data->op_fid1);
2367 RETURN(PTR_ERR(tgt));
2369 rc = md_setattr(tgt->ltd_exp, op_data, ea, ealen, request);
2374 static int lmv_fsync(struct obd_export *exp, const struct lu_fid *fid,
2375 struct ptlrpc_request **request)
2377 struct obd_device *obd = exp->exp_obd;
2378 struct lmv_obd *lmv = &obd->u.lmv;
2379 struct lmv_tgt_desc *tgt;
2383 tgt = lmv_find_target(lmv, fid);
2385 RETURN(PTR_ERR(tgt));
2387 rc = md_fsync(tgt->ltd_exp, fid, request);
2391 struct stripe_dirent {
2392 struct page *sd_page;
2393 struct lu_dirpage *sd_dp;
2394 struct lu_dirent *sd_ent;
2398 struct lmv_dir_ctxt {
2399 struct lmv_obd *ldc_lmv;
2400 struct md_op_data *ldc_op_data;
2401 struct md_callback *ldc_cb_op;
2404 struct stripe_dirent ldc_stripes[0];
2407 static inline void stripe_dirent_unload(struct stripe_dirent *stripe)
2409 if (stripe->sd_page) {
2410 kunmap(stripe->sd_page);
2411 put_page(stripe->sd_page);
2412 stripe->sd_page = NULL;
2413 stripe->sd_ent = NULL;
2417 static inline void put_lmv_dir_ctxt(struct lmv_dir_ctxt *ctxt)
2421 for (i = 0; i < ctxt->ldc_count; i++)
2422 stripe_dirent_unload(&ctxt->ldc_stripes[i]);
2425 /* if @ent is dummy, or . .., get next */
2426 static struct lu_dirent *stripe_dirent_get(struct lmv_dir_ctxt *ctxt,
2427 struct lu_dirent *ent,
2430 for (; ent; ent = lu_dirent_next(ent)) {
2431 /* Skip dummy entry */
2432 if (le16_to_cpu(ent->lde_namelen) == 0)
2435 /* skip . and .. for other stripes */
2437 (strncmp(ent->lde_name, ".",
2438 le16_to_cpu(ent->lde_namelen)) == 0 ||
2439 strncmp(ent->lde_name, "..",
2440 le16_to_cpu(ent->lde_namelen)) == 0))
2443 if (le64_to_cpu(ent->lde_hash) >= ctxt->ldc_hash)
2450 static struct lu_dirent *stripe_dirent_load(struct lmv_dir_ctxt *ctxt,
2451 struct stripe_dirent *stripe,
2454 struct md_op_data *op_data = ctxt->ldc_op_data;
2455 struct lmv_oinfo *oinfo;
2456 struct lu_fid fid = op_data->op_fid1;
2457 struct inode *inode = op_data->op_data;
2458 struct lmv_tgt_desc *tgt;
2459 struct lu_dirent *ent = stripe->sd_ent;
2460 __u64 hash = ctxt->ldc_hash;
2465 LASSERT(stripe == &ctxt->ldc_stripes[stripe_index]);
2469 if (stripe->sd_page) {
2470 __u64 end = le64_to_cpu(stripe->sd_dp->ldp_hash_end);
2472 /* @hash should be the last dirent hash */
2473 LASSERTF(hash <= end,
2474 "ctxt@%p stripe@%p hash %llx end %llx\n",
2475 ctxt, stripe, hash, end);
2476 /* unload last page */
2477 stripe_dirent_unload(stripe);
2479 if (end == MDS_DIR_END_OFF) {
2480 stripe->sd_eof = true;
2486 oinfo = &op_data->op_mea1->lsm_md_oinfo[stripe_index];
2487 if (!oinfo->lmo_root) {
2492 tgt = lmv_get_target(ctxt->ldc_lmv, oinfo->lmo_mds, NULL);
2498 /* op_data is shared by stripes, reset after use */
2499 op_data->op_fid1 = oinfo->lmo_fid;
2500 op_data->op_fid2 = oinfo->lmo_fid;
2501 op_data->op_data = oinfo->lmo_root;
2503 rc = md_read_page(tgt->ltd_exp, op_data, ctxt->ldc_cb_op, hash,
2506 op_data->op_fid1 = fid;
2507 op_data->op_fid2 = fid;
2508 op_data->op_data = inode;
2513 stripe->sd_dp = page_address(stripe->sd_page);
2514 ent = stripe_dirent_get(ctxt, lu_dirent_start(stripe->sd_dp),
2516 /* in case a page filled with ., .. and dummy, read next */
2519 stripe->sd_ent = ent;
2522 /* treat error as eof, so dir can be partially accessed */
2523 stripe->sd_eof = true;
2524 LCONSOLE_WARN("dir "DFID" stripe %d readdir failed: %d, "
2525 "directory is partially accessed!\n",
2526 PFID(&ctxt->ldc_op_data->op_fid1), stripe_index,
2533 static int lmv_file_resync(struct obd_export *exp, struct md_op_data *data)
2535 struct obd_device *obd = exp->exp_obd;
2536 struct lmv_obd *lmv = &obd->u.lmv;
2537 struct lmv_tgt_desc *tgt;
2541 rc = lmv_check_connect(obd);
2545 tgt = lmv_find_target(lmv, &data->op_fid1);
2547 RETURN(PTR_ERR(tgt));
2549 data->op_flags |= MF_MDC_CANCEL_FID1;
2550 rc = md_file_resync(tgt->ltd_exp, data);
2555 * Get dirent with the closest hash for striped directory
2557 * This function will search the dir entry, whose hash value is the
2558 * closest(>=) to hash from all of sub-stripes, and it is only being called
2559 * for striped directory.
2561 * \param[in] ctxt dir read context
2563 * \retval dirent get the entry successfully
2564 * NULL does not get the entry, normally it means
2565 * it reaches the end of the directory, while read
2566 * stripe dirent error is ignored to allow partial
2569 static struct lu_dirent *lmv_dirent_next(struct lmv_dir_ctxt *ctxt)
2571 struct stripe_dirent *stripe;
2572 struct lu_dirent *ent = NULL;
2576 /* TODO: optimize with k-way merge sort */
2577 for (i = 0; i < ctxt->ldc_count; i++) {
2578 stripe = &ctxt->ldc_stripes[i];
2582 if (!stripe->sd_ent) {
2583 stripe_dirent_load(ctxt, stripe, i);
2584 if (!stripe->sd_ent) {
2585 LASSERT(stripe->sd_eof);
2591 le64_to_cpu(ctxt->ldc_stripes[min].sd_ent->lde_hash) >
2592 le64_to_cpu(stripe->sd_ent->lde_hash)) {
2594 if (le64_to_cpu(stripe->sd_ent->lde_hash) ==
2601 stripe = &ctxt->ldc_stripes[min];
2602 ent = stripe->sd_ent;
2603 /* pop found dirent */
2604 stripe->sd_ent = stripe_dirent_get(ctxt, lu_dirent_next(ent),
2612 * Build dir entry page for striped directory
2614 * This function gets one entry by @offset from a striped directory. It will
2615 * read entries from all of stripes, and choose one closest to the required
2616 * offset(&offset). A few notes
2617 * 1. skip . and .. for non-zero stripes, because there can only have one .
2618 * and .. in a directory.
2619 * 2. op_data will be shared by all of stripes, instead of allocating new
2620 * one, so need to restore before reusing.
2622 * \param[in] exp obd export refer to LMV
2623 * \param[in] op_data hold those MD parameters of read_entry
2624 * \param[in] cb_op ldlm callback being used in enqueue in mdc_read_entry
2625 * \param[in] offset starting hash offset
2626 * \param[out] ppage the page holding the entry. Note: because the entry
2627 * will be accessed in upper layer, so we need hold the
2628 * page until the usages of entry is finished, see
2629 * ll_dir_entry_next.
2631 * retval =0 if get entry successfully
2632 * <0 cannot get entry
2634 static int lmv_striped_read_page(struct obd_export *exp,
2635 struct md_op_data *op_data,
2636 struct md_callback *cb_op,
2637 __u64 offset, struct page **ppage)
2639 struct page *page = NULL;
2640 struct lu_dirpage *dp;
2642 struct lu_dirent *ent;
2643 struct lu_dirent *last_ent;
2645 struct lmv_dir_ctxt *ctxt;
2646 struct lu_dirent *next = NULL;
2652 /* Allocate a page and read entries from all of stripes and fill
2653 * the page by hash order */
2654 page = alloc_page(GFP_KERNEL);
2658 /* Initialize the entry page */
2660 memset(dp, 0, sizeof(*dp));
2661 dp->ldp_hash_start = cpu_to_le64(offset);
2664 left_bytes = PAGE_SIZE - sizeof(*dp);
2668 /* initalize dir read context */
2669 stripe_count = op_data->op_mea1->lsm_md_stripe_count;
2670 OBD_ALLOC(ctxt, offsetof(typeof(*ctxt), ldc_stripes[stripe_count]));
2672 GOTO(free_page, rc = -ENOMEM);
2673 ctxt->ldc_lmv = &exp->exp_obd->u.lmv;
2674 ctxt->ldc_op_data = op_data;
2675 ctxt->ldc_cb_op = cb_op;
2676 ctxt->ldc_hash = offset;
2677 ctxt->ldc_count = stripe_count;
2680 next = lmv_dirent_next(ctxt);
2682 /* end of directory */
2684 ctxt->ldc_hash = MDS_DIR_END_OFF;
2687 ctxt->ldc_hash = le64_to_cpu(next->lde_hash);
2689 ent_size = le16_to_cpu(next->lde_reclen);
2691 /* the last entry lde_reclen is 0, but it might not be the last
2692 * one of this temporay dir page */
2694 ent_size = lu_dirent_calc_size(
2695 le16_to_cpu(next->lde_namelen),
2696 le32_to_cpu(next->lde_attrs));
2698 if (ent_size > left_bytes)
2701 memcpy(ent, next, ent_size);
2703 /* Replace . with master FID and Replace .. with the parent FID
2704 * of master object */
2705 if (strncmp(ent->lde_name, ".",
2706 le16_to_cpu(ent->lde_namelen)) == 0 &&
2707 le16_to_cpu(ent->lde_namelen) == 1)
2708 fid_cpu_to_le(&ent->lde_fid, &op_data->op_fid1);
2709 else if (strncmp(ent->lde_name, "..",
2710 le16_to_cpu(ent->lde_namelen)) == 0 &&
2711 le16_to_cpu(ent->lde_namelen) == 2)
2712 fid_cpu_to_le(&ent->lde_fid, &op_data->op_fid3);
2714 CDEBUG(D_INODE, "entry %.*s hash %#llx\n",
2715 le16_to_cpu(ent->lde_namelen), ent->lde_name,
2716 le64_to_cpu(ent->lde_hash));
2718 left_bytes -= ent_size;
2719 ent->lde_reclen = cpu_to_le16(ent_size);
2721 ent = (void *)ent + ent_size;
2724 last_ent->lde_reclen = 0;
2727 dp->ldp_flags |= LDF_EMPTY;
2728 else if (ctxt->ldc_hash == le64_to_cpu(last_ent->lde_hash))
2729 dp->ldp_flags |= LDF_COLLIDE;
2730 dp->ldp_flags = cpu_to_le32(dp->ldp_flags);
2731 dp->ldp_hash_end = cpu_to_le64(ctxt->ldc_hash);
2733 put_lmv_dir_ctxt(ctxt);
2734 OBD_FREE(ctxt, offsetof(typeof(*ctxt), ldc_stripes[stripe_count]));
2747 int lmv_read_page(struct obd_export *exp, struct md_op_data *op_data,
2748 struct md_callback *cb_op, __u64 offset,
2749 struct page **ppage)
2751 struct obd_device *obd = exp->exp_obd;
2752 struct lmv_obd *lmv = &obd->u.lmv;
2753 struct lmv_stripe_md *lsm = op_data->op_mea1;
2754 struct lmv_tgt_desc *tgt;
2758 if (unlikely(lsm != NULL)) {
2759 /* foreign dir is not striped dir */
2760 if (lsm->lsm_md_magic == LMV_MAGIC_FOREIGN)
2763 rc = lmv_striped_read_page(exp, op_data, cb_op, offset, ppage);
2767 tgt = lmv_find_target(lmv, &op_data->op_fid1);
2769 RETURN(PTR_ERR(tgt));
2771 rc = md_read_page(tgt->ltd_exp, op_data, cb_op, offset, ppage);
2777 * Unlink a file/directory
2779 * Unlink a file or directory under the parent dir. The unlink request
2780 * usually will be sent to the MDT where the child is located, but if
2781 * the client does not have the child FID then request will be sent to the
2782 * MDT where the parent is located.
2784 * If the parent is a striped directory then it also needs to locate which
2785 * stripe the name of the child is located, and replace the parent FID
2786 * (@op->op_fid1) with the stripe FID. Note: if the stripe is unknown,
2787 * it will walk through all of sub-stripes until the child is being
2790 * \param[in] exp export refer to LMV
2791 * \param[in] op_data different parameters transferred beween client
2792 * MD stacks, name, namelen, FIDs etc.
2793 * op_fid1 is the parent FID, op_fid2 is the child
2795 * \param[out] request point to the request of unlink.
2797 * retval 0 if succeed
2798 * negative errno if failed.
2800 static int lmv_unlink(struct obd_export *exp, struct md_op_data *op_data,
2801 struct ptlrpc_request **request)
2803 struct obd_device *obd = exp->exp_obd;
2804 struct lmv_obd *lmv = &obd->u.lmv;
2805 struct lmv_tgt_desc *tgt;
2806 struct lmv_tgt_desc *parent_tgt;
2807 struct mdt_body *body;
2812 op_data->op_fsuid = from_kuid(&init_user_ns, current_fsuid());
2813 op_data->op_fsgid = from_kgid(&init_user_ns, current_fsgid());
2814 op_data->op_cap = cfs_curproc_cap_pack();
2817 parent_tgt = lmv_locate_tgt(lmv, op_data, &op_data->op_fid1);
2818 if (IS_ERR(parent_tgt))
2819 RETURN(PTR_ERR(parent_tgt));
2821 if (likely(!fid_is_zero(&op_data->op_fid2))) {
2822 tgt = lmv_find_target(lmv, &op_data->op_fid2);
2824 RETURN(PTR_ERR(tgt));
2830 * If child's fid is given, cancel unused locks for it if it is from
2831 * another export than parent.
2833 * LOOKUP lock for child (fid3) should also be cancelled on parent
2834 * tgt_tgt in mdc_unlink().
2836 op_data->op_flags |= MF_MDC_CANCEL_FID1 | MF_MDC_CANCEL_FID3;
2838 if (parent_tgt != tgt)
2839 rc = lmv_early_cancel(exp, parent_tgt, op_data, tgt->ltd_idx,
2840 LCK_EX, MDS_INODELOCK_LOOKUP,
2841 MF_MDC_CANCEL_FID3);
2843 rc = lmv_early_cancel(exp, NULL, op_data, tgt->ltd_idx, LCK_EX,
2844 MDS_INODELOCK_ELC, MF_MDC_CANCEL_FID3);
2848 CDEBUG(D_INODE, "unlink with fid="DFID"/"DFID" -> mds #%u\n",
2849 PFID(&op_data->op_fid1), PFID(&op_data->op_fid2), tgt->ltd_idx);
2851 rc = md_unlink(tgt->ltd_exp, op_data, request);
2852 if (rc == -ENOENT && lmv_dir_retry_check_update(op_data)) {
2853 ptlrpc_req_finished(*request);
2861 body = req_capsule_server_get(&(*request)->rq_pill, &RMF_MDT_BODY);
2865 /* Not cross-ref case, just get out of here. */
2866 if (likely(!(body->mbo_valid & OBD_MD_MDS)))
2869 /* This is a remote object, try remote MDT. */
2870 op_data->op_fid2 = body->mbo_fid1;
2871 ptlrpc_req_finished(*request);
2874 tgt = lmv_find_target(lmv, &op_data->op_fid2);
2876 RETURN(PTR_ERR(tgt));
2881 static int lmv_precleanup(struct obd_device *obd)
2884 libcfs_kkuc_group_rem(&obd->obd_uuid, 0, KUC_GRP_HSM);
2885 fld_client_debugfs_fini(&obd->u.lmv.lmv_fld);
2886 lprocfs_obd_cleanup(obd);
2887 lprocfs_free_md_stats(obd);
2892 * Get by key a value associated with a LMV device.
2894 * Dispatch request to lower-layer devices as needed.
2896 * \param[in] env execution environment for this thread
2897 * \param[in] exp export for the LMV device
2898 * \param[in] keylen length of key identifier
2899 * \param[in] key identifier of key to get value for
2900 * \param[in] vallen size of \a val
2901 * \param[out] val pointer to storage location for value
2902 * \param[in] lsm optional striping metadata of object
2904 * \retval 0 on success
2905 * \retval negative negated errno on failure
2907 static int lmv_get_info(const struct lu_env *env, struct obd_export *exp,
2908 __u32 keylen, void *key, __u32 *vallen, void *val)
2910 struct obd_device *obd;
2911 struct lmv_obd *lmv;
2915 obd = class_exp2obd(exp);
2917 CDEBUG(D_IOCTL, "Invalid client cookie %#llx\n",
2918 exp->exp_handle.h_cookie);
2923 if (keylen >= strlen("remote_flag") && !strcmp(key, "remote_flag")) {
2926 LASSERT(*vallen == sizeof(__u32));
2927 for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
2928 struct lmv_tgt_desc *tgt = lmv->tgts[i];
2930 * All tgts should be connected when this gets called.
2932 if (tgt == NULL || tgt->ltd_exp == NULL)
2935 if (!obd_get_info(env, tgt->ltd_exp, keylen, key,
2940 } else if (KEY_IS(KEY_MAX_EASIZE) ||
2941 KEY_IS(KEY_DEFAULT_EASIZE) ||
2942 KEY_IS(KEY_CONN_DATA)) {
2944 * Forwarding this request to first MDS, it should know LOV
2947 rc = obd_get_info(env, lmv->tgts[0]->ltd_exp, keylen, key,
2949 if (!rc && KEY_IS(KEY_CONN_DATA))
2950 exp->exp_connect_data = *(struct obd_connect_data *)val;
2952 } else if (KEY_IS(KEY_TGT_COUNT)) {
2953 *((int *)val) = lmv->desc.ld_tgt_count;
2957 CDEBUG(D_IOCTL, "Invalid key\n");
2962 * Asynchronously set by key a value associated with a LMV device.
2964 * Dispatch request to lower-layer devices as needed.
2966 * \param[in] env execution environment for this thread
2967 * \param[in] exp export for the LMV device
2968 * \param[in] keylen length of key identifier
2969 * \param[in] key identifier of key to store value for
2970 * \param[in] vallen size of value to store
2971 * \param[in] val pointer to data to be stored
2972 * \param[in] set optional list of related ptlrpc requests
2974 * \retval 0 on success
2975 * \retval negative negated errno on failure
2977 int lmv_set_info_async(const struct lu_env *env, struct obd_export *exp,
2978 __u32 keylen, void *key, __u32 vallen, void *val,
2979 struct ptlrpc_request_set *set)
2981 struct lmv_tgt_desc *tgt = NULL;
2982 struct obd_device *obd;
2983 struct lmv_obd *lmv;
2987 obd = class_exp2obd(exp);
2989 CDEBUG(D_IOCTL, "Invalid client cookie %#llx\n",
2990 exp->exp_handle.h_cookie);
2995 if (KEY_IS(KEY_READ_ONLY) || KEY_IS(KEY_FLUSH_CTX) ||
2996 KEY_IS(KEY_DEFAULT_EASIZE)) {
2999 for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
3002 if (tgt == NULL || tgt->ltd_exp == NULL)
3005 err = obd_set_info_async(env, tgt->ltd_exp,
3006 keylen, key, vallen, val, set);
3017 static int lmv_unpack_md_v1(struct obd_export *exp, struct lmv_stripe_md *lsm,
3018 const struct lmv_mds_md_v1 *lmm1)
3020 struct lmv_obd *lmv = &exp->exp_obd->u.lmv;
3027 lsm->lsm_md_magic = le32_to_cpu(lmm1->lmv_magic);
3028 lsm->lsm_md_stripe_count = le32_to_cpu(lmm1->lmv_stripe_count);
3029 lsm->lsm_md_master_mdt_index = le32_to_cpu(lmm1->lmv_master_mdt_index);
3030 if (OBD_FAIL_CHECK(OBD_FAIL_UNKNOWN_LMV_STRIPE))
3031 lsm->lsm_md_hash_type = LMV_HASH_TYPE_UNKNOWN;
3033 lsm->lsm_md_hash_type = le32_to_cpu(lmm1->lmv_hash_type);
3034 lsm->lsm_md_layout_version = le32_to_cpu(lmm1->lmv_layout_version);
3035 lsm->lsm_md_migrate_offset = le32_to_cpu(lmm1->lmv_migrate_offset);
3036 lsm->lsm_md_migrate_hash = le32_to_cpu(lmm1->lmv_migrate_hash);
3037 cplen = strlcpy(lsm->lsm_md_pool_name, lmm1->lmv_pool_name,
3038 sizeof(lsm->lsm_md_pool_name));
3040 if (cplen >= sizeof(lsm->lsm_md_pool_name))
3043 CDEBUG(D_INFO, "unpack lsm count %d, master %d hash_type %#x "
3044 "layout_version %d\n", lsm->lsm_md_stripe_count,
3045 lsm->lsm_md_master_mdt_index, lsm->lsm_md_hash_type,
3046 lsm->lsm_md_layout_version);
3048 stripe_count = le32_to_cpu(lmm1->lmv_stripe_count);
3049 for (i = 0; i < stripe_count; i++) {
3050 fid_le_to_cpu(&lsm->lsm_md_oinfo[i].lmo_fid,
3051 &lmm1->lmv_stripe_fids[i]);
3053 * set default value -1, so lmv_locate_tgt() knows this stripe
3054 * target is not initialized.
3056 lsm->lsm_md_oinfo[i].lmo_mds = (u32)-1;
3057 if (!fid_is_sane(&lsm->lsm_md_oinfo[i].lmo_fid))
3060 rc = lmv_fld_lookup(lmv, &lsm->lsm_md_oinfo[i].lmo_fid,
3061 &lsm->lsm_md_oinfo[i].lmo_mds);
3068 CDEBUG(D_INFO, "unpack fid #%d "DFID"\n", i,
3069 PFID(&lsm->lsm_md_oinfo[i].lmo_fid));
3075 static inline int lmv_unpack_user_md(struct obd_export *exp,
3076 struct lmv_stripe_md *lsm,
3077 const struct lmv_user_md *lmu)
3079 lsm->lsm_md_magic = le32_to_cpu(lmu->lum_magic);
3080 lsm->lsm_md_stripe_count = le32_to_cpu(lmu->lum_stripe_count);
3081 lsm->lsm_md_master_mdt_index = le32_to_cpu(lmu->lum_stripe_offset);
3082 lsm->lsm_md_hash_type = le32_to_cpu(lmu->lum_hash_type);
3087 static int lmv_unpackmd(struct obd_export *exp, struct lmv_stripe_md **lsmp,
3088 const union lmv_mds_md *lmm, size_t lmm_size)
3090 struct lmv_stripe_md *lsm;
3093 bool allocated = false;
3096 LASSERT(lsmp != NULL);
3100 if (lsm != NULL && lmm == NULL) {
3102 struct lmv_foreign_md *lfm = (struct lmv_foreign_md *)lsm;
3104 if (lfm->lfm_magic == LMV_MAGIC_FOREIGN) {
3107 lfm_size = lfm->lfm_length + offsetof(typeof(*lfm),
3109 OBD_FREE_LARGE(lfm, lfm_size);
3113 if (lsm->lsm_md_magic == LMV_MAGIC) {
3114 for (i = 0; i < lsm->lsm_md_stripe_count; i++) {
3115 if (lsm->lsm_md_oinfo[i].lmo_root)
3116 iput(lsm->lsm_md_oinfo[i].lmo_root);
3118 lsm_size = lmv_stripe_md_size(lsm->lsm_md_stripe_count);
3120 lsm_size = lmv_stripe_md_size(0);
3122 OBD_FREE(lsm, lsm_size);
3127 /* foreign lmv case */
3128 if (le32_to_cpu(lmm->lmv_magic) == LMV_MAGIC_FOREIGN) {
3129 struct lmv_foreign_md *lfm = (struct lmv_foreign_md *)lsm;
3132 OBD_ALLOC_LARGE(lfm, lmm_size);
3135 *lsmp = (struct lmv_stripe_md *)lfm;
3137 lfm->lfm_magic = le32_to_cpu(lmm->lmv_foreign_md.lfm_magic);
3138 lfm->lfm_length = le32_to_cpu(lmm->lmv_foreign_md.lfm_length);
3139 lfm->lfm_type = le32_to_cpu(lmm->lmv_foreign_md.lfm_type);
3140 lfm->lfm_flags = le32_to_cpu(lmm->lmv_foreign_md.lfm_flags);
3141 memcpy(&lfm->lfm_value, &lmm->lmv_foreign_md.lfm_value,
3146 if (le32_to_cpu(lmm->lmv_magic) == LMV_MAGIC_STRIPE)
3150 if (le32_to_cpu(lmm->lmv_magic) != LMV_MAGIC_V1 &&
3151 le32_to_cpu(lmm->lmv_magic) != LMV_USER_MAGIC) {
3152 CERROR("%s: invalid lmv magic %x: rc = %d\n",
3153 exp->exp_obd->obd_name, le32_to_cpu(lmm->lmv_magic),
3158 if (le32_to_cpu(lmm->lmv_magic) == LMV_MAGIC_V1)
3159 lsm_size = lmv_stripe_md_size(lmv_mds_md_stripe_count_get(lmm));
3162 * Unpack default dirstripe(lmv_user_md) to lmv_stripe_md,
3163 * stripecount should be 0 then.
3165 lsm_size = lmv_stripe_md_size(0);
3168 OBD_ALLOC(lsm, lsm_size);
3175 switch (le32_to_cpu(lmm->lmv_magic)) {
3177 rc = lmv_unpack_md_v1(exp, lsm, &lmm->lmv_md_v1);
3179 case LMV_USER_MAGIC:
3180 rc = lmv_unpack_user_md(exp, lsm, &lmm->lmv_user_md);
3183 CERROR("%s: unrecognized magic %x\n", exp->exp_obd->obd_name,
3184 le32_to_cpu(lmm->lmv_magic));
3189 if (rc != 0 && allocated) {
3190 OBD_FREE(lsm, lsm_size);
3197 void lmv_free_memmd(struct lmv_stripe_md *lsm)
3199 lmv_unpackmd(NULL, &lsm, NULL, 0);
3201 EXPORT_SYMBOL(lmv_free_memmd);
3203 static int lmv_cancel_unused(struct obd_export *exp, const struct lu_fid *fid,
3204 union ldlm_policy_data *policy,
3205 enum ldlm_mode mode, enum ldlm_cancel_flags flags,
3208 struct lmv_obd *lmv = &exp->exp_obd->u.lmv;
3213 LASSERT(fid != NULL);
3215 for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
3216 struct lmv_tgt_desc *tgt = lmv->tgts[i];
3219 if (tgt == NULL || tgt->ltd_exp == NULL || !tgt->ltd_active)
3222 err = md_cancel_unused(tgt->ltd_exp, fid, policy, mode, flags,
3230 static int lmv_set_lock_data(struct obd_export *exp,
3231 const struct lustre_handle *lockh,