Whamcloud - gitweb
use special macro for print time_t, cleanup in includes.
[fs/lustre-release.git] / lustre / mdc / mdc_reint.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2001-2003 Cluster File Systems, Inc.
5  *
6  *   This file is part of the Lustre file system, http://www.lustre.org
7  *   Lustre is a trademark of Cluster File Systems, Inc.
8  *
9  *   You may have signed or agreed to another license before downloading
10  *   this software.  If so, you are bound by the terms and conditions
11  *   of that agreement, and the following does not apply to you.  See the
12  *   LICENSE file included with this distribution for more information.
13  *
14  *   If you did not agree to a different license, then this copy of Lustre
15  *   is open source software; you can redistribute it and/or modify it
16  *   under the terms of version 2 of the GNU General Public License as
17  *   published by the Free Software Foundation.
18  *
19  *   In either case, Lustre is distributed in the hope that it will be
20  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
21  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  *   license text for more details.
23  */
24
25 #ifndef EXPORT_SYMTAB
26 # define EXPORT_SYMTAB
27 #endif
28 #define DEBUG_SUBSYSTEM S_MDC
29
30 #ifdef __KERNEL__
31 #ifndef AUTOCONF_INCLUDED
32 # include <linux/config.h>
33 #endif
34 # include <linux/module.h>
35 # include <linux/kernel.h>
36 #else
37 # include <liblustre.h>
38 #endif
39
40 #include <obd_class.h>
41 #include "mdc_internal.h"
42 #include <lustre_fid.h>
43
44 /* mdc_setattr does its own semaphore handling */
45 static int mdc_reint(struct ptlrpc_request *request,
46                      struct mdc_rpc_lock *rpc_lock,
47                      int level)
48 {
49         int rc;
50
51         request->rq_send_state = level;
52
53         mdc_get_rpc_lock(rpc_lock, NULL);
54         rc = ptlrpc_queue_wait(request);
55         mdc_put_rpc_lock(rpc_lock, NULL);
56         if (rc)
57                 CDEBUG(D_INFO, "error in handling %d\n", rc);
58         else if (!req_capsule_server_get(&request->rq_pill, &RMF_MDT_BODY)) {
59                 rc = -EPROTO;
60         }
61         return rc;
62 }
63
64 /* Find and cancel locally locks matched by inode @bits & @mode in the resource
65  * found by @fid. Found locks are added into @cancel list. Returns the amount of
66  * locks added to @cancels list. */
67 int mdc_resource_get_unused(struct obd_export *exp, struct lu_fid *fid,
68                             struct list_head *cancels, ldlm_mode_t mode,
69                             __u64 bits)
70 {
71         ldlm_policy_data_t policy = {{0}};
72         struct ldlm_res_id res_id;
73         struct ldlm_resource *res;
74         int count;
75         ENTRY;
76
77         fid_build_reg_res_name(fid, &res_id);
78         res = ldlm_resource_get(exp->exp_obd->obd_namespace,
79                                 NULL, &res_id, 0, 0);
80         if (res == NULL)
81                 RETURN(0);
82
83         /* Initialize ibits lock policy. */
84         policy.l_inodebits.bits = bits;
85         count = ldlm_cancel_resource_local(res, cancels, &policy,
86                                            mode, 0, 0, NULL);
87         ldlm_resource_putref(res);
88         RETURN(count);
89 }
90
91 static int mdc_prep_elc_req(struct obd_export *exp, struct ptlrpc_request *req,
92                             struct list_head *cancels, int count)
93 {
94         return ldlm_prep_elc_req(exp, req, LUSTRE_MDS_VERSION, MDS_REINT,
95                                  0, cancels, count);
96 }
97
98 /* If mdc_setattr is called with an 'iattr', then it is a normal RPC that
99  * should take the normal semaphore and go to the normal portal.
100  *
101  * If it is called with iattr->ia_valid & ATTR_FROM_OPEN, then it is a
102  * magic open-path setattr that should take the setattr semaphore and
103  * go to the setattr portal. */
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         CFS_LIST_HEAD(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, &cancels, count);
140         if (rc) {
141                 ptlrpc_request_free(req);
142                 RETURN(rc);
143         }
144
145         if (op_data->op_attr.ia_valid & ATTR_FROM_OPEN) {
146                 req->rq_request_portal = MDS_SETATTR_PORTAL; //XXX FIXME bug 249
147                 rpc_lock = obd->u.cli.cl_setattr_lock;
148         } else {
149                 rpc_lock = obd->u.cli.cl_rpc_lock;
150         }
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                 OBD_ALLOC_PTR(*mod);
166                 if (*mod == NULL) {
167                         DEBUG_REQ(D_ERROR, req, "Can't allocate "
168                                   "md_open_data");
169                 } else {
170                         CFS_INIT_LIST_HEAD(&(*mod)->mod_replay_list);
171                 }
172         }
173         if (mod && *mod) {
174                 req->rq_cb_data = *mod;
175                 req->rq_commit_cb = mdc_commit_delayed;
176                 list_add_tail(&req->rq_mod_list, &(*mod)->mod_replay_list);
177                 /* This is not the last request in sequence for truncate. */
178                 if (op_data->op_flags & MF_EPOCH_OPEN)
179                         req->rq_replay = 1;
180                 else
181                         req->rq_sequence = 1;
182         }
183
184         rc = mdc_reint(req, rpc_lock, LUSTRE_IMP_FULL);
185         *request = req;
186         if (rc == -ERESTARTSYS)
187                 rc = 0;
188         if (rc && req->rq_commit_cb)
189                 req->rq_commit_cb(req);
190         RETURN(rc);
191 }
192
193 int mdc_create(struct obd_export *exp, struct md_op_data *op_data,
194                const void *data, int datalen, int mode, __u32 uid, __u32 gid,
195                __u32 cap_effective, __u64 rdev, struct ptlrpc_request **request)
196 {
197         struct ptlrpc_request *req;
198         int level, rc;
199         int count = 0;
200         CFS_LIST_HEAD(cancels);
201         ENTRY;
202
203         /* For case if upper layer did not alloc fid, do it now. */
204         if (!fid_is_sane(&op_data->op_fid2)) {
205                 /*
206                  * mdc_fid_alloc() may return errno 1 in case of switch to new
207                  * sequence, handle this.
208                  */
209                 rc = mdc_fid_alloc(exp, &op_data->op_fid2, op_data);
210                 if (rc < 0) {
211                         CERROR("Can't alloc new fid, rc %d\n", rc);
212                         RETURN(rc);
213                 }
214         }
215
216         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) && 
217             (fid_is_sane(&op_data->op_fid1)))
218                 count = mdc_resource_get_unused(exp, &op_data->op_fid1,
219                                                 &cancels, LCK_EX,
220                                                 MDS_INODELOCK_UPDATE);
221
222         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
223                                    &RQF_MDS_REINT_CREATE_RMT_ACL);
224         if (req == NULL) {
225                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
226                 RETURN(-ENOMEM);
227         }
228         mdc_set_capa_size(req, &RMF_CAPA1, op_data->op_capa1);
229         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
230                              op_data->op_namelen + 1);
231         req_capsule_set_size(&req->rq_pill, &RMF_EADATA, RCL_CLIENT,
232                              data && datalen ? datalen : 0);
233
234         rc = mdc_prep_elc_req(exp, req, &cancels, count);
235         if (rc) {
236                 ptlrpc_request_free(req);
237                 RETURN(rc);
238         }
239
240         /*
241          * mdc_create_pack() fills msg->bufs[1] with name and msg->bufs[2] with
242          * tgt, for symlinks or lov MD data.
243          */
244         mdc_create_pack(req, op_data, data, datalen, mode, uid,
245                         gid, cap_effective, rdev);
246
247         ptlrpc_request_set_replen(req);
248
249         level = LUSTRE_IMP_FULL;
250  resend:
251         rc = mdc_reint(req, exp->exp_obd->u.cli.cl_rpc_lock, level);
252         
253         /* Resend if we were told to. */
254         if (rc == -ERESTARTSYS) {
255                 level = LUSTRE_IMP_RECOVER;
256                 goto resend;
257         } else if (rc == 0) {
258                 struct mdt_body *body;
259                 struct lustre_capa *capa;
260
261                 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
262                 LASSERT(body);
263                 if (body->valid & OBD_MD_FLMDSCAPA) {
264                         capa = req_capsule_server_get(&req->rq_pill,
265                                                       &RMF_CAPA1);
266                         if (capa == NULL)
267                                 rc = -EPROTO;
268                 }
269         }
270
271         *request = req;
272         RETURN(rc);
273 }
274
275 int mdc_unlink(struct obd_export *exp, struct md_op_data *op_data,
276                struct ptlrpc_request **request)
277 {
278         CFS_LIST_HEAD(cancels);
279         struct obd_device *obd = class_exp2obd(exp);
280         struct ptlrpc_request *req = *request;
281         int count = 0, rc;
282         ENTRY;
283
284         LASSERT(req == NULL);
285
286         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) && 
287             (fid_is_sane(&op_data->op_fid1)))
288                 count = mdc_resource_get_unused(exp, &op_data->op_fid1,
289                                                 &cancels, LCK_EX,
290                                                 MDS_INODELOCK_UPDATE);
291         if ((op_data->op_flags & MF_MDC_CANCEL_FID3) && 
292             (fid_is_sane(&op_data->op_fid3)))
293                 count += mdc_resource_get_unused(exp, &op_data->op_fid3,
294                                                  &cancels, LCK_EX,
295                                                  MDS_INODELOCK_FULL);
296         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
297                                    &RQF_MDS_REINT_UNLINK);
298         if (req == NULL) {
299                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
300                 RETURN(-ENOMEM);
301         }
302         mdc_set_capa_size(req, &RMF_CAPA1, op_data->op_capa1);
303         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
304                              op_data->op_namelen + 1);
305
306         rc = mdc_prep_elc_req(exp, req, &cancels, count);
307         if (rc) {
308                 ptlrpc_request_free(req);
309                 RETURN(rc);
310         }
311
312         mdc_unlink_pack(req, op_data);
313
314         req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
315                              obd->u.cli.cl_max_mds_easize);
316         req_capsule_set_size(&req->rq_pill, &RMF_LOGCOOKIES, RCL_SERVER,
317                              obd->u.cli.cl_max_mds_cookiesize);
318         ptlrpc_request_set_replen(req);
319
320         *request = req;
321
322         rc = mdc_reint(req, obd->u.cli.cl_rpc_lock, LUSTRE_IMP_FULL);
323         if (rc == -ERESTARTSYS)
324                 rc = 0;
325         RETURN(rc);
326 }
327
328 int mdc_link(struct obd_export *exp, struct md_op_data *op_data,
329              struct ptlrpc_request **request)
330 {
331         CFS_LIST_HEAD(cancels);
332         struct obd_device *obd = exp->exp_obd;
333         struct ptlrpc_request *req;
334         int count = 0, rc;
335         ENTRY;
336
337         if ((op_data->op_flags & MF_MDC_CANCEL_FID2) &&
338             (fid_is_sane(&op_data->op_fid2)))
339                 count = mdc_resource_get_unused(exp, &op_data->op_fid2,
340                                                 &cancels, LCK_EX,
341                                                 MDS_INODELOCK_UPDATE);
342         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) &&
343             (fid_is_sane(&op_data->op_fid1)))
344                 count += mdc_resource_get_unused(exp, &op_data->op_fid1,
345                                                  &cancels, LCK_EX,
346                                                  MDS_INODELOCK_UPDATE);
347
348         req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_REINT_LINK);
349         if (req == NULL) {
350                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
351                 RETURN(-ENOMEM);
352         }
353         mdc_set_capa_size(req, &RMF_CAPA1, op_data->op_capa1);
354         mdc_set_capa_size(req, &RMF_CAPA2, op_data->op_capa2);
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, &cancels, count);
359         if (rc) {
360                 ptlrpc_request_free(req);
361                 RETURN(rc);
362         }
363
364         mdc_link_pack(req, op_data);
365         ptlrpc_request_set_replen(req);
366
367         rc = mdc_reint(req, obd->u.cli.cl_rpc_lock, LUSTRE_IMP_FULL);
368         *request = req;
369         if (rc == -ERESTARTSYS)
370                 rc = 0;
371
372         RETURN(rc);
373 }
374
375 int mdc_rename(struct obd_export *exp, struct md_op_data *op_data,
376                const char *old, int oldlen, const char *new, int newlen,
377                struct ptlrpc_request **request)
378 {
379         CFS_LIST_HEAD(cancels);
380         struct obd_device *obd = exp->exp_obd;
381         struct ptlrpc_request *req;
382         int count = 0, rc;
383         ENTRY;
384
385         if ((op_data->op_flags & MF_MDC_CANCEL_FID1) &&
386             (fid_is_sane(&op_data->op_fid1)))
387                 count = mdc_resource_get_unused(exp, &op_data->op_fid1,
388                                                 &cancels, LCK_EX,
389                                                 MDS_INODELOCK_UPDATE);
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_FID3) && 
396             (fid_is_sane(&op_data->op_fid3)))
397                 count += mdc_resource_get_unused(exp, &op_data->op_fid3,
398                                                  &cancels, LCK_EX,
399                                                  MDS_INODELOCK_LOOKUP);
400         if ((op_data->op_flags & MF_MDC_CANCEL_FID4) &&
401              (fid_is_sane(&op_data->op_fid4)))
402                 count += mdc_resource_get_unused(exp, &op_data->op_fid4,
403                                                  &cancels, LCK_EX,
404                                                  MDS_INODELOCK_FULL);
405
406         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
407                                    &RQF_MDS_REINT_RENAME);
408         if (req == NULL) {
409                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
410                 RETURN(-ENOMEM);
411         }
412
413         mdc_set_capa_size(req, &RMF_CAPA1, op_data->op_capa1);
414         mdc_set_capa_size(req, &RMF_CAPA2, op_data->op_capa2);
415         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT, oldlen + 1);
416         req_capsule_set_size(&req->rq_pill, &RMF_SYMTGT, RCL_CLIENT, newlen+1);
417
418         rc = mdc_prep_elc_req(exp, req, &cancels, count);
419         if (rc) {
420                 ptlrpc_request_free(req);
421                 RETURN(rc);
422         }
423
424         if (exp_connect_cancelset(exp) && req)
425                 ldlm_cli_cancel_list(&cancels, count, req, 0);
426
427         mdc_rename_pack(req, op_data, old, oldlen, new, newlen);
428
429         req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
430                              obd->u.cli.cl_max_mds_easize);
431         req_capsule_set_size(&req->rq_pill, &RMF_LOGCOOKIES, RCL_SERVER,
432                              obd->u.cli.cl_max_mds_cookiesize);
433         ptlrpc_request_set_replen(req);
434
435         rc = mdc_reint(req, obd->u.cli.cl_rpc_lock, LUSTRE_IMP_FULL);
436         *request = req;
437         if (rc == -ERESTARTSYS)
438                 rc = 0;
439
440         RETURN(rc);
441 }