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