Whamcloud - gitweb
- do not check dir for split if cleint already knows that it is split.
[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  *   This file is part of Lustre, http://www.lustre.org
5  *
6  * Lustre wire protocol definitions.
7  *
8  * All structs passing over the wire should be declared here (lov_mds_md
9  * being the lone exception).  Structs must be properly aligned to put
10  * 64-bit values on an 8-byte boundary.  Any structs being added here
11  * must also be added to utils/wirecheck.c and "make newwiretest" run
12  * to regenerate the utils/wiretest.c sources.  This allows us to verify
13  * that wire structs have the proper alignment/size on all architectures.
14  *
15  * We assume all nodes are either little-endian or big-endian, and we
16  * always send messages in the sender's native format.  The receiver
17  * detects the message format by checking the 'magic' field of the message
18  * (see lustre_msg_swabbed() below).
19  *
20  * Each wire type has corresponding 'lustre_swab_xxxtypexxx()' routines,
21  * implemented either here, inline (trivial implementations) or in
22  * ptlrpc/pack_generic.c.  These 'swabbers' convert the type from "other"
23  * endian, in-place in the message buffer.
24  *
25  * A swabber takes a single pointer argument.  The caller must already have
26  * verified that the length of the message buffer >= sizeof (type).
27  *
28  * For variable length types, a second 'lustre_swab_v_xxxtypexxx()' routine
29  * may be defined that swabs just the variable part, after the caller has
30  * verified that the message buffer is large enough.
31  */
32
33 #ifndef _LUSTRE_IDL_H_
34 #define _LUSTRE_IDL_H_
35
36 #include <libcfs/kp30.h>
37
38 #if defined(__linux__)
39 #include <linux/lustre_types.h>
40 #elif defined(__APPLE__)
41 #include <darwin/lustre_types.h>
42 #elif defined(__WINNT__)
43 #include <winnt/lustre_types.h>
44 #else
45 #error Unsupported operating system.
46 #endif
47
48 #include <lnet/types.h>   /* for lnet_nid_t */
49
50 /*
51  * CLASSERT()
52  */
53 #include <libcfs/kp30.h>
54
55 /* Defn's shared with user-space. */
56 #include <lustre/lustre_user.h>
57
58 /*
59  * this file contains all data structures used in Lustre interfaces:
60  * - obdo and obd_request records
61  * - mds_request records
62  * - ldlm data
63  * - ioctl's
64  */
65
66 /*
67  *  GENERAL STUFF
68  */
69 /* FOO_REQUEST_PORTAL is for incoming requests on the FOO
70  * FOO_REPLY_PORTAL   is for incoming replies on the FOO
71  * FOO_BULK_PORTAL    is for incoming bulk on the FOO
72  */
73
74 #define CONNMGR_REQUEST_PORTAL          1
75 #define CONNMGR_REPLY_PORTAL            2
76 //#define OSC_REQUEST_PORTAL            3
77 #define OSC_REPLY_PORTAL                4
78 //#define OSC_BULK_PORTAL               5
79 #define OST_IO_PORTAL                   6
80 #define OST_CREATE_PORTAL               7
81 #define OST_BULK_PORTAL                 8
82 //#define MDC_REQUEST_PORTAL            9
83 #define MDC_REPLY_PORTAL               10
84 //#define MDC_BULK_PORTAL              11
85 #define MDS_REQUEST_PORTAL             12
86 //#define MDS_REPLY_PORTAL             13
87 #define MDS_BULK_PORTAL                14
88 #define LDLM_CB_REQUEST_PORTAL         15
89 #define LDLM_CB_REPLY_PORTAL           16
90 #define LDLM_CANCEL_REQUEST_PORTAL     17
91 #define LDLM_CANCEL_REPLY_PORTAL       18
92 //#define PTLBD_REQUEST_PORTAL           19
93 //#define PTLBD_REPLY_PORTAL             20
94 //#define PTLBD_BULK_PORTAL              21
95 #define MDS_SETATTR_PORTAL             22
96 #define MDS_READPAGE_PORTAL            23
97
98 #define MGC_REPLY_PORTAL               25
99 #define MGS_REQUEST_PORTAL             26
100 #define MGS_REPLY_PORTAL               27
101 #define OST_REQUEST_PORTAL             28
102 #define FLD_REQUEST_PORTAL             29
103 #define SEQ_METADATA_PORTAL            30
104 #define SEQ_DATA_PORTAL                31
105 #define SEQ_CONTROLLER_PORTAL          32
106
107 #define SVC_KILLED               1
108 #define SVC_EVENT                2
109 #define SVC_SIGNAL               4
110 #define SVC_RUNNING              8
111 #define SVC_STOPPING            16
112 #define SVC_STOPPED             32
113
114 /* packet types */
115 #define PTL_RPC_MSG_REQUEST 4711
116 #define PTL_RPC_MSG_ERR     4712
117 #define PTL_RPC_MSG_REPLY   4713
118
119 /* DON'T use swabbed values of MAGIC as magic! */
120 #define LUSTRE_MSG_MAGIC_V1 0x0BD00BD0
121 #define LUSTRE_MSG_MAGIC_V2 0x0BD00BD2
122
123 #define LUSTRE_MSG_MAGIC_V1_SWABBED 0xD00BD00B
124 #define LUSTRE_MSG_MAGIC_V2_SWABBED 0xD20BD00B
125
126 #define LUSTRE_MSG_MAGIC LUSTRE_MSG_MAGIC_V2
127
128 #define PTLRPC_MSG_VERSION  0x00000003
129 #define LUSTRE_VERSION_MASK 0xffff0000
130 #define LUSTRE_OBD_VERSION  0x00010000
131 #define LUSTRE_MDS_VERSION  0x00020000
132 #define LUSTRE_OST_VERSION  0x00030000
133 #define LUSTRE_DLM_VERSION  0x00040000
134 #define LUSTRE_LOG_VERSION  0x00050000
135 #define LUSTRE_MGS_VERSION  0x00060000
136
137 typedef __u64 mdsno_t;
138 typedef __u64 seqno_t;
139
140 struct lu_range {
141         __u64 lr_start;
142         __u64 lr_end;
143 };
144
145 static inline __u64 range_space(struct lu_range *r)
146 {
147         return r->lr_end - r->lr_start;
148 }
149
150 static inline void range_zero(struct lu_range *r)
151 {
152         r->lr_start = r->lr_end = 0;
153 }
154
155 static inline int range_within(struct lu_range *r,
156                                __u64 s)
157 {
158         return s >= r->lr_start && s < r->lr_end;
159 }
160
161 static inline void range_alloc(struct lu_range *r,
162                                struct lu_range *s,
163                                __u64 w)
164 {
165         r->lr_start = s->lr_start;
166         r->lr_end = s->lr_start + w;
167         s->lr_start += w;
168 }
169
170 static inline int range_is_sane(struct lu_range *r)
171 {
172         return (r->lr_end >= r->lr_start);
173 }
174
175 static inline int range_is_zero(struct lu_range *r)
176 {
177         return (r->lr_start == 0 && r->lr_end == 0);
178 }
179
180 static inline int range_is_exhausted(struct lu_range *r)
181 {
182         return range_space(r) == 0;
183 }
184
185 #define DRANGE "[%#16.16"LPF64"x-%#16.16"LPF64"x]"
186
187 #define PRANGE(range)      \
188         (range)->lr_start, \
189         (range)->lr_end
190
191 struct lu_fid {
192         __u64 f_seq;  /* holds fid sequence. Lustre should support 2 ^ 64
193                        * objects, thus even if one sequence has one object we
194                        * reach this value. */
195         __u32 f_oid;  /* fid number within its sequence. */
196         __u32 f_ver;  /* holds fid version. */
197 };
198
199 /*
200  * fid constants
201  */
202 enum {
203         LUSTRE_ROOT_FID_SEQ  = 1ULL, /* XXX: should go into mkfs. */
204
205         /* initial fid id value */
206         LUSTRE_FID_INIT_OID  = 1UL
207 };
208
209 /* get object sequence */
210 static inline __u64 fid_seq(const struct lu_fid *fid)
211 {
212         return fid->f_seq;
213 }
214
215 /* get object id */
216 static inline __u32 fid_oid(const struct lu_fid *fid)
217 {
218         return fid->f_oid;
219 }
220
221 /* get object version */
222 static inline __u32 fid_ver(const struct lu_fid *fid)
223 {
224         return fid->f_ver;
225 }
226
227 static inline int fid_seq_is_sane(__u64 seq)
228 {
229         return seq != 0;
230 }
231
232 static inline void fid_zero(struct lu_fid *fid)
233 {
234         memset(fid, 0, sizeof(*fid));
235 }
236
237 static inline int fid_is_igif(const struct lu_fid *fid)
238 {
239         return fid_seq(fid) == LUSTRE_ROOT_FID_SEQ;
240 }
241
242 static inline int fid_is_sane(const struct lu_fid *fid)
243 {
244         return
245                 fid != NULL &&
246                 ((fid_seq_is_sane(fid_seq(fid)) && fid_oid(fid) != 0
247                                                 && fid_ver(fid) == 0) ||
248                 fid_is_igif(fid));
249 }
250
251 static inline int fid_is_zero(const struct lu_fid *fid)
252 {
253         return fid_seq(fid) == 0 && fid_oid(fid) == 0;
254 }
255
256 #define DFID "[0x%16.16"LPF64"x/0x%8.8x:0x%8.8x]"
257
258 #define PFID(fid)     \
259         fid_seq(fid), \
260         fid_oid(fid), \
261         fid_ver(fid)
262
263 extern void lustre_swab_lu_fid(struct lu_fid *fid);
264 extern void lustre_swab_lu_range(struct lu_range *range);
265
266 static inline int lu_fid_eq(const struct lu_fid *f0,
267                             const struct lu_fid *f1)
268 {
269         /* Check that there is no alignment padding. */
270         CLASSERT(sizeof *f0 ==
271                  sizeof f0->f_seq + sizeof f0->f_oid + sizeof f0->f_ver);
272         LASSERT(fid_is_igif(f0) || fid_ver(f0) == 0);
273         LASSERT(fid_is_igif(f1) || fid_ver(f1) == 0);
274         return memcmp(f0, f1, sizeof *f0) == 0;
275 }
276
277 /*
278  * Layout of readdir pages, as transmitted on wire.
279  */
280 struct lu_dirent {
281         struct lu_fid lde_fid;
282         __u32         lde_hash;
283         __u16         lde_reclen;
284         __u16         lde_namelen;
285         char          lde_name[0];
286 };
287
288 struct lu_dirpage {
289         __u32            ldp_hash_start;
290         __u32            ldp_hash_end;
291         __u16            ldp_flags;
292         __u32            ldp_pad0;
293         struct lu_dirent ldp_entries[0];
294 };
295
296 enum lu_dirpage_flags {
297         LDF_EMPTY = 1 << 0
298 };
299
300 static inline struct lu_dirent *lu_dirent_start(struct lu_dirpage *dp)
301 {
302         if (le16_to_cpu(dp->ldp_flags) & LDF_EMPTY)
303                 return NULL;
304         else
305                 return dp->ldp_entries;
306 }
307
308 static inline struct lu_dirent *lu_dirent_next(struct lu_dirent *ent)
309 {
310         struct lu_dirent *next;
311
312         if (le16_to_cpu(ent->lde_reclen) != 0)
313                 next = ((void *)ent) + le16_to_cpu(ent->lde_reclen);
314         else
315                 next = NULL;
316         
317         return next;
318 }
319
320 static inline int lu_dirent_size(struct lu_dirent *ent)
321 {
322         if (le16_to_cpu(ent->lde_reclen) == 0) {
323                 return (sizeof(*ent) +
324                         le16_to_cpu(ent->lde_namelen) + 3) & ~3;
325         }
326         return le16_to_cpu(ent->lde_reclen);
327 }
328
329 #define MEA_MAGIC_LAST_CHAR      0xb2221ca1
330 #define MEA_MAGIC_ALL_CHARS      0xb222a11c
331 #define MEA_MAGIC_HASH_SEGMENT   0xb222a11b
332
333 #define MAX_HASH_SIZE            0x7fffffffUL
334 #define MAX_HASH_HIGHEST_BIT     0x10000000
335
336 /* TODO: lmv_stripe_md should contain mds capabilities for all slave fids */
337 struct lmv_stripe_md {
338         __u32         mea_magic;
339         __u32         mea_count;
340         __u32         mea_master;
341         struct lu_fid mea_ids[0];
342 };
343
344 struct lustre_handle {
345         __u64 cookie;
346 };
347 #define DEAD_HANDLE_MAGIC 0xdeadbeefcafebabeULL
348
349 static inline int lustre_handle_is_used(struct lustre_handle *lh)
350 {
351         return lh->cookie != 0ull;
352 }
353
354 static inline int lustre_handle_equal(struct lustre_handle *lh1,
355                                       struct lustre_handle *lh2)
356 {
357         return lh1->cookie == lh2->cookie;
358 }
359
360 static inline void lustre_handle_copy(struct lustre_handle *tgt,
361                                       struct lustre_handle *src)
362 {
363         tgt->cookie = src->cookie;
364 }
365
366 /* we depend on this structure to be 8-byte aligned */
367 /* this type is only endian-adjusted in lustre_unpack_msg() */
368 struct lustre_msg_v1 {
369         struct lustre_handle lm_handle;
370         __u32 lm_magic;
371         __u32 lm_type;
372         __u32 lm_version;
373         __u32 lm_opc;
374         __u64 lm_last_xid;
375         __u64 lm_last_committed;
376         __u64 lm_transno;
377         __u32 lm_status;
378         __u32 lm_flags;
379         __u32 lm_conn_cnt;
380         __u32 lm_bufcount;
381         __u32 lm_buflens[0];
382 };
383
384 #define lustre_msg lustre_msg_v2
385 /* we depend on this structure to be 8-byte aligned */
386 /* this type is only endian-adjusted in lustre_unpack_msg() */
387 struct lustre_msg_v2 {
388         __u32 lm_bufcount;
389         __u32 lm_secflvr;
390         __u32 lm_magic;
391         __u32 lm_repsize;
392         __u32 lm_buflens[0];
393 };
394
395 /* without gss, ptlrpc_body is put at the first buffer. */
396 struct ptlrpc_body {
397         struct lustre_handle pb_handle;
398         __u32 pb_type;
399         __u32 pb_version;
400         __u32 pb_opc;
401         __u32 pb_status;
402         __u64 pb_last_xid;
403         __u64 pb_last_committed;
404         __u64 pb_transno;
405         __u32 pb_flags;
406         __u32 pb_op_flags;
407         __u32 pb_conn_cnt;
408         __u32 pb_paddings[3];
409 };
410
411 extern void lustre_swab_ptlrpc_body(struct ptlrpc_body *pb);
412
413 /* message body offset for lustre_msg_v2 */
414 /* ptlrpc body offset in all request/reply messages */
415 #define MSG_PTLRPC_BODY_OFF             0
416
417 /* normal request/reply message record offset */
418 #define REQ_REC_OFF                     1
419 #define REPLY_REC_OFF                   1
420
421 /* ldlm request message body offset */
422 #define DLM_LOCKREQ_OFF                 1 /* lockreq offset */
423 #define DLM_REQ_REC_OFF                 2 /* normal dlm request record offset */
424
425 /* ldlm intent lock message body offset */
426 #define DLM_INTENT_IT_OFF               2 /* intent lock it offset */
427 #define DLM_INTENT_REC_OFF              3 /* intent lock record offset */
428
429 /* ldlm reply message body offset */
430 #define DLM_LOCKREPLY_OFF               1 /* lockrep offset */
431 #define DLM_REPLY_REC_OFF               2 /* reply record offset */
432
433 /* Flags that are operation-specific go in the top 16 bits. */
434 #define MSG_OP_FLAG_MASK   0xffff0000
435 #define MSG_OP_FLAG_SHIFT  16
436
437 /* Flags that apply to all requests are in the bottom 16 bits */
438 #define MSG_GEN_FLAG_MASK      0x0000ffff
439 #define MSG_LAST_REPLAY        1
440 #define MSG_RESENT             2
441 #define MSG_REPLAY             4
442 #define MSG_REQ_REPLAY_DONE    8
443 #define MSG_LOCK_REPLAY_DONE  16
444
445 /*
446  * Flags for all connect opcodes (MDS_CONNECT, OST_CONNECT)
447  */
448
449 #define MSG_CONNECT_RECOVERING  0x1
450 #define MSG_CONNECT_RECONNECT   0x2
451 #define MSG_CONNECT_REPLAYABLE  0x4
452 //#define MSG_CONNECT_PEER        0x8
453 #define MSG_CONNECT_LIBCLIENT   0x10
454 #define MSG_CONNECT_INITIAL     0x20
455 #define MSG_CONNECT_ASYNC       0x40
456 #define MSG_CONNECT_NEXT_VER    0x80  /* use next version of lustre_msg */
457 #define MSG_CONNECT_TRANSNO     0x100 /* report transno */
458
459 /* Connect flags */
460 #define OBD_CONNECT_RDONLY         0x1ULL /* client allowed read-only access */
461 #define OBD_CONNECT_INDEX          0x2ULL /* connect to specific LOV idx */
462 #define OBD_CONNECT_GRANT          0x8ULL /* OSC acquires grant at connect */
463 #define OBD_CONNECT_SRVLOCK       0x10ULL /* server takes locks for client */
464 #define OBD_CONNECT_VERSION       0x20ULL /* Server supports versions in ocd */
465 #define OBD_CONNECT_REQPORTAL     0x40ULL /* Separate portal for non-IO reqs */
466 #define OBD_CONNECT_ACL           0x80ULL /* client uses access control lists */
467 #define OBD_CONNECT_XATTR        0x100ULL /* client using extended attributes*/
468 #define OBD_CONNECT_CROW         0x200ULL /* MDS+OST create objects on write */
469 #define OBD_CONNECT_TRUNCLOCK    0x400ULL /* locks on server for punch b=9528 */
470 #define OBD_CONNECT_TRANSNO      0x800ULL /* replay sends initial transno */
471 #define OBD_CONNECT_IBITS       0x1000ULL /* support for inodebits locks */
472 #define OBD_CONNECT_JOIN        0x2000ULL /* files can be concatenated */
473 #define OBD_CONNECT_REAL        0x4000ULL
474 #define OBD_CONNECT_ATTRFID     0x8000ULL /* Server supports GetAttr By Fid */
475 #define OBD_CONNECT_NODEVOH     0x10000ULL /* No open handle for special nodes */
476 #define OBD_CONNECT_LCL_CLIENT  0x20000ULL /* local 1.8 client */
477 #define OBD_CONNECT_RMT_CLIENT  0x40000ULL /* Remote 1.8 client */
478 #define OBD_CONNECT_BRW_SIZE    0x80000ULL /* Max bytes per rpc */
479 #define OBD_CONNECT_QUOTA64     0x100000ULL /* 64bit qunit_data.qd_count b=10707*/
480 #define OBD_CONNECT_MDS_CAPA    0x200000ULL /* MDS capability */
481 #define OBD_CONNECT_OSS_CAPA    0x400000ULL /* OSS capability */
482 /* also update obd_connect_names[] for lprocfs_rd_connect_flags()
483  * and lustre/utils/wirecheck.c */
484
485 #define MDT_CONNECT_SUPPORTED  (OBD_CONNECT_RDONLY | OBD_CONNECT_VERSION | \
486                                 OBD_CONNECT_ACL | OBD_CONNECT_XATTR | \
487                                 OBD_CONNECT_IBITS | OBD_CONNECT_JOIN | \
488                                 OBD_CONNECT_NODEVOH | OBD_CONNECT_ATTRFID | \
489                                 OBD_CONNECT_LCL_CLIENT | \
490                                 OBD_CONNECT_RMT_CLIENT | \
491                                 OBD_CONNECT_MDS_CAPA | OBD_CONNECT_OSS_CAPA)
492 #define OST_CONNECT_SUPPORTED  (OBD_CONNECT_SRVLOCK | OBD_CONNECT_GRANT | \
493                                 OBD_CONNECT_REQPORTAL | OBD_CONNECT_VERSION | \
494                                 OBD_CONNECT_TRUNCLOCK | OBD_CONNECT_INDEX | \
495                                 OBD_CONNECT_BRW_SIZE | OBD_CONNECT_QUOTA64 | \
496                                 OBD_CONNECT_OSS_CAPA)
497 #define ECHO_CONNECT_SUPPORTED (0)
498 #define MGS_CONNECT_SUPPORTED  (OBD_CONNECT_VERSION)
499
500 #define MAX_QUOTA_COUNT32 ((0xffffffffULL >> QUOTABLOCK_BITS) << QUOTABLOCK_BITS)
501
502 #define OBD_OCD_VERSION(major,minor,patch,fix) (((major)<<24) + ((minor)<<16) +\
503                                                 ((patch)<<8) + (fix))
504 #define OBD_OCD_VERSION_MAJOR(version) ((int)((version)>>24)&255)
505 #define OBD_OCD_VERSION_MINOR(version) ((int)((version)>>16)&255)
506 #define OBD_OCD_VERSION_PATCH(version) ((int)((version)>>8)&255)
507 #define OBD_OCD_VERSION_FIX(version)   ((int)(version)&255)
508
509 /* This structure is used for both request and reply.
510  *
511  * If we eventually have separate connect data for different types, which we
512  * almost certainly will, then perhaps we stick a union in here. */
513 struct obd_connect_data {
514         __u64 ocd_connect_flags;        /* OBD_CONNECT_* per above */
515         __u64 ocd_transno;              /* first transno from client to be replayed */
516         __u64 ocd_ibits_known;          /* inode bits this client understands */
517         __u32 ocd_version;              /* lustre release version number */
518         __u32 ocd_grant;                /* initial cache grant amount (bytes) */
519         __u32 ocd_index;                /* LOV index to connect to */
520         __u32 ocd_brw_size;             /* Maximum BRW size in bytes */
521         __u32 ocd_nllu;                 /* non-local-lustre-user */
522         __u32 ocd_nllg;                 /* non-local-lustre-group */
523         __u32 ocd_group;                /* MDS group on OST */
524         __u32 padding1;                 /* also fix lustre_swab_connect */
525         __u64 padding2;                 /* also fix lustre_swab_connect */
526         __u64 padding3;                 /* also fix lustre_swab_connect */
527 };
528
529 extern void lustre_swab_connect(struct obd_connect_data *ocd);
530
531 /*
532  *   OST requests: OBDO & OBD request records
533  */
534
535 /* opcodes */
536 typedef enum {
537         OST_REPLY      =  0,       /* reply ? */
538         OST_GETATTR    =  1,
539         OST_SETATTR    =  2,
540         OST_READ       =  3,
541         OST_WRITE      =  4,
542         OST_CREATE     =  5,
543         OST_DESTROY    =  6,
544         OST_GET_INFO   =  7,
545         OST_CONNECT    =  8,
546         OST_DISCONNECT =  9,
547         OST_PUNCH      = 10,
548         OST_OPEN       = 11,
549         OST_CLOSE      = 12,
550         OST_STATFS     = 13,
551 /*      OST_SAN_READ   = 14,    deprecated */
552 /*      OST_SAN_WRITE  = 15,    deprecated */
553         OST_SYNC       = 16,
554         OST_SET_INFO   = 17,
555         OST_QUOTACHECK = 18,
556         OST_QUOTACTL   = 19,
557         OST_LAST_OPC
558 } ost_cmd_t;
559 #define OST_FIRST_OPC  OST_REPLY
560
561 typedef uint64_t        obd_id;
562 typedef uint64_t        obd_gr;
563 typedef uint64_t        obd_time;
564 typedef uint64_t        obd_size;
565 typedef uint64_t        obd_off;
566 typedef uint64_t        obd_blocks;
567 typedef uint32_t        obd_blksize;
568 typedef uint32_t        obd_mode;
569 typedef uint32_t        obd_uid;
570 typedef uint32_t        obd_gid;
571 typedef uint32_t        obd_flag;
572 typedef uint64_t        obd_valid;
573 typedef uint32_t        obd_count;
574
575 #define OBD_FL_INLINEDATA    (0x00000001)
576 #define OBD_FL_OBDMDEXISTS   (0x00000002)
577 #define OBD_FL_DELORPHAN     (0x00000004) /* if set in o_flags delete orphans */
578 #define OBD_FL_NORPC         (0x00000008) /* set in o_flags do in OSC not OST */
579 #define OBD_FL_IDONLY        (0x00000010) /* set in o_flags only adjust obj id*/
580 #define OBD_FL_RECREATE_OBJS (0x00000020) /* recreate missing obj */
581 #define OBD_FL_DEBUG_CHECK   (0x00000040) /* echo client/server debug check */
582 #define OBD_FL_NO_USRQUOTA   (0x00000100) /* the object's owner is over quota */
583 #define OBD_FL_NO_GRPQUOTA   (0x00000200) /* the object's group is over quota */
584 #define OBD_FL_CREATE_CROW   (0x00000400) /* object should be create on write */
585
586 /*
587  * Set this to delegate DLM locking during obd_punch() to the OSTs. Only OSTs
588  * that declared OBD_CONNECT_TRUNCLOCK in their connect flags support this
589  * functionality.
590  */
591 #define OBD_FL_TRUNCLOCK     (0x00000800)
592
593 /*
594  * This should not be smaller than sizeof(struct lustre_handle) + sizeof(struct
595  * llog_cookie) + sizeof(struct ll_fid). Nevertheless struct ll_fid is not
596  * longer stored in o_inline, we keep this just for case.
597  */
598 #define OBD_INLINESZ    80
599
600 /* Note: 64-bit types are 64-bit aligned in structure */
601 struct obdo {
602         obd_valid               o_valid;        /* hot fields in this obdo */
603         obd_id                  o_id;
604         obd_gr                  o_gr;
605         obd_id                  o_fid;
606         obd_size                o_size;         /* o_size-o_blocks == ost_lvb */
607         obd_time                o_mtime;
608         obd_time                o_atime;
609         obd_time                o_ctime;
610         obd_blocks              o_blocks;       /* brw: cli sent cached bytes */
611         obd_size                o_grant;
612
613         /* 32-bit fields start here: keep an even number of them via padding */
614         obd_blksize             o_blksize;      /* optimal IO blocksize */
615         obd_mode                o_mode;         /* brw: cli sent cache remain */
616         obd_uid                 o_uid;
617         obd_gid                 o_gid;
618         obd_flag                o_flags;
619         obd_count               o_nlink;        /* brw: checksum */
620         obd_count               o_generation;
621         obd_count               o_misc;         /* brw: o_dropped */
622         __u32                   o_easize;       /* epoch in ost writes */
623         __u32                   o_mds;
624         __u32                   o_stripe_idx;   /* holds stripe idx */
625         __u32                   o_padding_1;
626         char                    o_inline[OBD_INLINESZ];
627                                 /* lustre_handle + llog_cookie */
628 };
629
630 #define o_dirty   o_blocks
631 #define o_undirty o_mode
632 #define o_dropped o_misc
633 #define o_cksum   o_nlink
634
635 extern void lustre_swab_obdo (struct obdo *o);
636
637 struct md_op_data {
638         struct lu_fid           op_fid1;
639         struct lu_fid           op_fid2;
640         struct lustre_handle    op_handle;
641         __u64                   op_mod_time;
642         const char             *op_name;
643         int                     op_namelen;
644         __u32                   op_mode;
645         struct lmv_stripe_md   *op_mea1;
646         struct lmv_stripe_md   *op_mea2;
647         __u32                   op_suppgids[2];
648         __u32                   op_fsuid;
649         __u32                   op_fsgid;
650         __u32                   op_cap;
651
652         /* iattr fields and blocks. */
653         struct iattr            op_attr;
654 #ifdef __KERNEL__
655 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,14)
656         unsigned int            op_attr_flags;
657 #endif
658 #endif
659         loff_t                  op_attr_blocks;
660
661         /* Size-on-MDS epoch and flags. */
662         __u64                   op_ioepoch;
663         __u32                   op_flags;
664
665         /* Capa fields */
666         struct obd_capa        *op_capa1;
667         struct obd_capa        *op_capa2;
668
669         /* Should server check split in lookups or not. */
670         int                     op_cksplit;
671 };
672
673 #define MDS_MODE_DONT_LOCK (1 << 30)
674 #define MDS_MODE_REPLAY    (1 << 31)
675
676 #define LOV_MAGIC_V1      0x0BD10BD0
677 #define LOV_MAGIC         LOV_MAGIC_V1
678 #define LOV_MAGIC_JOIN    0x0BD20BD0
679
680 #define LOV_PATTERN_RAID0 0x001   /* stripes are used round-robin */
681 #define LOV_PATTERN_RAID1 0x002   /* stripes are mirrors of each other */
682 #define LOV_PATTERN_FIRST 0x100   /* first stripe is not in round-robin */
683 #define LOV_PATTERN_CMOBD 0x200
684
685 #define lov_ost_data lov_ost_data_v1
686 struct lov_ost_data_v1 {          /* per-stripe data structure (little-endian)*/
687         __u64 l_object_id;        /* OST object ID */
688         __u64 l_object_gr;        /* OST object group (creating MDS number) */
689         __u32 l_ost_gen;          /* generation of this l_ost_idx */
690         __u32 l_ost_idx;          /* OST index in LOV (lov_tgt_desc->tgts) */
691 };
692
693 #define lov_mds_md lov_mds_md_v1
694 struct lov_mds_md_v1 {            /* LOV EA mds/wire data (little-endian) */
695         __u32 lmm_magic;          /* magic number = LOV_MAGIC_V1 */
696         __u32 lmm_pattern;        /* LOV_PATTERN_RAID0, LOV_PATTERN_RAID1 */
697         __u64 lmm_object_id;      /* LOV object ID */
698         __u64 lmm_object_gr;      /* LOV object group */
699         __u32 lmm_stripe_size;    /* size of stripe in bytes */
700         __u32 lmm_stripe_count;   /* num stripes in use for this object */
701         struct lov_ost_data_v1 lmm_objects[0]; /* per-stripe data */
702 };
703
704 #define MAX_MD_SIZE (sizeof(struct lov_mds_md) + 4 * sizeof(struct lov_ost_data))
705 #define MIN_MD_SIZE (sizeof(struct lov_mds_md) + 1 * sizeof(struct lov_ost_data))
706
707 #define XATTR_NAME_ACL_ACCESS   "system.posix_acl_access"
708 #define XATTR_NAME_ACL_DEFAULT  "system.posix_acl_default"
709 #define XATTR_NAME_LOV          "trusted.lov"
710
711 /* remote ACL */
712 #define XATTR_NAME_LUSTRE_ACL   "system.lustre_acl"
713
714 #define OBD_MD_FLID        (0x00000001ULL) /* object ID */
715 #define OBD_MD_FLATIME     (0x00000002ULL) /* access time */
716 #define OBD_MD_FLMTIME     (0x00000004ULL) /* data modification time */
717 #define OBD_MD_FLCTIME     (0x00000008ULL) /* change time */
718 #define OBD_MD_FLSIZE      (0x00000010ULL) /* size */
719 #define OBD_MD_FLBLOCKS    (0x00000020ULL) /* allocated blocks count */
720 #define OBD_MD_FLBLKSZ     (0x00000040ULL) /* block size */
721 #define OBD_MD_FLMODE      (0x00000080ULL) /* access bits (mode & ~S_IFMT) */
722 #define OBD_MD_FLTYPE      (0x00000100ULL) /* object type (mode & S_IFMT) */
723 #define OBD_MD_FLUID       (0x00000200ULL) /* user ID */
724 #define OBD_MD_FLGID       (0x00000400ULL) /* group ID */
725 #define OBD_MD_FLFLAGS     (0x00000800ULL) /* flags word */
726 #define OBD_MD_FLNLINK     (0x00002000ULL) /* link count */
727 #define OBD_MD_FLGENER     (0x00004000ULL) /* generation number */
728 #define OBD_MD_FLINLINE    (0x00008000ULL) /* inline data */
729 #define OBD_MD_FLRDEV      (0x00010000ULL) /* device number */
730 #define OBD_MD_FLEASIZE    (0x00020000ULL) /* extended attribute data */
731 #define OBD_MD_LINKNAME    (0x00040000ULL) /* symbolic link target */
732 #define OBD_MD_FLHANDLE    (0x00080000ULL) /* file handle */
733 #define OBD_MD_FLCKSUM     (0x00100000ULL) /* bulk data checksum */
734 #define OBD_MD_FLQOS       (0x00200000ULL) /* quality of service stats */
735 #define OBD_MD_FLOSCOPQ    (0x00400000ULL) /* osc opaque data */
736 #define OBD_MD_FLCOOKIE    (0x00800000ULL) /* log cancellation cookie */
737 #define OBD_MD_FLGROUP     (0x01000000ULL) /* group */
738 #define OBD_MD_FLFID       (0x02000000ULL) /* ->ost write inline fid */
739 #define OBD_MD_FLEPOCH     (0x04000000ULL) /* ->ost write easize is epoch */
740                                            /* ->mds if epoch opens or closes */
741 #define OBD_MD_FLGRANT     (0x08000000ULL) /* ost preallocation space grant */
742 #define OBD_MD_FLDIREA     (0x10000000ULL) /* dir's extended attribute data */
743 #define OBD_MD_FLUSRQUOTA  (0x20000000ULL) /* over quota flags sent from ost */
744 #define OBD_MD_FLGRPQUOTA  (0x40000000ULL) /* over quota flags sent from ost */
745 #define OBD_MD_FLMODEASIZE (0x80000000ULL) /* EA size will be changed */
746
747 #define OBD_MD_MDS         (0x0000000100000000ULL) /* where an inode lives on */
748 #define OBD_MD_REINT       (0x0000000200000000ULL) /* reintegrate oa */
749 #define OBD_MD_MEA         (0x0000000400000000ULL) /* CMD EA  */
750
751 #define OBD_MD_FLXATTR     (0x0000001000000000ULL) /* xattr */
752 #define OBD_MD_FLXATTRLS   (0x0000002000000000ULL) /* xattr list */
753 #define OBD_MD_FLXATTRRM   (0x0000004000000000ULL) /* xattr remove */
754 #define OBD_MD_FLACL       (0x0000008000000000ULL) /* ACL */
755 #define OBD_MD_FLRMTPERM   (0x0000010000000000ULL) /* remote permission */
756 #define OBD_MD_FLMDSCAPA   (0x0000020000000000ULL) /* MDS capability */
757 #define OBD_MD_FLOSSCAPA   (0x0000040000000000ULL) /* OSS capability */
758 #define OBD_MD_FLCKSPLIT   (0x0000080000000000ULL) /* Check split on server */
759
760 #define OBD_MD_FLGETATTR (OBD_MD_FLID    | OBD_MD_FLATIME | OBD_MD_FLMTIME | \
761                           OBD_MD_FLCTIME | OBD_MD_FLSIZE  | OBD_MD_FLBLKSZ | \
762                           OBD_MD_FLMODE  | OBD_MD_FLTYPE  | OBD_MD_FLUID   | \
763                           OBD_MD_FLGID   | OBD_MD_FLFLAGS | OBD_MD_FLNLINK | \
764                           OBD_MD_FLGENER | OBD_MD_FLRDEV  | OBD_MD_FLGROUP)
765
766 static inline struct lustre_handle *obdo_handle(struct obdo *oa)
767 {
768         return (struct lustre_handle *)oa->o_inline;
769 }
770
771 static inline struct llog_cookie *obdo_logcookie(struct obdo *oa)
772 {
773         return (struct llog_cookie *)(oa->o_inline +
774                                       sizeof(struct lustre_handle));
775 }
776 /* don't forget obdo_fid which is way down at the bottom so it can
777  * come after the definition of llog_cookie */
778
779 struct obd_statfs {
780         __u64           os_type;
781         __u64           os_blocks;
782         __u64           os_bfree;
783         __u64           os_bavail;
784         __u64           os_files;
785         __u64           os_ffree;
786         __u8            os_fsid[40];
787         __u32           os_bsize;
788         __u32           os_namelen;
789         __u64           os_maxbytes;
790         __u32           os_state;       /* positive error code on server */
791         __u32           os_spare1;
792         __u32           os_spare2;
793         __u32           os_spare3;
794         __u32           os_spare4;
795         __u32           os_spare5;
796         __u32           os_spare6;
797         __u32           os_spare7;
798         __u32           os_spare8;
799         __u32           os_spare9;
800 };
801
802 extern void lustre_swab_obd_statfs (struct obd_statfs *os);
803
804 /* ost_body.data values for OST_BRW */
805
806 #define OBD_BRW_READ            0x01
807 #define OBD_BRW_WRITE           0x02
808 #define OBD_BRW_RWMASK          (OBD_BRW_READ | OBD_BRW_WRITE)
809 #define OBD_BRW_SYNC            0x08
810 #define OBD_BRW_CHECK           0x10
811 #define OBD_BRW_FROM_GRANT      0x20 /* the osc manages this under llite */
812 #define OBD_BRW_GRANTED         0x40 /* the ost manages this */
813 #define OBD_BRW_DROP            0x80 /* drop the page after IO */
814 #define OBD_BRW_NOQUOTA        0x100
815 #define OBD_BRW_SRVLOCK        0x200 /* Client holds no lock over this page */
816
817 #define OBD_OBJECT_EOF 0xffffffffffffffffULL
818
819 #define OST_MIN_PRECREATE 16384
820 #define OST_MAX_PRECREATE 20000
821
822 struct obd_ioobj {
823         obd_id               ioo_id;
824         obd_gr               ioo_gr;
825         __u32                ioo_type;
826         __u32                ioo_bufcnt;
827 };
828
829 extern void lustre_swab_obd_ioobj (struct obd_ioobj *ioo);
830
831 /* multiple of 8 bytes => can array */
832 struct niobuf_remote {
833         __u64 offset;
834         __u32 len;
835         __u32 flags;
836 };
837
838 extern void lustre_swab_niobuf_remote (struct niobuf_remote *nbr);
839
840 /* request structure for OST's */
841
842 struct ost_body {
843         struct  obdo oa;
844 };
845
846 extern void lustre_swab_ost_body (struct ost_body *b);
847 extern void lustre_swab_ost_last_id(obd_id *id);
848 extern void lustre_swab_generic_32s(__u32 *val);
849
850 /* lock value block communicated between the filter and llite */
851
852 struct ost_lvb {
853         __u64 lvb_size;
854         __u64 lvb_mtime;
855         __u64 lvb_atime;
856         __u64 lvb_ctime;
857         __u64 lvb_blocks;
858 };
859
860 extern void lustre_swab_ost_lvb(struct ost_lvb *);
861
862 /*
863  *   MDS REQ RECORDS
864  */
865
866 /* opcodes */
867 typedef enum {
868         MDS_GETATTR      = 33,
869         MDS_GETATTR_NAME = 34,
870         MDS_CLOSE        = 35,
871         MDS_REINT        = 36,
872         MDS_READPAGE     = 37,
873         MDS_CONNECT      = 38,
874         MDS_DISCONNECT   = 39,
875         MDS_GETSTATUS    = 40,
876         MDS_STATFS       = 41,
877         MDS_PIN          = 42,
878         MDS_UNPIN        = 43,
879         MDS_SYNC         = 44,
880         MDS_DONE_WRITING = 45,
881         MDS_SET_INFO     = 46,
882         MDS_QUOTACHECK   = 47,
883         MDS_QUOTACTL     = 48,
884         MDS_GETXATTR     = 49,
885         MDS_SETXATTR     = 50,
886         MDS_WRITEPAGE    = 51,
887         MDS_IS_SUBDIR    = 52,
888         MDS_LAST_OPC
889 } mds_cmd_t;
890
891 #define MDS_FIRST_OPC    MDS_GETATTR
892
893 /*
894  * Do not exceed 63
895  */
896
897 typedef enum {
898         REINT_SETATTR  = 1,
899         REINT_CREATE   = 2,
900         REINT_LINK     = 3,
901         REINT_UNLINK   = 4,
902         REINT_RENAME   = 5,
903         REINT_OPEN     = 6,
904 //      REINT_CLOSE    = 7,
905 //      REINT_WRITE    = 8,
906         REINT_MAX
907 } mds_reint_t, mdt_reint_t;
908
909 /* the disposition of the intent outlines what was executed */
910 #define DISP_IT_EXECD        0x00000001
911 #define DISP_LOOKUP_EXECD    0x00000002
912 #define DISP_LOOKUP_NEG      0x00000004
913 #define DISP_LOOKUP_POS      0x00000008
914 #define DISP_OPEN_CREATE     0x00000010
915 #define DISP_OPEN_OPEN       0x00000020
916 #define DISP_ENQ_COMPLETE    0x00400000
917 #define DISP_ENQ_OPEN_REF    0x00800000
918 #define DISP_ENQ_CREATE_REF  0x01000000
919
920 /* INODE LOCK PARTS */
921 #define MDS_INODELOCK_LOOKUP 0x000001       /* dentry, mode, owner, group */
922 #define MDS_INODELOCK_UPDATE 0x000002       /* size, links, timestamps */
923 #define MDS_INODELOCK_OPEN   0x000004       /* For opened files */
924
925 /* Do not forget to increase MDS_INODELOCK_MAXSHIFT when adding new bits */
926 #define MDS_INODELOCK_MAXSHIFT 2
927 /* This FULL lock is useful to take on unlink sort of operations */
928 #define MDS_INODELOCK_FULL ((1<<(MDS_INODELOCK_MAXSHIFT+1))-1)
929
930 #define LUSTRE_CONFIG_SET 0
931 #define LUSTRE_CONFIG_GET 1
932
933 #define LUSTRE_CONFIG_METASEQ "metaseq"
934 #define LUSTRE_CONFIG_TRANSNO "transno"
935
936 struct ll_fid {
937         __u64 id;         /* holds object id */
938         __u32 generation; /* holds object generation */
939
940         __u32 f_type;     /* holds object type or stripe idx when passing it to
941                            * OST for saving into EA. */
942 };
943
944 extern void lustre_swab_ll_fid (struct ll_fid *fid);
945
946 #define MDS_STATUS_CONN 1
947 #define MDS_STATUS_LOV 2
948
949 struct mds_status_req {
950         __u32  flags;
951         __u32  repbuf;
952 };
953
954 extern void lustre_swab_mds_status_req (struct mds_status_req *r);
955
956 /* mdt_thread_info.mti_flags. */
957 enum mdt_ioepoch_flags {
958         /* The flag indicates Size-on-MDS attributes are changed. */
959         MF_SOM_CHANGE   = (1 << 0),
960         /* Flags indicates an epoch opens or closes. */
961         MF_EPOCH_OPEN   = (1 << 1),
962         MF_EPOCH_CLOSE  = (1 << 2),
963 };
964
965 #define MDS_BFLAG_EXT_FLAGS     0x80000000 /* == EXT3_RESERVED_FL */
966
967 /* these should be identical to their EXT3_*_FL counterparts, and are
968  * redefined here only to avoid dragging in ext3_fs.h */
969 #define MDS_SYNC_FL             0x00000008 /* Synchronous updates */
970 #define MDS_IMMUTABLE_FL        0x00000010 /* Immutable file */
971 #define MDS_APPEND_FL           0x00000020 /* writes to file may only append */
972 #define MDS_NOATIME_FL          0x00000080 /* do not update atime */
973 #define MDS_DIRSYNC_FL          0x00010000 /* dirsync behaviour (dir only) */
974
975 #ifdef __KERNEL__
976 /* If MDS_BFLAG_IOC_FLAGS is set it means we requested EXT3_*_FL inode flags
977  * and we need to decode these into local S_* flags in the inode.  Otherwise
978  * we pass flags straight through (see bug 9486). */
979 static inline int ll_ext_to_inode_flags(int flags)
980 {
981         return (flags & MDS_BFLAG_EXT_FLAGS) ?
982                (((flags & MDS_SYNC_FL)      ? S_SYNC      : 0) |
983                 ((flags & MDS_NOATIME_FL)   ? S_NOATIME   : 0) |
984                 ((flags & MDS_APPEND_FL)    ? S_APPEND    : 0) |
985 #if defined(S_DIRSYNC)
986                 ((flags & MDS_DIRSYNC_FL)   ? S_DIRSYNC   : 0) |
987 #endif
988                 ((flags & MDS_IMMUTABLE_FL) ? S_IMMUTABLE : 0)) :
989                (flags & ~MDS_BFLAG_EXT_FLAGS);
990 }
991
992 /* If MDS_BFLAG_EXT_FLAGS is set it means we requested EXT3_*_FL inode flags
993  * and we pass these straight through.  Otherwise we need to convert from
994  * S_* flags to their EXT3_*_FL equivalents (see bug 9486). */
995 static inline int ll_inode_to_ext_flags(int oflags, int iflags)
996 {
997         return (oflags & MDS_BFLAG_EXT_FLAGS) ? (oflags & ~MDS_BFLAG_EXT_FLAGS):
998                (((iflags & S_SYNC)      ? MDS_SYNC_FL      : 0) |
999                 ((iflags & S_NOATIME)   ? MDS_NOATIME_FL   : 0) |
1000                 ((iflags & S_APPEND)    ? MDS_APPEND_FL    : 0) |
1001 #if defined(S_DIRSYNC)
1002                 ((iflags & S_DIRSYNC)   ? MDS_DIRSYNC_FL   : 0) |
1003 #endif
1004                 ((iflags & S_IMMUTABLE) ? MDS_IMMUTABLE_FL : 0));
1005 }
1006 #endif
1007
1008 struct mdt_body {
1009         struct lu_fid  fid1;
1010         struct lu_fid  fid2;
1011         struct lustre_handle handle;
1012         __u64          valid;
1013         __u64          size;   /* Offset, in the case of MDS_READPAGE */
1014         __u64          mtime;
1015         __u64          atime;
1016         __u64          ctime;
1017         __u64          blocks; /* XID, in the case of MDS_READPAGE */
1018         __u64          ioepoch;
1019         __u32          fsuid;
1020         __u32          fsgid;
1021         __u32          capability;
1022         __u32          mode;
1023         __u32          uid;
1024         __u32          gid;
1025         __u32          flags; /* from vfs for pin/unpin, MDS_BFLAG for close */
1026         __u32          rdev;
1027         __u32          nlink; /* #bytes to read in the case of MDS_READPAGE */
1028         __u32          suppgid;
1029         __u32          eadatasize;
1030         __u32          aclsize;
1031         __u32          max_mdsize;
1032         __u32          max_cookiesize; /* also fix lustre_swab_mdt_body */
1033 };
1034
1035 struct mds_body {
1036         struct ll_fid  fid1;
1037         struct ll_fid  fid2;
1038         struct lustre_handle handle;
1039         __u64          valid;
1040         __u64          size;   /* Offset, in the case of MDS_READPAGE */
1041         __u64          mtime;
1042         __u64          atime;
1043         __u64          ctime;
1044         __u64          blocks; /* XID, in the case of MDS_READPAGE */
1045         __u64          io_epoch;
1046         __u64          ino;
1047         __u32          fsuid;
1048         __u32          fsgid;
1049         __u32          capability;
1050         __u32          mode;
1051         __u32          uid;
1052         __u32          gid;
1053         __u32          flags; /* from vfs for pin/unpin, MDS_BFLAG for close */
1054         __u32          rdev;
1055         __u32          nlink; /* #bytes to read in the case of MDS_READPAGE */
1056         __u32          generation;
1057         __u32          suppgid;
1058         __u32          eadatasize;
1059         __u32          aclsize;
1060         __u32          max_mdsize;
1061         __u32          max_cookiesize; /* also fix lustre_swab_mds_body */
1062         __u32          padding_4; /* also fix lustre_swab_mds_body */
1063 };
1064
1065 extern void lustre_swab_mds_body (struct mds_body *b);
1066 extern void lustre_swab_mdt_body (struct mdt_body *b);
1067
1068 struct mdt_epoch {
1069         struct lustre_handle handle;
1070         __u64  ioepoch;
1071         __u32  flags;
1072 };
1073
1074 extern void lustre_swab_mdt_epoch (struct mdt_epoch *b);
1075
1076 struct lustre_md {
1077         struct mdt_body         *body;
1078         struct lov_stripe_md    *lsm;
1079         struct lmv_stripe_md    *mea;
1080 #ifdef CONFIG_FS_POSIX_ACL
1081         struct posix_acl        *posix_acl;
1082 #endif
1083         struct mdt_remote_perm  *remote_perm;
1084         struct obd_capa         *mds_capa;
1085         struct obd_capa         *oss_capa;
1086 };
1087
1088 #define Q_QUOTACHECK    0x800100
1089 #define Q_INITQUOTA     0x800101        /* init slave limits */
1090 #define Q_GETOINFO      0x800102        /* get obd quota info */
1091 #define Q_GETOQUOTA     0x800103        /* get obd quotas */
1092
1093 #define Q_TYPESET(oqc, type) \
1094         ((oqc)->qc_type == type || (oqc)->qc_type == UGQUOTA)
1095
1096 #define Q_GETOCMD(oqc) \
1097         ((oqc)->qc_cmd == Q_GETOINFO || (oqc)->qc_cmd == Q_GETOQUOTA)
1098
1099 struct obd_quotactl {
1100         __u32                   qc_cmd;
1101         __u32                   qc_type;
1102         __u32                   qc_id;
1103         __u32                   qc_stat;
1104         struct obd_dqinfo       qc_dqinfo;
1105         struct obd_dqblk        qc_dqblk;
1106 };
1107
1108 extern void lustre_swab_obd_quotactl(struct obd_quotactl *q);
1109
1110 /* inode access permission for remote user, the inode info are omitted,
1111  * for client knows them. */
1112 struct mds_remote_perm {
1113         __u32           rp_uid;
1114         __u32           rp_gid;
1115         __u32           rp_fsuid;
1116         __u32           rp_fsgid;
1117         __u32           rp_access_perm; /* MAY_READ/WRITE/EXEC */
1118 };
1119
1120 /* setxid permissions for mds_setxid_perm.mp_perm */
1121 #define LUSTRE_SETUID_PERM 0x01
1122 #define LUSTRE_SETGID_PERM 0x02
1123 #define LUSTRE_SETGRP_PERM 0x04
1124
1125 extern void lustre_swab_mds_remote_perm(struct mds_remote_perm *p);
1126
1127 struct mdt_remote_perm {
1128         __u32           rp_uid;
1129         __u32           rp_gid;
1130         __u32           rp_fsuid;
1131         __u32           rp_fsgid;
1132         __u32           rp_access_perm; /* MAY_READ/WRITE/EXEC */
1133 };
1134
1135 extern void lustre_swab_mdt_remote_perm(struct mdt_remote_perm *p);
1136
1137 struct mds_rec_setattr {
1138         __u32           sa_opcode;
1139         __u32           sa_fsuid;
1140         __u32           sa_fsgid;
1141         __u32           sa_cap;
1142         __u32           sa_suppgid;
1143         __u32           sa_mode;
1144         struct ll_fid   sa_fid;
1145         __u64           sa_valid;
1146         __u64           sa_size;
1147         __u64           sa_mtime;
1148         __u64           sa_atime;
1149         __u64           sa_ctime;
1150         __u32           sa_uid;
1151         __u32           sa_gid;
1152         __u32           sa_attr_flags;
1153         __u32           sa_padding; /* also fix lustre_swab_mds_rec_setattr */
1154 };
1155
1156 extern void lustre_swab_mds_rec_setattr (struct mds_rec_setattr *sa);
1157
1158 struct mdt_rec_setattr {
1159         __u32           sa_opcode;
1160         __u32           sa_fsuid;
1161         __u32           sa_fsgid;
1162         __u32           sa_cap;
1163         __u32           sa_suppgid;
1164         __u32           sa_mode;
1165         struct lu_fid   sa_fid;
1166         __u64           sa_valid;
1167         __u64           sa_size;
1168         __u64           sa_blocks;
1169         __u64           sa_mtime;
1170         __u64           sa_atime;
1171         __u64           sa_ctime;
1172         __u32           sa_uid;
1173         __u32           sa_gid;
1174         __u32           sa_attr_flags;
1175         __u32           sa_padding; /* also fix lustre_swab_mds_rec_setattr */
1176 };
1177
1178 extern void lustre_swab_mdt_rec_setattr (struct mdt_rec_setattr *sa);
1179
1180 /* Remove this once we declare it in include/linux/fs.h (v21 kernel patch?) */
1181 #ifndef ATTR_CTIME_SET
1182 #define ATTR_CTIME_SET 0x2000
1183 #endif
1184
1185 #ifndef FMODE_READ
1186 #define FMODE_READ               00000001
1187 #define FMODE_WRITE              00000002
1188 #endif
1189
1190 #define FMODE_EPOCH              01000000
1191 #define FMODE_EPOCHLCK           02000000
1192 #define FMODE_SOM                04000000
1193 #define FMODE_CLOSED             0
1194
1195 #define MDS_OPEN_CREATED         00000010
1196
1197 #define MDS_FMODE_EXEC           00000004
1198 #define MDS_OPEN_CREAT           00000100
1199 #define MDS_OPEN_EXCL            00000200
1200 #define MDS_OPEN_TRUNC           00001000
1201 #define MDS_OPEN_APPEND          00002000
1202 #define MDS_OPEN_SYNC            00010000
1203 #define MDS_OPEN_DIRECTORY       00200000
1204
1205 #define MDS_OPEN_DELAY_CREATE  0100000000 /* delay initial object create */
1206 #define MDS_OPEN_OWNEROVERRIDE 0200000000 /* NFSD rw-reopen ro file for owner */
1207 #define MDS_OPEN_JOIN_FILE     0400000000 /* open for join file*/
1208 #define MDS_CREATE_RMT_ACL    01000000000 /* indicate create on remote server
1209                                            * with default ACL */
1210 #define MDS_CREATE_SLAVE_OBJ  02000000000 /* indicate create slave object
1211                                            * actually, this is for create, not
1212                                            * conflict with other open flags */
1213 #define MDS_OPEN_LOCK         04000000000 /* This open requires open lock */
1214 #define MDS_OPEN_HAS_EA      010000000000 /* specify object create pattern */
1215 #define MDS_OPEN_HAS_OBJS    020000000000 /* Just set the EA the obj exist */
1216
1217 struct mds_rec_join {
1218         struct ll_fid  jr_fid;
1219         __u64          jr_headsize;
1220 };
1221
1222 extern void lustre_swab_mds_rec_join (struct mds_rec_join *jr);
1223
1224 struct mdt_rec_join {
1225         struct lu_fid  jr_fid;
1226         __u64          jr_headsize;
1227 };
1228
1229 extern void lustre_swab_mdt_rec_join (struct mdt_rec_join *jr);
1230
1231 struct mds_rec_create {
1232         __u32           cr_opcode;
1233         __u32           cr_fsuid;
1234         __u32           cr_fsgid;
1235         __u32           cr_cap;
1236         __u32           cr_flags; /* for use with open */
1237         __u32           cr_mode;
1238         struct ll_fid   cr_fid;
1239         struct ll_fid   cr_replayfid;
1240         __u64           cr_time;
1241         __u64           cr_rdev;
1242         __u32           cr_suppgid;
1243         __u32           cr_padding_1; /* also fix lustre_swab_mds_rec_create */
1244         __u32           cr_padding_2; /* also fix lustre_swab_mds_rec_create */
1245         __u32           cr_padding_3; /* also fix lustre_swab_mds_rec_create */
1246         __u32           cr_padding_4; /* also fix lustre_swab_mds_rec_create */
1247         __u32           cr_padding_5; /* also fix lustre_swab_mds_rec_create */
1248 };
1249
1250 extern void lustre_swab_mds_rec_create (struct mds_rec_create *cr);
1251
1252 struct mdt_rec_create {
1253         __u32           cr_opcode;
1254         __u32           cr_fsuid;
1255         __u32           cr_fsgid;
1256         __u32           cr_cap;
1257         __u32           cr_flags; /* for use with open */
1258         __u32           cr_mode;
1259         struct lu_fid   cr_fid1;
1260         struct lu_fid   cr_fid2;
1261         __u64           cr_time;
1262         __u64           cr_rdev;
1263         __u64           cr_ioepoch;
1264         __u32           cr_suppgid;
1265         __u32           cr_cksplit;
1266         __u32           cr_padding_2; /* also fix lustre_swab_mds_rec_create */
1267         __u32           cr_padding_3; /* also fix lustre_swab_mds_rec_create */
1268 };
1269
1270 extern void lustre_swab_mdt_rec_create (struct mdt_rec_create *cr);
1271
1272 struct mds_rec_link {
1273         __u32           lk_opcode;
1274         __u32           lk_fsuid;
1275         __u32           lk_fsgid;
1276         __u32           lk_cap;
1277         __u32           lk_suppgid1;
1278         __u32           lk_suppgid2;
1279         struct ll_fid   lk_fid1;
1280         struct ll_fid   lk_fid2;
1281         __u64           lk_time;
1282         __u32           lk_padding_1;  /* also fix lustre_swab_mds_rec_link */
1283         __u32           lk_padding_2;  /* also fix lustre_swab_mds_rec_link */
1284         __u32           lk_padding_3;  /* also fix lustre_swab_mds_rec_link */
1285         __u32           lk_padding_4;  /* also fix lustre_swab_mds_rec_link */
1286 };
1287
1288 extern void lustre_swab_mds_rec_link (struct mds_rec_link *lk);
1289
1290 struct mdt_rec_link {
1291         __u32           lk_opcode;
1292         __u32           lk_fsuid;
1293         __u32           lk_fsgid;
1294         __u32           lk_cap;
1295         __u32           lk_suppgid1;
1296         __u32           lk_suppgid2;
1297         struct lu_fid   lk_fid1;
1298         struct lu_fid   lk_fid2;
1299         __u64           lk_time;
1300         __u32           lk_cksplit;
1301         __u32           lk_padding_2;  /* also fix lustre_swab_mds_rec_link */
1302         __u32           lk_padding_3;  /* also fix lustre_swab_mds_rec_link */
1303         __u32           lk_padding_4;  /* also fix lustre_swab_mds_rec_link */
1304 };
1305
1306 extern void lustre_swab_mdt_rec_link (struct mdt_rec_link *lk);
1307
1308 struct mds_rec_unlink {
1309         __u32           ul_opcode;
1310         __u32           ul_fsuid;
1311         __u32           ul_fsgid;
1312         __u32           ul_cap;
1313         __u32           ul_suppgid;
1314         __u32           ul_mode;
1315         struct ll_fid   ul_fid1;
1316         struct ll_fid   ul_fid2;
1317         __u64           ul_time;
1318         __u32           ul_padding_1; /* also fix lustre_swab_mds_rec_unlink */
1319         __u32           ul_padding_2; /* also fix lustre_swab_mds_rec_unlink */
1320         __u32           ul_padding_3; /* also fix lustre_swab_mds_rec_unlink */
1321         __u32           ul_padding_4; /* also fix lustre_swab_mds_rec_unlink */
1322 };
1323
1324 extern void lustre_swab_mds_rec_unlink (struct mds_rec_unlink *ul);
1325
1326 struct mdt_rec_unlink {
1327         __u32           ul_opcode;
1328         __u32           ul_fsuid;
1329         __u32           ul_fsgid;
1330         __u32           ul_cap;
1331         __u32           ul_suppgid;
1332         __u32           ul_mode;
1333         struct lu_fid   ul_fid1;
1334         struct lu_fid   ul_fid2;
1335         __u64           ul_time;
1336         __u32           ul_cksplit;
1337         __u32           ul_padding_2; /* also fix lustre_swab_mds_rec_unlink */
1338         __u32           ul_padding_3; /* also fix lustre_swab_mds_rec_unlink */
1339         __u32           ul_padding_4; /* also fix lustre_swab_mds_rec_unlink */
1340 };
1341
1342 extern void lustre_swab_mdt_rec_unlink (struct mdt_rec_unlink *ul);
1343
1344 struct mds_rec_rename {
1345         __u32           rn_opcode;
1346         __u32           rn_fsuid;
1347         __u32           rn_fsgid;
1348         __u32           rn_cap;
1349         __u32           rn_suppgid1;
1350         __u32           rn_suppgid2;
1351         struct ll_fid   rn_fid1;
1352         struct ll_fid   rn_fid2;
1353         __u64           rn_time;
1354         __u32           rn_padding_1; /* also fix lustre_swab_mds_rec_rename */
1355         __u32           rn_padding_2; /* also fix lustre_swab_mds_rec_rename */
1356         __u32           rn_padding_3; /* also fix lustre_swab_mds_rec_rename */
1357         __u32           rn_padding_4; /* also fix lustre_swab_mds_rec_rename */
1358 };
1359
1360 extern void lustre_swab_mds_rec_rename (struct mds_rec_rename *rn);
1361
1362 struct mdt_rec_rename {
1363         __u32           rn_opcode;
1364         __u32           rn_fsuid;
1365         __u32           rn_fsgid;
1366         __u32           rn_cap;
1367         __u32           rn_suppgid1;
1368         __u32           rn_suppgid2;
1369         struct lu_fid   rn_fid1;
1370         struct lu_fid   rn_fid2;
1371         __u64           rn_time;
1372         __u32           rn_mode;      /* cross-ref rename has mode */
1373         __u32           rn_cksplit;   /* check for split or not */
1374         __u32           rn_padding_3; /* also fix lustre_swab_mdt_rec_rename */
1375         __u32           rn_padding_4; /* also fix lustre_swab_mdt_rec_rename */
1376 };
1377
1378 extern void lustre_swab_mdt_rec_rename (struct mdt_rec_rename *rn);
1379
1380 /* begin adding MDT by huanghua@clusterfs.com */
1381 struct lmv_desc {
1382         __u32 ld_tgt_count;                /* how many MDS's */
1383         __u32 ld_active_tgt_count;         /* how many active */
1384         struct obd_uuid ld_uuid;
1385 };
1386
1387 extern void lustre_swab_lmv_desc (struct lmv_desc *ld);
1388 /* end adding MDT by huanghua@clusterfs.com */
1389
1390 struct md_fld {
1391         seqno_t mf_seq;
1392         mdsno_t mf_mds;
1393 };
1394
1395 extern void lustre_swab_md_fld (struct md_fld *mf);
1396
1397 enum fld_rpc_opc {
1398         FLD_QUERY                       = 600,
1399         FLD_LAST_OPC,
1400         FLD_FIRST_OPC                   = FLD_QUERY
1401 };
1402
1403 enum seq_rpc_opc {
1404         SEQ_QUERY                       = 700,
1405         SEQ_LAST_OPC,
1406         SEQ_FIRST_OPC                   = SEQ_QUERY
1407 };
1408
1409 enum seq_op {
1410         SEQ_ALLOC_SUPER = 0,
1411         SEQ_ALLOC_META = 1
1412 };
1413
1414 /*
1415  *  LOV data structures
1416  */
1417
1418 #define LOV_MIN_STRIPE_SIZE 65536   /* maximum PAGE_SIZE (ia64), power of 2 */
1419 #define LOV_MAX_STRIPE_COUNT  160   /* until bug 4424 is fixed */
1420
1421 #define LOV_MAX_UUID_BUFFER_SIZE  8192
1422 /* The size of the buffer the lov/mdc reserves for the
1423  * array of UUIDs returned by the MDS.  With the current
1424  * protocol, this will limit the max number of OSTs per LOV */
1425
1426 #define LOV_DESC_MAGIC 0xB0CCDE5C
1427
1428 /* LOV settings descriptor (should only contain static info) */
1429 struct lov_desc {
1430         __u32 ld_tgt_count;                /* how many OBD's */
1431         __u32 ld_active_tgt_count;         /* how many active */
1432         __u32 ld_default_stripe_count;     /* how many objects are used */
1433         __u32 ld_pattern;                  /* default PATTERN_RAID0 */
1434         __u64 ld_default_stripe_size;      /* in bytes */
1435         __u64 ld_default_stripe_offset;    /* in bytes */
1436         __u32 ld_padding_0;                /* unused */
1437         __u32 ld_qos_maxage;               /* in second */
1438         __u32 ld_padding_1;                /* also fix lustre_swab_lov_desc */
1439         __u32 ld_padding_2;                /* also fix lustre_swab_lov_desc */
1440         struct obd_uuid ld_uuid;
1441 };
1442
1443 #define ld_magic ld_active_tgt_count       /* for swabbing from llogs */
1444
1445 extern void lustre_swab_lov_desc (struct lov_desc *ld);
1446
1447 /*
1448  *   LDLM requests:
1449  */
1450 /* opcodes -- MUST be distinct from OST/MDS opcodes */
1451 typedef enum {
1452         LDLM_ENQUEUE     = 101,
1453         LDLM_CONVERT     = 102,
1454         LDLM_CANCEL      = 103,
1455         LDLM_BL_CALLBACK = 104,
1456         LDLM_CP_CALLBACK = 105,
1457         LDLM_GL_CALLBACK = 106,
1458         LDLM_LAST_OPC
1459 } ldlm_cmd_t;
1460 #define LDLM_FIRST_OPC LDLM_ENQUEUE
1461
1462 #define RES_NAME_SIZE 4
1463 struct ldlm_res_id {
1464         __u64 name[RES_NAME_SIZE];
1465 };
1466
1467 extern void lustre_swab_ldlm_res_id (struct ldlm_res_id *id);
1468
1469 /* lock types */
1470 typedef enum {
1471         LCK_MINMODE = 0,
1472         LCK_EX      = 1,
1473         LCK_PW      = 2,
1474         LCK_PR      = 4,
1475         LCK_CW      = 8,
1476         LCK_CR      = 16,
1477         LCK_NL      = 32,
1478         LCK_GROUP   = 64,
1479         LCK_MAXMODE
1480 } ldlm_mode_t;
1481
1482 typedef enum {
1483         LDLM_PLAIN     = 10,
1484         LDLM_EXTENT    = 11,
1485         LDLM_FLOCK     = 12,
1486         LDLM_IBITS     = 13,
1487         LDLM_MAX_TYPE
1488 } ldlm_type_t;
1489
1490 #define LDLM_MIN_TYPE LDLM_PLAIN
1491
1492 struct ldlm_extent {
1493         __u64 start;
1494         __u64 end;
1495         __u64 gid;
1496 };
1497
1498 struct ldlm_inodebits {
1499         __u64 bits;
1500 };
1501
1502 struct ldlm_flock {
1503         __u64 start;
1504         __u64 end;
1505         __u64 blocking_export;  /* not actually used over the wire */
1506         __u32 blocking_pid;     /* not actually used over the wire */
1507         __u32 pid;
1508 };
1509
1510 /* it's important that the fields of the ldlm_extent structure match
1511  * the first fields of the ldlm_flock structure because there is only
1512  * one ldlm_swab routine to process the ldlm_policy_data_t union. if
1513  * this ever changes we will need to swab the union differently based
1514  * on the resource type. */
1515
1516 typedef union {
1517         struct ldlm_extent l_extent;
1518         struct ldlm_flock  l_flock;
1519         struct ldlm_inodebits l_inodebits;
1520 } ldlm_policy_data_t;
1521
1522 extern void lustre_swab_ldlm_policy_data (ldlm_policy_data_t *d);
1523
1524 struct ldlm_intent {
1525         __u64 opc;
1526 };
1527
1528 extern void lustre_swab_ldlm_intent (struct ldlm_intent *i);
1529
1530 struct ldlm_resource_desc {
1531         ldlm_type_t lr_type;
1532         __u32 lr_padding;       /* also fix lustre_swab_ldlm_resource_desc */
1533         struct ldlm_res_id lr_name;
1534 };
1535
1536 extern void lustre_swab_ldlm_resource_desc (struct ldlm_resource_desc *r);
1537
1538 struct ldlm_lock_desc {
1539         struct ldlm_resource_desc l_resource;
1540         ldlm_mode_t l_req_mode;
1541         ldlm_mode_t l_granted_mode;
1542         ldlm_policy_data_t l_policy_data;
1543 };
1544
1545 extern void lustre_swab_ldlm_lock_desc (struct ldlm_lock_desc *l);
1546
1547 struct ldlm_request {
1548         __u32 lock_flags;
1549         __u32 lock_padding;     /* also fix lustre_swab_ldlm_request */
1550         struct ldlm_lock_desc lock_desc;
1551         struct lustre_handle lock_handle1;
1552         struct lustre_handle lock_handle2;
1553 };
1554
1555 extern void lustre_swab_ldlm_request (struct ldlm_request *rq);
1556
1557 struct ldlm_reply {
1558         __u32 lock_flags;
1559         __u32 lock_padding;     /* also fix lustre_swab_ldlm_reply */
1560         struct ldlm_lock_desc lock_desc;
1561         struct lustre_handle lock_handle;
1562         __u64  lock_policy_res1;
1563         __u64  lock_policy_res2;
1564 };
1565
1566 extern void lustre_swab_ldlm_reply (struct ldlm_reply *r);
1567
1568
1569 /*
1570  * Opcodes for mountconf (mgs and mgc)
1571  */
1572 typedef enum {
1573         MGS_CONNECT = 250,
1574         MGS_DISCONNECT,
1575         MGS_EXCEPTION,         /* node died, etc. */
1576         MGS_TARGET_REG,        /* whenever target starts up */
1577         MGS_TARGET_DEL,
1578         MGS_LAST_OPC
1579 } mgs_cmd_t;
1580
1581 /* We pass this info to the MGS so it can write config logs */
1582 #define MTI_NAME_MAXLEN 64
1583 #define MTI_NIDS_MAX 32
1584 struct mgs_target_info {
1585         __u32            mti_lustre_ver;
1586         __u32            mti_stripe_index;
1587         __u32            mti_config_ver;
1588         __u32            mti_flags;
1589         __u32            mti_nid_count;
1590         __u32            padding;                    /* 64 bit align */
1591         char             mti_fsname[MTI_NAME_MAXLEN];
1592         char             mti_svname[MTI_NAME_MAXLEN];
1593         char             mti_uuid[sizeof(struct obd_uuid)];
1594         lnet_nid_t       mti_nids[MTI_NIDS_MAX];     /* host nids */
1595         char             mti_params[2048];
1596 };
1597
1598 extern void lustre_swab_mgs_target_info(struct mgs_target_info *oinfo);
1599
1600 #define CM_START       0x01
1601 #define CM_END         0x02
1602 #define CM_SKIP        0x04
1603 #define CM_UPGRADE146  0x08
1604 #define CM_START_SKIP (CM_START | CM_SKIP)
1605
1606 struct cfg_marker {
1607         __u32             cm_step;       /* aka config version */
1608         __u32             cm_flags;
1609         __u32             cm_vers;       /* lustre release version number */
1610         __u32             padding;       /* 64 bit align */
1611         time_t            cm_createtime; /*when this record was first created */
1612         time_t            cm_canceltime; /*when this record is no longer valid*/
1613         char              cm_svname[MTI_NAME_MAXLEN];
1614         char              cm_comment[MTI_NAME_MAXLEN];
1615 };
1616
1617 /*
1618  * Opcodes for multiple servers.
1619  */
1620
1621 typedef enum {
1622         OBD_PING = 400,
1623         OBD_LOG_CANCEL,
1624         OBD_QC_CALLBACK,
1625         OBD_LAST_OPC
1626 } obd_cmd_t;
1627 #define OBD_FIRST_OPC OBD_PING
1628
1629 /* catalog of log objects */
1630
1631 /* Identifier for a single log object */
1632 struct llog_logid {
1633         __u64                   lgl_oid;
1634         __u64                   lgl_ogr;
1635         __u32                   lgl_ogen;
1636 } __attribute__((packed));
1637
1638 /* Records written to the CATALOGS list */
1639 #define CATLIST "CATALOGS"
1640 struct llog_catid {
1641         struct llog_logid       lci_logid;
1642         __u32                   lci_padding1;
1643         __u32                   lci_padding2;
1644         __u32                   lci_padding3;
1645 } __attribute__((packed));
1646
1647 /*join file lov mds md*/
1648 struct lov_mds_md_join {
1649         struct lov_mds_md lmmj_md;
1650         /*join private info*/
1651         struct llog_logid lmmj_array_id; /*array object id*/
1652         __u32  lmmj_extent_count;        /*array extent count*/
1653 };
1654
1655 /* Log data record types - there is no specific reason that these need to
1656  * be related to the RPC opcodes, but no reason not to (may be handy later?)
1657  */
1658 #define LLOG_OP_MAGIC 0x10600000
1659 #define LLOG_OP_MASK  0xfff00000
1660
1661 typedef enum {
1662         LLOG_PAD_MAGIC   = LLOG_OP_MAGIC | 0x00000,
1663         OST_SZ_REC       = LLOG_OP_MAGIC | 0x00f00,
1664         OST_RAID1_REC    = LLOG_OP_MAGIC | 0x01000,
1665         MDS_UNLINK_REC   = LLOG_OP_MAGIC | 0x10000 | (MDS_REINT << 8) | REINT_UNLINK,
1666         MDS_SETATTR_REC  = LLOG_OP_MAGIC | 0x10000 | (MDS_REINT << 8) | REINT_SETATTR,
1667         OBD_CFG_REC      = LLOG_OP_MAGIC | 0x20000,
1668         PTL_CFG_REC      = LLOG_OP_MAGIC | 0x30000, /* obsolete */
1669         LLOG_GEN_REC     = LLOG_OP_MAGIC | 0x40000,
1670         LLOG_JOIN_REC    = LLOG_OP_MAGIC | 0x50000,
1671         LLOG_HDR_MAGIC   = LLOG_OP_MAGIC | 0x45539,
1672         LLOG_LOGID_MAGIC = LLOG_OP_MAGIC | 0x4553b,
1673 } llog_op_type;
1674
1675 /*
1676  * for now, continue to support old pad records which have 0 for their
1677  * type but still need to be swabbed for their length
1678  */
1679 #define LLOG_REC_HDR_NEEDS_SWABBING(r)                                  \
1680         (((r)->lrh_type & __swab32(LLOG_OP_MASK)) ==                    \
1681          __swab32(LLOG_OP_MAGIC) ||                                     \
1682          (((r)->lrh_type == 0) && ((r)->lrh_len > LLOG_CHUNK_SIZE)))
1683
1684 /* Log record header - stored in little endian order.
1685  * Each record must start with this struct, end with a llog_rec_tail,
1686  * and be a multiple of 256 bits in size.
1687  */
1688 struct llog_rec_hdr {
1689         __u32                   lrh_len;
1690         __u32                   lrh_index;
1691         __u32                   lrh_type;
1692         __u32                   padding;
1693 };
1694
1695 struct llog_rec_tail {
1696         __u32 lrt_len;
1697         __u32 lrt_index;
1698 };
1699
1700 struct llog_logid_rec {
1701         struct llog_rec_hdr     lid_hdr;
1702         struct llog_logid       lid_id;
1703         __u32                   padding1;
1704         __u32                   padding2;
1705         __u32                   padding3;
1706         __u32                   padding4;
1707         __u32                   padding5;
1708         struct llog_rec_tail    lid_tail;
1709 } __attribute__((packed));
1710
1711 /* MDS extent description
1712  * It is for joined file extent info, each extent info for joined file
1713  * just like (start, end, lmm).
1714  */
1715 struct mds_extent_desc {
1716         __u64                   med_start; /* extent start */
1717         __u64                   med_len;   /* extent length */
1718         struct lov_mds_md       med_lmm;   /* extent's lmm  */
1719 };
1720 /*Joined file array extent log record*/
1721 struct llog_array_rec {
1722         struct llog_rec_hdr     lmr_hdr;
1723         struct mds_extent_desc  lmr_med;
1724         struct llog_rec_tail    lmr_tail;
1725 };
1726
1727 struct llog_create_rec {
1728         struct llog_rec_hdr     lcr_hdr;
1729         struct ll_fid           lcr_fid;
1730         obd_id                  lcr_oid;
1731         obd_count               lcr_ogen;
1732         __u32                   padding;
1733         struct llog_rec_tail    lcr_tail;
1734 } __attribute__((packed));
1735
1736 struct llog_orphan_rec {
1737         struct llog_rec_hdr     lor_hdr;
1738         obd_id                  lor_oid;
1739         obd_count               lor_ogen;
1740         __u32                   padding;
1741         struct llog_rec_tail    lor_tail;
1742 } __attribute__((packed));
1743
1744 struct llog_unlink_rec {
1745         struct llog_rec_hdr     lur_hdr;
1746         obd_id                  lur_oid;
1747         obd_count               lur_ogen;
1748         __u32                   padding;
1749         struct llog_rec_tail    lur_tail;
1750 } __attribute__((packed));
1751
1752 struct llog_setattr_rec {
1753         struct llog_rec_hdr     lsr_hdr;
1754         obd_id                  lsr_oid;
1755         obd_count               lsr_ogen;
1756         __u32                   lsr_uid;
1757         __u32                   lsr_gid;
1758         __u32                   padding;
1759         struct llog_rec_tail    lsr_tail;
1760 } __attribute__((packed));
1761
1762 struct llog_size_change_rec {
1763         struct llog_rec_hdr     lsc_hdr;
1764         struct ll_fid           lsc_fid;
1765         __u32                   lsc_ioepoch;
1766         __u32                   padding;
1767         struct llog_rec_tail    lsc_tail;
1768 } __attribute__((packed));
1769
1770 struct llog_gen {
1771         __u64 mnt_cnt;
1772         __u64 conn_cnt;
1773 } __attribute__((packed));
1774
1775 struct llog_gen_rec {
1776         struct llog_rec_hdr     lgr_hdr;
1777         struct llog_gen         lgr_gen;
1778         struct llog_rec_tail    lgr_tail;
1779 };
1780 /* On-disk header structure of each log object, stored in little endian order */
1781 #define LLOG_CHUNK_SIZE         8192
1782 #define LLOG_HEADER_SIZE        (96)
1783 #define LLOG_BITMAP_BYTES       (LLOG_CHUNK_SIZE - LLOG_HEADER_SIZE)
1784
1785 #define LLOG_MIN_REC_SIZE       (24) /* round(llog_rec_hdr + llog_rec_tail) */
1786
1787 /* flags for the logs */
1788 #define LLOG_F_ZAP_WHEN_EMPTY   0x1
1789 #define LLOG_F_IS_CAT           0x2
1790 #define LLOG_F_IS_PLAIN         0x4
1791
1792 struct llog_log_hdr {
1793         struct llog_rec_hdr     llh_hdr;
1794         __u64                   llh_timestamp;
1795         __u32                   llh_count;
1796         __u32                   llh_bitmap_offset;
1797         __u32                   llh_size;
1798         __u32                   llh_flags;
1799         __u32                   llh_cat_idx;
1800         /* for a catalog the first plain slot is next to it */
1801         struct obd_uuid         llh_tgtuuid;
1802         __u32                   llh_reserved[LLOG_HEADER_SIZE/sizeof(__u32) - 23];
1803         __u32                   llh_bitmap[LLOG_BITMAP_BYTES/sizeof(__u32)];
1804         struct llog_rec_tail    llh_tail;
1805 } __attribute__((packed));
1806
1807 #define LLOG_BITMAP_SIZE(llh)  ((llh->llh_hdr.lrh_len -         \
1808                                  llh->llh_bitmap_offset -       \
1809                                  sizeof(llh->llh_tail)) * 8)
1810
1811 /* log cookies are used to reference a specific log file and a record therein */
1812 struct llog_cookie {
1813         struct llog_logid       lgc_lgl;
1814         __u32                   lgc_subsys;
1815         __u32                   lgc_index;
1816         __u32                   lgc_padding;
1817 } __attribute__((packed));
1818
1819 /* llog protocol */
1820 enum llogd_rpc_ops {
1821         LLOG_ORIGIN_HANDLE_CREATE       = 501,
1822         LLOG_ORIGIN_HANDLE_NEXT_BLOCK   = 502,
1823         LLOG_ORIGIN_HANDLE_READ_HEADER  = 503,
1824         LLOG_ORIGIN_HANDLE_WRITE_REC    = 504,
1825         LLOG_ORIGIN_HANDLE_CLOSE        = 505,
1826         LLOG_ORIGIN_CONNECT             = 506,
1827         LLOG_CATINFO                    = 507,  /* for lfs catinfo */
1828         LLOG_ORIGIN_HANDLE_PREV_BLOCK   = 508,
1829         LLOG_ORIGIN_HANDLE_DESTROY      = 509,  /* for destroy llog object*/
1830         LLOG_LAST_OPC
1831 };
1832
1833 struct llogd_body {
1834         struct llog_logid  lgd_logid;
1835         __u32 lgd_ctxt_idx;
1836         __u32 lgd_llh_flags;
1837         __u32 lgd_index;
1838         __u32 lgd_saved_index;
1839         __u32 lgd_len;
1840         __u64 lgd_cur_offset;
1841 } __attribute__((packed));
1842
1843 struct llogd_conn_body {
1844         struct llog_gen         lgdc_gen;
1845         struct llog_logid       lgdc_logid;
1846         __u32                   lgdc_ctxt_idx;
1847 } __attribute__((packed));
1848
1849 struct lov_user_ost_data_join {   /* per-stripe data structure */
1850         __u64 l_extent_start;     /* extent start*/
1851         __u64 l_extent_end;       /* extent end*/
1852         __u64 l_object_id;        /* OST object ID */
1853         __u64 l_object_gr;        /* OST object group (creating MDS number) */
1854         __u32 l_ost_gen;          /* generation of this OST index */
1855         __u32 l_ost_idx;          /* OST index in LOV */
1856 } __attribute__((packed));
1857
1858 struct lov_user_md_join {         /* LOV EA user data (host-endian) */
1859         __u32 lmm_magic;          /* magic number = LOV_MAGIC_JOIN */
1860         __u32 lmm_pattern;        /* LOV_PATTERN_RAID0, LOV_PATTERN_RAID1 */
1861         __u64 lmm_object_id;      /* LOV object ID */
1862         __u64 lmm_object_gr;      /* LOV object group */
1863         __u32 lmm_stripe_size;    /* size of stripe in bytes */
1864         __u32 lmm_stripe_count;   /* num stripes in use for this object */
1865         __u32 lmm_extent_count;   /* extent count of lmm*/
1866         __u64 lmm_tree_id;        /* mds tree object id */
1867         __u64 lmm_tree_gen;       /* mds tree object gen */
1868         struct llog_logid lmm_array_id; /* mds extent desc llog object id */
1869         struct lov_user_ost_data_join lmm_objects[0]; /* per-stripe data */
1870 } __attribute__((packed));
1871
1872 extern void lustre_swab_lov_mds_md(struct lov_mds_md *llm);
1873 extern void lustre_swab_lov_user_md(struct lov_user_md *lum);
1874 extern void lustre_swab_lov_user_md_objects(struct lov_user_md *lum);
1875 extern void lustre_swab_lov_user_md_join(struct lov_user_md_join *lumj);
1876
1877 /* llog_swab.c */
1878 extern void lustre_swab_llogd_body (struct llogd_body *d);
1879 extern void lustre_swab_llog_hdr (struct llog_log_hdr *h);
1880 extern void lustre_swab_llogd_conn_body (struct llogd_conn_body *d);
1881 extern void lustre_swab_llog_rec(struct llog_rec_hdr  *rec,
1882                                  struct llog_rec_tail *tail);
1883
1884 struct lustre_cfg;
1885 extern void lustre_swab_lustre_cfg(struct lustre_cfg *lcfg);
1886
1887 /* quota. fixed by tianzy for bug10707 */
1888 #define QUOTA_IS_GRP   0X1UL  /* 0 is user, 1 is group. Used by qd_flags*/
1889 #define QUOTA_IS_BLOCK 0x2UL  /* 0 is inode, 1 is block. Used by qd_flags*/
1890
1891 struct qunit_data {
1892         __u32 qd_id; /* ID appiles to (uid, gid) */
1893         __u32 qd_flags; /* Quota type (USRQUOTA, GRPQUOTA) occupy one bit;
1894                          * Block quota or file quota occupy one bit */
1895         __u64 qd_count; /* acquire/release count (bytes for block quota) */
1896 };
1897
1898 struct qunit_data_old {
1899         __u32 qd_id;    /* ID appiles to (uid, gid) */
1900         __u32 qd_type;  /* Quota type (USRQUOTA, GRPQUOTA) */
1901         __u32 qd_count; /* acquire/release count (bytes for block quota) */
1902         __u32 qd_isblk; /* Block quota or file quota */
1903 };
1904
1905 extern void lustre_swab_qdata(struct qunit_data *d);
1906 extern void lustre_swab_qdata_old(struct qunit_data_old *d);
1907 extern struct qunit_data *lustre_quota_old_to_new(struct qunit_data_old *d);
1908 extern struct qunit_data_old *lustre_quota_new_to_old(struct qunit_data *d);
1909
1910 typedef enum {
1911         QUOTA_DQACQ     = 601,
1912         QUOTA_DQREL     = 602,
1913 } quota_cmd_t;
1914
1915 #define JOIN_FILE_ALIGN 4096
1916
1917 /* security opcodes */
1918 typedef enum {
1919         SEC_CTX_INIT            = 801,
1920         SEC_CTX_INIT_CONT       = 802,
1921         SEC_CTX_FINI            = 803,
1922         SEC_LAST_OPC
1923 } sec_cmd_t;
1924
1925 /*
1926  * capa related definitions
1927  */
1928 #define CAPA_HMAC_MAX_LEN       64
1929 #define CAPA_HMAC_KEY_MAX_LEN   56
1930
1931 /* NB take care when changing the sequence of elements this struct,
1932  * because the offset info is used in find_capa() */
1933 struct lustre_capa {
1934         struct lu_fid   lc_fid;       /* fid */
1935         __u64           lc_opc;       /* operations allowed */
1936         __u32           lc_flags;     /* HMAC algorithm & flags */
1937         __u32           lc_keyid;     /* key used for the capability */
1938         __u64           lc_expiry;    /* expiry time (sec) */
1939         __u8            lc_hmac[CAPA_HMAC_MAX_LEN];   /* HMAC */
1940 } __attribute__((packed));
1941
1942 extern void lustre_swab_lustre_capa(struct lustre_capa *c);
1943
1944 /* lustre_capa.lc_opc */
1945 enum {
1946         CAPA_OPC_BODY_WRITE   = 1<<0,  /* write object data */
1947         CAPA_OPC_BODY_READ    = 1<<1,  /* read object data */
1948         CAPA_OPC_INDEX_LOOKUP = 1<<2,  /* lookup object fid */
1949         CAPA_OPC_INDEX_INSERT = 1<<3,  /* insert object fid */
1950         CAPA_OPC_INDEX_DELETE = 1<<4,  /* delete object fid */
1951         CAPA_OPC_OSS_WRITE    = 1<<5,  /* write oss object data */
1952         CAPA_OPC_OSS_READ     = 1<<6,  /* read oss object data */
1953         CAPA_OPC_OSS_TRUNC    = 1<<7,  /* truncate oss object */
1954         CAPA_OPC_META_WRITE   = 1<<8,  /* write object meta data */
1955         CAPA_OPC_META_READ    = 1<<9,  /* read object meta data */
1956
1957 };
1958
1959 #define CAPA_OPC_OSS_RW (CAPA_OPC_OSS_READ | CAPA_OPC_OSS_WRITE)
1960 #define CAPA_OPC_MDS_ONLY                                                   \
1961         (CAPA_OPC_BODY_WRITE | CAPA_OPC_BODY_READ | CAPA_OPC_INDEX_LOOKUP | \
1962          CAPA_OPC_INDEX_INSERT | CAPA_OPC_INDEX_DELETE)
1963 #define CAPA_OPC_OSS_ONLY                                                   \
1964         (CAPA_OPC_OSS_WRITE | CAPA_OPC_OSS_READ | CAPA_OPC_OSS_TRUNC)
1965 #define CAPA_OPC_MDS_DEFAULT ~CAPA_OPC_OSS_ONLY
1966 #define CAPA_OPC_OSS_DEFAULT ~(CAPA_OPC_MDS_ONLY | CAPA_OPC_OSS_ONLY)
1967
1968 /* MDS capability covers object capability for operations of body r/w
1969  * (dir readpage/sendpage), index lookup/insert/delete and meta data r/w,
1970  * while OSS capability only covers object capability for operations of
1971  * oss data(file content) r/w/truncate.
1972  */
1973 static inline int capa_for_mds(struct lustre_capa *c)
1974 {
1975         return (c->lc_opc & CAPA_OPC_INDEX_LOOKUP) != 0;
1976 }
1977
1978 static inline int capa_for_oss(struct lustre_capa *c)
1979 {
1980         return (c->lc_opc & CAPA_OPC_INDEX_LOOKUP) == 0;
1981 }
1982
1983 /* lustre_capa.lc_flags */
1984 enum {
1985         CAPA_FL_SHORT_EXPIRY = 1, /* short capa expiry */
1986 };
1987
1988 /* lustre_capa.lc_hmac_alg */
1989 enum {
1990         CAPA_HMAC_ALG_SHA1 = 1, /* sha1 algorithm */
1991         CAPA_HMAC_ALG_MAX,
1992 };
1993
1994 #define CAPA_FL_MASK            0x00ffffff
1995 #define CAPA_HMAC_ALG_MASK      0xff000000
1996
1997 struct lustre_capa_key {
1998         __u64   lk_mdsid;     /* mds# */
1999         __u32   lk_keyid;     /* key# */
2000         __u32   lk_padding;
2001         __u8    lk_key[CAPA_HMAC_KEY_MAX_LEN];    /* key */
2002 } __attribute__((packed));
2003
2004 extern void lustre_swab_lustre_capa_key(struct lustre_capa_key *k);
2005
2006 typedef int (* renew_capa_cb_t)(struct obd_capa *, struct lustre_capa *);
2007
2008 #endif