Whamcloud - gitweb
- many fixes about using ENTRY, RETURN, GOTO and EXIT.
[fs/lustre-release.git] / lustre / include / linux / lustre_idl.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2001 Cluster File Systems, Inc. <braam@clusterfs.com>
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  * Lustre wire protocol definitions.
22  *
23  * All structs passing over the wire should be declared here (lov_mds_md
24  * being the lone exception).  Structs must be properly aligned to put
25  * 64-bit values on an 8-byte boundary.  Any structs being added here
26  * must also be added to utils/wirecheck.c and "make newwiretest" run
27  * to regenerate the utils/wiretest.c sources.  This allows us to verify
28  * that wire structs have the proper alignment/size on all architectures.
29  *
30  * We assume all nodes are either little-endian or big-endian, and we
31  * always send messages in the sender's native format.  The receiver
32  * detects the message format by checking the 'magic' field of the message
33  * (see lustre_msg_swabbed() below).
34  *
35  * Each wire type has corresponding 'lustre_swab_xxxtypexxx()' routines,
36  * implemented either here, inline (trivial implementations) or in
37  * ptlrpc/pack_generic.c.  These 'swabbers' convert the type from "other"
38  * endian, in-place in the message buffer.
39  *
40  * A swabber takes a single pointer argument.  The caller must already have
41  * verified that the length of the message buffer >= sizeof (type).
42  *
43  * For variable length types, a second 'lustre_swab_v_xxxtypexxx()' routine
44  * may be defined that swabs just the variable part, after the caller has
45  * verified that the message buffer is large enough.
46  */
47
48 #ifndef _LUSTRE_IDL_H_
49 #define _LUSTRE_IDL_H_
50
51 #ifdef HAVE_ASM_TYPES_H
52 #include <asm/types.h>
53 #else
54 #include "types.h"
55 #endif
56
57
58 #ifdef __KERNEL__
59 # include <linux/ioctl.h>
60 # include <linux/types.h>
61 # include <linux/list.h>
62 # include <linux/string.h> /* for strncpy, below */
63 # include <linux/fs.h>     /* to check for FMODE_EXEC, dev_t, lest we redefine */
64 # include <linux/posix_acl.h>     
65 #else
66 #ifdef __CYGWIN__
67 # include <sys/types.h>
68 #else
69 # include <stdint.h>
70 #endif
71 # include <libcfs/list.h>
72 # include <string.h>
73 #endif
74
75 /* Defn's shared with user-space. */
76 #include <lustre/lustre_user.h>
77
78 /*
79  * this file contains all data structures used in Lustre interfaces:
80  * - obdo and obd_request records
81  * - mds_request records
82  * - ldlm data
83  * - ioctl's
84  */
85
86 /*
87  *  GENERAL STUFF
88  */
89 /* FOO_REQUEST_PORTAL is for incoming requests on the FOO
90  * FOO_REPLY_PORTAL   is for incoming replies on the FOO
91  * FOO_BULK_PORTAL    is for incoming bulk on the FOO
92  */
93
94 #define CONNMGR_REQUEST_PORTAL          1
95 #define CONNMGR_REPLY_PORTAL            2
96 //#define OSC_REQUEST_PORTAL            3
97 #define OSC_REPLY_PORTAL                4
98 //#define OSC_BULK_PORTAL               5
99 #define OST_REQUEST_PORTAL              6
100 #define OST_CREATE_PORTAL               7
101 #define OST_BULK_PORTAL                 8
102 //#define MDC_REQUEST_PORTAL            9
103 #define MDC_REPLY_PORTAL               10
104 //#define MDC_BULK_PORTAL              11
105 #define MDS_REQUEST_PORTAL             12
106 //#define MDS_REPLY_PORTAL             13
107 #define MDS_BULK_PORTAL                14
108 #define LDLM_CB_REQUEST_PORTAL         15
109 #define LDLM_CB_REPLY_PORTAL           16
110 #define LDLM_CANCEL_REQUEST_PORTAL     17
111 #define LDLM_CANCEL_REPLY_PORTAL       18
112 #define PTLBD_REQUEST_PORTAL           19
113 #define PTLBD_REPLY_PORTAL             20
114 #define PTLBD_BULK_PORTAL              21
115 #define MDS_SETATTR_PORTAL             22
116 #define MDS_READPAGE_PORTAL            23
117 #define MGMT_REQUEST_PORTAL            24
118 #define MGMT_REPLY_PORTAL              25
119 #define MGMT_CLI_REQUEST_PORTAL        26
120 #define MGMT_CLI_REPLY_PORTAL          27
121 #define GKS_REQUEST_PORTAL             28
122 #define GKC_REPLY_PORTAL               29
123 #define MDS_CLOSE_PORTAL               30
124 #define OST_DESTROY_PORTAL             31
125
126 #define SVC_KILLED               1
127 #define SVC_EVENT                2
128 #define SVC_SIGNAL               4
129 #define SVC_RUNNING              8
130 #define SVC_STOPPING            16
131 #define SVC_STOPPED             32
132
133 /* packet types */
134 #define PTL_RPC_MSG_REQUEST 4711
135 #define PTL_RPC_MSG_ERR     4712
136 #define PTL_RPC_MSG_REPLY   4713
137
138 #define PTLRPC_MSG_MAGIC    0x0BD00BD0
139
140
141 #define PTLRPC_MSG_VERSION  0x00000003
142 #define LUSTRE_VERSION_MASK 0xffff0000
143 #define LUSTRE_OBD_VERSION  0x00010000
144 #define LUSTRE_MDS_VERSION  0x00020000
145 #define LUSTRE_OST_VERSION  0x00030000
146 #define LUSTRE_DLM_VERSION  0x00040000
147 #define LUSTRE_LOG_VERSION  0x00050000
148 #define LUSTRE_PBD_VERSION  0x00060000
149 #define LUSTRE_GKS_VERSION  0x00070000
150
151 struct lustre_handle {
152         __u64 cookie;
153 };
154 #define DEAD_HANDLE_MAGIC 0xdeadbeefcafebabeULL
155
156 /* we depend on this structure to be 8-byte aligned */
157 /* this type is only endian-adjusted in lustre_unpack_msg() */
158 struct lustre_msg {
159         struct lustre_handle handle;
160         __u32 magic;
161         __u32 type;
162         __u32 version;
163         __u32 opc;
164         __u64 last_xid;
165         __u64 last_committed;
166         __u64 transno;
167         __u32 status;
168         __u32 flags;
169         __u32 conn_cnt;
170         __u32 bufcount;
171         __u32 buflens[0];
172 };
173
174 /* Flags that are operation-specific go in the top 16 bits. */
175 #define MSG_OP_FLAG_MASK   0xffff0000
176 #define MSG_OP_FLAG_SHIFT  16
177
178 /* Flags that apply to all requests are in the bottom 16 bits */
179 #define MSG_GEN_FLAG_MASK      0x0000ffff
180 #define MSG_LAST_REPLAY        1
181 #define MSG_RESENT             2
182 #define MSG_REPLAY             4
183 #define MSG_REQ_REPLAY_DONE    8
184 #define MSG_LOCK_REPLAY_DONE  16
185
186 static inline int lustre_msg_get_flags(struct lustre_msg *msg)
187 {
188         return (msg->flags & MSG_GEN_FLAG_MASK);
189 }
190
191 static inline void lustre_msg_add_flags(struct lustre_msg *msg, int flags)
192 {
193         msg->flags |= MSG_GEN_FLAG_MASK & flags;
194 }
195
196 static inline void lustre_msg_set_flags(struct lustre_msg *msg, int flags)
197 {
198         msg->flags &= ~MSG_GEN_FLAG_MASK;
199         lustre_msg_add_flags(msg, flags);
200 }
201
202 static inline void lustre_msg_clear_flags(struct lustre_msg *msg, int flags)
203 {
204         msg->flags &= ~(MSG_GEN_FLAG_MASK & flags);
205 }
206
207 static inline int lustre_msg_get_op_flags(struct lustre_msg *msg)
208 {
209         return (msg->flags >> MSG_OP_FLAG_SHIFT);
210 }
211
212 static inline void lustre_msg_add_op_flags(struct lustre_msg *msg, int flags)
213 {
214         msg->flags |= ((flags & MSG_GEN_FLAG_MASK) << MSG_OP_FLAG_SHIFT);
215 }
216
217 static inline void lustre_msg_set_op_flags(struct lustre_msg *msg, int flags)
218 {
219         msg->flags &= ~MSG_OP_FLAG_MASK;
220         lustre_msg_add_op_flags(msg, flags);
221 }
222
223 /*
224  * Flags for all connect opcodes (MDS_CONNECT, OST_CONNECT)
225  */
226
227 #define MSG_CONNECT_RECOVERING  0x1
228 #define MSG_CONNECT_RECONNECT   0x2
229 #define MSG_CONNECT_REPLAYABLE  0x4
230 #define MSG_CONNECT_PEER        0x8
231 #define MSG_CONNECT_LIBCLIENT   0x10
232 #define MSG_CONNECT_INITIAL     0x20
233 #define MSG_CONNECT_ASYNC       0x40
234 #define MSG_CONNECT_TRANSNO     0X80    /* report transno */
235
236 /* Connect flags */
237
238 #define OBD_CONNECT_RDONLY      (0x00000001LL)
239 #define OBD_CONNECT_REMOTE      (0x40000000LL)
240 #define OBD_CONNECT_LOCAL       (0x80000000LL)
241
242 #define OBD_CONNECT_SUPPORTED (OBD_CONNECT_RDONLY |     \
243                                OBD_CONNECT_REMOTE |     \
244                                OBD_CONNECT_LOCAL)
245
246 /* This structure is used for both request and reply.
247  *
248  * If we eventually have separate connect data for different types, which we
249  * almost certainly will, then perhaps we stick a union in here. */
250 struct obd_connect_data {
251         __u64 ocd_connect_flags;
252         __u32 ocd_nllu[2];
253         __u64 transno;          /* first transno from client to be replayed */
254         __u64 padding[5];
255 };
256
257 extern void lustre_swab_connect(struct obd_connect_data *ocd);
258
259 /*
260  *   OST requests: OBDO & OBD request records
261  */
262
263 /* opcodes */
264 typedef enum {
265         OST_REPLY      =  0,       /* reply ? */
266         OST_GETATTR    =  1,
267         OST_SETATTR    =  2,
268         OST_READ       =  3,
269         OST_WRITE      =  4,
270         OST_CREATE     =  5,
271         OST_DESTROY    =  6,
272         OST_GET_INFO   =  7,
273         OST_CONNECT    =  8,
274         OST_DISCONNECT =  9,
275         OST_PUNCH      = 10,
276         OST_OPEN       = 11,
277         OST_CLOSE      = 12,
278         OST_STATFS     = 13,
279         OST_SAN_READ   = 14,
280         OST_SAN_WRITE  = 15,
281         OST_SYNC       = 16,
282         OST_SET_INFO   = 17,
283         OST_LAST_OPC
284 } ost_cmd_t;
285 #define OST_FIRST_OPC  OST_REPLY
286
287 typedef uint64_t        obd_id;
288 typedef uint64_t        obd_gr;
289 typedef uint64_t        obd_time;
290 typedef uint64_t        obd_size;
291 typedef uint64_t        obd_off;
292 typedef uint64_t        obd_blocks;
293 typedef uint32_t        obd_blksize;
294 typedef uint32_t        obd_mode;
295 typedef uint32_t        obd_uid;
296 typedef uint32_t        obd_gid;
297 typedef uint32_t        obd_flags;
298 typedef uint64_t        obd_valid;
299 typedef uint32_t        obd_count;
300
301 #define OBD_FL_INLINEDATA    (0x00000001)
302 #define OBD_FL_OBDMDEXISTS   (0x00000002)
303 #define OBD_FL_DELORPHAN     (0x00000004) /* if set in o_flags delete orphans */
304 #define OBD_FL_NORPC         (0x00000008) // if set in o_flags set in OSC not OST
305 #define OBD_FL_IDONLY        (0x00000010) // if set in o_flags only adjust obj id
306 #define OBD_FL_RECREATE_OBJS (0x00000020) // recreate missing obj
307 #define OBD_FL_DEBUG_CHECK   (0x00000040) /* echo client/server debug check */
308 #define OBD_FL_REINT         (0x00000080) /* reint during cache flush */
309
310 /* this should be sizeof(struct lustre_handle) + sizeof(struct llog_cookie) +
311  * sizeof(struct lustre_id). */
312 #define OBD_INLINESZ (80)
313
314 /* Note: 64-bit types are 64-bit aligned in structure */
315 struct obdo {
316         obd_id                  o_id;
317         obd_gr                  o_gr;
318         obd_size                o_size;
319         obd_time                o_mtime;
320         obd_time                o_atime;
321         obd_time                o_ctime;
322         obd_blocks              o_blocks;       /* brw: cli sent cached bytes */
323         obd_size                o_grant;
324         obd_blksize             o_blksize;      /* optimal IO blocksize */
325         obd_mode                o_mode;         /* brw: cli sent cache remain */
326         obd_uid                 o_uid;
327         obd_gid                 o_gid;
328         obd_flags               o_flags;
329         obd_count               o_nlink;        /* brw: checksum */
330         obd_count               o_generation;
331         obd_valid               o_valid;        /* hot fields in this obdo */
332         obd_count               o_misc;         /* brw: o_dropped */
333         __u32                   o_easize;       /* epoch in ost writes */
334         __u32                   o_mds;
335         __u64                   o_fid;
336         obd_uid                 o_fsuid;        /* fsuid, used by capability */
337         char                    o_inline[OBD_INLINESZ]; /* fid in ost writes */
338 };
339
340 #define o_dirty   o_blocks
341 #define o_undirty o_mode
342 #define o_dropped o_misc
343 #define o_cksum   o_nlink
344
345 extern void lustre_swab_obdo (struct obdo *o);
346
347 #define LOV_MAGIC_V1      0x0BD10BD0
348 #define LOV_MAGIC         LOV_MAGIC_V1
349
350 #define LOV_PATTERN_RAID0 0x001   /* stripes are used round-robin */
351 #define LOV_PATTERN_RAID1 0x002   /* stripes are mirrors of each other */
352 #define LOV_PATTERN_FIRST 0x100   /* first stripe is not in round-robin */
353 #define LOV_PATTERN_CMOBD 0x200  
354  
355 #define lov_ost_data lov_ost_data_v1
356 struct lov_ost_data_v1 {          /* per-stripe data structure (little-endian)*/
357         __u64 l_object_id;        /* OST object ID */
358         __u64 l_object_gr;        /* OST object group (creating MDS number) */
359         __u32 l_ost_gen;          /* generation of this l_ost_idx */
360         __u32 l_ost_idx;          /* OST index in LOV (lov_tgt_desc->tgts) */
361 };
362
363 #define lov_mds_md lov_mds_md_v1
364 struct lov_mds_md_v1 {            /* LOV EA mds/wire data (little-endian) */
365         __u32 lmm_magic;          /* magic number = LOV_MAGIC_V1 */
366         __u32 lmm_pattern;        /* LOV_PATTERN_RAID0, LOV_PATTERN_RAID1 */
367         __u64 lmm_object_id;      /* LOV object ID */
368         __u64 lmm_object_gr;      /* LOV object group */
369         __u32 lmm_stripe_size;    /* size of stripe in bytes */
370         __u32 lmm_stripe_count;   /* num stripes in use for this object */
371         struct lov_ost_data_v1 lmm_objects[0]; /* per-stripe data */
372 };
373
374 #define LOV_MAGIC_V0      0x0BD00BD0
375
376 struct lov_ost_data_v0 {          /* per-stripe data structure (little-endian)*/
377         __u64 l_object_id;        /* OST object ID */
378 };
379
380 struct lov_mds_md_v0 {            /* LOV EA mds/wire data (little-endian) */
381         __u32 lmm_magic;          /* magic number = LOV_MAGIC_V0 */
382         __u64 lmm_object_id;      /* LOV object ID */
383         __u32 lmm_stripe_size;    /* size of the stripe in bytes (not RAID1) */
384         __u32 lmm_stripe_offset;  /* starting stripe offset in lmm_objects */
385         __u16 lmm_stripe_count;   /* number of stipes in use for this object */
386         __u16 lmm_ost_count;      /* how many OST idx are in this LOV md */
387         struct lov_ost_data_v0 lmm_objects[0];
388 } __attribute__((packed));
389
390 #define OBD_MD_FLALL    (0xffffffffffffffffLL)
391 #define OBD_MD_FLID     (0x0000000000000001LL)    /* object ID */
392 #define OBD_MD_FLATIME  (0x0000000000000002LL)    /* access time */
393 #define OBD_MD_FLMTIME  (0x0000000000000004LL)    /* data modification time */
394 #define OBD_MD_FLCTIME  (0x0000000000000008LL)    /* change time */
395 #define OBD_MD_FLSIZE   (0x0000000000000010LL)    /* size */
396 #define OBD_MD_FLBLOCKS (0x0000000000000020LL)    /* allocated blocks count */
397 #define OBD_MD_FLBLKSZ  (0x0000000000000040LL)    /* block size */
398 #define OBD_MD_FLMODE   (0x0000000000000080LL)    /* access bits (mode & ~S_IFMT) */
399 #define OBD_MD_FLTYPE   (0x0000000000000100LL)    /* object type (mode & S_IFMT) */
400 #define OBD_MD_FLUID    (0x0000000000000200LL)    /* user ID */
401 #define OBD_MD_FLGID    (0x0000000000000400LL)    /* group ID */
402 #define OBD_MD_FLFLAGS  (0x0000000000000800LL)    /* flags word */
403 #define OBD_MD_FLXATTR  (0x0000000000001000LL)    /* user xattr */
404 #define OBD_MD_FLNLINK  (0x0000000000002000LL)    /* link count */
405 #define OBD_MD_FLGENER  (0x0000000000004000LL)    /* generation number */
406 #define OBD_MD_FLINLINE (0x0000000000008000LL)    /* inline data */
407 #define OBD_MD_FLRDEV   (0x0000000000010000LL)    /* device number */
408 #define OBD_MD_FLEASIZE (0x0000000000020000LL)    /* extended attribute data */
409 #define OBD_MD_LINKNAME (0x0000000000040000LL)    /* symbolic link target */
410 #define OBD_MD_FLHANDLE (0x0000000000080000LL)    /* file handle */
411 #define OBD_MD_FLCKSUM  (0x0000000000100000LL)    /* bulk data checksum */
412 #define OBD_MD_FLQOS    (0x0000000000200000LL)    /* quality of service stats */
413 #define OBD_MD_FLOSCOPQ (0x0000000000400000LL)    /* osc opaque data */
414 #define OBD_MD_FLCOOKIE (0x0000000000800000LL)    /* log cancellation cookie */
415 #define OBD_MD_FLGROUP  (0x0000000001000000LL)    /* group */
416 #define OBD_MD_FLIFID   (0x0000000002000000LL)    /* ->ost write inline fid */
417 #define OBD_MD_FLEPOCH  (0x0000000004000000LL)    /* ->ost write easize is epoch */
418 #define OBD_MD_FLGRANT  (0x0000000008000000LL)    /* ost preallocation space grant */
419 #define OBD_MD_MDS      (0x0000000010000000LL)    /* where an inode lives on */
420 #define OBD_MD_FLDIREA  (0x0000000020000000LL)    /* dir's extended attribute data */
421 #define OBD_MD_REINT    (0x0000000040000000LL)    /* reintegrate oa */
422 #define OBD_MD_FID      (0x0000000080000000LL)    /* lustre_id data */
423 #define OBD_MD_MEA      (0x0000000100000000LL)    /* shows we are interested in MEA */
424 #define OBD_MD_FLXATTRLIST (0x0000000200000000LL) /* user xattr list */
425 #define OBD_MD_FLACL    (0x0000000400000000LL)    /* acl */
426 #define OBD_MD_FLRMTACL (0x0000000800000000LL)    /* remote acl */
427 #define OBD_MD_FLKEY    (0x0000001000000000LL)    /* mds key extended attributes */
428 #define OBD_MD_FLAUDIT  (0x0000002000000000LL)    /* audit setting */
429 #define OBD_MD_CAPA     (0x0000004000000000LL)    /* capability */
430 #define OBD_MD_FLFSUID  (0x0000008000000000LL)    /* fsuid */
431
432 #define OBD_MD_FLNOTOBD (~(OBD_MD_FLBLOCKS | OBD_MD_LINKNAME    |        \
433                            OBD_MD_FLEASIZE | OBD_MD_FLHANDLE    |        \
434                            OBD_MD_FLCKSUM  | OBD_MD_FLQOS       |        \
435                            OBD_MD_FLOSCOPQ | OBD_MD_FLCOOKIE    |        \
436                            OBD_MD_FLXATTR  | OBD_MD_FLXATTRLIST |        \
437                            OBD_MD_FLACL    | OBD_MD_MDS         |        \
438                            OBD_MD_FLKEY    | OBD_MD_FLAUDIT     |        \
439                            OBD_MD_CAPA     | OBD_MD_FLFSUID))
440
441 static inline struct lustre_handle *obdo_handle(struct obdo *oa)
442 {
443         return (struct lustre_handle *)oa->o_inline;
444 }
445
446 static inline struct llog_cookie *obdo_logcookie(struct obdo *oa)
447 {
448         return (struct llog_cookie *)(oa->o_inline +
449                                       sizeof(struct lustre_handle));
450 }
451
452 /* don't forget obdo_fid which is way down at the bottom so it can come after
453  * the definition of llog_cookie */
454 struct obd_statfs {
455         __u64           os_type;
456         __u64           os_blocks;
457         __u64           os_bfree;
458         __u64           os_bavail;
459         __u64           os_files;
460         __u64           os_ffree;
461         __u8            os_fsid[40];
462         __u32           os_bsize;
463         __u32           os_namelen;
464         __u64           os_maxbytes;
465         __u32           os_spare[10];
466 };
467
468 extern void lustre_swab_obd_statfs (struct obd_statfs *os);
469
470 /* ost_body.data values for OST_BRW */
471
472 #define OBD_BRW_READ       0x01
473 #define OBD_BRW_WRITE      0x02
474 #define OBD_BRW_RWMASK     (OBD_BRW_READ | OBD_BRW_WRITE)
475 #define OBD_BRW_SYNC       0x08
476 #define OBD_BRW_CHECK      0x10
477 #define OBD_BRW_FROM_GRANT 0x20 /* the osc manages this under llite */
478 #define OBD_BRW_GRANTED    0x40 /* the ost manages this */
479
480 #define OBD_OBJECT_EOF     0xffffffffffffffffULL
481
482 struct obd_ioobj {
483         obd_id               ioo_id;
484         obd_gr               ioo_gr;
485         __u32                ioo_type;
486         __u32                ioo_bufcnt;
487 };
488
489 extern void lustre_swab_obd_ioobj (struct obd_ioobj *ioo);
490
491 /* multiple of 8 bytes => can array */
492 struct niobuf_remote {
493         __u64 offset;
494         __u32 len;
495         __u32 flags;
496 };
497
498 extern void lustre_swab_niobuf_remote (struct niobuf_remote *nbr);
499
500 /* request structure for OST's */
501
502 #define OST_REQ_HAS_OA1  0x1
503
504 struct ost_body {
505         struct  obdo oa;
506 };
507
508 extern void lustre_swab_ost_body (struct ost_body *b);
509 extern void lustre_swab_ost_last_id(obd_id *id);
510 extern void lustre_swab_generic_32s(__u32 *val);
511
512 /* lock value block communicated between the filter and llite */
513
514 struct ost_lvb {
515         __u64 lvb_size;
516         __u64 lvb_mtime;
517         __u64 lvb_atime;
518         __u64 lvb_ctime;
519         __u64 lvb_blocks;
520 };
521
522 extern void lustre_swab_ost_lvb(struct ost_lvb *);
523
524 /*
525  *   MDS REQ RECORDS
526  */
527
528 /* offsets in the request */
529 #define MDS_REQ_SECDESC_OFF             0
530 #define MDS_REQ_REC_OFF                 1
531
532 #define MDS_REQ_INTENT_LOCKREQ_OFF      1
533 #define MDS_REQ_INTENT_IT_OFF           2
534 #define MDS_REQ_INTENT_REC_OFF          3
535
536 /* maximum supplementary groups */
537 #define LUSTRE_MAX_GROUPS               128
538
539 /* 
540  * security descriptor in mds request
541  */
542 struct mds_req_sec_desc {
543         __u32           rsd_uid;
544         __u32           rsd_gid;
545         __u32           rsd_fsuid;
546         __u32           rsd_fsgid;
547         __u32           rsd_cap;
548         __u32           rsd_ngroups;
549         __u32           rsd_groups[0];
550 };
551
552 struct ptlrpc_request;
553 struct mds_req_sec_desc *lustre_swab_mds_secdesc(struct ptlrpc_request *req,
554                                                  int offset);
555
556 /* opcodes */
557 typedef enum {
558         MDS_GETATTR      = 33,
559         MDS_GETATTR_LOCK = 34,
560         MDS_CLOSE        = 35,
561         MDS_REINT        = 36,
562         MDS_READPAGE     = 37,
563         MDS_CONNECT      = 38,
564         MDS_DISCONNECT   = 39,
565         MDS_GETSTATUS    = 40,
566         MDS_STATFS       = 41,
567         MDS_PIN          = 42,
568         MDS_UNPIN        = 43,
569         MDS_SYNC         = 44,
570         MDS_DONE_WRITING = 45,
571         MDS_ACCESS_CHECK = 46,
572         MDS_PARSE_ID     = 47,
573         MDS_LAST_OPC
574 } mds_cmd_t;
575
576 #define MDS_FIRST_OPC    MDS_GETATTR
577
578 /*
579  * Do not exceed 63
580  */
581
582 #define REINT_SETATTR      1
583 #define REINT_CREATE       2
584 #define REINT_LINK         3
585 #define REINT_UNLINK       4
586 #define REINT_RENAME       5
587 #define REINT_SETXATTR     6 
588 #define REINT_OPEN         7 
589 #define REINT_CLOSE        8 
590 #define REINT_WRITE        9 
591 #define REINT_MAX          9 
592
593 /* the disposition of the intent outlines what was executed */
594 #define DISP_IT_EXECD     (1 << 0)
595 #define DISP_LOOKUP_EXECD (1 << 1)
596 #define DISP_LOOKUP_NEG   (1 << 2)
597 #define DISP_LOOKUP_POS   (1 << 3)
598 #define DISP_OPEN_CREATE  (1 << 4)
599 #define DISP_OPEN_OPEN    (1 << 5)
600 #define DISP_ENQ_COMPLETE (1 << 6)
601
602 /* INODE LOCK PARTS */
603 #define MDS_INODELOCK_LOOKUP 0x000001  /* dentry, mode, owner, group */
604 #define MDS_INODELOCK_UPDATE 0x000002  /* size, links, timestamps */
605 #define MDS_INODELOCK_OPEN   0x000004  /* for opened files */
606
607 /* do not forget to increase MDS_INODELOCK_MAXSHIFT when adding new bits */
608 #define MDS_INODELOCK_MAXSHIFT 2
609
610 /* this FULL lock is useful to take on unlink sort of operations */
611 #define MDS_INODELOCK_FULL ((1 << (MDS_INODELOCK_MAXSHIFT + 1)) - 1)
612
613 /* lustre store cookie */
614 struct lustre_stc {
615         union {
616                 struct {
617                     __u64 l3s_ino;     /* inode number on local MDS */
618                     __u32 l3s_gen;     /* inode generation */
619                     __u32 l3s_type;    /* inode type */
620                 } e3s;
621         } u;
622 };
623
624 struct fid_extent {
625         __u64 fe_start;
626         __u64 fe_width;
627 };
628
629 /* lustre file id */
630 struct lustre_fid {
631         __u64 lf_id;                   /* fid counter maintained on per 
632                                           group basis */
633         __u64 lf_group;                /* sequence group num */
634 #if 0
635         __u32 lf_version;              /* what snapfs version of inode */
636         __u32 lf_padding;
637 #endif
638 };
639
640 struct lustre_id {
641         struct lustre_stc li_stc;      /* store cookie */
642         struct lustre_fid li_fid;      /* fid cookie */
643 };
644
645 struct mea_old {
646         __u32 mea_count;
647         __u32 mea_master;
648         struct lustre_id mea_ids[0];
649 };
650
651 #define MEA_MAGIC_LAST_CHAR      0xb2221ca1
652 #define MEA_MAGIC_ALL_CHARS      0xb222a11c
653
654 struct mea {
655         __u32 mea_magic;
656         __u32 mea_count;
657         __u32 mea_master;
658         struct lustre_id mea_ids[0];
659 };
660
661 #define MDS_STATUS_CONN 1
662 #define MDS_STATUS_LOV 2
663
664 struct mds_status_req {
665         __u32  flags;
666         __u32  repbuf;
667 };
668
669 struct parseid_pkg {
670         __u32                   pp_type;
671         __u32                   pp_rc;
672         struct lustre_id        pp_id1;
673         struct lustre_id        pp_id2;
674         __u8                    pp_name[NAME_MAX + 1];
675 };
676
677 struct audit_msg {
678         struct lustre_id id;
679         __u64 nid;
680         __u32 result;
681         __u32 uid;
682         __u32 gid;
683         __u32 code;
684 };
685
686 struct audit_attr_msg {
687         struct lustre_id id;
688         __u64 attr;
689 };
690 #if 0
691 extern void lustre_swab_lustre_id(struct lustre_id *id);
692 extern void lustre_swab_lustre_stc(struct lustre_stc *stc);
693 extern void lustre_swab_lustre_fid(struct lustre_fid *fid);
694 extern void lustre_swab_parseid_pkg(struct parseid_pkg *pkg);
695 extern void lustre_swab_mds_status_req (struct mds_status_req *r);
696 #endif
697 extern void lustre_swab_audit_msg (struct audit_msg *r);
698 extern void lustre_swab_audit_attr (struct audit_attr_msg *r);
699 extern void lustre_swab_parseid_pkg(struct parseid_pkg *pkg);
700
701 #define MDS_BFLAG_UNCOMMITTED_WRITES   0x1
702 #define MDS_BFLAG_CLOSE_EPOCH          0x2
703 #define MDS_BFLAG_DIRTY_EPOCH          0x4
704
705 struct mds_body {
706         struct lustre_id id1;
707         struct lustre_id id2;
708         struct lustre_handle handle;
709         __u64          size;   /* Offset, in the case of MDS_READPAGE */
710         __u64          blocks; /* XID, in the case of MDS_READPAGE */
711         __u64          io_epoch;
712         __u64          valid;
713         __u64          audit;
714         __u32          mode;
715         __u32          uid;
716         __u32          gid;
717         __u32          mtime;
718         __u32          ctime;
719         __u32          atime;
720         __u32          flags;  /* from vfs for pin/unpin, MDS_BFLAG for close */
721         __u32          rdev;
722         __u32          nlink;  /* #bytes to read in the case of MDS_READPAGE */
723         __u32          eadatasize;
724 };
725
726 extern void lustre_swab_mds_body (struct mds_body *b);
727
728 struct mds_remote_perm {
729         __u32           mrp_auth_uid;
730         __u32           mrp_auth_gid;
731         __u16           mrp_perm;
732         __u8            mrp_allow_setuid;
733         __u8            mrp_allow_setgid;
734 };
735
736 struct lustre_md {
737         struct mds_body        *body;
738         struct lov_stripe_md   *lsm;
739         struct mea             *mea;
740         struct posix_acl       *posix_acl;
741         struct mds_remote_perm *remote_perm;
742         struct lustre_key      *key; 
743 };
744
745 void lustre_swab_remote_perm(struct mds_remote_perm *p);
746
747 struct mdc_op_data {
748         struct lustre_id id1;
749         struct lustre_id id2;
750         __u64            mod_time;
751         const char      *name;
752         int              namelen;
753         __u32            create_mode;
754         struct mea      *mea1;       /* mea of inode1 */
755         struct mea      *mea2;       /* mea of inode2 */
756         obd_valid        valid;
757         obd_flags        flags;
758
759         /* fields needed for md_close() */
760         __u64            io_epoch;
761         obd_size         size;
762         obd_blocks       blocks;
763         obd_time         mtime;
764         obd_time         atime;
765         obd_time         ctime;
766         obd_mode         mode;
767 };
768
769 #define MDS_MODE_DONT_LOCK      (1 << 30)
770 #define MDS_MODE_REPLAY         (1 << 31)
771
772 /* XXX Following ATTR_XXX should go to vfs patch...  */
773 #ifdef ATTR_CTIME_SET
774 #error "ATTR_CTIME_SET has been defined somewhere else"
775 #endif
776 #ifdef ATTR_EA
777 #error "ATTR_EA has been defined somewhere else"
778 #endif
779 #ifdef ATTR_EA_RM
780 #error "ATTR_EA_RM has been defined somewhere else"
781 #endif
782
783 #define ATTR_CTIME_SET  0x00002000
784 #define ATTR_EA         0x00040000
785 #define ATTR_EA_RM      0x00080000
786 #define ATTR_EA_CMOBD   0x00100000
787 #define ATTR_KEY        0x00200000
788 #define ATTR_MAC        0x00400000
789
790 #ifndef FMODE_READ
791 #define FMODE_READ               00000001
792 #define FMODE_WRITE              00000002
793 #endif
794 #ifndef FMODE_EXEC
795 #define FMODE_EXEC               00000004
796 #endif
797 #define MDS_OPEN_CREAT           00000100
798 #define MDS_OPEN_EXCL            00000200
799 #define MDS_OPEN_TRUNC           00001000
800 #define MDS_OPEN_APPEND          00002000
801 #define MDS_OPEN_SYNC            00010000
802 #define MDS_OPEN_DIRECTORY       00200000
803 #define MDS_REINT_REQ            01000000
804
805 #define MDS_OPEN_DELAY_CREATE    0100000000   /* delay initial object create */
806 #define MDS_OPEN_HAS_KEY         01000000000 /* just set the EA the obj exist */
807 #define MDS_OPEN_HAS_EA          010000000000 /* specify object create pattern */
808 #define MDS_OPEN_HAS_OBJS        020000000000 /* just set the EA the obj exist */
809
810 struct mds_rec_create {
811         __u32            cr_opcode;
812         __u32            cr_flags; /* for use with open */
813         __u32            cr_mode;
814         __u32            cr_padding;
815         struct lustre_id cr_id;
816         struct lustre_id cr_replayid;
817         __u64            cr_time;
818         __u64            cr_rdev;
819         __u64            cr_enkey;
820         __u64            cr_mac;
821 };
822
823 extern void lustre_swab_mds_rec_create (struct mds_rec_create *cr);
824
825 struct mds_rec_link {
826         __u32            lk_opcode;
827         __u32            lk_flags;
828         __u32            lk_padding;
829         struct lustre_id lk_id1;
830         struct lustre_id lk_id2;
831         __u64            lk_time;
832 };
833
834 extern void lustre_swab_mds_rec_link (struct mds_rec_link *lk);
835
836 struct mds_rec_unlink {
837         __u32            ul_opcode;
838         __u32            ul_flags;
839         __u32            ul_mode;
840         struct lustre_id ul_id1;
841         struct lustre_id ul_id2;
842         __u64            ul_time;
843 };
844
845 extern void lustre_swab_mds_rec_unlink (struct mds_rec_unlink *ul);
846
847 struct mds_rec_rename {
848         __u32            rn_opcode;
849         __u32            rn_flags;
850         __u32            rn_padding;
851         struct lustre_id rn_id1;
852         struct lustre_id rn_id2;
853         __u64            rn_time;
854 };
855
856 struct mds_rec_setattr {
857         __u32            sa_opcode;
858         __u32            sa_flags;
859         __u32            sa_valid;
860         struct lustre_id sa_id;
861         __u32            sa_mode;
862         __u32            sa_uid;
863         __u32            sa_gid;
864         __u32            sa_attr_flags;
865         __u64            sa_size;
866         __u64            sa_atime;
867         __u64            sa_mtime;
868         __u64            sa_ctime;
869 };
870
871 extern void lustre_swab_mds_rec_rename (struct mds_rec_rename *rn);
872
873 /*
874  *  LOV data structures
875  */
876
877 #define LOV_MAX_UUID_BUFFER_SIZE  8192
878 /* The size of the buffer the lov/mdc reserves for the
879  * array of UUIDs returned by the MDS.  With the current
880  * protocol, this will limit the max number of OSTs per LOV */
881
882 struct lov_desc {
883         __u32 ld_tgt_count;                /* how many OBD's */
884         __u32 ld_active_tgt_count;         /* how many active */
885         __u32 ld_default_stripe_count;     /* how many objects are used */
886         __u32 ld_pattern;                  /* PATTERN_RAID0, PATTERN_RAID1 */
887         __u64 ld_default_stripe_size;      /* in bytes */
888         __u64 ld_default_stripe_offset;    /* in bytes */
889         struct obd_uuid ld_uuid;
890 };
891
892 struct lmv_desc {
893         __u32 ld_tgt_count;                /* how many MDS's */
894         __u32 ld_active_tgt_count;         /* how many active */
895         struct obd_uuid ld_uuid;
896 };
897
898 /*
899  *   LDLM requests:
900  */
901 /* opcodes -- MUST be distinct from OST/MDS opcodes */
902 typedef enum {
903         LDLM_ENQUEUE     = 101,
904         LDLM_CONVERT     = 102,
905         LDLM_CANCEL      = 103,
906         LDLM_BL_CALLBACK = 104,
907         LDLM_CP_CALLBACK = 105,
908         LDLM_GL_CALLBACK = 106,
909         LDLM_LAST_OPC
910 } ldlm_cmd_t;
911 #define LDLM_FIRST_OPC LDLM_ENQUEUE
912
913 #define RES_NAME_SIZE 4
914 struct ldlm_res_id {
915         __u64 name[RES_NAME_SIZE];
916 };
917
918 extern void lustre_swab_ldlm_res_id (struct ldlm_res_id *id);
919
920 /* lock types */
921 typedef enum {
922         LCK_EX = 1,
923         LCK_PW = 2,
924         LCK_PR = 4,
925         LCK_CW = 8,
926         LCK_CR = 16,
927         LCK_NL = 32,
928         LCK_GROUP = 64
929 } ldlm_mode_t;
930
931 struct ldlm_extent {
932         __u64 start;
933         __u64 end;
934         __u64 gid;
935 };
936 struct ldlm_inodebits {
937         __u64 bits;
938 };
939
940 struct ldlm_flock {
941         __u64 start;
942         __u64 end;
943         __u64 pid;
944         __u64 blocking_pid;
945         __u64 blocking_export;
946 };
947
948 /* it's important that the fields of the ldlm_extent structure match
949  * the first fields of the ldlm_flock structure because there is only
950  * one ldlm_swab routine to process the ldlm_policy_data_t union. if
951  * this ever changes we will need to swab the union differently based
952  * on the resource type. */
953
954 typedef union {
955         struct ldlm_extent l_extent;
956         struct ldlm_flock  l_flock;
957         struct ldlm_inodebits l_inodebits;
958 } ldlm_policy_data_t;
959
960 extern void lustre_swab_ldlm_policy_data (ldlm_policy_data_t *d);
961
962 struct ldlm_intent {
963         __u64 opc;
964 };
965
966 extern void lustre_swab_ldlm_intent (struct ldlm_intent *i);
967
968 struct ldlm_resource_desc {
969         __u32 lr_type;
970         __u32 lr_padding;
971         struct ldlm_res_id lr_name;
972 };
973
974 extern void lustre_swab_ldlm_resource_desc (struct ldlm_resource_desc *r);
975
976 struct ldlm_lock_desc {
977         struct ldlm_resource_desc l_resource;
978         ldlm_mode_t l_req_mode;
979         ldlm_mode_t l_granted_mode;
980         ldlm_policy_data_t l_policy_data;
981 };
982
983 extern void lustre_swab_ldlm_lock_desc (struct ldlm_lock_desc *l);
984
985 struct ldlm_request {
986         __u32 lock_flags;
987         __u32 lock_padding;
988         struct ldlm_lock_desc lock_desc;
989         struct lustre_handle lock_handle1;
990         struct lustre_handle lock_handle2;
991 };
992
993 extern void lustre_swab_ldlm_request (struct ldlm_request *rq);
994
995 struct ldlm_reply {
996         __u32 lock_flags;
997         __u32 lock_padding;
998         struct ldlm_lock_desc lock_desc;
999         struct lustre_handle lock_handle;
1000         __u64  lock_policy_res1;
1001         __u64  lock_policy_res2;
1002 };
1003
1004 extern void lustre_swab_ldlm_reply (struct ldlm_reply *r);
1005
1006 /*
1007  * ptlbd, portal block device requests
1008  */
1009 typedef enum {
1010         PTLBD_QUERY      = 200,
1011         PTLBD_READ       = 201,
1012         PTLBD_WRITE      = 202,
1013         PTLBD_FLUSH      = 203,
1014         PTLBD_CONNECT    = 204,
1015         PTLBD_DISCONNECT = 205,
1016         PTLBD_LAST_OPC
1017 } ptlbd_cmd_t;
1018 #define PTLBD_FIRST_OPC PTLBD_QUERY
1019
1020 struct ptlbd_op {
1021         __u16 op_cmd;
1022         __u16 op_lun;
1023         __u16 op_niob_cnt;
1024         __u16 op__padding;
1025         __u32 op_block_cnt;
1026 };
1027
1028 extern void lustre_swab_ptlbd_op (struct ptlbd_op *op);
1029
1030 struct ptlbd_niob {
1031         __u64 n_xid;
1032         __u64 n_block_nr;
1033         __u32 n_offset;
1034         __u32 n_length;
1035 };
1036
1037 extern void lustre_swab_ptlbd_niob (struct ptlbd_niob *n);
1038
1039 struct ptlbd_rsp {
1040         __u16 r_status;
1041         __u16 r_error_cnt;
1042 };
1043
1044 extern void lustre_swab_ptlbd_rsp (struct ptlbd_rsp *r);
1045
1046 #define CAPA_KEY_LEN           16
1047 #define CAPA_DIGEST_SIZE       16
1048
1049 struct lustre_capa {
1050         __u32   lc_uid;       /* uid */
1051         __u32   lc_op;        /* operations allowed */
1052         __u64   lc_ino;       /* inode# */
1053         __u32   lc_mdsid;     /* mds# */
1054         __u32   lc_keyid;     /* key used for the capability */
1055         __u64   lc_expiry;    /* expiry time (sec): servers have clocks */
1056         __u32   lc_flags;     /* security features for capability */
1057         __u8    lc_hmac[CAPA_DIGEST_SIZE]; /* HMAC */
1058 } __attribute__((packed));
1059
1060 extern void lustre_swab_lustre_capa (struct lustre_capa *c);
1061
1062 struct lustre_capa_key {
1063         __u32   lk_mdsid;     /* mds# */
1064         __u32   lk_keyid;     /* key# */
1065         __u64   lk_expiry;    /* expiry (sec) */
1066         __u8    lk_key[CAPA_KEY_LEN];  /* key */
1067 };
1068
1069 extern void lustre_swab_lustre_capa_key (struct lustre_capa_key *k);
1070
1071 /*
1072  * Opcodes for management/monitoring node.
1073  */
1074 typedef enum {
1075         MGMT_CONNECT = 250,
1076         MGMT_DISCONNECT,
1077         MGMT_EXCEPTION,         /* node died, etc. */
1078         MGMT_LAST_OPC
1079 } mgmt_cmd_t;
1080 #define MGMT_FIRST_OPC MGMT_CONNECT
1081
1082 /*
1083  * Opcodes for multiple servers.
1084  */
1085
1086 typedef enum {
1087         OBD_PING = 400,
1088         OBD_LOG_CANCEL,
1089         OBD_LAST_OPC
1090 } obd_cmd_t;
1091 #define OBD_FIRST_OPC OBD_PING
1092
1093 /* catalog of log objects */
1094
1095 /* Identifier for a single log object */
1096 struct llog_logid {
1097         __u64                   lgl_oid;
1098         __u64                   lgl_ogr;
1099         __u32                   lgl_ogen;
1100 } __attribute__((packed));
1101
1102 /* Records written to the CATALOGS list */
1103 #define CATLIST "CATALOGS"
1104 struct llog_catid {
1105         struct llog_logid       lci_logid;
1106         __u32                   lci_padding[3];
1107 } __attribute__((packed));
1108
1109 /* Log data record types - there is no specific reason that these need to
1110  * be related to the RPC opcodes, but no reason not to (may be handy later?)
1111  */
1112 typedef enum {
1113         OST_SZ_REC       = 0x10600000 | (OST_SAN_WRITE << 8),
1114         OST_RAID1_REC    = 0x10600000 | ((OST_SAN_WRITE + 1) << 8),
1115         MDS_UNLINK_REC   = 0x10610000 | (MDS_REINT << 8) | REINT_UNLINK,
1116         OBD_CFG_REC      = 0x10620000,
1117         PTL_CFG_REC      = 0x10630000,
1118         LLOG_GEN_REC     = 0x10640000,
1119         LLOG_HDR_MAGIC   = 0x10645539,
1120         LLOG_LOGID_MAGIC = 0x1064553b,
1121         SMFS_UPDATE_REC  = 0x10650000,
1122         CACHE_LRU_REC    = 0x10660000,
1123         SMFS_AUDIT_GEN_REC = 0x10670000,
1124         SMFS_AUDIT_NAME_REC = 0x10680000,
1125 } llog_op_type;
1126
1127 /* Log record header - stored in little endian order.
1128  * Each record must start with this struct, end with a llog_rec_tail,
1129  * and be a multiple of 256 bits in size.
1130  */
1131 struct llog_rec_hdr {
1132         __u32                   lrh_len;
1133         __u32                   lrh_index;
1134         __u32                   lrh_type;
1135         __u32                   padding;
1136 };
1137
1138 struct llog_rec_tail {
1139         __u32 lrt_len;
1140         __u32 lrt_index;
1141 };
1142
1143 struct llog_logid_rec {
1144         struct llog_rec_hdr     lid_hdr;
1145         struct llog_logid       lid_id;
1146         __u32                   padding[5];
1147         struct llog_rec_tail    lid_tail;
1148 } __attribute__((packed));
1149
1150 struct llog_create_rec {
1151         struct llog_rec_hdr     lcr_hdr;
1152         struct lustre_id        lcr_id;
1153         obd_id                  lcr_oid;
1154         obd_count               lcr_ogen;
1155         __u32                   padding;
1156         struct llog_rec_tail    lcr_tail;
1157 } __attribute__((packed));
1158
1159 struct llog_orphan_rec {
1160         struct llog_rec_hdr     lor_hdr;
1161         obd_id                  lor_oid;
1162         obd_count               lor_ogen;
1163         __u32                   padding;
1164         struct llog_rec_tail    lor_tail;
1165 } __attribute__((packed));
1166
1167 struct llog_unlink_rec {
1168         struct llog_rec_hdr     lur_hdr;
1169         obd_id                  lur_oid;
1170         obd_count               lur_ogen;
1171         __u32                   padding;
1172         struct llog_rec_tail    lur_tail;
1173 } __attribute__((packed));
1174
1175 struct llog_size_change_rec {
1176         struct llog_rec_hdr     lsc_hdr;
1177         struct lustre_id        lsc_id;
1178         __u32                   lsc_io_epoch;
1179         __u32                   padding;
1180         struct llog_rec_tail    lsc_tail;
1181 } __attribute__((packed));
1182
1183 struct llog_gen {
1184         __u64 mnt_cnt;
1185         __u64 conn_cnt;
1186 };
1187
1188 struct llog_gen_rec {
1189         struct llog_rec_hdr     lgr_hdr;
1190         struct llog_gen         lgr_gen;
1191         struct llog_rec_tail    lgr_tail;
1192 } __attribute__((packed));
1193
1194 struct llog_lru_rec {
1195         struct llog_rec_hdr     llr_hdr;
1196         struct lustre_id        llr_cid;
1197         struct lustre_id        llr_pid;
1198         struct llog_rec_tail    llr_tail;
1199 } __attribute__((packed));
1200
1201 /* On-disk header structure of each log object, stored in little endian order */
1202 #define LLOG_CHUNK_SIZE         8192
1203 #define LLOG_HEADER_SIZE        (96)
1204 #define LLOG_BITMAP_BYTES       (LLOG_CHUNK_SIZE - LLOG_HEADER_SIZE)
1205
1206 #define LLOG_MIN_REC_SIZE       (24) /* round(llog_rec_hdr + llog_rec_tail) */
1207
1208 /* flags for the logs */
1209 #define LLOG_F_ZAP_WHEN_EMPTY   0x1
1210 #define LLOG_F_IS_CAT           0x2
1211 #define LLOG_F_IS_PLAIN         0x4
1212
1213 struct llog_log_hdr {
1214         struct llog_rec_hdr     llh_hdr;
1215         __u64                   llh_timestamp;
1216         __u32                   llh_count;
1217         __u32                   llh_bitmap_offset;
1218         __u32                   llh_size;
1219         __u32                   llh_flags;
1220         __u32                   llh_cat_idx;
1221         /* for a catalog the first plain slot is next to it */
1222         struct obd_uuid         llh_tgtuuid;
1223         __u32                 llh_reserved[LLOG_HEADER_SIZE/sizeof(__u32) - 23];
1224         __u32                   llh_bitmap[LLOG_BITMAP_BYTES/sizeof(__u32)];
1225         struct llog_rec_tail    llh_tail;
1226 } __attribute__((packed));
1227
1228 #define LLOG_BITMAP_SIZE(llh)  ((llh->llh_hdr.lrh_len -         \
1229                                  llh->llh_bitmap_offset -       \
1230                                  sizeof(llh->llh_tail)) * 8)
1231
1232 /* log cookies are used to reference a specific log file and a record therein */
1233 struct llog_cookie {
1234         struct llog_logid       lgc_lgl;
1235         __u32                   lgc_subsys;
1236         __u32                   lgc_index;
1237         __u32                   lgc_flags;
1238 } __attribute__((packed));
1239
1240 /* llog protocol */
1241 enum llogd_rpc_ops {
1242         LLOG_ORIGIN_HANDLE_OPEN         = 501,
1243         LLOG_ORIGIN_HANDLE_NEXT_BLOCK   = 502,
1244         LLOG_ORIGIN_HANDLE_READ_HEADER  = 503,
1245         LLOG_ORIGIN_HANDLE_WRITE_REC    = 504,
1246         LLOG_ORIGIN_HANDLE_CLOSE        = 505,
1247         LLOG_ORIGIN_CONNECT             = 506,
1248         LLOG_CATINFO                    = 507,  /* for lfs catinfo */
1249         LLOG_ORIGIN_HANDLE_PREV_BLOCK   = 508,
1250 };
1251
1252 struct llogd_body {
1253         struct llog_logid  lgd_logid;
1254         __u32 lgd_ctxt_idx;
1255         __u32 lgd_llh_flags;
1256         __u32 lgd_index;
1257         __u32 lgd_saved_index;
1258         __u32 lgd_len;
1259         __u64 lgd_cur_offset;
1260 } __attribute__((packed));
1261
1262 struct llogd_conn_body {
1263         struct llog_gen         lgdc_gen;
1264         struct llog_logid       lgdc_logid;
1265         __u32                   lgdc_ctxt_idx;
1266 } __attribute__((packed));
1267
1268 extern void lustre_swab_llogd_body (struct llogd_body *d);
1269 extern void lustre_swab_llog_hdr (struct llog_log_hdr *h);
1270 extern void lustre_swab_llogd_conn_body (struct llogd_conn_body *d);
1271
1272 struct lustre_cfg;
1273 extern void lustre_swab_lustre_cfg(struct lustre_cfg *lcfg);
1274
1275 static inline struct lustre_id *obdo_id(struct obdo *oa)
1276 {
1277         void *raw_id = oa->o_inline + sizeof(struct lustre_handle) +
1278                 sizeof(struct llog_cookie);
1279         
1280         return (struct lustre_id *)raw_id;
1281 }
1282
1283 /* security negotiate */
1284 typedef enum {
1285         SEC_INIT                = 600,
1286         SEC_INIT_CONTINUE       = 601,
1287         SEC_FINI                = 602,
1288         SEC_LAST_OPC
1289 } sec_cmd_t;
1290 #define SEC_FIRST_OPC SEC_INIT
1291 /* GS opcodes*/
1292 typedef enum {
1293         GKS_CONNECT      = 700,
1294         GKS_DISCONNECT   = 701,
1295         GKS_GET_KEY      = 702,
1296         GKS_DECRYPT_KEY  = 703,
1297         GKS_GET_MAC      = 704,
1298 } gks_cmd_t;
1299
1300 #define KEY_SIZE        16 
1301 #define MAC_SIZE        16 
1302
1303 struct crypto_key {
1304         __u8    ck_mac[MAC_SIZE];
1305         __u8    ck_key[KEY_SIZE];
1306         __u32   ck_type;
1307 };
1308
1309 #ifndef __KERNEL__
1310 struct posix_acl_entry {
1311         short           e_tag;
1312         unsigned short  e_perm;
1313         unsigned int    e_id;
1314 };
1315 #endif
1316
1317 struct key_perm {
1318         uid_t    kp_uid;       
1319         gid_t    kp_gid;
1320         __u32    kp_mode;
1321         __u32    kp_acl_count;
1322         struct   posix_acl_entry kp_acls[0]; 
1323 };
1324
1325 struct key_context {
1326         struct crypto_key kc_ck;
1327         __u32  kc_command;
1328         __u32  kc_valid;
1329         struct key_perm kc_perm;
1330 }; 
1331 typedef int (*crypt_cb_t)(struct page *page, __u64 offset,
1332                           __u64 count, int flags);
1333
1334 extern void lustre_swab_key_context (struct key_context *kctxt);
1335 extern void lustre_swab_key_perms (struct key_perm *kperm);
1336
1337 extern void lustre_swab_lustre_id(struct lustre_id *id);
1338 extern void lustre_swab_lov_desc(struct lov_desc *desc);
1339 extern void lustre_swab_fid_extent(struct fid_extent *ext);
1340 extern void lustre_swab_lustre_stc(struct lustre_stc *stc);
1341 extern void lustre_swab_lustre_fid(struct lustre_fid *fid);
1342 extern void lustre_swab_mds_status_req(struct mds_status_req *r);
1343 extern void lustre_swab_mds_rec_setattr(struct mds_rec_setattr *sa);
1344
1345 #endif