Whamcloud - gitweb
771d381f5e3ca8c314dbf0e2507955bfdefd6b4a
[fs/lustre-release.git] / lustre / lmv / lmv_intent.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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #define DEBUG_SUBSYSTEM S_LMV
38 #ifdef __KERNEL__
39 #include <linux/slab.h>
40 #include <linux/module.h>
41 #include <linux/init.h>
42 #include <linux/slab.h>
43 #include <linux/pagemap.h>
44 #include <asm/div64.h>
45 #include <linux/seq_file.h>
46 #include <linux/namei.h>
47 #include <linux/lustre_intent.h>
48 #else
49 #include <liblustre.h>
50 #endif
51
52 #include <obd_support.h>
53 #include <lustre/lustre_idl.h>
54 #include <lustre_lib.h>
55 #include <lustre_net.h>
56 #include <lustre_dlm.h>
57 #include <lustre_mdc.h>
58 #include <obd_class.h>
59 #include <lprocfs_status.h>
60 #include "lmv_internal.h"
61
62 static int lmv_intent_remote(struct obd_export *exp, void *lmm,
63                              int lmmsize, struct lookup_intent *it,
64                              const struct lu_fid *parent_fid, int flags,
65                              struct ptlrpc_request **reqp,
66                              ldlm_blocking_callback cb_blocking,
67                              __u64 extra_lock_flags)
68 {
69         struct obd_device       *obd = exp->exp_obd;
70         struct lmv_obd          *lmv = &obd->u.lmv;
71         struct ptlrpc_request   *req = NULL;
72         struct lustre_handle    plock;
73         struct md_op_data       *op_data;
74         struct lmv_tgt_desc     *tgt;
75         struct mdt_body         *body;
76         int                     pmode;
77         int                     rc = 0;
78         ENTRY;
79
80         body = req_capsule_server_get(&(*reqp)->rq_pill, &RMF_MDT_BODY);
81         if (body == NULL)
82                 RETURN(-EPROTO);
83
84         LASSERT((body->valid & OBD_MD_MDS));
85
86         /*
87          * Unfortunately, we have to lie to MDC/MDS to retrieve
88          * attributes llite needs and provideproper locking.
89          */
90         if (it->it_op & IT_LOOKUP)
91                 it->it_op = IT_GETATTR;
92
93         /*
94          * We got LOOKUP lock, but we really need attrs.
95          */
96         pmode = it->d.lustre.it_lock_mode;
97         if (pmode) {
98                 plock.cookie = it->d.lustre.it_lock_handle;
99                 it->d.lustre.it_lock_mode = 0;
100                 it->d.lustre.it_data = NULL;
101         }
102
103         LASSERT(fid_is_sane(&body->fid1));
104
105         tgt = lmv_find_target(lmv, &body->fid1);
106         if (IS_ERR(tgt))
107                 GOTO(out, rc = PTR_ERR(tgt));
108
109         OBD_ALLOC_PTR(op_data);
110         if (op_data == NULL)
111                 GOTO(out, rc = -ENOMEM);
112
113         op_data->op_fid1 = body->fid1;
114         /* Sent the parent FID to the remote MDT */
115         if (parent_fid != NULL) {
116                 /* The parent fid is only for remote open to
117                  * check whether the open is from OBF,
118                  * see mdt_cross_open */
119                 LASSERT(it->it_op & IT_OPEN);
120                 op_data->op_fid2 = *parent_fid;
121                 /* Add object FID to op_fid3, in case it needs to check stale
122                  * (M_CHECK_STALE), see mdc_finish_intent_lock */
123                 op_data->op_fid3 = body->fid1;
124         }
125
126         op_data->op_bias = MDS_CROSS_REF;
127         CDEBUG(D_INODE, "REMOTE_INTENT with fid="DFID" -> mds #%d\n",
128                PFID(&body->fid1), tgt->ltd_idx);
129
130         rc = md_intent_lock(tgt->ltd_exp, op_data, lmm, lmmsize, it,
131                             flags, &req, cb_blocking, extra_lock_flags);
132         if (rc)
133                 GOTO(out_free_op_data, rc);
134
135         /*
136          * LLite needs LOOKUP lock to track dentry revocation in order to
137          * maintain dcache consistency. Thus drop UPDATE|PERM lock here
138          * and put LOOKUP in request.
139          */
140         if (it->d.lustre.it_lock_mode != 0) {
141                 it->d.lustre.it_remote_lock_handle =
142                                         it->d.lustre.it_lock_handle;
143                 it->d.lustre.it_remote_lock_mode = it->d.lustre.it_lock_mode;
144         }
145
146         it->d.lustre.it_lock_handle = plock.cookie;
147         it->d.lustre.it_lock_mode = pmode;
148
149         EXIT;
150 out_free_op_data:
151         OBD_FREE_PTR(op_data);
152 out:
153         if (rc && pmode)
154                 ldlm_lock_decref(&plock, pmode);
155
156         ptlrpc_req_finished(*reqp);
157         *reqp = req;
158         return rc;
159 }
160
161 #ifdef __KERNEL__
162 int lmv_revalidate_slaves(struct obd_export *exp, struct mdt_body *mbody,
163                           struct lmv_stripe_md *lsm,
164                           ldlm_blocking_callback cb_blocking,
165                           int extra_lock_flags)
166 {
167         struct obd_device      *obd = exp->exp_obd;
168         struct lmv_obd         *lmv = &obd->u.lmv;
169         struct mdt_body         *body;
170         struct md_op_data      *op_data;
171         unsigned long           size = 0;
172         unsigned long           nlink = 0;
173         obd_time                atime = 0;
174         obd_time                ctime = 0;
175         obd_time                mtime = 0;
176         int                     i;
177         int                     rc = 0;
178
179         ENTRY;
180
181         /**
182          * revalidate slaves has some problems, temporarily return,
183          * we may not need that
184          */
185         if (lsm->lsm_md_stripe_count <= 1)
186                 RETURN(0);
187
188         OBD_ALLOC_PTR(op_data);
189         if (op_data == NULL)
190                 RETURN(-ENOMEM);
191
192         /**
193          * Loop over the stripe information, check validity and update them
194          * from MDS if needed.
195          */
196         for (i = 0; i < lsm->lsm_md_stripe_count; i++) {
197                 struct lu_fid           fid;
198                 struct lookup_intent    it = { .it_op = IT_GETATTR };
199                 struct ptlrpc_request   *req = NULL;
200                 struct lustre_handle    *lockh = NULL;
201                 struct lmv_tgt_desc     *tgt = NULL;
202                 struct inode            *inode;
203
204                 fid = lsm->lsm_md_oinfo[i].lmo_fid;
205                 inode = lsm->lsm_md_oinfo[i].lmo_root;
206                 if (i == 0) {
207                         if (mbody != NULL) {
208                                 body = mbody;
209                                 goto update;
210                         } else {
211                                 goto release_lock;
212                         }
213                 }
214
215                 /*
216                  * Prepare op_data for revalidating. Note that @fid2 shluld be
217                  * defined otherwise it will go to server and take new lock
218                  * which is not needed here.
219                  */
220                 memset(op_data, 0, sizeof(*op_data));
221                 op_data->op_fid1 = fid;
222                 op_data->op_fid2 = fid;
223
224                 tgt = lmv_locate_mds(lmv, op_data, &fid);
225                 if (IS_ERR(tgt))
226                         GOTO(cleanup, rc = PTR_ERR(tgt));
227
228                 CDEBUG(D_INODE, "Revalidate slave "DFID" -> mds #%d\n",
229                        PFID(&fid), tgt->ltd_idx);
230
231                 rc = md_intent_lock(tgt->ltd_exp, op_data, NULL, 0, &it, 0,
232                                     &req, cb_blocking, extra_lock_flags);
233                 if (rc < 0)
234                         GOTO(cleanup, rc);
235
236                 lockh = (struct lustre_handle *)&it.d.lustre.it_lock_handle;
237                 if (rc > 0 && req == NULL) {
238                         /* slave inode is still valid */
239                         CDEBUG(D_INODE, "slave "DFID" is still valid.\n",
240                                PFID(&fid));
241                         rc = 0;
242                 } else {
243                         /* refresh slave from server */
244                         body = req_capsule_server_get(&req->rq_pill,
245                                                       &RMF_MDT_BODY);
246                         LASSERT(body != NULL);
247 update:
248                         if (unlikely(body->nlink < 2)) {
249                                 CERROR("%s: nlink %d < 2 corrupt stripe %d "DFID
250                                        ":" DFID"\n", obd->obd_name, body->nlink,
251                                        i, PFID(&lsm->lsm_md_oinfo[i].lmo_fid),
252                                        PFID(&lsm->lsm_md_oinfo[0].lmo_fid));
253
254                                 if (req != NULL)
255                                         ptlrpc_req_finished(req);
256
257                                 if (it.d.lustre.it_lock_mode && lockh) {
258                                         ldlm_lock_decref(lockh,
259                                                  it.d.lustre.it_lock_mode);
260                                         it.d.lustre.it_lock_mode = 0;
261                                 }
262
263                                 GOTO(cleanup, rc = -EIO);
264                         }
265
266                         if (i != 0)
267                                 md_set_lock_data(tgt->ltd_exp, &lockh->cookie,
268                                                  inode, NULL);
269
270                         i_size_write(inode, body->size);
271                         set_nlink(inode, body->nlink);
272                         LTIME_S(inode->i_atime) = body->atime;
273                         LTIME_S(inode->i_ctime) = body->ctime;
274                         LTIME_S(inode->i_mtime) = body->mtime;
275
276                         if (req != NULL)
277                                 ptlrpc_req_finished(req);
278                 }
279 release_lock:
280                 size += i_size_read(inode);
281
282                 if (i != 0)
283                         nlink += inode->i_nlink - 2;
284                 else
285                         nlink += inode->i_nlink;
286
287                 atime = LTIME_S(inode->i_atime) > atime ?
288                                 LTIME_S(inode->i_atime) : atime;
289                 ctime = LTIME_S(inode->i_ctime) > ctime ?
290                                 LTIME_S(inode->i_ctime) : ctime;
291                 mtime = LTIME_S(inode->i_mtime) > mtime ?
292                                 LTIME_S(inode->i_mtime) : mtime;
293
294                 if (it.d.lustre.it_lock_mode != 0 && lockh != NULL) {
295                         ldlm_lock_decref(lockh, it.d.lustre.it_lock_mode);
296                         it.d.lustre.it_lock_mode = 0;
297                 }
298
299                 CDEBUG(D_INODE, "i %d "DFID" size %llu, nlink %u, atime "
300                        "%lu, mtime %lu, ctime %lu.\n", i, PFID(&fid),
301                        i_size_read(inode), inode->i_nlink,
302                        LTIME_S(inode->i_atime), LTIME_S(inode->i_mtime),
303                        LTIME_S(inode->i_ctime));
304         }
305
306         /*
307          * update attr of master request.
308          */
309         CDEBUG(D_INODE, "Return refreshed attrs: size = %lu nlink %lu atime "
310                LPU64 "ctime "LPU64" mtime "LPU64" for " DFID"\n", size, nlink,
311                atime, ctime, mtime, PFID(&lsm->lsm_md_oinfo[0].lmo_fid));
312
313         if (mbody != NULL) {
314                 mbody->atime = atime;
315                 mbody->ctime = ctime;
316                 mbody->mtime = mtime;
317         }
318 cleanup:
319         OBD_FREE_PTR(op_data);
320         RETURN(rc);
321 }
322
323 #else
324
325 int lmv_revalidate_slaves(struct obd_export *exp, struct mdt_body *mbody,
326                           struct lmv_stripe_md *lsm,
327                           ldlm_blocking_callback cb_blocking,
328                           int extra_lock_flags)
329 {
330         return 0;
331 }
332
333 #endif
334
335 /*
336  * IT_OPEN is intended to open (and create, possible) an object. Parent (pid)
337  * may be split dir.
338  */
339 int lmv_intent_open(struct obd_export *exp, struct md_op_data *op_data,
340                     void *lmm, int lmmsize, struct lookup_intent *it,
341                     int flags, struct ptlrpc_request **reqp,
342                     ldlm_blocking_callback cb_blocking,
343                     __u64 extra_lock_flags)
344 {
345         struct obd_device       *obd = exp->exp_obd;
346         struct lmv_obd          *lmv = &obd->u.lmv;
347         struct lmv_tgt_desc     *tgt;
348         struct mdt_body         *body;
349         int                     rc;
350         ENTRY;
351
352         /* Note: client might open with some random flags(sanity 33b), so we can
353          * not make sure op_fid2 is being initialized with BY_FID flag */
354         if (it->it_flags & MDS_OPEN_BY_FID && fid_is_sane(&op_data->op_fid2)) {
355                 if (op_data->op_mea1 != NULL) {
356                         struct lmv_stripe_md    *lsm = op_data->op_mea1;
357                         const struct lmv_oinfo  *oinfo;
358
359                         oinfo = lsm_name_to_stripe_info(lsm, op_data->op_name,
360                                                         op_data->op_namelen);
361                         if (IS_ERR(oinfo))
362                                 RETURN(PTR_ERR(oinfo));
363                         op_data->op_fid1 = oinfo->lmo_fid;
364                 }
365
366                 tgt = lmv_find_target(lmv, &op_data->op_fid2);
367                 if (IS_ERR(tgt))
368                         RETURN(PTR_ERR(tgt));
369
370                 op_data->op_mds = tgt->ltd_idx;
371         } else {
372                 tgt = lmv_locate_mds(lmv, op_data, &op_data->op_fid1);
373                 if (IS_ERR(tgt))
374                         RETURN(PTR_ERR(tgt));
375         }
376
377         /* If it is ready to open the file by FID, do not need
378          * allocate FID at all, otherwise it will confuse MDT */
379         if ((it->it_op & IT_CREAT) &&
380             !(it->it_flags & MDS_OPEN_BY_FID)) {
381                 /*
382                  * For open with IT_CREATE and for IT_CREATE cases allocate new
383                  * fid and setup FLD for it.
384                  */
385                 op_data->op_fid3 = op_data->op_fid2;
386                 rc = lmv_fid_alloc(exp, &op_data->op_fid2, op_data);
387                 if (rc != 0)
388                         RETURN(rc);
389         }
390
391         CDEBUG(D_INODE, "OPEN_INTENT with fid1="DFID", fid2="DFID","
392                " name='%s' -> mds #%d\n", PFID(&op_data->op_fid1),
393                PFID(&op_data->op_fid2), op_data->op_name, tgt->ltd_idx);
394
395         rc = md_intent_lock(tgt->ltd_exp, op_data, lmm, lmmsize, it, flags,
396                             reqp, cb_blocking, extra_lock_flags);
397         if (rc != 0)
398                 RETURN(rc);
399         /*
400          * Nothing is found, do not access body->fid1 as it is zero and thus
401          * pointless.
402          */
403         if ((it->d.lustre.it_disposition & DISP_LOOKUP_NEG) &&
404             !(it->d.lustre.it_disposition & DISP_OPEN_CREATE) &&
405             !(it->d.lustre.it_disposition & DISP_OPEN_OPEN))
406                 RETURN(rc);
407
408         body = req_capsule_server_get(&(*reqp)->rq_pill, &RMF_MDT_BODY);
409         if (body == NULL)
410                 RETURN(-EPROTO);
411
412         /* Not cross-ref case, just get out of here. */
413         if (unlikely((body->valid & OBD_MD_MDS))) {
414                 rc = lmv_intent_remote(exp, lmm, lmmsize, it, &op_data->op_fid1,
415                                        flags, reqp, cb_blocking,
416                                        extra_lock_flags);
417                 if (rc != 0)
418                         RETURN(rc);
419
420                 body = req_capsule_server_get(&(*reqp)->rq_pill, &RMF_MDT_BODY);
421                 if (body == NULL)
422                         RETURN(-EPROTO);
423         }
424
425         RETURN(rc);
426 }
427
428 /*
429  * Handler for: getattr, lookup and revalidate cases.
430  */
431 int lmv_intent_lookup(struct obd_export *exp, struct md_op_data *op_data,
432                       void *lmm, int lmmsize, struct lookup_intent *it,
433                       int flags, struct ptlrpc_request **reqp,
434                       ldlm_blocking_callback cb_blocking,
435                       __u64 extra_lock_flags)
436 {
437         struct obd_device       *obd = exp->exp_obd;
438         struct lmv_obd          *lmv = &obd->u.lmv;
439         struct lmv_tgt_desc     *tgt = NULL;
440         struct mdt_body         *body;
441         struct lmv_stripe_md    *lsm = op_data->op_mea1;
442         int                     rc = 0;
443         ENTRY;
444
445         tgt = lmv_locate_mds(lmv, op_data, &op_data->op_fid1);
446         if (IS_ERR(tgt))
447                 RETURN(PTR_ERR(tgt));
448
449         if (!fid_is_sane(&op_data->op_fid2))
450                 fid_zero(&op_data->op_fid2);
451
452         CDEBUG(D_INODE, "LOOKUP_INTENT with fid1="DFID", fid2="DFID
453                ", name='%s' -> mds #%d lsm=%p lsm_magic=%x\n",
454                PFID(&op_data->op_fid1), PFID(&op_data->op_fid2),
455                op_data->op_name ? op_data->op_name : "<NULL>",
456                tgt->ltd_idx, lsm, lsm == NULL ? -1 : lsm->lsm_md_magic);
457
458         op_data->op_bias &= ~MDS_CROSS_REF;
459
460         rc = md_intent_lock(tgt->ltd_exp, op_data, lmm, lmmsize, it,
461                              flags, reqp, cb_blocking, extra_lock_flags);
462         if (rc < 0)
463                 RETURN(rc);
464
465         if (*reqp == NULL) {
466                 /* If RPC happens, lsm information will be revalidated
467                  * during update_inode process (see ll_update_lsm_md) */
468                 if (op_data->op_mea2 != NULL) {
469                         rc = lmv_revalidate_slaves(exp, NULL, op_data->op_mea2,
470                                                    cb_blocking,
471                                                    extra_lock_flags);
472                         if (rc != 0)
473                                 RETURN(rc);
474                 }
475                 RETURN(rc);
476         } else if (it_disposition(it, DISP_LOOKUP_NEG) &&
477                    lsm != NULL && lsm->lsm_md_magic == LMV_MAGIC_MIGRATE) {
478                 /* For migrating directory, if it can not find the child in
479                  * the source directory(master stripe), try the targeting
480                  * directory(stripe 1) */
481                 tgt = lmv_find_target(lmv, &lsm->lsm_md_oinfo[1].lmo_fid);
482                 if (IS_ERR(tgt))
483                         RETURN(PTR_ERR(tgt));
484
485                 ptlrpc_req_finished(*reqp);
486                 CDEBUG(D_INODE, "For migrating dir, try target dir "DFID"\n",
487                        PFID(&lsm->lsm_md_oinfo[1].lmo_fid));
488
489                 op_data->op_fid1 = lsm->lsm_md_oinfo[1].lmo_fid;
490                 it->d.lustre.it_disposition &= ~DISP_ENQ_COMPLETE;
491                 rc = md_intent_lock(tgt->ltd_exp, op_data, lmm, lmmsize, it,
492                                     flags, reqp, cb_blocking, extra_lock_flags);
493                 RETURN(rc);
494         }
495         /*
496          * MDS has returned success. Probably name has been resolved in
497          * remote inode. Let's check this.
498          */
499         body = req_capsule_server_get(&(*reqp)->rq_pill, &RMF_MDT_BODY);
500         if (body == NULL)
501                 RETURN(-EPROTO);
502
503         /* Not cross-ref case, just get out of here. */
504         if (unlikely((body->valid & OBD_MD_MDS))) {
505                 rc = lmv_intent_remote(exp, lmm, lmmsize, it, NULL, flags,
506                                        reqp, cb_blocking, extra_lock_flags);
507                 if (rc != 0)
508                         RETURN(rc);
509                 body = req_capsule_server_get(&(*reqp)->rq_pill, &RMF_MDT_BODY);
510                 if (body == NULL)
511                         RETURN(-EPROTO);
512         }
513
514         RETURN(rc);
515 }
516
517 int lmv_intent_lock(struct obd_export *exp, struct md_op_data *op_data,
518                     void *lmm, int lmmsize, struct lookup_intent *it,
519                     int flags, struct ptlrpc_request **reqp,
520                     ldlm_blocking_callback cb_blocking,
521                     __u64 extra_lock_flags)
522 {
523         struct obd_device *obd = exp->exp_obd;
524         int                rc;
525         ENTRY;
526
527         LASSERT(it != NULL);
528         LASSERT(fid_is_sane(&op_data->op_fid1));
529
530         CDEBUG(D_INODE, "INTENT LOCK '%s' for '%*s' on "DFID"\n",
531                LL_IT2STR(it), op_data->op_namelen, op_data->op_name,
532                PFID(&op_data->op_fid1));
533
534         rc = lmv_check_connect(obd);
535         if (rc)
536                 RETURN(rc);
537
538         if (it->it_op & (IT_LOOKUP | IT_GETATTR | IT_LAYOUT))
539                 rc = lmv_intent_lookup(exp, op_data, lmm, lmmsize, it,
540                                        flags, reqp, cb_blocking,
541                                        extra_lock_flags);
542         else if (it->it_op & IT_OPEN)
543                 rc = lmv_intent_open(exp, op_data, lmm, lmmsize, it,
544                                      flags, reqp, cb_blocking,
545                                      extra_lock_flags);
546         else
547                 LBUG();
548         RETURN(rc);
549 }