Whamcloud - gitweb
cb09729a70d944403c93fb16a9087277e3959d5c
[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                             cfs_list_t *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 (res == NULL)
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         CFS_LIST_HEAD(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->handle;
197                 epoch->ioepoch = body->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                 obd_mod_put(*mod);
209                 req->rq_commit_cb(req);
210         }
211         RETURN(rc);
212 }
213
214 int mdc_create(struct obd_export *exp, struct md_op_data *op_data,
215                const void *data, int datalen, int mode, __u32 uid, __u32 gid,
216                cfs_cap_t cap_effective, __u64 rdev,
217                struct ptlrpc_request **request)
218 {
219         struct ptlrpc_request *req;
220         int level, rc;
221         int count, resends = 0;
222         struct obd_import *import = exp->exp_obd->u.cli.cl_import;
223         int generation = import->imp_generation;
224         CFS_LIST_HEAD(cancels);
225         ENTRY;
226
227         /* For case if upper layer did not alloc fid, do it now. */
228         if (!fid_is_sane(&op_data->op_fid2)) {
229                 /*
230                  * mdc_fid_alloc() may return errno 1 in case of switch to new
231                  * sequence, handle this.
232                  */
233                 rc = mdc_fid_alloc(exp, &op_data->op_fid2, op_data);
234                 if (rc < 0) {
235                         CERROR("Can't alloc new fid, rc %d\n", rc);
236                         RETURN(rc);
237                 }
238         }
239
240 rebuild:
241         count = 0;
242         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) &&
243             (fid_is_sane(&op_data->op_fid1)))
244                 count = mdc_resource_get_unused(exp, &op_data->op_fid1,
245                                                 &cancels, LCK_EX,
246                                                 MDS_INODELOCK_UPDATE);
247
248         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
249                                    &RQF_MDS_REINT_CREATE_RMT_ACL);
250         if (req == NULL) {
251                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
252                 RETURN(-ENOMEM);
253         }
254         mdc_set_capa_size(req, &RMF_CAPA1, op_data->op_capa1);
255         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
256                              op_data->op_namelen + 1);
257         req_capsule_set_size(&req->rq_pill, &RMF_EADATA, RCL_CLIENT,
258                              data && datalen ? datalen : 0);
259
260         rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
261         if (rc) {
262                 ptlrpc_request_free(req);
263                 RETURN(rc);
264         }
265
266         /*
267          * mdc_create_pack() fills msg->bufs[1] with name and msg->bufs[2] with
268          * tgt, for symlinks or lov MD data.
269          */
270         mdc_create_pack(req, op_data, data, datalen, mode, uid,
271                         gid, cap_effective, rdev);
272
273         ptlrpc_request_set_replen(req);
274
275         /* ask ptlrpc not to resend on EINPROGRESS since we have our own retry
276          * logic here */
277         req->rq_no_retry_einprogress = 1;
278
279         if (resends) {
280                 req->rq_generation_set = 1;
281                 req->rq_import_generation = generation;
282                 req->rq_sent = cfs_time_current_sec() + resends;
283         }
284         level = LUSTRE_IMP_FULL;
285  resend:
286         rc = mdc_reint(req, exp->exp_obd->u.cli.cl_rpc_lock, level);
287
288         /* Resend if we were told to. */
289         if (rc == -ERESTARTSYS) {
290                 level = LUSTRE_IMP_RECOVER;
291                 goto resend;
292         } else if (rc == -EINPROGRESS) {
293                 /* Retry create infinitely until succeed or get other
294                  * error code. */
295                 ptlrpc_req_finished(req);
296                 resends++;
297
298                 CDEBUG(D_HA, "%s: resend:%d create on "DFID"/"DFID"\n",
299                        exp->exp_obd->obd_name, resends,
300                        PFID(&op_data->op_fid1), PFID(&op_data->op_fid2));
301
302                 if (generation == import->imp_generation) {
303                         goto rebuild;
304                 } else {
305                         CDEBUG(D_HA, "resend cross eviction\n");
306                         RETURN(-EIO);
307                 }
308         } else if (rc == 0) {
309                 struct mdt_body *body;
310                 struct lustre_capa *capa;
311
312                 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
313                 LASSERT(body);
314                 if (body->valid & OBD_MD_FLMDSCAPA) {
315                         capa = req_capsule_server_get(&req->rq_pill,
316                                                       &RMF_CAPA1);
317                         if (capa == NULL)
318                                 rc = -EPROTO;
319                 }
320         }
321
322         *request = req;
323         RETURN(rc);
324 }
325
326 int mdc_unlink(struct obd_export *exp, struct md_op_data *op_data,
327                struct ptlrpc_request **request)
328 {
329         CFS_LIST_HEAD(cancels);
330         struct obd_device *obd = class_exp2obd(exp);
331         struct ptlrpc_request *req = *request;
332         int count = 0, rc;
333         ENTRY;
334
335         LASSERT(req == NULL);
336
337         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) &&
338             (fid_is_sane(&op_data->op_fid1)) &&
339             !OBD_FAIL_CHECK(OBD_FAIL_LDLM_BL_CALLBACK_NET))
340                 count = mdc_resource_get_unused(exp, &op_data->op_fid1,
341                                                 &cancels, LCK_EX,
342                                                 MDS_INODELOCK_UPDATE);
343         if ((op_data->op_flags & MF_MDC_CANCEL_FID3) &&
344             (fid_is_sane(&op_data->op_fid3)) &&
345             !OBD_FAIL_CHECK(OBD_FAIL_LDLM_BL_CALLBACK_NET))
346                 count += mdc_resource_get_unused(exp, &op_data->op_fid3,
347                                                  &cancels, LCK_EX,
348                                                  MDS_INODELOCK_FULL);
349         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
350                                    &RQF_MDS_REINT_UNLINK);
351         if (req == NULL) {
352                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
353                 RETURN(-ENOMEM);
354         }
355         mdc_set_capa_size(req, &RMF_CAPA1, op_data->op_capa1);
356         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
357                              op_data->op_namelen + 1);
358
359         rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
360         if (rc) {
361                 ptlrpc_request_free(req);
362                 RETURN(rc);
363         }
364
365         mdc_unlink_pack(req, op_data);
366
367         req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
368                              obd->u.cli.cl_default_mds_easize);
369         req_capsule_set_size(&req->rq_pill, &RMF_LOGCOOKIES, RCL_SERVER,
370                              obd->u.cli.cl_default_mds_cookiesize);
371         ptlrpc_request_set_replen(req);
372
373         *request = req;
374
375         rc = mdc_reint(req, obd->u.cli.cl_rpc_lock, LUSTRE_IMP_FULL);
376         if (rc == -ERESTARTSYS)
377                 rc = 0;
378         RETURN(rc);
379 }
380
381 int mdc_link(struct obd_export *exp, struct md_op_data *op_data,
382              struct ptlrpc_request **request)
383 {
384         CFS_LIST_HEAD(cancels);
385         struct obd_device *obd = exp->exp_obd;
386         struct ptlrpc_request *req;
387         int count = 0, rc;
388         ENTRY;
389
390         if ((op_data->op_flags & MF_MDC_CANCEL_FID2) &&
391             (fid_is_sane(&op_data->op_fid2)))
392                 count = mdc_resource_get_unused(exp, &op_data->op_fid2,
393                                                 &cancels, LCK_EX,
394                                                 MDS_INODELOCK_UPDATE);
395         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) &&
396             (fid_is_sane(&op_data->op_fid1)))
397                 count += mdc_resource_get_unused(exp, &op_data->op_fid1,
398                                                  &cancels, LCK_EX,
399                                                  MDS_INODELOCK_UPDATE);
400
401         req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_REINT_LINK);
402         if (req == NULL) {
403                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
404                 RETURN(-ENOMEM);
405         }
406         mdc_set_capa_size(req, &RMF_CAPA1, op_data->op_capa1);
407         mdc_set_capa_size(req, &RMF_CAPA2, op_data->op_capa2);
408         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
409                              op_data->op_namelen + 1);
410
411         rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
412         if (rc) {
413                 ptlrpc_request_free(req);
414                 RETURN(rc);
415         }
416
417         mdc_link_pack(req, op_data);
418         ptlrpc_request_set_replen(req);
419
420         rc = mdc_reint(req, obd->u.cli.cl_rpc_lock, LUSTRE_IMP_FULL);
421         *request = req;
422         if (rc == -ERESTARTSYS)
423                 rc = 0;
424
425         RETURN(rc);
426 }
427
428 int mdc_rename(struct obd_export *exp, struct md_op_data *op_data,
429                const char *old, int oldlen, const char *new, int newlen,
430                struct ptlrpc_request **request)
431 {
432         CFS_LIST_HEAD(cancels);
433         struct obd_device *obd = exp->exp_obd;
434         struct ptlrpc_request *req;
435         int count = 0, rc;
436         ENTRY;
437
438         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) &&
439             (fid_is_sane(&op_data->op_fid1)))
440                 count = mdc_resource_get_unused(exp, &op_data->op_fid1,
441                                                 &cancels, LCK_EX,
442                                                 MDS_INODELOCK_UPDATE);
443         if ((op_data->op_flags & MF_MDC_CANCEL_FID2) &&
444             (fid_is_sane(&op_data->op_fid2)))
445                 count += mdc_resource_get_unused(exp, &op_data->op_fid2,
446                                                  &cancels, LCK_EX,
447                                                  MDS_INODELOCK_UPDATE);
448         if ((op_data->op_flags & MF_MDC_CANCEL_FID3) &&
449             (fid_is_sane(&op_data->op_fid3)))
450                 count += mdc_resource_get_unused(exp, &op_data->op_fid3,
451                                                  &cancels, LCK_EX,
452                                                  MDS_INODELOCK_LOOKUP);
453         if ((op_data->op_flags & MF_MDC_CANCEL_FID4) &&
454              (fid_is_sane(&op_data->op_fid4)))
455                 count += mdc_resource_get_unused(exp, &op_data->op_fid4,
456                                                  &cancels, LCK_EX,
457                                                  MDS_INODELOCK_FULL);
458
459         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
460                                    &RQF_MDS_REINT_RENAME);
461         if (req == NULL) {
462                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
463                 RETURN(-ENOMEM);
464         }
465
466         mdc_set_capa_size(req, &RMF_CAPA1, op_data->op_capa1);
467         mdc_set_capa_size(req, &RMF_CAPA2, op_data->op_capa2);
468         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT, oldlen + 1);
469         req_capsule_set_size(&req->rq_pill, &RMF_SYMTGT, RCL_CLIENT, newlen+1);
470
471         rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
472         if (rc) {
473                 ptlrpc_request_free(req);
474                 RETURN(rc);
475         }
476
477         if (exp_connect_cancelset(exp) && req)
478                 ldlm_cli_cancel_list(&cancels, count, req, 0);
479
480         mdc_rename_pack(req, op_data, old, oldlen, new, newlen);
481
482         req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
483                              obd->u.cli.cl_default_mds_easize);
484         req_capsule_set_size(&req->rq_pill, &RMF_LOGCOOKIES, RCL_SERVER,
485                              obd->u.cli.cl_default_mds_cookiesize);
486         ptlrpc_request_set_replen(req);
487
488         rc = mdc_reint(req, obd->u.cli.cl_rpc_lock, LUSTRE_IMP_FULL);
489         *request = req;
490         if (rc == -ERESTARTSYS)
491                 rc = 0;
492
493         RETURN(rc);
494 }