Whamcloud - gitweb
LU-11838 lustre: discard LTIME_S macro
[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
663                 ori_gf = (struct getinfo_fid2path *)karg;
664                 if (strlen(ori_gf->gf_u.gf_path) + 1 +
665                     strlen(gf->gf_u.gf_path) + 1 > ori_gf->gf_pathlen)
666                         GOTO(out_fid2path, rc = -EOVERFLOW);
667
668                 ptr = ori_gf->gf_u.gf_path;
669
670                 memmove(ptr + strlen(gf->gf_u.gf_path) + 1, ptr,
671                         strlen(ori_gf->gf_u.gf_path));
672
673                 strncpy(ptr, gf->gf_u.gf_path,
674                         strlen(gf->gf_u.gf_path));
675                 ptr += strlen(gf->gf_u.gf_path);
676                 *ptr = '/';
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_NETTYP(LNET_NIDNET(lnet_id.nid)) != LOLND) {
1376                         lmv->lmv_statfs_start =
1377                                 lnet_id.nid % lmv->desc.ld_tgt_count;
1378                         break;
1379                 }
1380         }
1381
1382         return lmv->lmv_statfs_start;
1383 }
1384
1385 static int lmv_statfs(const struct lu_env *env, struct obd_export *exp,
1386                       struct obd_statfs *osfs, time64_t max_age, __u32 flags)
1387 {
1388         struct obd_device       *obd = class_exp2obd(exp);
1389         struct lmv_obd          *lmv = &obd->u.lmv;
1390         struct obd_statfs       *temp;
1391         int                      rc = 0;
1392         __u32                    i, idx;
1393         ENTRY;
1394
1395         OBD_ALLOC(temp, sizeof(*temp));
1396         if (temp == NULL)
1397                 RETURN(-ENOMEM);
1398
1399         /* distribute statfs among MDTs */
1400         idx = lmv_select_statfs_mdt(lmv, flags);
1401
1402         for (i = 0; i < lmv->desc.ld_tgt_count; i++, idx++) {
1403                 idx = idx % lmv->desc.ld_tgt_count;
1404                 if (lmv->tgts[idx] == NULL || lmv->tgts[idx]->ltd_exp == NULL)
1405                         continue;
1406
1407                 rc = obd_statfs(env, lmv->tgts[idx]->ltd_exp, temp,
1408                                 max_age, flags);
1409                 if (rc) {
1410                         CERROR("can't stat MDS #%d (%s), error %d\n", i,
1411                                lmv->tgts[idx]->ltd_exp->exp_obd->obd_name,
1412                                rc);
1413                         GOTO(out_free_temp, rc);
1414                 }
1415
1416                 if (temp->os_state & OS_STATE_SUM ||
1417                     flags == OBD_STATFS_FOR_MDT0) {
1418                         /* reset to the last aggregated values
1419                          * and don't sum with non-aggrated data */
1420                         /* If the statfs is from mount, it needs to retrieve
1421                          * necessary information from MDT0. i.e. mount does
1422                          * not need the merged osfs from all of MDT. Also
1423                          * clients can be mounted as long as MDT0 is in
1424                          * service */
1425                         *osfs = *temp;
1426                         break;
1427                 }
1428
1429                 if (i == 0) {
1430                         *osfs = *temp;
1431                 } else {
1432                         osfs->os_bavail += temp->os_bavail;
1433                         osfs->os_blocks += temp->os_blocks;
1434                         osfs->os_ffree += temp->os_ffree;
1435                         osfs->os_files += temp->os_files;
1436                         osfs->os_granted += temp->os_granted;
1437                 }
1438         }
1439
1440         EXIT;
1441 out_free_temp:
1442         OBD_FREE(temp, sizeof(*temp));
1443         return rc;
1444 }
1445
1446 static int lmv_get_root(struct obd_export *exp, const char *fileset,
1447                         struct lu_fid *fid)
1448 {
1449         struct obd_device    *obd = exp->exp_obd;
1450         struct lmv_obd       *lmv = &obd->u.lmv;
1451         int                   rc;
1452         ENTRY;
1453
1454         rc = md_get_root(lmv->tgts[0]->ltd_exp, fileset, fid);
1455         RETURN(rc);
1456 }
1457
1458 static int lmv_getxattr(struct obd_export *exp, const struct lu_fid *fid,
1459                         u64 obd_md_valid, const char *name, size_t buf_size,
1460                         struct ptlrpc_request **req)
1461 {
1462         struct obd_device      *obd = exp->exp_obd;
1463         struct lmv_obd         *lmv = &obd->u.lmv;
1464         struct lmv_tgt_desc    *tgt;
1465         int                     rc;
1466         ENTRY;
1467
1468         tgt = lmv_find_target(lmv, fid);
1469         if (IS_ERR(tgt))
1470                 RETURN(PTR_ERR(tgt));
1471
1472         rc = md_getxattr(tgt->ltd_exp, fid, obd_md_valid, name, buf_size, req);
1473
1474         RETURN(rc);
1475 }
1476
1477 static int lmv_setxattr(struct obd_export *exp, const struct lu_fid *fid,
1478                         u64 obd_md_valid, const char *name,
1479                         const void *value, size_t value_size,
1480                         unsigned int xattr_flags, u32 suppgid,
1481                         struct ptlrpc_request **req)
1482 {
1483         struct obd_device      *obd = exp->exp_obd;
1484         struct lmv_obd         *lmv = &obd->u.lmv;
1485         struct lmv_tgt_desc    *tgt;
1486         int                     rc;
1487         ENTRY;
1488
1489         tgt = lmv_find_target(lmv, fid);
1490         if (IS_ERR(tgt))
1491                 RETURN(PTR_ERR(tgt));
1492
1493         rc = md_setxattr(tgt->ltd_exp, fid, obd_md_valid, name,
1494                          value, value_size, xattr_flags, suppgid, req);
1495
1496         RETURN(rc);
1497 }
1498
1499 static int lmv_getattr(struct obd_export *exp, struct md_op_data *op_data,
1500                        struct ptlrpc_request **request)
1501 {
1502         struct obd_device       *obd = exp->exp_obd;
1503         struct lmv_obd          *lmv = &obd->u.lmv;
1504         struct lmv_tgt_desc     *tgt;
1505         int                      rc;
1506         ENTRY;
1507
1508         tgt = lmv_find_target(lmv, &op_data->op_fid1);
1509         if (IS_ERR(tgt))
1510                 RETURN(PTR_ERR(tgt));
1511
1512         if (op_data->op_flags & MF_GET_MDT_IDX) {
1513                 op_data->op_mds = tgt->ltd_idx;
1514                 RETURN(0);
1515         }
1516
1517         rc = md_getattr(tgt->ltd_exp, op_data, request);
1518
1519         RETURN(rc);
1520 }
1521
1522 static int lmv_null_inode(struct obd_export *exp, const struct lu_fid *fid)
1523 {
1524         struct obd_device   *obd = exp->exp_obd;
1525         struct lmv_obd      *lmv = &obd->u.lmv;
1526         __u32                i;
1527         ENTRY;
1528
1529         CDEBUG(D_INODE, "CBDATA for "DFID"\n", PFID(fid));
1530
1531         /*
1532          * With DNE every object can have two locks in different namespaces:
1533          * lookup lock in space of MDT storing direntry and update/open lock in
1534          * space of MDT storing inode.
1535          */
1536         for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
1537                 if (lmv->tgts[i] == NULL || lmv->tgts[i]->ltd_exp == NULL)
1538                         continue;
1539                 md_null_inode(lmv->tgts[i]->ltd_exp, fid);
1540         }
1541
1542         RETURN(0);
1543 }
1544
1545 static int lmv_close(struct obd_export *exp, struct md_op_data *op_data,
1546                      struct md_open_data *mod, struct ptlrpc_request **request)
1547 {
1548         struct obd_device     *obd = exp->exp_obd;
1549         struct lmv_obd        *lmv = &obd->u.lmv;
1550         struct lmv_tgt_desc   *tgt;
1551         int                    rc;
1552         ENTRY;
1553
1554         tgt = lmv_find_target(lmv, &op_data->op_fid1);
1555         if (IS_ERR(tgt))
1556                 RETURN(PTR_ERR(tgt));
1557
1558         CDEBUG(D_INODE, "CLOSE "DFID"\n", PFID(&op_data->op_fid1));
1559         rc = md_close(tgt->ltd_exp, op_data, mod, request);
1560         RETURN(rc);
1561 }
1562
1563 struct lmv_tgt_desc*
1564 __lmv_locate_tgt(struct lmv_obd *lmv, struct lmv_stripe_md *lsm,
1565                  const char *name, int namelen, struct lu_fid *fid, u32 *mds,
1566                  bool post_migrate)
1567 {
1568         struct lmv_tgt_desc *tgt;
1569         const struct lmv_oinfo *oinfo;
1570
1571         if (lsm == NULL || namelen == 0) {
1572                 tgt = lmv_find_target(lmv, fid);
1573                 if (IS_ERR(tgt))
1574                         return tgt;
1575
1576                 LASSERT(mds);
1577                 *mds = tgt->ltd_idx;
1578                 return tgt;
1579         }
1580
1581         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_NAME_HASH)) {
1582                 if (cfs_fail_val >= lsm->lsm_md_stripe_count)
1583                         return ERR_PTR(-EBADF);
1584                 oinfo = &lsm->lsm_md_oinfo[cfs_fail_val];
1585         } else {
1586                 oinfo = lsm_name_to_stripe_info(lsm, name, namelen,
1587                                                 post_migrate);
1588                 if (IS_ERR(oinfo))
1589                         return ERR_CAST(oinfo);
1590         }
1591
1592         if (fid != NULL)
1593                 *fid = oinfo->lmo_fid;
1594         if (mds != NULL)
1595                 *mds = oinfo->lmo_mds;
1596
1597         tgt = lmv_get_target(lmv, oinfo->lmo_mds, NULL);
1598
1599         CDEBUG(D_INFO, "locate on mds %u "DFID"\n", oinfo->lmo_mds,
1600                PFID(&oinfo->lmo_fid));
1601
1602         return tgt;
1603 }
1604
1605
1606 /**
1607  * Locate mdt by fid or name
1608  *
1609  * For striped directory, it will locate the stripe by name hash, if hash_type
1610  * is unknown, it will return the stripe specified by 'op_data->op_stripe_index'
1611  * which is set outside, and if dir is migrating, 'op_data->op_post_migrate'
1612  * indicates whether old or new layout is used to locate.
1613  *
1614  * For normal direcotry, it will locate MDS by FID directly.
1615  *
1616  * \param[in] lmv       LMV device
1617  * \param[in] op_data   client MD stack parameters, name, namelen
1618  *                      mds_num etc.
1619  * \param[in] fid       object FID used to locate MDS.
1620  *
1621  * retval               pointer to the lmv_tgt_desc if succeed.
1622  *                      ERR_PTR(errno) if failed.
1623  */
1624 struct lmv_tgt_desc*
1625 lmv_locate_tgt(struct lmv_obd *lmv, struct md_op_data *op_data,
1626                struct lu_fid *fid)
1627 {
1628         struct lmv_stripe_md *lsm = op_data->op_mea1;
1629         struct lmv_oinfo *oinfo;
1630         struct lmv_tgt_desc *tgt;
1631
1632         /* During creating VOLATILE file, it should honor the mdt
1633          * index if the file under striped dir is being restored, see
1634          * ct_restore(). */
1635         if (op_data->op_bias & MDS_CREATE_VOLATILE &&
1636             (int)op_data->op_mds != -1) {
1637                 tgt = lmv_get_target(lmv, op_data->op_mds, NULL);
1638                 if (IS_ERR(tgt))
1639                         return tgt;
1640
1641                 if (lsm) {
1642                         int i;
1643
1644                         /* refill the right parent fid */
1645                         for (i = 0; i < lsm->lsm_md_stripe_count; i++) {
1646                                 oinfo = &lsm->lsm_md_oinfo[i];
1647                                 if (oinfo->lmo_mds == op_data->op_mds) {
1648                                         *fid = oinfo->lmo_fid;
1649                                         break;
1650                                 }
1651                         }
1652
1653                         if (i == lsm->lsm_md_stripe_count)
1654                                 *fid = lsm->lsm_md_oinfo[0].lmo_fid;
1655                 }
1656         } else if (lmv_is_dir_bad_hash(lsm)) {
1657                 LASSERT(op_data->op_stripe_index < lsm->lsm_md_stripe_count);
1658                 oinfo = &lsm->lsm_md_oinfo[op_data->op_stripe_index];
1659
1660                 *fid = oinfo->lmo_fid;
1661                 op_data->op_mds = oinfo->lmo_mds;
1662                 tgt = lmv_get_target(lmv, oinfo->lmo_mds, NULL);
1663         } else {
1664                 tgt = __lmv_locate_tgt(lmv, lsm, op_data->op_name,
1665                                        op_data->op_namelen, fid,
1666                                        &op_data->op_mds,
1667                                        op_data->op_post_migrate);
1668         }
1669
1670         return tgt;
1671 }
1672
1673 int lmv_create(struct obd_export *exp, struct md_op_data *op_data,
1674                 const void *data, size_t datalen, umode_t mode, uid_t uid,
1675                 gid_t gid, cfs_cap_t cap_effective, __u64 rdev,
1676                 struct ptlrpc_request **request)
1677 {
1678         struct obd_device       *obd = exp->exp_obd;
1679         struct lmv_obd          *lmv = &obd->u.lmv;
1680         struct lmv_tgt_desc     *tgt;
1681         int                      rc;
1682         ENTRY;
1683
1684         if (!lmv->desc.ld_active_tgt_count)
1685                 RETURN(-EIO);
1686
1687         if (lmv_is_dir_bad_hash(op_data->op_mea1))
1688                 RETURN(-EBADF);
1689
1690         if (lmv_is_dir_migrating(op_data->op_mea1)) {
1691                 /*
1692                  * if parent is migrating, create() needs to lookup existing
1693                  * name, to avoid creating new file under old layout of
1694                  * migrating directory, check old layout here.
1695                  */
1696                 tgt = lmv_locate_tgt(lmv, op_data, &op_data->op_fid1);
1697                 if (IS_ERR(tgt))
1698                         RETURN(PTR_ERR(tgt));
1699
1700                 rc = md_getattr_name(tgt->ltd_exp, op_data, request);
1701                 if (!rc) {
1702                         ptlrpc_req_finished(*request);
1703                         *request = NULL;
1704                         RETURN(-EEXIST);
1705                 }
1706
1707                 if (rc != -ENOENT)
1708                         RETURN(rc);
1709
1710                 op_data->op_post_migrate = true;
1711         }
1712
1713         tgt = lmv_locate_tgt(lmv, op_data, &op_data->op_fid1);
1714         if (IS_ERR(tgt))
1715                 RETURN(PTR_ERR(tgt));
1716
1717         CDEBUG(D_INODE, "CREATE name '%.*s' on "DFID" -> mds #%x\n",
1718                 (int)op_data->op_namelen, op_data->op_name,
1719                 PFID(&op_data->op_fid1), op_data->op_mds);
1720
1721         rc = lmv_fid_alloc(NULL, exp, &op_data->op_fid2, op_data);
1722         if (rc)
1723                 RETURN(rc);
1724
1725         if (exp_connect_flags(exp) & OBD_CONNECT_DIR_STRIPE) {
1726                 /* Send the create request to the MDT where the object
1727                  * will be located */
1728                 tgt = lmv_find_target(lmv, &op_data->op_fid2);
1729                 if (IS_ERR(tgt))
1730                         RETURN(PTR_ERR(tgt));
1731
1732                 op_data->op_mds = tgt->ltd_idx;
1733         } else {
1734                 CDEBUG(D_CONFIG, "Server doesn't support striped dirs\n");
1735         }
1736
1737         CDEBUG(D_INODE, "CREATE obj "DFID" -> mds #%x\n",
1738                PFID(&op_data->op_fid2), op_data->op_mds);
1739
1740         op_data->op_flags |= MF_MDC_CANCEL_FID1;
1741         rc = md_create(tgt->ltd_exp, op_data, data, datalen, mode, uid, gid,
1742                        cap_effective, rdev, request);
1743         if (rc == 0) {
1744                 if (*request == NULL)
1745                         RETURN(rc);
1746                 CDEBUG(D_INODE, "Created - "DFID"\n", PFID(&op_data->op_fid2));
1747         }
1748         RETURN(rc);
1749 }
1750
1751 static int
1752 lmv_enqueue(struct obd_export *exp, struct ldlm_enqueue_info *einfo,
1753             const union ldlm_policy_data *policy, struct md_op_data *op_data,
1754             struct lustre_handle *lockh, __u64 extra_lock_flags)
1755 {
1756         struct obd_device        *obd = exp->exp_obd;
1757         struct lmv_obd           *lmv = &obd->u.lmv;
1758         struct lmv_tgt_desc      *tgt;
1759         int                       rc;
1760         ENTRY;
1761
1762         CDEBUG(D_INODE, "ENQUEUE on "DFID"\n", PFID(&op_data->op_fid1));
1763
1764         tgt = lmv_find_target(lmv, &op_data->op_fid1);
1765         if (IS_ERR(tgt))
1766                 RETURN(PTR_ERR(tgt));
1767
1768         CDEBUG(D_INODE, "ENQUEUE on "DFID" -> mds #%u\n",
1769                PFID(&op_data->op_fid1), tgt->ltd_idx);
1770
1771         rc = md_enqueue(tgt->ltd_exp, einfo, policy, op_data, lockh,
1772                         extra_lock_flags);
1773
1774         RETURN(rc);
1775 }
1776
1777 int
1778 lmv_getattr_name(struct obd_export *exp,struct md_op_data *op_data,
1779                  struct ptlrpc_request **preq)
1780 {
1781         struct obd_device *obd = exp->exp_obd;
1782         struct lmv_obd *lmv = &obd->u.lmv;
1783         struct lmv_tgt_desc *tgt;
1784         struct mdt_body *body;
1785         int rc;
1786
1787         ENTRY;
1788
1789 retry:
1790         tgt = lmv_locate_tgt(lmv, op_data, &op_data->op_fid1);
1791         if (IS_ERR(tgt))
1792                 RETURN(PTR_ERR(tgt));
1793
1794         CDEBUG(D_INODE, "GETATTR_NAME for %*s on "DFID" -> mds #%d\n",
1795                 (int)op_data->op_namelen, op_data->op_name,
1796                 PFID(&op_data->op_fid1), tgt->ltd_idx);
1797
1798         rc = md_getattr_name(tgt->ltd_exp, op_data, preq);
1799         if (rc == -ENOENT && lmv_dir_retry_check_update(op_data)) {
1800                 ptlrpc_req_finished(*preq);
1801                 *preq = NULL;
1802                 goto retry;
1803         }
1804
1805         if (rc)
1806                 RETURN(rc);
1807
1808         body = req_capsule_server_get(&(*preq)->rq_pill, &RMF_MDT_BODY);
1809         LASSERT(body != NULL);
1810
1811         if (body->mbo_valid & OBD_MD_MDS) {
1812                 op_data->op_fid1 = body->mbo_fid1;
1813                 op_data->op_valid |= OBD_MD_FLCROSSREF;
1814                 op_data->op_namelen = 0;
1815                 op_data->op_name = NULL;
1816
1817                 ptlrpc_req_finished(*preq);
1818                 *preq = NULL;
1819
1820                 goto retry;
1821         }
1822
1823         RETURN(rc);
1824 }
1825
1826 #define md_op_data_fid(op_data, fl)                     \
1827         (fl == MF_MDC_CANCEL_FID1 ? &op_data->op_fid1 : \
1828          fl == MF_MDC_CANCEL_FID2 ? &op_data->op_fid2 : \
1829          fl == MF_MDC_CANCEL_FID3 ? &op_data->op_fid3 : \
1830          fl == MF_MDC_CANCEL_FID4 ? &op_data->op_fid4 : \
1831          NULL)
1832
1833 static int lmv_early_cancel(struct obd_export *exp, struct lmv_tgt_desc *tgt,
1834                             struct md_op_data *op_data, __u32 op_tgt,
1835                             enum ldlm_mode mode, int bits, int flag)
1836 {
1837         struct lu_fid *fid = md_op_data_fid(op_data, flag);
1838         struct lmv_obd *lmv = &exp->exp_obd->u.lmv;
1839         union ldlm_policy_data policy = { { 0 } };
1840         int rc = 0;
1841         ENTRY;
1842
1843         if (!fid_is_sane(fid))
1844                 RETURN(0);
1845
1846         if (tgt == NULL) {
1847                 tgt = lmv_find_target(lmv, fid);
1848                 if (IS_ERR(tgt))
1849                         RETURN(PTR_ERR(tgt));
1850         }
1851
1852         if (tgt->ltd_idx != op_tgt) {
1853                 CDEBUG(D_INODE, "EARLY_CANCEL on "DFID"\n", PFID(fid));
1854                 policy.l_inodebits.bits = bits;
1855                 rc = md_cancel_unused(tgt->ltd_exp, fid, &policy,
1856                                       mode, LCF_ASYNC, NULL);
1857         } else {
1858                 CDEBUG(D_INODE,
1859                        "EARLY_CANCEL skip operation target %d on "DFID"\n",
1860                        op_tgt, PFID(fid));
1861                 op_data->op_flags |= flag;
1862                 rc = 0;
1863         }
1864
1865         RETURN(rc);
1866 }
1867
1868 /*
1869  * llite passes fid of an target inode in op_data->op_fid1 and id of directory in
1870  * op_data->op_fid2
1871  */
1872 static int lmv_link(struct obd_export *exp, struct md_op_data *op_data,
1873                     struct ptlrpc_request **request)
1874 {
1875         struct obd_device       *obd = exp->exp_obd;
1876         struct lmv_obd          *lmv = &obd->u.lmv;
1877         struct lmv_tgt_desc     *tgt;
1878         int                      rc;
1879         ENTRY;
1880
1881         LASSERT(op_data->op_namelen != 0);
1882
1883         CDEBUG(D_INODE, "LINK "DFID":%*s to "DFID"\n",
1884                PFID(&op_data->op_fid2), (int)op_data->op_namelen,
1885                op_data->op_name, PFID(&op_data->op_fid1));
1886
1887         op_data->op_fsuid = from_kuid(&init_user_ns, current_fsuid());
1888         op_data->op_fsgid = from_kgid(&init_user_ns, current_fsgid());
1889         op_data->op_cap = cfs_curproc_cap_pack();
1890
1891         if (lmv_is_dir_migrating(op_data->op_mea2)) {
1892                 struct lu_fid fid1 = op_data->op_fid1;
1893                 struct lmv_stripe_md *lsm1 = op_data->op_mea1;
1894
1895                 /*
1896                  * avoid creating new file under old layout of migrating
1897                  * directory, check it here.
1898                  */
1899                 tgt = __lmv_locate_tgt(lmv, op_data->op_mea2, op_data->op_name,
1900                                        op_data->op_namelen, &op_data->op_fid2,
1901                                        &op_data->op_mds, false);
1902                 tgt = lmv_locate_tgt(lmv, op_data, &op_data->op_fid1);
1903                 if (IS_ERR(tgt))
1904                         RETURN(PTR_ERR(tgt));
1905
1906                 op_data->op_fid1 = op_data->op_fid2;
1907                 op_data->op_mea1 = op_data->op_mea2;
1908                 rc = md_getattr_name(tgt->ltd_exp, op_data, request);
1909                 op_data->op_fid1 = fid1;
1910                 op_data->op_mea1 = lsm1;
1911                 if (!rc) {
1912                         ptlrpc_req_finished(*request);
1913                         *request = NULL;
1914                         RETURN(-EEXIST);
1915                 }
1916
1917                 if (rc != -ENOENT)
1918                         RETURN(rc);
1919         }
1920
1921         tgt = __lmv_locate_tgt(lmv, op_data->op_mea2, op_data->op_name,
1922                                op_data->op_namelen, &op_data->op_fid2,
1923                                &op_data->op_mds, true);
1924         if (IS_ERR(tgt))
1925                 RETURN(PTR_ERR(tgt));
1926
1927         /*
1928          * Cancel UPDATE lock on child (fid1).
1929          */
1930         op_data->op_flags |= MF_MDC_CANCEL_FID2;
1931         rc = lmv_early_cancel(exp, NULL, op_data, tgt->ltd_idx, LCK_EX,
1932                               MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID1);
1933         if (rc != 0)
1934                 RETURN(rc);
1935
1936         rc = md_link(tgt->ltd_exp, op_data, request);
1937
1938         RETURN(rc);
1939 }
1940
1941 static int lmv_migrate(struct obd_export *exp, struct md_op_data *op_data,
1942                         const char *name, size_t namelen,
1943                         struct ptlrpc_request **request)
1944 {
1945         struct obd_device *obd = exp->exp_obd;
1946         struct lmv_obd *lmv = &obd->u.lmv;
1947         struct lmv_stripe_md *lsm = op_data->op_mea1;
1948         struct lmv_tgt_desc *parent_tgt;
1949         struct lmv_tgt_desc *sp_tgt;
1950         struct lmv_tgt_desc *tp_tgt = NULL;
1951         struct lmv_tgt_desc *child_tgt;
1952         struct lmv_tgt_desc *tgt;
1953         struct lu_fid target_fid;
1954         int rc;
1955
1956         ENTRY;
1957
1958         LASSERT(op_data->op_cli_flags & CLI_MIGRATE);
1959
1960         CDEBUG(D_INODE, "MIGRATE "DFID"/%.*s\n",
1961                PFID(&op_data->op_fid1), (int)namelen, name);
1962
1963         op_data->op_fsuid = from_kuid(&init_user_ns, current_fsuid());
1964         op_data->op_fsgid = from_kgid(&init_user_ns, current_fsgid());
1965         op_data->op_cap = cfs_curproc_cap_pack();
1966
1967         parent_tgt = lmv_find_target(lmv, &op_data->op_fid1);
1968         if (IS_ERR(parent_tgt))
1969                 RETURN(PTR_ERR(parent_tgt));
1970
1971         if (lsm) {
1972                 __u32 hash_type = lsm->lsm_md_hash_type;
1973                 __u32 stripe_count = lsm->lsm_md_stripe_count;
1974
1975                 /*
1976                  * old stripes are appended after new stripes for migrating
1977                  * directory.
1978                  */
1979                 if (lsm->lsm_md_hash_type & LMV_HASH_FLAG_MIGRATION) {
1980                         hash_type = lsm->lsm_md_migrate_hash;
1981                         stripe_count -= lsm->lsm_md_migrate_offset;
1982                 }
1983
1984                 rc = lmv_name_to_stripe_index(hash_type, stripe_count, name,
1985                                               namelen);
1986                 if (rc < 0)
1987                         RETURN(rc);
1988
1989                 if (lsm->lsm_md_hash_type & LMV_HASH_FLAG_MIGRATION)
1990                         rc += lsm->lsm_md_migrate_offset;
1991
1992                 /* save it in fid4 temporarily for early cancel */
1993                 op_data->op_fid4 = lsm->lsm_md_oinfo[rc].lmo_fid;
1994                 sp_tgt = lmv_get_target(lmv, lsm->lsm_md_oinfo[rc].lmo_mds,
1995                                         NULL);
1996                 if (IS_ERR(sp_tgt))
1997                         RETURN(PTR_ERR(sp_tgt));
1998
1999                 /*
2000                  * if parent is being migrated too, fill op_fid2 with target
2001                  * stripe fid, otherwise the target stripe is not created yet.
2002                  */
2003                 if (lsm->lsm_md_hash_type & LMV_HASH_FLAG_MIGRATION) {
2004                         hash_type = lsm->lsm_md_hash_type &
2005                                     ~LMV_HASH_FLAG_MIGRATION;
2006                         stripe_count = lsm->lsm_md_migrate_offset;
2007
2008                         rc = lmv_name_to_stripe_index(hash_type, stripe_count,
2009                                                       name, namelen);
2010                         if (rc < 0)
2011                                 RETURN(rc);
2012
2013                         op_data->op_fid2 = lsm->lsm_md_oinfo[rc].lmo_fid;
2014                         tp_tgt = lmv_get_target(lmv,
2015                                                 lsm->lsm_md_oinfo[rc].lmo_mds,
2016                                                 NULL);
2017                         if (IS_ERR(tp_tgt))
2018                                 RETURN(PTR_ERR(tp_tgt));
2019                 }
2020         } else {
2021                 sp_tgt = parent_tgt;
2022         }
2023
2024         child_tgt = lmv_find_target(lmv, &op_data->op_fid3);
2025         if (IS_ERR(child_tgt))
2026                 RETURN(PTR_ERR(child_tgt));
2027
2028         if (!S_ISDIR(op_data->op_mode) && tp_tgt)
2029                 rc = __lmv_fid_alloc(lmv, &target_fid, tp_tgt->ltd_idx);
2030         else
2031                 rc = lmv_fid_alloc(NULL, exp, &target_fid, op_data);
2032         if (rc)
2033                 RETURN(rc);
2034
2035         /*
2036          * for directory, send migrate request to the MDT where the object will
2037          * be migrated to, because we can't create a striped directory remotely.
2038          *
2039          * otherwise, send to the MDT where source is located because regular
2040          * file may open lease.
2041          *
2042          * NB. if MDT doesn't support DIR_MIGRATE, send to source MDT too for
2043          * backward compatibility.
2044          */
2045         if (S_ISDIR(op_data->op_mode) &&
2046             (exp_connect_flags2(exp) & OBD_CONNECT2_DIR_MIGRATE)) {
2047                 tgt = lmv_find_target(lmv, &target_fid);
2048                 if (IS_ERR(tgt))
2049                         RETURN(PTR_ERR(tgt));
2050         } else {
2051                 tgt = child_tgt;
2052         }
2053
2054         /* cancel UPDATE lock of parent master object */
2055         rc = lmv_early_cancel(exp, parent_tgt, op_data, tgt->ltd_idx, LCK_EX,
2056                               MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID1);
2057         if (rc)
2058                 RETURN(rc);
2059
2060         /* cancel UPDATE lock of source parent */
2061         if (sp_tgt != parent_tgt) {
2062                 /*
2063                  * migrate RPC packs master object FID, because we can only pack
2064                  * two FIDs in reint RPC, but MDS needs to know both source
2065                  * parent and target parent, and it will obtain them from master
2066                  * FID and LMV, the other FID in RPC is kept for target.
2067                  *
2068                  * since this FID is not passed to MDC, cancel it anyway.
2069                  */
2070                 rc = lmv_early_cancel(exp, sp_tgt, op_data, -1, LCK_EX,
2071                                       MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID4);
2072                 if (rc)
2073                         RETURN(rc);
2074
2075                 op_data->op_flags &= ~MF_MDC_CANCEL_FID4;
2076         }
2077         op_data->op_fid4 = target_fid;
2078
2079         /* cancel UPDATE locks of target parent */
2080         rc = lmv_early_cancel(exp, tp_tgt, op_data, tgt->ltd_idx, LCK_EX,
2081                               MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID2);
2082         if (rc)
2083                 RETURN(rc);
2084
2085         /* cancel LOOKUP lock of source if source is remote object */
2086         if (child_tgt != sp_tgt) {
2087                 rc = lmv_early_cancel(exp, sp_tgt, op_data, tgt->ltd_idx,
2088                                       LCK_EX, MDS_INODELOCK_LOOKUP,
2089                                       MF_MDC_CANCEL_FID3);
2090                 if (rc)
2091                         RETURN(rc);
2092         }
2093
2094         /* cancel ELC locks of source */
2095         rc = lmv_early_cancel(exp, child_tgt, op_data, tgt->ltd_idx, LCK_EX,
2096                               MDS_INODELOCK_ELC, MF_MDC_CANCEL_FID3);
2097         if (rc)
2098                 RETURN(rc);
2099
2100         rc = md_rename(tgt->ltd_exp, op_data, name, namelen, NULL, 0, request);
2101
2102         RETURN(rc);
2103 }
2104
2105 static int lmv_rename(struct obd_export *exp, struct md_op_data *op_data,
2106                       const char *old, size_t oldlen,
2107                       const char *new, size_t newlen,
2108                       struct ptlrpc_request **request)
2109 {
2110         struct obd_device *obd = exp->exp_obd;
2111         struct lmv_obd *lmv = &obd->u.lmv;
2112         struct lmv_tgt_desc *sp_tgt;
2113         struct lmv_tgt_desc *tp_tgt = NULL;
2114         struct lmv_tgt_desc *src_tgt = NULL;
2115         struct lmv_tgt_desc *tgt;
2116         struct mdt_body *body;
2117         int rc;
2118
2119         ENTRY;
2120
2121         LASSERT(oldlen != 0);
2122
2123         if (op_data->op_cli_flags & CLI_MIGRATE) {
2124                 rc = lmv_migrate(exp, op_data, old, oldlen, request);
2125                 RETURN(rc);
2126         }
2127
2128         op_data->op_fsuid = from_kuid(&init_user_ns, current_fsuid());
2129         op_data->op_fsgid = from_kgid(&init_user_ns, current_fsgid());
2130         op_data->op_cap = cfs_curproc_cap_pack();
2131
2132         if (lmv_is_dir_migrating(op_data->op_mea2)) {
2133                 struct lu_fid fid1 = op_data->op_fid1;
2134                 struct lmv_stripe_md *lsm1 = op_data->op_mea1;
2135
2136                 /*
2137                  * we avoid creating new file under old layout of migrating
2138                  * directory, if there is an existing file with new name under
2139                  * old layout, we can't unlink file in old layout and rename to
2140                  * new layout in one transaction, so return -EBUSY here.`
2141                  */
2142                 tgt = __lmv_locate_tgt(lmv, op_data->op_mea2, new, newlen,
2143                                        &op_data->op_fid2, &op_data->op_mds,
2144                                        false);
2145                 if (IS_ERR(tgt))
2146                         RETURN(PTR_ERR(tgt));
2147
2148                 op_data->op_fid1 = op_data->op_fid2;
2149                 op_data->op_mea1 = op_data->op_mea2;
2150                 op_data->op_name = new;
2151                 op_data->op_namelen = newlen;
2152                 rc = md_getattr_name(tgt->ltd_exp, op_data, request);
2153                 op_data->op_fid1 = fid1;
2154                 op_data->op_mea1 = lsm1;
2155                 op_data->op_name = NULL;
2156                 op_data->op_namelen = 0;
2157                 if (!rc) {
2158                         ptlrpc_req_finished(*request);
2159                         *request = NULL;
2160                         RETURN(-EBUSY);
2161                 }
2162
2163                 if (rc != -ENOENT)
2164                         RETURN(rc);
2165         }
2166
2167         /* rename to new layout for migrating directory */
2168         tp_tgt = __lmv_locate_tgt(lmv, op_data->op_mea2, new, newlen,
2169                                   &op_data->op_fid2, &op_data->op_mds, true);
2170         if (IS_ERR(tp_tgt))
2171                 RETURN(PTR_ERR(tp_tgt));
2172
2173         /* Since the target child might be destroyed, and it might become
2174          * orphan, and we can only check orphan on the local MDT right now, so
2175          * we send rename request to the MDT where target child is located. If
2176          * target child does not exist, then it will send the request to the
2177          * target parent */
2178         if (fid_is_sane(&op_data->op_fid4)) {
2179                 tgt = lmv_find_target(lmv, &op_data->op_fid4);
2180                 if (IS_ERR(tgt))
2181                         RETURN(PTR_ERR(tgt));
2182         } else {
2183                 tgt = tp_tgt;
2184         }
2185
2186         op_data->op_flags |= MF_MDC_CANCEL_FID4;
2187
2188         /* cancel UPDATE locks of target parent */
2189         rc = lmv_early_cancel(exp, tp_tgt, op_data, tgt->ltd_idx, LCK_EX,
2190                               MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID2);
2191         if (rc != 0)
2192                 RETURN(rc);
2193
2194         if (fid_is_sane(&op_data->op_fid4)) {
2195                 /* cancel LOOKUP lock of target on target parent */
2196                 if (tgt != tp_tgt) {
2197                         rc = lmv_early_cancel(exp, tp_tgt, op_data,
2198                                               tgt->ltd_idx, LCK_EX,
2199                                               MDS_INODELOCK_LOOKUP,
2200                                               MF_MDC_CANCEL_FID4);
2201                         if (rc != 0)
2202                                 RETURN(rc);
2203                 }
2204         }
2205
2206         if (fid_is_sane(&op_data->op_fid3)) {
2207                 src_tgt = lmv_find_target(lmv, &op_data->op_fid3);
2208                 if (IS_ERR(src_tgt))
2209                         RETURN(PTR_ERR(src_tgt));
2210
2211                 /* cancel ELC locks of source */
2212                 rc = lmv_early_cancel(exp, src_tgt, op_data, tgt->ltd_idx,
2213                                       LCK_EX, MDS_INODELOCK_ELC,
2214                                       MF_MDC_CANCEL_FID3);
2215                 if (rc != 0)
2216                         RETURN(rc);
2217         }
2218
2219 retry:
2220         sp_tgt = __lmv_locate_tgt(lmv, op_data->op_mea1, old, oldlen,
2221                                   &op_data->op_fid1, &op_data->op_mds,
2222                                   op_data->op_post_migrate);
2223         if (IS_ERR(sp_tgt))
2224                 RETURN(PTR_ERR(sp_tgt));
2225
2226         /* cancel UPDATE locks of source parent */
2227         rc = lmv_early_cancel(exp, sp_tgt, op_data, tgt->ltd_idx, LCK_EX,
2228                               MDS_INODELOCK_UPDATE, MF_MDC_CANCEL_FID1);
2229         if (rc != 0)
2230                 RETURN(rc);
2231
2232         if (fid_is_sane(&op_data->op_fid3)) {
2233                 /* cancel LOOKUP lock of source on source parent */
2234                 if (src_tgt != sp_tgt) {
2235                         rc = lmv_early_cancel(exp, sp_tgt, op_data,
2236                                               tgt->ltd_idx, LCK_EX,
2237                                               MDS_INODELOCK_LOOKUP,
2238                                               MF_MDC_CANCEL_FID3);
2239                         if (rc != 0)
2240                                 RETURN(rc);
2241                 }
2242         }
2243
2244 rename:
2245         CDEBUG(D_INODE, "RENAME "DFID"/%.*s to "DFID"/%.*s\n",
2246                 PFID(&op_data->op_fid1), (int)oldlen, old,
2247                 PFID(&op_data->op_fid2), (int)newlen, new);
2248
2249         rc = md_rename(tgt->ltd_exp, op_data, old, oldlen, new, newlen,
2250                         request);
2251         if (rc == -ENOENT && lmv_dir_retry_check_update(op_data)) {
2252                 ptlrpc_req_finished(*request);
2253                 *request = NULL;
2254                 goto retry;
2255         }
2256
2257         if (rc && rc != -EXDEV)
2258                 RETURN(rc);
2259
2260         body = req_capsule_server_get(&(*request)->rq_pill, &RMF_MDT_BODY);
2261         if (body == NULL)
2262                 RETURN(-EPROTO);
2263
2264         /* Not cross-ref case, just get out of here. */
2265         if (likely(!(body->mbo_valid & OBD_MD_MDS)))
2266                 RETURN(rc);
2267
2268         op_data->op_fid4 = body->mbo_fid1;
2269
2270         ptlrpc_req_finished(*request);
2271         *request = NULL;
2272
2273         tgt = lmv_find_target(lmv, &op_data->op_fid4);
2274         if (IS_ERR(tgt))
2275                 RETURN(PTR_ERR(tgt));
2276
2277         if (fid_is_sane(&op_data->op_fid4)) {
2278                 /* cancel LOOKUP lock of target on target parent */
2279                 if (tgt != tp_tgt) {
2280                         rc = lmv_early_cancel(exp, tp_tgt, op_data,
2281                                               tgt->ltd_idx, LCK_EX,
2282                                               MDS_INODELOCK_LOOKUP,
2283                                               MF_MDC_CANCEL_FID4);
2284                         if (rc != 0)
2285                                 RETURN(rc);
2286                 }
2287         }
2288
2289         goto rename;
2290 }
2291
2292 static int lmv_setattr(struct obd_export *exp, struct md_op_data *op_data,
2293                        void *ea, size_t ealen, struct ptlrpc_request **request)
2294 {
2295         struct obd_device       *obd = exp->exp_obd;
2296         struct lmv_obd          *lmv = &obd->u.lmv;
2297         struct lmv_tgt_desc     *tgt;
2298         int                      rc = 0;
2299         ENTRY;
2300
2301         CDEBUG(D_INODE, "SETATTR for "DFID", valid 0x%x/0x%x\n",
2302                PFID(&op_data->op_fid1), op_data->op_attr.ia_valid,
2303                op_data->op_xvalid);
2304
2305         op_data->op_flags |= MF_MDC_CANCEL_FID1;
2306         tgt = lmv_find_target(lmv, &op_data->op_fid1);
2307         if (IS_ERR(tgt))
2308                 RETURN(PTR_ERR(tgt));
2309
2310         rc = md_setattr(tgt->ltd_exp, op_data, ea, ealen, request);
2311
2312         RETURN(rc);
2313 }
2314
2315 static int lmv_fsync(struct obd_export *exp, const struct lu_fid *fid,
2316                      struct ptlrpc_request **request)
2317 {
2318         struct obd_device       *obd = exp->exp_obd;
2319         struct lmv_obd          *lmv = &obd->u.lmv;
2320         struct lmv_tgt_desc     *tgt;
2321         int                      rc;
2322         ENTRY;
2323
2324         tgt = lmv_find_target(lmv, fid);
2325         if (IS_ERR(tgt))
2326                 RETURN(PTR_ERR(tgt));
2327
2328         rc = md_fsync(tgt->ltd_exp, fid, request);
2329         RETURN(rc);
2330 }
2331
2332 struct stripe_dirent {
2333         struct page             *sd_page;
2334         struct lu_dirpage       *sd_dp;
2335         struct lu_dirent        *sd_ent;
2336         bool                     sd_eof;
2337 };
2338
2339 struct lmv_dir_ctxt {
2340         struct lmv_obd          *ldc_lmv;
2341         struct md_op_data       *ldc_op_data;
2342         struct md_callback      *ldc_cb_op;
2343         __u64                    ldc_hash;
2344         int                      ldc_count;
2345         struct stripe_dirent     ldc_stripes[0];
2346 };
2347
2348 static inline void stripe_dirent_unload(struct stripe_dirent *stripe)
2349 {
2350         if (stripe->sd_page) {
2351                 kunmap(stripe->sd_page);
2352                 put_page(stripe->sd_page);
2353                 stripe->sd_page = NULL;
2354                 stripe->sd_ent = NULL;
2355         }
2356 }
2357
2358 static inline void put_lmv_dir_ctxt(struct lmv_dir_ctxt *ctxt)
2359 {
2360         int i;
2361
2362         for (i = 0; i < ctxt->ldc_count; i++)
2363                 stripe_dirent_unload(&ctxt->ldc_stripes[i]);
2364 }
2365
2366 /* if @ent is dummy, or . .., get next */
2367 static struct lu_dirent *stripe_dirent_get(struct lmv_dir_ctxt *ctxt,
2368                                            struct lu_dirent *ent,
2369                                            int stripe_index)
2370 {
2371         for (; ent; ent = lu_dirent_next(ent)) {
2372                 /* Skip dummy entry */
2373                 if (le16_to_cpu(ent->lde_namelen) == 0)
2374                         continue;
2375
2376                 /* skip . and .. for other stripes */
2377                 if (stripe_index &&
2378                     (strncmp(ent->lde_name, ".",
2379                              le16_to_cpu(ent->lde_namelen)) == 0 ||
2380                      strncmp(ent->lde_name, "..",
2381                              le16_to_cpu(ent->lde_namelen)) == 0))
2382                         continue;
2383
2384                 if (le64_to_cpu(ent->lde_hash) >= ctxt->ldc_hash)
2385                         break;
2386         }
2387
2388         return ent;
2389 }
2390
2391 static struct lu_dirent *stripe_dirent_load(struct lmv_dir_ctxt *ctxt,
2392                                             struct stripe_dirent *stripe,
2393                                             int stripe_index)
2394 {
2395         struct md_op_data *op_data = ctxt->ldc_op_data;
2396         struct lmv_oinfo *oinfo;
2397         struct lu_fid fid = op_data->op_fid1;
2398         struct inode *inode = op_data->op_data;
2399         struct lmv_tgt_desc *tgt;
2400         struct lu_dirent *ent = stripe->sd_ent;
2401         __u64 hash = ctxt->ldc_hash;
2402         int rc = 0;
2403
2404         ENTRY;
2405
2406         LASSERT(stripe == &ctxt->ldc_stripes[stripe_index]);
2407         LASSERT(!ent);
2408
2409         do {
2410                 if (stripe->sd_page) {
2411                         __u64 end = le64_to_cpu(stripe->sd_dp->ldp_hash_end);
2412
2413                         /* @hash should be the last dirent hash */
2414                         LASSERTF(hash <= end,
2415                                  "ctxt@%p stripe@%p hash %llx end %llx\n",
2416                                  ctxt, stripe, hash, end);
2417                         /* unload last page */
2418                         stripe_dirent_unload(stripe);
2419                         /* eof */
2420                         if (end == MDS_DIR_END_OFF) {
2421                                 stripe->sd_eof = true;
2422                                 break;
2423                         }
2424                         hash = end;
2425                 }
2426
2427                 oinfo = &op_data->op_mea1->lsm_md_oinfo[stripe_index];
2428                 tgt = lmv_get_target(ctxt->ldc_lmv, oinfo->lmo_mds, NULL);
2429                 if (IS_ERR(tgt)) {
2430                         rc = PTR_ERR(tgt);
2431                         break;
2432                 }
2433
2434                 /* op_data is shared by stripes, reset after use */
2435                 op_data->op_fid1 = oinfo->lmo_fid;
2436                 op_data->op_fid2 = oinfo->lmo_fid;
2437                 op_data->op_data = oinfo->lmo_root;
2438
2439                 rc = md_read_page(tgt->ltd_exp, op_data, ctxt->ldc_cb_op, hash,
2440                                   &stripe->sd_page);
2441
2442                 op_data->op_fid1 = fid;
2443                 op_data->op_fid2 = fid;
2444                 op_data->op_data = inode;
2445
2446                 if (rc)
2447                         break;
2448
2449                 stripe->sd_dp = page_address(stripe->sd_page);
2450                 ent = stripe_dirent_get(ctxt, lu_dirent_start(stripe->sd_dp),
2451                                         stripe_index);
2452                 /* in case a page filled with ., .. and dummy, read next */
2453         } while (!ent);
2454
2455         stripe->sd_ent = ent;
2456         if (rc) {
2457                 LASSERT(!ent);
2458                 /* treat error as eof, so dir can be partially accessed */
2459                 stripe->sd_eof = true;
2460                 LCONSOLE_WARN("dir "DFID" stripe %d readdir failed: %d, "
2461                               "directory is partially accessed!\n",
2462                               PFID(&ctxt->ldc_op_data->op_fid1), stripe_index,
2463                               rc);
2464         }
2465
2466         RETURN(ent);
2467 }
2468
2469 static int lmv_file_resync(struct obd_export *exp, struct md_op_data *data)
2470 {
2471         struct obd_device       *obd = exp->exp_obd;
2472         struct lmv_obd          *lmv = &obd->u.lmv;
2473         struct lmv_tgt_desc     *tgt;
2474         int                      rc;
2475         ENTRY;
2476
2477         rc = lmv_check_connect(obd);
2478         if (rc != 0)
2479                 RETURN(rc);
2480
2481         tgt = lmv_find_target(lmv, &data->op_fid1);
2482         if (IS_ERR(tgt))
2483                 RETURN(PTR_ERR(tgt));
2484
2485         data->op_flags |= MF_MDC_CANCEL_FID1;
2486         rc = md_file_resync(tgt->ltd_exp, data);
2487         RETURN(rc);
2488 }
2489
2490 /**
2491  * Get dirent with the closest hash for striped directory
2492  *
2493  * This function will search the dir entry, whose hash value is the
2494  * closest(>=) to hash from all of sub-stripes, and it is only being called
2495  * for striped directory.
2496  *
2497  * \param[in] ctxt              dir read context
2498  *
2499  * \retval                      dirent get the entry successfully
2500  *                              NULL does not get the entry, normally it means
2501  *                              it reaches the end of the directory, while read
2502  *                              stripe dirent error is ignored to allow partial
2503  *                              access.
2504  */
2505 static struct lu_dirent *lmv_dirent_next(struct lmv_dir_ctxt *ctxt)
2506 {
2507         struct stripe_dirent *stripe;
2508         struct lu_dirent *ent = NULL;
2509         int i;
2510         int min = -1;
2511
2512         /* TODO: optimize with k-way merge sort */
2513         for (i = 0; i < ctxt->ldc_count; i++) {
2514                 stripe = &ctxt->ldc_stripes[i];
2515                 if (stripe->sd_eof)
2516                         continue;
2517
2518                 if (!stripe->sd_ent) {
2519                         stripe_dirent_load(ctxt, stripe, i);
2520                         if (!stripe->sd_ent) {
2521                                 LASSERT(stripe->sd_eof);
2522                                 continue;
2523                         }
2524                 }
2525
2526                 if (min == -1 ||
2527                     le64_to_cpu(ctxt->ldc_stripes[min].sd_ent->lde_hash) >
2528                     le64_to_cpu(stripe->sd_ent->lde_hash)) {
2529                         min = i;
2530                         if (le64_to_cpu(stripe->sd_ent->lde_hash) ==
2531                             ctxt->ldc_hash)
2532                                 break;
2533                 }
2534         }
2535
2536         if (min != -1) {
2537                 stripe = &ctxt->ldc_stripes[min];
2538                 ent = stripe->sd_ent;
2539                 /* pop found dirent */
2540                 stripe->sd_ent = stripe_dirent_get(ctxt, lu_dirent_next(ent),
2541                                                    min);
2542         }
2543
2544         return ent;
2545 }
2546
2547 /**
2548  * Build dir entry page for striped directory
2549  *
2550  * This function gets one entry by @offset from a striped directory. It will
2551  * read entries from all of stripes, and choose one closest to the required
2552  * offset(&offset). A few notes
2553  * 1. skip . and .. for non-zero stripes, because there can only have one .
2554  * and .. in a directory.
2555  * 2. op_data will be shared by all of stripes, instead of allocating new
2556  * one, so need to restore before reusing.
2557  *
2558  * \param[in] exp       obd export refer to LMV
2559  * \param[in] op_data   hold those MD parameters of read_entry
2560  * \param[in] cb_op     ldlm callback being used in enqueue in mdc_read_entry
2561  * \param[in] offset    starting hash offset
2562  * \param[out] ppage    the page holding the entry. Note: because the entry
2563  *                      will be accessed in upper layer, so we need hold the
2564  *                      page until the usages of entry is finished, see
2565  *                      ll_dir_entry_next.
2566  *
2567  * retval               =0 if get entry successfully
2568  *                      <0 cannot get entry
2569  */
2570 static int lmv_striped_read_page(struct obd_export *exp,
2571                                  struct md_op_data *op_data,
2572                                  struct md_callback *cb_op,
2573                                  __u64 offset, struct page **ppage)
2574 {
2575         struct page *page = NULL;
2576         struct lu_dirpage *dp;
2577         void *start;
2578         struct lu_dirent *ent;
2579         struct lu_dirent *last_ent;
2580         int stripe_count;
2581         struct lmv_dir_ctxt *ctxt;
2582         struct lu_dirent *next = NULL;
2583         __u16 ent_size;
2584         size_t left_bytes;
2585         int rc = 0;
2586         ENTRY;
2587
2588         /* Allocate a page and read entries from all of stripes and fill
2589          * the page by hash order */
2590         page = alloc_page(GFP_KERNEL);
2591         if (!page)
2592                 RETURN(-ENOMEM);
2593
2594         /* Initialize the entry page */
2595         dp = kmap(page);
2596         memset(dp, 0, sizeof(*dp));
2597         dp->ldp_hash_start = cpu_to_le64(offset);
2598
2599         start = dp + 1;
2600         left_bytes = PAGE_SIZE - sizeof(*dp);
2601         ent = start;
2602         last_ent = ent;
2603
2604         /* initalize dir read context */
2605         stripe_count = op_data->op_mea1->lsm_md_stripe_count;
2606         OBD_ALLOC(ctxt, offsetof(typeof(*ctxt), ldc_stripes[stripe_count]));
2607         if (!ctxt)
2608                 GOTO(free_page, rc = -ENOMEM);
2609         ctxt->ldc_lmv = &exp->exp_obd->u.lmv;
2610         ctxt->ldc_op_data = op_data;
2611         ctxt->ldc_cb_op = cb_op;
2612         ctxt->ldc_hash = offset;
2613         ctxt->ldc_count = stripe_count;
2614
2615         while (1) {
2616                 next = lmv_dirent_next(ctxt);
2617
2618                 /* end of directory */
2619                 if (!next) {
2620                         ctxt->ldc_hash = MDS_DIR_END_OFF;
2621                         break;
2622                 }
2623                 ctxt->ldc_hash = le64_to_cpu(next->lde_hash);
2624
2625                 ent_size = le16_to_cpu(next->lde_reclen);
2626
2627                 /* the last entry lde_reclen is 0, but it might not be the last
2628                  * one of this temporay dir page */
2629                 if (!ent_size)
2630                         ent_size = lu_dirent_calc_size(
2631                                         le16_to_cpu(next->lde_namelen),
2632                                         le32_to_cpu(next->lde_attrs));
2633                 /* page full */
2634                 if (ent_size > left_bytes)
2635                         break;
2636
2637                 memcpy(ent, next, ent_size);
2638
2639                 /* Replace . with master FID and Replace .. with the parent FID
2640                  * of master object */
2641                 if (strncmp(ent->lde_name, ".",
2642                             le16_to_cpu(ent->lde_namelen)) == 0 &&
2643                     le16_to_cpu(ent->lde_namelen) == 1)
2644                         fid_cpu_to_le(&ent->lde_fid, &op_data->op_fid1);
2645                 else if (strncmp(ent->lde_name, "..",
2646                                    le16_to_cpu(ent->lde_namelen)) == 0 &&
2647                            le16_to_cpu(ent->lde_namelen) == 2)
2648                         fid_cpu_to_le(&ent->lde_fid, &op_data->op_fid3);
2649
2650                 CDEBUG(D_INODE, "entry %.*s hash %#llx\n",
2651                        le16_to_cpu(ent->lde_namelen), ent->lde_name,
2652                        le64_to_cpu(ent->lde_hash));
2653
2654                 left_bytes -= ent_size;
2655                 ent->lde_reclen = cpu_to_le16(ent_size);
2656                 last_ent = ent;
2657                 ent = (void *)ent + ent_size;
2658         };
2659
2660         last_ent->lde_reclen = 0;
2661
2662         if (ent == start)
2663                 dp->ldp_flags |= LDF_EMPTY;
2664         else if (ctxt->ldc_hash == le64_to_cpu(last_ent->lde_hash))
2665                 dp->ldp_flags |= LDF_COLLIDE;
2666         dp->ldp_flags = cpu_to_le32(dp->ldp_flags);
2667         dp->ldp_hash_end = cpu_to_le64(ctxt->ldc_hash);
2668
2669         put_lmv_dir_ctxt(ctxt);
2670         OBD_FREE(ctxt, offsetof(typeof(*ctxt), ldc_stripes[stripe_count]));
2671
2672         *ppage = page;
2673
2674         RETURN(0);
2675
2676 free_page:
2677         kunmap(page);
2678         __free_page(page);
2679
2680         return rc;
2681 }
2682
2683 int lmv_read_page(struct obd_export *exp, struct md_op_data *op_data,
2684                   struct md_callback *cb_op, __u64 offset,
2685                   struct page **ppage)
2686 {
2687         struct obd_device       *obd = exp->exp_obd;
2688         struct lmv_obd          *lmv = &obd->u.lmv;
2689         struct lmv_stripe_md    *lsm = op_data->op_mea1;
2690         struct lmv_tgt_desc     *tgt;
2691         int                     rc;
2692         ENTRY;
2693
2694         if (unlikely(lsm != NULL)) {
2695                 rc = lmv_striped_read_page(exp, op_data, cb_op, offset, ppage);
2696                 RETURN(rc);
2697         }
2698
2699         tgt = lmv_find_target(lmv, &op_data->op_fid1);
2700         if (IS_ERR(tgt))
2701                 RETURN(PTR_ERR(tgt));
2702
2703         rc = md_read_page(tgt->ltd_exp, op_data, cb_op, offset, ppage);
2704
2705         RETURN(rc);
2706 }
2707
2708 /**
2709  * Unlink a file/directory
2710  *
2711  * Unlink a file or directory under the parent dir. The unlink request
2712  * usually will be sent to the MDT where the child is located, but if
2713  * the client does not have the child FID then request will be sent to the
2714  * MDT where the parent is located.
2715  *
2716  * If the parent is a striped directory then it also needs to locate which
2717  * stripe the name of the child is located, and replace the parent FID
2718  * (@op->op_fid1) with the stripe FID. Note: if the stripe is unknown,
2719  * it will walk through all of sub-stripes until the child is being
2720  * unlinked finally.
2721  *
2722  * \param[in] exp       export refer to LMV
2723  * \param[in] op_data   different parameters transferred beween client
2724  *                      MD stacks, name, namelen, FIDs etc.
2725  *                      op_fid1 is the parent FID, op_fid2 is the child
2726  *                      FID.
2727  * \param[out] request  point to the request of unlink.
2728  *
2729  * retval               0 if succeed
2730  *                      negative errno if failed.
2731  */
2732 static int lmv_unlink(struct obd_export *exp, struct md_op_data *op_data,
2733                       struct ptlrpc_request **request)
2734 {
2735         struct obd_device *obd = exp->exp_obd;
2736         struct lmv_obd *lmv = &obd->u.lmv;
2737         struct lmv_tgt_desc *tgt;
2738         struct lmv_tgt_desc *parent_tgt;
2739         struct mdt_body *body;
2740         int rc;
2741
2742         ENTRY;
2743
2744         op_data->op_fsuid = from_kuid(&init_user_ns, current_fsuid());
2745         op_data->op_fsgid = from_kgid(&init_user_ns, current_fsgid());
2746         op_data->op_cap = cfs_curproc_cap_pack();
2747
2748 retry:
2749         parent_tgt = lmv_locate_tgt(lmv, op_data, &op_data->op_fid1);
2750         if (IS_ERR(parent_tgt))
2751                 RETURN(PTR_ERR(parent_tgt));
2752
2753         if (likely(!fid_is_zero(&op_data->op_fid2))) {
2754                 tgt = lmv_find_target(lmv, &op_data->op_fid2);
2755                 if (IS_ERR(tgt))
2756                         RETURN(PTR_ERR(tgt));
2757         } else {
2758                 tgt = parent_tgt;
2759         }
2760
2761         /*
2762          * If child's fid is given, cancel unused locks for it if it is from
2763          * another export than parent.
2764          *
2765          * LOOKUP lock for child (fid3) should also be cancelled on parent
2766          * tgt_tgt in mdc_unlink().
2767          */
2768         op_data->op_flags |= MF_MDC_CANCEL_FID1 | MF_MDC_CANCEL_FID3;
2769
2770         if (parent_tgt != tgt)
2771                 rc = lmv_early_cancel(exp, parent_tgt, op_data, tgt->ltd_idx,
2772                                       LCK_EX, MDS_INODELOCK_LOOKUP,
2773                                       MF_MDC_CANCEL_FID3);
2774
2775         rc = lmv_early_cancel(exp, NULL, op_data, tgt->ltd_idx, LCK_EX,
2776                               MDS_INODELOCK_ELC, MF_MDC_CANCEL_FID3);
2777         if (rc)
2778                 RETURN(rc);
2779
2780         CDEBUG(D_INODE, "unlink with fid="DFID"/"DFID" -> mds #%u\n",
2781                PFID(&op_data->op_fid1), PFID(&op_data->op_fid2), tgt->ltd_idx);
2782
2783         rc = md_unlink(tgt->ltd_exp, op_data, request);
2784         if (rc == -ENOENT && lmv_dir_retry_check_update(op_data)) {
2785                 ptlrpc_req_finished(*request);
2786                 *request = NULL;
2787                 goto retry;
2788         }
2789
2790         if (rc != -EREMOTE)
2791                 RETURN(rc);
2792
2793         body = req_capsule_server_get(&(*request)->rq_pill, &RMF_MDT_BODY);
2794         if (body == NULL)
2795                 RETURN(-EPROTO);
2796
2797         /* Not cross-ref case, just get out of here. */
2798         if (likely(!(body->mbo_valid & OBD_MD_MDS)))
2799                 RETURN(rc);
2800
2801         /* This is a remote object, try remote MDT. */
2802         op_data->op_fid2 = body->mbo_fid1;
2803         ptlrpc_req_finished(*request);
2804         *request = NULL;
2805
2806         tgt = lmv_find_target(lmv, &op_data->op_fid2);
2807         if (IS_ERR(tgt))
2808                 RETURN(PTR_ERR(tgt));
2809
2810         goto retry;
2811 }
2812
2813 static int lmv_precleanup(struct obd_device *obd)
2814 {
2815         ENTRY;
2816         libcfs_kkuc_group_rem(&obd->obd_uuid, 0, KUC_GRP_HSM);
2817         fld_client_debugfs_fini(&obd->u.lmv.lmv_fld);
2818         lprocfs_obd_cleanup(obd);
2819         lprocfs_free_md_stats(obd);
2820         RETURN(0);
2821 }
2822
2823 /**
2824  * Get by key a value associated with a LMV device.
2825  *
2826  * Dispatch request to lower-layer devices as needed.
2827  *
2828  * \param[in] env               execution environment for this thread
2829  * \param[in] exp               export for the LMV device
2830  * \param[in] keylen            length of key identifier
2831  * \param[in] key               identifier of key to get value for
2832  * \param[in] vallen            size of \a val
2833  * \param[out] val              pointer to storage location for value
2834  * \param[in] lsm               optional striping metadata of object
2835  *
2836  * \retval 0            on success
2837  * \retval negative     negated errno on failure
2838  */
2839 static int lmv_get_info(const struct lu_env *env, struct obd_export *exp,
2840                         __u32 keylen, void *key, __u32 *vallen, void *val)
2841 {
2842         struct obd_device       *obd;
2843         struct lmv_obd          *lmv;
2844         int                      rc = 0;
2845         ENTRY;
2846
2847         obd = class_exp2obd(exp);
2848         if (obd == NULL) {
2849                 CDEBUG(D_IOCTL, "Invalid client cookie %#llx\n",
2850                        exp->exp_handle.h_cookie);
2851                 RETURN(-EINVAL);
2852         }
2853
2854         lmv = &obd->u.lmv;
2855         if (keylen >= strlen("remote_flag") && !strcmp(key, "remote_flag")) {
2856                 int i;
2857
2858                 LASSERT(*vallen == sizeof(__u32));
2859                 for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
2860                         struct lmv_tgt_desc *tgt = lmv->tgts[i];
2861                         /*
2862                          * All tgts should be connected when this gets called.
2863                          */
2864                         if (tgt == NULL || tgt->ltd_exp == NULL)
2865                                 continue;
2866
2867                         if (!obd_get_info(env, tgt->ltd_exp, keylen, key,
2868                                           vallen, val))
2869                                 RETURN(0);
2870                 }
2871                 RETURN(-EINVAL);
2872         } else if (KEY_IS(KEY_MAX_EASIZE) ||
2873                    KEY_IS(KEY_DEFAULT_EASIZE) ||
2874                    KEY_IS(KEY_CONN_DATA)) {
2875                 /*
2876                  * Forwarding this request to first MDS, it should know LOV
2877                  * desc.
2878                  */
2879                 rc = obd_get_info(env, lmv->tgts[0]->ltd_exp, keylen, key,
2880                                   vallen, val);
2881                 if (!rc && KEY_IS(KEY_CONN_DATA))
2882                         exp->exp_connect_data = *(struct obd_connect_data *)val;
2883                 RETURN(rc);
2884         } else if (KEY_IS(KEY_TGT_COUNT)) {
2885                 *((int *)val) = lmv->desc.ld_tgt_count;
2886                 RETURN(0);
2887         }
2888
2889         CDEBUG(D_IOCTL, "Invalid key\n");
2890         RETURN(-EINVAL);
2891 }
2892
2893 /**
2894  * Asynchronously set by key a value associated with a LMV device.
2895  *
2896  * Dispatch request to lower-layer devices as needed.
2897  *
2898  * \param[in] env       execution environment for this thread
2899  * \param[in] exp       export for the LMV device
2900  * \param[in] keylen    length of key identifier
2901  * \param[in] key       identifier of key to store value for
2902  * \param[in] vallen    size of value to store
2903  * \param[in] val       pointer to data to be stored
2904  * \param[in] set       optional list of related ptlrpc requests
2905  *
2906  * \retval 0            on success
2907  * \retval negative     negated errno on failure
2908  */
2909 int lmv_set_info_async(const struct lu_env *env, struct obd_export *exp,
2910                         __u32 keylen, void *key, __u32 vallen, void *val,
2911                         struct ptlrpc_request_set *set)
2912 {
2913         struct lmv_tgt_desc     *tgt = NULL;
2914         struct obd_device       *obd;
2915         struct lmv_obd          *lmv;
2916         int rc = 0;
2917         ENTRY;
2918
2919         obd = class_exp2obd(exp);
2920         if (obd == NULL) {
2921                 CDEBUG(D_IOCTL, "Invalid client cookie %#llx\n",
2922                        exp->exp_handle.h_cookie);
2923                 RETURN(-EINVAL);
2924         }
2925         lmv = &obd->u.lmv;
2926
2927         if (KEY_IS(KEY_READ_ONLY) || KEY_IS(KEY_FLUSH_CTX) ||
2928             KEY_IS(KEY_DEFAULT_EASIZE)) {
2929                 int i, err = 0;
2930
2931                 for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
2932                         tgt = lmv->tgts[i];
2933
2934                         if (tgt == NULL || tgt->ltd_exp == NULL)
2935                                 continue;
2936
2937                         err = obd_set_info_async(env, tgt->ltd_exp,
2938                                                  keylen, key, vallen, val, set);
2939                         if (err && rc == 0)
2940                                 rc = err;
2941                 }
2942
2943                 RETURN(rc);
2944         }
2945
2946         RETURN(-EINVAL);
2947 }
2948
2949 static int lmv_unpack_md_v1(struct obd_export *exp, struct lmv_stripe_md *lsm,
2950                             const struct lmv_mds_md_v1 *lmm1)
2951 {
2952         struct lmv_obd  *lmv = &exp->exp_obd->u.lmv;
2953         int             stripe_count;
2954         int             cplen;
2955         int             i;
2956         int             rc = 0;
2957         ENTRY;
2958
2959         lsm->lsm_md_magic = le32_to_cpu(lmm1->lmv_magic);
2960         lsm->lsm_md_stripe_count = le32_to_cpu(lmm1->lmv_stripe_count);
2961         lsm->lsm_md_master_mdt_index = le32_to_cpu(lmm1->lmv_master_mdt_index);
2962         if (OBD_FAIL_CHECK(OBD_FAIL_UNKNOWN_LMV_STRIPE))
2963                 lsm->lsm_md_hash_type = LMV_HASH_TYPE_UNKNOWN;
2964         else
2965                 lsm->lsm_md_hash_type = le32_to_cpu(lmm1->lmv_hash_type);
2966         lsm->lsm_md_layout_version = le32_to_cpu(lmm1->lmv_layout_version);
2967         lsm->lsm_md_migrate_offset = le32_to_cpu(lmm1->lmv_migrate_offset);
2968         lsm->lsm_md_migrate_hash = le32_to_cpu(lmm1->lmv_migrate_hash);
2969         cplen = strlcpy(lsm->lsm_md_pool_name, lmm1->lmv_pool_name,
2970                         sizeof(lsm->lsm_md_pool_name));
2971
2972         if (cplen >= sizeof(lsm->lsm_md_pool_name))
2973                 RETURN(-E2BIG);
2974
2975         CDEBUG(D_INFO, "unpack lsm count %d, master %d hash_type %#x "
2976                "layout_version %d\n", lsm->lsm_md_stripe_count,
2977                lsm->lsm_md_master_mdt_index, lsm->lsm_md_hash_type,
2978                lsm->lsm_md_layout_version);
2979
2980         stripe_count = le32_to_cpu(lmm1->lmv_stripe_count);
2981         for (i = 0; i < stripe_count; i++) {
2982                 fid_le_to_cpu(&lsm->lsm_md_oinfo[i].lmo_fid,
2983                               &lmm1->lmv_stripe_fids[i]);
2984                 rc = lmv_fld_lookup(lmv, &lsm->lsm_md_oinfo[i].lmo_fid,
2985                                     &lsm->lsm_md_oinfo[i].lmo_mds);
2986                 if (rc != 0)
2987                         RETURN(rc);
2988                 CDEBUG(D_INFO, "unpack fid #%d "DFID"\n", i,
2989                        PFID(&lsm->lsm_md_oinfo[i].lmo_fid));
2990         }
2991
2992         RETURN(rc);
2993 }
2994
2995 static int lmv_unpackmd(struct obd_export *exp, struct lmv_stripe_md **lsmp,
2996                         const union lmv_mds_md *lmm, size_t lmm_size)
2997 {
2998         struct lmv_stripe_md     *lsm;
2999         int                      lsm_size;
3000         int                      rc;
3001         bool                     allocated = false;
3002         ENTRY;
3003
3004         LASSERT(lsmp != NULL);
3005
3006         lsm = *lsmp;
3007         /* Free memmd */
3008         if (lsm != NULL && lmm == NULL) {
3009                 int i;
3010
3011                 for (i = 0; i < lsm->lsm_md_stripe_count; i++)
3012                         iput(lsm->lsm_md_oinfo[i].lmo_root);
3013                 lsm_size = lmv_stripe_md_size(lsm->lsm_md_stripe_count);
3014                 OBD_FREE(lsm, lsm_size);
3015                 *lsmp = NULL;
3016                 RETURN(0);
3017         }
3018
3019         if (le32_to_cpu(lmm->lmv_magic) == LMV_MAGIC_STRIPE)
3020                 RETURN(-EPERM);
3021
3022         /* Unpack memmd */
3023         if (le32_to_cpu(lmm->lmv_magic) != LMV_MAGIC_V1 &&
3024             le32_to_cpu(lmm->lmv_magic) != LMV_USER_MAGIC) {
3025                 CERROR("%s: invalid lmv magic %x: rc = %d\n",
3026                        exp->exp_obd->obd_name, le32_to_cpu(lmm->lmv_magic),
3027                        -EIO);
3028                 RETURN(-EIO);
3029         }
3030
3031         if (le32_to_cpu(lmm->lmv_magic) == LMV_MAGIC_V1)
3032                 lsm_size = lmv_stripe_md_size(lmv_mds_md_stripe_count_get(lmm));
3033         else
3034                 /**
3035                  * Unpack default dirstripe(lmv_user_md) to lmv_stripe_md,
3036                  * stripecount should be 0 then.
3037                  */
3038                 lsm_size = lmv_stripe_md_size(0);
3039
3040         lsm_size = lmv_stripe_md_size(lmv_mds_md_stripe_count_get(lmm));
3041         if (lsm == NULL) {
3042                 OBD_ALLOC(lsm, lsm_size);
3043                 if (lsm == NULL)
3044                         RETURN(-ENOMEM);
3045                 allocated = true;
3046                 *lsmp = lsm;
3047         }
3048
3049         switch (le32_to_cpu(lmm->lmv_magic)) {
3050         case LMV_MAGIC_V1:
3051                 rc = lmv_unpack_md_v1(exp, lsm, &lmm->lmv_md_v1);
3052                 break;
3053         default:
3054                 CERROR("%s: unrecognized magic %x\n", exp->exp_obd->obd_name,
3055                        le32_to_cpu(lmm->lmv_magic));
3056                 rc = -EINVAL;
3057                 break;
3058         }
3059
3060         if (rc != 0 && allocated) {
3061                 OBD_FREE(lsm, lsm_size);
3062                 *lsmp = NULL;
3063                 lsm_size = rc;
3064         }
3065         RETURN(lsm_size);
3066 }
3067
3068 void lmv_free_memmd(struct lmv_stripe_md *lsm)
3069 {
3070         lmv_unpackmd(NULL, &lsm, NULL, 0);
3071 }
3072 EXPORT_SYMBOL(lmv_free_memmd);
3073
3074 static int lmv_cancel_unused(struct obd_export *exp, const struct lu_fid *fid,
3075                              union ldlm_policy_data *policy,
3076                              enum ldlm_mode mode, enum ldlm_cancel_flags flags,
3077                              void *opaque)
3078 {
3079         struct lmv_obd *lmv = &exp->exp_obd->u.lmv;
3080         int rc = 0;
3081         __u32 i;
3082         ENTRY;
3083
3084         LASSERT(fid != NULL);
3085
3086         for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
3087                 struct lmv_tgt_desc *tgt = lmv->tgts[i];
3088                 int err;
3089
3090                 if (tgt == NULL || tgt->ltd_exp == NULL || !tgt->ltd_active)
3091                         continue;
3092
3093                 err = md_cancel_unused(tgt->ltd_exp, fid, policy, mode, flags,
3094                                        opaque);
3095                 if (!rc)
3096                         rc = err;
3097         }
3098         RETURN(rc);
3099 }
3100
3101 static int lmv_set_lock_data(struct obd_export *exp,
3102                              const struct lustre_handle *lockh,
3103                              void *data, __u64 *bits)
3104 {
3105         struct lmv_obd          *lmv = &exp->exp_obd->u.lmv;
3106         struct lmv_tgt_desc     *tgt = lmv->tgts[0];
3107         int                      rc;
3108         ENTRY;
3109
3110         if (tgt == NULL || tgt->ltd_exp == NULL)
3111                 RETURN(-EINVAL);
3112         rc =  md_set_lock_data(tgt->ltd_exp, lockh, data, bits);
3113         RETURN(rc);
3114 }
3115
3116 enum ldlm_mode lmv_lock_match(struct obd_export *exp, __u64 flags,
3117                               const struct lu_fid *fid, enum ldlm_type type,
3118                               union ldlm_policy_data *policy,
3119                               enum ldlm_mode mode, struct lustre_handle *lockh)
3120 {
3121         struct obd_device       *obd = exp->exp_obd;
3122         struct lmv_obd          *lmv = &obd->u.lmv;
3123         enum ldlm_mode          rc;
3124         int                     tgt;
3125         int                     i;
3126         ENTRY;
3127
3128         CDEBUG(D_INODE, "Lock match for "DFID"\n", PFID(fid));
3129
3130         /*
3131          * With DNE every object can have two locks in different namespaces:
3132          * lookup lock in space of MDT storing direntry and update/open lock in
3133          * space of MDT storing inode.  Try the MDT that the FID maps to first,
3134          * since this can be easily found, and only try others if that fails.
3135          */
3136         for (i = 0, tgt = lmv_find_target_index(lmv, fid);
3137              i < lmv->desc.ld_tgt_count;
3138              i++, tgt = (tgt + 1) % lmv->desc.ld_tgt_count) {
3139                 if (tgt < 0) {
3140                         CDEBUG(D_HA, "%s: "DFID" is inaccessible: rc = %d\n",
3141                                obd->obd_name, PFID(fid), tgt);
3142                         tgt = 0;
3143                 }
3144
3145                 if (lmv->tgts[tgt] == NULL ||
3146                     lmv->tgts[tgt]->ltd_exp == NULL ||
3147                     lmv->tgts[tgt]->ltd_active == 0)
3148                         continue;
3149
3150                 rc = md_lock_match(lmv->tgts[tgt]->ltd_exp, flags, fid,
3151                                    type, policy, mode, lockh);
3152                 if (rc)
3153                         RETURN(rc);
3154         }
3155
3156         RETURN(0);
3157 }
3158
3159 int lmv_get_lustre_md(struct obd_export *exp, struct ptlrpc_request *req,
3160                       struct obd_export *dt_exp, struct obd_export *md_exp,
3161                       struct lustre_md *md)
3162 {
3163         struct lmv_obd          *lmv = &exp->exp_obd->u.lmv;
3164         struct lmv_tgt_desc     *tgt = lmv->tgts[0];
3165
3166         if (tgt == NULL || tgt->ltd_exp == NULL)
3167                 RETURN(-EINVAL);
3168
3169         return md_get_lustre_md(lmv->tgts[0]->ltd_exp, req, dt_exp, md_exp, md);
3170 }
3171
3172 int lmv_free_lustre_md(struct obd_export *exp, struct lustre_md *md)
3173 {
3174         struct obd_device       *obd = exp->exp_obd;
3175         struct lmv_obd          *lmv = &obd->u.lmv;
3176         struct lmv_tgt_desc     *tgt = lmv->tgts[0];
3177         ENTRY;
3178
3179         if (md->lmv != NULL) {
3180                 lmv_free_memmd(md->lmv);
3181                 md->lmv = NULL;
3182         }
3183         if (tgt == NULL || tgt->ltd_exp == NULL)
3184                 RETURN(-EINVAL);
3185         RETURN(md_free_lustre_md(lmv->tgts[0]->ltd_exp, md));
3186 }
3187
3188 int lmv_set_open_replay_data(struct obd_export *exp,
3189                              struct obd_client_handle *och,
3190                              struct lookup_intent *it)
3191 {
3192         struct obd_device       *obd = exp->exp_obd;
3193         struct lmv_obd          *lmv = &obd->u.lmv;
3194         struct lmv_tgt_desc     *tgt;
3195         ENTRY;
3196
3197         tgt = lmv_find_target(lmv, &och->och_fid);
3198         if (IS_ERR(tgt))
3199                 RETURN(PTR_ERR(tgt));
3200
3201         RETURN(md_set_open_replay_data(tgt->ltd_exp, och, it));
3202 }
3203
3204 int lmv_clear_open_replay_data(struct obd_export *exp,
3205                                struct obd_client_handle *och)
3206 {
3207         struct obd_device       *obd = exp->exp_obd;
3208         struct lmv_obd          *lmv = &obd->u.lmv;
3209         struct lmv_tgt_desc     *tgt;
3210         ENTRY;
3211
3212         tgt = lmv_find_target(lmv, &och->och_fid);
3213         if (IS_ERR(tgt))
3214                 RETURN(PTR_ERR(tgt));
3215
3216         RETURN(md_clear_open_replay_data(tgt->ltd_exp, och));
3217 }
3218
3219 int lmv_intent_getattr_async(struct obd_export *exp,
3220                              struct md_enqueue_info *minfo)
3221 {
3222         struct md_op_data *op_data = &minfo->mi_data;
3223         struct obd_device *obd = exp->exp_obd;
3224         struct lmv_obd *lmv = &obd->u.lmv;
3225         struct lmv_tgt_desc *tgt = NULL;
3226         int rc;
3227         ENTRY;
3228
3229         if (!fid_is_sane(&op_data->op_fid2))
3230                 RETURN(-EINVAL);
3231
3232         tgt = lmv_find_target(lmv, &op_data->op_fid1);
3233         if (IS_ERR(tgt))
3234                 RETURN(PTR_ERR(tgt));
3235
3236         /*
3237          * no special handle for remote dir, which needs to fetch both LOOKUP
3238          * lock on parent, and then UPDATE lock on child MDT, which makes all
3239          * complicated because this is done async. So only LOOKUP lock is
3240          * fetched for remote dir, but considering remote dir is rare case,
3241          * and not supporting it in statahead won't cause any issue, just leave
3242          * it as is.
3243          */
3244
3245         rc = md_intent_getattr_async(tgt->ltd_exp, minfo);
3246         RETURN(rc);
3247 }
3248
3249 int lmv_revalidate_lock(struct obd_export *exp, struct lookup_intent *it,
3250                         struct lu_fid *fid, __u64 *bits)
3251 {
3252         struct obd_device       *obd = exp->exp_obd;
3253         struct lmv_obd          *lmv = &obd->u.lmv;
3254         struct lmv_tgt_desc     *tgt;
3255         int                      rc;
3256         ENTRY;
3257
3258         tgt = lmv_find_target(lmv, fid);
3259         if (IS_ERR(tgt))
3260                 RETURN(PTR_ERR(tgt));
3261
3262         rc = md_revalidate_lock(tgt->ltd_exp, it, fid, bits);
3263         RETURN(rc);
3264 }
3265
3266 int lmv_get_fid_from_lsm(struct obd_export *exp,
3267                          const struct lmv_stripe_md *lsm,
3268                          const char *name, int namelen, struct lu_fid *fid)
3269 {
3270         const struct lmv_oinfo *oinfo;
3271
3272         LASSERT(lsm != NULL);
3273         oinfo = lsm_name_to_stripe_info(lsm, name, namelen, false);
3274         if (IS_ERR(oinfo))
3275                 return PTR_ERR(oinfo);
3276
3277         *fid = oinfo->lmo_fid;
3278
3279         RETURN(0);
3280 }
3281
3282 /**
3283  * For lmv, only need to send request to master MDT, and the master MDT will
3284  * process with other slave MDTs. The only exception is Q_GETOQUOTA for which
3285  * we directly fetch data from the slave MDTs.
3286  */
3287 int lmv_quotactl(struct obd_device *unused, struct obd_export *exp,
3288                  struct obd_quotactl *oqctl)
3289 {
3290         struct obd_device   *obd = class_exp2obd(exp);
3291         struct lmv_obd      *lmv = &obd->u.lmv;
3292         struct lmv_tgt_desc *tgt = lmv->tgts[0];
3293         int                  rc = 0;
3294         __u32                i;
3295         __u64                curspace, curinodes;
3296         ENTRY;
3297
3298         if (tgt == NULL ||
3299             tgt->ltd_exp == NULL ||
3300             !tgt->ltd_active ||
3301             lmv->desc.ld_tgt_count == 0) {
3302                 CERROR("master lmv inactive\n");
3303                 RETURN(-EIO);
3304         }
3305
3306         if (oqctl->qc_cmd != Q_GETOQUOTA) {
3307                 rc = obd_quotactl(tgt->ltd_exp, oqctl);
3308                 RETURN(rc);
3309         }
3310
3311         curspace = curinodes = 0;
3312         for (i = 0; i < lmv->desc.ld_tgt_count; i++) {
3313                 int err;
3314                 tgt = lmv->tgts[i];
3315
3316                 if (tgt == NULL || tgt->ltd_exp == NULL || !tgt->ltd_active)
3317                         continue;
3318
3319                 err = obd_quotactl(tgt->ltd_exp, oqctl);
3320                 if (err) {
3321                         CERROR("getquota on mdt %d failed. %d\n", i, err);
3322                         if (!rc)
3323                                 rc = err;
3324                 } else {
3325                         curspace += oqctl->qc_dqblk.dqb_curspace;
3326                         curinodes += oqctl->qc_dqblk.dqb_curinodes;
3327                 }
3328         }
3329         oqctl->qc_dqblk.dqb_curspace = curspace;
3330         oqctl->qc_dqblk.dqb_curinodes = curinodes;
3331
3332         RETURN(rc);
3333 }
3334
3335 static int lmv_merge_attr(struct obd_export *exp,
3336                           const struct lmv_stripe_md *lsm,
3337                           struct cl_attr *attr,
3338                           ldlm_blocking_callback cb_blocking)
3339 {
3340         int rc;
3341         int i;
3342
3343         rc = lmv_revalidate_slaves(exp, lsm, cb_blocking, 0);
3344         if (rc < 0)
3345                 return rc;
3346
3347         for (i = 0; i < lsm->lsm_md_stripe_count; i++) {
3348                 struct inode *inode = lsm->lsm_md_oinfo[i].lmo_root;
3349
3350                 CDEBUG(D_INFO,
3351                        "" DFID " size %llu, blocks %llu nlink %u, atime %lld ctime %lld, mtime %lld.\n",
3352                        PFID(&lsm->lsm_md_oinfo[i].lmo_fid),
3353                        i_size_read(inode), (unsigned long long)inode->i_blocks,
3354                        inode->i_nlink, (s64)inode->i_atime.tv_sec,
3355                        (s64)inode->i_ctime.tv_sec, (s64)inode->i_mtime.tv_sec);
3356
3357                 /* for slave stripe, it needs to subtract nlink for . and .. */
3358                 if (i != 0)
3359                         attr->cat_nlink += inode->i_nlink - 2;
3360                 else
3361                         attr->cat_nlink = inode->i_nlink;
3362
3363                 attr->cat_size += i_size_read(inode);
3364                 attr->cat_blocks += inode->i_blocks;
3365
3366                 if (attr->cat_atime < inode->i_atime.tv_sec)
3367                         attr->cat_atime = inode->i_atime.tv_sec;
3368
3369                 if (attr->cat_ctime < inode->i_ctime.tv_sec)
3370                         attr->cat_ctime = inode->i_ctime.tv_sec;
3371
3372                 if (attr->cat_mtime < inode->i_mtime.tv_sec)
3373                         attr->cat_mtime = inode->i_mtime.tv_sec;
3374         }
3375         return 0;
3376 }
3377
3378 struct obd_ops lmv_obd_ops = {
3379         .o_owner                = THIS_MODULE,
3380         .o_setup                = lmv_setup,
3381         .o_cleanup              = lmv_cleanup,
3382         .o_precleanup           = lmv_precleanup,
3383         .o_process_config       = lmv_process_config,
3384         .o_connect              = lmv_connect,
3385         .o_disconnect           = lmv_disconnect,
3386         .o_statfs               = lmv_statfs,
3387         .o_get_info             = lmv_get_info,
3388         .o_set_info_async       = lmv_set_info_async,
3389         .o_notify               = lmv_notify,
3390         .o_get_uuid             = lmv_get_uuid,
3391         .o_iocontrol            = lmv_iocontrol,
3392         .o_quotactl             = lmv_quotactl
3393 };
3394
3395 struct md_ops lmv_md_ops = {
3396         .m_get_root             = lmv_get_root,
3397         .m_null_inode           = lmv_null_inode,
3398         .m_close                = lmv_close,
3399         .m_create               = lmv_create,
3400         .m_enqueue              = lmv_enqueue,
3401         .m_getattr              = lmv_getattr,
3402         .m_getxattr             = lmv_getxattr,
3403         .m_getattr_name         = lmv_getattr_name,
3404         .m_intent_lock          = lmv_intent_lock,
3405         .m_link                 = lmv_link,
3406         .m_rename               = lmv_rename,
3407         .m_setattr              = lmv_setattr,
3408         .m_setxattr             = lmv_setxattr,
3409         .m_fsync                = lmv_fsync,
3410         .m_file_resync          = lmv_file_resync,
3411         .m_read_page            = lmv_read_page,
3412         .m_unlink               = lmv_unlink,
3413         .m_init_ea_size         = lmv_init_ea_size,
3414         .m_cancel_unused        = lmv_cancel_unused,
3415         .m_set_lock_data        = lmv_set_lock_data,
3416         .m_lock_match           = lmv_lock_match,
3417         .m_get_lustre_md        = lmv_get_lustre_md,
3418         .m_free_lustre_md       = lmv_free_lustre_md,
3419         .m_merge_attr           = lmv_merge_attr,
3420         .m_set_open_replay_data = lmv_set_open_replay_data,
3421         .m_clear_open_replay_data = lmv_clear_open_replay_data,
3422         .m_intent_getattr_async = lmv_intent_getattr_async,
3423         .m_revalidate_lock      = lmv_revalidate_lock,
3424         .m_get_fid_from_lsm     = lmv_get_fid_from_lsm,
3425         .m_unpackmd             = lmv_unpackmd,
3426 };
3427
3428 static int __init lmv_init(void)
3429 {
3430         return class_register_type(&lmv_obd_ops, &lmv_md_ops, true, NULL,
3431                                    LUSTRE_LMV_NAME, NULL);
3432 }
3433
3434 static void __exit lmv_exit(void)
3435 {
3436         class_unregister_type(LUSTRE_LMV_NAME);
3437 }
3438
3439 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
3440 MODULE_DESCRIPTION("Lustre Logical Metadata Volume");
3441 MODULE_VERSION(LUSTRE_VERSION_STRING);
3442 MODULE_LICENSE("GPL");
3443
3444 module_init(lmv_init);
3445 module_exit(lmv_exit);