Whamcloud - gitweb
LU-13437 lmv: check stripe FID sanity
[fs/lustre-release.git] / lustre / lmv / lmv_obd.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
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.
9  *
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).
15  *
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
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #define DEBUG_SUBSYSTEM S_LMV
34
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>
41 #endif
42 #include <linux/slab.h>
43 #include <linux/pagemap.h>
44 #include <linux/mm.h>
45 #include <linux/math64.h>
46 #include <linux/seq_file.h>
47 #include <linux/namei.h>
48
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"
60
61 static int lmv_check_connect(struct obd_device *obd);
62
63 static void lmv_activate_target(struct lmv_obd *lmv,
64                                 struct lmv_tgt_desc *tgt,
65                                 int activate)
66 {
67         if (tgt->ltd_active == activate)
68                 return;
69
70         tgt->ltd_active = activate;
71         lmv->desc.ld_active_tgt_count += (activate ? 1 : -1);
72
73         tgt->ltd_exp->exp_obd->obd_inactive = !activate;
74 }
75
76 /**
77  * Error codes:
78  *
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 (!)
82  */
83 static int lmv_set_mdc_active(struct lmv_obd *lmv,
84                               const struct obd_uuid *uuid,
85                               int activate)
86 {
87         struct lmv_tgt_desc     *tgt = NULL;
88         struct obd_device       *obd;
89         __u32                    i;
90         int                      rc = 0;
91         ENTRY;
92
93         CDEBUG(D_INFO, "Searching in lmv %p for uuid %s (activate=%d)\n",
94                         lmv, uuid->uuid, activate);
95
96         spin_lock(&lmv->lmv_lock);
97         for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
98                 tgt = lmv->tgts[i];
99                 if (tgt == NULL || tgt->ltd_exp == NULL)
100                         continue;
101
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);
104
105                 if (obd_uuid_equals(uuid, &tgt->ltd_uuid))
106                         break;
107         }
108
109         if (i == lmv->desc.ld_tgt_count)
110                 GOTO(out_lmv_lock, rc = -EINVAL);
111
112         obd = class_exp2obd(tgt->ltd_exp);
113         if (obd == NULL)
114                 GOTO(out_lmv_lock, rc = -ENOTCONN);
115
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);
120
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);
125         }
126
127         CDEBUG(D_INFO, "Marking OBD %p %sactive\n", obd,
128                activate ? "" : "in");
129         lmv_activate_target(lmv, tgt, activate);
130         EXIT;
131
132  out_lmv_lock:
133         spin_unlock(&lmv->lmv_lock);
134         return rc;
135 }
136
137 struct obd_uuid *lmv_get_uuid(struct obd_export *exp)
138 {
139         struct lmv_obd          *lmv = &exp->exp_obd->u.lmv;
140         struct lmv_tgt_desc     *tgt = lmv->tgts[0];
141
142         return (tgt == NULL) ? NULL : obd_get_uuid(tgt->ltd_exp);
143 }
144
145 static int lmv_notify(struct obd_device *obd, struct obd_device *watched,
146                       enum obd_notify_event ev)
147 {
148         struct obd_connect_data *conn_data;
149         struct lmv_obd          *lmv = &obd->u.lmv;
150         struct obd_uuid         *uuid;
151         int                      rc = 0;
152         ENTRY;
153
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,
157                        watched->obd_name);
158                 RETURN(-EINVAL);
159         }
160
161         uuid = &watched->u.cli.cl_target_uuid;
162         if (ev == OBD_NOTIFY_ACTIVE || ev == OBD_NOTIFY_INACTIVE) {
163                 /*
164                  * Set MDC as active before notifying the observer, so the
165                  * observer can use the MDC normally.
166                  */
167                 rc = lmv_set_mdc_active(lmv, uuid,
168                                         ev == OBD_NOTIFY_ACTIVE);
169                 if (rc) {
170                         CERROR("%sactivation of %s failed: %d\n",
171                                ev == OBD_NOTIFY_ACTIVE ? "" : "de",
172                                uuid->uuid, rc);
173                         RETURN(rc);
174                 }
175         } else if (ev == OBD_NOTIFY_OCD) {
176                 conn_data = &watched->u.cli.cl_import->imp_connect_data;
177                 /*
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
181                  */
182                 obd->obd_self_export->exp_connect_data = *conn_data;
183         }
184
185         /*
186          * Pass the notification up the chain.
187          */
188         if (obd->obd_observer)
189                 rc = obd_notify(obd->obd_observer, watched, ev);
190
191         RETURN(rc);
192 }
193
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,
197                        void *localdata)
198 {
199         struct lmv_obd *lmv = &obd->u.lmv;
200         struct lustre_handle conn = { 0 };
201         struct obd_export *exp;
202         int rc;
203         ENTRY;
204
205         rc = class_connect(&conn, obd, cluuid);
206         if (rc) {
207                 CERROR("class_connection() returned %d\n", rc);
208                 RETURN(rc);
209         }
210
211         exp = class_conn2export(&conn);
212
213         lmv->connected = 0;
214         lmv->conn_data = *data;
215
216         lmv->lmv_tgts_kobj = kobject_create_and_add("target_obds",
217                                                     &obd->obd_kset.kobj);
218         if (!lmv->lmv_tgts_kobj) {
219                 CERROR("%s: cannot create /sys/fs/lustre/%s/%s/target_obds\n",
220                        obd->obd_name, obd->obd_type->typ_name, obd->obd_name);
221         }
222
223         rc = lmv_check_connect(obd);
224         if (rc != 0)
225                 GOTO(out_sysfs, rc);
226
227         *pexp = exp;
228
229         RETURN(rc);
230
231 out_sysfs:
232         if (lmv->lmv_tgts_kobj)
233                 kobject_put(lmv->lmv_tgts_kobj);
234
235         class_disconnect(exp);
236
237         return rc;
238 }
239
240 static int lmv_init_ea_size(struct obd_export *exp, __u32 easize,
241                             __u32 def_easize)
242 {
243         struct obd_device       *obd = exp->exp_obd;
244         struct lmv_obd          *lmv = &obd->u.lmv;
245         __u32                    i;
246         int                      rc = 0;
247         int                      change = 0;
248         ENTRY;
249
250         if (lmv->max_easize < easize) {
251                 lmv->max_easize = easize;
252                 change = 1;
253         }
254         if (lmv->max_def_easize < def_easize) {
255                 lmv->max_def_easize = def_easize;
256                 change = 1;
257         }
258
259         if (change == 0)
260                 RETURN(0);
261
262         if (lmv->connected == 0)
263                 RETURN(0);
264
265         for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
266                 struct lmv_tgt_desc *tgt = lmv->tgts[i];
267
268                 if (tgt == NULL || tgt->ltd_exp == NULL) {
269                         CWARN("%s: NULL export for %d\n", obd->obd_name, i);
270                         continue;
271                 }
272                 if (!tgt->ltd_active)
273                         continue;
274
275                 rc = md_init_ea_size(tgt->ltd_exp, easize, def_easize);
276                 if (rc) {
277                         CERROR("%s: obd_init_ea_size() failed on MDT target %d:"
278                                " rc = %d\n", obd->obd_name, i, rc);
279                         break;
280                 }
281         }
282         RETURN(rc);
283 }
284
285 #define MAX_STRING_SIZE 128
286
287 int lmv_connect_mdc(struct obd_device *obd, struct lmv_tgt_desc *tgt)
288 {
289         struct lmv_obd          *lmv = &obd->u.lmv;
290         struct obd_device       *mdc_obd;
291         struct obd_export       *mdc_exp;
292         struct lu_fld_target     target;
293         int                      rc;
294         ENTRY;
295
296         mdc_obd = class_find_client_obd(&tgt->ltd_uuid, LUSTRE_MDC_NAME,
297                                         &obd->obd_uuid);
298         if (!mdc_obd) {
299                 CERROR("target %s not attached\n", tgt->ltd_uuid.uuid);
300                 RETURN(-EINVAL);
301         }
302
303         CDEBUG(D_CONFIG, "connect to %s(%s) - %s, %s\n",
304                mdc_obd->obd_name, mdc_obd->obd_uuid.uuid,
305                tgt->ltd_uuid.uuid, obd->obd_uuid.uuid);
306
307         if (!mdc_obd->obd_set_up) {
308                 CERROR("target %s is not set up\n", tgt->ltd_uuid.uuid);
309                 RETURN(-EINVAL);
310         }
311
312         rc = obd_connect(NULL, &mdc_exp, mdc_obd, &obd->obd_uuid,
313                          &lmv->conn_data, NULL);
314         if (rc) {
315                 CERROR("target %s connect error %d\n", tgt->ltd_uuid.uuid, rc);
316                 RETURN(rc);
317         }
318
319         /*
320          * Init fid sequence client for this mdc and add new fld target.
321          */
322         rc = obd_fid_init(mdc_obd, mdc_exp, LUSTRE_SEQ_METADATA);
323         if (rc)
324                 RETURN(rc);
325
326         target.ft_srv = NULL;
327         target.ft_exp = mdc_exp;
328         target.ft_idx = tgt->ltd_idx;
329
330         fld_client_add_target(&lmv->lmv_fld, &target);
331
332         rc = obd_register_observer(mdc_obd, obd);
333         if (rc) {
334                 obd_disconnect(mdc_exp);
335                 CERROR("target %s register_observer error %d\n",
336                        tgt->ltd_uuid.uuid, rc);
337                 RETURN(rc);
338         }
339
340         if (obd->obd_observer) {
341                 /*
342                  * Tell the observer about the new target.
343                  */
344                 rc = obd_notify(obd->obd_observer, mdc_exp->exp_obd,
345                                 OBD_NOTIFY_ACTIVE);
346                 if (rc) {
347                         obd_disconnect(mdc_exp);
348                         RETURN(rc);
349                 }
350         }
351
352         tgt->ltd_active = 1;
353         tgt->ltd_exp = mdc_exp;
354         lmv->desc.ld_active_tgt_count++;
355
356         md_init_ea_size(tgt->ltd_exp, lmv->max_easize, lmv->max_def_easize);
357
358         CDEBUG(D_CONFIG, "Connected to %s(%s) successfully (%d)\n",
359                 mdc_obd->obd_name, mdc_obd->obd_uuid.uuid,
360                 atomic_read(&obd->obd_refcount));
361
362         if (lmv->lmv_tgts_kobj)
363                 /* Even if we failed to create the link, that's fine */
364                 rc = sysfs_create_link(lmv->lmv_tgts_kobj,
365                                        &mdc_obd->obd_kset.kobj,
366                                        mdc_obd->obd_name);
367         RETURN(0);
368 }
369
370 static void lmv_del_target(struct lmv_obd *lmv, int index)
371 {
372         if (lmv->tgts[index] == NULL)
373                 return;
374
375         OBD_FREE_PTR(lmv->tgts[index]);
376         lmv->tgts[index] = NULL;
377         return;
378 }
379
380 static int lmv_add_target(struct obd_device *obd, struct obd_uuid *uuidp,
381                            __u32 index, int gen)
382 {
383         struct obd_device *mdc_obd;
384         struct lmv_obd      *lmv = &obd->u.lmv;
385         struct lmv_tgt_desc *tgt;
386         int                  orig_tgt_count = 0;
387         int                  rc = 0;
388         ENTRY;
389
390         CDEBUG(D_CONFIG, "Target uuid: %s. index %d\n", uuidp->uuid, index);
391         mdc_obd = class_find_client_obd(uuidp, LUSTRE_MDC_NAME,
392                                         &obd->obd_uuid);
393         if (!mdc_obd) {
394                 CERROR("%s: Target %s not attached: rc = %d\n",
395                        obd->obd_name, uuidp->uuid, -EINVAL);
396                 RETURN(-EINVAL);
397         }
398
399         mutex_lock(&lmv->lmv_init_mutex);
400         if ((index < lmv->tgts_size) && (lmv->tgts[index] != NULL)) {
401                 tgt = lmv->tgts[index];
402                 CERROR("%s: UUID %s already assigned at LMV target index %d:"
403                        " rc = %d\n", obd->obd_name,
404                        obd_uuid2str(&tgt->ltd_uuid), index, -EEXIST);
405                 mutex_unlock(&lmv->lmv_init_mutex);
406                 RETURN(-EEXIST);
407         }
408
409         if (index >= lmv->tgts_size) {
410                 /* We need to reallocate the lmv target array. */
411                 struct lmv_tgt_desc **newtgts, **old = NULL;
412                 __u32 newsize = 1;
413                 __u32 oldsize = 0;
414
415                 while (newsize < index + 1)
416                         newsize = newsize << 1;
417                 OBD_ALLOC(newtgts, sizeof(*newtgts) * newsize);
418                 if (newtgts == NULL) {
419                         mutex_unlock(&lmv->lmv_init_mutex);
420                         RETURN(-ENOMEM);
421                 }
422
423                 if (lmv->tgts_size) {
424                         memcpy(newtgts, lmv->tgts,
425                                sizeof(*newtgts) * lmv->tgts_size);
426                         old = lmv->tgts;
427                         oldsize = lmv->tgts_size;
428                 }
429
430                 lmv->tgts = newtgts;
431                 lmv->tgts_size = newsize;
432                 smp_rmb();
433                 if (old)
434                         OBD_FREE(old, sizeof(*old) * oldsize);
435
436                 CDEBUG(D_CONFIG, "tgts: %p size: %d\n", lmv->tgts,
437                        lmv->tgts_size);
438         }
439
440         OBD_ALLOC_PTR(tgt);
441         if (!tgt) {
442                 mutex_unlock(&lmv->lmv_init_mutex);
443                 RETURN(-ENOMEM);
444         }
445
446         mutex_init(&tgt->ltd_fid_mutex);
447         tgt->ltd_idx = index;
448         tgt->ltd_uuid = *uuidp;
449         tgt->ltd_active = 0;
450         lmv->tgts[index] = tgt;
451         if (index >= lmv->desc.ld_tgt_count) {
452                 orig_tgt_count = lmv->desc.ld_tgt_count;
453                 lmv->desc.ld_tgt_count = index + 1;
454         }
455
456         if (lmv->connected == 0) {
457                 /* lmv_check_connect() will connect this target. */
458                 mutex_unlock(&lmv->lmv_init_mutex);
459                 RETURN(0);
460         }
461
462         /* Otherwise let's connect it ourselves */
463         mutex_unlock(&lmv->lmv_init_mutex);
464         rc = lmv_connect_mdc(obd, tgt);
465         if (rc != 0) {
466                 spin_lock(&lmv->lmv_lock);
467                 if (lmv->desc.ld_tgt_count == index + 1)
468                         lmv->desc.ld_tgt_count = orig_tgt_count;
469                 memset(tgt, 0, sizeof(*tgt));
470                 spin_unlock(&lmv->lmv_lock);
471         } else {
472                 int easize = sizeof(struct lmv_stripe_md) +
473                         lmv->desc.ld_tgt_count * sizeof(struct lu_fid);
474                 lmv_init_ea_size(obd->obd_self_export, easize, 0);
475         }
476
477         RETURN(rc);
478 }
479
480 static int lmv_check_connect(struct obd_device *obd)
481 {
482         struct lmv_obd          *lmv = &obd->u.lmv;
483         struct lmv_tgt_desc     *tgt;
484         __u32                    i;
485         int                      rc;
486         int                      easize;
487         ENTRY;
488
489         if (lmv->connected)
490                 RETURN(0);
491
492         mutex_lock(&lmv->lmv_init_mutex);
493         if (lmv->connected) {
494                 mutex_unlock(&lmv->lmv_init_mutex);
495                 RETURN(0);
496         }
497
498         if (lmv->desc.ld_tgt_count == 0) {
499                 mutex_unlock(&lmv->lmv_init_mutex);
500                 CERROR("%s: no targets configured.\n", obd->obd_name);
501                 RETURN(-EINVAL);
502         }
503
504         LASSERT(lmv->tgts != NULL);
505
506         if (lmv->tgts[0] == NULL) {
507                 mutex_unlock(&lmv->lmv_init_mutex);
508                 CERROR("%s: no target configured for index 0.\n",
509                        obd->obd_name);
510                 RETURN(-EINVAL);
511         }
512
513         CDEBUG(D_CONFIG, "Time to connect %s to %s\n",
514                obd->obd_uuid.uuid, obd->obd_name);
515
516         for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
517                 tgt = lmv->tgts[i];
518                 if (tgt == NULL)
519                         continue;
520                 rc = lmv_connect_mdc(obd, tgt);
521                 if (rc)
522                         GOTO(out_disc, rc);
523         }
524
525         lmv->connected = 1;
526         easize = lmv_mds_md_size(lmv->desc.ld_tgt_count, LMV_MAGIC);
527         lmv_init_ea_size(obd->obd_self_export, easize, 0);
528         mutex_unlock(&lmv->lmv_init_mutex);
529         RETURN(0);
530
531  out_disc:
532         while (i-- > 0) {
533                 int rc2;
534                 tgt = lmv->tgts[i];
535                 if (tgt == NULL)
536                         continue;
537                 tgt->ltd_active = 0;
538                 if (tgt->ltd_exp) {
539                         --lmv->desc.ld_active_tgt_count;
540                         rc2 = obd_disconnect(tgt->ltd_exp);
541                         if (rc2) {
542                                 CERROR("LMV target %s disconnect on "
543                                        "MDC idx %d: error %d\n",
544                                        tgt->ltd_uuid.uuid, i, rc2);
545                         }
546                 }
547         }
548
549         mutex_unlock(&lmv->lmv_init_mutex);
550
551         RETURN(rc);
552 }
553
554 static int lmv_disconnect_mdc(struct obd_device *obd, struct lmv_tgt_desc *tgt)
555 {
556         struct lmv_obd         *lmv = &obd->u.lmv;
557         struct obd_device      *mdc_obd;
558         int                     rc;
559         ENTRY;
560
561         LASSERT(tgt != NULL);
562         LASSERT(obd != NULL);
563
564         mdc_obd = class_exp2obd(tgt->ltd_exp);
565
566         if (mdc_obd) {
567                 mdc_obd->obd_force = obd->obd_force;
568                 mdc_obd->obd_fail = obd->obd_fail;
569                 mdc_obd->obd_no_recov = obd->obd_no_recov;
570
571                 if (lmv->lmv_tgts_kobj)
572                         sysfs_remove_link(lmv->lmv_tgts_kobj,
573                                           mdc_obd->obd_name);
574         }
575
576         rc = obd_fid_fini(tgt->ltd_exp->exp_obd);
577         if (rc)
578                 CERROR("Can't finanize fids factory\n");
579
580         CDEBUG(D_INFO, "Disconnected from %s(%s) successfully\n",
581                tgt->ltd_exp->exp_obd->obd_name,
582                tgt->ltd_exp->exp_obd->obd_uuid.uuid);
583
584         obd_register_observer(tgt->ltd_exp->exp_obd, NULL);
585         rc = obd_disconnect(tgt->ltd_exp);
586         if (rc) {
587                 if (tgt->ltd_active) {
588                         CERROR("Target %s disconnect error %d\n",
589                                tgt->ltd_uuid.uuid, rc);
590                 }
591         }
592
593         lmv_activate_target(lmv, tgt, 0);
594         tgt->ltd_exp = NULL;
595         RETURN(0);
596 }
597
598 static int lmv_disconnect(struct obd_export *exp)
599 {
600         struct obd_device       *obd = class_exp2obd(exp);
601         struct lmv_obd          *lmv = &obd->u.lmv;
602         int                      rc;
603         __u32                    i;
604         ENTRY;
605
606         if (!lmv->tgts)
607                 goto out_local;
608
609         for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
610                 if (lmv->tgts[i] == NULL || lmv->tgts[i]->ltd_exp == NULL)
611                         continue;
612
613                 lmv_disconnect_mdc(obd, lmv->tgts[i]);
614         }
615
616         if (lmv->lmv_tgts_kobj)
617                 kobject_put(lmv->lmv_tgts_kobj);
618
619 out_local:
620         /*
621          * This is the case when no real connection is established by
622          * lmv_check_connect().
623          */
624         if (!lmv->connected)
625                 class_export_put(exp);
626         rc = class_disconnect(exp);
627         lmv->connected = 0;
628
629         RETURN(rc);
630 }
631
632 static int lmv_fid2path(struct obd_export *exp, int len, void *karg,
633                         void __user *uarg)
634 {
635         struct obd_device       *obddev = class_exp2obd(exp);
636         struct lmv_obd          *lmv = &obddev->u.lmv;
637         struct getinfo_fid2path *gf;
638         struct lmv_tgt_desc     *tgt;
639         struct getinfo_fid2path *remote_gf = NULL;
640         struct lu_fid           root_fid;
641         int                     remote_gf_size = 0;
642         int                     rc;
643
644         gf = karg;
645         tgt = lmv_find_target(lmv, &gf->gf_fid);
646         if (IS_ERR(tgt))
647                 RETURN(PTR_ERR(tgt));
648
649         root_fid = *gf->gf_u.gf_root_fid;
650         LASSERT(fid_is_sane(&root_fid));
651
652 repeat_fid2path:
653         rc = obd_iocontrol(OBD_IOC_FID2PATH, tgt->ltd_exp, len, gf, uarg);
654         if (rc != 0 && rc != -EREMOTE)
655                 GOTO(out_fid2path, rc);
656
657         /* If remote_gf != NULL, it means just building the
658          * path on the remote MDT, copy this path segement to gf */
659         if (remote_gf != NULL) {
660                 struct getinfo_fid2path *ori_gf;
661                 char *ptr;
662                 int len;
663
664                 ori_gf = (struct getinfo_fid2path *)karg;
665                 if (strlen(ori_gf->gf_u.gf_path) + 1 +
666                     strlen(gf->gf_u.gf_path) + 1 > ori_gf->gf_pathlen)
667                         GOTO(out_fid2path, rc = -EOVERFLOW);
668
669                 ptr = ori_gf->gf_u.gf_path;
670
671                 len = strlen(gf->gf_u.gf_path);
672                 /* move the current path to the right to release space
673                  * for closer-to-root part */
674                 memmove(ptr + len + 1, ptr, strlen(ori_gf->gf_u.gf_path));
675                 memcpy(ptr, gf->gf_u.gf_path, len);
676                 ptr[len] = '/';
677         }
678
679         CDEBUG(D_INFO, "%s: get path %s "DFID" rec: %llu ln: %u\n",
680                tgt->ltd_exp->exp_obd->obd_name,
681                gf->gf_u.gf_path, PFID(&gf->gf_fid), gf->gf_recno,
682                gf->gf_linkno);
683
684         if (rc == 0)
685                 GOTO(out_fid2path, rc);
686
687         /* sigh, has to go to another MDT to do path building further */
688         if (remote_gf == NULL) {
689                 remote_gf_size = sizeof(*remote_gf) + PATH_MAX;
690                 OBD_ALLOC(remote_gf, remote_gf_size);
691                 if (remote_gf == NULL)
692                         GOTO(out_fid2path, rc = -ENOMEM);
693                 remote_gf->gf_pathlen = PATH_MAX;
694         }
695
696         if (!fid_is_sane(&gf->gf_fid)) {
697                 CERROR("%s: invalid FID "DFID": rc = %d\n",
698                        tgt->ltd_exp->exp_obd->obd_name,
699                        PFID(&gf->gf_fid), -EINVAL);
700                 GOTO(out_fid2path, rc = -EINVAL);
701         }
702
703         tgt = lmv_find_target(lmv, &gf->gf_fid);
704         if (IS_ERR(tgt))
705                 GOTO(out_fid2path, rc = -EINVAL);
706
707         remote_gf->gf_fid = gf->gf_fid;
708         remote_gf->gf_recno = -1;
709         remote_gf->gf_linkno = -1;
710         memset(remote_gf->gf_u.gf_path, 0, remote_gf->gf_pathlen);
711         *remote_gf->gf_u.gf_root_fid = root_fid;
712         gf = remote_gf;
713         goto repeat_fid2path;
714
715 out_fid2path:
716         if (remote_gf != NULL)
717                 OBD_FREE(remote_gf, remote_gf_size);
718         RETURN(rc);
719 }
720
721 static int lmv_hsm_req_count(struct lmv_obd *lmv,
722                              const struct hsm_user_request *hur,
723                              const struct lmv_tgt_desc *tgt_mds)
724 {
725         __u32                    i;
726         int                      nr = 0;
727         struct lmv_tgt_desc     *curr_tgt;
728
729         /* count how many requests must be sent to the given target */
730         for (i = 0; i < hur->hur_request.hr_itemcount; i++) {
731                 curr_tgt = lmv_find_target(lmv, &hur->hur_user_item[i].hui_fid);
732                 if (IS_ERR(curr_tgt))
733                         RETURN(PTR_ERR(curr_tgt));
734                 if (obd_uuid_equals(&curr_tgt->ltd_uuid, &tgt_mds->ltd_uuid))
735                         nr++;
736         }
737         return nr;
738 }
739
740 static int lmv_hsm_req_build(struct lmv_obd *lmv,
741                               struct hsm_user_request *hur_in,
742                               const struct lmv_tgt_desc *tgt_mds,
743                               struct hsm_user_request *hur_out)
744 {
745         __u32                    i, nr_out;
746         struct lmv_tgt_desc     *curr_tgt;
747
748         /* build the hsm_user_request for the given target */
749         hur_out->hur_request = hur_in->hur_request;
750         nr_out = 0;
751         for (i = 0; i < hur_in->hur_request.hr_itemcount; i++) {
752                 curr_tgt = lmv_find_target(lmv,
753                                            &hur_in->hur_user_item[i].hui_fid);
754                 if (IS_ERR(curr_tgt))
755                         RETURN(PTR_ERR(curr_tgt));
756                 if (obd_uuid_equals(&curr_tgt->ltd_uuid, &tgt_mds->ltd_uuid)) {
757                         hur_out->hur_user_item[nr_out] =
758                                                 hur_in->hur_user_item[i];
759                         nr_out++;
760                 }
761         }
762         hur_out->hur_request.hr_itemcount = nr_out;
763         memcpy(hur_data(hur_out), hur_data(hur_in),
764                hur_in->hur_request.hr_data_len);
765
766         RETURN(0);
767 }
768
769 static int lmv_hsm_ct_unregister(struct obd_device *obd, unsigned int cmd,
770                                  int len, struct lustre_kernelcomm *lk,
771                                  void __user *uarg)
772 {
773         struct lmv_obd *lmv = &obd->u.lmv;
774         __u32   i;
775         int     rc;
776         ENTRY;
777
778         /* unregister request (call from llapi_hsm_copytool_fini) */
779         for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
780                 struct lmv_tgt_desc *tgt = lmv->tgts[i];
781
782                 if (tgt == NULL || tgt->ltd_exp == NULL)
783                         continue;
784                 /* best effort: try to clean as much as possible
785                  * (continue on error) */
786                 obd_iocontrol(cmd, tgt->ltd_exp, len, lk, uarg);
787         }
788
789         /* Whatever the result, remove copytool from kuc groups.
790          * Unreached coordinators will get EPIPE on next requests
791          * and will unregister automatically.
792          */
793         rc = libcfs_kkuc_group_rem(&obd->obd_uuid, lk->lk_uid, lk->lk_group);
794
795         RETURN(rc);
796 }
797
798 static int lmv_hsm_ct_register(struct obd_device *obd, unsigned int cmd,
799                                int len, struct lustre_kernelcomm *lk,
800                                void __user *uarg)
801 {
802         struct lmv_obd *lmv = &obd->u.lmv;
803         struct file *filp;
804         __u32 i, j;
805         int err;
806         bool any_set = false;
807         struct kkuc_ct_data *kcd;
808         size_t kcd_size;
809         int rc = 0;
810         ENTRY;
811
812         filp = fget(lk->lk_wfd);
813         if (!filp)
814                 RETURN(-EBADF);
815
816         if (lk->lk_flags & LK_FLG_DATANR)
817                 kcd_size = offsetof(struct kkuc_ct_data,
818                                     kcd_archives[lk->lk_data_count]);
819         else
820                 kcd_size = sizeof(*kcd);
821
822         OBD_ALLOC(kcd, kcd_size);
823         if (kcd == NULL)
824                 GOTO(err_fput, rc = -ENOMEM);
825
826         kcd->kcd_nr_archives = lk->lk_data_count;
827         if (lk->lk_flags & LK_FLG_DATANR) {
828                 kcd->kcd_magic = KKUC_CT_DATA_ARRAY_MAGIC;
829                 if (lk->lk_data_count > 0)
830                         memcpy(kcd->kcd_archives, lk->lk_data,
831                                sizeof(*kcd->kcd_archives) * lk->lk_data_count);
832         } else {
833                 kcd->kcd_magic = KKUC_CT_DATA_BITMAP_MAGIC;
834         }
835
836         rc = libcfs_kkuc_group_add(filp, &obd->obd_uuid, lk->lk_uid,
837                                    lk->lk_group, kcd, kcd_size);
838         OBD_FREE(kcd, kcd_size);
839         if (rc)
840                 GOTO(err_fput, rc);
841
842         /* All or nothing: try to register to all MDS.
843          * In case of failure, unregister from previous MDS,
844          * except if it because of inactive target. */
845         for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
846                 struct lmv_tgt_desc *tgt = lmv->tgts[i];
847
848                 if (tgt == NULL || tgt->ltd_exp == NULL)
849                         continue;
850
851                 err = obd_iocontrol(cmd, tgt->ltd_exp, len, lk, uarg);
852                 if (err) {
853                         if (tgt->ltd_active) {
854                                 /* permanent error */
855                                 CERROR("%s: iocontrol MDC %s on MDT"
856                                        " idx %d cmd %x: err = %d\n",
857                                        lmv2obd_dev(lmv)->obd_name,
858                                        tgt->ltd_uuid.uuid, i, cmd, err);
859                                 rc = err;
860                                 lk->lk_flags |= LK_FLG_STOP;
861                                 /* unregister from previous MDS */
862                                 for (j = 0; j < i; j++) {
863                                         tgt = lmv->tgts[j];
864                                         if (tgt == NULL || tgt->ltd_exp == NULL)
865                                                 continue;
866                                         obd_iocontrol(cmd, tgt->ltd_exp, len,
867                                                       lk, uarg);
868                                 }
869                                 GOTO(err_kkuc_rem, rc);
870                         }
871                         /* else: transient error.
872                          * kuc will register to the missing MDT
873                          * when it is back */
874                 } else {
875                         any_set = true;
876                 }
877         }
878
879         if (!any_set)
880                 /* no registration done: return error */
881                 GOTO(err_kkuc_rem, rc = -ENOTCONN);
882
883         RETURN(0);
884
885 err_kkuc_rem:
886         libcfs_kkuc_group_rem(&obd->obd_uuid, lk->lk_uid, lk->lk_group);
887
888 err_fput:
889         fput(filp);
890         return rc;
891 }
892
893
894
895
896 static int lmv_iocontrol(unsigned int cmd, struct obd_export *exp,
897                          int len, void *karg, void __user *uarg)
898 {
899         struct obd_device       *obddev = class_exp2obd(exp);
900         struct lmv_obd          *lmv = &obddev->u.lmv;
901         struct lmv_tgt_desc     *tgt = NULL;
902         __u32                    i = 0;
903         int                      rc = 0;
904         int                      set = 0;
905         __u32                    count = lmv->desc.ld_tgt_count;
906         ENTRY;
907
908         if (count == 0)
909                 RETURN(-ENOTTY);
910
911         switch (cmd) {
912         case IOC_OBD_STATFS: {
913                 struct obd_ioctl_data *data = karg;
914                 struct obd_device *mdc_obd;
915                 struct obd_statfs stat_buf = {0};
916                 __u32 index;
917
918                 memcpy(&index, data->ioc_inlbuf2, sizeof(__u32));
919                 if ((index >= count))
920                         RETURN(-ENODEV);
921
922                 tgt = lmv->tgts[index];
923                 if (tgt == NULL || !tgt->ltd_active)
924                         RETURN(-ENODATA);
925
926                 mdc_obd = class_exp2obd(tgt->ltd_exp);
927                 if (!mdc_obd)
928                         RETURN(-EINVAL);
929
930                 /* copy UUID */
931                 if (copy_to_user(data->ioc_pbuf2, obd2cli_tgt(mdc_obd),
932                                  min((int) data->ioc_plen2,
933                                      (int) sizeof(struct obd_uuid))))
934                         RETURN(-EFAULT);
935
936                 rc = obd_statfs(NULL, tgt->ltd_exp, &stat_buf,
937                                 ktime_get_seconds() - OBD_STATFS_CACHE_SECONDS,
938                                 0);
939                 if (rc)
940                         RETURN(rc);
941                 if (copy_to_user(data->ioc_pbuf1, &stat_buf,
942                                  min((int) data->ioc_plen1,
943                                      (int) sizeof(stat_buf))))
944                         RETURN(-EFAULT);
945                 break;
946         }
947         case OBD_IOC_QUOTACTL: {
948                 struct if_quotactl *qctl = karg;
949                 struct obd_quotactl *oqctl;
950
951                 if (qctl->qc_valid == QC_MDTIDX) {
952                         if (count <= qctl->qc_idx)
953                                 RETURN(-EINVAL);
954
955                         tgt = lmv->tgts[qctl->qc_idx];
956                         if (tgt == NULL || tgt->ltd_exp == NULL)
957                                 RETURN(-EINVAL);
958                 } else if (qctl->qc_valid == QC_UUID) {
959                         for (i = 0; i < count; i++) {
960                                 tgt = lmv->tgts[i];
961                                 if (tgt == NULL)
962                                         continue;
963                                 if (!obd_uuid_equals(&tgt->ltd_uuid,
964                                                      &qctl->obd_uuid))
965                                         continue;
966
967                                 if (tgt->ltd_exp == NULL)
968                                         RETURN(-EINVAL);
969
970                                 break;
971                         }
972                 } else {
973                         RETURN(-EINVAL);
974                 }
975
976                 if (i >= count)
977                         RETURN(-EAGAIN);
978
979                 LASSERT(tgt != NULL && tgt->ltd_exp != NULL);
980                 OBD_ALLOC_PTR(oqctl);
981                 if (!oqctl)
982                         RETURN(-ENOMEM);
983
984                 QCTL_COPY(oqctl, qctl);
985                 rc = obd_quotactl(tgt->ltd_exp, oqctl);
986                 if (rc == 0) {
987                         QCTL_COPY(qctl, oqctl);
988                         qctl->qc_valid = QC_MDTIDX;
989                         qctl->obd_uuid = tgt->ltd_uuid;
990                 }
991                 OBD_FREE_PTR(oqctl);
992                 break;
993         }
994         case LL_IOC_GET_CONNECT_FLAGS: {
995                 tgt = lmv->tgts[0];
996                 if (tgt == NULL || tgt->ltd_exp == NULL)
997                         RETURN(-ENODATA);
998                 rc = obd_iocontrol(cmd, tgt->ltd_exp, len, karg, uarg);
999                 break;
1000         }
1001         case LL_IOC_FID2MDTIDX: {
1002                 struct lu_fid *fid = karg;
1003                 int             mdt_index;
1004
1005                 rc = lmv_fld_lookup(lmv, fid, &mdt_index);
1006                 if (rc != 0)
1007                         RETURN(rc);
1008
1009                 /* Note: this is from llite(see ll_dir_ioctl()), @uarg does not
1010                  * point to user space memory for FID2MDTIDX. */
1011                 *(__u32 *)uarg = mdt_index;
1012                 break;
1013         }
1014         case OBD_IOC_FID2PATH: {
1015                 rc = lmv_fid2path(exp, len, karg, uarg);
1016                 break;
1017         }
1018         case LL_IOC_HSM_STATE_GET:
1019         case LL_IOC_HSM_STATE_SET:
1020         case LL_IOC_HSM_ACTION: {
1021                 struct md_op_data       *op_data = karg;
1022
1023                 tgt = lmv_find_target(lmv, &op_data->op_fid1);
1024                 if (IS_ERR(tgt))
1025                         RETURN(PTR_ERR(tgt));
1026
1027                 if (tgt->ltd_exp == NULL)
1028                         RETURN(-EINVAL);
1029
1030                 rc = obd_iocontrol(cmd, tgt->ltd_exp, len, karg, uarg);
1031                 break;
1032         }
1033         case LL_IOC_HSM_PROGRESS: {
1034                 const struct hsm_progress_kernel *hpk = karg;
1035
1036                 tgt = lmv_find_target(lmv, &hpk->hpk_fid);
1037                 if (IS_ERR(tgt))
1038                         RETURN(PTR_ERR(tgt));
1039                 rc = obd_iocontrol(cmd, tgt->ltd_exp, len, karg, uarg);
1040                 break;
1041         }
1042         case LL_IOC_HSM_REQUEST: {
1043                 struct hsm_user_request *hur = karg;
1044                 unsigned int reqcount = hur->hur_request.hr_itemcount;
1045
1046                 if (reqcount == 0)
1047                         RETURN(0);
1048
1049                 /* if the request is about a single fid
1050                  * or if there is a single MDS, no need to split
1051                  * the request. */
1052                 if (reqcount == 1 || count == 1) {
1053                         tgt = lmv_find_target(lmv,
1054                                               &hur->hur_user_item[0].hui_fid);
1055                         if (IS_ERR(tgt))
1056                                 RETURN(PTR_ERR(tgt));
1057                         rc = obd_iocontrol(cmd, tgt->ltd_exp, len, karg, uarg);
1058                 } else {
1059                         /* split fid list to their respective MDS */
1060                         for (i = 0; i < count; i++) {
1061                                 int nr, rc1;
1062                                 size_t reqlen;
1063                                 struct hsm_user_request *req;
1064
1065                                 tgt = lmv->tgts[i];
1066                                 if (tgt == NULL || tgt->ltd_exp == NULL)
1067                                         continue;
1068
1069                                 nr = lmv_hsm_req_count(lmv, hur, tgt);
1070                                 if (nr < 0)
1071                                         RETURN(nr);
1072                                 if (nr == 0) /* nothing for this MDS */
1073                                         continue;
1074
1075                                 /* build a request with fids for this MDS */
1076                                 reqlen = offsetof(typeof(*hur),
1077                                                   hur_user_item[nr])
1078                                                 + hur->hur_request.hr_data_len;
1079                                 OBD_ALLOC_LARGE(req, reqlen);
1080                                 if (req == NULL)
1081                                         RETURN(-ENOMEM);
1082                                 rc1 = lmv_hsm_req_build(lmv, hur, tgt, req);
1083                                 if (rc1 < 0)
1084                                         GOTO(hsm_req_err, rc1);
1085                                 rc1 = obd_iocontrol(cmd, tgt->ltd_exp, reqlen,
1086                                                     req, uarg);
1087 hsm_req_err:
1088                                 if (rc1 != 0 && rc == 0)
1089                                         rc = rc1;
1090                                 OBD_FREE_LARGE(req, reqlen);
1091                         }
1092                 }
1093                 break;
1094         }
1095         case LL_IOC_LOV_SWAP_LAYOUTS: {
1096                 struct md_op_data       *op_data = karg;
1097                 struct lmv_tgt_desc     *tgt1, *tgt2;
1098
1099                 tgt1 = lmv_find_target(lmv, &op_data->op_fid1);
1100                 if (IS_ERR(tgt1))
1101                         RETURN(PTR_ERR(tgt1));
1102
1103                 tgt2 = lmv_find_target(lmv, &op_data->op_fid2);
1104                 if (IS_ERR(tgt2))
1105                         RETURN(PTR_ERR(tgt2));
1106
1107                 if ((tgt1->ltd_exp == NULL) || (tgt2->ltd_exp == NULL))
1108                         RETURN(-EINVAL);
1109
1110                 /* only files on same MDT can have their layouts swapped */
1111                 if (tgt1->ltd_idx != tgt2->ltd_idx)
1112                         RETURN(-EPERM);
1113
1114                 rc = obd_iocontrol(cmd, tgt1->ltd_exp, len, karg, uarg);
1115                 break;
1116         }
1117         case LL_IOC_HSM_CT_START: {
1118                 struct lustre_kernelcomm *lk = karg;
1119                 if (lk->lk_flags & LK_FLG_STOP)
1120                         rc = lmv_hsm_ct_unregister(obddev, cmd, len, lk, uarg);
1121                 else
1122                         rc = lmv_hsm_ct_register(obddev, cmd, len, lk, uarg);
1123                 break;
1124         }
1125         default:
1126                 for (i = 0; i < count; i++) {
1127                         struct obd_device *mdc_obd;
1128                         int err;
1129
1130                         tgt = lmv->tgts[i];
1131                         if (tgt == NULL || tgt->ltd_exp == NULL)
1132                                 continue;
1133                         /* ll_umount_begin() sets force flag but for lmv, not
1134                          * mdc. Let's pass it through */
1135                         mdc_obd = class_exp2obd(tgt->ltd_exp);
1136                         mdc_obd->obd_force = obddev->obd_force;
1137                         err = obd_iocontrol(cmd, tgt->ltd_exp, len, karg, uarg);
1138                         if (err) {
1139                                 if (tgt->ltd_active) {
1140                                         CERROR("error: iocontrol MDC %s on MDT"
1141                                                " idx %d cmd %x: err = %d\n",
1142                                                tgt->ltd_uuid.uuid, i, cmd, err);
1143                                         if (!rc)
1144                                                 rc = err;
1145                                 }
1146                         } else
1147                                 set = 1;
1148                 }
1149                 if (!set && !rc)
1150                         rc = -EIO;
1151         }
1152         RETURN(rc);
1153 }
1154
1155 /**
1156  * This is _inode_ placement policy function (not name).
1157  */
1158 static int lmv_placement_policy(struct obd_device *obd,
1159                                 struct md_op_data *op_data, u32 *mds)
1160 {
1161         struct lmv_obd     *lmv = &obd->u.lmv;
1162         struct lmv_user_md *lum;
1163
1164         ENTRY;
1165
1166         LASSERT(mds != NULL);
1167
1168         if (lmv->desc.ld_tgt_count == 1) {
1169                 *mds = 0;
1170                 RETURN(0);
1171         }
1172
1173         lum = op_data->op_data;
1174         /* Choose MDS by
1175          * 1. See if the stripe offset is specified by lum.
1176          * 2. Then check if there is default stripe offset.
1177          * 3. Finally choose MDS by name hash if the parent
1178          *    is striped directory. (see lmv_locate_tgt()). */
1179         if (op_data->op_cli_flags & CLI_SET_MEA && lum != NULL &&
1180             le32_to_cpu(lum->lum_stripe_offset) != (__u32)-1) {
1181                 *mds = le32_to_cpu(lum->lum_stripe_offset);
1182         } else if (op_data->op_default_stripe_offset != (__u32)-1) {
1183                 *mds = op_data->op_default_stripe_offset;
1184                 op_data->op_mds = *mds;
1185                 /* Correct the stripe offset in lum */
1186                 if (lum != NULL)
1187                         lum->lum_stripe_offset = cpu_to_le32(*mds);
1188         } else {
1189                 *mds = op_data->op_mds;
1190         }
1191
1192         RETURN(0);
1193 }
1194
1195 int __lmv_fid_alloc(struct lmv_obd *lmv, struct lu_fid *fid, u32 mds)
1196 {
1197         struct lmv_tgt_desc     *tgt;
1198         int                      rc;
1199         ENTRY;
1200
1201         tgt = lmv_get_target(lmv, mds, NULL);
1202         if (IS_ERR(tgt))
1203                 RETURN(PTR_ERR(tgt));
1204
1205         /*
1206          * New seq alloc and FLD setup should be atomic. Otherwise we may find
1207          * on server that seq in new allocated fid is not yet known.
1208          */
1209         mutex_lock(&tgt->ltd_fid_mutex);
1210
1211         if (tgt->ltd_active == 0 || tgt->ltd_exp == NULL)
1212                 GOTO(out, rc = -ENODEV);
1213
1214         /*
1215          * Asking underlying tgt layer to allocate new fid.
1216          */
1217         rc = obd_fid_alloc(NULL, tgt->ltd_exp, fid, NULL);
1218         if (rc > 0) {
1219                 LASSERT(fid_is_sane(fid));
1220                 rc = 0;
1221         }
1222
1223         EXIT;
1224 out:
1225         mutex_unlock(&tgt->ltd_fid_mutex);
1226         return rc;
1227 }
1228
1229 int lmv_fid_alloc(const struct lu_env *env, struct obd_export *exp,
1230                   struct lu_fid *fid, struct md_op_data *op_data)
1231 {
1232         struct obd_device     *obd = class_exp2obd(exp);
1233         struct lmv_obd        *lmv = &obd->u.lmv;
1234         u32                    mds = 0;
1235         int                    rc;
1236         ENTRY;
1237
1238         LASSERT(op_data != NULL);
1239         LASSERT(fid != NULL);
1240
1241         rc = lmv_placement_policy(obd, op_data, &mds);
1242         if (rc) {
1243                 CERROR("Can't get target for allocating fid, "
1244                        "rc %d\n", rc);
1245                 RETURN(rc);
1246         }
1247
1248         rc = __lmv_fid_alloc(lmv, fid, mds);
1249         if (rc) {
1250                 CERROR("Can't alloc new fid, rc %d\n", rc);
1251                 RETURN(rc);
1252         }
1253
1254         RETURN(rc);
1255 }
1256
1257 static int lmv_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
1258 {
1259         struct lmv_obd  *lmv = &obd->u.lmv;
1260         struct lmv_desc *desc;
1261         int             rc;
1262         ENTRY;
1263
1264         if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1) {
1265                 CERROR("LMV setup requires a descriptor\n");
1266                 RETURN(-EINVAL);
1267         }
1268
1269         desc = (struct lmv_desc *)lustre_cfg_buf(lcfg, 1);
1270         if (sizeof(*desc) > LUSTRE_CFG_BUFLEN(lcfg, 1)) {
1271                 CERROR("Lmv descriptor size wrong: %d > %d\n",
1272                        (int)sizeof(*desc), LUSTRE_CFG_BUFLEN(lcfg, 1));
1273                 RETURN(-EINVAL);
1274         }
1275
1276         lmv->tgts_size = 32U;
1277         OBD_ALLOC(lmv->tgts, sizeof(*lmv->tgts) * lmv->tgts_size);
1278         if (lmv->tgts == NULL)
1279                 RETURN(-ENOMEM);
1280
1281         obd_str2uuid(&lmv->desc.ld_uuid, desc->ld_uuid.uuid);
1282         lmv->desc.ld_tgt_count = 0;
1283         lmv->desc.ld_active_tgt_count = 0;
1284         lmv->max_def_easize = 0;
1285         lmv->max_easize = 0;
1286
1287         spin_lock_init(&lmv->lmv_lock);
1288         mutex_init(&lmv->lmv_init_mutex);
1289
1290         rc = lmv_tunables_init(obd);
1291         if (rc)
1292                 CWARN("%s: error adding LMV sysfs/debugfs files: rc = %d\n",
1293                       obd->obd_name, rc);
1294
1295         rc = fld_client_init(&lmv->lmv_fld, obd->obd_name,
1296                              LUSTRE_CLI_FLD_HASH_DHT);
1297         if (rc) {
1298                 CERROR("Can't init FLD, err %d\n", rc);
1299                 GOTO(out, rc);
1300         }
1301
1302         RETURN(0);
1303
1304 out:
1305         return rc;
1306 }
1307
1308 static int lmv_cleanup(struct obd_device *obd)
1309 {
1310         struct lmv_obd   *lmv = &obd->u.lmv;
1311         ENTRY;
1312
1313         fld_client_fini(&lmv->lmv_fld);
1314         if (lmv->tgts != NULL) {
1315                 int i;
1316                 for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
1317                         if (lmv->tgts[i] == NULL)
1318                                 continue;
1319                         lmv_del_target(lmv, i);
1320                 }
1321                 OBD_FREE(lmv->tgts, sizeof(*lmv->tgts) * lmv->tgts_size);
1322                 lmv->tgts_size = 0;
1323         }
1324         RETURN(0);
1325 }
1326
1327 static int lmv_process_config(struct obd_device *obd, size_t len, void *buf)
1328 {
1329         struct lustre_cfg       *lcfg = buf;
1330         struct obd_uuid         obd_uuid;
1331         int                     gen;
1332         __u32                   index;
1333         int                     rc;
1334         ENTRY;
1335
1336         switch (lcfg->lcfg_command) {
1337         case LCFG_ADD_MDC:
1338                 /* modify_mdc_tgts add 0:lustre-clilmv  1:lustre-MDT0000_UUID
1339                  * 2:0  3:1  4:lustre-MDT0000-mdc_UUID */
1340                 if (LUSTRE_CFG_BUFLEN(lcfg, 1) > sizeof(obd_uuid.uuid))
1341                         GOTO(out, rc = -EINVAL);
1342
1343                 obd_str2uuid(&obd_uuid,  lustre_cfg_buf(lcfg, 1));
1344
1345                 if (sscanf(lustre_cfg_buf(lcfg, 2), "%u", &index) != 1)
1346                         GOTO(out, rc = -EINVAL);
1347                 if (sscanf(lustre_cfg_buf(lcfg, 3), "%d", &gen) != 1)
1348                         GOTO(out, rc = -EINVAL);
1349                 rc = lmv_add_target(obd, &obd_uuid, index, gen);
1350                 GOTO(out, rc);
1351         default:
1352                 CERROR("Unknown command: %d\n", lcfg->lcfg_command);
1353                 GOTO(out, rc = -EINVAL);
1354         }
1355 out:
1356         RETURN(rc);
1357 }
1358
1359 static int lmv_select_statfs_mdt(struct lmv_obd *lmv, __u32 flags)
1360 {
1361         int i;
1362
1363         if (flags & OBD_STATFS_FOR_MDT0)
1364                 return 0;
1365
1366         if (lmv->lmv_statfs_start || lmv->desc.ld_tgt_count == 1)
1367                 return lmv->lmv_statfs_start;
1368
1369         /* choose initial MDT for this client */
1370         for (i = 0;; i++) {
1371                 struct lnet_process_id lnet_id;
1372                 if (LNetGetId(i, &lnet_id) == -ENOENT)
1373                         break;
1374
1375                 if (lnet_id.nid != LNET_NID_LO_0) {
1376                         /* We dont need a full 64-bit modulus, just enough
1377                          * to distribute the requests across MDTs evenly.
1378                          */
1379                         lmv->lmv_statfs_start =
1380                                 (u32)lnet_id.nid % lmv->desc.ld_tgt_count;
1381                         break;
1382                 }
1383         }
1384
1385         return lmv->lmv_statfs_start;
1386 }
1387
1388 static int lmv_statfs(const struct lu_env *env, struct obd_export *exp,
1389                       struct obd_statfs *osfs, time64_t max_age, __u32 flags)
1390 {
1391         struct obd_device       *obd = class_exp2obd(exp);
1392         struct lmv_obd          *lmv = &obd->u.lmv;
1393         struct obd_statfs       *temp;
1394         int                      rc = 0;
1395         __u32                    i, idx;
1396         ENTRY;
1397
1398         OBD_ALLOC(temp, sizeof(*temp));
1399         if (temp == NULL)
1400                 RETURN(-ENOMEM);
1401
1402         /* distribute statfs among MDTs */
1403         idx = lmv_select_statfs_mdt(lmv, flags);
1404
1405         for (i = 0; i < lmv->desc.ld_tgt_count; i++, idx++) {
1406                 idx = idx % lmv->desc.ld_tgt_count;
1407                 if (lmv->tgts[idx] == NULL || lmv->tgts[idx]->ltd_exp == NULL)
1408                         continue;
1409
1410                 rc = obd_statfs(env, lmv->tgts[idx]->ltd_exp, temp,
1411                                 max_age, flags);
1412                 if (rc) {
1413                         CERROR("%s: can't stat MDS #%d: rc = %d\n",
1414                                lmv->tgts[idx]->ltd_exp->exp_obd->obd_name, i,
1415                                rc);
1416                         GOTO(out_free_temp, rc);
1417                 }
1418
1419                 if (temp->os_state & OS_STATE_SUM ||
1420                     flags == OBD_STATFS_FOR_MDT0) {
1421                         /* reset to the last aggregated values
1422                          * and don't sum with non-aggrated data */
1423                         /* If the statfs is from mount, it needs to retrieve
1424                          * necessary information from MDT0. i.e. mount does
1425                          * not need the merged osfs from all of MDT. Also
1426                          * clients can be mounted as long as MDT0 is in
1427                          * service */
1428                         *osfs = *temp;
1429                         break;
1430                 }
1431
1432                 if (i == 0) {
1433                         *osfs = *temp;
1434                 } else {
1435                         osfs->os_bavail += temp->os_bavail;
1436                         osfs->os_blocks += temp->os_blocks;
1437                         osfs->os_ffree += temp->os_ffree;
1438                         osfs->os_files += temp->os_files;
1439                         osfs->os_granted += temp->os_granted;
1440                 }
1441         }
1442
1443         EXIT;
1444 out_free_temp:
1445         OBD_FREE(temp, sizeof(*temp));
1446         return rc;
1447 }
1448
1449 static int lmv_get_root(struct obd_export *exp, const char *fileset,
1450                         struct lu_fid *fid)
1451 {
1452         struct obd_device    *obd = exp->exp_obd;
1453         struct lmv_obd       *lmv = &obd->u.lmv;
1454         int                   rc;
1455         ENTRY;
1456
1457         rc = md_get_root(lmv->tgts[0]->ltd_exp, fileset, fid);
1458         RETURN(rc);
1459 }
1460
1461 static int lmv_getxattr(struct obd_export *exp, const struct lu_fid *fid,
1462                         u64 obd_md_valid, const char *name, size_t buf_size,
1463                         struct ptlrpc_request **req)
1464 {
1465         struct obd_device      *obd = exp->exp_obd;
1466         struct lmv_obd         *lmv = &obd->u.lmv;
1467         struct lmv_tgt_desc    *tgt;
1468         int                     rc;
1469         ENTRY;
1470
1471         tgt = lmv_find_target(lmv, fid);
1472         if (IS_ERR(tgt))
1473                 RETURN(PTR_ERR(tgt));
1474
1475         rc = md_getxattr(tgt->ltd_exp, fid, obd_md_valid, name, buf_size, req);
1476
1477         RETURN(rc);
1478 }
1479
1480 static int lmv_setxattr(struct obd_export *exp, const struct lu_fid *fid,
1481                         u64 obd_md_valid, const char *name,
1482                         const void *value, size_t value_size,
1483                         unsigned int xattr_flags, u32 suppgid,
1484                         struct ptlrpc_request **req)
1485 {
1486         struct obd_device      *obd = exp->exp_obd;
1487         struct lmv_obd         *lmv = &obd->u.lmv;
1488         struct lmv_tgt_desc    *tgt;
1489         int                     rc;
1490         ENTRY;
1491
1492         tgt = lmv_find_target(lmv, fid);
1493         if (IS_ERR(tgt))
1494                 RETURN(PTR_ERR(tgt));
1495
1496         rc = md_setxattr(tgt->ltd_exp, fid, obd_md_valid, name,
1497                          value, value_size, xattr_flags, suppgid, req);
1498
1499         RETURN(rc);
1500 }
1501
1502 static int lmv_getattr(struct obd_export *exp, struct md_op_data *op_data,
1503                        struct ptlrpc_request **request)
1504 {
1505         struct obd_device       *obd = exp->exp_obd;
1506         struct lmv_obd          *lmv = &obd->u.lmv;
1507         struct lmv_tgt_desc     *tgt;
1508         int                      rc;
1509         ENTRY;
1510
1511         tgt = lmv_find_target(lmv, &op_data->op_fid1);
1512         if (IS_ERR(tgt))
1513                 RETURN(PTR_ERR(tgt));
1514
1515         if (op_data->op_flags & MF_GET_MDT_IDX) {
1516                 op_data->op_mds = tgt->ltd_idx;
1517                 RETURN(0);
1518         }
1519
1520         rc = md_getattr(tgt->ltd_exp, op_data, request);
1521
1522         RETURN(rc);
1523 }
1524
1525 static int lmv_null_inode(struct obd_export *exp, const struct lu_fid *fid)
1526 {
1527         struct obd_device   *obd = exp->exp_obd;
1528         struct lmv_obd      *lmv = &obd->u.lmv;
1529         __u32                i;
1530         ENTRY;
1531
1532         CDEBUG(D_INODE, "CBDATA for "DFID"\n", PFID(fid));
1533
1534         /*
1535          * With DNE every object can have two locks in different namespaces:
1536          * lookup lock in space of MDT storing direntry and update/open lock in
1537          * space of MDT storing inode.
1538          */
1539         for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
1540                 if (lmv->tgts[i] == NULL || lmv->tgts[i]->ltd_exp == NULL)
1541                         continue;
1542                 md_null_inode(lmv->tgts[i]->ltd_exp, fid);
1543         }
1544
1545         RETURN(0);
1546 }
1547
1548 static int lmv_close(struct obd_export *exp, struct md_op_data *op_data,
1549                      struct md_open_data *mod, struct ptlrpc_request **request)
1550 {
1551         struct obd_device     *obd = exp->exp_obd;
1552         struct lmv_obd        *lmv = &obd->u.lmv;
1553         struct lmv_tgt_desc   *tgt;
1554         int                    rc;
1555         ENTRY;
1556
1557         tgt = lmv_find_target(lmv, &op_data->op_fid1);
1558         if (IS_ERR(tgt))
1559                 RETURN(PTR_ERR(tgt));
1560
1561         CDEBUG(D_INODE, "CLOSE "DFID"\n", PFID(&op_data->op_fid1));
1562         rc = md_close(tgt->ltd_exp, op_data, mod, request);
1563         RETURN(rc);
1564 }
1565
1566 struct lmv_tgt_desc*
1567 __lmv_locate_tgt(struct lmv_obd *lmv, struct lmv_stripe_md *lsm,
1568                  const char *name, int namelen, struct lu_fid *fid, u32 *mds,
1569                  bool post_migrate)
1570 {
1571         struct lmv_tgt_desc *tgt;
1572         const struct lmv_oinfo *oinfo;
1573
1574         if (lsm == NULL || namelen == 0) {
1575                 tgt = lmv_find_target(lmv, fid);
1576                 if (IS_ERR(tgt))
1577                         return tgt;
1578
1579                 LASSERT(mds);
1580                 *mds = tgt->ltd_idx;
1581                 return tgt;
1582         }
1583
1584         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_NAME_HASH)) {
1585                 if (cfs_fail_val >= lsm->lsm_md_stripe_count)
1586                         return ERR_PTR(-EBADF);
1587                 oinfo = &lsm->lsm_md_oinfo[cfs_fail_val];
1588         } else {
1589                 oinfo = lsm_name_to_stripe_info(lsm, name, namelen,
1590                                                 post_migrate);
1591                 if (IS_ERR(oinfo))
1592                         return ERR_CAST(oinfo);
1593         }
1594
1595         if (fid != NULL)
1596                 *fid = oinfo->lmo_fid;
1597         if (mds != NULL)
1598                 *mds = oinfo->lmo_mds;
1599         /* check stripe FID is sane */
1600         if (!fid_is_sane(&oinfo->lmo_fid))
1601                 return ERR_PTR(-ENODEV);
1602
1603         tgt = lmv_get_target(lmv, oinfo->lmo_mds, NULL);
1604
1605         CDEBUG(D_INFO, "locate on mds %u "DFID"\n", oinfo->lmo_mds,
1606                PFID(&oinfo->lmo_fid));
1607
1608         return tgt;
1609 }
1610
1611
1612 /**
1613  * Locate mdt by fid or name
1614  *
1615  * For striped directory, it will locate the stripe by name hash, if hash_type
1616  * is unknown, it will return the stripe specified by 'op_data->op_stripe_index'
1617  * which is set outside, and if dir is migrating, 'op_data->op_post_migrate'
1618  * indicates whether old or new layout is used to locate.
1619  *
1620  * For normal direcotry, it will locate MDS by FID directly.
1621  *
1622  * \param[in] lmv       LMV device
1623  * \param[in] op_data   client MD stack parameters, name, namelen
1624  *                      mds_num etc.
1625  * \param[in] fid       object FID used to locate MDS.
1626  *
1627  * retval               pointer to the lmv_tgt_desc if succeed.
1628  *                      ERR_PTR(errno) if failed.
1629  */
1630 struct lmv_tgt_desc*
1631 lmv_locate_tgt(struct lmv_obd *lmv, struct md_op_data *op_data,
1632                struct lu_fid *fid)
1633 {
1634         struct lmv_stripe_md *lsm = op_data->op_mea1;
1635         struct lmv_oinfo *oinfo;
1636         struct lmv_tgt_desc *tgt;
1637
1638         /* During creating VOLATILE file, it should honor the mdt
1639          * index if the file under striped dir is being restored, see
1640          * ct_restore(). */
1641         if (op_data->op_bias & MDS_CREATE_VOLATILE &&
1642             (int)op_data->op_mds != -1) {
1643                 tgt = lmv_get_target(lmv, op_data->op_mds, NULL);
1644                 if (IS_ERR(tgt))
1645                         return tgt;
1646
1647                 if (lsm) {
1648                         int i;
1649
1650                         /* refill the right parent fid */
1651                         for (i = 0; i < lsm->lsm_md_stripe_count; i++) {
1652                                 oinfo = &lsm->lsm_md_oinfo[i];
1653                                 if (oinfo->lmo_mds == op_data->op_mds) {
1654                                         *fid = oinfo->lmo_fid;
1655                                         break;
1656                                 }
1657                         }
1658
1659                         if (i == lsm->lsm_md_stripe_count)
1660                                 *fid = lsm->lsm_md_oinfo[0].lmo_fid;
1661                 }
1662         } else if (lmv_is_dir_bad_hash(lsm)) {
1663                 LASSERT(op_data->op_stripe_index < lsm->lsm_md_stripe_count);
1664                 oinfo = &lsm->lsm_md_oinfo[op_data->op_stripe_index];
1665
1666                 *fid = oinfo->lmo_fid;
1667                 op_data->op_mds = oinfo->lmo_mds;
1668                 tgt = lmv_get_target(lmv, oinfo->lmo_mds, NULL);
1669         } else {
1670                 tgt = __lmv_locate_tgt(lmv, lsm, op_data->op_name,
1671                                        op_data->op_namelen, fid,
1672                                        &op_data->op_mds,
1673                                        op_data->op_post_migrate);
1674         }
1675
1676         return tgt;
1677 }
1678
1679 int lmv_create(struct obd_export *exp, struct md_op_data *op_data,
1680                 const void *data, size_t datalen, umode_t mode, uid_t uid,
1681                 gid_t gid, cfs_cap_t cap_effective, __u64 rdev,
1682                 struct ptlrpc_request **request)
1683 {
1684         struct obd_device       *obd = exp->exp_obd;
1685         struct lmv_obd          *lmv = &obd->u.lmv;
1686         struct lmv_tgt_desc     *tgt;
1687         int                      rc;
1688         ENTRY;
1689
1690         if (!lmv->desc.ld_active_tgt_count)
1691                 RETURN(-EIO);
1692
1693         if (lmv_is_dir_bad_hash(op_data->op_mea1))
1694                 RETURN(-EBADF);
1695
1696         if (lmv_is_dir_migrating(op_data->op_mea1)) {
1697                 /*
1698                  * if parent is migrating, create() needs to lookup existing
1699                  * name, to avoid creating new file under old layout of
1700                  * migrating directory, check old layout here.
1701                  */
1702                 tgt = lmv_locate_tgt(lmv, op_data, &op_data->op_fid1);
1703                 if (IS_ERR(tgt))
1704                         RETURN(PTR_ERR(tgt));
1705
1706                 rc = md_getattr_name(tgt->ltd_exp, op_data, request);
1707                 if (!rc) {
1708                         ptlrpc_req_finished(*request);
1709                         *request = NULL;
1710                         RETURN(-EEXIST);
1711                 }
1712
1713                 if (rc != -ENOENT)
1714                         RETURN(rc);
1715
1716                 op_data->op_post_migrate = true;
1717         }
1718
1719         tgt = lmv_locate_tgt(lmv, op_data, &op_data->op_fid1);
1720         if (IS_ERR(tgt))
1721                 RETURN(PTR_ERR(tgt));
1722
1723         CDEBUG(D_INODE, "CREATE name '%.*s' on "DFID" -> mds #%x\n",
1724                 (int)op_data->op_namelen, op_data->op_name,
1725                 PFID(&op_data->op_fid1), op_data->op_mds);
1726
1727         rc = lmv_fid_alloc(NULL, exp, &op_data->op_fid2, op_data);
1728         if (rc)
1729                 RETURN(rc);
1730
1731         if (exp_connect_flags(exp) & OBD_CONNECT_DIR_STRIPE) {
1732                 /* Send the create request to the MDT where the object
1733                  * will be located */
1734                 tgt = lmv_find_target(lmv, &op_data->op_fid2);
1735                 if (IS_ERR(tgt))
1736                         RETURN(PTR_ERR(tgt));
1737
1738                 op_data->op_mds = tgt->ltd_idx;
1739         } else {
1740                 CDEBUG(D_CONFIG, "Server doesn't support striped dirs\n");
1741         }
1742
1743         CDEBUG(D_INODE, "CREATE obj "DFID" -> mds #%x\n",
1744                PFID(&op_data->op_fid2), op_data->op_mds);
1745
1746         op_data->op_flags |= MF_MDC_CANCEL_FID1;
1747         rc = md_create(tgt->ltd_exp, op_data, data, datalen, mode, uid, gid,
1748                        cap_effective, rdev, request);
1749         if (rc == 0) {
1750                 if (*request == NULL)
1751                         RETURN(rc);
1752                 CDEBUG(D_INODE, "Created - "DFID"\n", PFID(&op_data->op_fid2));
1753         }
1754         RETURN(rc);
1755 }
1756
1757 static int
1758 lmv_enqueue(struct obd_export *exp, struct ldlm_enqueue_info *einfo,
1759             const union ldlm_policy_data *policy, struct md_op_data *op_data,
1760             struct lustre_handle *lockh, __u64 extra_lock_flags)
1761 {
1762         struct obd_device        *obd = exp->exp_obd;
1763         struct lmv_obd           *lmv = &obd->u.lmv;
1764         struct lmv_tgt_desc      *tgt;
1765         int                       rc;
1766         ENTRY;
1767
1768         CDEBUG(D_INODE, "ENQUEUE on "DFID"\n", PFID(&op_data->op_fid1));
1769
1770         tgt = lmv_find_target(lmv, &op_data->op_fid1);
1771         if (IS_ERR(tgt))
1772                 RETURN(PTR_ERR(tgt));
1773
1774         CDEBUG(D_INODE, "ENQUEUE on "DFID" -> mds #%u\n",
1775                PFID(&op_data->op_fid1), tgt->ltd_idx);
1776
1777         rc = md_enqueue(tgt->ltd_exp, einfo, policy, op_data, lockh,
1778                         extra_lock_flags);
1779
1780         RETURN(rc);
1781 }
1782
1783 int
1784 lmv_getattr_name(struct obd_export *exp,struct md_op_data *op_data,
1785                  struct ptlrpc_request **preq)
1786 {
1787         struct obd_device *obd = exp->exp_obd;
1788         struct lmv_obd *lmv = &obd->u.lmv;
1789         struct lmv_tgt_desc *tgt;
1790         struct mdt_body *body;
1791         int rc;
1792
1793         ENTRY;
1794
1795 retry:
1796         tgt = lmv_locate_tgt(lmv, op_data, &op_data->op_fid1);
1797         if (IS_ERR(tgt))
1798                 RETURN(PTR_ERR(tgt));
1799
1800         CDEBUG(D_INODE, "GETATTR_NAME for %*s on "DFID" -> mds #%d\n",
1801                 (int)op_data->op_namelen, op_data->op_name,
1802                 PFID(&op_data->op_fid1), tgt->ltd_idx);
1803
1804         rc = md_getattr_name(tgt->ltd_exp, op_data, preq);
1805         if (rc == -ENOENT && lmv_dir_retry_check_update(op_data)) {
1806                 ptlrpc_req_finished(*preq);
1807                 *preq = NULL;
1808                 goto retry;
1809         }
1810
1811         if (rc)
1812                 RETURN(rc);
1813
1814         body = req_capsule_server_get(&(*preq)->rq_pill, &RMF_MDT_BODY);
1815         LASSERT(body != NULL);
1816
1817         if (body->mbo_valid & OBD_MD_MDS) {
1818                 op_data->op_fid1 = body->mbo_fid1;
1819                 op_data->op_valid |= OBD_MD_FLCROSSREF;
1820                 op_data->op_namelen = 0;
1821                 op_data->op_name = NULL;
1822
1823                 ptlrpc_req_finished(*preq);
1824                 *preq = NULL;
1825
1826                 goto retry;
1827         }
1828
1829         RETURN(rc);
1830 }
1831
1832 #define md_op_data_fid(op_data, fl)                     \
1833         (fl == MF_MDC_CANCEL_FID1 ? &op_data->op_fid1 : \
1834          fl == MF_MDC_CANCEL_FID2 ? &op_data->op_fid2 : \
1835          fl == MF_MDC_CANCEL_FID3 ? &op_data->op_fid3 : \
1836          fl == MF_MDC_CANCEL_FID4 ? &op_data->op_fid4 : \
1837          NULL)
1838
1839 static int lmv_early_cancel(struct obd_export *exp, struct lmv_tgt_desc *tgt,
1840                             struct md_op_data *op_data, __u32 op_tgt,
1841                             enum ldlm_mode mode, int bits, int flag)
1842 {
1843         struct lu_fid *fid = md_op_data_fid(op_data, flag);
1844         struct lmv_obd *lmv = &exp->exp_obd->u.lmv;
1845         union ldlm_policy_data policy = { { 0 } };
1846         int rc = 0;
1847         ENTRY;
1848
1849         if (!fid_is_sane(fid))
1850                 RETURN(0);
1851
1852         if (tgt == NULL) {
1853                 tgt = lmv_find_target(lmv, fid);
1854                 if (IS_ERR(tgt))
1855                         RETURN(PTR_ERR(tgt));
1856         }
1857
1858         if (tgt->ltd_idx != op_tgt) {
1859                 CDEBUG(D_INODE, "EARLY_CANCEL on "DFID"\n", PFID(fid));
1860                 policy.l_inodebits.bits = bits;
1861                 rc = md_cancel_unused(tgt->ltd_exp, fid, &policy,
1862                                       mode, LCF_ASYNC, NULL);
1863         } else {
1864                 CDEBUG(D_INODE,
1865                        "EARLY_CANCEL skip operation target %d on "DFID"\n",
1866                        op_tgt, PFID(fid));
1867                 op_data->op_flags |= flag;
1868                 rc = 0;
1869         }
1870
1871         RETURN(rc);
1872 }
1873
1874 /*
1875  * llite passes fid of an target inode in op_data->op_fid1 and id of directory in
1876  * op_data->op_fid2
1877  */
1878 static int lmv_link(struct obd_export *exp, struct md_op_data *op_data,
1879                     struct ptlrpc_request **request)
1880 {
1881         struct obd_device       *obd = exp->exp_obd;
1882         struct lmv_obd          *lmv = &obd->u.lmv;
1883         struct lmv_tgt_desc     *tgt;
1884         int                      rc;
1885         ENTRY;
1886
1887         LASSERT(op_data->op_namelen != 0);
1888
1889         CDEBUG(D_INODE, "LINK "DFID":%*s to "DFID"\n",
1890                PFID(&op_data->op_fid2), (int)op_data->op_namelen,
1891                op_data->op_name, PFID(&op_data->op_fid1));
1892
1893         op_data->op_fsuid = from_kuid(&init_user_ns, current_fsuid());
1894         op_data->op_fsgid = from_kgid(&init_user_ns, current_fsgid());
1895         op_data->op_cap = cfs_curproc_cap_pack();
1896
1897         if (lmv_is_dir_migrating(op_data->op_mea2)) {
1898                 struct lu_fid fid1 = op_data->op_fid1;
1899                 struct lmv_stripe_md *lsm1 = op_data->op_mea1;
1900
1901                 /*
1902                  * avoid creating new file under old layout of migrating
1903                  * directory, check it here.
1904                  */
1905                 tgt = __lmv_locate_tgt(lmv, op_data->op_mea2, op_data->op_name,
1906                                        op_data->op_namelen, &op_data->op_fid2,
1907                                        &op_data->op_mds, false);
1908                 tgt = lmv_locate_tgt(lmv, op_data, &op_data->op_fid1);
1909                 if (IS_ERR(tgt))
1910                         RETURN(PTR_ERR(tgt));
1911
1912                 op_data->op_fid1 = op_data->op_fid2;
1913                 op_data->op_mea1 = op_data->op_mea2;
1914                 rc = md_getattr_name(tgt->ltd_exp, op_data, request);
1915                 op_data->op_fid1 = fid1;
1916                 op_data->op_mea1 = lsm1;
1917                 if (!rc) {
1918                         ptlrpc_req_finished(*request);
1919                         *request = NULL;
1920                         RETURN(-EEXIST);
1921                 }
1922
1923                 if (rc != -ENOENT)
1924                         RETURN(rc);
1925         }
1926
1927         tgt = __lmv_locate_tgt(lmv, op_data->op_mea2, op_data->op_name,
1928                                op_data->op_namelen, &op_data->op_fid2,
1929                                &op_data->op_mds, true);
1930         if (IS_ERR(tgt))
1931                 RETURN(PTR_ERR(tgt));
1932
1933         /*
1934          * Cancel UPDATE lock on child (fid1).
1935          */
1936         op_data->op_flags |= MF_MDC_CANCEL_FID2;
1937         rc = lmv_early_cancel(exp, NULL, op_data, tgt->ltd_idx, LCK_EX,
1938                               MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID1);
1939         if (rc != 0)
1940                 RETURN(rc);
1941
1942         rc = md_link(tgt->ltd_exp, op_data, request);
1943
1944         RETURN(rc);
1945 }
1946
1947 static int lmv_migrate(struct obd_export *exp, struct md_op_data *op_data,
1948                         const char *name, size_t namelen,
1949                         struct ptlrpc_request **request)
1950 {
1951         struct obd_device *obd = exp->exp_obd;
1952         struct lmv_obd *lmv = &obd->u.lmv;
1953         struct lmv_stripe_md *lsm = op_data->op_mea1;
1954         struct lmv_tgt_desc *parent_tgt;
1955         struct lmv_tgt_desc *sp_tgt;
1956         struct lmv_tgt_desc *tp_tgt = NULL;
1957         struct lmv_tgt_desc *child_tgt;
1958         struct lmv_tgt_desc *tgt;
1959         struct lu_fid target_fid;
1960         int rc;
1961
1962         ENTRY;
1963
1964         LASSERT(op_data->op_cli_flags & CLI_MIGRATE);
1965
1966         CDEBUG(D_INODE, "MIGRATE "DFID"/%.*s\n",
1967                PFID(&op_data->op_fid1), (int)namelen, name);
1968
1969         op_data->op_fsuid = from_kuid(&init_user_ns, current_fsuid());
1970         op_data->op_fsgid = from_kgid(&init_user_ns, current_fsgid());
1971         op_data->op_cap = cfs_curproc_cap_pack();
1972
1973         parent_tgt = lmv_find_target(lmv, &op_data->op_fid1);
1974         if (IS_ERR(parent_tgt))
1975                 RETURN(PTR_ERR(parent_tgt));
1976
1977         if (lsm) {
1978                 __u32 hash_type = lsm->lsm_md_hash_type;
1979                 __u32 stripe_count = lsm->lsm_md_stripe_count;
1980
1981                 /*
1982                  * old stripes are appended after new stripes for migrating
1983                  * directory.
1984                  */
1985                 if (lsm->lsm_md_hash_type & LMV_HASH_FLAG_MIGRATION) {
1986                         hash_type = lsm->lsm_md_migrate_hash;
1987                         stripe_count -= lsm->lsm_md_migrate_offset;
1988                 }
1989
1990                 rc = lmv_name_to_stripe_index(hash_type, stripe_count, name,
1991                                               namelen);
1992                 if (rc < 0)
1993                         RETURN(rc);
1994
1995                 if (lsm->lsm_md_hash_type & LMV_HASH_FLAG_MIGRATION)
1996                         rc += lsm->lsm_md_migrate_offset;
1997
1998                 /* save it in fid4 temporarily for early cancel */
1999                 op_data->op_fid4 = lsm->lsm_md_oinfo[rc].lmo_fid;
2000                 sp_tgt = lmv_get_target(lmv, lsm->lsm_md_oinfo[rc].lmo_mds,
2001                                         NULL);
2002                 if (IS_ERR(sp_tgt))
2003                         RETURN(PTR_ERR(sp_tgt));
2004
2005                 /*
2006                  * if parent is being migrated too, fill op_fid2 with target
2007                  * stripe fid, otherwise the target stripe is not created yet.
2008                  */
2009                 if (lsm->lsm_md_hash_type & LMV_HASH_FLAG_MIGRATION) {
2010                         hash_type = lsm->lsm_md_hash_type &
2011                                     ~LMV_HASH_FLAG_MIGRATION;
2012                         stripe_count = lsm->lsm_md_migrate_offset;
2013
2014                         rc = lmv_name_to_stripe_index(hash_type, stripe_count,
2015                                                       name, namelen);
2016                         if (rc < 0)
2017                                 RETURN(rc);
2018
2019                         op_data->op_fid2 = lsm->lsm_md_oinfo[rc].lmo_fid;
2020                         tp_tgt = lmv_get_target(lmv,
2021                                                 lsm->lsm_md_oinfo[rc].lmo_mds,
2022                                                 NULL);
2023                         if (IS_ERR(tp_tgt))
2024                                 RETURN(PTR_ERR(tp_tgt));
2025                 }
2026         } else {
2027                 sp_tgt = parent_tgt;
2028         }
2029
2030         child_tgt = lmv_find_target(lmv, &op_data->op_fid3);
2031         if (IS_ERR(child_tgt))
2032                 RETURN(PTR_ERR(child_tgt));
2033
2034         if (!S_ISDIR(op_data->op_mode) && tp_tgt)
2035                 rc = __lmv_fid_alloc(lmv, &target_fid, tp_tgt->ltd_idx);
2036         else
2037                 rc = lmv_fid_alloc(NULL, exp, &target_fid, op_data);
2038         if (rc)
2039                 RETURN(rc);
2040
2041         /*
2042          * for directory, send migrate request to the MDT where the object will
2043          * be migrated to, because we can't create a striped directory remotely.
2044          *
2045          * otherwise, send to the MDT where source is located because regular
2046          * file may open lease.
2047          *
2048          * NB. if MDT doesn't support DIR_MIGRATE, send to source MDT too for
2049          * backward compatibility.
2050          */
2051         if (S_ISDIR(op_data->op_mode) &&
2052             (exp_connect_flags2(exp) & OBD_CONNECT2_DIR_MIGRATE)) {
2053                 tgt = lmv_find_target(lmv, &target_fid);
2054                 if (IS_ERR(tgt))
2055                         RETURN(PTR_ERR(tgt));
2056         } else {
2057                 tgt = child_tgt;
2058         }
2059
2060         /* cancel UPDATE lock of parent master object */
2061         rc = lmv_early_cancel(exp, parent_tgt, op_data, tgt->ltd_idx, LCK_EX,
2062                               MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID1);
2063         if (rc)
2064                 RETURN(rc);
2065
2066         /* cancel UPDATE lock of source parent */
2067         if (sp_tgt != parent_tgt) {
2068                 /*
2069                  * migrate RPC packs master object FID, because we can only pack
2070                  * two FIDs in reint RPC, but MDS needs to know both source
2071                  * parent and target parent, and it will obtain them from master
2072                  * FID and LMV, the other FID in RPC is kept for target.
2073                  *
2074                  * since this FID is not passed to MDC, cancel it anyway.
2075                  */
2076                 rc = lmv_early_cancel(exp, sp_tgt, op_data, -1, LCK_EX,
2077                                       MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID4);
2078                 if (rc)
2079                         RETURN(rc);
2080
2081                 op_data->op_flags &= ~MF_MDC_CANCEL_FID4;
2082         }
2083         op_data->op_fid4 = target_fid;
2084
2085         /* cancel UPDATE locks of target parent */
2086         rc = lmv_early_cancel(exp, tp_tgt, op_data, tgt->ltd_idx, LCK_EX,
2087                               MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID2);
2088         if (rc)
2089                 RETURN(rc);
2090
2091         /* cancel LOOKUP lock of source if source is remote object */
2092         if (child_tgt != sp_tgt) {
2093                 rc = lmv_early_cancel(exp, sp_tgt, op_data, tgt->ltd_idx,
2094                                       LCK_EX, MDS_INODELOCK_LOOKUP,
2095                                       MF_MDC_CANCEL_FID3);
2096                 if (rc)
2097                         RETURN(rc);
2098         }
2099
2100         /* cancel ELC locks of source */
2101         rc = lmv_early_cancel(exp, child_tgt, op_data, tgt->ltd_idx, LCK_EX,
2102                               MDS_INODELOCK_ELC, MF_MDC_CANCEL_FID3);
2103         if (rc)
2104                 RETURN(rc);
2105
2106         rc = md_rename(tgt->ltd_exp, op_data, name, namelen, NULL, 0, request);
2107
2108         RETURN(rc);
2109 }
2110
2111 static int lmv_rename(struct obd_export *exp, struct md_op_data *op_data,
2112                       const char *old, size_t oldlen,
2113                       const char *new, size_t newlen,
2114                       struct ptlrpc_request **request)
2115 {
2116         struct obd_device *obd = exp->exp_obd;
2117         struct lmv_obd *lmv = &obd->u.lmv;
2118         struct lmv_tgt_desc *sp_tgt;
2119         struct lmv_tgt_desc *tp_tgt = NULL;
2120         struct lmv_tgt_desc *src_tgt = NULL;
2121         struct lmv_tgt_desc *tgt;
2122         struct mdt_body *body;
2123         int rc;
2124
2125         ENTRY;
2126
2127         LASSERT(oldlen != 0);
2128
2129         if (op_data->op_cli_flags & CLI_MIGRATE) {
2130                 rc = lmv_migrate(exp, op_data, old, oldlen, request);
2131                 RETURN(rc);
2132         }
2133
2134         op_data->op_fsuid = from_kuid(&init_user_ns, current_fsuid());
2135         op_data->op_fsgid = from_kgid(&init_user_ns, current_fsgid());
2136         op_data->op_cap = cfs_curproc_cap_pack();
2137
2138         if (lmv_is_dir_migrating(op_data->op_mea2)) {
2139                 struct lu_fid fid1 = op_data->op_fid1;
2140                 struct lmv_stripe_md *lsm1 = op_data->op_mea1;
2141
2142                 /*
2143                  * we avoid creating new file under old layout of migrating
2144                  * directory, if there is an existing file with new name under
2145                  * old layout, we can't unlink file in old layout and rename to
2146                  * new layout in one transaction, so return -EBUSY here.`
2147                  */
2148                 tgt = __lmv_locate_tgt(lmv, op_data->op_mea2, new, newlen,
2149                                        &op_data->op_fid2, &op_data->op_mds,
2150                                        false);
2151                 if (IS_ERR(tgt))
2152                         RETURN(PTR_ERR(tgt));
2153
2154                 op_data->op_fid1 = op_data->op_fid2;
2155                 op_data->op_mea1 = op_data->op_mea2;
2156                 op_data->op_name = new;
2157                 op_data->op_namelen = newlen;
2158                 rc = md_getattr_name(tgt->ltd_exp, op_data, request);
2159                 op_data->op_fid1 = fid1;
2160                 op_data->op_mea1 = lsm1;
2161                 op_data->op_name = NULL;
2162                 op_data->op_namelen = 0;
2163                 if (!rc) {
2164                         ptlrpc_req_finished(*request);
2165                         *request = NULL;
2166                         RETURN(-EBUSY);
2167                 }
2168
2169                 if (rc != -ENOENT)
2170                         RETURN(rc);
2171         }
2172
2173         /* rename to new layout for migrating directory */
2174         tp_tgt = __lmv_locate_tgt(lmv, op_data->op_mea2, new, newlen,
2175                                   &op_data->op_fid2, &op_data->op_mds, true);
2176         if (IS_ERR(tp_tgt))
2177                 RETURN(PTR_ERR(tp_tgt));
2178
2179         /* Since the target child might be destroyed, and it might become
2180          * orphan, and we can only check orphan on the local MDT right now, so
2181          * we send rename request to the MDT where target child is located. If
2182          * target child does not exist, then it will send the request to the
2183          * target parent */
2184         if (fid_is_sane(&op_data->op_fid4)) {
2185                 tgt = lmv_find_target(lmv, &op_data->op_fid4);
2186                 if (IS_ERR(tgt))
2187                         RETURN(PTR_ERR(tgt));
2188         } else {
2189                 tgt = tp_tgt;
2190         }
2191
2192         op_data->op_flags |= MF_MDC_CANCEL_FID4;
2193
2194         /* cancel UPDATE locks of target parent */
2195         rc = lmv_early_cancel(exp, tp_tgt, op_data, tgt->ltd_idx, LCK_EX,
2196                               MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID2);
2197         if (rc != 0)
2198                 RETURN(rc);
2199
2200         if (fid_is_sane(&op_data->op_fid4)) {
2201                 /* cancel LOOKUP lock of target on target parent */
2202                 if (tgt != tp_tgt) {
2203                         rc = lmv_early_cancel(exp, tp_tgt, op_data,
2204                                               tgt->ltd_idx, LCK_EX,
2205                                               MDS_INODELOCK_LOOKUP,
2206                                               MF_MDC_CANCEL_FID4);
2207                         if (rc != 0)
2208                                 RETURN(rc);
2209                 }
2210         }
2211
2212         if (fid_is_sane(&op_data->op_fid3)) {
2213                 src_tgt = lmv_find_target(lmv, &op_data->op_fid3);
2214                 if (IS_ERR(src_tgt))
2215                         RETURN(PTR_ERR(src_tgt));
2216
2217                 /* cancel ELC locks of source */
2218                 rc = lmv_early_cancel(exp, src_tgt, op_data, tgt->ltd_idx,
2219                                       LCK_EX, MDS_INODELOCK_ELC,
2220                                       MF_MDC_CANCEL_FID3);
2221                 if (rc != 0)
2222                         RETURN(rc);
2223         }
2224
2225 retry:
2226         sp_tgt = __lmv_locate_tgt(lmv, op_data->op_mea1, old, oldlen,
2227                                   &op_data->op_fid1, &op_data->op_mds,
2228                                   op_data->op_post_migrate);
2229         if (IS_ERR(sp_tgt))
2230                 RETURN(PTR_ERR(sp_tgt));
2231
2232         /* cancel UPDATE locks of source parent */
2233         rc = lmv_early_cancel(exp, sp_tgt, op_data, tgt->ltd_idx, LCK_EX,
2234                               MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID1);
2235         if (rc != 0)
2236                 RETURN(rc);
2237
2238         if (fid_is_sane(&op_data->op_fid3)) {
2239                 /* cancel LOOKUP lock of source on source parent */
2240                 if (src_tgt != sp_tgt) {
2241                         rc = lmv_early_cancel(exp, sp_tgt, op_data,
2242                                               tgt->ltd_idx, LCK_EX,
2243                                               MDS_INODELOCK_LOOKUP,
2244                                               MF_MDC_CANCEL_FID3);
2245                         if (rc != 0)
2246                                 RETURN(rc);
2247                 }
2248         }
2249
2250 rename:
2251         CDEBUG(D_INODE, "RENAME "DFID"/%.*s to "DFID"/%.*s\n",
2252                 PFID(&op_data->op_fid1), (int)oldlen, old,
2253                 PFID(&op_data->op_fid2), (int)newlen, new);
2254
2255         rc = md_rename(tgt->ltd_exp, op_data, old, oldlen, new, newlen,
2256                         request);
2257         if (rc == -ENOENT && lmv_dir_retry_check_update(op_data)) {
2258                 ptlrpc_req_finished(*request);
2259                 *request = NULL;
2260                 goto retry;
2261         }
2262
2263         if (rc && rc != -EXDEV)
2264                 RETURN(rc);
2265
2266         body = req_capsule_server_get(&(*request)->rq_pill, &RMF_MDT_BODY);
2267         if (body == NULL)
2268                 RETURN(-EPROTO);
2269
2270         /* Not cross-ref case, just get out of here. */
2271         if (likely(!(body->mbo_valid & OBD_MD_MDS)))
2272                 RETURN(rc);
2273
2274         op_data->op_fid4 = body->mbo_fid1;
2275
2276         ptlrpc_req_finished(*request);
2277         *request = NULL;
2278
2279         tgt = lmv_find_target(lmv, &op_data->op_fid4);
2280         if (IS_ERR(tgt))
2281                 RETURN(PTR_ERR(tgt));
2282
2283         if (fid_is_sane(&op_data->op_fid4)) {
2284                 /* cancel LOOKUP lock of target on target parent */
2285                 if (tgt != tp_tgt) {
2286                         rc = lmv_early_cancel(exp, tp_tgt, op_data,
2287                                               tgt->ltd_idx, LCK_EX,
2288                                               MDS_INODELOCK_LOOKUP,
2289                                               MF_MDC_CANCEL_FID4);
2290                         if (rc != 0)
2291                                 RETURN(rc);
2292                 }
2293         }
2294
2295         goto rename;
2296 }
2297
2298 static int lmv_setattr(struct obd_export *exp, struct md_op_data *op_data,
2299                        void *ea, size_t ealen, struct ptlrpc_request **request)
2300 {
2301         struct obd_device       *obd = exp->exp_obd;
2302         struct lmv_obd          *lmv = &obd->u.lmv;
2303         struct lmv_tgt_desc     *tgt;
2304         int                      rc = 0;
2305         ENTRY;
2306
2307         CDEBUG(D_INODE, "SETATTR for "DFID", valid 0x%x/0x%x\n",
2308                PFID(&op_data->op_fid1), op_data->op_attr.ia_valid,
2309                op_data->op_xvalid);
2310
2311         op_data->op_flags |= MF_MDC_CANCEL_FID1;
2312         tgt = lmv_find_target(lmv, &op_data->op_fid1);
2313         if (IS_ERR(tgt))
2314                 RETURN(PTR_ERR(tgt));
2315
2316         rc = md_setattr(tgt->ltd_exp, op_data, ea, ealen, request);
2317
2318         RETURN(rc);
2319 }
2320
2321 static int lmv_fsync(struct obd_export *exp, const struct lu_fid *fid,
2322                      struct ptlrpc_request **request)
2323 {
2324         struct obd_device       *obd = exp->exp_obd;
2325         struct lmv_obd          *lmv = &obd->u.lmv;
2326         struct lmv_tgt_desc     *tgt;
2327         int                      rc;
2328         ENTRY;
2329
2330         tgt = lmv_find_target(lmv, fid);
2331         if (IS_ERR(tgt))
2332                 RETURN(PTR_ERR(tgt));
2333
2334         rc = md_fsync(tgt->ltd_exp, fid, request);
2335         RETURN(rc);
2336 }
2337
2338 struct stripe_dirent {
2339         struct page             *sd_page;
2340         struct lu_dirpage       *sd_dp;
2341         struct lu_dirent        *sd_ent;
2342         bool                     sd_eof;
2343 };
2344
2345 struct lmv_dir_ctxt {
2346         struct lmv_obd          *ldc_lmv;
2347         struct md_op_data       *ldc_op_data;
2348         struct md_callback      *ldc_cb_op;
2349         __u64                    ldc_hash;
2350         int                      ldc_count;
2351         struct stripe_dirent     ldc_stripes[0];
2352 };
2353
2354 static inline void stripe_dirent_unload(struct stripe_dirent *stripe)
2355 {
2356         if (stripe->sd_page) {
2357                 kunmap(stripe->sd_page);
2358                 put_page(stripe->sd_page);
2359                 stripe->sd_page = NULL;
2360                 stripe->sd_ent = NULL;
2361         }
2362 }
2363
2364 static inline void put_lmv_dir_ctxt(struct lmv_dir_ctxt *ctxt)
2365 {
2366         int i;
2367
2368         for (i = 0; i < ctxt->ldc_count; i++)
2369                 stripe_dirent_unload(&ctxt->ldc_stripes[i]);
2370 }
2371
2372 /* if @ent is dummy, or . .., get next */
2373 static struct lu_dirent *stripe_dirent_get(struct lmv_dir_ctxt *ctxt,
2374                                            struct lu_dirent *ent,
2375                                            int stripe_index)
2376 {
2377         for (; ent; ent = lu_dirent_next(ent)) {
2378                 /* Skip dummy entry */
2379                 if (le16_to_cpu(ent->lde_namelen) == 0)
2380                         continue;
2381
2382                 /* skip . and .. for other stripes */
2383                 if (stripe_index &&
2384                     (strncmp(ent->lde_name, ".",
2385                              le16_to_cpu(ent->lde_namelen)) == 0 ||
2386                      strncmp(ent->lde_name, "..",
2387                              le16_to_cpu(ent->lde_namelen)) == 0))
2388                         continue;
2389
2390                 if (le64_to_cpu(ent->lde_hash) >= ctxt->ldc_hash)
2391                         break;
2392         }
2393
2394         return ent;
2395 }
2396
2397 static struct lu_dirent *stripe_dirent_load(struct lmv_dir_ctxt *ctxt,
2398                                             struct stripe_dirent *stripe,
2399                                             int stripe_index)
2400 {
2401         struct md_op_data *op_data = ctxt->ldc_op_data;
2402         struct lmv_oinfo *oinfo;
2403         struct lu_fid fid = op_data->op_fid1;
2404         struct inode *inode = op_data->op_data;
2405         struct lmv_tgt_desc *tgt;
2406         struct lu_dirent *ent = stripe->sd_ent;
2407         __u64 hash = ctxt->ldc_hash;
2408         int rc = 0;
2409
2410         ENTRY;
2411
2412         LASSERT(stripe == &ctxt->ldc_stripes[stripe_index]);
2413         LASSERT(!ent);
2414
2415         do {
2416                 if (stripe->sd_page) {
2417                         __u64 end = le64_to_cpu(stripe->sd_dp->ldp_hash_end);
2418
2419                         /* @hash should be the last dirent hash */
2420                         LASSERTF(hash <= end,
2421                                  "ctxt@%p stripe@%p hash %llx end %llx\n",
2422                                  ctxt, stripe, hash, end);
2423                         /* unload last page */
2424                         stripe_dirent_unload(stripe);
2425                         /* eof */
2426                         if (end == MDS_DIR_END_OFF) {
2427                                 stripe->sd_eof = true;
2428                                 break;
2429                         }
2430                         hash = end;
2431                 }
2432
2433                 oinfo = &op_data->op_mea1->lsm_md_oinfo[stripe_index];
2434                 if (!oinfo->lmo_root) {
2435                         rc = -ENOENT;
2436                         break;
2437                 }
2438
2439                 tgt = lmv_get_target(ctxt->ldc_lmv, oinfo->lmo_mds, NULL);
2440                 if (IS_ERR(tgt)) {
2441                         rc = PTR_ERR(tgt);
2442                         break;
2443                 }
2444
2445                 /* op_data is shared by stripes, reset after use */
2446                 op_data->op_fid1 = oinfo->lmo_fid;
2447                 op_data->op_fid2 = oinfo->lmo_fid;
2448                 op_data->op_data = oinfo->lmo_root;
2449
2450                 rc = md_read_page(tgt->ltd_exp, op_data, ctxt->ldc_cb_op, hash,
2451                                   &stripe->sd_page);
2452
2453                 op_data->op_fid1 = fid;
2454                 op_data->op_fid2 = fid;
2455                 op_data->op_data = inode;
2456
2457                 if (rc)
2458                         break;
2459
2460                 stripe->sd_dp = page_address(stripe->sd_page);
2461                 ent = stripe_dirent_get(ctxt, lu_dirent_start(stripe->sd_dp),
2462                                         stripe_index);
2463                 /* in case a page filled with ., .. and dummy, read next */
2464         } while (!ent);
2465
2466         stripe->sd_ent = ent;
2467         if (rc) {
2468                 LASSERT(!ent);
2469                 /* treat error as eof, so dir can be partially accessed */
2470                 stripe->sd_eof = true;
2471                 LCONSOLE_WARN("dir "DFID" stripe %d readdir failed: %d, "
2472                               "directory is partially accessed!\n",
2473                               PFID(&ctxt->ldc_op_data->op_fid1), stripe_index,
2474                               rc);
2475         }
2476
2477         RETURN(ent);
2478 }
2479
2480 static int lmv_file_resync(struct obd_export *exp, struct md_op_data *data)
2481 {
2482         struct obd_device       *obd = exp->exp_obd;
2483         struct lmv_obd          *lmv = &obd->u.lmv;
2484         struct lmv_tgt_desc     *tgt;
2485         int                      rc;
2486         ENTRY;
2487
2488         rc = lmv_check_connect(obd);
2489         if (rc != 0)
2490                 RETURN(rc);
2491
2492         tgt = lmv_find_target(lmv, &data->op_fid1);
2493         if (IS_ERR(tgt))
2494                 RETURN(PTR_ERR(tgt));
2495
2496         data->op_flags |= MF_MDC_CANCEL_FID1;
2497         rc = md_file_resync(tgt->ltd_exp, data);
2498         RETURN(rc);
2499 }
2500
2501 /**
2502  * Get dirent with the closest hash for striped directory
2503  *
2504  * This function will search the dir entry, whose hash value is the
2505  * closest(>=) to hash from all of sub-stripes, and it is only being called
2506  * for striped directory.
2507  *
2508  * \param[in] ctxt              dir read context
2509  *
2510  * \retval                      dirent get the entry successfully
2511  *                              NULL does not get the entry, normally it means
2512  *                              it reaches the end of the directory, while read
2513  *                              stripe dirent error is ignored to allow partial
2514  *                              access.
2515  */
2516 static struct lu_dirent *lmv_dirent_next(struct lmv_dir_ctxt *ctxt)
2517 {
2518         struct stripe_dirent *stripe;
2519         struct lu_dirent *ent = NULL;
2520         int i;
2521         int min = -1;
2522
2523         /* TODO: optimize with k-way merge sort */
2524         for (i = 0; i < ctxt->ldc_count; i++) {
2525                 stripe = &ctxt->ldc_stripes[i];
2526                 if (stripe->sd_eof)
2527                         continue;
2528
2529                 if (!stripe->sd_ent) {
2530                         stripe_dirent_load(ctxt, stripe, i);
2531                         if (!stripe->sd_ent) {
2532                                 LASSERT(stripe->sd_eof);
2533                                 continue;
2534                         }
2535                 }
2536
2537                 if (min == -1 ||
2538                     le64_to_cpu(ctxt->ldc_stripes[min].sd_ent->lde_hash) >
2539                     le64_to_cpu(stripe->sd_ent->lde_hash)) {
2540                         min = i;
2541                         if (le64_to_cpu(stripe->sd_ent->lde_hash) ==
2542                             ctxt->ldc_hash)
2543                                 break;
2544                 }
2545         }
2546
2547         if (min != -1) {
2548                 stripe = &ctxt->ldc_stripes[min];
2549                 ent = stripe->sd_ent;
2550                 /* pop found dirent */
2551                 stripe->sd_ent = stripe_dirent_get(ctxt, lu_dirent_next(ent),
2552                                                    min);
2553         }
2554
2555         return ent;
2556 }
2557
2558 /**
2559  * Build dir entry page for striped directory
2560  *
2561  * This function gets one entry by @offset from a striped directory. It will
2562  * read entries from all of stripes, and choose one closest to the required
2563  * offset(&offset). A few notes
2564  * 1. skip . and .. for non-zero stripes, because there can only have one .
2565  * and .. in a directory.
2566  * 2. op_data will be shared by all of stripes, instead of allocating new
2567  * one, so need to restore before reusing.
2568  *
2569  * \param[in] exp       obd export refer to LMV
2570  * \param[in] op_data   hold those MD parameters of read_entry
2571  * \param[in] cb_op     ldlm callback being used in enqueue in mdc_read_entry
2572  * \param[in] offset    starting hash offset
2573  * \param[out] ppage    the page holding the entry. Note: because the entry
2574  *                      will be accessed in upper layer, so we need hold the
2575  *                      page until the usages of entry is finished, see
2576  *                      ll_dir_entry_next.
2577  *
2578  * retval               =0 if get entry successfully
2579  *                      <0 cannot get entry
2580  */
2581 static int lmv_striped_read_page(struct obd_export *exp,
2582                                  struct md_op_data *op_data,
2583                                  struct md_callback *cb_op,
2584                                  __u64 offset, struct page **ppage)
2585 {
2586         struct page *page = NULL;
2587         struct lu_dirpage *dp;
2588         void *start;
2589         struct lu_dirent *ent;
2590         struct lu_dirent *last_ent;
2591         int stripe_count;
2592         struct lmv_dir_ctxt *ctxt;
2593         struct lu_dirent *next = NULL;
2594         __u16 ent_size;
2595         size_t left_bytes;
2596         int rc = 0;
2597         ENTRY;
2598
2599         /* Allocate a page and read entries from all of stripes and fill
2600          * the page by hash order */
2601         page = alloc_page(GFP_KERNEL);
2602         if (!page)
2603                 RETURN(-ENOMEM);
2604
2605         /* Initialize the entry page */
2606         dp = kmap(page);
2607         memset(dp, 0, sizeof(*dp));
2608         dp->ldp_hash_start = cpu_to_le64(offset);
2609
2610         start = dp + 1;
2611         left_bytes = PAGE_SIZE - sizeof(*dp);
2612         ent = start;
2613         last_ent = ent;
2614
2615         /* initalize dir read context */
2616         stripe_count = op_data->op_mea1->lsm_md_stripe_count;
2617         OBD_ALLOC(ctxt, offsetof(typeof(*ctxt), ldc_stripes[stripe_count]));
2618         if (!ctxt)
2619                 GOTO(free_page, rc = -ENOMEM);
2620         ctxt->ldc_lmv = &exp->exp_obd->u.lmv;
2621         ctxt->ldc_op_data = op_data;
2622         ctxt->ldc_cb_op = cb_op;
2623         ctxt->ldc_hash = offset;
2624         ctxt->ldc_count = stripe_count;
2625
2626         while (1) {
2627                 next = lmv_dirent_next(ctxt);
2628
2629                 /* end of directory */
2630                 if (!next) {
2631                         ctxt->ldc_hash = MDS_DIR_END_OFF;
2632                         break;
2633                 }
2634                 ctxt->ldc_hash = le64_to_cpu(next->lde_hash);
2635
2636                 ent_size = le16_to_cpu(next->lde_reclen);
2637
2638                 /* the last entry lde_reclen is 0, but it might not be the last
2639                  * one of this temporay dir page */
2640                 if (!ent_size)
2641                         ent_size = lu_dirent_calc_size(
2642                                         le16_to_cpu(next->lde_namelen),
2643                                         le32_to_cpu(next->lde_attrs));
2644                 /* page full */
2645                 if (ent_size > left_bytes)
2646                         break;
2647
2648                 memcpy(ent, next, ent_size);
2649
2650                 /* Replace . with master FID and Replace .. with the parent FID
2651                  * of master object */
2652                 if (strncmp(ent->lde_name, ".",
2653                             le16_to_cpu(ent->lde_namelen)) == 0 &&
2654                     le16_to_cpu(ent->lde_namelen) == 1)
2655                         fid_cpu_to_le(&ent->lde_fid, &op_data->op_fid1);
2656                 else if (strncmp(ent->lde_name, "..",
2657                                    le16_to_cpu(ent->lde_namelen)) == 0 &&
2658                            le16_to_cpu(ent->lde_namelen) == 2)
2659                         fid_cpu_to_le(&ent->lde_fid, &op_data->op_fid3);
2660
2661                 CDEBUG(D_INODE, "entry %.*s hash %#llx\n",
2662                        le16_to_cpu(ent->lde_namelen), ent->lde_name,
2663                        le64_to_cpu(ent->lde_hash));
2664
2665                 left_bytes -= ent_size;
2666                 ent->lde_reclen = cpu_to_le16(ent_size);
2667                 last_ent = ent;
2668                 ent = (void *)ent + ent_size;
2669         };
2670
2671         last_ent->lde_reclen = 0;
2672
2673         if (ent == start)
2674                 dp->ldp_flags |= LDF_EMPTY;
2675         else if (ctxt->ldc_hash == le64_to_cpu(last_ent->lde_hash))
2676                 dp->ldp_flags |= LDF_COLLIDE;
2677         dp->ldp_flags = cpu_to_le32(dp->ldp_flags);
2678         dp->ldp_hash_end = cpu_to_le64(ctxt->ldc_hash);
2679
2680         put_lmv_dir_ctxt(ctxt);
2681         OBD_FREE(ctxt, offsetof(typeof(*ctxt), ldc_stripes[stripe_count]));
2682
2683         *ppage = page;
2684
2685         RETURN(0);
2686
2687 free_page:
2688         kunmap(page);
2689         __free_page(page);
2690
2691         return rc;
2692 }
2693
2694 int lmv_read_page(struct obd_export *exp, struct md_op_data *op_data,
2695                   struct md_callback *cb_op, __u64 offset,
2696                   struct page **ppage)
2697 {
2698         struct obd_device       *obd = exp->exp_obd;
2699         struct lmv_obd          *lmv = &obd->u.lmv;
2700         struct lmv_stripe_md    *lsm = op_data->op_mea1;
2701         struct lmv_tgt_desc     *tgt;
2702         int                     rc;
2703         ENTRY;
2704
2705         if (unlikely(lsm != NULL)) {
2706                 rc = lmv_striped_read_page(exp, op_data, cb_op, offset, ppage);
2707                 RETURN(rc);
2708         }
2709
2710         tgt = lmv_find_target(lmv, &op_data->op_fid1);
2711         if (IS_ERR(tgt))
2712                 RETURN(PTR_ERR(tgt));
2713
2714         rc = md_read_page(tgt->ltd_exp, op_data, cb_op, offset, ppage);
2715
2716         RETURN(rc);
2717 }
2718
2719 /**
2720  * Unlink a file/directory
2721  *
2722  * Unlink a file or directory under the parent dir. The unlink request
2723  * usually will be sent to the MDT where the child is located, but if
2724  * the client does not have the child FID then request will be sent to the
2725  * MDT where the parent is located.
2726  *
2727  * If the parent is a striped directory then it also needs to locate which
2728  * stripe the name of the child is located, and replace the parent FID
2729  * (@op->op_fid1) with the stripe FID. Note: if the stripe is unknown,
2730  * it will walk through all of sub-stripes until the child is being
2731  * unlinked finally.
2732  *
2733  * \param[in] exp       export refer to LMV
2734  * \param[in] op_data   different parameters transferred beween client
2735  *                      MD stacks, name, namelen, FIDs etc.
2736  *                      op_fid1 is the parent FID, op_fid2 is the child
2737  *                      FID.
2738  * \param[out] request  point to the request of unlink.
2739  *
2740  * retval               0 if succeed
2741  *                      negative errno if failed.
2742  */
2743 static int lmv_unlink(struct obd_export *exp, struct md_op_data *op_data,
2744                       struct ptlrpc_request **request)
2745 {
2746         struct obd_device *obd = exp->exp_obd;
2747         struct lmv_obd *lmv = &obd->u.lmv;
2748         struct lmv_tgt_desc *tgt;
2749         struct lmv_tgt_desc *parent_tgt;
2750         struct mdt_body *body;
2751         int rc;
2752
2753         ENTRY;
2754
2755         op_data->op_fsuid = from_kuid(&init_user_ns, current_fsuid());
2756         op_data->op_fsgid = from_kgid(&init_user_ns, current_fsgid());
2757         op_data->op_cap = cfs_curproc_cap_pack();
2758
2759 retry:
2760         parent_tgt = lmv_locate_tgt(lmv, op_data, &op_data->op_fid1);
2761         if (IS_ERR(parent_tgt))
2762                 RETURN(PTR_ERR(parent_tgt));
2763
2764         if (likely(!fid_is_zero(&op_data->op_fid2))) {
2765                 tgt = lmv_find_target(lmv, &op_data->op_fid2);
2766                 if (IS_ERR(tgt))
2767                         RETURN(PTR_ERR(tgt));
2768         } else {
2769                 tgt = parent_tgt;
2770         }
2771
2772         /*
2773          * If child's fid is given, cancel unused locks for it if it is from
2774          * another export than parent.
2775          *
2776          * LOOKUP lock for child (fid3) should also be cancelled on parent
2777          * tgt_tgt in mdc_unlink().
2778          */
2779         op_data->op_flags |= MF_MDC_CANCEL_FID1 | MF_MDC_CANCEL_FID3;
2780
2781         if (parent_tgt != tgt)
2782                 rc = lmv_early_cancel(exp, parent_tgt, op_data, tgt->ltd_idx,
2783                                       LCK_EX, MDS_INODELOCK_LOOKUP,
2784                                       MF_MDC_CANCEL_FID3);
2785
2786         rc = lmv_early_cancel(exp, NULL, op_data, tgt->ltd_idx, LCK_EX,
2787                               MDS_INODELOCK_ELC, MF_MDC_CANCEL_FID3);
2788         if (rc)
2789                 RETURN(rc);
2790
2791         CDEBUG(D_INODE, "unlink with fid="DFID"/"DFID" -> mds #%u\n",
2792                PFID(&op_data->op_fid1), PFID(&op_data->op_fid2), tgt->ltd_idx);
2793
2794         rc = md_unlink(tgt->ltd_exp, op_data, request);
2795         if (rc == -ENOENT && lmv_dir_retry_check_update(op_data)) {
2796                 ptlrpc_req_finished(*request);
2797                 *request = NULL;
2798                 goto retry;
2799         }
2800
2801         if (rc != -EREMOTE)
2802                 RETURN(rc);
2803
2804         body = req_capsule_server_get(&(*request)->rq_pill, &RMF_MDT_BODY);
2805         if (body == NULL)
2806                 RETURN(-EPROTO);
2807
2808         /* Not cross-ref case, just get out of here. */
2809         if (likely(!(body->mbo_valid & OBD_MD_MDS)))
2810                 RETURN(rc);
2811
2812         /* This is a remote object, try remote MDT. */
2813         op_data->op_fid2 = body->mbo_fid1;
2814         ptlrpc_req_finished(*request);
2815         *request = NULL;
2816
2817         tgt = lmv_find_target(lmv, &op_data->op_fid2);
2818         if (IS_ERR(tgt))
2819                 RETURN(PTR_ERR(tgt));
2820
2821         goto retry;
2822 }
2823
2824 static int lmv_precleanup(struct obd_device *obd)
2825 {
2826         ENTRY;
2827         libcfs_kkuc_group_rem(&obd->obd_uuid, 0, KUC_GRP_HSM);
2828         fld_client_debugfs_fini(&obd->u.lmv.lmv_fld);
2829         lprocfs_obd_cleanup(obd);
2830         lprocfs_free_md_stats(obd);
2831         RETURN(0);
2832 }
2833
2834 /**
2835  * Get by key a value associated with a LMV device.
2836  *
2837  * Dispatch request to lower-layer devices as needed.
2838  *
2839  * \param[in] env               execution environment for this thread
2840  * \param[in] exp               export for the LMV device
2841  * \param[in] keylen            length of key identifier
2842  * \param[in] key               identifier of key to get value for
2843  * \param[in] vallen            size of \a val
2844  * \param[out] val              pointer to storage location for value
2845  * \param[in] lsm               optional striping metadata of object
2846  *
2847  * \retval 0            on success
2848  * \retval negative     negated errno on failure
2849  */
2850 static int lmv_get_info(const struct lu_env *env, struct obd_export *exp,
2851                         __u32 keylen, void *key, __u32 *vallen, void *val)
2852 {
2853         struct obd_device       *obd;
2854         struct lmv_obd          *lmv;
2855         int                      rc = 0;
2856         ENTRY;
2857
2858         obd = class_exp2obd(exp);
2859         if (obd == NULL) {
2860                 CDEBUG(D_IOCTL, "Invalid client cookie %#llx\n",
2861                        exp->exp_handle.h_cookie);
2862                 RETURN(-EINVAL);
2863         }
2864
2865         lmv = &obd->u.lmv;
2866         if (keylen >= strlen("remote_flag") && !strcmp(key, "remote_flag")) {
2867                 int i;
2868
2869                 LASSERT(*vallen == sizeof(__u32));
2870                 for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
2871                         struct lmv_tgt_desc *tgt = lmv->tgts[i];
2872                         /*
2873                          * All tgts should be connected when this gets called.
2874                          */
2875                         if (tgt == NULL || tgt->ltd_exp == NULL)
2876                                 continue;
2877
2878                         if (!obd_get_info(env, tgt->ltd_exp, keylen, key,
2879                                           vallen, val))
2880                                 RETURN(0);
2881                 }
2882                 RETURN(-EINVAL);
2883         } else if (KEY_IS(KEY_MAX_EASIZE) ||
2884                    KEY_IS(KEY_DEFAULT_EASIZE) ||
2885                    KEY_IS(KEY_CONN_DATA)) {
2886                 /*
2887                  * Forwarding this request to first MDS, it should know LOV
2888                  * desc.
2889                  */
2890                 rc = obd_get_info(env, lmv->tgts[0]->ltd_exp, keylen, key,
2891                                   vallen, val);
2892                 if (!rc && KEY_IS(KEY_CONN_DATA))
2893                         exp->exp_connect_data = *(struct obd_connect_data *)val;
2894                 RETURN(rc);
2895         } else if (KEY_IS(KEY_TGT_COUNT)) {
2896                 *((int *)val) = lmv->desc.ld_tgt_count;
2897                 RETURN(0);
2898         }
2899
2900         CDEBUG(D_IOCTL, "Invalid key\n");
2901         RETURN(-EINVAL);
2902 }
2903
2904 static int lmv_rmfid(struct obd_export *exp, struct fid_array *fa,
2905                      int *__rcs, struct ptlrpc_request_set *_set)
2906 {
2907         struct obd_device *obddev = class_exp2obd(exp);
2908         struct ptlrpc_request_set *set = _set;
2909         struct lmv_obd *lmv = &obddev->u.lmv;
2910         int tgt_count = lmv->desc.ld_tgt_count;
2911         struct fid_array *fat, **fas = NULL;
2912         int i, rc, **rcs = NULL;
2913
2914         if (!set) {
2915                 set = ptlrpc_prep_set();
2916                 if (!set)
2917                         RETURN(-ENOMEM);
2918         }
2919
2920         /* split FIDs by targets */
2921         OBD_ALLOC(fas, sizeof(fas) * tgt_count);
2922         if (fas == NULL)
2923                 GOTO(out, rc = -ENOMEM);
2924         OBD_ALLOC(rcs, sizeof(int *) * tgt_count);
2925         if (rcs == NULL)
2926                 GOTO(out_fas, rc = -ENOMEM);
2927
2928         for (i = 0; i < fa->fa_nr; i++) {
2929                 unsigned int idx;
2930
2931                 rc = lmv_fld_lookup(lmv, &fa->fa_fids[i], &idx);
2932                 if (rc) {
2933                         CDEBUG(D_OTHER, "can't lookup "DFID": rc = %d\n",
2934                                PFID(&fa->fa_fids[i]), rc);
2935                         continue;
2936                 }
2937                 LASSERT(idx < tgt_count);
2938                 if (!fas[idx])
2939                         OBD_ALLOC(fas[idx], offsetof(struct fid_array,
2940                                   fa_fids[fa->fa_nr]));
2941                 if (!fas[idx])
2942                         GOTO(out, rc = -ENOMEM);
2943                 if (!rcs[idx])
2944                         OBD_ALLOC(rcs[idx], sizeof(int) * fa->fa_nr);
2945                 if (!rcs[idx])
2946                         GOTO(out, rc = -ENOMEM);
2947
2948                 fat = fas[idx];
2949                 fat->fa_fids[fat->fa_nr++] = fa->fa_fids[i];
2950         }
2951
2952         for (i = 0; i < tgt_count; i++) {
2953                 fat = fas[i];
2954                 if (!fat || fat->fa_nr == 0)
2955                         continue;
2956                 rc = md_rmfid(lmv->tgts[i]->ltd_exp, fat, rcs[i], set);
2957         }
2958
2959         rc = ptlrpc_set_wait(NULL, set);
2960         if (rc == 0) {
2961                 int j = 0;
2962                 for (i = 0; i < tgt_count; i++) {
2963                         fat = fas[i];
2964                         if (!fat || fat->fa_nr == 0)
2965                                 continue;
2966                         /* copy FIDs back */
2967                         memcpy(fa->fa_fids + j, fat->fa_fids,
2968                                fat->fa_nr * sizeof(struct lu_fid));
2969                         /* copy rcs back */
2970                         memcpy(__rcs + j, rcs[i], fat->fa_nr * sizeof(**rcs));
2971                         j += fat->fa_nr;
2972                 }
2973         }
2974         if (set != _set)
2975                 ptlrpc_set_destroy(set);
2976
2977 out:
2978         for (i = 0; i < tgt_count; i++) {
2979                 if (fas && fas[i])
2980                         OBD_FREE(fas[i], offsetof(struct fid_array,
2981                                                 fa_fids[fa->fa_nr]));
2982                 if (rcs && rcs[i])
2983                         OBD_FREE(rcs[i], sizeof(int) * fa->fa_nr);
2984         }
2985         if (rcs)
2986                 OBD_FREE(rcs, sizeof(int *) * tgt_count);
2987 out_fas:
2988         if (fas)
2989                 OBD_FREE(fas, sizeof(fas) * tgt_count);
2990
2991         RETURN(rc);
2992 }
2993
2994 /**
2995  * Asynchronously set by key a value associated with a LMV device.
2996  *
2997  * Dispatch request to lower-layer devices as needed.
2998  *
2999  * \param[in] env       execution environment for this thread
3000  * \param[in] exp       export for the LMV device
3001  * \param[in] keylen    length of key identifier
3002  * \param[in] key       identifier of key to store value for
3003  * \param[in] vallen    size of value to store
3004  * \param[in] val       pointer to data to be stored
3005  * \param[in] set       optional list of related ptlrpc requests
3006  *
3007  * \retval 0            on success
3008  * \retval negative     negated errno on failure
3009  */
3010 int lmv_set_info_async(const struct lu_env *env, struct obd_export *exp,
3011                         __u32 keylen, void *key, __u32 vallen, void *val,
3012                         struct ptlrpc_request_set *set)
3013 {
3014         struct lmv_tgt_desc     *tgt = NULL;
3015         struct obd_device       *obd;
3016         struct lmv_obd          *lmv;
3017         int rc = 0;
3018         ENTRY;
3019
3020         obd = class_exp2obd(exp);
3021         if (obd == NULL) {
3022                 CDEBUG(D_IOCTL, "Invalid client cookie %#llx\n",
3023                        exp->exp_handle.h_cookie);
3024                 RETURN(-EINVAL);
3025         }
3026         lmv = &obd->u.lmv;
3027
3028         if (KEY_IS(KEY_READ_ONLY) || KEY_IS(KEY_FLUSH_CTX) ||
3029             KEY_IS(KEY_DEFAULT_EASIZE)) {
3030                 int i, err = 0;
3031
3032                 for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
3033                         tgt = lmv->tgts[i];
3034
3035                         if (tgt == NULL || tgt->ltd_exp == NULL)
3036                                 continue;
3037
3038                         err = obd_set_info_async(env, tgt->ltd_exp,
3039                                                  keylen, key, vallen, val, set);
3040                         if (err && rc == 0)
3041                                 rc = err;
3042                 }
3043
3044                 RETURN(rc);
3045         }
3046
3047         RETURN(-EINVAL);
3048 }
3049
3050 static int lmv_unpack_md_v1(struct obd_export *exp, struct lmv_stripe_md *lsm,
3051                             const struct lmv_mds_md_v1 *lmm1)
3052 {
3053         struct lmv_obd  *lmv = &exp->exp_obd->u.lmv;
3054         int             stripe_count;
3055         int             cplen;
3056         int             i;
3057         int             rc = 0;
3058         ENTRY;
3059
3060         lsm->lsm_md_magic = le32_to_cpu(lmm1->lmv_magic);
3061         lsm->lsm_md_stripe_count = le32_to_cpu(lmm1->lmv_stripe_count);
3062         lsm->lsm_md_master_mdt_index = le32_to_cpu(lmm1->lmv_master_mdt_index);
3063         if (OBD_FAIL_CHECK(OBD_FAIL_UNKNOWN_LMV_STRIPE))
3064                 lsm->lsm_md_hash_type = LMV_HASH_TYPE_UNKNOWN;
3065         else
3066                 lsm->lsm_md_hash_type = le32_to_cpu(lmm1->lmv_hash_type);
3067         lsm->lsm_md_layout_version = le32_to_cpu(lmm1->lmv_layout_version);
3068         lsm->lsm_md_migrate_offset = le32_to_cpu(lmm1->lmv_migrate_offset);
3069         lsm->lsm_md_migrate_hash = le32_to_cpu(lmm1->lmv_migrate_hash);
3070         cplen = strlcpy(lsm->lsm_md_pool_name, lmm1->lmv_pool_name,
3071                         sizeof(lsm->lsm_md_pool_name));
3072
3073         if (cplen >= sizeof(lsm->lsm_md_pool_name))
3074                 RETURN(-E2BIG);
3075
3076         CDEBUG(D_INFO, "unpack lsm count %d, master %d hash_type %#x "
3077                "layout_version %d\n", lsm->lsm_md_stripe_count,
3078                lsm->lsm_md_master_mdt_index, lsm->lsm_md_hash_type,
3079                lsm->lsm_md_layout_version);
3080
3081         stripe_count = le32_to_cpu(lmm1->lmv_stripe_count);
3082         for (i = 0; i < stripe_count; i++) {
3083                 fid_le_to_cpu(&lsm->lsm_md_oinfo[i].lmo_fid,
3084                               &lmm1->lmv_stripe_fids[i]);
3085                 /*
3086                  * set default value -1, so lmv_locate_tgt() knows this stripe
3087                  * target is not initialized.
3088                  */
3089                 lsm->lsm_md_oinfo[i].lmo_mds = (u32)-1;
3090                 if (!fid_is_sane(&lsm->lsm_md_oinfo[i].lmo_fid))
3091                         continue;
3092
3093                 rc = lmv_fld_lookup(lmv, &lsm->lsm_md_oinfo[i].lmo_fid,
3094                                     &lsm->lsm_md_oinfo[i].lmo_mds);
3095                 if (rc == -ENOENT)
3096                         continue;
3097
3098                 if (rc)
3099                         RETURN(rc);
3100
3101                 CDEBUG(D_INFO, "unpack fid #%d "DFID"\n", i,
3102                        PFID(&lsm->lsm_md_oinfo[i].lmo_fid));
3103         }
3104
3105         RETURN(rc);
3106 }
3107
3108 static int lmv_unpackmd(struct obd_export *exp, struct lmv_stripe_md **lsmp,
3109                         const union lmv_mds_md *lmm, size_t lmm_size)
3110 {
3111         struct lmv_stripe_md     *lsm;
3112         int                      lsm_size;
3113         int                      rc;
3114         bool                     allocated = false;
3115         ENTRY;
3116
3117         LASSERT(lsmp != NULL);
3118
3119         lsm = *lsmp;
3120         /* Free memmd */
3121         if (lsm != NULL && lmm == NULL) {
3122                 int i;
3123
3124                 for (i = 0; i < lsm->lsm_md_stripe_count; i++) {
3125                         if (lsm->lsm_md_oinfo[i].lmo_root)
3126                                 iput(lsm->lsm_md_oinfo[i].lmo_root);
3127                 }
3128                 lsm_size = lmv_stripe_md_size(lsm->lsm_md_stripe_count);
3129                 OBD_FREE(lsm, lsm_size);
3130                 *lsmp = NULL;
3131                 RETURN(0);
3132         }
3133
3134         if (le32_to_cpu(lmm->lmv_magic) == LMV_MAGIC_STRIPE)
3135                 RETURN(-EPERM);
3136
3137         /* Unpack memmd */
3138         if (le32_to_cpu(lmm->lmv_magic) != LMV_MAGIC_V1 &&
3139             le32_to_cpu(lmm->lmv_magic) != LMV_USER_MAGIC) {
3140                 CERROR("%s: invalid lmv magic %x: rc = %d\n",
3141                        exp->exp_obd->obd_name, le32_to_cpu(lmm->lmv_magic),
3142                        -EIO);
3143                 RETURN(-EIO);
3144         }
3145
3146         if (le32_to_cpu(lmm->lmv_magic) == LMV_MAGIC_V1)
3147                 lsm_size = lmv_stripe_md_size(lmv_mds_md_stripe_count_get(lmm));
3148         else
3149                 /**
3150                  * Unpack default dirstripe(lmv_user_md) to lmv_stripe_md,
3151                  * stripecount should be 0 then.
3152                  */
3153                 lsm_size = lmv_stripe_md_size(0);
3154
3155         lsm_size = lmv_stripe_md_size(lmv_mds_md_stripe_count_get(lmm));
3156         if (lsm == NULL) {
3157                 OBD_ALLOC(lsm, lsm_size);
3158                 if (lsm == NULL)
3159                         RETURN(-ENOMEM);
3160                 allocated = true;
3161                 *lsmp = lsm;
3162         }
3163
3164         switch (le32_to_cpu(lmm->lmv_magic)) {
3165         case LMV_MAGIC_V1:
3166                 rc = lmv_unpack_md_v1(exp, lsm, &lmm->lmv_md_v1);
3167                 break;
3168         default:
3169                 CERROR("%s: unrecognized magic %x\n", exp->exp_obd->obd_name,
3170                        le32_to_cpu(lmm->lmv_magic));
3171                 rc = -EINVAL;
3172                 break;
3173         }
3174
3175         if (rc != 0 && allocated) {
3176                 OBD_FREE(lsm, lsm_size);
3177                 *lsmp = NULL;
3178                 lsm_size = rc;
3179         }
3180         RETURN(lsm_size);
3181 }
3182
3183 void lmv_free_memmd(struct lmv_stripe_md *lsm)
3184 {
3185         lmv_unpackmd(NULL, &lsm, NULL, 0);
3186 }
3187 EXPORT_SYMBOL(lmv_free_memmd);
3188
3189 static int lmv_cancel_unused(struct obd_export *exp, const struct lu_fid *fid,
3190                              union ldlm_policy_data *policy,
3191                              enum ldlm_mode mode, enum ldlm_cancel_flags flags,
3192                              void *opaque)
3193 {
3194         struct lmv_obd *lmv = &exp->exp_obd->u.lmv;
3195         int rc = 0;
3196         __u32 i;
3197         ENTRY;
3198
3199         LASSERT(fid != NULL);
3200
3201         for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
3202                 struct lmv_tgt_desc *tgt = lmv->tgts[i];
3203                 int err;
3204
3205                 if (tgt == NULL || tgt->ltd_exp == NULL || !tgt->ltd_active)
3206                         continue;
3207
3208                 err = md_cancel_unused(tgt->ltd_exp, fid, policy, mode, flags,
3209                                        opaque);
3210                 if (!rc)
3211                         rc = err;
3212         }
3213         RETURN(rc);
3214 }
3215
3216 static int lmv_set_lock_data(struct obd_export *exp,
3217                              const struct lustre_handle *lockh,
3218                              void *data, __u64 *bits)
3219 {
3220         struct lmv_obd          *lmv = &exp->exp_obd->u.lmv;
3221         struct lmv_tgt_desc     *tgt = lmv->tgts[0];
3222         int                      rc;
3223         ENTRY;
3224
3225         if (tgt == NULL || tgt->ltd_exp == NULL)
3226                 RETURN(-EINVAL);
3227         rc =  md_set_lock_data(tgt->ltd_exp, lockh, data, bits);
3228         RETURN(rc);
3229 }
3230
3231 enum ldlm_mode lmv_lock_match(struct obd_export *exp, __u64 flags,
3232                               const struct lu_fid *fid, enum ldlm_type type,
3233                               union ldlm_policy_data *policy,
3234                               enum ldlm_mode mode, struct lustre_handle *lockh)
3235 {
3236         struct obd_device       *obd = exp->exp_obd;
3237         struct lmv_obd          *lmv = &obd->u.lmv;
3238         enum ldlm_mode          rc;
3239         int                     tgt;
3240         int                     i;
3241         ENTRY;
3242
3243         CDEBUG(D_INODE, "Lock match for "DFID"\n", PFID(fid));
3244
3245         /*
3246          * With DNE every object can have two locks in different namespaces:
3247          * lookup lock in space of MDT storing direntry and update/open lock in
3248          * space of MDT storing inode.  Try the MDT that the FID maps to first,
3249          * since this can be easily found, and only try others if that fails.
3250          */
3251         for (i = 0, tgt = lmv_find_target_index(lmv, fid);
3252              i < lmv->desc.ld_tgt_count;
3253              i++, tgt = (tgt + 1) % lmv->desc.ld_tgt_count) {
3254                 if (tgt < 0) {
3255                         CDEBUG(D_HA, "%s: "DFID" is inaccessible: rc = %d\n",
3256                                obd->obd_name, PFID(fid), tgt);
3257                         tgt = 0;
3258                 }
3259
3260                 if (lmv->tgts[tgt] == NULL ||
3261                     lmv->tgts[tgt]->ltd_exp == NULL ||
3262                     lmv->tgts[tgt]->ltd_active == 0)
3263                         continue;
3264
3265                 rc = md_lock_match(lmv->tgts[tgt]->ltd_exp, flags, fid,
3266                                    type, policy, mode, lockh);
3267                 if (rc)
3268                         RETURN(rc);
3269         }
3270
3271         RETURN(0);
3272 }
3273
3274 int lmv_get_lustre_md(struct obd_export *exp, struct ptlrpc_request *req,
3275                       struct obd_export *dt_exp, struct obd_export *md_exp,
3276                       struct lustre_md *md)
3277 {
3278         struct lmv_obd          *lmv = &exp->exp_obd->u.lmv;
3279         struct lmv_tgt_desc     *tgt = lmv->tgts[0];
3280
3281         if (tgt == NULL || tgt->ltd_exp == NULL)
3282                 RETURN(-EINVAL);
3283
3284         return md_get_lustre_md(lmv->tgts[0]->ltd_exp, req, dt_exp, md_exp, md);
3285 }
3286
3287 int lmv_free_lustre_md(struct obd_export *exp, struct lustre_md *md)
3288 {
3289         struct obd_device       *obd = exp->exp_obd;
3290         struct lmv_obd          *lmv = &obd->u.lmv;
3291         struct lmv_tgt_desc     *tgt = lmv->tgts[0];
3292         ENTRY;
3293
3294         if (md->lmv != NULL) {
3295                 lmv_free_memmd(md->lmv);
3296                 md->lmv = NULL;
3297         }
3298         if (tgt == NULL || tgt->ltd_exp == NULL)
3299                 RETURN(-EINVAL);
3300         RETURN(md_free_lustre_md(lmv->tgts[0]->ltd_exp, md));
3301 }
3302
3303 int lmv_set_open_replay_data(struct obd_export *exp,
3304                              struct obd_client_handle *och,
3305                              struct lookup_intent *it)
3306 {
3307         struct obd_device       *obd = exp->exp_obd;
3308         struct lmv_obd          *lmv = &obd->u.lmv;
3309         struct lmv_tgt_desc     *tgt;
3310         ENTRY;
3311
3312         tgt = lmv_find_target(lmv, &och->och_fid);
3313         if (IS_ERR(tgt))
3314                 RETURN(PTR_ERR(tgt));
3315
3316         RETURN(md_set_open_replay_data(tgt->ltd_exp, och, it));
3317 }
3318
3319 int lmv_clear_open_replay_data(struct obd_export *exp,
3320                                struct obd_client_handle *och)
3321 {
3322         struct obd_device       *obd = exp->exp_obd;
3323         struct lmv_obd          *lmv = &obd->u.lmv;
3324         struct lmv_tgt_desc     *tgt;
3325         ENTRY;
3326
3327         tgt = lmv_find_target(lmv, &och->och_fid);
3328         if (IS_ERR(tgt))
3329                 RETURN(PTR_ERR(tgt));
3330
3331         RETURN(md_clear_open_replay_data(tgt->ltd_exp, och));
3332 }
3333
3334 int lmv_intent_getattr_async(struct obd_export *exp,
3335                              struct md_enqueue_info *minfo)
3336 {
3337         struct md_op_data *op_data = &minfo->mi_data;
3338         struct obd_device *obd = exp->exp_obd;
3339         struct lmv_obd *lmv = &obd->u.lmv;
3340         struct lmv_tgt_desc *ptgt;
3341         struct lmv_tgt_desc *ctgt;
3342         int rc;
3343
3344         ENTRY;
3345
3346         if (!fid_is_sane(&op_data->op_fid2))
3347                 RETURN(-EINVAL);
3348
3349         ptgt = lmv_locate_tgt(lmv, op_data, &op_data->op_fid1);
3350         if (IS_ERR(ptgt))
3351                 RETURN(PTR_ERR(ptgt));
3352
3353         ctgt = lmv_find_target(lmv, &op_data->op_fid2);
3354         if (IS_ERR(ctgt))
3355                 RETURN(PTR_ERR(ctgt));
3356
3357         /* remote object needs two RPCs to lookup and getattr, considering the
3358          * complexity, don't support statahead for now.
3359          */
3360         if (ptgt != ctgt)
3361                 RETURN(-EREMOTE);
3362
3363         rc = md_intent_getattr_async(ptgt->ltd_exp, minfo);
3364
3365         RETURN(rc);
3366 }
3367
3368 int lmv_revalidate_lock(struct obd_export *exp, struct lookup_intent *it,
3369                         struct lu_fid *fid, __u64 *bits)
3370 {
3371         struct obd_device       *obd = exp->exp_obd;
3372         struct lmv_obd          *lmv = &obd->u.lmv;
3373         struct lmv_tgt_desc     *tgt;
3374         int                      rc;
3375         ENTRY;
3376
3377         tgt = lmv_find_target(lmv, fid);
3378         if (IS_ERR(tgt))
3379                 RETURN(PTR_ERR(tgt));
3380
3381         rc = md_revalidate_lock(tgt->ltd_exp, it, fid, bits);
3382         RETURN(rc);
3383 }
3384
3385 int lmv_get_fid_from_lsm(struct obd_export *exp,
3386                          const struct lmv_stripe_md *lsm,
3387                          const char *name, int namelen, struct lu_fid *fid)
3388 {
3389         const struct lmv_oinfo *oinfo;
3390
3391         LASSERT(lsm != NULL);
3392         oinfo = lsm_name_to_stripe_info(lsm, name, namelen, false);
3393         if (IS_ERR(oinfo))
3394                 return PTR_ERR(oinfo);
3395
3396         *fid = oinfo->lmo_fid;
3397
3398         RETURN(0);
3399 }
3400
3401 /**
3402  * For lmv, only need to send request to master MDT, and the master MDT will
3403  * process with other slave MDTs. The only exception is Q_GETOQUOTA for which
3404  * we directly fetch data from the slave MDTs.
3405  */
3406 int lmv_quotactl(struct obd_device *unused, struct obd_export *exp,
3407                  struct obd_quotactl *oqctl)
3408 {
3409         struct obd_device   *obd = class_exp2obd(exp);
3410         struct lmv_obd      *lmv = &obd->u.lmv;
3411         struct lmv_tgt_desc *tgt = lmv->tgts[0];
3412         int                  rc = 0;
3413         __u32                i;
3414         __u64                curspace, curinodes;
3415         ENTRY;
3416
3417         if (tgt == NULL ||
3418             tgt->ltd_exp == NULL ||
3419             !tgt->ltd_active ||
3420             lmv->desc.ld_tgt_count == 0) {
3421                 CERROR("master lmv inactive\n");
3422                 RETURN(-EIO);
3423         }
3424
3425         if (oqctl->qc_cmd != Q_GETOQUOTA) {
3426                 rc = obd_quotactl(tgt->ltd_exp, oqctl);
3427                 RETURN(rc);
3428         }
3429
3430         curspace = curinodes = 0;
3431         for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
3432                 int err;
3433                 tgt = lmv->tgts[i];
3434
3435                 if (tgt == NULL || tgt->ltd_exp == NULL || !tgt->ltd_active)
3436                         continue;
3437
3438                 err = obd_quotactl(tgt->ltd_exp, oqctl);
3439                 if (err) {
3440                         CERROR("getquota on mdt %d failed. %d\n", i, err);
3441                         if (!rc)
3442                                 rc = err;
3443                 } else {
3444                         curspace += oqctl->qc_dqblk.dqb_curspace;
3445                         curinodes += oqctl->qc_dqblk.dqb_curinodes;
3446                 }
3447         }
3448         oqctl->qc_dqblk.dqb_curspace = curspace;
3449         oqctl->qc_dqblk.dqb_curinodes = curinodes;
3450
3451         RETURN(rc);
3452 }
3453
3454 static int lmv_merge_attr(struct obd_export *exp,
3455                           const struct lmv_stripe_md *lsm,
3456                           struct cl_attr *attr,
3457                           ldlm_blocking_callback cb_blocking)
3458 {
3459         int rc;
3460         int i;
3461
3462         rc = lmv_revalidate_slaves(exp, lsm, cb_blocking, 0);
3463         if (rc < 0)
3464                 return rc;
3465
3466         for (i = 0; i < lsm->lsm_md_stripe_count; i++) {
3467                 struct inode *inode = lsm->lsm_md_oinfo[i].lmo_root;
3468
3469                 if (!inode)
3470                         continue;
3471
3472                 CDEBUG(D_INFO,
3473                        "" DFID " size %llu, blocks %llu nlink %u, atime %lld ctime %lld, mtime %lld.\n",
3474                        PFID(&lsm->lsm_md_oinfo[i].lmo_fid),
3475                        i_size_read(inode), (unsigned long long)inode->i_blocks,
3476                        inode->i_nlink, (s64)inode->i_atime.tv_sec,
3477                        (s64)inode->i_ctime.tv_sec, (s64)inode->i_mtime.tv_sec);
3478
3479                 /* for slave stripe, it needs to subtract nlink for . and .. */
3480                 if (i != 0)
3481                         attr->cat_nlink += inode->i_nlink - 2;
3482                 else
3483                         attr->cat_nlink = inode->i_nlink;
3484
3485                 attr->cat_size += i_size_read(inode);
3486                 attr->cat_blocks += inode->i_blocks;
3487
3488                 if (attr->cat_atime < inode->i_atime.tv_sec)
3489                         attr->cat_atime = inode->i_atime.tv_sec;
3490
3491                 if (attr->cat_ctime < inode->i_ctime.tv_sec)
3492                         attr->cat_ctime = inode->i_ctime.tv_sec;
3493
3494                 if (attr->cat_mtime < inode->i_mtime.tv_sec)
3495                         attr->cat_mtime = inode->i_mtime.tv_sec;
3496         }
3497         return 0;
3498 }
3499
3500 struct obd_ops lmv_obd_ops = {
3501         .o_owner                = THIS_MODULE,
3502         .o_setup                = lmv_setup,
3503         .o_cleanup              = lmv_cleanup,
3504         .o_precleanup           = lmv_precleanup,
3505         .o_process_config       = lmv_process_config,
3506         .o_connect              = lmv_connect,
3507         .o_disconnect           = lmv_disconnect,
3508         .o_statfs               = lmv_statfs,
3509         .o_get_info             = lmv_get_info,
3510         .o_set_info_async       = lmv_set_info_async,
3511         .o_notify               = lmv_notify,
3512         .o_get_uuid             = lmv_get_uuid,
3513         .o_iocontrol            = lmv_iocontrol,
3514         .o_quotactl             = lmv_quotactl
3515 };
3516
3517 struct md_ops lmv_md_ops = {
3518         .m_get_root             = lmv_get_root,
3519         .m_null_inode           = lmv_null_inode,
3520         .m_close                = lmv_close,
3521         .m_create               = lmv_create,
3522         .m_enqueue              = lmv_enqueue,
3523         .m_getattr              = lmv_getattr,
3524         .m_getxattr             = lmv_getxattr,
3525         .m_getattr_name         = lmv_getattr_name,
3526         .m_intent_lock          = lmv_intent_lock,
3527         .m_link                 = lmv_link,
3528         .m_rename               = lmv_rename,
3529         .m_setattr              = lmv_setattr,
3530         .m_setxattr             = lmv_setxattr,
3531         .m_fsync                = lmv_fsync,
3532         .m_file_resync          = lmv_file_resync,
3533         .m_read_page            = lmv_read_page,
3534         .m_unlink               = lmv_unlink,
3535         .m_init_ea_size         = lmv_init_ea_size,
3536         .m_cancel_unused        = lmv_cancel_unused,
3537         .m_set_lock_data        = lmv_set_lock_data,
3538         .m_lock_match           = lmv_lock_match,
3539         .m_get_lustre_md        = lmv_get_lustre_md,
3540         .m_free_lustre_md       = lmv_free_lustre_md,
3541         .m_merge_attr           = lmv_merge_attr,
3542         .m_set_open_replay_data = lmv_set_open_replay_data,
3543         .m_clear_open_replay_data = lmv_clear_open_replay_data,
3544         .m_intent_getattr_async = lmv_intent_getattr_async,
3545         .m_revalidate_lock      = lmv_revalidate_lock,
3546         .m_get_fid_from_lsm     = lmv_get_fid_from_lsm,
3547         .m_unpackmd             = lmv_unpackmd,
3548         .m_rmfid                = lmv_rmfid,
3549 };
3550
3551 static int __init lmv_init(void)
3552 {
3553         return class_register_type(&lmv_obd_ops, &lmv_md_ops, true, NULL,
3554                                    LUSTRE_LMV_NAME, NULL);
3555 }
3556
3557 static void __exit lmv_exit(void)
3558 {
3559         class_unregister_type(LUSTRE_LMV_NAME);
3560 }
3561
3562 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
3563 MODULE_DESCRIPTION("Lustre Logical Metadata Volume");
3564 MODULE_VERSION(LUSTRE_VERSION_STRING);
3565 MODULE_LICENSE("GPL");
3566
3567 module_init(lmv_init);
3568 module_exit(lmv_exit);