Whamcloud - gitweb
08f226ef60ad6ed6b78aa3454ee9f08289daad7f
[fs/lustre-release.git] / lustre / mdc / mdc_locks.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) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2015, 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
41 #include <obd.h>
42 #include <obd_class.h>
43 #include <lustre_dlm.h>
44 #include <lustre_fid.h>
45 #include <lustre_intent.h>
46 #include <lustre_mdc.h>
47 #include <lustre_net.h>
48 #include <lustre_req_layout.h>
49 #include <lustre_swab.h>
50
51 #include "mdc_internal.h"
52
53 struct mdc_getattr_args {
54         struct obd_export               *ga_exp;
55         struct md_enqueue_info          *ga_minfo;
56 };
57
58 int it_open_error(int phase, struct lookup_intent *it)
59 {
60         if (it_disposition(it, DISP_OPEN_LEASE)) {
61                 if (phase >= DISP_OPEN_LEASE)
62                         return it->it_status;
63                 else
64                         return 0;
65         }
66         if (it_disposition(it, DISP_OPEN_OPEN)) {
67                 if (phase >= DISP_OPEN_OPEN)
68                         return it->it_status;
69                 else
70                         return 0;
71         }
72
73         if (it_disposition(it, DISP_OPEN_CREATE)) {
74                 if (phase >= DISP_OPEN_CREATE)
75                         return it->it_status;
76                 else
77                         return 0;
78         }
79
80         if (it_disposition(it, DISP_LOOKUP_EXECD)) {
81                 if (phase >= DISP_LOOKUP_EXECD)
82                         return it->it_status;
83                 else
84                         return 0;
85         }
86
87         if (it_disposition(it, DISP_IT_EXECD)) {
88                 if (phase >= DISP_IT_EXECD)
89                         return it->it_status;
90                 else
91                         return 0;
92         }
93
94         CERROR("it disp: %X, status: %d\n", it->it_disposition, it->it_status);
95         LBUG();
96
97         return 0;
98 }
99 EXPORT_SYMBOL(it_open_error);
100
101 /* this must be called on a lockh that is known to have a referenced lock */
102 int mdc_set_lock_data(struct obd_export *exp, const struct lustre_handle *lockh,
103                       void *data, __u64 *bits)
104 {
105         struct ldlm_lock *lock;
106         struct inode *new_inode = data;
107         ENTRY;
108
109         if(bits)
110                 *bits = 0;
111
112         if (!lustre_handle_is_used(lockh))
113                 RETURN(0);
114
115         lock = ldlm_handle2lock(lockh);
116
117         LASSERT(lock != NULL);
118         lock_res_and_lock(lock);
119         if (lock->l_resource->lr_lvb_inode &&
120             lock->l_resource->lr_lvb_inode != data) {
121                 struct inode *old_inode = lock->l_resource->lr_lvb_inode;
122                 LASSERTF(old_inode->i_state & I_FREEING,
123                          "Found existing inode %p/%lu/%u state %lu in lock: "
124                          "setting data to %p/%lu/%u\n", old_inode,
125                          old_inode->i_ino, old_inode->i_generation,
126                          old_inode->i_state,
127                          new_inode, new_inode->i_ino, new_inode->i_generation);
128         }
129         lock->l_resource->lr_lvb_inode = new_inode;
130         if (bits)
131                 *bits = lock->l_policy_data.l_inodebits.bits;
132
133         unlock_res_and_lock(lock);
134         LDLM_LOCK_PUT(lock);
135
136         RETURN(0);
137 }
138
139 enum ldlm_mode mdc_lock_match(struct obd_export *exp, __u64 flags,
140                               const struct lu_fid *fid, enum ldlm_type type,
141                               union ldlm_policy_data *policy,
142                               enum ldlm_mode mode, struct lustre_handle *lockh)
143 {
144         struct ldlm_res_id res_id;
145         enum ldlm_mode rc;
146         ENTRY;
147
148         fid_build_reg_res_name(fid, &res_id);
149         /* LU-4405: Clear bits not supported by server */
150         policy->l_inodebits.bits &= exp_connect_ibits(exp);
151         rc = ldlm_lock_match(class_exp2obd(exp)->obd_namespace, flags,
152                              &res_id, type, policy, mode, lockh, 0);
153         RETURN(rc);
154 }
155
156 int mdc_cancel_unused(struct obd_export *exp, const struct lu_fid *fid,
157                       union ldlm_policy_data *policy, enum ldlm_mode mode,
158                       enum ldlm_cancel_flags flags, void *opaque)
159 {
160         struct obd_device *obd = class_exp2obd(exp);
161         struct ldlm_res_id res_id;
162         int rc;
163
164         ENTRY;
165
166         fid_build_reg_res_name(fid, &res_id);
167         rc = ldlm_cli_cancel_unused_resource(obd->obd_namespace, &res_id,
168                                              policy, mode, flags, opaque);
169         RETURN(rc);
170 }
171
172 int mdc_null_inode(struct obd_export *exp,
173                    const struct lu_fid *fid)
174 {
175         struct ldlm_res_id res_id;
176         struct ldlm_resource *res;
177         struct ldlm_namespace *ns = class_exp2obd(exp)->obd_namespace;
178         ENTRY;
179
180         LASSERTF(ns != NULL, "no namespace passed\n");
181
182         fid_build_reg_res_name(fid, &res_id);
183
184         res = ldlm_resource_get(ns, NULL, &res_id, 0, 0);
185         if (IS_ERR(res))
186                 RETURN(0);
187
188         lock_res(res);
189         res->lr_lvb_inode = NULL;
190         unlock_res(res);
191
192         ldlm_resource_putref(res);
193         RETURN(0);
194 }
195
196 static inline void mdc_clear_replay_flag(struct ptlrpc_request *req, int rc)
197 {
198         /* Don't hold error requests for replay. */
199         if (req->rq_replay) {
200                 spin_lock(&req->rq_lock);
201                 req->rq_replay = 0;
202                 spin_unlock(&req->rq_lock);
203         }
204         if (rc && req->rq_transno != 0) {
205                 DEBUG_REQ(D_ERROR, req, "transno returned on error rc %d", rc);
206                 LBUG();
207         }
208 }
209
210 /* Save a large LOV EA into the request buffer so that it is available
211  * for replay.  We don't do this in the initial request because the
212  * original request doesn't need this buffer (at most it sends just the
213  * lov_mds_md) and it is a waste of RAM/bandwidth to send the empty
214  * buffer and may also be difficult to allocate and save a very large
215  * request buffer for each open. (bug 5707)
216  *
217  * OOM here may cause recovery failure if lmm is needed (only for the
218  * original open if the MDS crashed just when this client also OOM'd)
219  * but this is incredibly unlikely, and questionable whether the client
220  * could do MDS recovery under OOM anyways... */
221 static void mdc_realloc_openmsg(struct ptlrpc_request *req,
222                                 struct mdt_body *body)
223 {
224         int     rc;
225
226         /* FIXME: remove this explicit offset. */
227         rc = sptlrpc_cli_enlarge_reqbuf(req, DLM_INTENT_REC_OFF + 4,
228                                         body->mbo_eadatasize);
229         if (rc) {
230                 CERROR("Can't enlarge segment %d size to %d\n",
231                        DLM_INTENT_REC_OFF + 4, body->mbo_eadatasize);
232                 body->mbo_valid &= ~OBD_MD_FLEASIZE;
233                 body->mbo_eadatasize = 0;
234         }
235 }
236
237 static struct ptlrpc_request *
238 mdc_intent_open_pack(struct obd_export *exp, struct lookup_intent *it,
239                      struct md_op_data *op_data)
240 {
241         struct ptlrpc_request   *req;
242         struct obd_device       *obddev = class_exp2obd(exp);
243         struct ldlm_intent      *lit;
244         const void              *lmm = op_data->op_data;
245         __u32                    lmmsize = op_data->op_data_size;
246         struct list_head         cancels = LIST_HEAD_INIT(cancels);
247         int                      count = 0;
248         enum ldlm_mode           mode;
249         int                      rc;
250         ENTRY;
251
252         it->it_create_mode = (it->it_create_mode & ~S_IFMT) | S_IFREG;
253
254         /* XXX: openlock is not cancelled for cross-refs. */
255         /* If inode is known, cancel conflicting OPEN locks. */
256         if (fid_is_sane(&op_data->op_fid2)) {
257                 if (it->it_flags & MDS_OPEN_LEASE) { /* try to get lease */
258                         if (it->it_flags & FMODE_WRITE)
259                                 mode = LCK_EX;
260                         else
261                                 mode = LCK_PR;
262                 } else {
263                         if (it->it_flags & (FMODE_WRITE|MDS_OPEN_TRUNC))
264                                 mode = LCK_CW;
265 #ifdef FMODE_EXEC
266                         else if (it->it_flags & FMODE_EXEC)
267                                 mode = LCK_PR;
268 #endif
269                         else
270                                 mode = LCK_CR;
271                 }
272                 count = mdc_resource_get_unused(exp, &op_data->op_fid2,
273                                                 &cancels, mode,
274                                                 MDS_INODELOCK_OPEN);
275         }
276
277         /* If CREATE, cancel parent's UPDATE lock. */
278         if (it->it_op & IT_CREAT)
279                 mode = LCK_EX;
280         else
281                 mode = LCK_CR;
282         count += mdc_resource_get_unused(exp, &op_data->op_fid1,
283                                          &cancels, mode,
284                                          MDS_INODELOCK_UPDATE);
285
286         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
287                                    &RQF_LDLM_INTENT_OPEN);
288         if (req == NULL) {
289                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
290                 RETURN(ERR_PTR(-ENOMEM));
291         }
292
293         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
294                              op_data->op_namelen + 1);
295         req_capsule_set_size(&req->rq_pill, &RMF_EADATA, RCL_CLIENT,
296                              max(lmmsize, obddev->u.cli.cl_default_mds_easize));
297
298         req_capsule_set_size(&req->rq_pill, &RMF_FILE_SECCTX_NAME,
299                              RCL_CLIENT, op_data->op_file_secctx_name != NULL ?
300                              strlen(op_data->op_file_secctx_name) + 1 : 0);
301
302         req_capsule_set_size(&req->rq_pill, &RMF_FILE_SECCTX, RCL_CLIENT,
303                              op_data->op_file_secctx_size);
304
305         rc = ldlm_prep_enqueue_req(exp, req, &cancels, count);
306         if (rc < 0) {
307                 ptlrpc_request_free(req);
308                 RETURN(ERR_PTR(rc));
309         }
310
311         spin_lock(&req->rq_lock);
312         req->rq_replay = req->rq_import->imp_replayable;
313         spin_unlock(&req->rq_lock);
314
315         /* pack the intent */
316         lit = req_capsule_client_get(&req->rq_pill, &RMF_LDLM_INTENT);
317         lit->opc = (__u64)it->it_op;
318
319         /* pack the intended request */
320         mdc_open_pack(req, op_data, it->it_create_mode, 0, it->it_flags, lmm,
321                       lmmsize);
322
323         req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
324                              obddev->u.cli.cl_max_mds_easize);
325         ptlrpc_request_set_replen(req);
326         return req;
327 }
328
329 static struct ptlrpc_request *
330 mdc_intent_getxattr_pack(struct obd_export *exp,
331                          struct lookup_intent *it,
332                          struct md_op_data *op_data)
333 {
334         struct ptlrpc_request   *req;
335         struct ldlm_intent      *lit;
336         int                     rc, count = 0;
337         __u32                   maxdata;
338         struct list_head        cancels = LIST_HEAD_INIT(cancels);
339
340         ENTRY;
341
342         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
343                                         &RQF_LDLM_INTENT_GETXATTR);
344         if (req == NULL)
345                 RETURN(ERR_PTR(-ENOMEM));
346
347         rc = ldlm_prep_enqueue_req(exp, req, &cancels, count);
348         if (rc) {
349                 ptlrpc_request_free(req);
350                 RETURN(ERR_PTR(rc));
351         }
352
353         /* pack the intent */
354         lit = req_capsule_client_get(&req->rq_pill, &RMF_LDLM_INTENT);
355         lit->opc = IT_GETXATTR;
356
357         maxdata = class_exp2cliimp(exp)->imp_connect_data.ocd_max_easize;
358
359         /* pack the intended request */
360         mdc_pack_body(req, &op_data->op_fid1, op_data->op_valid, maxdata, -1,
361                       0);
362
363         req_capsule_set_size(&req->rq_pill, &RMF_EADATA,
364                                 RCL_SERVER, maxdata);
365
366         req_capsule_set_size(&req->rq_pill, &RMF_EAVALS,
367                                 RCL_SERVER, maxdata);
368
369         req_capsule_set_size(&req->rq_pill, &RMF_EAVALS_LENS,
370                                 RCL_SERVER, maxdata);
371
372         ptlrpc_request_set_replen(req);
373
374         RETURN(req);
375 }
376
377 static struct ptlrpc_request *mdc_intent_unlink_pack(struct obd_export *exp,
378                                                      struct lookup_intent *it,
379                                                      struct md_op_data *op_data)
380 {
381         struct ptlrpc_request *req;
382         struct obd_device     *obddev = class_exp2obd(exp);
383         struct ldlm_intent    *lit;
384         int                    rc;
385         ENTRY;
386
387         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
388                                    &RQF_LDLM_INTENT_UNLINK);
389         if (req == NULL)
390                 RETURN(ERR_PTR(-ENOMEM));
391
392         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
393                              op_data->op_namelen + 1);
394
395         rc = ldlm_prep_enqueue_req(exp, req, NULL, 0);
396         if (rc) {
397                 ptlrpc_request_free(req);
398                 RETURN(ERR_PTR(rc));
399         }
400
401         /* pack the intent */
402         lit = req_capsule_client_get(&req->rq_pill, &RMF_LDLM_INTENT);
403         lit->opc = (__u64)it->it_op;
404
405         /* pack the intended request */
406         mdc_unlink_pack(req, op_data);
407
408         req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
409                              obddev->u.cli.cl_default_mds_easize);
410         ptlrpc_request_set_replen(req);
411         RETURN(req);
412 }
413
414 static struct ptlrpc_request *mdc_intent_getattr_pack(struct obd_export *exp,
415                                                       struct lookup_intent *it,
416                                                       struct md_op_data *op_data)
417 {
418         struct ptlrpc_request   *req;
419         struct obd_device       *obddev = class_exp2obd(exp);
420         u64                      valid = OBD_MD_FLGETATTR | OBD_MD_FLEASIZE |
421                                          OBD_MD_FLMODEASIZE | OBD_MD_FLDIREA |
422                                          OBD_MD_MEA | OBD_MD_FLACL;
423         struct ldlm_intent      *lit;
424         int                      rc;
425         __u32                    easize;
426         ENTRY;
427
428         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
429                                    &RQF_LDLM_INTENT_GETATTR);
430         if (req == NULL)
431                 RETURN(ERR_PTR(-ENOMEM));
432
433         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
434                              op_data->op_namelen + 1);
435
436         rc = ldlm_prep_enqueue_req(exp, req, NULL, 0);
437         if (rc) {
438                 ptlrpc_request_free(req);
439                 RETURN(ERR_PTR(rc));
440         }
441
442         /* pack the intent */
443         lit = req_capsule_client_get(&req->rq_pill, &RMF_LDLM_INTENT);
444         lit->opc = (__u64)it->it_op;
445
446         if (obddev->u.cli.cl_default_mds_easize > 0)
447                 easize = obddev->u.cli.cl_default_mds_easize;
448         else
449                 easize = obddev->u.cli.cl_max_mds_easize;
450
451         /* pack the intended request */
452         mdc_getattr_pack(req, valid, it->it_flags, op_data, easize);
453
454         req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER, easize);
455         ptlrpc_request_set_replen(req);
456         RETURN(req);
457 }
458
459 static struct ptlrpc_request *mdc_intent_layout_pack(struct obd_export *exp,
460                                                      struct lookup_intent *it,
461                                                      struct md_op_data *unused)
462 {
463         struct obd_device     *obd = class_exp2obd(exp);
464         struct ptlrpc_request *req;
465         struct ldlm_intent    *lit;
466         struct layout_intent  *layout;
467         int rc;
468         ENTRY;
469
470         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
471                                 &RQF_LDLM_INTENT_LAYOUT);
472         if (req == NULL)
473                 RETURN(ERR_PTR(-ENOMEM));
474
475         req_capsule_set_size(&req->rq_pill, &RMF_EADATA, RCL_CLIENT, 0);
476         rc = ldlm_prep_enqueue_req(exp, req, NULL, 0);
477         if (rc) {
478                 ptlrpc_request_free(req);
479                 RETURN(ERR_PTR(rc));
480         }
481
482         /* pack the intent */
483         lit = req_capsule_client_get(&req->rq_pill, &RMF_LDLM_INTENT);
484         lit->opc = (__u64)it->it_op;
485
486         /* pack the layout intent request */
487         layout = req_capsule_client_get(&req->rq_pill, &RMF_LAYOUT_INTENT);
488         /* LAYOUT_INTENT_ACCESS is generic, specific operation will be
489          * set for replication */
490         layout->li_opc = LAYOUT_INTENT_ACCESS;
491
492         req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER,
493                              obd->u.cli.cl_default_mds_easize);
494         ptlrpc_request_set_replen(req);
495         RETURN(req);
496 }
497
498 static struct ptlrpc_request *
499 mdc_enqueue_pack(struct obd_export *exp, int lvb_len)
500 {
501         struct ptlrpc_request *req;
502         int rc;
503         ENTRY;
504
505         req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_LDLM_ENQUEUE);
506         if (req == NULL)
507                 RETURN(ERR_PTR(-ENOMEM));
508
509         rc = ldlm_prep_enqueue_req(exp, req, NULL, 0);
510         if (rc) {
511                 ptlrpc_request_free(req);
512                 RETURN(ERR_PTR(rc));
513         }
514
515         req_capsule_set_size(&req->rq_pill, &RMF_DLM_LVB, RCL_SERVER, lvb_len);
516         ptlrpc_request_set_replen(req);
517         RETURN(req);
518 }
519
520 static int mdc_finish_enqueue(struct obd_export *exp,
521                               struct ptlrpc_request *req,
522                               struct ldlm_enqueue_info *einfo,
523                               struct lookup_intent *it,
524                               struct lustre_handle *lockh,
525                               int rc)
526 {
527         struct req_capsule  *pill = &req->rq_pill;
528         struct ldlm_request *lockreq;
529         struct ldlm_reply   *lockrep;
530         struct ldlm_lock    *lock;
531         void                *lvb_data = NULL;
532         __u32                lvb_len = 0;
533         ENTRY;
534
535         LASSERT(rc >= 0);
536         /* Similarly, if we're going to replay this request, we don't want to
537          * actually get a lock, just perform the intent. */
538         if (req->rq_transno || req->rq_replay) {
539                 lockreq = req_capsule_client_get(pill, &RMF_DLM_REQ);
540                 lockreq->lock_flags |= ldlm_flags_to_wire(LDLM_FL_INTENT_ONLY);
541         }
542
543         if (rc == ELDLM_LOCK_ABORTED) {
544                 einfo->ei_mode = 0;
545                 memset(lockh, 0, sizeof(*lockh));
546                 rc = 0;
547         } else { /* rc = 0 */
548                 lock = ldlm_handle2lock(lockh);
549                 LASSERT(lock != NULL);
550
551                 /* If the server gave us back a different lock mode, we should
552                  * fix up our variables. */
553                 if (lock->l_req_mode != einfo->ei_mode) {
554                         ldlm_lock_addref(lockh, lock->l_req_mode);
555                         ldlm_lock_decref(lockh, einfo->ei_mode);
556                         einfo->ei_mode = lock->l_req_mode;
557                 }
558                 LDLM_LOCK_PUT(lock);
559         }
560
561         lockrep = req_capsule_server_get(pill, &RMF_DLM_REP);
562         LASSERT(lockrep != NULL); /* checked by ldlm_cli_enqueue() */
563
564         it->it_disposition = (int)lockrep->lock_policy_res1;
565         it->it_status = (int)lockrep->lock_policy_res2;
566         it->it_lock_mode = einfo->ei_mode;
567         it->it_lock_handle = lockh->cookie;
568         it->it_request = req;
569
570         /* Technically speaking rq_transno must already be zero if
571          * it_status is in error, so the check is a bit redundant */
572         if ((!req->rq_transno || it->it_status < 0) && req->rq_replay)
573                 mdc_clear_replay_flag(req, it->it_status);
574
575         /* If we're doing an IT_OPEN which did not result in an actual
576          * successful open, then we need to remove the bit which saves
577          * this request for unconditional replay.
578          *
579          * It's important that we do this first!  Otherwise we might exit the
580          * function without doing so, and try to replay a failed create
581          * (bug 3440) */
582         if (it->it_op & IT_OPEN && req->rq_replay &&
583             (!it_disposition(it, DISP_OPEN_OPEN) || it->it_status != 0))
584                 mdc_clear_replay_flag(req, it->it_status);
585
586         DEBUG_REQ(D_RPCTRACE, req, "op: %d disposition: %x, status: %d",
587                   it->it_op, it->it_disposition, it->it_status);
588
589         /* We know what to expect, so we do any byte flipping required here */
590         if (it->it_op & (IT_OPEN | IT_UNLINK | IT_LOOKUP | IT_GETATTR)) {
591                 struct mdt_body *body;
592
593                 body = req_capsule_server_get(pill, &RMF_MDT_BODY);
594                 if (body == NULL) {
595                         CERROR ("Can't swab mdt_body\n");
596                         RETURN (-EPROTO);
597                 }
598
599                 if (it_disposition(it, DISP_OPEN_OPEN) &&
600                     !it_open_error(DISP_OPEN_OPEN, it)) {
601                         /*
602                          * If this is a successful OPEN request, we need to set
603                          * replay handler and data early, so that if replay
604                          * happens immediately after swabbing below, new reply
605                          * is swabbed by that handler correctly.
606                          */
607                         mdc_set_open_replay_data(NULL, NULL, it);
608                 }
609
610                 if (body->mbo_valid & (OBD_MD_FLDIREA | OBD_MD_FLEASIZE)) {
611                         void *eadata;
612
613                         mdc_update_max_ea_from_body(exp, body);
614
615                         /*
616                          * The eadata is opaque; just check that it is there.
617                          * Eventually, obd_unpackmd() will check the contents.
618                          */
619                         eadata = req_capsule_server_sized_get(pill, &RMF_MDT_MD,
620                                                         body->mbo_eadatasize);
621                         if (eadata == NULL)
622                                 RETURN(-EPROTO);
623
624                         /* save lvb data and length in case this is for layout
625                          * lock */
626                         lvb_data = eadata;
627                         lvb_len = body->mbo_eadatasize;
628
629                         /*
630                          * We save the reply LOV EA in case we have to replay a
631                          * create for recovery.  If we didn't allocate a large
632                          * enough request buffer above we need to reallocate it
633                          * here to hold the actual LOV EA.
634                          *
635                          * To not save LOV EA if request is not going to replay
636                          * (for example error one).
637                          */
638                         if ((it->it_op & IT_OPEN) && req->rq_replay) {
639                                 void *lmm;
640                                 if (req_capsule_get_size(pill, &RMF_EADATA,
641                                                          RCL_CLIENT) <
642                                     body->mbo_eadatasize)
643                                         mdc_realloc_openmsg(req, body);
644                                 else
645                                         req_capsule_shrink(pill, &RMF_EADATA,
646                                                            body->mbo_eadatasize,
647                                                            RCL_CLIENT);
648
649                                 req_capsule_set_size(pill, &RMF_EADATA,
650                                                      RCL_CLIENT,
651                                                      body->mbo_eadatasize);
652
653                                 lmm = req_capsule_client_get(pill, &RMF_EADATA);
654                                 if (lmm)
655                                         memcpy(lmm, eadata,
656                                                body->mbo_eadatasize);
657                         }
658                 }
659         } else if (it->it_op & IT_LAYOUT) {
660                 /* maybe the lock was granted right away and layout
661                  * is packed into RMF_DLM_LVB of req */
662                 lvb_len = req_capsule_get_size(pill, &RMF_DLM_LVB, RCL_SERVER);
663                 if (lvb_len > 0) {
664                         lvb_data = req_capsule_server_sized_get(pill,
665                                                         &RMF_DLM_LVB, lvb_len);
666                         if (lvb_data == NULL)
667                                 RETURN(-EPROTO);
668                 }
669         }
670
671         /* fill in stripe data for layout lock.
672          * LU-6581: trust layout data only if layout lock is granted. The MDT
673          * has stopped sending layout unless the layout lock is granted. The
674          * client still does this checking in case it's talking with an old
675          * server. - Jinshan */
676         lock = ldlm_handle2lock(lockh);
677         if (lock != NULL && ldlm_has_layout(lock) && lvb_data != NULL &&
678             !(lockrep->lock_flags & LDLM_FL_BLOCKED_MASK)) {
679                 void *lmm;
680
681                 LDLM_DEBUG(lock, "layout lock returned by: %s, lvb_len: %d",
682                         ldlm_it2str(it->it_op), lvb_len);
683
684                 OBD_ALLOC_LARGE(lmm, lvb_len);
685                 if (lmm == NULL) {
686                         LDLM_LOCK_PUT(lock);
687                         RETURN(-ENOMEM);
688                 }
689                 memcpy(lmm, lvb_data, lvb_len);
690
691                 /* install lvb_data */
692                 lock_res_and_lock(lock);
693                 if (lock->l_lvb_data == NULL) {
694                         lock->l_lvb_type = LVB_T_LAYOUT;
695                         lock->l_lvb_data = lmm;
696                         lock->l_lvb_len = lvb_len;
697                         lmm = NULL;
698                 }
699                 unlock_res_and_lock(lock);
700                 if (lmm != NULL)
701                         OBD_FREE_LARGE(lmm, lvb_len);
702         }
703         if (lock != NULL)
704                 LDLM_LOCK_PUT(lock);
705
706         RETURN(rc);
707 }
708
709 /* We always reserve enough space in the reply packet for a stripe MD, because
710  * we don't know in advance the file type. */
711 int mdc_enqueue(struct obd_export *exp,
712                 struct ldlm_enqueue_info *einfo,
713                 const union ldlm_policy_data *policy,
714                 struct lookup_intent *it, struct md_op_data *op_data,
715                 struct lustre_handle *lockh, __u64 extra_lock_flags)
716 {
717         struct obd_device *obddev = class_exp2obd(exp);
718         struct ptlrpc_request *req = NULL;
719         __u64 flags, saved_flags = extra_lock_flags;
720         struct ldlm_res_id res_id;
721         static const union ldlm_policy_data lookup_policy = {
722                                   .l_inodebits = { MDS_INODELOCK_LOOKUP } };
723         static const union ldlm_policy_data update_policy = {
724                                   .l_inodebits = { MDS_INODELOCK_UPDATE } };
725         static const union ldlm_policy_data layout_policy = {
726                                   .l_inodebits = { MDS_INODELOCK_LAYOUT } };
727         static const union ldlm_policy_data getxattr_policy = {
728                                   .l_inodebits = { MDS_INODELOCK_XATTR } };
729         int generation, resends = 0;
730         struct ldlm_reply *lockrep;
731         enum lvb_type lvb_type = 0;
732         int rc;
733         ENTRY;
734
735         LASSERTF(!it || einfo->ei_type == LDLM_IBITS, "lock type %d\n",
736                  einfo->ei_type);
737         fid_build_reg_res_name(&op_data->op_fid1, &res_id);
738
739         if (it != NULL) {
740                 LASSERT(policy == NULL);
741
742                 saved_flags |= LDLM_FL_HAS_INTENT;
743                 if (it->it_op & (IT_OPEN | IT_UNLINK | IT_GETATTR | IT_READDIR))
744                         policy = &update_policy;
745                 else if (it->it_op & IT_LAYOUT)
746                         policy = &layout_policy;
747                 else if (it->it_op & (IT_GETXATTR | IT_SETXATTR))
748                         policy = &getxattr_policy;
749                 else
750                         policy = &lookup_policy;
751         }
752
753         generation = obddev->u.cli.cl_import->imp_generation;
754 resend:
755         flags = saved_flags;
756         if (it == NULL) {
757                 /* The only way right now is FLOCK. */
758                 LASSERTF(einfo->ei_type == LDLM_FLOCK, "lock type %d\n",
759                          einfo->ei_type);
760                 res_id.name[3] = LDLM_FLOCK;
761         } else if (it->it_op & IT_OPEN) {
762                 req = mdc_intent_open_pack(exp, it, op_data);
763         } else if (it->it_op & IT_UNLINK) {
764                 req = mdc_intent_unlink_pack(exp, it, op_data);
765         } else if (it->it_op & (IT_GETATTR | IT_LOOKUP)) {
766                 req = mdc_intent_getattr_pack(exp, it, op_data);
767         } else if (it->it_op & IT_READDIR) {
768                 req = mdc_enqueue_pack(exp, 0);
769         } else if (it->it_op & IT_LAYOUT) {
770                 if (!imp_connect_lvb_type(class_exp2cliimp(exp)))
771                         RETURN(-EOPNOTSUPP);
772                 req = mdc_intent_layout_pack(exp, it, op_data);
773                 lvb_type = LVB_T_LAYOUT;
774         } else if (it->it_op & IT_GETXATTR) {
775                 req = mdc_intent_getxattr_pack(exp, it, op_data);
776         } else {
777                 LBUG();
778                 RETURN(-EINVAL);
779         }
780
781         if (IS_ERR(req))
782                 RETURN(PTR_ERR(req));
783
784         if (resends) {
785                 req->rq_generation_set = 1;
786                 req->rq_import_generation = generation;
787                 req->rq_sent = cfs_time_current_sec() + resends;
788         }
789
790         /* It is important to obtain modify RPC slot first (if applicable), so
791          * that threads that are waiting for a modify RPC slot are not polluting
792          * our rpcs in flight counter.
793          * We do not do flock request limiting, though */
794         if (it) {
795                 mdc_get_mod_rpc_slot(req, it);
796                 rc = obd_get_request_slot(&obddev->u.cli);
797                 if (rc != 0) {
798                         mdc_put_mod_rpc_slot(req, it);
799                         mdc_clear_replay_flag(req, 0);
800                         ptlrpc_req_finished(req);
801                         RETURN(rc);
802                 }
803         }
804
805         rc = ldlm_cli_enqueue(exp, &req, einfo, &res_id, policy, &flags, NULL,
806                               0, lvb_type, lockh, 0);
807         if (!it) {
808                 /* For flock requests we immediatelly return without further
809                    delay and let caller deal with the rest, since rest of
810                    this function metadata processing makes no sense for flock
811                    requests anyway. But in case of problem during comms with
812                    Server (ETIMEDOUT) or any signal/kill attempt (EINTR), we
813                    can not rely on caller and this mainly for F_UNLCKs
814                    (explicits or automatically generated by Kernel to clean
815                    current FLocks upon exit) that can't be trashed */
816                 if (((rc == -EINTR) || (rc == -ETIMEDOUT)) &&
817                     (einfo->ei_type == LDLM_FLOCK) &&
818                     (einfo->ei_mode == LCK_NL))
819                         goto resend;
820                 RETURN(rc);
821         }
822
823         obd_put_request_slot(&obddev->u.cli);
824         mdc_put_mod_rpc_slot(req, it);
825
826         if (rc < 0) {
827                 CDEBUG(D_INFO, "%s: ldlm_cli_enqueue failed: rc = %d\n",
828                        obddev->obd_name, rc);
829
830                 mdc_clear_replay_flag(req, rc);
831                 ptlrpc_req_finished(req);
832                 RETURN(rc);
833         }
834
835         lockrep = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
836         LASSERT(lockrep != NULL);
837
838         lockrep->lock_policy_res2 =
839                 ptlrpc_status_ntoh(lockrep->lock_policy_res2);
840
841         /* Retry infinitely when the server returns -EINPROGRESS for the
842          * intent operation, when server returns -EINPROGRESS for acquiring
843          * intent lock, we'll retry in after_reply(). */
844         if (it && (int)lockrep->lock_policy_res2 == -EINPROGRESS) {
845                 mdc_clear_replay_flag(req, rc);
846                 ptlrpc_req_finished(req);
847                 resends++;
848
849                 CDEBUG(D_HA, "%s: resend:%d op:%d "DFID"/"DFID"\n",
850                        obddev->obd_name, resends, it->it_op,
851                        PFID(&op_data->op_fid1), PFID(&op_data->op_fid2));
852
853                 if (generation == obddev->u.cli.cl_import->imp_generation) {
854                         goto resend;
855                 } else {
856                         CDEBUG(D_HA, "resend cross eviction\n");
857                         RETURN(-EIO);
858                 }
859         }
860
861         rc = mdc_finish_enqueue(exp, req, einfo, it, lockh, rc);
862         if (rc < 0) {
863                 if (lustre_handle_is_used(lockh)) {
864                         ldlm_lock_decref(lockh, einfo->ei_mode);
865                         memset(lockh, 0, sizeof(*lockh));
866                 }
867                 ptlrpc_req_finished(req);
868
869                 it->it_lock_handle = 0;
870                 it->it_lock_mode = 0;
871                 it->it_request = NULL;
872         }
873
874         RETURN(rc);
875 }
876
877 static int mdc_finish_intent_lock(struct obd_export *exp,
878                                   struct ptlrpc_request *request,
879                                   struct md_op_data *op_data,
880                                   struct lookup_intent *it,
881                                   struct lustre_handle *lockh)
882 {
883         struct lustre_handle old_lock;
884         struct mdt_body *mdt_body;
885         struct ldlm_lock *lock;
886         int rc;
887         ENTRY;
888
889         LASSERT(request != NULL);
890         LASSERT(request != LP_POISON);
891         LASSERT(request->rq_repmsg != LP_POISON);
892
893         if (it->it_op & IT_READDIR)
894                 RETURN(0);
895
896         if (!it_disposition(it, DISP_IT_EXECD)) {
897                 /* The server failed before it even started executing the
898                  * intent, i.e. because it couldn't unpack the request. */
899                 LASSERT(it->it_status != 0);
900                 RETURN(it->it_status);
901         }
902         rc = it_open_error(DISP_IT_EXECD, it);
903         if (rc)
904                 RETURN(rc);
905
906         mdt_body = req_capsule_server_get(&request->rq_pill, &RMF_MDT_BODY);
907         LASSERT(mdt_body != NULL);      /* mdc_enqueue checked */
908
909         rc = it_open_error(DISP_LOOKUP_EXECD, it);
910         if (rc)
911                 RETURN(rc);
912
913         /* keep requests around for the multiple phases of the call
914          * this shows the DISP_XX must guarantee we make it into the call
915          */
916         if (!it_disposition(it, DISP_ENQ_CREATE_REF) &&
917             it_disposition(it, DISP_OPEN_CREATE) &&
918             !it_open_error(DISP_OPEN_CREATE, it)) {
919                 it_set_disposition(it, DISP_ENQ_CREATE_REF);
920                 ptlrpc_request_addref(request); /* balanced in ll_create_node */
921         }
922         if (!it_disposition(it, DISP_ENQ_OPEN_REF) &&
923             it_disposition(it, DISP_OPEN_OPEN) &&
924             !it_open_error(DISP_OPEN_OPEN, it)) {
925                 it_set_disposition(it, DISP_ENQ_OPEN_REF);
926                 ptlrpc_request_addref(request); /* balanced in ll_file_open */
927                 /* BUG 11546 - eviction in the middle of open rpc processing */
928                 OBD_FAIL_TIMEOUT(OBD_FAIL_MDC_ENQUEUE_PAUSE, obd_timeout);
929         }
930
931         if (it->it_op & IT_CREAT) {
932                 /* XXX this belongs in ll_create_it */
933         } else if (it->it_op == IT_OPEN) {
934                 LASSERT(!it_disposition(it, DISP_OPEN_CREATE));
935         } else {
936                 LASSERT(it->it_op & (IT_GETATTR | IT_LOOKUP | IT_LAYOUT));
937         }
938
939         /* If we already have a matching lock, then cancel the new
940          * one.  We have to set the data here instead of in
941          * mdc_enqueue, because we need to use the child's inode as
942          * the l_ast_data to match, and that's not available until
943          * intent_finish has performed the iget().) */
944         lock = ldlm_handle2lock(lockh);
945         if (lock) {
946                 union ldlm_policy_data policy = lock->l_policy_data;
947                 LDLM_DEBUG(lock, "matching against this");
948
949                 LASSERTF(fid_res_name_eq(&mdt_body->mbo_fid1,
950                                          &lock->l_resource->lr_name),
951                          "Lock res_id: "DLDLMRES", fid: "DFID"\n",
952                          PLDLMRES(lock->l_resource), PFID(&mdt_body->mbo_fid1));
953                 LDLM_LOCK_PUT(lock);
954
955                 memcpy(&old_lock, lockh, sizeof(*lockh));
956                 if (ldlm_lock_match(NULL, LDLM_FL_BLOCK_GRANTED, NULL,
957                                     LDLM_IBITS, &policy, LCK_NL, &old_lock, 0)) {
958                         ldlm_lock_decref_and_cancel(lockh, it->it_lock_mode);
959                         memcpy(lockh, &old_lock, sizeof(old_lock));
960                         it->it_lock_handle = lockh->cookie;
961                 }
962         }
963
964         CDEBUG(D_DENTRY,"D_IT dentry %.*s intent: %s status %d disp %x rc %d\n",
965                 (int)op_data->op_namelen, op_data->op_name,
966                 ldlm_it2str(it->it_op), it->it_status,
967                 it->it_disposition, rc);
968
969         RETURN(rc);
970 }
971
972 int mdc_revalidate_lock(struct obd_export *exp, struct lookup_intent *it,
973                         struct lu_fid *fid, __u64 *bits)
974 {
975         /* We could just return 1 immediately, but since we should only
976          * be called in revalidate_it if we already have a lock, let's
977          * verify that. */
978         struct ldlm_res_id res_id;
979         struct lustre_handle lockh;
980         union ldlm_policy_data policy;
981         enum ldlm_mode mode;
982         ENTRY;
983
984         if (it->it_lock_handle) {
985                 lockh.cookie = it->it_lock_handle;
986                 mode = ldlm_revalidate_lock_handle(&lockh, bits);
987         } else {
988                 fid_build_reg_res_name(fid, &res_id);
989                 switch (it->it_op) {
990                 case IT_GETATTR:
991                         /* File attributes are held under multiple bits:
992                          * nlink is under lookup lock, size and times are
993                          * under UPDATE lock and recently we've also got
994                          * a separate permissions lock for owner/group/acl that
995                          * were protected by lookup lock before.
996                          * Getattr must provide all of that information,
997                          * so we need to ensure we have all of those locks.
998                          * Unfortunately, if the bits are split across multiple
999                          * locks, there's no easy way to match all of them here,
1000                          * so an extra RPC would be performed to fetch all
1001                          * of those bits at once for now. */
1002                         /* For new MDTs(> 2.4), UPDATE|PERM should be enough,
1003                          * but for old MDTs (< 2.4), permission is covered
1004                          * by LOOKUP lock, so it needs to match all bits here.*/
1005                         policy.l_inodebits.bits = MDS_INODELOCK_UPDATE |
1006                                                   MDS_INODELOCK_LOOKUP |
1007                                                   MDS_INODELOCK_PERM;
1008                         break;
1009                 case IT_READDIR:
1010                         policy.l_inodebits.bits = MDS_INODELOCK_UPDATE;
1011                         break;
1012                 case IT_LAYOUT:
1013                         policy.l_inodebits.bits = MDS_INODELOCK_LAYOUT;
1014                         break;
1015                 default:
1016                         policy.l_inodebits.bits = MDS_INODELOCK_LOOKUP;
1017                         break;
1018                 }
1019
1020                 mode = mdc_lock_match(exp, LDLM_FL_BLOCK_GRANTED, fid,
1021                                       LDLM_IBITS, &policy,
1022                                       LCK_CR | LCK_CW | LCK_PR | LCK_PW,
1023                                       &lockh);
1024         }
1025
1026         if (mode) {
1027                 it->it_lock_handle = lockh.cookie;
1028                 it->it_lock_mode = mode;
1029         } else {
1030                 it->it_lock_handle = 0;
1031                 it->it_lock_mode = 0;
1032         }
1033
1034         RETURN(!!mode);
1035 }
1036
1037 /*
1038  * This long block is all about fixing up the lock and request state
1039  * so that it is correct as of the moment _before_ the operation was
1040  * applied; that way, the VFS will think that everything is normal and
1041  * call Lustre's regular VFS methods.
1042  *
1043  * If we're performing a creation, that means that unless the creation
1044  * failed with EEXIST, we should fake up a negative dentry.
1045  *
1046  * For everything else, we want to lookup to succeed.
1047  *
1048  * One additional note: if CREATE or OPEN succeeded, we add an extra
1049  * reference to the request because we need to keep it around until
1050  * ll_create/ll_open gets called.
1051  *
1052  * The server will return to us, in it_disposition, an indication of
1053  * exactly what it_status refers to.
1054  *
1055  * If DISP_OPEN_OPEN is set, then it_status refers to the open() call,
1056  * otherwise if DISP_OPEN_CREATE is set, then it status is the
1057  * creation failure mode.  In either case, one of DISP_LOOKUP_NEG or
1058  * DISP_LOOKUP_POS will be set, indicating whether the child lookup
1059  * was successful.
1060  *
1061  * Else, if DISP_LOOKUP_EXECD then it_status is the rc of the
1062  * child lookup.
1063  */
1064 int mdc_intent_lock(struct obd_export *exp, struct md_op_data *op_data,
1065                     struct lookup_intent *it, struct ptlrpc_request **reqp,
1066                     ldlm_blocking_callback cb_blocking, __u64 extra_lock_flags)
1067 {
1068         struct ldlm_enqueue_info einfo = {
1069                 .ei_type        = LDLM_IBITS,
1070                 .ei_mode        = it_to_lock_mode(it),
1071                 .ei_cb_bl       = cb_blocking,
1072                 .ei_cb_cp       = ldlm_completion_ast,
1073         };
1074         struct lustre_handle lockh;
1075         int rc = 0;
1076         ENTRY;
1077         LASSERT(it);
1078
1079         CDEBUG(D_DLMTRACE, "(name: %.*s,"DFID") in obj "DFID
1080                 ", intent: %s flags %#"LPF64"o\n", (int)op_data->op_namelen,
1081                 op_data->op_name, PFID(&op_data->op_fid2),
1082                 PFID(&op_data->op_fid1), ldlm_it2str(it->it_op),
1083                 it->it_flags);
1084
1085         lockh.cookie = 0;
1086         if (fid_is_sane(&op_data->op_fid2) &&
1087             (it->it_op & (IT_LOOKUP | IT_GETATTR | IT_READDIR))) {
1088                 /* We could just return 1 immediately, but since we should only
1089                  * be called in revalidate_it if we already have a lock, let's
1090                  * verify that. */
1091                 it->it_lock_handle = 0;
1092                 rc = mdc_revalidate_lock(exp, it, &op_data->op_fid2, NULL);
1093                 /* Only return failure if it was not GETATTR by cfid
1094                    (from inode_revalidate) */
1095                 if (rc || op_data->op_namelen != 0)
1096                         RETURN(rc);
1097         }
1098
1099         /* For case if upper layer did not alloc fid, do it now. */
1100         if (!fid_is_sane(&op_data->op_fid2) && it->it_op & IT_CREAT) {
1101                 rc = mdc_fid_alloc(NULL, exp, &op_data->op_fid2, op_data);
1102                 if (rc < 0) {
1103                         CERROR("Can't alloc new fid, rc %d\n", rc);
1104                         RETURN(rc);
1105                 }
1106         }
1107
1108         rc = mdc_enqueue(exp, &einfo, NULL, it, op_data, &lockh,
1109                          extra_lock_flags);
1110         if (rc < 0)
1111                 RETURN(rc);
1112
1113         *reqp = it->it_request;
1114         rc = mdc_finish_intent_lock(exp, *reqp, op_data, it, &lockh);
1115         RETURN(rc);
1116 }
1117
1118 static int mdc_intent_getattr_async_interpret(const struct lu_env *env,
1119                                               struct ptlrpc_request *req,
1120                                               void *args, int rc)
1121 {
1122         struct mdc_getattr_args  *ga = args;
1123         struct obd_export        *exp = ga->ga_exp;
1124         struct md_enqueue_info   *minfo = ga->ga_minfo;
1125         struct ldlm_enqueue_info *einfo = &minfo->mi_einfo;
1126         struct lookup_intent     *it;
1127         struct lustre_handle     *lockh;
1128         struct obd_device        *obddev;
1129         struct ldlm_reply        *lockrep;
1130         __u64                     flags = LDLM_FL_HAS_INTENT;
1131         ENTRY;
1132
1133         it    = &minfo->mi_it;
1134         lockh = &minfo->mi_lockh;
1135
1136         obddev = class_exp2obd(exp);
1137
1138         obd_put_request_slot(&obddev->u.cli);
1139         if (OBD_FAIL_CHECK(OBD_FAIL_MDC_GETATTR_ENQUEUE))
1140                 rc = -ETIMEDOUT;
1141
1142         rc = ldlm_cli_enqueue_fini(exp, req, einfo->ei_type, 1, einfo->ei_mode,
1143                                    &flags, NULL, 0, lockh, rc);
1144         if (rc < 0) {
1145                 CERROR("ldlm_cli_enqueue_fini: %d\n", rc);
1146                 mdc_clear_replay_flag(req, rc);
1147                 GOTO(out, rc);
1148         }
1149
1150         lockrep = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
1151         LASSERT(lockrep != NULL);
1152
1153         lockrep->lock_policy_res2 =
1154                 ptlrpc_status_ntoh(lockrep->lock_policy_res2);
1155
1156         rc = mdc_finish_enqueue(exp, req, einfo, it, lockh, rc);
1157         if (rc)
1158                 GOTO(out, rc);
1159
1160         rc = mdc_finish_intent_lock(exp, req, &minfo->mi_data, it, lockh);
1161         EXIT;
1162
1163 out:
1164         minfo->mi_cb(req, minfo, rc);
1165         return 0;
1166 }
1167
1168 int mdc_intent_getattr_async(struct obd_export *exp,
1169                              struct md_enqueue_info *minfo)
1170 {
1171         struct md_op_data       *op_data = &minfo->mi_data;
1172         struct lookup_intent    *it = &minfo->mi_it;
1173         struct ptlrpc_request   *req;
1174         struct mdc_getattr_args *ga;
1175         struct obd_device       *obddev = class_exp2obd(exp);
1176         struct ldlm_res_id       res_id;
1177         union ldlm_policy_data policy = {
1178                                 .l_inodebits = { MDS_INODELOCK_LOOKUP |
1179                                                  MDS_INODELOCK_UPDATE } };
1180         int                      rc = 0;
1181         __u64                    flags = LDLM_FL_HAS_INTENT;
1182         ENTRY;
1183
1184         CDEBUG(D_DLMTRACE, "name: %.*s in inode "DFID", intent: %s flags %#"
1185                 LPF64"o\n",
1186                 (int)op_data->op_namelen, op_data->op_name,
1187                 PFID(&op_data->op_fid1), ldlm_it2str(it->it_op), it->it_flags);
1188
1189         fid_build_reg_res_name(&op_data->op_fid1, &res_id);
1190         req = mdc_intent_getattr_pack(exp, it, op_data);
1191         if (IS_ERR(req))
1192                 RETURN(PTR_ERR(req));
1193
1194         rc = obd_get_request_slot(&obddev->u.cli);
1195         if (rc != 0) {
1196                 ptlrpc_req_finished(req);
1197                 RETURN(rc);
1198         }
1199
1200         rc = ldlm_cli_enqueue(exp, &req, &minfo->mi_einfo, &res_id, &policy,
1201                               &flags, NULL, 0, LVB_T_NONE, &minfo->mi_lockh, 1);
1202         if (rc < 0) {
1203                 obd_put_request_slot(&obddev->u.cli);
1204                 ptlrpc_req_finished(req);
1205                 RETURN(rc);
1206         }
1207
1208         CLASSERT(sizeof(*ga) <= sizeof(req->rq_async_args));
1209         ga = ptlrpc_req_async_args(req);
1210         ga->ga_exp = exp;
1211         ga->ga_minfo = minfo;
1212
1213         req->rq_interpret_reply = mdc_intent_getattr_async_interpret;
1214         ptlrpcd_add_req(req);
1215
1216         RETURN(0);
1217 }