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