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