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