Whamcloud - gitweb
LU-4524 ldlm: improve ldlm_lock_create() return value
[fs/lustre-release.git] / lustre / mdc / mdc_reint.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) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 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_MDC
38
39 #ifdef __KERNEL__
40 # include <linux/module.h>
41 # include <linux/kernel.h>
42 #else
43 # include <liblustre.h>
44 #endif
45
46 #include <obd_class.h>
47 #include "mdc_internal.h"
48 #include <lustre_fid.h>
49
50 /* mdc_setattr does its own semaphore handling */
51 static int mdc_reint(struct ptlrpc_request *request,
52                      struct mdc_rpc_lock *rpc_lock,
53                      int level)
54 {
55         int rc;
56
57         request->rq_send_state = level;
58
59         mdc_get_rpc_lock(rpc_lock, NULL);
60         rc = ptlrpc_queue_wait(request);
61         mdc_put_rpc_lock(rpc_lock, NULL);
62         if (rc)
63                 CDEBUG(D_INFO, "error in handling %d\n", rc);
64         else if (!req_capsule_server_get(&request->rq_pill, &RMF_MDT_BODY)) {
65                 rc = -EPROTO;
66         }
67         return rc;
68 }
69
70 /* Find and cancel locally locks matched by inode @bits & @mode in the resource
71  * found by @fid. Found locks are added into @cancel list. Returns the amount of
72  * locks added to @cancels list. */
73 int mdc_resource_get_unused(struct obd_export *exp, const struct lu_fid *fid,
74                             struct list_head *cancels, ldlm_mode_t mode,
75                             __u64 bits)
76 {
77         struct ldlm_namespace *ns = exp->exp_obd->obd_namespace;
78         ldlm_policy_data_t policy = { {0} };
79         struct ldlm_res_id res_id;
80         struct ldlm_resource *res;
81         int count;
82         ENTRY;
83
84         /* Return, i.e. cancel nothing, only if ELC is supported (flag in
85          * export) but disabled through procfs (flag in NS).
86          *
87          * This distinguishes from a case when ELC is not supported originally,
88          * when we still want to cancel locks in advance and just cancel them
89          * locally, without sending any RPC. */
90         if (exp_connect_cancelset(exp) && !ns_connect_cancelset(ns))
91                 RETURN(0);
92
93         fid_build_reg_res_name(fid, &res_id);
94         res = ldlm_resource_get(exp->exp_obd->obd_namespace,
95                                 NULL, &res_id, 0, 0);
96         if (IS_ERR(res))
97                 RETURN(0);
98         LDLM_RESOURCE_ADDREF(res);
99         /* Initialize ibits lock policy. */
100         policy.l_inodebits.bits = bits;
101         count = ldlm_cancel_resource_local(res, cancels, &policy,
102                                            mode, 0, 0, NULL);
103         LDLM_RESOURCE_DELREF(res);
104         ldlm_resource_putref(res);
105         RETURN(count);
106 }
107
108 int mdc_setattr(struct obd_export *exp, struct md_op_data *op_data,
109                 void *ea, int ealen, void *ea2, int ea2len,
110                 struct ptlrpc_request **request, struct md_open_data **mod)
111 {
112         struct list_head cancels = LIST_HEAD_INIT(cancels);
113         struct ptlrpc_request *req;
114         struct mdc_rpc_lock *rpc_lock;
115         struct obd_device *obd = exp->exp_obd;
116         int count = 0, rc;
117         __u64 bits;
118         ENTRY;
119
120         LASSERT(op_data != NULL);
121
122         bits = MDS_INODELOCK_UPDATE;
123         if (op_data->op_attr.ia_valid & (ATTR_MODE|ATTR_UID|ATTR_GID))
124                 bits |= MDS_INODELOCK_LOOKUP;
125         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) &&
126             (fid_is_sane(&op_data->op_fid1)) &&
127             !OBD_FAIL_CHECK(OBD_FAIL_LDLM_BL_CALLBACK_NET))
128                 count = mdc_resource_get_unused(exp, &op_data->op_fid1,
129                                                 &cancels, LCK_EX, bits);
130         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
131                                    &RQF_MDS_REINT_SETATTR);
132         if (req == NULL) {
133                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
134                 RETURN(-ENOMEM);
135         }
136         mdc_set_capa_size(req, &RMF_CAPA1, op_data->op_capa1);
137         if ((op_data->op_flags & (MF_SOM_CHANGE | MF_EPOCH_OPEN)) == 0)
138                 req_capsule_set_size(&req->rq_pill, &RMF_MDT_EPOCH, RCL_CLIENT,
139                                      0);
140         req_capsule_set_size(&req->rq_pill, &RMF_EADATA, RCL_CLIENT, ealen);
141         req_capsule_set_size(&req->rq_pill, &RMF_LOGCOOKIES, RCL_CLIENT,
142                              ea2len);
143
144         rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
145         if (rc) {
146                 ptlrpc_request_free(req);
147                 RETURN(rc);
148         }
149
150         rpc_lock = obd->u.cli.cl_rpc_lock;
151
152         if (op_data->op_attr.ia_valid & (ATTR_MTIME | ATTR_CTIME))
153                 CDEBUG(D_INODE, "setting mtime "CFS_TIME_T
154                        ", ctime "CFS_TIME_T"\n",
155                        LTIME_S(op_data->op_attr.ia_mtime),
156                        LTIME_S(op_data->op_attr.ia_ctime));
157         mdc_setattr_pack(req, op_data, ea, ealen, ea2, ea2len);
158
159         ptlrpc_request_set_replen(req);
160         if (mod && (op_data->op_flags & MF_EPOCH_OPEN) &&
161             req->rq_import->imp_replayable)
162         {
163                 LASSERT(*mod == NULL);
164
165                 *mod = obd_mod_alloc();
166                 if (*mod == NULL) {
167                         DEBUG_REQ(D_ERROR, req, "Can't allocate "
168                                   "md_open_data");
169                 } else {
170                         req->rq_replay = 1;
171                         req->rq_cb_data = *mod;
172                         (*mod)->mod_open_req = req;
173                         req->rq_commit_cb = mdc_commit_open;
174                         (*mod)->mod_is_create = true;
175                         /**
176                          * Take an extra reference on \var mod, it protects \var
177                          * mod from being freed on eviction (commit callback is
178                          * called despite rq_replay flag).
179                          * Will be put on mdc_done_writing().
180                          */
181                         obd_mod_get(*mod);
182                 }
183         }
184
185         rc = mdc_reint(req, rpc_lock, LUSTRE_IMP_FULL);
186
187         /* Save the obtained info in the original RPC for the replay case. */
188         if (rc == 0 && (op_data->op_flags & MF_EPOCH_OPEN)) {
189                 struct mdt_ioepoch *epoch;
190                 struct mdt_body  *body;
191
192                 epoch = req_capsule_client_get(&req->rq_pill, &RMF_MDT_EPOCH);
193                 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
194                 LASSERT(epoch != NULL);
195                 LASSERT(body != NULL);
196                 epoch->handle = body->mbo_handle;
197                 epoch->ioepoch = body->mbo_ioepoch;
198                 req->rq_replay_cb = mdc_replay_open;
199         /** bug 3633, open may be committed and estale answer is not error */
200         } else if (rc == -ESTALE && (op_data->op_flags & MF_SOM_CHANGE)) {
201                 rc = 0;
202         } else if (rc == -ERESTARTSYS) {
203                 rc = 0;
204         }
205         *request = req;
206         if (rc && req->rq_commit_cb) {
207                 /* Put an extra reference on \var mod on error case. */
208                 if (mod != NULL && *mod != NULL)
209                         obd_mod_put(*mod);
210                 req->rq_commit_cb(req);
211         }
212         RETURN(rc);
213 }
214
215 int mdc_create(struct obd_export *exp, struct md_op_data *op_data,
216                const void *data, int datalen, int mode, __u32 uid, __u32 gid,
217                cfs_cap_t cap_effective, __u64 rdev,
218                struct ptlrpc_request **request)
219 {
220         struct ptlrpc_request *req;
221         int level, rc;
222         int count, resends = 0;
223         struct obd_import *import = exp->exp_obd->u.cli.cl_import;
224         int generation = import->imp_generation;
225         struct list_head cancels = LIST_HEAD_INIT(cancels);
226         ENTRY;
227
228         /* For case if upper layer did not alloc fid, do it now. */
229         if (!fid_is_sane(&op_data->op_fid2)) {
230                 /*
231                  * mdc_fid_alloc() may return errno 1 in case of switch to new
232                  * sequence, handle this.
233                  */
234                 rc = mdc_fid_alloc(NULL, exp, &op_data->op_fid2, op_data);
235                 if (rc < 0)
236                         RETURN(rc);
237         }
238
239 rebuild:
240         count = 0;
241         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) &&
242             (fid_is_sane(&op_data->op_fid1)))
243                 count = mdc_resource_get_unused(exp, &op_data->op_fid1,
244                                                 &cancels, LCK_EX,
245                                                 MDS_INODELOCK_UPDATE);
246
247         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
248                                    &RQF_MDS_REINT_CREATE_RMT_ACL);
249         if (req == NULL) {
250                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
251                 RETURN(-ENOMEM);
252         }
253         mdc_set_capa_size(req, &RMF_CAPA1, op_data->op_capa1);
254         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
255                              op_data->op_namelen + 1);
256         req_capsule_set_size(&req->rq_pill, &RMF_EADATA, RCL_CLIENT,
257                              data && datalen ? datalen : 0);
258
259         rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
260         if (rc) {
261                 ptlrpc_request_free(req);
262                 RETURN(rc);
263         }
264
265         /*
266          * mdc_create_pack() fills msg->bufs[1] with name and msg->bufs[2] with
267          * tgt, for symlinks or lov MD data.
268          */
269         mdc_create_pack(req, op_data, data, datalen, mode, uid,
270                         gid, cap_effective, rdev);
271
272         ptlrpc_request_set_replen(req);
273
274         /* ask ptlrpc not to resend on EINPROGRESS since we have our own retry
275          * logic here */
276         req->rq_no_retry_einprogress = 1;
277
278         if (resends) {
279                 req->rq_generation_set = 1;
280                 req->rq_import_generation = generation;
281                 req->rq_sent = cfs_time_current_sec() + resends;
282         }
283         level = LUSTRE_IMP_FULL;
284  resend:
285         rc = mdc_reint(req, exp->exp_obd->u.cli.cl_rpc_lock, level);
286
287         /* Resend if we were told to. */
288         if (rc == -ERESTARTSYS) {
289                 level = LUSTRE_IMP_RECOVER;
290                 goto resend;
291         } else if (rc == -EINPROGRESS) {
292                 /* Retry create infinitely until succeed or get other
293                  * error code. */
294                 ptlrpc_req_finished(req);
295                 resends++;
296
297                 CDEBUG(D_HA, "%s: resend:%d create on "DFID"/"DFID"\n",
298                        exp->exp_obd->obd_name, resends,
299                        PFID(&op_data->op_fid1), PFID(&op_data->op_fid2));
300
301                 if (generation == import->imp_generation) {
302                         goto rebuild;
303                 } else {
304                         CDEBUG(D_HA, "resend cross eviction\n");
305                         RETURN(-EIO);
306                 }
307         } else if (rc == 0) {
308                 struct mdt_body *body;
309                 struct lustre_capa *capa;
310
311                 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
312                 LASSERT(body);
313                 if (body->mbo_valid & OBD_MD_FLMDSCAPA) {
314                         capa = req_capsule_server_get(&req->rq_pill,
315                                                       &RMF_CAPA1);
316                         if (capa == NULL)
317                                 rc = -EPROTO;
318                 }
319         }
320
321         *request = req;
322         RETURN(rc);
323 }
324
325 int mdc_unlink(struct obd_export *exp, struct md_op_data *op_data,
326                struct ptlrpc_request **request)
327 {
328         struct list_head cancels = LIST_HEAD_INIT(cancels);
329         struct obd_device *obd = class_exp2obd(exp);
330         struct ptlrpc_request *req = *request;
331         int count = 0, rc;
332         ENTRY;
333
334         LASSERT(req == NULL);
335
336         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) &&
337             (fid_is_sane(&op_data->op_fid1)) &&
338             !OBD_FAIL_CHECK(OBD_FAIL_LDLM_BL_CALLBACK_NET))
339                 count = mdc_resource_get_unused(exp, &op_data->op_fid1,
340                                                 &cancels, LCK_EX,
341                                                 MDS_INODELOCK_UPDATE);
342         if ((op_data->op_flags & MF_MDC_CANCEL_FID3) &&
343             (fid_is_sane(&op_data->op_fid3)) &&
344             !OBD_FAIL_CHECK(OBD_FAIL_LDLM_BL_CALLBACK_NET))
345                 count += mdc_resource_get_unused(exp, &op_data->op_fid3,
346                                                  &cancels, LCK_EX,
347                                                  MDS_INODELOCK_FULL);
348         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
349                                    &RQF_MDS_REINT_UNLINK);
350         if (req == NULL) {
351                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
352                 RETURN(-ENOMEM);
353         }
354         mdc_set_capa_size(req, &RMF_CAPA1, op_data->op_capa1);
355         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
356                              op_data->op_namelen + 1);
357
358         rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
359         if (rc) {
360                 ptlrpc_request_free(req);
361                 RETURN(rc);
362         }
363
364         mdc_unlink_pack(req, op_data);
365
366         req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
367                              obd->u.cli.cl_default_mds_easize);
368         req_capsule_set_size(&req->rq_pill, &RMF_LOGCOOKIES, RCL_SERVER,
369                              obd->u.cli.cl_default_mds_cookiesize);
370         ptlrpc_request_set_replen(req);
371
372         *request = req;
373
374         rc = mdc_reint(req, obd->u.cli.cl_rpc_lock, LUSTRE_IMP_FULL);
375         if (rc == -ERESTARTSYS)
376                 rc = 0;
377         RETURN(rc);
378 }
379
380 int mdc_link(struct obd_export *exp, struct md_op_data *op_data,
381              struct ptlrpc_request **request)
382 {
383         struct list_head cancels = LIST_HEAD_INIT(cancels);
384         struct obd_device *obd = exp->exp_obd;
385         struct ptlrpc_request *req;
386         int count = 0, rc;
387         ENTRY;
388
389         if ((op_data->op_flags & MF_MDC_CANCEL_FID2) &&
390             (fid_is_sane(&op_data->op_fid2)))
391                 count = mdc_resource_get_unused(exp, &op_data->op_fid2,
392                                                 &cancels, LCK_EX,
393                                                 MDS_INODELOCK_UPDATE);
394         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) &&
395             (fid_is_sane(&op_data->op_fid1)))
396                 count += mdc_resource_get_unused(exp, &op_data->op_fid1,
397                                                  &cancels, LCK_EX,
398                                                  MDS_INODELOCK_UPDATE);
399
400         req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_REINT_LINK);
401         if (req == NULL) {
402                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
403                 RETURN(-ENOMEM);
404         }
405         mdc_set_capa_size(req, &RMF_CAPA1, op_data->op_capa1);
406         mdc_set_capa_size(req, &RMF_CAPA2, op_data->op_capa2);
407         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
408                              op_data->op_namelen + 1);
409
410         rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
411         if (rc) {
412                 ptlrpc_request_free(req);
413                 RETURN(rc);
414         }
415
416         mdc_link_pack(req, op_data);
417         ptlrpc_request_set_replen(req);
418
419         rc = mdc_reint(req, obd->u.cli.cl_rpc_lock, LUSTRE_IMP_FULL);
420         *request = req;
421         if (rc == -ERESTARTSYS)
422                 rc = 0;
423
424         RETURN(rc);
425 }
426
427 int mdc_rename(struct obd_export *exp, struct md_op_data *op_data,
428                const char *old, int oldlen, const char *new, int newlen,
429                struct ptlrpc_request **request)
430 {
431         struct list_head cancels = LIST_HEAD_INIT(cancels);
432         struct obd_device *obd = exp->exp_obd;
433         struct ptlrpc_request *req;
434         int count = 0, rc;
435         ENTRY;
436
437         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) &&
438             (fid_is_sane(&op_data->op_fid1)))
439                 count = mdc_resource_get_unused(exp, &op_data->op_fid1,
440                                                 &cancels, LCK_EX,
441                                                 MDS_INODELOCK_UPDATE);
442         if ((op_data->op_flags & MF_MDC_CANCEL_FID2) &&
443             (fid_is_sane(&op_data->op_fid2)))
444                 count += mdc_resource_get_unused(exp, &op_data->op_fid2,
445                                                  &cancels, LCK_EX,
446                                                  MDS_INODELOCK_UPDATE);
447         if ((op_data->op_flags & MF_MDC_CANCEL_FID3) &&
448             (fid_is_sane(&op_data->op_fid3)))
449                 count += mdc_resource_get_unused(exp, &op_data->op_fid3,
450                                                  &cancels, LCK_EX,
451                                                  MDS_INODELOCK_LOOKUP);
452         if ((op_data->op_flags & MF_MDC_CANCEL_FID4) &&
453              (fid_is_sane(&op_data->op_fid4)))
454                 count += mdc_resource_get_unused(exp, &op_data->op_fid4,
455                                                  &cancels, LCK_EX,
456                                                  MDS_INODELOCK_FULL);
457
458         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
459                                    &RQF_MDS_REINT_RENAME);
460         if (req == NULL) {
461                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
462                 RETURN(-ENOMEM);
463         }
464
465         mdc_set_capa_size(req, &RMF_CAPA1, op_data->op_capa1);
466         mdc_set_capa_size(req, &RMF_CAPA2, op_data->op_capa2);
467         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT, oldlen + 1);
468         req_capsule_set_size(&req->rq_pill, &RMF_SYMTGT, RCL_CLIENT, newlen+1);
469
470         rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
471         if (rc) {
472                 ptlrpc_request_free(req);
473                 RETURN(rc);
474         }
475
476         if (exp_connect_cancelset(exp) && req)
477                 ldlm_cli_cancel_list(&cancels, count, req, 0);
478
479         mdc_rename_pack(req, op_data, old, oldlen, new, newlen);
480
481         req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
482                              obd->u.cli.cl_default_mds_easize);
483         req_capsule_set_size(&req->rq_pill, &RMF_LOGCOOKIES, RCL_SERVER,
484                              obd->u.cli.cl_default_mds_cookiesize);
485         ptlrpc_request_set_replen(req);
486
487         rc = mdc_reint(req, obd->u.cli.cl_rpc_lock, LUSTRE_IMP_FULL);
488         *request = req;
489         if (rc == -ERESTARTSYS)
490                 rc = 0;
491
492         RETURN(rc);
493 }