Whamcloud - gitweb
LU-7473 acl: increase ACL entries limitation
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2016, 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_MDC
34
35 #include <linux/module.h>
36 #include <linux/kernel.h>
37
38 #include <obd_class.h>
39 #include "mdc_internal.h"
40 #include <lustre_fid.h>
41
42 /* mdc_setattr does its own semaphore handling */
43 static int mdc_reint(struct ptlrpc_request *request, int level)
44 {
45         int rc;
46
47         request->rq_send_state = level;
48
49         mdc_get_mod_rpc_slot(request, NULL);
50         rc = ptlrpc_queue_wait(request);
51         mdc_put_mod_rpc_slot(request, NULL);
52         if (rc)
53                 CDEBUG(D_INFO, "error in handling %d\n", rc);
54         else if (!req_capsule_server_get(&request->rq_pill, &RMF_MDT_BODY)) {
55                 rc = -EPROTO;
56         }
57         return rc;
58 }
59
60 /* Find and cancel locally locks matched by inode @bits & @mode in the resource
61  * found by @fid. Found locks are added into @cancel list. Returns the amount of
62  * locks added to @cancels list. */
63 int mdc_resource_get_unused(struct obd_export *exp, const struct lu_fid *fid,
64                             struct list_head *cancels, enum ldlm_mode mode,
65                             __u64 bits)
66 {
67         struct ldlm_namespace *ns = exp->exp_obd->obd_namespace;
68         union ldlm_policy_data policy = { {0} };
69         struct ldlm_res_id res_id;
70         struct ldlm_resource *res;
71         int count;
72         ENTRY;
73
74         /* Return, i.e. cancel nothing, only if ELC is supported (flag in
75          * export) but disabled through procfs (flag in NS).
76          *
77          * This distinguishes from a case when ELC is not supported originally,
78          * when we still want to cancel locks in advance and just cancel them
79          * locally, without sending any RPC. */
80         if (exp_connect_cancelset(exp) && !ns_connect_cancelset(ns))
81                 RETURN(0);
82
83         fid_build_reg_res_name(fid, &res_id);
84         res = ldlm_resource_get(exp->exp_obd->obd_namespace,
85                                 NULL, &res_id, 0, 0);
86         if (IS_ERR(res))
87                 RETURN(0);
88         LDLM_RESOURCE_ADDREF(res);
89         /* Initialize ibits lock policy. */
90         policy.l_inodebits.bits = bits;
91         count = ldlm_cancel_resource_local(res, cancels, &policy,
92                                            mode, 0, 0, NULL);
93         LDLM_RESOURCE_DELREF(res);
94         ldlm_resource_putref(res);
95         RETURN(count);
96 }
97
98 int mdc_setattr(struct obd_export *exp, struct md_op_data *op_data,
99                 void *ea, size_t ealen, struct ptlrpc_request **request)
100 {
101         struct list_head cancels = LIST_HEAD_INIT(cancels);
102         struct ptlrpc_request *req;
103         int count = 0, rc;
104         __u64 bits;
105         ENTRY;
106
107         LASSERT(op_data != NULL);
108
109         bits = MDS_INODELOCK_UPDATE;
110         if (op_data->op_attr.ia_valid & (ATTR_MODE|ATTR_UID|ATTR_GID))
111                 bits |= MDS_INODELOCK_LOOKUP;
112         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) &&
113             (fid_is_sane(&op_data->op_fid1)))
114                 count = mdc_resource_get_unused(exp, &op_data->op_fid1,
115                                                 &cancels, LCK_EX, bits);
116         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
117                                    &RQF_MDS_REINT_SETATTR);
118         if (req == NULL) {
119                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
120                 RETURN(-ENOMEM);
121         }
122
123         req_capsule_set_size(&req->rq_pill, &RMF_MDT_EPOCH, RCL_CLIENT, 0);
124         req_capsule_set_size(&req->rq_pill, &RMF_EADATA, RCL_CLIENT, ealen);
125         req_capsule_set_size(&req->rq_pill, &RMF_LOGCOOKIES, RCL_CLIENT, 0);
126
127         rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
128         if (rc) {
129                 ptlrpc_request_free(req);
130                 RETURN(rc);
131         }
132
133         if (op_data->op_attr.ia_valid & (ATTR_MTIME | ATTR_CTIME))
134                 CDEBUG(D_INODE, "setting mtime "CFS_TIME_T
135                        ", ctime "CFS_TIME_T"\n",
136                        LTIME_S(op_data->op_attr.ia_mtime),
137                        LTIME_S(op_data->op_attr.ia_ctime));
138         mdc_setattr_pack(req, op_data, ea, ealen);
139
140         req_capsule_set_size(&req->rq_pill, &RMF_ACL, RCL_SERVER,
141                              req->rq_import->imp_connect_data.ocd_max_easize);
142         ptlrpc_request_set_replen(req);
143
144         rc = mdc_reint(req, LUSTRE_IMP_FULL);
145         if (rc == -ERESTARTSYS)
146                 rc = 0;
147
148         *request = req;
149
150         RETURN(rc);
151 }
152
153 int mdc_create(struct obd_export *exp, struct md_op_data *op_data,
154                 const void *data, size_t datalen,
155                 umode_t mode, uid_t uid, gid_t gid,
156                 cfs_cap_t cap_effective, __u64 rdev,
157                 struct ptlrpc_request **request)
158 {
159         struct ptlrpc_request *req;
160         int level, rc;
161         int count, resends = 0;
162         struct obd_import *import = exp->exp_obd->u.cli.cl_import;
163         int generation = import->imp_generation;
164         struct list_head cancels = LIST_HEAD_INIT(cancels);
165         ENTRY;
166
167         /* For case if upper layer did not alloc fid, do it now. */
168         if (!fid_is_sane(&op_data->op_fid2)) {
169                 /*
170                  * mdc_fid_alloc() may return errno 1 in case of switch to new
171                  * sequence, handle this.
172                  */
173                 rc = mdc_fid_alloc(NULL, exp, &op_data->op_fid2, op_data);
174                 if (rc < 0)
175                         RETURN(rc);
176         }
177
178 rebuild:
179         count = 0;
180         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) &&
181             (fid_is_sane(&op_data->op_fid1)))
182                 count = mdc_resource_get_unused(exp, &op_data->op_fid1,
183                                                 &cancels, LCK_EX,
184                                                 MDS_INODELOCK_UPDATE);
185
186         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
187                                    &RQF_MDS_REINT_CREATE_ACL);
188         if (req == NULL) {
189                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
190                 RETURN(-ENOMEM);
191         }
192
193         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
194                              op_data->op_namelen + 1);
195         req_capsule_set_size(&req->rq_pill, &RMF_EADATA, RCL_CLIENT,
196                              data && datalen ? datalen : 0);
197
198         req_capsule_set_size(&req->rq_pill, &RMF_FILE_SECCTX_NAME,
199                              RCL_CLIENT, op_data->op_file_secctx_name != NULL ?
200                              strlen(op_data->op_file_secctx_name) + 1 : 0);
201
202         req_capsule_set_size(&req->rq_pill, &RMF_FILE_SECCTX, RCL_CLIENT,
203                              op_data->op_file_secctx_size);
204
205         rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
206         if (rc) {
207                 ptlrpc_request_free(req);
208                 RETURN(rc);
209         }
210
211         /*
212          * mdc_create_pack() fills msg->bufs[1] with name and msg->bufs[2] with
213          * tgt, for symlinks or lov MD data.
214          */
215         mdc_create_pack(req, op_data, data, datalen, mode, uid,
216                         gid, cap_effective, rdev);
217
218         ptlrpc_request_set_replen(req);
219
220         /* ask ptlrpc not to resend on EINPROGRESS since we have our own retry
221          * logic here */
222         req->rq_no_retry_einprogress = 1;
223
224         if (resends) {
225                 req->rq_generation_set = 1;
226                 req->rq_import_generation = generation;
227                 req->rq_sent = ktime_get_real_seconds() + resends;
228         }
229         level = LUSTRE_IMP_FULL;
230  resend:
231         rc = mdc_reint(req, level);
232
233         /* Resend if we were told to. */
234         if (rc == -ERESTARTSYS) {
235                 level = LUSTRE_IMP_RECOVER;
236                 goto resend;
237         } else if (rc == -EINPROGRESS) {
238                 /* Retry create infinitely until succeed or get other
239                  * error code. */
240                 ptlrpc_req_finished(req);
241                 resends++;
242
243                 CDEBUG(D_HA, "%s: resend:%d create on "DFID"/"DFID"\n",
244                        exp->exp_obd->obd_name, resends,
245                        PFID(&op_data->op_fid1), PFID(&op_data->op_fid2));
246
247                 if (generation == import->imp_generation) {
248                         goto rebuild;
249                 } else {
250                         CDEBUG(D_HA, "resend cross eviction\n");
251                         RETURN(-EIO);
252                 }
253         }
254
255         *request = req;
256         RETURN(rc);
257 }
258
259 int mdc_unlink(struct obd_export *exp, struct md_op_data *op_data,
260                struct ptlrpc_request **request)
261 {
262         struct list_head cancels = LIST_HEAD_INIT(cancels);
263         struct obd_device *obd = class_exp2obd(exp);
264         struct ptlrpc_request *req = *request;
265         int count = 0, rc;
266         ENTRY;
267
268         LASSERT(req == NULL);
269
270         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) &&
271             (fid_is_sane(&op_data->op_fid1)))
272                 count = mdc_resource_get_unused(exp, &op_data->op_fid1,
273                                                 &cancels, LCK_EX,
274                                                 MDS_INODELOCK_UPDATE);
275         if ((op_data->op_flags & MF_MDC_CANCEL_FID3) &&
276             (fid_is_sane(&op_data->op_fid3)))
277                 count += mdc_resource_get_unused(exp, &op_data->op_fid3,
278                                                  &cancels, LCK_EX,
279                                                  MDS_INODELOCK_FULL);
280         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
281                                    &RQF_MDS_REINT_UNLINK);
282         if (req == NULL) {
283                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
284                 RETURN(-ENOMEM);
285         }
286
287         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
288                              op_data->op_namelen + 1);
289
290         rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
291         if (rc) {
292                 ptlrpc_request_free(req);
293                 RETURN(rc);
294         }
295
296         mdc_unlink_pack(req, op_data);
297
298         req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
299                              obd->u.cli.cl_default_mds_easize);
300         ptlrpc_request_set_replen(req);
301
302         *request = req;
303
304         rc = mdc_reint(req, LUSTRE_IMP_FULL);
305         if (rc == -ERESTARTSYS)
306                 rc = 0;
307         RETURN(rc);
308 }
309
310 int mdc_link(struct obd_export *exp, struct md_op_data *op_data,
311              struct ptlrpc_request **request)
312 {
313         struct list_head cancels = LIST_HEAD_INIT(cancels);
314         struct ptlrpc_request *req;
315         int count = 0, rc;
316         ENTRY;
317
318         if ((op_data->op_flags & MF_MDC_CANCEL_FID2) &&
319             (fid_is_sane(&op_data->op_fid2)))
320                 count = mdc_resource_get_unused(exp, &op_data->op_fid2,
321                                                 &cancels, LCK_EX,
322                                                 MDS_INODELOCK_UPDATE);
323         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) &&
324             (fid_is_sane(&op_data->op_fid1)))
325                 count += mdc_resource_get_unused(exp, &op_data->op_fid1,
326                                                  &cancels, LCK_EX,
327                                                  MDS_INODELOCK_UPDATE);
328
329         req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_REINT_LINK);
330         if (req == NULL) {
331                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
332                 RETURN(-ENOMEM);
333         }
334
335         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
336                              op_data->op_namelen + 1);
337
338         rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
339         if (rc) {
340                 ptlrpc_request_free(req);
341                 RETURN(rc);
342         }
343
344         mdc_link_pack(req, op_data);
345         ptlrpc_request_set_replen(req);
346
347         rc = mdc_reint(req, LUSTRE_IMP_FULL);
348         *request = req;
349         if (rc == -ERESTARTSYS)
350                 rc = 0;
351
352         RETURN(rc);
353 }
354
355 int mdc_rename(struct obd_export *exp, struct md_op_data *op_data,
356                 const char *old, size_t oldlen, const char *new, size_t newlen,
357                 struct ptlrpc_request **request)
358 {
359         struct list_head cancels = LIST_HEAD_INIT(cancels);
360         struct obd_device *obd = exp->exp_obd;
361         struct ptlrpc_request *req;
362         int count = 0, rc;
363         ENTRY;
364
365         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) &&
366             (fid_is_sane(&op_data->op_fid1)))
367                 count = mdc_resource_get_unused(exp, &op_data->op_fid1,
368                                                 &cancels, LCK_EX,
369                                                 MDS_INODELOCK_UPDATE);
370         if ((op_data->op_flags & MF_MDC_CANCEL_FID2) &&
371             (fid_is_sane(&op_data->op_fid2)))
372                 count += mdc_resource_get_unused(exp, &op_data->op_fid2,
373                                                  &cancels, LCK_EX,
374                                                  MDS_INODELOCK_UPDATE);
375         if ((op_data->op_flags & MF_MDC_CANCEL_FID3) &&
376             (fid_is_sane(&op_data->op_fid3)))
377                 count += mdc_resource_get_unused(exp, &op_data->op_fid3,
378                                                  &cancels, LCK_EX,
379                                                  MDS_INODELOCK_LOOKUP);
380         if ((op_data->op_flags & MF_MDC_CANCEL_FID4) &&
381              (fid_is_sane(&op_data->op_fid4)))
382                 count += mdc_resource_get_unused(exp, &op_data->op_fid4,
383                                                  &cancels, LCK_EX,
384                                                  MDS_INODELOCK_FULL);
385
386         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
387                            op_data->op_cli_flags & CLI_MIGRATE ?
388                            &RQF_MDS_REINT_MIGRATE : &RQF_MDS_REINT_RENAME);
389         if (req == NULL) {
390                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
391                 RETURN(-ENOMEM);
392         }
393
394         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT, oldlen + 1);
395         req_capsule_set_size(&req->rq_pill, &RMF_SYMTGT, RCL_CLIENT, newlen+1);
396
397         rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
398         if (rc) {
399                 ptlrpc_request_free(req);
400                 RETURN(rc);
401         }
402
403         if (op_data->op_cli_flags & CLI_MIGRATE && op_data->op_data != NULL) {
404                 struct md_open_data *mod = op_data->op_data;
405
406                 LASSERTF(mod->mod_open_req != NULL &&
407                          mod->mod_open_req->rq_type != LI_POISON,
408                          "POISONED open %p!\n", mod->mod_open_req);
409
410                 DEBUG_REQ(D_HA, mod->mod_open_req, "matched open");
411                 /* We no longer want to preserve this open for replay even
412                  * though the open was committed. b=3632, b=3633 */
413                 spin_lock(&mod->mod_open_req->rq_lock);
414                 mod->mod_open_req->rq_replay = 0;
415                 spin_unlock(&mod->mod_open_req->rq_lock);
416         }
417
418         if (exp_connect_cancelset(exp) && req)
419                 ldlm_cli_cancel_list(&cancels, count, req, 0);
420
421         mdc_rename_pack(req, op_data, old, oldlen, new, newlen);
422
423         req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
424                              obd->u.cli.cl_default_mds_easize);
425         ptlrpc_request_set_replen(req);
426
427         rc = mdc_reint(req, LUSTRE_IMP_FULL);
428         *request = req;
429         if (rc == -ERESTARTSYS)
430                 rc = 0;
431
432         RETURN(rc);
433 }