Whamcloud - gitweb
- landing b_fid.
[fs/lustre-release.git] / lustre / mdc / mdc_lib.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (c) 2003 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21
22 #ifndef EXPORT_SYMTAB
23 # define EXPORT_SYMTAB
24 #endif
25 #define DEBUG_SUBSYSTEM S_MDS
26 #ifndef __KERNEL__
27 # include <fcntl.h>
28 # include <liblustre.h>
29 #endif
30 #include <linux/lustre_idl.h>
31 #include <linux/lustre_net.h>
32 #include <linux/lustre_mds.h>
33 #include "mdc_internal.h"
34
35 #ifndef __KERNEL__
36 /* some liblustre hackings here */
37 #ifndef O_DIRECTORY
38 #define O_DIRECTORY     0
39 #endif
40 #endif
41
42 void mdc_readdir_pack(struct ptlrpc_request *req, int req_offset,
43                       __u64 offset, __u32 size, struct lustre_id *mdc_id)
44 {
45         struct mds_body *b;
46
47         b = lustre_msg_buf(req->rq_reqmsg, req_offset, sizeof (*b));
48         b->id1 = *mdc_id;
49         b->size = offset;                       /* !! */
50         b->nlink = size;                        /* !! */
51 }
52
53 static __u32 mds_pack_open_flags(__u32 flags)
54 {
55         return
56                 (flags & (FMODE_READ | FMODE_WRITE | FMODE_EXEC |
57                           MDS_OPEN_DELAY_CREATE | MDS_OPEN_HAS_EA |
58                           MDS_OPEN_HAS_OBJS)) |
59                 ((flags & O_CREAT) ? MDS_OPEN_CREAT : 0) |
60                 ((flags & O_EXCL) ? MDS_OPEN_EXCL : 0) |
61                 ((flags & O_TRUNC) ? MDS_OPEN_TRUNC : 0) |
62                 ((flags & O_APPEND) ? MDS_OPEN_APPEND : 0) |
63                 ((flags & O_SYNC) ? MDS_OPEN_SYNC : 0) |
64                 ((flags & O_DIRECTORY) ? MDS_OPEN_DIRECTORY : 0) |
65                 0;
66 }
67
68 /* packing of MDS records */
69 void mdc_open_pack(struct lustre_msg *msg, int offset,
70                    struct mdc_op_data *op_data, __u32 mode, __u64 rdev,
71                    __u32 flags, const void *lmm, int lmmlen)
72 {
73         struct mds_rec_create *rec;
74         char *tmp;
75         rec = lustre_msg_buf(msg, offset, sizeof (*rec));
76
77         /* XXX do something about time, uid, gid */
78         rec->cr_opcode = REINT_OPEN;
79         if (op_data != NULL)
80                 rec->cr_id = op_data->id1;
81         memset(&rec->cr_replayid, 0, sizeof(rec->cr_replayid));
82         rec->cr_mode = mode;
83         rec->cr_flags = mds_pack_open_flags(flags);
84         rec->cr_rdev = rdev;
85         rec->cr_time = op_data->mod_time;
86
87         if (op_data->name) {
88                 tmp = lustre_msg_buf(msg, offset + 1,
89                                      op_data->namelen + 1);
90                 LOGL0(op_data->name, op_data->namelen, tmp);
91         }
92
93         if (lmm) {
94                 rec->cr_flags |= MDS_OPEN_HAS_EA;
95                 tmp = lustre_msg_buf(msg, offset + 2, lmmlen);
96                 memcpy (tmp, lmm, lmmlen);
97         }
98 }
99
100 void mdc_getattr_pack(struct lustre_msg *msg, int offset, int valid,
101                       int flags, struct mdc_op_data *data)
102 {
103         struct mds_body *b;
104         b = lustre_msg_buf(msg, offset, sizeof (*b));
105
106         b->valid = valid;
107         b->flags = flags;
108
109         b->id1 = data->id1;
110         b->id2 = data->id2;
111         if (data->name) {
112                 char *tmp;
113                 tmp = lustre_msg_buf(msg, offset + 1,
114                                      data->namelen + 1);
115                 LOGL0(data->name, data->namelen, tmp);
116         }
117 }
118
119 void mdc_close_pack(struct ptlrpc_request *req, int offset, struct obdo *oa,
120                     int valid, struct obd_client_handle *och)
121 {
122         struct mds_body *body;
123
124         body = lustre_msg_buf(req->rq_reqmsg, offset, sizeof(*body));
125         mdc_pack_id(&body->id1, oa->o_id, 0, oa->o_mode, 0, 0);
126
127         memcpy(&body->handle, &och->och_fh, sizeof(body->handle));
128         if (oa->o_valid & OBD_MD_FLATIME) {
129                 body->atime = oa->o_atime;
130                 body->valid |= OBD_MD_FLATIME;
131         }
132         if (oa->o_valid & OBD_MD_FLMTIME) {
133                 body->mtime = oa->o_mtime;
134                 body->valid |= OBD_MD_FLMTIME;
135         }
136         if (oa->o_valid & OBD_MD_FLCTIME) {
137                 body->ctime = oa->o_ctime;
138                 body->valid |= OBD_MD_FLCTIME;
139         }
140         if (oa->o_valid & OBD_MD_FLSIZE) {
141                 body->size = oa->o_size;
142                 body->valid |= OBD_MD_FLSIZE;
143         }
144         if (oa->o_valid & OBD_MD_FLBLOCKS) {
145                 body->blocks = oa->o_blocks;
146                 body->valid |= OBD_MD_FLBLOCKS;
147         }
148         if (oa->o_valid & OBD_MD_FLFLAGS) {
149                 body->flags = oa->o_flags;
150                 body->valid |= OBD_MD_FLFLAGS;
151         }
152 }