Whamcloud - gitweb
e6621477de84882c0e4439cd096b2cdc5c971629
[fs/lustre-release.git] / lustre / mdt / mdt_lib.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) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, 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  * lustre/mdt/mdt_lib.c
37  *
38  * Lustre Metadata Target (mdt) request unpacking helper.
39  *
40  * Author: Peter Braam <braam@clusterfs.com>
41  * Author: Andreas Dilger <adilger@clusterfs.com>
42  * Author: Phil Schwan <phil@clusterfs.com>
43  * Author: Mike Shaver <shaver@clusterfs.com>
44  * Author: Nikita Danilov <nikita@clusterfs.com>
45  * Author: Huang Hua <huanghua@clusterfs.com>
46  * Author: Fan Yong <fanyong@clusterfs.com>
47  */
48
49 #define DEBUG_SUBSYSTEM S_MDS
50
51 #include "mdt_internal.h"
52 #include <lnet/lib-lnet.h>
53
54
55 typedef enum ucred_init_type {
56         NONE_INIT       = 0,
57         BODY_INIT       = 1,
58         REC_INIT        = 2
59 } ucred_init_type_t;
60
61 void mdt_exit_ucred(struct mdt_thread_info *info)
62 {
63         struct lu_ucred   *uc  = mdt_ucred(info);
64         struct mdt_device *mdt = info->mti_mdt;
65
66         LASSERT(uc != NULL);
67         if (uc->uc_valid != UCRED_INIT) {
68                 uc->uc_suppgids[0] = uc->uc_suppgids[1] = -1;
69                 if (uc->uc_ginfo) {
70                         cfs_put_group_info(uc->uc_ginfo);
71                         uc->uc_ginfo = NULL;
72                 }
73                 if (uc->uc_identity) {
74                         mdt_identity_put(mdt->mdt_identity_cache,
75                                          uc->uc_identity);
76                         uc->uc_identity = NULL;
77                 }
78                 uc->uc_valid = UCRED_INIT;
79         }
80 }
81
82 static int match_nosquash_list(struct rw_semaphore *sem,
83                                cfs_list_t *nidlist,
84                                lnet_nid_t peernid)
85 {
86         int rc;
87         ENTRY;
88         down_read(sem);
89         rc = cfs_match_nid(peernid, nidlist);
90         up_read(sem);
91         RETURN(rc);
92 }
93
94 /* root_squash for inter-MDS operations */
95 static int mdt_root_squash(struct mdt_thread_info *info, lnet_nid_t peernid)
96 {
97         struct lu_ucred *ucred = mdt_ucred(info);
98         ENTRY;
99
100         LASSERT(ucred != NULL);
101         if (!info->mti_mdt->mdt_squash_uid || ucred->uc_fsuid)
102                 RETURN(0);
103
104         if (match_nosquash_list(&info->mti_mdt->mdt_squash_sem,
105                                 &info->mti_mdt->mdt_nosquash_nids,
106                                 peernid)) {
107                 CDEBUG(D_OTHER, "%s is in nosquash_nids list\n",
108                        libcfs_nid2str(peernid));
109                 RETURN(0);
110         }
111
112         CDEBUG(D_OTHER, "squash req from %s, (%d:%d/%x)=>(%d:%d/%x)\n",
113                libcfs_nid2str(peernid),
114                ucred->uc_fsuid, ucred->uc_fsgid, ucred->uc_cap,
115                info->mti_mdt->mdt_squash_uid, info->mti_mdt->mdt_squash_gid,
116                0);
117
118         ucred->uc_fsuid = info->mti_mdt->mdt_squash_uid;
119         ucred->uc_fsgid = info->mti_mdt->mdt_squash_gid;
120         ucred->uc_cap = 0;
121         ucred->uc_suppgids[0] = -1;
122         ucred->uc_suppgids[1] = -1;
123
124         RETURN(0);
125 }
126
127 static int new_init_ucred(struct mdt_thread_info *info, ucred_init_type_t type,
128                           void *buf)
129 {
130         struct ptlrpc_request   *req = mdt_info_req(info);
131         struct mdt_device       *mdt = info->mti_mdt;
132         struct ptlrpc_user_desc *pud = req->rq_user_desc;
133         struct lu_ucred         *ucred = mdt_ucred(info);
134         lnet_nid_t               peernid = req->rq_peer.nid;
135         __u32                    perm = 0;
136         __u32                    remote = exp_connect_rmtclient(info->mti_exp);
137         int                      setuid;
138         int                      setgid;
139         int                      rc = 0;
140
141         ENTRY;
142
143         LASSERT(req->rq_auth_gss);
144         LASSERT(!req->rq_auth_usr_mdt);
145         LASSERT(req->rq_user_desc);
146         LASSERT(ucred != NULL);
147
148         ucred->uc_valid = UCRED_INVALID;
149
150         ucred->uc_o_uid   = pud->pud_uid;
151         ucred->uc_o_gid   = pud->pud_gid;
152         ucred->uc_o_fsuid = pud->pud_fsuid;
153         ucred->uc_o_fsgid = pud->pud_fsgid;
154
155         if (type == BODY_INIT) {
156                 struct mdt_body *body = (struct mdt_body *)buf;
157
158                 ucred->uc_suppgids[0] = body->suppgid;
159                 ucred->uc_suppgids[1] = -1;
160         }
161
162         /* sanity check: we expect the uid which client claimed is true */
163         if (remote) {
164                 if (req->rq_auth_mapped_uid == INVALID_UID) {
165                         CDEBUG(D_SEC, "remote user not mapped, deny access!\n");
166                         RETURN(-EACCES);
167                 }
168
169                 if (ptlrpc_user_desc_do_idmap(req, pud))
170                         RETURN(-EACCES);
171
172                 if (req->rq_auth_mapped_uid != pud->pud_uid) {
173                         CDEBUG(D_SEC, "remote client %s: auth/mapped uid %u/%u "
174                                "while client claims %u:%u/%u:%u\n",
175                                libcfs_nid2str(peernid), req->rq_auth_uid,
176                                req->rq_auth_mapped_uid,
177                                pud->pud_uid, pud->pud_gid,
178                                pud->pud_fsuid, pud->pud_fsgid);
179                         RETURN(-EACCES);
180                 }
181         } else {
182                 if (req->rq_auth_uid != pud->pud_uid) {
183                         CDEBUG(D_SEC, "local client %s: auth uid %u "
184                                "while client claims %u:%u/%u:%u\n",
185                                libcfs_nid2str(peernid), req->rq_auth_uid,
186                                pud->pud_uid, pud->pud_gid,
187                                pud->pud_fsuid, pud->pud_fsgid);
188                         RETURN(-EACCES);
189                 }
190         }
191
192         if (is_identity_get_disabled(mdt->mdt_identity_cache)) {
193                 if (remote) {
194                         CDEBUG(D_SEC, "remote client must run with identity_get "
195                                "enabled!\n");
196                         RETURN(-EACCES);
197                 } else {
198                         ucred->uc_identity = NULL;
199                         perm = CFS_SETUID_PERM | CFS_SETGID_PERM |
200                                CFS_SETGRP_PERM;
201                 }
202         } else {
203                 struct md_identity *identity;
204
205                 identity = mdt_identity_get(mdt->mdt_identity_cache,
206                                             pud->pud_uid);
207                 if (IS_ERR(identity)) {
208                         if (unlikely(PTR_ERR(identity) == -EREMCHG &&
209                                      !remote)) {
210                                 ucred->uc_identity = NULL;
211                                 perm = CFS_SETUID_PERM | CFS_SETGID_PERM |
212                                        CFS_SETGRP_PERM;
213                         } else {
214                                 CDEBUG(D_SEC, "Deny access without identity: uid %u\n",
215                                        pud->pud_uid);
216                                 RETURN(-EACCES);
217                         }
218                 } else {
219                         ucred->uc_identity = identity;
220                         perm = mdt_identity_get_perm(ucred->uc_identity,
221                                                      remote, peernid);
222                 }
223         }
224
225         /* find out the setuid/setgid attempt */
226         setuid = (pud->pud_uid != pud->pud_fsuid);
227         setgid = ((pud->pud_gid != pud->pud_fsgid) ||
228                   (ucred->uc_identity &&
229                    (pud->pud_gid != ucred->uc_identity->mi_gid)));
230
231         /* check permission of setuid */
232         if (setuid && !(perm & CFS_SETUID_PERM)) {
233                 CDEBUG(D_SEC, "mdt blocked setuid attempt (%u -> %u) from %s\n",
234                        pud->pud_uid, pud->pud_fsuid, libcfs_nid2str(peernid));
235                 GOTO(out, rc = -EACCES);
236         }
237
238         /* check permission of setgid */
239         if (setgid && !(perm & CFS_SETGID_PERM)) {
240                 CDEBUG(D_SEC, "mdt blocked setgid attempt (%u:%u/%u:%u -> %u) "
241                        "from %s\n", pud->pud_uid, pud->pud_gid,
242                        pud->pud_fsuid, pud->pud_fsgid,
243                        ucred->uc_identity->mi_gid, libcfs_nid2str(peernid));
244                 GOTO(out, rc = -EACCES);
245         }
246
247         /*
248          * NB: remote client not allowed to setgroups anyway.
249          */
250         if (!remote && perm & CFS_SETGRP_PERM) {
251                 if (pud->pud_ngroups) {
252                         /* setgroups for local client */
253                         ucred->uc_ginfo = cfs_groups_alloc(pud->pud_ngroups);
254                         if (!ucred->uc_ginfo) {
255                                 CERROR("failed to alloc %d groups\n",
256                                        pud->pud_ngroups);
257                                 GOTO(out, rc = -ENOMEM);
258                         }
259
260                         lustre_groups_from_list(ucred->uc_ginfo,
261                                                 pud->pud_groups);
262                         lustre_groups_sort(ucred->uc_ginfo);
263                 } else {
264                         ucred->uc_ginfo = NULL;
265                 }
266         } else {
267                 ucred->uc_suppgids[0] = -1;
268                 ucred->uc_suppgids[1] = -1;
269                 ucred->uc_ginfo = NULL;
270         }
271
272         ucred->uc_uid   = pud->pud_uid;
273         ucred->uc_gid   = pud->pud_gid;
274         ucred->uc_fsuid = pud->pud_fsuid;
275         ucred->uc_fsgid = pud->pud_fsgid;
276
277         /* process root_squash here. */
278         mdt_root_squash(info, peernid);
279
280         /* remove fs privilege for non-root user. */
281         if (ucred->uc_fsuid)
282                 ucred->uc_cap = pud->pud_cap & ~CFS_CAP_FS_MASK;
283         else
284                 ucred->uc_cap = pud->pud_cap;
285         if (remote && !(perm & CFS_RMTOWN_PERM))
286                 ucred->uc_cap &= ~(CFS_CAP_SYS_RESOURCE_MASK |
287                                    CFS_CAP_CHOWN_MASK);
288         ucred->uc_valid = UCRED_NEW;
289
290         EXIT;
291
292 out:
293         if (rc) {
294                 if (ucred->uc_ginfo) {
295                         cfs_put_group_info(ucred->uc_ginfo);
296                         ucred->uc_ginfo = NULL;
297                 }
298                 if (ucred->uc_identity) {
299                         mdt_identity_put(mdt->mdt_identity_cache,
300                                          ucred->uc_identity);
301                         ucred->uc_identity = NULL;
302                 }
303         }
304
305         return rc;
306 }
307
308 int mdt_check_ucred(struct mdt_thread_info *info)
309 {
310         struct ptlrpc_request   *req = mdt_info_req(info);
311         struct mdt_device       *mdt = info->mti_mdt;
312         struct ptlrpc_user_desc *pud = req->rq_user_desc;
313         struct lu_ucred         *ucred = mdt_ucred(info);
314         struct md_identity      *identity = NULL;
315         lnet_nid_t               peernid = req->rq_peer.nid;
316         __u32                    perm = 0;
317         __u32                    remote = exp_connect_rmtclient(info->mti_exp);
318         int                      setuid;
319         int                      setgid;
320         int                      rc = 0;
321
322         ENTRY;
323
324         LASSERT(ucred != NULL);
325         if ((ucred->uc_valid == UCRED_OLD) || (ucred->uc_valid == UCRED_NEW))
326                 RETURN(0);
327
328         if (!req->rq_auth_gss || req->rq_auth_usr_mdt || !req->rq_user_desc)
329                 RETURN(0);
330
331         /* sanity check: if we use strong authentication, we expect the
332          * uid which client claimed is true */
333         if (remote) {
334                 if (req->rq_auth_mapped_uid == INVALID_UID) {
335                         CDEBUG(D_SEC, "remote user not mapped, deny access!\n");
336                         RETURN(-EACCES);
337                 }
338
339                 if (ptlrpc_user_desc_do_idmap(req, pud))
340                         RETURN(-EACCES);
341
342                 if (req->rq_auth_mapped_uid != pud->pud_uid) {
343                         CDEBUG(D_SEC, "remote client %s: auth/mapped uid %u/%u "
344                                "while client claims %u:%u/%u:%u\n",
345                                libcfs_nid2str(peernid), req->rq_auth_uid,
346                                req->rq_auth_mapped_uid,
347                                pud->pud_uid, pud->pud_gid,
348                                pud->pud_fsuid, pud->pud_fsgid);
349                         RETURN(-EACCES);
350                 }
351         } else {
352                 if (req->rq_auth_uid != pud->pud_uid) {
353                         CDEBUG(D_SEC, "local client %s: auth uid %u "
354                                "while client claims %u:%u/%u:%u\n",
355                                libcfs_nid2str(peernid), req->rq_auth_uid,
356                                pud->pud_uid, pud->pud_gid,
357                                pud->pud_fsuid, pud->pud_fsgid);
358                         RETURN(-EACCES);
359                 }
360         }
361
362         if (is_identity_get_disabled(mdt->mdt_identity_cache)) {
363                 if (remote) {
364                         CDEBUG(D_SEC, "remote client must run with identity_get "
365                                "enabled!\n");
366                         RETURN(-EACCES);
367                 }
368                 RETURN(0);
369         }
370
371         identity = mdt_identity_get(mdt->mdt_identity_cache, pud->pud_uid);
372         if (IS_ERR(identity)) {
373                 if (unlikely(PTR_ERR(identity) == -EREMCHG &&
374                              !remote)) {
375                         RETURN(0);
376                 } else {
377                         CDEBUG(D_SEC, "Deny access without identity: uid %u\n",
378                                pud->pud_uid);
379                         RETURN(-EACCES);
380                }
381         }
382
383         perm = mdt_identity_get_perm(identity, remote, peernid);
384         /* find out the setuid/setgid attempt */
385         setuid = (pud->pud_uid != pud->pud_fsuid);
386         setgid = (pud->pud_gid != pud->pud_fsgid ||
387                   pud->pud_gid != identity->mi_gid);
388
389         /* check permission of setuid */
390         if (setuid && !(perm & CFS_SETUID_PERM)) {
391                 CDEBUG(D_SEC, "mdt blocked setuid attempt (%u -> %u) from %s\n",
392                        pud->pud_uid, pud->pud_fsuid, libcfs_nid2str(peernid));
393                 GOTO(out, rc = -EACCES);
394         }
395
396         /* check permission of setgid */
397         if (setgid && !(perm & CFS_SETGID_PERM)) {
398                 CDEBUG(D_SEC, "mdt blocked setgid attempt (%u:%u/%u:%u -> %u) "
399                        "from %s\n", pud->pud_uid, pud->pud_gid,
400                        pud->pud_fsuid, pud->pud_fsgid, identity->mi_gid,
401                        libcfs_nid2str(peernid));
402                 GOTO(out, rc = -EACCES);
403         }
404
405         EXIT;
406
407 out:
408         mdt_identity_put(mdt->mdt_identity_cache, identity);
409         return rc;
410 }
411
412 static int old_init_ucred(struct mdt_thread_info *info,
413                           struct mdt_body *body)
414 {
415         struct lu_ucred *uc = mdt_ucred(info);
416         struct mdt_device  *mdt = info->mti_mdt;
417         struct md_identity *identity = NULL;
418
419         ENTRY;
420
421         LASSERT(uc != NULL);
422         uc->uc_valid = UCRED_INVALID;
423         uc->uc_o_uid = uc->uc_uid = body->uid;
424         uc->uc_o_gid = uc->uc_gid = body->gid;
425         uc->uc_o_fsuid = uc->uc_fsuid = body->fsuid;
426         uc->uc_o_fsgid = uc->uc_fsgid = body->fsgid;
427         uc->uc_suppgids[0] = body->suppgid;
428         uc->uc_suppgids[1] = -1;
429         uc->uc_ginfo = NULL;
430         if (!is_identity_get_disabled(mdt->mdt_identity_cache)) {
431                 identity = mdt_identity_get(mdt->mdt_identity_cache,
432                                             uc->uc_fsuid);
433                 if (IS_ERR(identity)) {
434                         if (unlikely(PTR_ERR(identity) == -EREMCHG)) {
435                                 identity = NULL;
436                         } else {
437                                 CDEBUG(D_SEC, "Deny access without identity: "
438                                        "uid %u\n", uc->uc_fsuid);
439                                 RETURN(-EACCES);
440                         }
441                 }
442         }
443         uc->uc_identity = identity;
444
445         /* process root_squash here. */
446         mdt_root_squash(info, mdt_info_req(info)->rq_peer.nid);
447
448         /* remove fs privilege for non-root user. */
449         if (uc->uc_fsuid)
450                 uc->uc_cap = body->capability & ~CFS_CAP_FS_MASK;
451         else
452                 uc->uc_cap = body->capability;
453         uc->uc_valid = UCRED_OLD;
454
455         RETURN(0);
456 }
457
458 static int old_init_ucred_reint(struct mdt_thread_info *info)
459 {
460         struct lu_ucred *uc = mdt_ucred(info);
461         struct mdt_device  *mdt = info->mti_mdt;
462         struct md_identity *identity = NULL;
463
464         ENTRY;
465
466         LASSERT(uc != NULL);
467         uc->uc_valid = UCRED_INVALID;
468         uc->uc_o_uid = uc->uc_o_fsuid = uc->uc_uid = uc->uc_fsuid;
469         uc->uc_o_gid = uc->uc_o_fsgid = uc->uc_gid = uc->uc_fsgid;
470         uc->uc_ginfo = NULL;
471         if (!is_identity_get_disabled(mdt->mdt_identity_cache)) {
472                 identity = mdt_identity_get(mdt->mdt_identity_cache,
473                                             uc->uc_fsuid);
474                 if (IS_ERR(identity)) {
475                         if (unlikely(PTR_ERR(identity) == -EREMCHG)) {
476                                 identity = NULL;
477                         } else {
478                                 CDEBUG(D_SEC, "Deny access without identity: "
479                                        "uid %u\n", uc->uc_fsuid);
480                                 RETURN(-EACCES);
481                         }
482                 }
483         }
484         uc->uc_identity = identity;
485
486         /* process root_squash here. */
487         mdt_root_squash(info, mdt_info_req(info)->rq_peer.nid);
488
489         /* remove fs privilege for non-root user. */
490         if (uc->uc_fsuid)
491                 uc->uc_cap &= ~CFS_CAP_FS_MASK;
492         uc->uc_valid = UCRED_OLD;
493
494         RETURN(0);
495 }
496
497 int mdt_init_ucred(struct mdt_thread_info *info, struct mdt_body *body)
498 {
499         struct ptlrpc_request *req = mdt_info_req(info);
500         struct lu_ucred       *uc  = mdt_ucred(info);
501
502         LASSERT(uc != NULL);
503         if ((uc->uc_valid == UCRED_OLD) || (uc->uc_valid == UCRED_NEW))
504                 return 0;
505
506         mdt_exit_ucred(info);
507
508         if (!req->rq_auth_gss || req->rq_auth_usr_mdt || !req->rq_user_desc)
509                 return old_init_ucred(info, body);
510         else
511                 return new_init_ucred(info, BODY_INIT, body);
512 }
513
514 int mdt_init_ucred_reint(struct mdt_thread_info *info)
515 {
516         struct ptlrpc_request *req = mdt_info_req(info);
517         struct lu_ucred       *uc  = mdt_ucred(info);
518
519         LASSERT(uc != NULL);
520         if ((uc->uc_valid == UCRED_OLD) || (uc->uc_valid == UCRED_NEW))
521                 return 0;
522
523         mdt_exit_ucred(info);
524
525         if (!req->rq_auth_gss || req->rq_auth_usr_mdt || !req->rq_user_desc)
526                 return old_init_ucred_reint(info);
527         else
528                 return new_init_ucred(info, REC_INIT, NULL);
529 }
530
531 /* copied from lov/lov_ea.c, just for debugging, will be removed later */
532 void mdt_dump_lmm(int level, const struct lov_mds_md *lmm)
533 {
534         const struct lov_ost_data_v1 *lod;
535         int                           i;
536         __u16                         count;
537
538         count = le16_to_cpu(((struct lov_user_md*)lmm)->lmm_stripe_count);
539
540         CDEBUG(level, "objid "LPX64", magic 0x%08X, pattern %#X\n",
541                le64_to_cpu(lmm->lmm_object_id), le32_to_cpu(lmm->lmm_magic),
542                le32_to_cpu(lmm->lmm_pattern));
543         CDEBUG(level,"stripe_size=0x%x, stripe_count=0x%x\n",
544                le32_to_cpu(lmm->lmm_stripe_size), count);
545         if (count == LOV_ALL_STRIPES)
546                 return;
547         LASSERT(count <= LOV_MAX_STRIPE_COUNT);
548         for (i = 0, lod = lmm->lmm_objects; i < count; i++, lod++)
549                 CDEBUG(level, "stripe %u idx %u subobj "LPX64"/"LPX64"\n",
550                        i, le32_to_cpu(lod->l_ost_idx),
551                        le64_to_cpu(lod->l_object_seq),
552                        le64_to_cpu(lod->l_object_id));
553 }
554
555 /* Shrink and/or grow reply buffers */
556 int mdt_fix_reply(struct mdt_thread_info *info)
557 {
558         struct req_capsule *pill = info->mti_pill;
559         struct mdt_body    *body;
560         int                md_size, md_packed = 0;
561         int                acl_size;
562         int                rc = 0;
563         ENTRY;
564
565         body = req_capsule_server_get(pill, &RMF_MDT_BODY);
566         LASSERT(body != NULL);
567
568         if (body->valid & (OBD_MD_FLDIREA | OBD_MD_FLEASIZE | OBD_MD_LINKNAME))
569                 md_size = body->eadatasize;
570         else
571                 md_size = 0;
572
573         acl_size = body->aclsize;
574
575         /* this replay - not send info to client */
576         if (info->mti_spec.no_create) {
577                 md_size = 0;
578                 acl_size = 0;
579         }
580
581         CDEBUG(D_INFO, "Shrink to md_size = %d cookie/acl_size = %d"
582                         " MDSCAPA = %llx, OSSCAPA = %llx\n",
583                         md_size, acl_size,
584                         (unsigned long long)(body->valid & OBD_MD_FLMDSCAPA),
585                         (unsigned long long)(body->valid & OBD_MD_FLOSSCAPA));
586 /*
587             &RMF_MDT_BODY,
588             &RMF_MDT_MD,
589             &RMF_ACL, or &RMF_LOGCOOKIES
590 (optional)  &RMF_CAPA1,
591 (optional)  &RMF_CAPA2,
592 (optional)  something else
593 */
594
595         /* MDT_MD buffer may be bigger than packed value, let's shrink all
596          * buffers before growing it */
597         if (info->mti_big_lmm_used) {
598                 LASSERT(req_capsule_has_field(pill, &RMF_MDT_MD, RCL_SERVER));
599                 md_packed = req_capsule_get_size(pill, &RMF_MDT_MD,
600                                                  RCL_SERVER);
601                 LASSERT(md_packed > 0);
602                 /* buffer must be allocated separately */
603                 LASSERT(info->mti_attr.ma_lmm !=
604                         req_capsule_server_get(pill, &RMF_MDT_MD));
605                 req_capsule_shrink(pill, &RMF_MDT_MD, 0, RCL_SERVER);
606                 /* free big lmm if md_size is not needed */
607                 if (md_size == 0)
608                         info->mti_big_lmm_used = 0;
609         } else if (req_capsule_has_field(pill, &RMF_MDT_MD, RCL_SERVER)) {
610                 req_capsule_shrink(pill, &RMF_MDT_MD, md_size, RCL_SERVER);
611         }
612
613         if (req_capsule_has_field(pill, &RMF_ACL, RCL_SERVER))
614                 req_capsule_shrink(pill, &RMF_ACL, acl_size, RCL_SERVER);
615         else if (req_capsule_has_field(pill, &RMF_LOGCOOKIES, RCL_SERVER))
616                 req_capsule_shrink(pill, &RMF_LOGCOOKIES,
617                                    acl_size, RCL_SERVER);
618
619         if (req_capsule_has_field(pill, &RMF_CAPA1, RCL_SERVER) &&
620             !(body->valid & OBD_MD_FLMDSCAPA))
621                 req_capsule_shrink(pill, &RMF_CAPA1, 0, RCL_SERVER);
622
623         if (req_capsule_has_field(pill, &RMF_CAPA2, RCL_SERVER) &&
624             !(body->valid & OBD_MD_FLOSSCAPA))
625                 req_capsule_shrink(pill, &RMF_CAPA2, 0, RCL_SERVER);
626
627         /*
628          * Some more field should be shrinked if needed.
629          * This should be done by those who added fields to reply message.
630          */
631
632         /* Grow MD buffer if needed finally */
633         if (info->mti_big_lmm_used) {
634                 void *lmm;
635
636                 LASSERT(md_size > md_packed);
637                 CDEBUG(D_INFO, "Enlarge reply buffer, need extra %d bytes\n",
638                        md_size - md_packed);
639                 rc = req_capsule_server_grow(pill, &RMF_MDT_MD, md_size);
640                 if (rc) {
641                         /* we can't answer with proper LOV EA, drop flags,
642                          * the rc is also returned so this request is
643                          * considered as failed */
644                         body->valid &= ~(OBD_MD_FLDIREA | OBD_MD_FLEASIZE);
645                         /* don't return transno along with error */
646                         lustre_msg_set_transno(pill->rc_req->rq_repmsg, 0);
647                 } else {
648                         /* now we need to pack right LOV EA */
649                         lmm = req_capsule_server_get(pill, &RMF_MDT_MD);
650                         LASSERT(req_capsule_get_size(pill, &RMF_MDT_MD,
651                                                      RCL_SERVER) ==
652                                 info->mti_attr.ma_lmm_size);
653                         memcpy(lmm, info->mti_attr.ma_lmm,
654                                info->mti_attr.ma_lmm_size);
655                 }
656                 /* update mdt_max_mdsize so clients will be aware about that */
657                 if (info->mti_mdt->mdt_max_mdsize < info->mti_attr.ma_lmm_size)
658                         info->mti_mdt->mdt_max_mdsize =
659                                                     info->mti_attr.ma_lmm_size;
660                 info->mti_big_lmm_used = 0;
661         }
662         RETURN(rc);
663 }
664
665
666 /* if object is dying, pack the lov/llog data,
667  * parameter info->mti_attr should be valid at this point! */
668 int mdt_handle_last_unlink(struct mdt_thread_info *info, struct mdt_object *mo,
669                            const struct md_attr *ma)
670 {
671         struct mdt_body       *repbody;
672         const struct lu_attr *la = &ma->ma_attr;
673         int rc;
674         ENTRY;
675
676         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
677         LASSERT(repbody != NULL);
678
679         if (ma->ma_valid & MA_INODE)
680                 mdt_pack_attr2body(info, repbody, la, mdt_object_fid(mo));
681
682         if (ma->ma_valid & MA_LOV) {
683                 CERROR("No need in LOV EA upon unlink\n");
684                 dump_stack();
685         }
686         repbody->eadatasize = 0;
687
688         if (ma->ma_cookie_size && (ma->ma_valid & MA_COOKIE)) {
689                 repbody->aclsize = ma->ma_cookie_size;
690                 repbody->valid |= OBD_MD_FLCOOKIE;
691         }
692
693         if (info->mti_mdt->mdt_opts.mo_oss_capa &&
694             exp_connect_flags(info->mti_exp) & OBD_CONNECT_OSS_CAPA &&
695             repbody->valid & OBD_MD_FLEASIZE) {
696                 struct lustre_capa *capa;
697
698                 capa = req_capsule_server_get(info->mti_pill, &RMF_CAPA2);
699                 LASSERT(capa);
700                 capa->lc_opc = CAPA_OPC_OSS_DESTROY;
701                 rc = mo_capa_get(info->mti_env, mdt_object_child(mo), capa, 0);
702                 if (rc)
703                         RETURN(rc);
704
705                 repbody->valid |= OBD_MD_FLOSSCAPA;
706         }
707
708         RETURN(0);
709 }
710
711 static inline unsigned int attr_unpack(__u64 sa_valid) {
712         unsigned int ia_valid = 0;
713
714         if (sa_valid & MDS_ATTR_MODE)
715                 ia_valid |= ATTR_MODE;
716         if (sa_valid & MDS_ATTR_UID)
717                 ia_valid |= ATTR_UID;
718         if (sa_valid & MDS_ATTR_GID)
719                 ia_valid |= ATTR_GID;
720         if (sa_valid & MDS_ATTR_SIZE)
721                 ia_valid |= ATTR_SIZE;
722         if (sa_valid & MDS_ATTR_ATIME)
723                 ia_valid |= ATTR_ATIME;
724         if (sa_valid & MDS_ATTR_MTIME)
725                 ia_valid |= ATTR_MTIME;
726         if (sa_valid & MDS_ATTR_CTIME)
727                 ia_valid |= ATTR_CTIME;
728         if (sa_valid & MDS_ATTR_ATIME_SET)
729                 ia_valid |= ATTR_ATIME_SET;
730         if (sa_valid & MDS_ATTR_MTIME_SET)
731                 ia_valid |= ATTR_MTIME_SET;
732         if (sa_valid & MDS_ATTR_FORCE)
733                 ia_valid |= ATTR_FORCE;
734         if (sa_valid & MDS_ATTR_ATTR_FLAG)
735                 ia_valid |= ATTR_ATTR_FLAG;
736         if (sa_valid & MDS_ATTR_KILL_SUID)
737                 ia_valid |=  ATTR_KILL_SUID;
738         if (sa_valid & MDS_ATTR_KILL_SGID)
739                 ia_valid |= ATTR_KILL_SGID;
740         if (sa_valid & MDS_ATTR_CTIME_SET)
741                 ia_valid |= ATTR_CTIME_SET;
742         if (sa_valid & MDS_ATTR_FROM_OPEN)
743                 ia_valid |= ATTR_FROM_OPEN;
744         if (sa_valid & MDS_ATTR_BLOCKS)
745                 ia_valid |= ATTR_BLOCKS;
746         if (sa_valid & MDS_OPEN_OWNEROVERRIDE)
747                 ia_valid |= MDS_OPEN_OWNEROVERRIDE;
748         return ia_valid;
749 }
750
751 static __u64 mdt_attr_valid_xlate(__u64 in, struct mdt_reint_record *rr,
752                                   struct md_attr *ma)
753 {
754         __u64 out;
755
756         out = 0;
757         if (in & ATTR_MODE)
758                 out |= LA_MODE;
759         if (in & ATTR_UID)
760                 out |= LA_UID;
761         if (in & ATTR_GID)
762                 out |= LA_GID;
763         if (in & ATTR_SIZE)
764                 out |= LA_SIZE;
765         if (in & ATTR_BLOCKS)
766                 out |= LA_BLOCKS;
767
768         if (in & ATTR_FROM_OPEN)
769                 rr->rr_flags |= MRF_OPEN_TRUNC;
770
771         if (in & ATTR_ATIME_SET)
772                 out |= LA_ATIME;
773
774         if (in & ATTR_CTIME_SET)
775                 out |= LA_CTIME;
776
777         if (in & ATTR_MTIME_SET)
778                 out |= LA_MTIME;
779
780         if (in & ATTR_ATTR_FLAG)
781                 out |= LA_FLAGS;
782
783         if (in & ATTR_KILL_SUID)
784                 out |= LA_KILL_SUID;
785
786         if (in & ATTR_KILL_SGID)
787                 out |= LA_KILL_SGID;
788
789         if (in & MDS_OPEN_OWNEROVERRIDE)
790                 ma->ma_attr_flags |= MDS_OWNEROVERRIDE;
791
792         if (in & ATTR_FORCE)
793                 ma->ma_attr_flags |= MDS_PERM_BYPASS;
794
795         /*XXX need ATTR_RAW?*/
796         in &= ~(ATTR_MODE|ATTR_UID|ATTR_GID|ATTR_SIZE|ATTR_BLOCKS|
797                 ATTR_ATIME|ATTR_MTIME|ATTR_CTIME|ATTR_FROM_OPEN|
798                 ATTR_ATIME_SET|ATTR_CTIME_SET|ATTR_MTIME_SET|
799                 ATTR_ATTR_FLAG|ATTR_RAW|MDS_OPEN_OWNEROVERRIDE|
800                 ATTR_FORCE|ATTR_KILL_SUID|ATTR_KILL_SGID);
801         if (in != 0)
802                 CERROR("Unknown attr bits: "LPX64"\n", in);
803         return out;
804 }
805 /* unpacking */
806
807 static int mdt_setattr_unpack_rec(struct mdt_thread_info *info)
808 {
809         struct lu_ucred         *uc  = mdt_ucred(info);
810         struct md_attr          *ma = &info->mti_attr;
811         struct lu_attr          *la = &ma->ma_attr;
812         struct req_capsule      *pill = info->mti_pill;
813         struct mdt_reint_record *rr = &info->mti_rr;
814         struct mdt_rec_setattr  *rec;
815         ENTRY;
816
817         CLASSERT(sizeof(struct mdt_rec_setattr)== sizeof(struct mdt_rec_reint));
818         rec = req_capsule_client_get(pill, &RMF_REC_REINT);
819         if (rec == NULL)
820                 RETURN(-EFAULT);
821
822         /* This prior initialization is needed for old_init_ucred_reint() */
823         uc->uc_fsuid = rec->sa_fsuid;
824         uc->uc_fsgid = rec->sa_fsgid;
825         uc->uc_cap   = rec->sa_cap;
826         uc->uc_suppgids[0] = rec->sa_suppgid;
827         uc->uc_suppgids[1] = -1;
828
829         rr->rr_fid1 = &rec->sa_fid;
830         la->la_valid = mdt_attr_valid_xlate(attr_unpack(rec->sa_valid), rr, ma);
831         la->la_mode  = rec->sa_mode;
832         la->la_flags = rec->sa_attr_flags;
833         la->la_uid   = rec->sa_uid;
834         la->la_gid   = rec->sa_gid;
835         la->la_size  = rec->sa_size;
836         la->la_blocks = rec->sa_blocks;
837         la->la_ctime = rec->sa_ctime;
838         la->la_atime = rec->sa_atime;
839         la->la_mtime = rec->sa_mtime;
840         ma->ma_valid = MA_INODE;
841
842         if (rec->sa_bias & MDS_DATA_MODIFIED)
843                 ma->ma_attr_flags |= MDS_DATA_MODIFIED;
844         else
845                 ma->ma_attr_flags &= ~MDS_DATA_MODIFIED;
846
847         if (req_capsule_get_size(pill, &RMF_CAPA1, RCL_CLIENT))
848                 mdt_set_capainfo(info, 0, rr->rr_fid1,
849                                  req_capsule_client_get(pill, &RMF_CAPA1));
850
851         RETURN(0);
852 }
853
854 static int mdt_ioepoch_unpack(struct mdt_thread_info *info)
855 {
856         struct req_capsule *pill = info->mti_pill;
857         ENTRY;
858
859         if (req_capsule_get_size(pill, &RMF_MDT_EPOCH, RCL_CLIENT))
860                 info->mti_ioepoch =
861                         req_capsule_client_get(pill, &RMF_MDT_EPOCH);
862         else
863                 info->mti_ioepoch = NULL;
864         RETURN(info->mti_ioepoch == NULL ? -EFAULT : 0);
865 }
866
867 static inline int mdt_dlmreq_unpack(struct mdt_thread_info *info) {
868         struct req_capsule      *pill = info->mti_pill;
869
870         if (req_capsule_get_size(pill, &RMF_DLM_REQ, RCL_CLIENT)) {
871                 info->mti_dlm_req = req_capsule_client_get(pill, &RMF_DLM_REQ);
872                 if (info->mti_dlm_req == NULL)
873                         RETURN(-EFAULT);
874         }
875
876         RETURN(0);
877 }
878
879 static int mdt_setattr_unpack(struct mdt_thread_info *info)
880 {
881         struct mdt_reint_record *rr = &info->mti_rr;
882         struct md_attr          *ma = &info->mti_attr;
883         struct req_capsule      *pill = info->mti_pill;
884         int rc;
885         ENTRY;
886
887         rc = mdt_setattr_unpack_rec(info);
888         if (rc)
889                 RETURN(rc);
890
891         /* Epoch may be absent */
892         mdt_ioepoch_unpack(info);
893
894         if (req_capsule_field_present(pill, &RMF_EADATA, RCL_CLIENT)) {
895                 rr->rr_eadata = req_capsule_client_get(pill, &RMF_EADATA);
896                 rr->rr_eadatalen = req_capsule_get_size(pill, &RMF_EADATA,
897                                                         RCL_CLIENT);
898                 ma->ma_lmm_size = rr->rr_eadatalen;
899                 if (ma->ma_lmm_size > 0) {
900                         ma->ma_lmm = (void *)rr->rr_eadata;
901                         ma->ma_valid |= MA_LOV;
902                 }
903         }
904
905         rc = mdt_dlmreq_unpack(info);
906         RETURN(rc);
907 }
908
909 int mdt_close_unpack(struct mdt_thread_info *info)
910 {
911         int rc;
912         ENTRY;
913
914         rc = mdt_ioepoch_unpack(info);
915         if (rc)
916                 RETURN(rc);
917
918         rc = mdt_setattr_unpack_rec(info);
919         if (rc)
920                 RETURN(rc);
921         RETURN(mdt_init_ucred_reint(info));
922 }
923
924 static int mdt_create_unpack(struct mdt_thread_info *info)
925 {
926         struct lu_ucred         *uc  = mdt_ucred(info);
927         struct mdt_rec_create   *rec;
928         struct lu_attr          *attr = &info->mti_attr.ma_attr;
929         struct mdt_reint_record *rr = &info->mti_rr;
930         struct req_capsule      *pill = info->mti_pill;
931         struct md_op_spec       *sp = &info->mti_spec;
932         int rc;
933         ENTRY;
934
935         CLASSERT(sizeof(struct mdt_rec_create) == sizeof(struct mdt_rec_reint));
936         rec = req_capsule_client_get(pill, &RMF_REC_REINT);
937         if (rec == NULL)
938                 RETURN(-EFAULT);
939
940         /* This prior initialization is needed for old_init_ucred_reint() */
941         uc->uc_fsuid = rec->cr_fsuid;
942         uc->uc_fsgid = rec->cr_fsgid;
943         uc->uc_cap   = rec->cr_cap;
944         uc->uc_suppgids[0] = rec->cr_suppgid1;
945         uc->uc_suppgids[1] = -1;
946         uc->uc_umask = rec->cr_umask;
947
948         rr->rr_fid1 = &rec->cr_fid1;
949         rr->rr_fid2 = &rec->cr_fid2;
950         attr->la_mode = rec->cr_mode;
951         attr->la_rdev  = rec->cr_rdev;
952         attr->la_uid   = rec->cr_fsuid;
953         attr->la_gid   = rec->cr_fsgid;
954         attr->la_ctime = rec->cr_time;
955         attr->la_mtime = rec->cr_time;
956         attr->la_atime = rec->cr_time;
957         attr->la_valid = LA_MODE | LA_RDEV | LA_UID | LA_GID | LA_TYPE |
958                          LA_CTIME | LA_MTIME | LA_ATIME;
959         memset(&sp->u, 0, sizeof(sp->u));
960         sp->sp_cr_flags = get_mrc_cr_flags(rec);
961
962         if (req_capsule_get_size(pill, &RMF_CAPA1, RCL_CLIENT))
963                 mdt_set_capainfo(info, 0, rr->rr_fid1,
964                                  req_capsule_client_get(pill, &RMF_CAPA1));
965         mdt_set_capainfo(info, 1, rr->rr_fid2, BYPASS_CAPA);
966
967         rr->rr_name = req_capsule_client_get(pill, &RMF_NAME);
968         rr->rr_namelen = req_capsule_get_size(pill, &RMF_NAME,
969                                               RCL_CLIENT) - 1;
970         LASSERT(rr->rr_name && rr->rr_namelen > 0);
971
972         if (S_ISLNK(attr->la_mode)) {
973                 const char *tgt = NULL;
974
975                 req_capsule_extend(pill, &RQF_MDS_REINT_CREATE_SYM);
976                 if (req_capsule_get_size(pill, &RMF_SYMTGT, RCL_CLIENT)) {
977                         tgt = req_capsule_client_get(pill, &RMF_SYMTGT);
978                         sp->u.sp_symname = tgt;
979                 }
980                 if (tgt == NULL)
981                         RETURN(-EFAULT);
982         } else {
983                 req_capsule_extend(pill, &RQF_MDS_REINT_CREATE_RMT_ACL);
984         }
985
986         rc = mdt_dlmreq_unpack(info);
987         RETURN(rc);
988 }
989
990 static int mdt_link_unpack(struct mdt_thread_info *info)
991 {
992         struct lu_ucred         *uc  = mdt_ucred(info);
993         struct mdt_rec_link     *rec;
994         struct lu_attr          *attr = &info->mti_attr.ma_attr;
995         struct mdt_reint_record *rr = &info->mti_rr;
996         struct req_capsule      *pill = info->mti_pill;
997         int rc;
998         ENTRY;
999
1000         CLASSERT(sizeof(struct mdt_rec_link) == sizeof(struct mdt_rec_reint));
1001         rec = req_capsule_client_get(pill, &RMF_REC_REINT);
1002         if (rec == NULL)
1003                 RETURN(-EFAULT);
1004
1005         /* This prior initialization is needed for old_init_ucred_reint() */
1006         uc->uc_fsuid = rec->lk_fsuid;
1007         uc->uc_fsgid = rec->lk_fsgid;
1008         uc->uc_cap   = rec->lk_cap;
1009         uc->uc_suppgids[0] = rec->lk_suppgid1;
1010         uc->uc_suppgids[1] = rec->lk_suppgid2;
1011
1012         attr->la_uid = rec->lk_fsuid;
1013         attr->la_gid = rec->lk_fsgid;
1014         rr->rr_fid1 = &rec->lk_fid1;
1015         rr->rr_fid2 = &rec->lk_fid2;
1016         attr->la_ctime = rec->lk_time;
1017         attr->la_mtime = rec->lk_time;
1018         attr->la_valid = LA_UID | LA_GID | LA_CTIME | LA_MTIME;
1019
1020         if (req_capsule_get_size(pill, &RMF_CAPA1, RCL_CLIENT))
1021                 mdt_set_capainfo(info, 0, rr->rr_fid1,
1022                                  req_capsule_client_get(pill, &RMF_CAPA1));
1023         if (req_capsule_get_size(pill, &RMF_CAPA2, RCL_CLIENT))
1024                 mdt_set_capainfo(info, 1, rr->rr_fid2,
1025                                  req_capsule_client_get(pill, &RMF_CAPA2));
1026
1027         rr->rr_name = req_capsule_client_get(pill, &RMF_NAME);
1028         if (rr->rr_name == NULL)
1029                 RETURN(-EFAULT);
1030         rr->rr_namelen = req_capsule_get_size(pill, &RMF_NAME, RCL_CLIENT) - 1;
1031
1032         LASSERT(rr->rr_namelen > 0);
1033
1034         rc = mdt_dlmreq_unpack(info);
1035         RETURN(rc);
1036 }
1037
1038 static int mdt_unlink_unpack(struct mdt_thread_info *info)
1039 {
1040         struct lu_ucred         *uc  = mdt_ucred(info);
1041         struct mdt_rec_unlink   *rec;
1042         struct md_attr          *ma = &info->mti_attr;
1043         struct lu_attr          *attr = &info->mti_attr.ma_attr;
1044         struct mdt_reint_record *rr = &info->mti_rr;
1045         struct req_capsule      *pill = info->mti_pill;
1046         int rc;
1047         ENTRY;
1048
1049         CLASSERT(sizeof(struct mdt_rec_unlink) == sizeof(struct mdt_rec_reint));
1050         rec = req_capsule_client_get(pill, &RMF_REC_REINT);
1051         if (rec == NULL)
1052                 RETURN(-EFAULT);
1053
1054         /* This prior initialization is needed for old_init_ucred_reint() */
1055         uc->uc_fsuid = rec->ul_fsuid;
1056         uc->uc_fsgid = rec->ul_fsgid;
1057         uc->uc_cap   = rec->ul_cap;
1058         uc->uc_suppgids[0] = rec->ul_suppgid1;
1059         uc->uc_suppgids[1] = -1;
1060
1061         attr->la_uid = rec->ul_fsuid;
1062         attr->la_gid = rec->ul_fsgid;
1063         rr->rr_fid1 = &rec->ul_fid1;
1064         rr->rr_fid2 = &rec->ul_fid2;
1065         attr->la_ctime = rec->ul_time;
1066         attr->la_mtime = rec->ul_time;
1067         attr->la_mode  = rec->ul_mode;
1068         attr->la_valid = LA_UID | LA_GID | LA_CTIME | LA_MTIME | LA_MODE;
1069
1070         if (req_capsule_get_size(pill, &RMF_CAPA1, RCL_CLIENT))
1071                 mdt_set_capainfo(info, 0, rr->rr_fid1,
1072                                  req_capsule_client_get(pill, &RMF_CAPA1));
1073
1074         rr->rr_name = req_capsule_client_get(pill, &RMF_NAME);
1075         rr->rr_namelen = req_capsule_get_size(pill, &RMF_NAME, RCL_CLIENT) - 1;
1076         if (rr->rr_name == NULL || rr->rr_namelen == 0)
1077                 RETURN(-EFAULT);
1078
1079         if (rec->ul_bias & MDS_VTX_BYPASS)
1080                 ma->ma_attr_flags |= MDS_VTX_BYPASS;
1081         else
1082                 ma->ma_attr_flags &= ~MDS_VTX_BYPASS;
1083
1084         info->mti_spec.no_create = !!req_is_replay(mdt_info_req(info));
1085
1086         rc = mdt_dlmreq_unpack(info);
1087         RETURN(rc);
1088 }
1089
1090 static int mdt_rename_unpack(struct mdt_thread_info *info)
1091 {
1092         struct lu_ucred         *uc = mdt_ucred(info);
1093         struct mdt_rec_rename   *rec;
1094         struct md_attr          *ma = &info->mti_attr;
1095         struct lu_attr          *attr = &info->mti_attr.ma_attr;
1096         struct mdt_reint_record *rr = &info->mti_rr;
1097         struct req_capsule      *pill = info->mti_pill;
1098         int rc;
1099         ENTRY;
1100
1101         CLASSERT(sizeof(struct mdt_rec_rename) == sizeof(struct mdt_rec_reint));
1102         rec = req_capsule_client_get(pill, &RMF_REC_REINT);
1103         if (rec == NULL)
1104                 RETURN(-EFAULT);
1105
1106         /* This prior initialization is needed for old_init_ucred_reint() */
1107         uc->uc_fsuid = rec->rn_fsuid;
1108         uc->uc_fsgid = rec->rn_fsgid;
1109         uc->uc_cap   = rec->rn_cap;
1110         uc->uc_suppgids[0] = rec->rn_suppgid1;
1111         uc->uc_suppgids[1] = rec->rn_suppgid2;
1112
1113         attr->la_uid = rec->rn_fsuid;
1114         attr->la_gid = rec->rn_fsgid;
1115         rr->rr_fid1 = &rec->rn_fid1;
1116         rr->rr_fid2 = &rec->rn_fid2;
1117         attr->la_ctime = rec->rn_time;
1118         attr->la_mtime = rec->rn_time;
1119         /* rename_tgt contains the mode already */
1120         attr->la_mode = rec->rn_mode;
1121         attr->la_valid = LA_UID | LA_GID | LA_CTIME | LA_MTIME | LA_MODE;
1122
1123         if (req_capsule_get_size(pill, &RMF_CAPA1, RCL_CLIENT))
1124                 mdt_set_capainfo(info, 0, rr->rr_fid1,
1125                                  req_capsule_client_get(pill, &RMF_CAPA1));
1126         if (req_capsule_get_size(pill, &RMF_CAPA2, RCL_CLIENT))
1127                 mdt_set_capainfo(info, 1, rr->rr_fid2,
1128                                  req_capsule_client_get(pill, &RMF_CAPA2));
1129
1130         rr->rr_name = req_capsule_client_get(pill, &RMF_NAME);
1131         rr->rr_tgt = req_capsule_client_get(pill, &RMF_SYMTGT);
1132         if (rr->rr_name == NULL || rr->rr_tgt == NULL)
1133                 RETURN(-EFAULT);
1134         rr->rr_namelen = req_capsule_get_size(pill, &RMF_NAME, RCL_CLIENT) - 1;
1135         rr->rr_tgtlen = req_capsule_get_size(pill, &RMF_SYMTGT, RCL_CLIENT) - 1;
1136         LASSERT(rr->rr_namelen > 0 && rr->rr_tgtlen > 0);
1137
1138         if (rec->rn_bias & MDS_VTX_BYPASS)
1139                 ma->ma_attr_flags |= MDS_VTX_BYPASS;
1140         else
1141                 ma->ma_attr_flags &= ~MDS_VTX_BYPASS;
1142
1143         info->mti_spec.no_create = !!req_is_replay(mdt_info_req(info));
1144
1145         rc = mdt_dlmreq_unpack(info);
1146         RETURN(rc);
1147 }
1148
1149 /*
1150  * please see comment above LOV_MAGIC_V1_DEF
1151  */
1152 static void mdt_fix_lov_magic(struct mdt_thread_info *info)
1153 {
1154         struct mdt_reint_record *rr = &info->mti_rr;
1155         struct lov_user_md_v1   *v1;
1156
1157         v1 = (void *)rr->rr_eadata;
1158         LASSERT(v1);
1159
1160         if (unlikely(req_is_replay(mdt_info_req(info)))) {
1161                 if (v1->lmm_magic == LOV_USER_MAGIC_V1) {
1162                         v1->lmm_magic = LOV_MAGIC_V1_DEF;
1163                 } else if (v1->lmm_magic == __swab32(LOV_USER_MAGIC_V1)) {
1164                         v1->lmm_magic = __swab32(LOV_MAGIC_V1_DEF);
1165                 } else if (v1->lmm_magic == LOV_USER_MAGIC_V3) {
1166                         v1->lmm_magic = LOV_MAGIC_V3_DEF;
1167                 } else if (v1->lmm_magic == __swab32(LOV_USER_MAGIC_V3)) {
1168                         v1->lmm_magic = __swab32(LOV_MAGIC_V3_DEF);
1169                 }
1170         }
1171 }
1172
1173 static int mdt_open_unpack(struct mdt_thread_info *info)
1174 {
1175         struct lu_ucred         *uc = mdt_ucred(info);
1176         struct mdt_rec_create   *rec;
1177         struct lu_attr          *attr = &info->mti_attr.ma_attr;
1178         struct req_capsule      *pill = info->mti_pill;
1179         struct mdt_reint_record *rr   = &info->mti_rr;
1180         struct ptlrpc_request   *req  = mdt_info_req(info);
1181         struct md_op_spec       *sp   = &info->mti_spec;
1182         ENTRY;
1183
1184         CLASSERT(sizeof(struct mdt_rec_create) == sizeof(struct mdt_rec_reint));
1185         rec = req_capsule_client_get(pill, &RMF_REC_REINT);
1186         if (rec == NULL)
1187                 RETURN(-EFAULT);
1188
1189         /* This prior initialization is needed for old_init_ucred_reint() */
1190         uc->uc_fsuid = rec->cr_fsuid;
1191         uc->uc_fsgid = rec->cr_fsgid;
1192         uc->uc_cap   = rec->cr_cap;
1193         uc->uc_suppgids[0] = rec->cr_suppgid1;
1194         uc->uc_suppgids[1] = rec->cr_suppgid2;
1195         uc->uc_umask = rec->cr_umask;
1196
1197         rr->rr_fid1   = &rec->cr_fid1;
1198         rr->rr_fid2   = &rec->cr_fid2;
1199         rr->rr_handle = &rec->cr_old_handle;
1200         attr->la_mode = rec->cr_mode;
1201         attr->la_rdev  = rec->cr_rdev;
1202         attr->la_uid   = rec->cr_fsuid;
1203         attr->la_gid   = rec->cr_fsgid;
1204         attr->la_ctime = rec->cr_time;
1205         attr->la_mtime = rec->cr_time;
1206         attr->la_atime = rec->cr_time;
1207         attr->la_valid = LA_MODE  | LA_RDEV  | LA_UID   | LA_GID |
1208                          LA_CTIME | LA_MTIME | LA_ATIME;
1209         memset(&info->mti_spec.u, 0, sizeof(info->mti_spec.u));
1210         info->mti_spec.sp_cr_flags = get_mrc_cr_flags(rec);
1211         /* Do not trigger ASSERTION if client miss to set such flags. */
1212         if (unlikely(info->mti_spec.sp_cr_flags == 0))
1213                 RETURN(-EPROTO);
1214         info->mti_replayepoch = rec->cr_ioepoch;
1215
1216         info->mti_cross_ref = !!(rec->cr_bias & MDS_CROSS_REF);
1217
1218         if (req_capsule_get_size(pill, &RMF_CAPA1, RCL_CLIENT))
1219                 mdt_set_capainfo(info, 0, rr->rr_fid1,
1220                                  req_capsule_client_get(pill, &RMF_CAPA1));
1221         if (req_is_replay(req) &&
1222             req_capsule_get_size(pill, &RMF_CAPA2, RCL_CLIENT)) {
1223 #if 0
1224                 mdt_set_capainfo(info, 1, rr->rr_fid2,
1225                                  req_capsule_client_get(pill, &RMF_CAPA2));
1226 #else
1227                 /*
1228                  * FIXME: capa in replay open request might have expired,
1229                  * bypass capa check. Security hole?
1230                  */
1231                 mdt_set_capainfo(info, 0, rr->rr_fid1, BYPASS_CAPA);
1232                 mdt_set_capainfo(info, 1, rr->rr_fid2, BYPASS_CAPA);
1233 #endif
1234         }
1235
1236         rr->rr_name = req_capsule_client_get(pill, &RMF_NAME);
1237         if (rr->rr_name == NULL)
1238                 RETURN(-EFAULT);
1239         rr->rr_namelen = req_capsule_get_size(pill, &RMF_NAME, RCL_CLIENT) - 1;
1240
1241         if (req_capsule_field_present(pill, &RMF_EADATA, RCL_CLIENT)) {
1242                 rr->rr_eadatalen = req_capsule_get_size(pill, &RMF_EADATA,
1243                                                         RCL_CLIENT);
1244                 if (rr->rr_eadatalen > 0) {
1245                         rr->rr_eadata = req_capsule_client_get(pill,
1246                                                                &RMF_EADATA);
1247                         sp->u.sp_ea.eadatalen = rr->rr_eadatalen;
1248                         sp->u.sp_ea.eadata = rr->rr_eadata;
1249                         sp->no_create = !!req_is_replay(req);
1250                         mdt_fix_lov_magic(info);
1251                 }
1252
1253                 /*
1254                  * Client default md_size may be 0 right after client start,
1255                  * until all osc are connected, set here just some reasonable
1256                  * value to prevent misbehavior.
1257                  */
1258                 if (rr->rr_eadatalen == 0 &&
1259                     !(info->mti_spec.sp_cr_flags & MDS_OPEN_DELAY_CREATE))
1260                         rr->rr_eadatalen = MIN_MD_SIZE;
1261         }
1262
1263         RETURN(0);
1264 }
1265
1266 static int mdt_setxattr_unpack(struct mdt_thread_info *info)
1267 {
1268         struct mdt_reint_record   *rr   = &info->mti_rr;
1269         struct lu_ucred           *uc   = mdt_ucred(info);
1270         struct lu_attr            *attr = &info->mti_attr.ma_attr;
1271         struct req_capsule        *pill = info->mti_pill;
1272         struct mdt_rec_setxattr   *rec;
1273         ENTRY;
1274
1275
1276         CLASSERT(sizeof(struct mdt_rec_setxattr) ==
1277                          sizeof(struct mdt_rec_reint));
1278
1279         rec = req_capsule_client_get(pill, &RMF_REC_REINT);
1280         if (rec == NULL)
1281                 RETURN(-EFAULT);
1282
1283         /* This prior initialization is needed for old_init_ucred_reint() */
1284         uc->uc_fsuid  = rec->sx_fsuid;
1285         uc->uc_fsgid  = rec->sx_fsgid;
1286         uc->uc_cap    = rec->sx_cap;
1287         uc->uc_suppgids[0] = rec->sx_suppgid1;
1288         uc->uc_suppgids[1] = -1;
1289
1290         rr->rr_opcode = rec->sx_opcode;
1291         rr->rr_fid1   = &rec->sx_fid;
1292         attr->la_valid = rec->sx_valid;
1293         attr->la_ctime = rec->sx_time;
1294         attr->la_size = rec->sx_size;
1295         attr->la_flags = rec->sx_flags;
1296
1297         if (req_capsule_get_size(pill, &RMF_CAPA1, RCL_CLIENT))
1298                 mdt_set_capainfo(info, 0, rr->rr_fid1,
1299                                  req_capsule_client_get(pill, &RMF_CAPA1));
1300         else
1301                 mdt_set_capainfo(info, 0, rr->rr_fid1, BYPASS_CAPA);
1302
1303         rr->rr_name = req_capsule_client_get(pill, &RMF_NAME);
1304         if (rr->rr_name == NULL)
1305                 RETURN(-EFAULT);
1306         rr->rr_namelen = req_capsule_get_size(pill, &RMF_NAME, RCL_CLIENT) - 1;
1307         LASSERT(rr->rr_namelen > 0);
1308
1309         if (req_capsule_field_present(pill, &RMF_EADATA, RCL_CLIENT)) {
1310                 rr->rr_eadatalen = req_capsule_get_size(pill, &RMF_EADATA,
1311                                                         RCL_CLIENT);
1312                 if (rr->rr_eadatalen > 0) {
1313                         rr->rr_eadata = req_capsule_client_get(pill,
1314                                                                &RMF_EADATA);
1315                         if (rr->rr_eadata == NULL)
1316                                 RETURN(-EFAULT);
1317                 } else {
1318                         rr->rr_eadata = NULL;
1319                 }
1320         } else if (!(attr->la_valid & OBD_MD_FLXATTRRM)) {
1321                 CDEBUG(D_INFO, "no xattr data supplied\n");
1322                 RETURN(-EFAULT);
1323         }
1324
1325         RETURN(0);
1326 }
1327
1328
1329 typedef int (*reint_unpacker)(struct mdt_thread_info *info);
1330
1331 static reint_unpacker mdt_reint_unpackers[REINT_MAX] = {
1332         [REINT_SETATTR]  = mdt_setattr_unpack,
1333         [REINT_CREATE]   = mdt_create_unpack,
1334         [REINT_LINK]     = mdt_link_unpack,
1335         [REINT_UNLINK]   = mdt_unlink_unpack,
1336         [REINT_RENAME]   = mdt_rename_unpack,
1337         [REINT_OPEN]     = mdt_open_unpack,
1338         [REINT_SETXATTR] = mdt_setxattr_unpack
1339 };
1340
1341 int mdt_reint_unpack(struct mdt_thread_info *info, __u32 op)
1342 {
1343         int rc;
1344         ENTRY;
1345
1346         memset(&info->mti_rr, 0, sizeof(info->mti_rr));
1347         if (op < REINT_MAX && mdt_reint_unpackers[op] != NULL) {
1348                 info->mti_rr.rr_opcode = op;
1349                 rc = mdt_reint_unpackers[op](info);
1350         } else {
1351                 CERROR("Unexpected opcode %d\n", op);
1352                 rc = -EFAULT;
1353         }
1354         RETURN(rc);
1355 }