Whamcloud - gitweb
9162f78a5bbea8f6b4b832b0fe99b61ff9947380
[fs/lustre-release.git] / lustre / include / lustre / lustre_idl.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
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/include/lustre/lustre_idl.h
37  *
38  * Lustre wire protocol definitions.
39  *
40  * ALL structs passing over the wire should be declared here.  Structs
41  * that are used in interfaces with userspace should go in lustre_user.h.
42  *
43  * All structs being declared here should be built from simple fixed-size
44  * types (__u8, __u16, __u32, __u64) or be built from other types or
45  * structs also declared in this file.  Similarly, all flags and magic
46  * values in those structs should also be declared here.  This ensures
47  * that the Lustre wire protocol is not influenced by external dependencies.
48  *
49  * The only other acceptable items in this file are VERY SIMPLE accessor
50  * functions to avoid callers grubbing inside the structures, and the
51  * prototypes of the swabber functions for each struct.  Nothing that
52  * depends on external functions or definitions should be in here.
53  *
54  * Structs must be properly aligned to put 64-bit values on an 8-byte
55  * boundary.  Any structs being added here must also be added to
56  * utils/wirecheck.c and "make newwiretest" run to regenerate the
57  * utils/wiretest.c sources.  This allows us to verify that wire structs
58  * have the proper alignment/size on all architectures.
59  *
60  * DO NOT CHANGE any of the structs, flags, values declared here and used
61  * in released Lustre versions.  Some structs may have padding fields that
62  * can be used.  Some structs might allow addition at the end (verify this
63  * in the code to ensure that new/old clients that see this larger struct
64  * do not fail, otherwise you need to implement protocol compatibility).
65  *
66  * We assume all nodes are either little-endian or big-endian, and we
67  * always send messages in the sender's native format.  The receiver
68  * detects the message format by checking the 'magic' field of the message.
69  *
70  * Each wire type has corresponding 'lustre_swab_xxxtypexxx()' routines,
71  * implemented either here, inline (trivial implementations) or in
72  * ptlrpc/pack_generic.c.  These 'swabbers' convert the type from "other"
73  * endian, in-place in the message buffer.
74  *
75  * A swabber takes a single pointer argument.  The caller must already have
76  * verified that the length of the message buffer >= sizeof (type).
77  *
78  * For variable length types, a second 'lustre_swab_v_xxxtypexxx()' routine
79  * may be defined that swabs just the variable part, after the caller has
80  * verified that the message buffer is large enough.
81  */
82
83 #ifndef _LUSTRE_IDL_H_
84 #define _LUSTRE_IDL_H_
85
86 #if defined(__linux__)
87 #include <linux/lustre_types.h>
88 #elif defined(__APPLE__)
89 #include <darwin/lustre_types.h>
90 #elif defined(__WINNT__)
91 #include <winnt/lustre_types.h>
92 #else
93 #error Unsupported operating system.
94 #endif
95
96 /* Defn's shared with user-space. */
97 #include <lustre/lustre_user.h>
98 #include <lustre_ver.h>
99 #include <lustre/ll_fiemap.h>
100
101 #include <libcfs/kp30.h>
102
103 /*
104  * this file contains all data structures used in Lustre interfaces:
105  * - obdo and obd_request records
106  * - mds_request records
107  * - ldlm data
108  * - ioctl's
109  */
110
111 /*
112  *  GENERAL STUFF
113  */
114 /* FOO_REQUEST_PORTAL is for incoming requests on the FOO
115  * FOO_REPLY_PORTAL   is for incoming replies on the FOO
116  * FOO_BULK_PORTAL    is for incoming bulk on the FOO
117  */
118
119 #define CONNMGR_REQUEST_PORTAL          1
120 #define CONNMGR_REPLY_PORTAL            2
121 //#define OSC_REQUEST_PORTAL            3
122 #define OSC_REPLY_PORTAL                4
123 //#define OSC_BULK_PORTAL               5
124 #define OST_IO_PORTAL                   6
125 #define OST_CREATE_PORTAL               7
126 #define OST_BULK_PORTAL                 8
127 //#define MDC_REQUEST_PORTAL            9
128 #define MDC_REPLY_PORTAL               10
129 //#define MDC_BULK_PORTAL              11
130 #define MDS_REQUEST_PORTAL             12
131 //#define MDS_REPLY_PORTAL             13
132 #define MDS_BULK_PORTAL                14
133 #define LDLM_CB_REQUEST_PORTAL         15
134 #define LDLM_CB_REPLY_PORTAL           16
135 #define LDLM_CANCEL_REQUEST_PORTAL     17
136 #define LDLM_CANCEL_REPLY_PORTAL       18
137 //#define PTLBD_REQUEST_PORTAL           19
138 //#define PTLBD_REPLY_PORTAL             20
139 //#define PTLBD_BULK_PORTAL              21
140 #define MDS_SETATTR_PORTAL             22
141 #define MDS_READPAGE_PORTAL            23
142 #define MDS_MDS_PORTAL                 24
143
144 #define MGC_REPLY_PORTAL               25
145 #define MGS_REQUEST_PORTAL             26
146 #define MGS_REPLY_PORTAL               27
147 #define OST_REQUEST_PORTAL             28
148 #define FLD_REQUEST_PORTAL             29
149 #define SEQ_METADATA_PORTAL            30
150 #define SEQ_DATA_PORTAL                31
151 #define SEQ_CONTROLLER_PORTAL          32
152
153 #define SVC_KILLED               1
154 #define SVC_EVENT                2
155 #define SVC_SIGNAL               4
156 #define SVC_RUNNING              8
157 #define SVC_STOPPING            16
158 #define SVC_STOPPED             32
159
160 /* packet types */
161 #define PTL_RPC_MSG_REQUEST 4711
162 #define PTL_RPC_MSG_ERR     4712
163 #define PTL_RPC_MSG_REPLY   4713
164
165 /* DON'T use swabbed values of MAGIC as magic! */
166 #define LUSTRE_MSG_MAGIC_V1 0x0BD00BD0
167 #define LUSTRE_MSG_MAGIC_V2 0x0BD00BD3
168
169 #define LUSTRE_MSG_MAGIC_V1_SWABBED 0xD00BD00B
170 #define LUSTRE_MSG_MAGIC_V2_SWABBED 0xD30BD00B
171
172 #define LUSTRE_MSG_MAGIC LUSTRE_MSG_MAGIC_V2
173
174 #define PTLRPC_MSG_VERSION  0x00000003
175 #define LUSTRE_VERSION_MASK 0xffff0000
176 #define LUSTRE_OBD_VERSION  0x00010000
177 #define LUSTRE_MDS_VERSION  0x00020000
178 #define LUSTRE_OST_VERSION  0x00030000
179 #define LUSTRE_DLM_VERSION  0x00040000
180 #define LUSTRE_LOG_VERSION  0x00050000
181 #define LUSTRE_MGS_VERSION  0x00060000
182
183 struct lustre_handle {
184         __u64 cookie;
185 };
186 #define DEAD_HANDLE_MAGIC 0xdeadbeefcafebabeULL
187
188 static inline int lustre_handle_is_used(struct lustre_handle *lh)
189 {
190         return lh->cookie != 0ull;
191 }
192
193 static inline int lustre_handle_equal(struct lustre_handle *lh1,
194                                       struct lustre_handle *lh2)
195 {
196         return lh1->cookie == lh2->cookie;
197 }
198
199 static inline void lustre_handle_copy(struct lustre_handle *tgt,
200                                       struct lustre_handle *src)
201 {
202         tgt->cookie = src->cookie;
203 }
204
205 /* we depend on this structure to be 8-byte aligned */
206 /* this type is only endian-adjusted in lustre_unpack_msg() */
207 struct lustre_msg_v1 {
208         struct lustre_handle lm_handle;
209         __u32 lm_magic;
210         __u32 lm_type;
211         __u32 lm_version;
212         __u32 lm_opc;
213         __u64 lm_last_xid;
214         __u64 lm_last_committed;
215         __u64 lm_transno;
216         __u32 lm_status;
217         __u32 lm_flags;
218         __u32 lm_conn_cnt;
219         __u32 lm_bufcount;
220         __u32 lm_buflens[0];
221 };
222
223 /* flags for lm_flags */
224 #define MSGHDR_AT_SUPPORT               0x1
225
226 #define lustre_msg lustre_msg_v2
227 /* we depend on this structure to be 8-byte aligned */
228 /* this type is only endian-adjusted in lustre_unpack_msg() */
229 struct lustre_msg_v2 {
230         __u32 lm_bufcount;
231         __u32 lm_secflvr;
232         __u32 lm_magic;
233         __u32 lm_repsize;
234         __u32 lm_cksum;
235         __u32 lm_flags;
236         __u32 lm_padding_2;
237         __u32 lm_padding_3;
238         __u32 lm_buflens[0];
239 };
240
241 /* without gss, ptlrpc_body is put at the first buffer. */
242 #define PTLRPC_NUM_VERSIONS     4
243 struct ptlrpc_body {
244         struct lustre_handle pb_handle;
245         __u32 pb_type;
246         __u32 pb_version;
247         __u32 pb_opc;
248         __u32 pb_status;
249         __u64 pb_last_xid;
250         __u64 pb_last_seen; /* not used */
251         __u64 pb_last_committed;
252         __u64 pb_transno;
253         __u32 pb_flags;
254         __u32 pb_op_flags;
255         __u32 pb_conn_cnt;
256         __u32 pb_timeout;  /* for req, the deadline, for rep, the service est */
257         __u32 pb_service_time; /* for rep, actual service time */
258         __u32 pb_limit;
259         __u64 pb_slv;
260         /* VBR: pre-versions */
261         __u64 pb_pre_versions[PTLRPC_NUM_VERSIONS];
262         /* padding for future needs */
263         __u64 pb_padding[4];
264 };
265
266 extern void lustre_swab_ptlrpc_body(struct ptlrpc_body *pb, int msgsize);
267
268 /* message body offset for lustre_msg_v2 */
269 /* ptlrpc body offset in all request/reply messages */
270 #define MSG_PTLRPC_BODY_OFF             0
271
272 /* normal request/reply message record offset */
273 #define REQ_REC_OFF                     1
274 #define REPLY_REC_OFF                   1
275
276 /* ldlm request message body offset */
277 #define DLM_LOCKREQ_OFF                 1 /* lockreq offset */
278 #define DLM_REQ_REC_OFF                 2 /* normal dlm request record offset */
279
280 /* ldlm intent lock message body offset */
281 #define DLM_INTENT_IT_OFF               2 /* intent lock it offset */
282 #define DLM_INTENT_REC_OFF              3 /* intent lock record offset */
283
284 /* ldlm reply message body offset */
285 #define DLM_LOCKREPLY_OFF               1 /* lockrep offset */
286 #define DLM_REPLY_REC_OFF               2 /* reply record offset */
287
288 /* only use in req->rq_{req,rep}_swab_mask */
289 #define MSG_PTLRPC_HEADER_OFF           31
290
291 /* Flags that are operation-specific go in the top 16 bits. */
292 #define MSG_OP_FLAG_MASK   0xffff0000
293 #define MSG_OP_FLAG_SHIFT  16
294
295 /* Flags that apply to all requests are in the bottom 16 bits */
296 #define MSG_GEN_FLAG_MASK     0x0000ffff
297 #define MSG_LAST_REPLAY           0x0001
298 #define MSG_RESENT                0x0002
299 #define MSG_REPLAY                0x0004
300 /* #define MSG_AT_SUPPORT         0x0008
301  * This was used in early prototypes of adaptive timeouts, and while there
302  * shouldn't be any users of that code there also isn't a need for using this
303  * bits. Defer usage until at least 1.10 to avoid potential conflict. */
304 #define MSG_DELAY_REPLAY          0x0010
305 #define MSG_VERSION_REPLAY        0x0020
306 #define MSG_REQ_REPLAY_DONE       0x0040
307 #define MSG_LOCK_REPLAY_DONE      0x0080
308
309 /*
310  * Flags for all connect opcodes (MDS_CONNECT, OST_CONNECT)
311  */
312
313 #define MSG_CONNECT_RECOVERING  0x00000001
314 #define MSG_CONNECT_RECONNECT   0x00000002
315 #define MSG_CONNECT_REPLAYABLE  0x00000004
316 //#define MSG_CONNECT_PEER        0x8
317 #define MSG_CONNECT_LIBCLIENT   0x00000010
318 #define MSG_CONNECT_INITIAL     0x00000020
319 #define MSG_CONNECT_ASYNC       0x00000040
320 #define MSG_CONNECT_NEXT_VER    0x00000080 /* use next version of lustre_msg */
321 #define MSG_CONNECT_TRANSNO     0x00000100 /* report transno */
322 #define MSG_CONNECT_DELAYED     0x00000200
323
324 /* Connect flags */
325 #define OBD_CONNECT_RDONLY            0x1ULL /*client allowed read-only access*/
326 #define OBD_CONNECT_INDEX             0x2ULL /*connect to specific LOV idx */
327 #define OBD_CONNECT_MDS               0x4ULL /*connect from MDT to OST */
328 #define OBD_CONNECT_GRANT             0x8ULL /*OSC acquires grant at connect */
329 #define OBD_CONNECT_SRVLOCK          0x10ULL /*server takes locks for client */
330 #define OBD_CONNECT_VERSION          0x20ULL /*Lustre versions in ocd */
331 #define OBD_CONNECT_REQPORTAL        0x40ULL /*Separate non-IO request portal */
332 #define OBD_CONNECT_ACL              0x80ULL /*access control lists */
333 #define OBD_CONNECT_XATTR           0x100ULL /*client use extended attributes */
334 #define OBD_CONNECT_CROW            0x200ULL /*MDS+OST create objects on write*/
335 #define OBD_CONNECT_TRUNCLOCK       0x400ULL /*locks on server for punch */
336 #define OBD_CONNECT_TRANSNO         0x800ULL /*replay sends initial transno */
337 #define OBD_CONNECT_IBITS          0x1000ULL /*support for inodebits locks */
338 #define OBD_CONNECT_JOIN           0x2000ULL /*files can be concatenated */
339 #define OBD_CONNECT_ATTRFID        0x4000ULL /*Server supports GetAttr By Fid */
340 #define OBD_CONNECT_NODEVOH        0x8000ULL /*No open handle on special nodes*/
341 #define OBD_CONNECT_RMT_CLIENT    0x10000ULL /*Remote client */
342 #define OBD_CONNECT_RMT_CLIENT_FORCE 0x20000ULL /*Remote client by force */
343 #define OBD_CONNECT_BRW_SIZE      0x40000ULL /*Max bytes per rpc */
344 #define OBD_CONNECT_QUOTA64       0x80000ULL /*64bit qunit_data.qd_count */
345 #define OBD_CONNECT_MDS_CAPA     0x100000ULL /*MDS capability */
346 #define OBD_CONNECT_OSS_CAPA     0x200000ULL /*OSS capability */
347 #define OBD_CONNECT_CANCELSET    0x400000ULL /*Early batched cancels. */
348 #define OBD_CONNECT_SOM        0x00800000ULL /*Size on MDS */
349 #define OBD_CONNECT_AT         0x01000000ULL /*client uses adaptive timeouts */
350 #define OBD_CONNECT_LRU_RESIZE 0x02000000ULL /*LRU resize feature. */
351 #define OBD_CONNECT_MDS_MDS    0x04000000ULL /*MDS-MDS connection */
352 #define OBD_CONNECT_REAL       0x08000000ULL /*real connection */
353 #define OBD_CONNECT_CHANGE_QS  0x10000000ULL /*shrink/enlarge qunit b=10600 */
354 #define OBD_CONNECT_CKSUM      0x20000000ULL /*support several cksum algos */
355 #define OBD_CONNECT_FID        0x40000000ULL /*FID is supported by server */
356 #define OBD_CONNECT_VBR        0x80000000ULL /*version based recovery */
357 #define OBD_CONNECT_LOV_V3    0x100000000ULL /*client supports LOV v3 EA */
358 #define OBD_CONNECT_GRANT_SHRINK  0x200000000ULL /* support grant shrink */
359 #define OBD_CONNECT_SKIP_ORPHAN   0x400000000ULL /* don't reuse orphan objids */
360 /* also update obd_connect_names[] for lprocfs_rd_connect_flags()
361  * and lustre/utils/wirecheck.c */
362
363 #ifdef HAVE_LRU_RESIZE_SUPPORT
364 #define LRU_RESIZE_CONNECT_FLAG OBD_CONNECT_LRU_RESIZE
365 #else
366 #define LRU_RESIZE_CONNECT_FLAG 0
367 #endif
368
369 #define MDS_CONNECT_SUPPORTED  (OBD_CONNECT_RDONLY | OBD_CONNECT_VERSION | \
370                                 OBD_CONNECT_ACL | OBD_CONNECT_XATTR | \
371                                 OBD_CONNECT_IBITS | OBD_CONNECT_JOIN | \
372                                 OBD_CONNECT_NODEVOH | OBD_CONNECT_ATTRFID | \
373                                 OBD_CONNECT_CANCELSET | OBD_CONNECT_AT | \
374                                 LRU_RESIZE_CONNECT_FLAG | OBD_CONNECT_VBR |\
375                                 OBD_CONNECT_LOV_V3)
376 #define OST_CONNECT_SUPPORTED  (OBD_CONNECT_SRVLOCK | OBD_CONNECT_GRANT | \
377                                 OBD_CONNECT_REQPORTAL | OBD_CONNECT_VERSION | \
378                                 OBD_CONNECT_TRUNCLOCK | OBD_CONNECT_INDEX | \
379                                 OBD_CONNECT_BRW_SIZE | OBD_CONNECT_QUOTA64 | \
380                                 OBD_CONNECT_CANCELSET | OBD_CONNECT_AT | \
381                                 LRU_RESIZE_CONNECT_FLAG | OBD_CONNECT_CKSUM | \
382                                 OBD_CONNECT_VBR | OBD_CONNECT_CHANGE_QS | \
383                                 OBD_CONNECT_MDS | OBD_CONNECT_GRANT_SHRINK | \
384                                 OBD_CONNECT_SKIP_ORPHAN)
385 #define ECHO_CONNECT_SUPPORTED (0)
386 #define MGS_CONNECT_SUPPORTED  (OBD_CONNECT_VERSION | OBD_CONNECT_AT)
387
388 #define OBD_OCD_VERSION(major,minor,patch,fix) (((major)<<24) + ((minor)<<16) +\
389                                                 ((patch)<<8) + (fix))
390 #define OBD_OCD_VERSION_MAJOR(version) ((int)((version)>>24)&255)
391 #define OBD_OCD_VERSION_MINOR(version) ((int)((version)>>16)&255)
392 #define OBD_OCD_VERSION_PATCH(version) ((int)((version)>>8)&255)
393 #define OBD_OCD_VERSION_FIX(version)   ((int)(version)&255)
394
395 /* This structure is used for both request and reply.
396  *
397  * If we eventually have separate connect data for different types, which we
398  * almost certainly will, then perhaps we stick a union in here. */
399 struct obd_connect_data {
400         __u64 ocd_connect_flags; /* OBD_CONNECT_* per above */
401         __u32 ocd_version;       /* lustre release version number */
402         __u32 ocd_grant;         /* initial cache grant amount (bytes) */
403         __u32 ocd_index;         /* LOV index to connect to */
404         __u32 ocd_brw_size;      /* Maximum BRW size in bytes */
405         __u64 ocd_ibits_known;   /* inode bits this client understands */
406         __u32 ocd_nllu;          /* non-local-lustre-user */
407         __u32 ocd_nllg;          /* non-local-lustre-group */
408         __u64 ocd_transno;       /* Used in lustre 1.8 */
409         __u32 ocd_group;         /* Used in lustre 1.8 */
410         __u32 ocd_cksum_types;   /* supported checksum algorithms */
411         __u64 padding1;          /* also fix lustre_swab_connect */
412         __u64 padding2;          /* also fix lustre_swab_connect */
413 };
414
415 extern void lustre_swab_connect(struct obd_connect_data *ocd);
416
417 /* b1_6 has smaller body. The defines below is for interoperability */
418 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2,0,0,0)
419 #define PTLRPC_INTEROP_1_6      1
420 #define PTLRPC_BODY_MIN_SIZE    offsetof(struct ptlrpc_body, pb_pre_versions)
421 #else
422 #define PTLRPC_BODY_MIN_SIZE    sizeof(struct ptlrpc_body)
423 #endif
424
425 /*
426  * Supported checksum algorithms. Up to 32 checksum types are supported.
427  * (32-bit mask stored in obd_connect_data::ocd_cksum_types)
428  * Please update DECLARE_CKSUM_NAME/OBD_CKSUM_ALL in obd.h when adding a new
429  * algorithm and also the OBD_FL_CKSUM* flags.
430  */
431 typedef enum {
432         OBD_CKSUM_CRC32 = 0x00000001,
433         OBD_CKSUM_ADLER = 0x00000002,
434 } cksum_type_t;
435
436 /*
437  *   OST requests: OBDO & OBD request records
438  */
439
440 /* opcodes */
441 typedef enum {
442         OST_REPLY      =  0,       /* reply ? */
443         OST_GETATTR    =  1,
444         OST_SETATTR    =  2,
445         OST_READ       =  3,
446         OST_WRITE      =  4,
447         OST_CREATE     =  5,
448         OST_DESTROY    =  6,
449         OST_GET_INFO   =  7,
450         OST_CONNECT    =  8,
451         OST_DISCONNECT =  9,
452         OST_PUNCH      = 10,
453         OST_OPEN       = 11,
454         OST_CLOSE      = 12,
455         OST_STATFS     = 13,
456 /*      OST_SAN_READ   = 14,    deprecated */
457 /*      OST_SAN_WRITE  = 15,    deprecated */
458         OST_SYNC       = 16,
459         OST_SET_INFO   = 17,
460         OST_QUOTACHECK = 18,
461         OST_QUOTACTL   = 19,
462         OST_QUOTA_ADJUST_QUNIT = 20,
463         OST_LAST_OPC
464 } ost_cmd_t;
465 #define OST_FIRST_OPC  OST_REPLY
466
467 typedef __u64 obd_id;
468 typedef __u64 obd_gr;
469 typedef __u64 obd_time;
470 typedef __u64 obd_size;
471 typedef __u64 obd_off;
472 typedef __u64 obd_blocks;
473 typedef __u64 obd_valid;
474 typedef __u32 obd_blksize;
475 typedef __u32 obd_mode;
476 typedef __u32 obd_uid;
477 typedef __u32 obd_gid;
478 typedef __u32 obd_flag;
479 typedef __u32 obd_count;
480
481 enum obdo_flags {
482         OBD_FL_INLINEDATA   = 0x00000001,
483         OBD_FL_OBDMDEXISTS  = 0x00000002,
484         OBD_FL_DELORPHAN    = 0x00000004, /* if set in o_flags delete orphans */
485         OBD_FL_NORPC        = 0x00000008, /* set in o_flags do in OSC not OST */
486         OBD_FL_IDONLY       = 0x00000010, /* set in o_flags only adjust obj id*/
487         OBD_FL_RECREATE_OBJS= 0x00000020, /* recreate missing obj */
488         OBD_FL_DEBUG_CHECK  = 0x00000040, /* echo client/server debug check */
489         OBD_FL_NO_USRQUOTA  = 0x00000100, /* the object's owner is over quota */
490         OBD_FL_NO_GRPQUOTA  = 0x00000200, /* the object's group is over quota */
491         OBD_FL_CREATE_CROW  = 0x00000400, /* object should be create on write */
492         OBD_FL_TRUNCLOCK    = 0x00000800, /* delegate DLM locking during punch*/
493         OBD_FL_CKSUM_CRC32  = 0x00001000, /* CRC32 checksum type */
494         OBD_FL_CKSUM_ADLER  = 0x00002000, /* ADLER checksum type */
495         OBD_FL_CKSUM_RSVD1  = 0x00004000, /* for future cksum types */
496         OBD_FL_CKSUM_RSVD2  = 0x00008000, /* for future cksum types */
497         OBD_FL_CKSUM_RSVD3  = 0x00010000, /* for future cksum types */
498         OBD_FL_SHRINK_GRANT = 0x00020000, /* object shrink the grant */
499
500         OBD_FL_CKSUM_ALL    = OBD_FL_CKSUM_CRC32 | OBD_FL_CKSUM_ADLER,
501
502         /* mask for local-only flag, which won't be sent over network */
503         OBD_FL_LOCAL_MASK   = 0xF0000000,
504         /* temporary OBDO used by osc_brw_async (see bug 18364) */
505         OBD_FL_TEMPORARY    = 0x10000000,
506 };
507
508 #define LOV_MAGIC_V1      0x0BD10BD0
509 #define LOV_MAGIC         LOV_MAGIC_V1
510 #define LOV_MAGIC_JOIN    0x0BD20BD0
511 #define LOV_MAGIC_V3      0x0BD30BD0
512
513 #define LOV_PATTERN_RAID0 0x001   /* stripes are used round-robin */
514 #define LOV_PATTERN_RAID1 0x002   /* stripes are mirrors of each other */
515 #define LOV_PATTERN_FIRST 0x100   /* first stripe is not in round-robin */
516 #define LOV_PATTERN_CMOBD 0x200
517
518 #define LOV_OBJECT_GROUP_DEFAULT ~0ULL
519 #define LOV_OBJECT_GROUP_CLEAR 0ULL
520
521 #define lov_ost_data lov_ost_data_v1
522 struct lov_ost_data_v1 {          /* per-stripe data structure (little-endian)*/
523         __u64 l_object_id;        /* OST object ID */
524         __u64 l_object_gr;        /* OST object group (creating MDS number) */
525         __u32 l_ost_gen;          /* generation of this l_ost_idx */
526         __u32 l_ost_idx;          /* OST index in LOV (lov_tgt_desc->tgts) */
527 };
528
529 #define lov_mds_md lov_mds_md_v1
530 struct lov_mds_md_v1 {            /* LOV EA mds/wire data (little-endian) */
531         __u32 lmm_magic;          /* magic number = LOV_MAGIC_V1 */
532         __u32 lmm_pattern;        /* LOV_PATTERN_RAID0, LOV_PATTERN_RAID1 */
533         __u64 lmm_object_id;      /* LOV object ID */
534         __u64 lmm_object_gr;      /* LOV object group */
535         __u32 lmm_stripe_size;    /* size of stripe in bytes */
536         __u32 lmm_stripe_count;   /* num stripes in use for this object */
537         struct lov_ost_data_v1 lmm_objects[0]; /* per-stripe data */
538 };
539
540 struct lov_mds_md_v3 {            /* LOV EA mds/wire data (little-endian) */
541         __u32 lmm_magic;          /* magic number = LOV_MAGIC_V3 */
542         __u32 lmm_pattern;        /* LOV_PATTERN_RAID0, LOV_PATTERN_RAID1 */
543         __u64 lmm_object_id;      /* LOV object ID */
544         __u64 lmm_object_gr;      /* LOV object group */
545         __u32 lmm_stripe_size;    /* size of stripe in bytes */
546         __u32 lmm_stripe_count;   /* num stripes in use for this object */
547         char  lmm_pool_name[LOV_MAXPOOLNAME]; /* must be 32bit aligned */
548         struct lov_ost_data_v1 lmm_objects[0]; /* per-stripe data */
549 };
550
551
552 #define OBD_MD_FLID        (0x00000001ULL) /* object ID */
553 #define OBD_MD_FLATIME     (0x00000002ULL) /* access time */
554 #define OBD_MD_FLMTIME     (0x00000004ULL) /* data modification time */
555 #define OBD_MD_FLCTIME     (0x00000008ULL) /* change time */
556 #define OBD_MD_FLSIZE      (0x00000010ULL) /* size */
557 #define OBD_MD_FLBLOCKS    (0x00000020ULL) /* allocated blocks count */
558 #define OBD_MD_FLBLKSZ     (0x00000040ULL) /* block size */
559 #define OBD_MD_FLMODE      (0x00000080ULL) /* access bits (mode & ~S_IFMT) */
560 #define OBD_MD_FLTYPE      (0x00000100ULL) /* object type (mode & S_IFMT) */
561 #define OBD_MD_FLUID       (0x00000200ULL) /* user ID */
562 #define OBD_MD_FLGID       (0x00000400ULL) /* group ID */
563 #define OBD_MD_FLFLAGS     (0x00000800ULL) /* flags word */
564 #define OBD_MD_FLNLINK     (0x00002000ULL) /* link count */
565 #define OBD_MD_FLGENER     (0x00004000ULL) /* generation number */
566 /*#define OBD_MD_FLINLINE    (0x00008000ULL) inline data. used until 1.6.5 */
567 #define OBD_MD_FLRDEV      (0x00010000ULL) /* device number */
568 #define OBD_MD_FLEASIZE    (0x00020000ULL) /* extended attribute data */
569 #define OBD_MD_LINKNAME    (0x00040000ULL) /* symbolic link target */
570 #define OBD_MD_FLHANDLE    (0x00080000ULL) /* file/lock handle */
571 #define OBD_MD_FLCKSUM     (0x00100000ULL) /* bulk data checksum */
572 #define OBD_MD_FLQOS       (0x00200000ULL) /* quality of service stats */
573 /*#define OBD_MD_FLOSCOPQ    (0x00400000ULL) osc opaque data, never used */
574 #define OBD_MD_FLCOOKIE    (0x00800000ULL) /* log cancellation cookie */
575 #define OBD_MD_FLGROUP     (0x01000000ULL) /* group */
576 #define OBD_MD_FLFID       (0x02000000ULL) /* ->ost write inline fid */
577 #define OBD_MD_FLEPOCH     (0x04000000ULL) /* ->ost write easize is epoch */
578                                            /* ->mds if epoch opens or closes */
579 #define OBD_MD_FLGRANT     (0x08000000ULL) /* ost preallocation space grant */
580 #define OBD_MD_FLDIREA     (0x10000000ULL) /* dir's extended attribute data */
581 #define OBD_MD_FLUSRQUOTA  (0x20000000ULL) /* over quota flags sent from ost */
582 #define OBD_MD_FLGRPQUOTA  (0x40000000ULL) /* over quota flags sent from ost */
583 #define OBD_MD_FLMODEASIZE (0x80000000ULL) /* EA size will be changed */
584
585 #define OBD_MD_MDS         (0x0000000100000000ULL) /* where an inode lives on */
586 #define OBD_MD_REINT       (0x0000000200000000ULL) /* reintegrate oa */
587 #define OBD_MD_MEA         (0x0000000400000000ULL) /* CMD split EA  */
588
589 #define OBD_MD_FLXATTR     (0x0000001000000000ULL) /* xattr */
590 #define OBD_MD_FLXATTRLS   (0x0000002000000000ULL) /* xattr list */
591 #define OBD_MD_FLXATTRRM   (0x0000004000000000ULL) /* xattr remove */
592 #define OBD_MD_FLACL       (0x0000008000000000ULL) /* ACL */
593 #define OBD_MD_FLRMTPERM   (0x0000010000000000ULL) /* remote permission */
594 #define OBD_MD_FLMDSCAPA   (0x0000020000000000ULL) /* MDS capability */
595 #define OBD_MD_FLOSSCAPA   (0x0000040000000000ULL) /* OSS capability */
596 #define OBD_MD_FLCKSPLIT   (0x0000080000000000ULL) /* Check split on server */
597 #define OBD_MD_FLCROSSREF  (0x0000100000000000ULL) /* Cross-ref case */
598
599 #define OBD_FL_TRUNC       (0x0000200000000000ULL) /* for filter_truncate */
600
601 #define OBD_MD_FLRMTLSETFACL    (0x0001000000000000ULL) /* lfs lsetfacl case */
602 #define OBD_MD_FLRMTLGETFACL    (0x0002000000000000ULL) /* lfs lgetfacl case */
603 #define OBD_MD_FLRMTRSETFACL    (0x0004000000000000ULL) /* lfs rsetfacl case */
604 #define OBD_MD_FLRMTRGETFACL    (0x0008000000000000ULL) /* lfs rgetfacl case */
605
606 #define OBD_MD_FLGETATTR (OBD_MD_FLID    | OBD_MD_FLATIME | OBD_MD_FLMTIME | \
607                           OBD_MD_FLCTIME | OBD_MD_FLSIZE  | OBD_MD_FLBLKSZ | \
608                           OBD_MD_FLMODE  | OBD_MD_FLTYPE  | OBD_MD_FLUID   | \
609                           OBD_MD_FLGID   | OBD_MD_FLFLAGS | OBD_MD_FLNLINK | \
610                           OBD_MD_FLGENER | OBD_MD_FLRDEV  | OBD_MD_FLGROUP)
611
612 /* don't forget obdo_fid which is way down at the bottom so it can
613  * come after the definition of llog_cookie */
614
615 enum obd_statfs_state {
616         OS_STATE_DEGRADED       = 0x00000001, /**< RAID degraded/rebuilding */
617         OS_STATE_READONLY       = 0x00000002, /**< filesystem is read-only */
618         OS_STATE_RDONLY_1       = 0x00000004, /**< obsolete 1.6, was EROFS=30 */
619         OS_STATE_RDONLY_2       = 0x00000008, /**< obsolete 1.6, was EROFS=30 */
620         OS_STATE_RDONLY_3       = 0x00000010, /**< obsolete 1.6, was EROFS=30 */
621 };
622
623 struct obd_statfs {
624         __u64           os_type;
625         __u64           os_blocks;
626         __u64           os_bfree;
627         __u64           os_bavail;
628         __u64           os_files;
629         __u64           os_ffree;
630         __u8            os_fsid[40];
631         __u32           os_bsize;
632         __u32           os_namelen;
633         __u64           os_maxbytes;
634         __u32           os_state;       /**< obd_statfs_state OS_STATE_* flag */
635         __u32           os_spare1;
636         __u32           os_spare2;
637         __u32           os_spare3;
638         __u32           os_spare4;
639         __u32           os_spare5;
640         __u32           os_spare6;
641         __u32           os_spare7;
642         __u32           os_spare8;
643         __u32           os_spare9;
644 };
645
646 extern void lustre_swab_obd_statfs (struct obd_statfs *os);
647 #define OBD_STATFS_NODELAY      0x0001  /* requests should be send without delay
648                                          * and resends for avoid deadlocks */
649 #define OBD_STATFS_FROM_CACHE   0x0002  /* the statfs callback should not update
650                                          * obd_osfs_age */
651 #define OBD_STATFS_PTLRPCD      0x0004  /* requests will be sent via ptlrpcd
652                                          * instead of a specific set. This
653                                          * means that we cannot rely on the set
654                                          * interpret routine to be called.
655                                          * lov_statfs_fini() must thus be called
656                                          * by the request interpret routine */
657
658 /* ost_body.data values for OST_BRW */
659
660 #define OBD_BRW_READ            0x01
661 #define OBD_BRW_WRITE           0x02
662 #define OBD_BRW_RWMASK          (OBD_BRW_READ | OBD_BRW_WRITE)
663 #define OBD_BRW_SYNC            0x08
664 #define OBD_BRW_CHECK           0x10
665 #define OBD_BRW_FROM_GRANT      0x20 /* the osc manages this under llite */
666 #define OBD_BRW_GRANTED         0x40 /* the ost manages this */
667 #define OBD_BRW_DROP            0x80 /* drop the page after IO */
668 #define OBD_BRW_NOQUOTA        0x100
669 #define OBD_BRW_SRVLOCK        0x200 /* Client holds no lock over this page */
670 #define OBD_BRW_ASYNC          0x400 /* Server may delay commit to disk */
671 #define OBD_BRW_MEMALLOC       0x800 /* Client runs in the "kswapd" context */
672
673 #define OBD_OBJECT_EOF 0xffffffffffffffffULL
674
675 #define OST_MIN_PRECREATE 32
676 #define OST_MAX_PRECREATE 20000
677
678 struct obd_ioobj {
679         obd_id               ioo_id;
680         obd_gr               ioo_gr;
681         __u32                ioo_type;
682         __u32                ioo_bufcnt;
683 };
684
685 extern void lustre_swab_obd_ioobj (struct obd_ioobj *ioo);
686
687 /* multiple of 8 bytes => can array */
688 struct niobuf_remote {
689         __u64 offset;
690         __u32 len;
691         __u32 flags;
692 };
693
694 extern void lustre_swab_niobuf_remote (struct niobuf_remote *nbr);
695
696 /* lock value block communicated between the filter and llite */
697
698 /* OST_LVB_ERR_INIT is needed because the return code in rc is
699  * negative, i.e. because ((MASK + rc) & MASK) != MASK. */
700 #define OST_LVB_ERR_INIT 0xffbadbad80000000ULL
701 #define OST_LVB_ERR_MASK 0xffbadbad00000000ULL
702 #define OST_LVB_IS_ERR(blocks)                                          \
703         ((blocks & OST_LVB_ERR_MASK) == OST_LVB_ERR_MASK)
704 #define OST_LVB_SET_ERR(blocks, rc)                                     \
705         do { blocks = OST_LVB_ERR_INIT + rc; } while (0)
706 #define OST_LVB_GET_ERR(blocks)    (int)(blocks - OST_LVB_ERR_INIT)
707
708 struct ost_lvb {
709         __u64 lvb_size;
710         __u64 lvb_mtime;
711         __u64 lvb_atime;
712         __u64 lvb_ctime;
713         __u64 lvb_blocks;
714 };
715
716 extern void lustre_swab_ost_lvb(struct ost_lvb *);
717
718 /*
719  *   MDS REQ RECORDS
720  */
721
722 /* opcodes */
723 typedef enum {
724         MDS_GETATTR      = 33,
725         MDS_GETATTR_NAME = 34,
726         MDS_CLOSE        = 35,
727         MDS_REINT        = 36,
728         MDS_READPAGE     = 37,
729         MDS_CONNECT      = 38,
730         MDS_DISCONNECT   = 39,
731         MDS_GETSTATUS    = 40,
732         MDS_STATFS       = 41,
733         MDS_PIN          = 42,
734         MDS_UNPIN        = 43,
735         MDS_SYNC         = 44,
736         MDS_DONE_WRITING = 45,
737         MDS_SET_INFO     = 46,
738         MDS_QUOTACHECK   = 47,
739         MDS_QUOTACTL     = 48,
740         MDS_GETXATTR     = 49,
741         MDS_SETXATTR     = 50,
742         MDS_WRITEPAGE    = 51,
743         MDS_IS_SUBDIR    = 52,
744         MDS_LAST_OPC
745 } mds_cmd_t;
746
747 #define MDS_FIRST_OPC    MDS_GETATTR
748
749 /*
750  * Do not exceed 63
751  */
752
753 typedef enum {
754         REINT_SETATTR  = 1,
755         REINT_CREATE   = 2,
756         REINT_LINK     = 3,
757         REINT_UNLINK   = 4,
758         REINT_RENAME   = 5,
759         REINT_OPEN     = 6,
760         REINT_SETXATTR = 7,
761 //      REINT_CLOSE    = 8,
762 //      REINT_WRITE    = 9,
763         REINT_MAX
764 } mds_reint_t;
765
766 /* the disposition of the intent outlines what was executed */
767 #define DISP_IT_EXECD        0x00000001
768 #define DISP_LOOKUP_EXECD    0x00000002
769 #define DISP_LOOKUP_NEG      0x00000004
770 #define DISP_LOOKUP_POS      0x00000008
771 #define DISP_OPEN_CREATE     0x00000010
772 #define DISP_OPEN_OPEN       0x00000020
773 #define DISP_ENQ_COMPLETE    0x00400000
774 #define DISP_ENQ_OPEN_REF    0x00800000
775 #define DISP_ENQ_CREATE_REF  0x01000000
776 #define DISP_OPEN_LOCK       0x02000000
777
778 /* INODE LOCK PARTS */
779 #define MDS_INODELOCK_LOOKUP 0x000001       /* dentry, mode, owner, group */
780 #define MDS_INODELOCK_UPDATE 0x000002       /* size, links, timestamps */
781 #define MDS_INODELOCK_OPEN   0x000004       /* For opened files */
782
783 /* Do not forget to increase MDS_INODELOCK_MAXSHIFT when adding new bits */
784 #define MDS_INODELOCK_MAXSHIFT 2
785 /* This FULL lock is useful to take on unlink sort of operations */
786 #define MDS_INODELOCK_FULL ((1<<(MDS_INODELOCK_MAXSHIFT+1))-1)
787
788
789 /**
790  * Enumeration of possible directory entry attributes.
791  *
792  * Attributes follow directory entry header in the order they appear in this
793  * enumeration.
794  */
795 enum lu_dirent_attrs {
796         LUDA_FID    = 0x0001,
797         LUDA_TYPE   = 0x0002,
798 };
799
800
801 extern void lustre_swab_ll_fid (struct ll_fid *fid);
802
803 struct lu_fid {
804         __u64 f_seq;  /* holds fid sequence. Lustre should support 2^64
805                        * objects, thus even if one sequence has one object we
806                        * reach this value. */
807         __u32 f_oid;  /* fid number within its sequence. */
808         __u32 f_ver;  /* holds fid version. */
809 };
810
811 #define DFID "[0x%16.16"LPF64"x/0x%8.8x:0x%8.8x]"
812
813 #define PFID(fid)     \
814         fid_seq(fid), \
815         fid_oid(fid), \
816         fid_ver(fid)
817
818 enum {
819         /** put FID sequence at this offset in ldlm_res_id. */
820         LUSTRE_RES_ID_SEQ_OFF = 0,
821         /** put FID oid at this offset in ldlm_res_id. */
822         LUSTRE_RES_ID_OID_OFF = 1,
823         /** put FID version at this offset in ldlm_res_id. */
824         LUSTRE_RES_ID_VER_OFF = 2,
825         /** put pdo hash at this offset in ldlm_res_id. */
826         LUSTRE_RES_ID_HSH_OFF = 3
827 };
828
829 typedef __u64 seqno_t;
830
831 /**
832  * Describes a range of sequence, lsr_start is included but lsr_end is
833  * not in the range.
834  */
835 struct lu_seq_range {
836         __u64 lsr_start;
837         __u64 lsr_end;
838         /** this feild is not used in 1.8 client interop */
839         __u32 lsr_mdt;
840         __u32 lsr_padding;
841 };
842
843 /**
844  * returns  width of given range \a r
845  */
846
847 static inline __u64 range_space(const struct lu_seq_range *r)
848 {
849         return r->lsr_end - r->lsr_start;
850 }
851
852 /**
853  * initialize range to zero
854  */
855 static inline void range_init(struct lu_seq_range *r)
856 {
857         r->lsr_start = r->lsr_end = 0;
858 }
859
860 /**
861  * check if given seq id \a s is within given range \a r
862  */
863 static inline int range_within(const struct lu_seq_range *r,
864                                __u64 s)
865 {
866         return s >= r->lsr_start && s < r->lsr_end;
867 }
868
869 /**
870  * sanity check for range \a r
871  */
872 static inline int range_is_sane(const struct lu_seq_range *r)
873 {
874         return (r->lsr_end >= r->lsr_start);
875 }
876
877 static inline int range_is_zero(struct lu_seq_range *r)
878 {
879         return (r->lsr_start == 0 && r->lsr_end == 0);
880 }
881
882 static inline int range_is_exhausted(const struct lu_seq_range *r)
883 {
884         return range_space(r) == 0;
885 }
886
887 #define DRANGE "[%#16.16"LPF64"x-%#16.16"LPF64"x)"
888
889 #define PRANGE(range)      \
890         (range)->lsr_start, \
891         (range)->lsr_end
892
893 enum {
894         /*
895          * This is how may FIDs may be allocated in one sequence.
896          */
897         LUSTRE_SEQ_MAX_WIDTH = 0x0000000000004000ULL,
898 };
899
900 enum lu_cli_type {
901         LUSTRE_SEQ_METADATA,
902         LUSTRE_SEQ_DATA
903 };
904
905 struct lu_client_seq {
906         /* Sequence-controller export. */
907         struct obd_export      *lcs_exp;
908         struct semaphore        lcs_sem;
909
910         /*
911          * Range of allowed for allocation sequences. When using lu_client_seq
912          * on clients, this contains meta-sequence range. And for servers this
913          * contains super-sequence range.
914          */
915         struct lu_seq_range         lcs_space;
916
917         /* This holds last allocated fid in last obtained seq */
918         struct lu_fid           lcs_fid;
919
920         /* LUSTRE_SEQ_METADATA or LUSTRE_SEQ_DATA */
921         enum lu_cli_type        lcs_type;
922         /*
923          * Service uuid, passed from MDT + seq name to form unique seq name to
924          * use it with procfs.
925          */
926         char                    lcs_name[80];
927
928         /*
929          * Sequence width, that is how many objects may be allocated in one
930          * sequence. Default value for it is LUSTRE_SEQ_MAX_WIDTH.
931          */
932         __u64                   lcs_width;
933
934 };
935
936 /*
937  * fid constants
938  */
939 enum {
940         /* initial fid id value */
941         LUSTRE_FID_INIT_OID  = 1UL
942 };
943
944 extern void lustre_swab_lu_fid(struct lu_fid *fid);
945
946 /* get object sequence */
947 static inline __u64 fid_seq(const struct lu_fid *fid)
948 {
949         return fid->f_seq;
950 }
951
952 /* get object id */
953 static inline __u32 fid_oid(const struct lu_fid *fid)
954 {
955         return fid->f_oid;
956 }
957
958 /* get object version */
959 static inline __u32 fid_ver(const struct lu_fid *fid)
960 {
961         return fid->f_ver;
962 }
963
964 static inline void fid_init(struct lu_fid *fid)
965 {
966         memset(fid, 0, sizeof(*fid));
967 }
968
969 /* Normal FID sequence starts from this value, i.e. 1<<33 */
970 #define FID_SEQ_START  0x200000000ULL
971
972 /* IDIF sequence starts from this value, i.e. 1<<32 */
973 #define IDIF_SEQ_START 0x100000000ULL
974
975 /**
976  * Check if a fid is igif or not.
977  * \param fid the fid to be tested.
978  * \return true if the fid is a igif; otherwise false.
979  */
980 static inline int fid_is_igif(const struct lu_fid *fid)
981 {
982         return fid_seq(fid) > 0 && fid_seq(fid) < IDIF_SEQ_START;
983 }
984
985 /**
986  * Check if a fid is idif or not.
987  * \param fid the fid to be tested.
988  * \return true if the fid is a idif; otherwise false.
989  */
990 static inline int fid_is_idif(const struct lu_fid *fid)
991 {
992         return fid_seq(fid) >= IDIF_SEQ_START  && fid_seq(fid) < FID_SEQ_START;
993 }
994
995 /**
996  * Check if a fid sequence is sane or not
997  * \param seq the sequence to be tested.
998  * \return true if the sequence is a sane sequence; otherwise false.
999  */
1000 static inline int fid_seq_is_sane(__u64 seq)
1001 {
1002         return seq != 0;
1003 }
1004
1005 /**
1006  * Check if a fid is sane or not
1007  * \param fid the fid to be tested.
1008  * \return true if the fid is sane; otherwise false.
1009  */
1010 static inline int fid_is_sane(const struct lu_fid *fid)
1011 {
1012         return
1013                 fid != NULL &&
1014                 ((fid_seq_is_sane(fid_seq(fid)) && fid_oid(fid) != 0
1015                                                 && fid_ver(fid) == 0) ||
1016                 fid_is_igif(fid));
1017 }
1018 /**
1019  * Check if a fid is zero.
1020  * \param fid the fid to be tested.
1021  * \return true if the fid is zero; otherwise false.
1022  */
1023 static inline int fid_is_zero(const struct lu_fid *fid)
1024 {
1025         return fid_seq(fid) == 0 && fid_oid(fid) == 0;
1026 }
1027
1028 /**
1029  * Get inode number from a igif.
1030  * \param fid a igif to get inode number from.
1031  * \return inode number for the igif.
1032  */
1033 static inline ino_t lu_igif_ino(const struct lu_fid *fid)
1034 {
1035         return fid_seq(fid);
1036 }
1037
1038 /**
1039  * Get inode generation from a igif.
1040  * \param fid a igif to get inode generation from.
1041  * \return inode generation for the igif.
1042  */
1043 static inline __u32 lu_igif_gen(const struct lu_fid *fid)
1044 {
1045         return fid_oid(fid);
1046 }
1047
1048 /**
1049  * Check if two fids are equal or not.
1050  * \param f0 the first fid
1051  * \param f1 the second fid
1052  * \return true if the two fids are equal; otherwise false.
1053  */
1054 static inline int lu_fid_eq(const struct lu_fid *f0,
1055                             const struct lu_fid *f1)
1056 {
1057         /* Check that there is no alignment padding. */
1058         CLASSERT(sizeof *f0 ==
1059                  sizeof f0->f_seq + sizeof f0->f_oid + sizeof f0->f_ver);
1060         LASSERTF(fid_is_igif(f0) || fid_ver(f0) == 0, DFID"\n", PFID(f0));
1061         LASSERTF(fid_is_igif(f1) || fid_ver(f1) == 0, DFID"\n", PFID(f1));
1062         return memcmp(f0, f1, sizeof *f0) == 0;
1063 }
1064
1065 void fid_cpu_to_le(struct lu_fid *dst, const struct lu_fid *src);
1066 void fid_le_to_cpu(struct lu_fid *dst, const struct lu_fid *src);
1067
1068 struct ldlm_res_id *
1069 fid_build_reg_res_name(const struct lu_fid *f, struct ldlm_res_id *name);
1070 int fid_res_name_eq(const struct lu_fid *f, const struct ldlm_res_id *name);
1071
1072 #define MDS_STATUS_CONN 1
1073 #define MDS_STATUS_LOV 2
1074
1075 struct mds_status_req {
1076         __u32  flags;
1077         __u32  repbuf;
1078 };
1079
1080 extern void lustre_swab_mds_status_req (struct mds_status_req *r);
1081
1082 #define MDS_BFLAG_UNCOMMITTED_WRITES   0x1
1083 #define MDS_BFLAG_EXT_FLAGS     0x80000000 /* == EXT3_RESERVED_FL */
1084
1085 /* these should be identical to their EXT3_*_FL counterparts, and are
1086  * redefined here only to avoid dragging in ext3_fs.h */
1087 #define MDS_SYNC_FL             0x00000008 /* Synchronous updates */
1088 #define MDS_IMMUTABLE_FL        0x00000010 /* Immutable file */
1089 #define MDS_APPEND_FL           0x00000020 /* writes to file may only append */
1090 #define MDS_NOATIME_FL          0x00000080 /* do not update atime */
1091 #define MDS_DIRSYNC_FL          0x00010000 /* dirsync behaviour (dir only) */
1092
1093 #ifdef __KERNEL__
1094 /* If MDS_BFLAG_IOC_FLAGS is set it means we requested EXT3_*_FL inode flags
1095  * and we need to decode these into local S_* flags in the inode.  Otherwise
1096  * we pass flags straight through (see bug 9486). */
1097 static inline int ll_ext_to_inode_flags(int flags)
1098 {
1099         return (flags & MDS_BFLAG_EXT_FLAGS) ?
1100                (((flags & MDS_SYNC_FL)      ? S_SYNC      : 0) |
1101                 ((flags & MDS_NOATIME_FL)   ? S_NOATIME   : 0) |
1102                 ((flags & MDS_APPEND_FL)    ? S_APPEND    : 0) |
1103 #if defined(S_DIRSYNC)
1104                 ((flags & MDS_DIRSYNC_FL)   ? S_DIRSYNC   : 0) |
1105 #endif
1106                 ((flags & MDS_IMMUTABLE_FL) ? S_IMMUTABLE : 0)) :
1107                (flags & ~MDS_BFLAG_EXT_FLAGS);
1108 }
1109
1110 /* If keep is set, we do not do anything with iflags, if it is not set, we
1111  * assume that iflags are inode flags and we need to conver those to
1112  * EXT3_*_FL flags (see bug 9486 and 12848) */
1113 static inline int ll_inode_to_ext_flags(int iflags, int keep)
1114 {
1115         return keep ? (iflags & ~MDS_BFLAG_EXT_FLAGS) :
1116                (((iflags & S_SYNC)      ? MDS_SYNC_FL      : 0) |
1117                 ((iflags & S_NOATIME)   ? MDS_NOATIME_FL   : 0) |
1118                 ((iflags & S_APPEND)    ? MDS_APPEND_FL    : 0) |
1119 #if defined(S_DIRSYNC)
1120                 ((iflags & S_DIRSYNC)   ? MDS_DIRSYNC_FL   : 0) |
1121 #endif
1122                 ((iflags & S_IMMUTABLE) ? MDS_IMMUTABLE_FL : 0));
1123 }
1124 #endif
1125
1126 /*
1127  * while mds_body is to interact with 1.6, mdt_body is to interact with 2.0.
1128  * both of them should have the same fields layout, because at client side
1129  * one could be dynamically cast to the other.
1130  *
1131  * mdt_body has large size than mds_body, with unused padding (48 bytes)
1132  * at the end. client always use size of mdt_body to prepare request/reply
1133  * buffers, and actual data could be interepeted as mdt_body or mds_body
1134  * accordingly.
1135  */
1136 struct mds_body {
1137         struct ll_fid  fid1;
1138         struct ll_fid  fid2;
1139         struct lustre_handle handle;
1140         __u64          valid;
1141         __u64          size;   /* Offset, in the case of MDS_READPAGE */
1142         __u64          mtime;
1143         __u64          atime;
1144         __u64          ctime;
1145         __u64          blocks; /* XID, in the case of MDS_READPAGE */
1146         __u64          io_epoch;
1147         __u64          ino;
1148         __u32          fsuid;
1149         __u32          fsgid;
1150         __u32          capability;
1151         __u32          mode;
1152         __u32          uid;
1153         __u32          gid;
1154         __u32          flags; /* from vfs for pin/unpin, MDS_BFLAG for close */
1155         __u32          rdev;
1156         __u32          nlink; /* #bytes to read in the case of MDS_READPAGE */
1157         __u32          generation;
1158         __u32          suppgid;
1159         __u32          eadatasize;
1160         __u32          aclsize;
1161         __u32          max_mdsize;
1162         __u32          max_cookiesize;
1163         __u32          padding_4; /* also fix lustre_swab_mds_body */
1164 };
1165
1166 extern void lustre_swab_mds_body (struct mds_body *b);
1167
1168 struct mdt_body {
1169         struct lu_fid  fid1;
1170         struct lu_fid  fid2;
1171         struct lustre_handle handle;
1172         __u64          valid;
1173         __u64          size;   /* Offset, in the case of MDS_READPAGE */
1174         __u64          mtime;
1175         __u64          atime;
1176         __u64          ctime;
1177         __u64          blocks; /* XID, in the case of MDS_READPAGE */
1178         __u64          ioepoch;
1179         __u64          ino;    /* for 1.6 compatibility */
1180         __u32          fsuid;
1181         __u32          fsgid;
1182         __u32          capability;
1183         __u32          mode;
1184         __u32          uid;
1185         __u32          gid;
1186         __u32          flags; /* from vfs for pin/unpin, MDS_BFLAG for close */
1187         __u32          rdev;
1188         __u32          nlink; /* #bytes to read in the case of MDS_READPAGE */
1189         __u32          generation; /* for 1.6 compatibility */
1190         __u32          suppgid;
1191         __u32          eadatasize;
1192         __u32          aclsize;
1193         __u32          max_mdsize;
1194         __u32          max_cookiesize;
1195         __u32          padding_4; /* also fix lustre_swab_mdt_body */
1196         __u64          padding_5;
1197         __u64          padding_6;
1198         __u64          padding_7;
1199         __u64          padding_8;
1200         __u64          padding_9;
1201         __u64          padding_10;
1202 };
1203
1204 #define Q_QUOTACHECK    0x800100
1205 #define Q_INITQUOTA     0x800101        /* init slave limits */
1206 #define Q_GETOINFO      0x800102        /* get obd quota info */
1207 #define Q_GETOQUOTA     0x800103        /* get obd quotas */
1208 #define Q_FINVALIDATE   0x800104        /* invalidate operational quotas */
1209
1210 #define Q_TYPEMATCH(id, type) \
1211         ((id) == (type) || (id) == UGQUOTA)
1212
1213 #define Q_TYPESET(oqc, type) Q_TYPEMATCH((oqc)->qc_type, type)
1214
1215 #define Q_GETOCMD(oqc) \
1216         ((oqc)->qc_cmd == Q_GETOINFO || (oqc)->qc_cmd == Q_GETOQUOTA)
1217
1218 struct obd_quotactl {
1219         __u32                   qc_cmd;
1220         __u32                   qc_type;
1221         __u32                   qc_id;
1222         __u32                   qc_stat;
1223         struct obd_dqinfo       qc_dqinfo;
1224         struct obd_dqblk        qc_dqblk;
1225 };
1226
1227 extern void lustre_swab_obd_quotactl(struct obd_quotactl *q);
1228
1229 struct quota_adjust_qunit {
1230         __u32 qaq_flags;
1231         __u32 qaq_id;
1232         __u64 qaq_bunit_sz;
1233         __u64 qaq_iunit_sz;
1234         __u64 padding1;
1235 };
1236 extern void lustre_swab_quota_adjust_qunit(struct quota_adjust_qunit *q);
1237
1238 /* flags is shared among quota structures */
1239 #define LQUOTA_FLAGS_GRP       1UL   /* 0 is user, 1 is group */
1240 #define LQUOTA_FLAGS_BLK       2UL   /* 0 is inode, 1 is block */
1241 #define LQUOTA_FLAGS_ADJBLK    4UL   /* adjust the block qunit size */
1242 #define LQUOTA_FLAGS_ADJINO    8UL   /* adjust the inode qunit size */
1243 #define LQUOTA_FLAGS_CHG_QS   16UL   /* indicate whether it has capability of
1244                                       * OBD_CONNECT_CHANGE_QS */
1245
1246 /* flags is specific for quota_adjust_qunit */
1247 #define LQUOTA_QAQ_CREATE_LQS  (1 << 31) /* when it is set, need create lqs */
1248
1249 /* the status of lqs_flags in struct lustre_qunit_size  */
1250 #define LQUOTA_QUNIT_FLAGS (LQUOTA_FLAGS_GRP | LQUOTA_FLAGS_BLK)
1251
1252 #define QAQ_IS_GRP(qaq)         ((qaq)->qaq_flags & LQUOTA_FLAGS_GRP)
1253 #define QAQ_IS_ADJBLK(qaq)      ((qaq)->qaq_flags & LQUOTA_FLAGS_ADJBLK)
1254 #define QAQ_IS_ADJINO(qaq)      ((qaq)->qaq_flags & LQUOTA_FLAGS_ADJINO)
1255 #define QAQ_IS_CREATE_LQS(qaq)  ((qaq)->qaq_flags & LQUOTA_QAQ_CREATE_LQS)
1256
1257 #define QAQ_SET_GRP(qaq)        ((qaq)->qaq_flags |= LQUOTA_FLAGS_GRP)
1258 #define QAQ_SET_ADJBLK(qaq)     ((qaq)->qaq_flags |= LQUOTA_FLAGS_ADJBLK)
1259 #define QAQ_SET_ADJINO(qaq)     ((qaq)->qaq_flags |= LQUOTA_FLAGS_ADJINO)
1260 #define QAQ_SET_CREATE_LQS(qaq) ((qaq)->qaq_flags |= LQUOTA_QAQ_CREATE_LQS)
1261
1262 struct mds_rec_setattr {
1263         __u32           sa_opcode;
1264         __u32           sa_fsuid;
1265         __u32           sa_fsgid;
1266         __u32           sa_cap;
1267         __u32           sa_suppgid;
1268         __u32           sa_mode;
1269         struct ll_fid   sa_fid;
1270         __u64           sa_valid; /* MDS_ATTR_* attributes */
1271         __u64           sa_size;
1272         __u64           sa_mtime;
1273         __u64           sa_atime;
1274         __u64           sa_ctime;
1275         __u32           sa_uid;
1276         __u32           sa_gid;
1277         __u32           sa_attr_flags;
1278         __u32           sa_padding; /* also fix lustre_swab_mds_rec_setattr */
1279 };
1280
1281 extern void lustre_swab_mds_rec_setattr (struct mds_rec_setattr *sa);
1282
1283 /*
1284  * Attribute flags used in mds_rec_setattr::sa_valid.
1285  * The kernel's #defines for ATTR_* should not be used over the network
1286  * since the client and MDS may run different kernels (see bug 13828)
1287  * Therefore, we should only use MDS_ATTR_* attributes for sa_valid.
1288  */
1289 #define MDS_ATTR_MODE          0x1ULL /* = 1 */
1290 #define MDS_ATTR_UID           0x2ULL /* = 2 */
1291 #define MDS_ATTR_GID           0x4ULL /* = 4 */
1292 #define MDS_ATTR_SIZE          0x8ULL /* = 8 */
1293 #define MDS_ATTR_ATIME        0x10ULL /* = 16 */
1294 #define MDS_ATTR_MTIME        0x20ULL /* = 32 */
1295 #define MDS_ATTR_CTIME        0x40ULL /* = 64 */
1296 #define MDS_ATTR_ATIME_SET    0x80ULL /* = 128 */
1297 #define MDS_ATTR_MTIME_SET   0x100ULL /* = 256 */
1298 #define MDS_ATTR_FORCE       0x200ULL /* = 512, Not a change, but a change it */
1299 #define MDS_ATTR_ATTR_FLAG   0x400ULL /* = 1024 */
1300 #define MDS_ATTR_KILL_SUID   0x800ULL /* = 2048 */
1301 #define MDS_ATTR_KILL_SGID  0x1000ULL /* = 4096 */
1302 #define MDS_ATTR_CTIME_SET  0x2000ULL /* = 8192 */
1303 #define MDS_ATTR_FROM_OPEN  0x4000ULL /* = 16384, called from open path, ie O_TRUNC */
1304 #define MDS_ATTR_BLOCKS     0x8000ULL /* = 32768 */
1305
1306 #ifndef FMODE_READ
1307 #define FMODE_READ               00000001
1308 #define FMODE_WRITE              00000002
1309 #endif
1310 #define MDS_FMODE_EXEC           00000004
1311 #define MDS_OPEN_CREAT           00000100
1312 #define MDS_OPEN_EXCL            00000200
1313 #define MDS_OPEN_TRUNC           00001000
1314 #define MDS_OPEN_APPEND          00002000
1315 #define MDS_OPEN_SYNC            00010000
1316 #define MDS_OPEN_DIRECTORY       00200000
1317
1318 #define MDS_OPEN_DELAY_CREATE  0100000000 /* delay initial object create */
1319 #define MDS_OPEN_OWNEROVERRIDE 0200000000 /* NFSD rw-reopen ro file for owner */
1320 #define MDS_OPEN_JOIN_FILE     0400000000 /* open for join file*/
1321 #define MDS_CREATE_RMT_ACL    01000000000 /* indicate create on remote server
1322                                            * with default ACL */
1323 #define MDS_CREATE_SLAVE_OBJ  02000000000 /* indicate create slave object
1324                                            * actually, this is for create, not
1325                                            * conflict with other open flags */
1326 #define MDS_OPEN_LOCK         04000000000 /* This open requires open lock */
1327 #define MDS_OPEN_HAS_EA      010000000000 /* specify object create pattern */
1328 #define MDS_OPEN_HAS_OBJS    020000000000 /* Just set the EA the obj exist */
1329
1330 struct mds_rec_create {
1331         __u32           cr_opcode;
1332         __u32           cr_fsuid;
1333         __u32           cr_fsgid;
1334         __u32           cr_cap;
1335         __u32           cr_flags; /* for use with open */
1336         __u32           cr_mode;
1337         struct ll_fid   cr_fid;
1338         struct ll_fid   cr_replayfid;
1339         __u64           cr_time;
1340         __u64           cr_rdev;
1341         __u32           cr_suppgid;
1342         __u32           cr_padding_1; /* also fix lustre_swab_mds_rec_create */
1343         __u32           cr_padding_2; /* also fix lustre_swab_mds_rec_create */
1344         __u32           cr_padding_3; /* also fix lustre_swab_mds_rec_create */
1345         __u32           cr_padding_4; /* also fix lustre_swab_mds_rec_create */
1346         __u32           cr_padding_5; /* also fix lustre_swab_mds_rec_create */
1347 };
1348
1349 extern void lustre_swab_mds_rec_create (struct mds_rec_create *cr);
1350
1351 struct mdt_rec_create {
1352         __u32           cr_opcode;
1353         __u32           cr_cap;
1354         __u32           cr_fsuid;
1355         __u32           cr_fsuid_h;
1356         __u32           cr_fsgid;
1357         __u32           cr_fsgid_h;
1358         __u32           cr_suppgid1;
1359         __u32           cr_suppgid1_h;
1360         __u32           cr_suppgid2;
1361         __u32           cr_suppgid2_h;
1362         struct lu_fid   cr_fid1;
1363         struct lu_fid   cr_fid2;
1364         struct lustre_handle cr_old_handle; /* handle in case of open replay */
1365         __u64           cr_time;
1366         __u64           cr_rdev;
1367         __u64           cr_ioepoch;
1368         __u64           cr_padding_1; /* pad for 64 bits*/
1369         __u32           cr_mode;
1370         __u32           cr_bias;
1371         __u32           cr_flags;     /* for use with open */
1372         __u32           cr_padding_2; /* pad for 64 bits*/
1373         __u32           cr_padding_3; /* pad for 64 bits*/
1374         __u32           cr_padding_4; /* pad for 64 bits*/
1375 };
1376
1377 struct mdt_epoch {
1378         struct lustre_handle handle;
1379         __u64  ioepoch;
1380         __u32  flags;
1381         __u32  padding;
1382 };
1383
1384 struct mds_rec_join {
1385         struct ll_fid  jr_fid;
1386         __u64          jr_headsize;
1387 };
1388
1389 extern void lustre_swab_mds_rec_join (struct mds_rec_join *jr);
1390
1391 struct mdt_rec_join {
1392         struct lu_fid  jr_fid;
1393         __u64          jr_headsize;
1394 };
1395
1396 extern void lustre_swab_mdt_rec_join (struct mdt_rec_join *jr);
1397
1398 struct mds_rec_link {
1399         __u32           lk_opcode;
1400         __u32           lk_fsuid;
1401         __u32           lk_fsgid;
1402         __u32           lk_cap;
1403         __u32           lk_suppgid1;
1404         __u32           lk_suppgid2;
1405         struct ll_fid   lk_fid1;
1406         struct ll_fid   lk_fid2;
1407         __u64           lk_time;
1408         __u32           lk_padding_1;  /* also fix lustre_swab_mds_rec_link */
1409         __u32           lk_padding_2;  /* also fix lustre_swab_mds_rec_link */
1410         __u32           lk_padding_3;  /* also fix lustre_swab_mds_rec_link */
1411         __u32           lk_padding_4;  /* also fix lustre_swab_mds_rec_link */
1412 };
1413
1414 extern void lustre_swab_mds_rec_link (struct mds_rec_link *lk);
1415
1416 struct mdt_rec_link {
1417         __u32           lk_opcode;
1418         __u32           lk_cap;
1419         __u32           lk_fsuid;
1420         __u32           lk_fsuid_h;
1421         __u32           lk_fsgid;
1422         __u32           lk_fsgid_h;
1423         __u32           lk_suppgid1;
1424         __u32           lk_suppgid1_h;
1425         __u32           lk_suppgid2;
1426         __u32           lk_suppgid2_h;
1427         struct lu_fid   lk_fid1;
1428         struct lu_fid   lk_fid2;
1429         __u64           lk_time;
1430         __u64           lk_padding_1;
1431         __u64           lk_padding_2;
1432         __u64           lk_padding_3;
1433         __u64           lk_padding_4;
1434         __u32           lk_bias;
1435         __u32           lk_padding_5;
1436         __u32           lk_padding_6;
1437         __u32           lk_padding_7;
1438         __u32           lk_padding_8;
1439         __u32           lk_padding_9;
1440 };
1441
1442 struct mds_rec_unlink {
1443         __u32           ul_opcode;
1444         __u32           ul_fsuid;
1445         __u32           ul_fsgid;
1446         __u32           ul_cap;
1447         __u32           ul_suppgid;
1448         __u32           ul_mode;
1449         struct ll_fid   ul_fid1;
1450         struct ll_fid   ul_fid2;
1451         __u64           ul_time;
1452         __u32           ul_padding_1; /* also fix lustre_swab_mds_rec_unlink */
1453         __u32           ul_padding_2; /* also fix lustre_swab_mds_rec_unlink */
1454         __u32           ul_padding_3; /* also fix lustre_swab_mds_rec_unlink */
1455         __u32           ul_padding_4; /* also fix lustre_swab_mds_rec_unlink */
1456 };
1457
1458 extern void lustre_swab_mds_rec_unlink (struct mds_rec_unlink *ul);
1459
1460 struct mdt_rec_unlink {
1461         __u32           ul_opcode;
1462         __u32           ul_cap;
1463         __u32           ul_fsuid;
1464         __u32           ul_fsuid_h;
1465         __u32           ul_fsgid;
1466         __u32           ul_fsgid_h;
1467         __u32           ul_suppgid1;
1468         __u32           ul_suppgid1_h;
1469         __u32           ul_suppgid2;
1470         __u32           ul_suppgid2_h;
1471         struct lu_fid   ul_fid1;
1472         struct lu_fid   ul_fid2;
1473         __u64           ul_time;
1474         __u64           ul_padding_2;
1475         __u64           ul_padding_3;
1476         __u64           ul_padding_4;
1477         __u64           ul_padding_5;
1478         __u32           ul_bias;
1479         __u32           ul_mode;
1480         __u32           ul_padding_6;
1481         __u32           ul_padding_7;
1482         __u32           ul_padding_8;
1483         __u32           ul_padding_9;
1484 };
1485
1486 struct mds_rec_rename {
1487         __u32           rn_opcode;
1488         __u32           rn_fsuid;
1489         __u32           rn_fsgid;
1490         __u32           rn_cap;
1491         __u32           rn_suppgid1;
1492         __u32           rn_suppgid2;
1493         struct ll_fid   rn_fid1;
1494         struct ll_fid   rn_fid2;
1495         __u64           rn_time;
1496         __u32           rn_padding_1; /* also fix lustre_swab_mds_rec_rename */
1497         __u32           rn_padding_2; /* also fix lustre_swab_mds_rec_rename */
1498         __u32           rn_padding_3; /* also fix lustre_swab_mds_rec_rename */
1499         __u32           rn_padding_4; /* also fix lustre_swab_mds_rec_rename */
1500 };
1501
1502 extern void lustre_swab_mds_rec_rename (struct mds_rec_rename *rn);
1503
1504 struct mdt_rec_rename {
1505         __u32           rn_opcode;
1506         __u32           rn_cap;
1507         __u32           rn_fsuid;
1508         __u32           rn_fsuid_h;
1509         __u32           rn_fsgid;
1510         __u32           rn_fsgid_h;
1511         __u32           rn_suppgid1;
1512         __u32           rn_suppgid1_h;
1513         __u32           rn_suppgid2;
1514         __u32           rn_suppgid2_h;
1515         struct lu_fid   rn_fid1;
1516         struct lu_fid   rn_fid2;
1517         __u64           rn_time;
1518         __u64           rn_padding_1;
1519         __u64           rn_padding_2;
1520         __u64           rn_padding_3;
1521         __u64           rn_padding_4;
1522         __u32           rn_bias;      /* some operation flags */
1523         __u32           rn_mode;      /* cross-ref rename has mode */
1524         __u32           rn_padding_5;
1525         __u32           rn_padding_6;
1526         __u32           rn_padding_7;
1527         __u32           rn_padding_8;
1528 };
1529
1530 struct mdt_rec_setattr {
1531         __u32           sa_opcode;
1532         __u32           sa_cap;
1533         __u32           sa_fsuid;
1534         __u32           sa_fsuid_h;
1535         __u32           sa_fsgid;
1536         __u32           sa_fsgid_h;
1537         __u32           sa_suppgid;
1538         __u32           sa_suppgid_h;
1539         __u32           sa_padding_1;
1540         __u32           sa_padding_1_h;
1541         struct lu_fid   sa_fid;
1542         __u64           sa_valid;
1543         __u32           sa_uid;
1544         __u32           sa_gid;
1545         __u64           sa_size;
1546         __u64           sa_blocks;
1547         __u64           sa_mtime;
1548         __u64           sa_atime;
1549         __u64           sa_ctime;
1550         __u32           sa_attr_flags;
1551         __u32           sa_mode;
1552         __u32           sa_padding_2;
1553         __u32           sa_padding_3;
1554         __u32           sa_padding_4;
1555         __u32           sa_padding_5;
1556 };
1557
1558 struct mdt_rec_setxattr {
1559         __u32           sx_opcode;
1560         __u32           sx_cap;
1561         __u32           sx_fsuid;
1562         __u32           sx_fsuid_h;
1563         __u32           sx_fsgid;
1564         __u32           sx_fsgid_h;
1565         __u32           sx_suppgid1;
1566         __u32           sx_suppgid1_h;
1567         __u32           sx_suppgid2;
1568         __u32           sx_suppgid2_h;
1569         struct lu_fid   sx_fid;
1570         __u64           sx_padding_1; /* These three members are lu_fid size */
1571         __u32           sx_padding_2;
1572         __u32           sx_padding_3;
1573         __u64           sx_valid;
1574         __u64           sx_time;
1575         __u64           sx_padding_5;
1576         __u64           sx_padding_6;
1577         __u64           sx_padding_7;
1578         __u32           sx_size;
1579         __u32           sx_flags;
1580         __u32           sx_padding_8;
1581         __u32           sx_padding_9;
1582         __u32           sx_padding_10;
1583         __u32           sx_padding_11;
1584 };
1585
1586 enum seq_rpc_opc {
1587         SEQ_QUERY                       = 700,
1588         SEQ_LAST_OPC,
1589         SEQ_FIRST_OPC                   = SEQ_QUERY
1590 };
1591
1592 enum seq_op {
1593         SEQ_ALLOC_SUPER = 0,
1594         SEQ_ALLOC_META = 1
1595 };
1596
1597
1598 /*
1599  *  LOV data structures
1600  */
1601
1602 #define LOV_MIN_STRIPE_BITS 16   /* maximum PAGE_SIZE (ia64), power of 2 */
1603 #define LOV_MIN_STRIPE_SIZE (1<<LOV_MIN_STRIPE_BITS)
1604 #define LOV_MAX_STRIPE_COUNT  160   /* until bug 4424 is fixed */
1605 #define LOV_V1_INSANE_STRIPE_COUNT 65532 /* maximum stripe count bz13933 */
1606
1607 #define LOV_MAX_UUID_BUFFER_SIZE  8192
1608 /* The size of the buffer the lov/mdc reserves for the
1609  * array of UUIDs returned by the MDS.  With the current
1610  * protocol, this will limit the max number of OSTs per LOV */
1611
1612 #define LOV_DESC_MAGIC 0xB0CCDE5C
1613
1614 /* LOV settings descriptor (should only contain static info) */
1615 struct lov_desc {
1616         __u32 ld_tgt_count;                /* how many OBD's */
1617         __u32 ld_active_tgt_count;         /* how many active */
1618         __u32 ld_default_stripe_count;     /* how many objects are used */
1619         __u32 ld_pattern;                  /* default PATTERN_RAID0 */
1620         __u64 ld_default_stripe_size;      /* in bytes */
1621         __u64 ld_default_stripe_offset;    /* in bytes */
1622         __u32 ld_padding_0;                /* unused */
1623         __u32 ld_qos_maxage;               /* in second */
1624         __u32 ld_padding_1;                /* also fix lustre_swab_lov_desc */
1625         __u32 ld_padding_2;                /* also fix lustre_swab_lov_desc */
1626         struct obd_uuid ld_uuid;
1627 };
1628
1629 #define ld_magic ld_active_tgt_count       /* for swabbing from llogs */
1630
1631 extern void lustre_swab_lov_desc (struct lov_desc *ld);
1632
1633 /*
1634  *   LDLM requests:
1635  */
1636 /* opcodes -- MUST be distinct from OST/MDS opcodes */
1637 typedef enum {
1638         LDLM_ENQUEUE     = 101,
1639         LDLM_CONVERT     = 102,
1640         LDLM_CANCEL      = 103,
1641         LDLM_BL_CALLBACK = 104,
1642         LDLM_CP_CALLBACK = 105,
1643         LDLM_GL_CALLBACK = 106,
1644         LDLM_LAST_OPC
1645 } ldlm_cmd_t;
1646 #define LDLM_FIRST_OPC LDLM_ENQUEUE
1647
1648 #define RES_NAME_SIZE 4
1649 struct ldlm_res_id {
1650         __u64 name[RES_NAME_SIZE];
1651 };
1652
1653 extern void lustre_swab_ldlm_res_id (struct ldlm_res_id *id);
1654
1655 /* lock types */
1656 typedef enum {
1657         LCK_MINMODE = 0,
1658         LCK_EX      = 1,
1659         LCK_PW      = 2,
1660         LCK_PR      = 4,
1661         LCK_CW      = 8,
1662         LCK_CR      = 16,
1663         LCK_NL      = 32,
1664         LCK_GROUP   = 64,
1665         LCK_MAXMODE
1666 } ldlm_mode_t;
1667
1668 #define LCK_MODE_NUM    7
1669
1670 typedef enum {
1671         LDLM_PLAIN     = 10,
1672         LDLM_EXTENT    = 11,
1673         LDLM_FLOCK     = 12,
1674         LDLM_IBITS     = 13,
1675         LDLM_MAX_TYPE
1676 } ldlm_type_t;
1677
1678 #define LDLM_MIN_TYPE LDLM_PLAIN
1679
1680 struct ldlm_extent {
1681         __u64 start;
1682         __u64 end;
1683         __u64 gid;
1684 };
1685
1686 static inline int ldlm_extent_overlap(struct ldlm_extent *ex1,
1687                                       struct ldlm_extent *ex2)
1688 {
1689         return (ex1->start <= ex2->end) && (ex2->start <= ex1->end);
1690 }
1691
1692 struct ldlm_inodebits {
1693         __u64 bits;
1694 };
1695
1696 struct ldlm_flock {
1697         __u64 start;
1698         __u64 end;
1699         __u64 blocking_export;  /* not actually used over the wire */
1700         __u32 blocking_pid;     /* not actually used over the wire */
1701         __u32 pid;
1702 };
1703
1704 /* it's important that the fields of the ldlm_extent structure match
1705  * the first fields of the ldlm_flock structure because there is only
1706  * one ldlm_swab routine to process the ldlm_policy_data_t union. if
1707  * this ever changes we will need to swab the union differently based
1708  * on the resource type. */
1709
1710 typedef union {
1711         struct ldlm_extent l_extent;
1712         struct ldlm_flock  l_flock;
1713         struct ldlm_inodebits l_inodebits;
1714 } ldlm_policy_data_t;
1715
1716 extern void lustre_swab_ldlm_policy_data (ldlm_policy_data_t *d);
1717
1718 struct ldlm_intent {
1719         __u64 opc;
1720 };
1721
1722 extern void lustre_swab_ldlm_intent (struct ldlm_intent *i);
1723
1724 struct ldlm_resource_desc {
1725         ldlm_type_t lr_type;
1726         __u32 lr_padding;       /* also fix lustre_swab_ldlm_resource_desc */
1727         struct ldlm_res_id lr_name;
1728 };
1729
1730 extern void lustre_swab_ldlm_resource_desc (struct ldlm_resource_desc *r);
1731
1732 struct ldlm_lock_desc {
1733         struct ldlm_resource_desc l_resource;
1734         ldlm_mode_t l_req_mode;
1735         ldlm_mode_t l_granted_mode;
1736         ldlm_policy_data_t l_policy_data;
1737 };
1738
1739 extern void lustre_swab_ldlm_lock_desc (struct ldlm_lock_desc *l);
1740
1741 #define LDLM_LOCKREQ_HANDLES 2
1742 #define LDLM_ENQUEUE_CANCEL_OFF 1
1743
1744 struct ldlm_request {
1745         __u32 lock_flags;
1746         __u32 lock_count;
1747         struct ldlm_lock_desc lock_desc;
1748         struct lustre_handle lock_handle[LDLM_LOCKREQ_HANDLES];
1749 };
1750
1751 extern void lustre_swab_ldlm_request (struct ldlm_request *rq);
1752
1753 /* If LDLM_ENQUEUE, 1 slot is already occupied, 1 is available.
1754  * Otherwise, 2 are available. */
1755 #define ldlm_request_bufsize(count,type)                                \
1756 ({                                                                      \
1757         int _avail = LDLM_LOCKREQ_HANDLES;                              \
1758         _avail -= (type == LDLM_ENQUEUE ? LDLM_ENQUEUE_CANCEL_OFF : 0); \
1759         sizeof(struct ldlm_request) +                                   \
1760         (count - _avail > 0 ? count - _avail : 0) *                     \
1761         sizeof(struct lustre_handle);                                   \
1762 })
1763
1764 struct ldlm_reply {
1765         __u32 lock_flags;
1766         __u32 lock_padding;     /* also fix lustre_swab_ldlm_reply */
1767         struct ldlm_lock_desc lock_desc;
1768         struct lustre_handle lock_handle;
1769         __u64  lock_policy_res1;
1770         __u64  lock_policy_res2;
1771 };
1772
1773 extern void lustre_swab_ldlm_reply (struct ldlm_reply *r);
1774
1775 /*
1776  * Opcodes for mountconf (mgs and mgc)
1777  */
1778 typedef enum {
1779         MGS_CONNECT = 250,
1780         MGS_DISCONNECT,
1781         MGS_EXCEPTION,         /* node died, etc. */
1782         MGS_TARGET_REG,        /* whenever target starts up */
1783         MGS_TARGET_DEL,
1784         MGS_SET_INFO,
1785         MGS_LAST_OPC
1786 } mgs_cmd_t;
1787 #define MGS_FIRST_OPC MGS_CONNECT
1788
1789 #define MGS_PARAM_MAXLEN 1024
1790 #define KEY_SET_INFO "set_info"
1791
1792 struct mgs_send_param {
1793         char             mgs_param[MGS_PARAM_MAXLEN];
1794 };
1795
1796 /* We pass this info to the MGS so it can write config logs */
1797 #define MTI_NAME_MAXLEN 64
1798 #define MTI_PARAM_MAXLEN 4096
1799 #define MTI_NIDS_MAX 32
1800 struct mgs_target_info {
1801         __u32            mti_lustre_ver;
1802         __u32            mti_stripe_index;
1803         __u32            mti_config_ver;
1804         __u32            mti_flags;
1805         __u32            mti_nid_count;
1806         __u32            padding;                    /* 64 bit align */
1807         char             mti_fsname[MTI_NAME_MAXLEN];
1808         char             mti_svname[MTI_NAME_MAXLEN];
1809         char             mti_uuid[sizeof(struct obd_uuid)];
1810         __u64            mti_nids[MTI_NIDS_MAX];     /* host nids (lnet_nid_t)*/
1811         char             mti_params[MTI_PARAM_MAXLEN];
1812 };
1813
1814 extern void lustre_swab_mgs_target_info(struct mgs_target_info *oinfo);
1815
1816 /* Config marker flags (in config log) */
1817 #define CM_START       0x01
1818 #define CM_END         0x02
1819 #define CM_SKIP        0x04
1820 #define CM_UPGRADE146  0x08
1821 #define CM_EXCLUDE     0x10
1822 #define CM_START_SKIP (CM_START | CM_SKIP)
1823
1824 struct cfg_marker {
1825         __u32             cm_step;       /* aka config version */
1826         __u32             cm_flags;
1827         __u32             cm_vers;       /* lustre release version number */
1828         __u32             padding;       /* 64 bit align */
1829         __u64             cm_createtime; /*when this record was first created */
1830         __u64             cm_canceltime; /*when this record is no longer valid*/
1831         char              cm_tgtname[MTI_NAME_MAXLEN];
1832         char              cm_comment[MTI_NAME_MAXLEN];
1833 };
1834
1835 extern void lustre_swab_cfg_marker(struct cfg_marker *marker,
1836                                    int swab, int size);
1837
1838 /*
1839  * Opcodes for multiple servers.
1840  */
1841
1842 typedef enum {
1843         OBD_PING = 400,
1844         OBD_LOG_CANCEL,
1845         OBD_QC_CALLBACK,
1846         OBD_LAST_OPC
1847 } obd_cmd_t;
1848 #define OBD_FIRST_OPC OBD_PING
1849
1850 /* catalog of log objects */
1851
1852 /** Identifier for a single log object */
1853 struct llog_logid {
1854         __u64                   lgl_oid;
1855         __u64                   lgl_ogr;
1856         __u32                   lgl_ogen;
1857 } __attribute__((packed));
1858
1859 /** Records written to the CATALOGS list */
1860 #define CATLIST "CATALOGS"
1861 struct llog_catid {
1862         struct llog_logid       lci_logid;
1863         __u32                   lci_padding1;
1864         __u32                   lci_padding2;
1865         __u32                   lci_padding3;
1866 } __attribute__((packed));
1867
1868 /** join file lov mds md*/
1869 struct lov_mds_md_join {
1870         struct lov_mds_md lmmj_md;
1871         /*join private info*/
1872         struct llog_logid lmmj_array_id; /*array object id*/
1873         __u32  lmmj_extent_count;        /*array extent count*/
1874 };
1875
1876 /* Log data record types - there is no specific reason that these need to
1877  * be related to the RPC opcodes, but no reason not to (may be handy later?)
1878  */
1879 #define LLOG_OP_MAGIC 0x10600000
1880 #define LLOG_OP_MASK  0xfff00000
1881
1882 typedef enum {
1883         LLOG_PAD_MAGIC   = LLOG_OP_MAGIC | 0x00000,
1884         OST_SZ_REC       = LLOG_OP_MAGIC | 0x00f00,
1885         OST_RAID1_REC    = LLOG_OP_MAGIC | 0x01000,
1886         MDS_UNLINK_REC   = LLOG_OP_MAGIC | 0x10000 | (MDS_REINT << 8) | REINT_UNLINK,
1887         MDS_SETATTR_REC  = LLOG_OP_MAGIC | 0x10000 | (MDS_REINT << 8) | REINT_SETATTR,
1888         MDS_SETATTR64_REC= LLOG_OP_MAGIC | 0x90000 | (MDS_REINT << 8) | REINT_SETATTR,
1889         OBD_CFG_REC      = LLOG_OP_MAGIC | 0x20000,
1890         PTL_CFG_REC      = LLOG_OP_MAGIC | 0x30000, /* obsolete */
1891         LLOG_GEN_REC     = LLOG_OP_MAGIC | 0x40000,
1892         LLOG_JOIN_REC    = LLOG_OP_MAGIC | 0x50000,
1893          /** changelog record type */
1894         CHANGELOG_REC    = LLOG_OP_MAGIC | 0x60000,
1895         LLOG_HDR_MAGIC   = LLOG_OP_MAGIC | 0x45539,
1896         LLOG_LOGID_MAGIC = LLOG_OP_MAGIC | 0x4553b,
1897 } llog_op_type;
1898
1899 /*
1900  * for now, continue to support old pad records which have 0 for their
1901  * type but still need to be swabbed for their length
1902  */
1903 #define LLOG_REC_HDR_NEEDS_SWABBING(r)                                  \
1904         (((r)->lrh_type & __swab32(LLOG_OP_MASK)) ==                    \
1905          __swab32(LLOG_OP_MAGIC) ||                                     \
1906          (((r)->lrh_type == 0) && ((r)->lrh_len > LLOG_CHUNK_SIZE)))
1907
1908 /** Log record header - stored in little endian order.
1909  * Each record must start with this struct, end with a llog_rec_tail,
1910  * and be a multiple of 256 bits in size.
1911  */
1912 struct llog_rec_hdr {
1913         __u32                   lrh_len;
1914         __u32                   lrh_index;
1915         __u32                   lrh_type;
1916         __u32                   padding;
1917 };
1918
1919 struct llog_rec_tail {
1920         __u32 lrt_len;
1921         __u32 lrt_index;
1922 };
1923
1924 struct llog_logid_rec {
1925         struct llog_rec_hdr     lid_hdr;
1926         struct llog_logid       lid_id;
1927         __u32                   padding1;
1928         __u32                   padding2;
1929         __u32                   padding3;
1930         __u32                   padding4;
1931         __u32                   padding5;
1932         struct llog_rec_tail    lid_tail;
1933 } __attribute__((packed));
1934
1935 /** MDS extent description
1936  * It is for joined file extent info, each extent info for joined file
1937  * just like (start, end, lmm).
1938  */
1939 struct mds_extent_desc {
1940         __u64                   med_start; /* extent start */
1941         __u64                   med_len;   /* extent length */
1942         struct lov_mds_md       med_lmm;   /* extent's lmm  */
1943 };
1944
1945 /** Joined file array extent log record*/
1946 struct llog_array_rec {
1947         struct llog_rec_hdr     lmr_hdr;
1948         struct mds_extent_desc  lmr_med;
1949         struct llog_rec_tail    lmr_tail;
1950 };
1951
1952 struct llog_create_rec {
1953         struct llog_rec_hdr     lcr_hdr;
1954         struct ll_fid           lcr_fid;
1955         obd_id                  lcr_oid;
1956         obd_count               lcr_ogr;
1957         __u32                   padding;
1958         struct llog_rec_tail    lcr_tail;
1959 } __attribute__((packed));
1960
1961 struct llog_orphan_rec {
1962         struct llog_rec_hdr     lor_hdr;
1963         obd_id                  lor_oid;
1964         obd_count               lor_ogen;
1965         __u32                   padding;
1966         struct llog_rec_tail    lor_tail;
1967 } __attribute__((packed));
1968
1969 struct llog_unlink_rec {
1970         struct llog_rec_hdr     lur_hdr;
1971         obd_id                  lur_oid;
1972         obd_count               lur_ogr;
1973         obd_count               lur_count; /* to destroy the lost precreated */
1974         struct llog_rec_tail    lur_tail;
1975 } __attribute__((packed));
1976
1977 struct llog_setattr_rec {
1978         struct llog_rec_hdr     lsr_hdr;
1979         obd_id                  lsr_oid;
1980         obd_count               lsr_ogr;
1981         __u32                   lsr_uid;
1982         __u32                   lsr_gid;
1983         __u32                   padding;
1984         struct llog_rec_tail    lsr_tail;
1985 } __attribute__((packed));
1986
1987 struct llog_setattr64_rec {
1988         struct llog_rec_hdr     lsr_hdr;
1989         obd_id                  lsr_oid;
1990         obd_count               lsr_ogr;
1991         __u32                   padding;
1992         __u32                   lsr_uid;
1993         __u32                   lsr_uid_h;
1994         __u32                   lsr_gid;
1995         __u32                   lsr_gid_h;
1996         struct llog_rec_tail    lsr_tail;
1997 } __attribute__((packed));
1998
1999 struct llog_size_change_rec {
2000         struct llog_rec_hdr     lsc_hdr;
2001         struct ll_fid           lsc_fid;
2002         __u32                   lsc_io_epoch;
2003         __u32                   padding;
2004         struct llog_rec_tail    lsc_tail;
2005 } __attribute__((packed));
2006
2007 struct llog_gen {
2008         __u64 mnt_cnt;
2009         __u64 conn_cnt;
2010 } __attribute__((packed));
2011
2012 struct llog_gen_rec {
2013         struct llog_rec_hdr     lgr_hdr;
2014         struct llog_gen         lgr_gen;
2015         struct llog_rec_tail    lgr_tail;
2016 };
2017 /* On-disk header structure of each log object, stored in little endian order */
2018 #define LLOG_CHUNK_SIZE         8192
2019 #define LLOG_HEADER_SIZE        (96)
2020 #define LLOG_BITMAP_BYTES       (LLOG_CHUNK_SIZE - LLOG_HEADER_SIZE)
2021
2022 #define LLOG_MIN_REC_SIZE       (24) /* round(llog_rec_hdr + llog_rec_tail) */
2023
2024 /* flags for the logs */
2025 #define LLOG_F_ZAP_WHEN_EMPTY   0x1
2026 #define LLOG_F_IS_CAT           0x2
2027 #define LLOG_F_IS_PLAIN         0x4
2028
2029 struct llog_log_hdr {
2030         struct llog_rec_hdr     llh_hdr;
2031         __u64                   llh_timestamp;
2032         __u32                   llh_count;
2033         __u32                   llh_bitmap_offset;
2034         __u32                   llh_size;
2035         __u32                   llh_flags;
2036         __u32                   llh_cat_idx;
2037         /* for a catalog the first plain slot is next to it */
2038         struct obd_uuid         llh_tgtuuid;
2039         __u32                   llh_reserved[LLOG_HEADER_SIZE/sizeof(__u32) - 23];
2040         __u32                   llh_bitmap[LLOG_BITMAP_BYTES/sizeof(__u32)];
2041         struct llog_rec_tail    llh_tail;
2042 } __attribute__((packed));
2043
2044 #define LLOG_BITMAP_SIZE(llh)  ((llh->llh_hdr.lrh_len -         \
2045                                  llh->llh_bitmap_offset -       \
2046                                  sizeof(llh->llh_tail)) * 8)
2047
2048 /** log cookies are used to reference a specific log file and a record therein */
2049 struct llog_cookie {
2050         struct llog_logid       lgc_lgl;
2051         __u32                   lgc_subsys;
2052         __u32                   lgc_index;
2053         __u32                   lgc_padding;
2054 } __attribute__((packed));
2055
2056 /** llog protocol */
2057 typedef enum llogd_rpc_ops {
2058         LLOG_ORIGIN_HANDLE_CREATE       = 501,
2059         LLOG_ORIGIN_HANDLE_NEXT_BLOCK   = 502,
2060         LLOG_ORIGIN_HANDLE_READ_HEADER  = 503,
2061         LLOG_ORIGIN_HANDLE_WRITE_REC    = 504,
2062         LLOG_ORIGIN_HANDLE_CLOSE        = 505,
2063         LLOG_ORIGIN_CONNECT             = 506,
2064         LLOG_CATINFO                    = 507,  /* for lfs catinfo */
2065         LLOG_ORIGIN_HANDLE_PREV_BLOCK   = 508,
2066         LLOG_ORIGIN_HANDLE_DESTROY      = 509,  /* for destroy llog object*/
2067         LLOG_LAST_OPC
2068 } llog_cmd_t;
2069 #define LLOG_FIRST_OPC LLOG_ORIGIN_HANDLE_CREATE
2070
2071 struct llogd_body {
2072         struct llog_logid  lgd_logid;
2073         __u32 lgd_ctxt_idx;
2074         __u32 lgd_llh_flags;
2075         __u32 lgd_index;
2076         __u32 lgd_saved_index;
2077         __u32 lgd_len;
2078         __u64 lgd_cur_offset;
2079 } __attribute__((packed));
2080
2081 struct llogd_conn_body {
2082         struct llog_gen         lgdc_gen;
2083         struct llog_logid       lgdc_logid;
2084         __u32                   lgdc_ctxt_idx;
2085 } __attribute__((packed));
2086
2087 struct lov_user_ost_data_join {   /* per-stripe data structure */
2088         __u64 l_extent_start;     /* extent start*/
2089         __u64 l_extent_end;       /* extent end*/
2090         __u64 l_object_id;        /* OST object ID */
2091         __u64 l_object_gr;        /* OST object group (creating MDS number) */
2092         __u32 l_ost_gen;          /* generation of this OST index */
2093         __u32 l_ost_idx;          /* OST index in LOV */
2094 } __attribute__((packed));
2095
2096 struct lov_user_md_join {         /* LOV EA user data (host-endian) */
2097         __u32 lmm_magic;          /* magic number = LOV_MAGIC_JOIN */
2098         __u32 lmm_pattern;        /* LOV_PATTERN_RAID0, LOV_PATTERN_RAID1 */
2099         __u64 lmm_object_id;      /* LOV object ID */
2100         __u64 lmm_object_gr;      /* LOV object group */
2101         __u32 lmm_stripe_size;    /* size of stripe in bytes */
2102         __u32 lmm_stripe_count;   /* num stripes in use for this object */
2103         __u32 lmm_extent_count;   /* extent count of lmm*/
2104         __u64 lmm_tree_id;        /* mds tree object id */
2105         __u64 lmm_tree_gen;       /* mds tree object gen */
2106         struct llog_logid lmm_array_id; /* mds extent desc llog object id */
2107         struct lov_user_ost_data_join lmm_objects[0]; /* per-stripe data */
2108 } __attribute__((packed));
2109
2110 /* Note: 64-bit types are 64-bit aligned in structure */
2111 struct obdo {
2112         obd_valid               o_valid;        /* hot fields in this obdo */
2113         obd_id                  o_id;
2114         obd_gr                  o_gr;
2115         obd_id                  o_fid;
2116         obd_size                o_size;         /* o_size-o_blocks == ost_lvb */
2117         obd_time                o_mtime;
2118         obd_time                o_atime;
2119         obd_time                o_ctime;
2120         obd_blocks              o_blocks;       /* brw: cli sent cached bytes */
2121         obd_size                o_grant;
2122
2123         /* 32-bit fields start here: keep an even number of them via padding */
2124         obd_blksize             o_blksize;      /* optimal IO blocksize */
2125         obd_mode                o_mode;         /* brw: cli sent cache remain */
2126         obd_uid                 o_uid;
2127         obd_gid                 o_gid;
2128         obd_flag                o_flags;
2129         obd_count               o_nlink;        /* brw: checksum */
2130         obd_count               o_generation;
2131         obd_count               o_misc;         /* brw: o_dropped */
2132         __u32                   o_easize;       /* epoch in ost writes */
2133         __u32                   o_mds;
2134         __u32                   o_stripe_idx;   /* holds stripe idx */
2135         __u32                   o_padding_1;
2136         struct lustre_handle    o_handle;       /* brw: lock handle to prolong locks */
2137         struct llog_cookie      o_lcookie;      /* destroy: unlink cookie from MDS */
2138
2139         __u64                   o_padding_2;
2140         __u64                   o_padding_3;
2141         __u64                   o_padding_4;
2142         __u64                   o_padding_5;
2143         __u64                   o_padding_6;
2144 };
2145
2146 #define o_dirty   o_blocks
2147 #define o_undirty o_mode
2148 #define o_dropped o_misc
2149 #define o_cksum   o_nlink
2150
2151 static inline void lustre_set_wire_obdo(struct obdo *wobdo, struct obdo *lobdo)
2152 {
2153         memcpy(wobdo, lobdo, sizeof(*lobdo));
2154         wobdo->o_flags &= ~OBD_FL_LOCAL_MASK;
2155 }
2156
2157 static inline void lustre_get_wire_obdo(struct obdo *lobdo, struct obdo *wobdo)
2158 {
2159         obd_flag local_flags = lobdo->o_flags & OBD_FL_LOCAL_MASK;
2160
2161         LASSERT(!(wobdo->o_flags & OBD_FL_LOCAL_MASK));
2162         
2163         memcpy(lobdo, wobdo, sizeof(*lobdo));
2164         lobdo->o_flags &= ~OBD_FL_LOCAL_MASK;
2165         lobdo->o_flags |= local_flags;
2166 }
2167
2168 extern void lustre_swab_obdo (struct obdo *o);
2169
2170 /* request structure for OST's */
2171 struct ost_body {
2172         struct  obdo oa;
2173 };
2174
2175 /* Key for FIEMAP to be used in get_info calls */
2176 struct ll_fiemap_info_key {
2177         char    name[8];
2178         struct  obdo oa;
2179         struct  ll_user_fiemap fiemap;
2180 };
2181
2182 extern void lustre_swab_ost_body (struct ost_body *b);
2183 extern void lustre_swab_ost_last_id(obd_id *id);
2184 extern void lustre_swab_fiemap(struct ll_user_fiemap *fiemap);
2185
2186 extern int  lustre_swab_lov_user_md(struct lov_user_md_v1 *lum);
2187 extern int  lustre_swab_lov_user_md_objects(struct lov_user_md *lod);
2188 extern void lustre_swab_lov_user_md_join(struct lov_user_md_join *lumj);
2189 extern void lustre_swab_lov_mds_md(struct lov_mds_md *lmm);
2190
2191 /* llog_swab.c */
2192 extern void lustre_swab_llogd_body (struct llogd_body *d);
2193 extern void lustre_swab_llog_hdr (struct llog_log_hdr *h);
2194 extern void lustre_swab_llogd_conn_body (struct llogd_conn_body *d);
2195 extern void lustre_swab_llog_rec(struct llog_rec_hdr  *rec,
2196                                  struct llog_rec_tail *tail);
2197
2198 struct lustre_cfg;
2199 extern void lustre_swab_lustre_cfg(struct lustre_cfg *lcfg);
2200
2201 /* this will be used when OBD_CONNECT_CHANGE_QS is set */
2202 struct qunit_data {
2203         __u32 qd_id;    /* ID appiles to (uid, gid) */
2204         __u32 qd_flags; /* LQUOTA_FLAGS_* affect the responding bits */
2205         __u64 qd_count; /* acquire/release count (bytes for block quota) */
2206         __u64 qd_qunit; /* when a master returns the reply to a slave, it will
2207                          * contain the current corresponding qunit size */
2208         __u64 padding;
2209 };
2210
2211 #define QDATA_IS_GRP(qdata)    ((qdata)->qd_flags & LQUOTA_FLAGS_GRP)
2212 #define QDATA_IS_BLK(qdata)    ((qdata)->qd_flags & LQUOTA_FLAGS_BLK)
2213 #define QDATA_IS_ADJBLK(qdata) ((qdata)->qd_flags & LQUOTA_FLAGS_ADJBLK)
2214 #define QDATA_IS_ADJINO(qdata) ((qdata)->qd_flags & LQUOTA_FLAGS_ADJINO)
2215 #define QDATA_IS_CHANGE_QS(qdata) ((qdata)->qd_flags & LQUOTA_FLAGS_CHG_QS)
2216
2217 #define QDATA_SET_GRP(qdata)    ((qdata)->qd_flags |= LQUOTA_FLAGS_GRP)
2218 #define QDATA_SET_BLK(qdata)    ((qdata)->qd_flags |= LQUOTA_FLAGS_BLK)
2219 #define QDATA_SET_ADJBLK(qdata) ((qdata)->qd_flags |= LQUOTA_FLAGS_ADJBLK)
2220 #define QDATA_SET_ADJINO(qdata) ((qdata)->qd_flags |= LQUOTA_FLAGS_ADJINO)
2221 #define QDATA_SET_CHANGE_QS(qdata) ((qdata)->qd_flags |= LQUOTA_FLAGS_CHG_QS)
2222
2223 #define QDATA_CLR_GRP(qdata)        ((qdata)->qd_flags &= ~LQUOTA_FLAGS_GRP)
2224 #define QDATA_CLR_CHANGE_QS(qdata)  ((qdata)->qd_flags &= ~LQUOTA_FLAGS_CHG_QS)
2225
2226 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(1, 9, 0, 0)
2227 /* this will be used when OBD_CONNECT_QUOTA64 is set */
2228 struct qunit_data_old2 {
2229         __u32 qd_id; /* ID appiles to (uid, gid) */
2230         __u32 qd_flags; /* Quota type (USRQUOTA, GRPQUOTA) occupy one bit;
2231                          * Block quota or file quota occupy one bit */
2232         __u64 qd_count; /* acquire/release count (bytes for block quota) */
2233 };
2234 #else
2235 #warning "remove quota code above for format absolete in new release"
2236 #endif
2237
2238 extern void lustre_swab_qdata(struct qunit_data *d);
2239 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(1, 9, 0, 0)
2240 extern void lustre_swab_qdata_old2(struct qunit_data_old2 *d);
2241 #else
2242 #warning "remove quota code above for format absolete in new release"
2243 #endif
2244 extern int quota_get_qdata(void*req, struct qunit_data *qdata,
2245                            int is_req, int is_exp);
2246 extern int quota_copy_qdata(void *request, struct qunit_data *qdata,
2247                             int is_req, int is_exp);
2248
2249 typedef enum {
2250         QUOTA_DQACQ     = 601,
2251         QUOTA_DQREL     = 602,
2252         QUOTA_LAST_OPC
2253 } quota_cmd_t;
2254 #define QUOTA_FIRST_OPC QUOTA_DQACQ
2255
2256 #define JOIN_FILE_ALIGN 4096
2257
2258 #define QUOTA_REQUEST   1
2259 #define QUOTA_REPLY     0
2260 #define QUOTA_EXPORT    1
2261 #define QUOTA_IMPORT    0
2262
2263 /* quota check function */
2264 #define QUOTA_RET_OK           0 /**< return successfully */
2265 #define QUOTA_RET_NOQUOTA      1 /**< not support quota */
2266 #define QUOTA_RET_NOLIMIT      2 /**< quota limit isn't set */
2267 #define QUOTA_RET_ACQUOTA      4 /**< need to acquire extra quota */
2268
2269 extern int quota_get_qunit_data_size(__u64 flag);
2270
2271 /* security opcodes */
2272 typedef enum {
2273         SEC_CTX_INIT            = 801,
2274         SEC_CTX_INIT_CONT       = 802,
2275         SEC_CTX_FINI            = 803,
2276         SEC_LAST_OPC,
2277         SEC_FIRST_OPC           = SEC_CTX_INIT
2278 } sec_cmd_t;
2279
2280 /*
2281  * capa related definitions
2282  */
2283 #define CAPA_HMAC_MAX_LEN       64
2284 #define CAPA_HMAC_KEY_MAX_LEN   56
2285
2286 /* NB take care when changing the sequence of elements this struct,
2287  * because the offset info is used in find_capa() */
2288 struct lustre_capa {
2289         struct lu_fid   lc_fid;         /** fid */
2290         __u64           lc_opc;         /** operations allowed */
2291         __u64           lc_uid;         /** file owner */
2292         __u64           lc_gid;         /** file group */
2293         __u32           lc_flags;       /** HMAC algorithm & flags */
2294         __u32           lc_keyid;       /** key# used for the capability */
2295         __u32           lc_timeout;     /** capa timeout value (sec) */
2296         __u32           lc_expiry;      /** expiry time (sec) */
2297         __u8            lc_hmac[CAPA_HMAC_MAX_LEN];   /** HMAC */
2298 } __attribute__((packed));
2299
2300 #endif