Whamcloud - gitweb
Land from b_hd_pid to HEAD
[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 __KERNEL__
52 # include <linux/ioctl.h>
53 # include <asm/types.h>
54 # include <linux/types.h>
55 # include <linux/list.h>
56 # include <linux/string.h> /* for strncpy, below */
57 # include <linux/fs.h>     /* to check for FMODE_EXEC, dev_t, lest we redefine */
58 #else
59 #ifdef __CYGWIN__
60 # include <sys/types.h>
61 #else
62 # include <asm/types.h>
63 # include <stdint.h>
64 #endif
65 # include <portals/list.h>
66 # include <string.h>
67 #endif
68
69 /* Defn's shared with user-space. */
70 #include <lustre/lustre_user.h>
71
72 /*
73  * this file contains all data structures used in Lustre interfaces:
74  * - obdo and obd_request records
75  * - mds_request records
76  * - ldlm data
77  * - ioctl's
78  */
79
80 /*
81  *  GENERAL STUFF
82  */
83 /* FOO_REQUEST_PORTAL is for incoming requests on the FOO
84  * FOO_REPLY_PORTAL   is for incoming replies on the FOO
85  * FOO_BULK_PORTAL    is for incoming bulk on the FOO
86  */
87
88 #define CONNMGR_REQUEST_PORTAL          1
89 #define CONNMGR_REPLY_PORTAL            2
90 //#define OSC_REQUEST_PORTAL            3
91 #define OSC_REPLY_PORTAL                4
92 //#define OSC_BULK_PORTAL               5
93 #define OST_REQUEST_PORTAL              6
94 #define OST_CREATE_PORTAL               7
95 #define OST_BULK_PORTAL                 8
96 //#define MDC_REQUEST_PORTAL            9
97 #define MDC_REPLY_PORTAL               10
98 //#define MDC_BULK_PORTAL              11
99 #define MDS_REQUEST_PORTAL             12
100 //#define MDS_REPLY_PORTAL             13
101 #define MDS_BULK_PORTAL                14
102 #define LDLM_CB_REQUEST_PORTAL         15
103 #define LDLM_CB_REPLY_PORTAL           16
104 #define LDLM_CANCEL_REQUEST_PORTAL     17
105 #define LDLM_CANCEL_REPLY_PORTAL       18
106 #define PTLBD_REQUEST_PORTAL           19
107 #define PTLBD_REPLY_PORTAL             20
108 #define PTLBD_BULK_PORTAL              21
109 #define MDS_SETATTR_PORTAL             22
110 #define MDS_READPAGE_PORTAL            23
111 #define MGMT_REQUEST_PORTAL            24
112 #define MGMT_REPLY_PORTAL              25
113 #define MGMT_CLI_REQUEST_PORTAL        26
114 #define MGMT_CLI_REPLY_PORTAL          27
115
116 #define SVC_KILLED               1
117 #define SVC_EVENT                2
118 #define SVC_SIGNAL               4
119 #define SVC_RUNNING              8
120 #define SVC_STOPPING            16
121 #define SVC_STOPPED             32
122
123 /* packet types */
124 #define PTL_RPC_MSG_REQUEST 4711
125 #define PTL_RPC_MSG_ERR     4712
126 #define PTL_RPC_MSG_REPLY   4713
127
128 #define PTLRPC_MSG_MAGIC    0x0BD00BD0
129
130
131 #define PTLRPC_MSG_VERSION  0x00000003
132 #define LUSTRE_MDS_VERSION  (0x00040000|PTLRPC_MSG_VERSION)
133 #define LUSTRE_OST_VERSION  (0x00040000|PTLRPC_MSG_VERSION)
134 #define LUSTRE_DLM_VERSION  (0x00040000|PTLRPC_MSG_VERSION)
135
136 /* initial pid  */
137 #define LUSTRE_PTL_PID          999999
138 #define LUSTRE_SRV_PTL_PID      LUSTRE_PTL_PID    
139
140 struct lustre_handle {
141         __u64 cookie;
142 };
143 #define DEAD_HANDLE_MAGIC 0xdeadbeefcafebabeULL
144
145 /* we depend on this structure to be 8-byte aligned */
146 /* this type is only endian-adjusted in lustre_unpack_msg() */
147 struct lustre_msg {
148         struct lustre_handle handle;
149         __u32 magic;
150         __u32 type;
151         __u32 version;
152         __u32 opc;
153         __u64 last_xid;
154         __u64 last_committed;
155         __u64 transno;
156         __u32 status;
157         __u32 flags;
158         __u32 conn_cnt;
159         __u32 bufcount;
160         __u32 buflens[0];
161 };
162
163 /* Flags that are operation-specific go in the top 16 bits. */
164 #define MSG_OP_FLAG_MASK   0xffff0000
165 #define MSG_OP_FLAG_SHIFT  16
166
167 /* Flags that apply to all requests are in the bottom 16 bits */
168 #define MSG_GEN_FLAG_MASK      0x0000ffff
169 #define MSG_LAST_REPLAY        1
170 #define MSG_RESENT             2
171 #define MSG_REPLAY             4
172
173 static inline int lustre_msg_get_flags(struct lustre_msg *msg)
174 {
175         return (msg->flags & MSG_GEN_FLAG_MASK);
176 }
177
178 static inline void lustre_msg_add_flags(struct lustre_msg *msg, int flags)
179 {
180         msg->flags |= MSG_GEN_FLAG_MASK & flags;
181 }
182
183 static inline void lustre_msg_set_flags(struct lustre_msg *msg, int flags)
184 {
185         msg->flags &= ~MSG_GEN_FLAG_MASK;
186         lustre_msg_add_flags(msg, flags);
187 }
188
189 static inline void lustre_msg_clear_flags(struct lustre_msg *msg, int flags)
190 {
191         msg->flags &= ~(MSG_GEN_FLAG_MASK & flags);
192 }
193
194 static inline int lustre_msg_get_op_flags(struct lustre_msg *msg)
195 {
196         return (msg->flags >> MSG_OP_FLAG_SHIFT);
197 }
198
199 static inline void lustre_msg_add_op_flags(struct lustre_msg *msg, int flags)
200 {
201         msg->flags |= ((flags & MSG_GEN_FLAG_MASK) << MSG_OP_FLAG_SHIFT);
202 }
203
204 static inline void lustre_msg_set_op_flags(struct lustre_msg *msg, int flags)
205 {
206         msg->flags &= ~MSG_OP_FLAG_MASK;
207         lustre_msg_add_op_flags(msg, flags);
208 }
209
210 /*
211  * Flags for all connect opcodes (MDS_CONNECT, OST_CONNECT)
212  */
213
214 #define MSG_CONNECT_RECOVERING  0x1
215 #define MSG_CONNECT_RECONNECT   0x2
216 #define MSG_CONNECT_REPLAYABLE  0x4
217 //#define MSG_CONNECT_PEER        0x8
218 #define MSG_CONNECT_LIBCLIENT   0x10
219 #define MSG_CONNECT_INITIAL     0x20
220
221 /*
222  *   OST requests: OBDO & OBD request records
223  */
224
225 /* opcodes */
226 typedef enum {
227         OST_REPLY      =  0,       /* reply ? */
228         OST_GETATTR    =  1,
229         OST_SETATTR    =  2,
230         OST_READ       =  3,
231         OST_WRITE      =  4,
232         OST_CREATE     =  5,
233         OST_DESTROY    =  6,
234         OST_GET_INFO   =  7,
235         OST_CONNECT    =  8,
236         OST_DISCONNECT =  9,
237         OST_PUNCH      = 10,
238         OST_OPEN       = 11,
239         OST_CLOSE      = 12,
240         OST_STATFS     = 13,
241         OST_SAN_READ   = 14,
242         OST_SAN_WRITE  = 15,
243         OST_SYNC       = 16,
244         OST_SET_INFO   = 17,
245         OST_LAST_OPC
246 } ost_cmd_t;
247 #define OST_FIRST_OPC  OST_REPLY
248
249 typedef uint64_t        obd_id;
250 typedef uint64_t        obd_gr;
251 typedef uint64_t        obd_time;
252 typedef uint64_t        obd_size;
253 typedef uint64_t        obd_off;
254 typedef uint64_t        obd_blocks;
255 typedef uint32_t        obd_blksize;
256 typedef uint32_t        obd_mode;
257 typedef uint32_t        obd_uid;
258 typedef uint32_t        obd_gid;
259 typedef uint32_t        obd_flag;
260 typedef uint32_t        obd_count;
261
262 #define OBD_FL_INLINEDATA   (0x00000001)
263 #define OBD_FL_OBDMDEXISTS  (0x00000002)
264 #define OBD_FL_DELORPHAN    (0x00000004) /* if set in o_flags delete orphans */
265 #define OBD_FL_NORPC        (0x00000008) // if set in o_flags set in OSC not OST
266 #define OBD_FL_IDONLY       (0x00000010) // if set in o_flags only adjust obj id
267 #define OBD_FL_RECREATE_OBJS (0x00000020) // recreate missing obj
268
269 #define OBD_INLINESZ    64
270
271 /* Note: 64-bit types are 64-bit aligned in structure */
272 struct obdo {
273         obd_id                  o_id;
274         obd_gr                  o_gr;
275         obd_time                o_atime;
276         obd_time                o_mtime;
277         obd_time                o_ctime;
278         obd_size                o_size;
279         obd_blocks              o_blocks;       /* brw: cli sent cached bytes */
280         obd_size                o_grant;
281         obd_blksize             o_blksize;      /* optimal IO blocksize */
282         obd_mode                o_mode;         /* brw: cli sent cache remain */
283         obd_uid                 o_uid;
284         obd_gid                 o_gid;
285         obd_flag                o_flags;
286         obd_count               o_nlink;        /* brw: checksum */
287         obd_count               o_generation;
288         obd_flag                o_valid;        /* hot fields in this obdo */
289         obd_count               o_misc;
290         __u32                   o_easize;       /* epoch in ost writes */
291         __u32                   o_mds;
292         char                    o_inline[OBD_INLINESZ]; /* fid in ost writes */
293 };
294
295 #define o_dirty   o_blocks
296 #define o_undirty o_mode
297 #define o_dropped o_misc
298 #define o_cksum   o_nlink
299
300 extern void lustre_swab_obdo (struct obdo *o);
301
302 #define LOV_MAGIC_V1      0x0BD10BD0
303 #define LOV_MAGIC         LOV_MAGIC_V1
304
305 #define LOV_PATTERN_RAID0 0x001   /* stripes are used round-robin */
306 #define LOV_PATTERN_RAID1 0x002   /* stripes are mirrors of each other */
307 #define LOV_PATTERN_FIRST 0x100   /* first stripe is not in round-robin */
308 #define LOV_PATTERN_CMOBD 0x200  
309  
310 #define lov_ost_data lov_ost_data_v1
311 struct lov_ost_data_v1 {          /* per-stripe data structure (little-endian)*/
312         __u64 l_object_id;        /* OST object ID */
313         __u64 l_object_gr;        /* OST object group (creating MDS number) */
314         __u32 l_ost_gen;          /* generation of this l_ost_idx */
315         __u32 l_ost_idx;          /* OST index in LOV (lov_tgt_desc->tgts) */
316 };
317
318 #define lov_mds_md lov_mds_md_v1
319 struct lov_mds_md_v1 {            /* LOV EA mds/wire data (little-endian) */
320         __u32 lmm_magic;          /* magic number = LOV_MAGIC_V1 */
321         __u32 lmm_pattern;        /* LOV_PATTERN_RAID0, LOV_PATTERN_RAID1 */
322         __u64 lmm_object_id;      /* LOV object ID */
323         __u64 lmm_object_gr;      /* LOV object group */
324         __u32 lmm_stripe_size;    /* size of stripe in bytes */
325         __u32 lmm_stripe_count;   /* num stripes in use for this object */
326         struct lov_ost_data_v1 lmm_objects[0]; /* per-stripe data */
327 };
328
329 #define LOV_MAGIC_V0      0x0BD00BD0
330
331 struct lov_ost_data_v0 {          /* per-stripe data structure (little-endian)*/
332         __u64 l_object_id;        /* OST object ID */
333 };
334
335 struct lov_mds_md_v0 {            /* LOV EA mds/wire data (little-endian) */
336         __u32 lmm_magic;          /* magic number = LOV_MAGIC_V0 */
337         __u64 lmm_object_id;      /* LOV object ID */
338         __u32 lmm_stripe_size;    /* size of the stripe in bytes (not RAID1) */
339         __u32 lmm_stripe_offset;  /* starting stripe offset in lmm_objects */
340         __u16 lmm_stripe_count;   /* number of stipes in use for this object */
341         __u16 lmm_ost_count;      /* how many OST idx are in this LOV md */
342         struct lov_ost_data_v0 lmm_objects[0];
343 } __attribute__((packed));
344
345 #define OBD_MD_FLALL    (0xffffffff)
346 #define OBD_MD_FLID     (0x00000001)    /* object ID */
347 #define OBD_MD_FLATIME  (0x00000002)    /* access time */
348 #define OBD_MD_FLMTIME  (0x00000004)    /* data modification time */
349 #define OBD_MD_FLCTIME  (0x00000008)    /* change time */
350 #define OBD_MD_FLSIZE   (0x00000010)    /* size */
351 #define OBD_MD_FLBLOCKS (0x00000020)    /* allocated blocks count */
352 #define OBD_MD_FLBLKSZ  (0x00000040)    /* block size */
353 #define OBD_MD_FLMODE   (0x00000080)    /* access bits (mode & ~S_IFMT) */
354 #define OBD_MD_FLTYPE   (0x00000100)    /* object type (mode & S_IFMT) */
355 #define OBD_MD_FLUID    (0x00000200)    /* user ID */
356 #define OBD_MD_FLGID    (0x00000400)    /* group ID */
357 #define OBD_MD_FLFLAGS  (0x00000800)    /* flags word */
358 #define OBD_MD_FLNLINK  (0x00002000)    /* link count */
359 #define OBD_MD_FLGENER  (0x00004000)    /* generation number */
360 #define OBD_MD_FLINLINE (0x00008000)    /* inline data */
361 #define OBD_MD_FLRDEV   (0x00010000)    /* device number */
362 #define OBD_MD_FLEASIZE (0x00020000)    /* extended attribute data */
363 #define OBD_MD_LINKNAME (0x00040000)    /* symbolic link target */
364 #define OBD_MD_FLHANDLE (0x00080000)    /* file handle */
365 #define OBD_MD_FLCKSUM  (0x00100000)    /* bulk data checksum */
366 #define OBD_MD_FLQOS    (0x00200000)    /* quality of service stats */
367 #define OBD_MD_FLOSCOPQ (0x00400000)    /* osc opaque data */
368 #define OBD_MD_FLCOOKIE (0x00800000)    /* log cancellation cookie */
369 #define OBD_MD_FLGROUP  (0x01000000)    /* group */
370 #define OBD_MD_FLIFID   (0x02000000)    /* ->ost write inline fid */
371 #define OBD_MD_FLEPOCH  (0x04000000)    /* ->ost write easize is epoch */
372 #define OBD_MD_FLGRANT  (0x08000000)    /* ost preallocation space grant */
373 #define OBD_MD_MDS      (0x10000000)    /* where an inode lives on */
374 #define OBD_MD_FLDIREA  (0x20000000)    /* dir's extended attribute data */
375 #define OBD_MD_REINT    (0x40000000)    /* reintegrate oa*/
376 #define OBD_MD_FLNOTOBD (~(OBD_MD_FLBLOCKS | OBD_MD_LINKNAME|\
377                            OBD_MD_FLEASIZE | OBD_MD_FLHANDLE | OBD_MD_FLCKSUM|\
378                            OBD_MD_FLQOS | OBD_MD_FLOSCOPQ | OBD_MD_FLCOOKIE|\
379                            OBD_MD_MDS))
380
381
382 static inline struct lustre_handle *obdo_handle(struct obdo *oa)
383 {
384         return (struct lustre_handle *)oa->o_inline;
385 }
386
387 static inline struct llog_cookie *obdo_logcookie(struct obdo *oa)
388 {
389         return (struct llog_cookie *)(oa->o_inline +
390                                       sizeof(struct lustre_handle));
391 }
392 /* don't forget obdo_fid which is way down at the bottom so it can
393  * come after the definition of llog_cookie */
394
395 struct obd_statfs {
396         __u64           os_type;
397         __u64           os_blocks;
398         __u64           os_bfree;
399         __u64           os_bavail;
400         __u64           os_files;
401         __u64           os_ffree;
402         __u8            os_fsid[40];
403         __u32           os_bsize;
404         __u32           os_namelen;
405         __u64           os_maxbytes;
406         __u32           os_spare[10];
407 };
408
409 extern void lustre_swab_obd_statfs (struct obd_statfs *os);
410
411 /* ost_body.data values for OST_BRW */
412
413 #define OBD_BRW_READ       0x01
414 #define OBD_BRW_WRITE      0x02
415 #define OBD_BRW_RWMASK     (OBD_BRW_READ | OBD_BRW_WRITE)
416 #define OBD_BRW_SYNC       0x08
417 #define OBD_BRW_CHECK      0x10
418 #define OBD_BRW_FROM_GRANT 0x20 /* the osc manages this under llite */
419 #define OBD_BRW_GRANTED    0x40 /* the ost manages this */
420
421 #define OBD_OBJECT_EOF 0xffffffffffffffffULL
422
423 struct obd_ioobj {
424         obd_id               ioo_id;
425         obd_gr               ioo_gr;
426         __u32                ioo_type;
427         __u32                ioo_bufcnt;
428 };
429
430 extern void lustre_swab_obd_ioobj (struct obd_ioobj *ioo);
431
432 /* multiple of 8 bytes => can array */
433 struct niobuf_remote {
434         __u64 offset;
435         __u32 len;
436         __u32 flags;
437 };
438
439 extern void lustre_swab_niobuf_remote (struct niobuf_remote *nbr);
440
441 /* request structure for OST's */
442
443 #define OST_REQ_HAS_OA1  0x1
444
445 struct ost_body {
446         struct  obdo oa;
447 };
448
449 extern void lustre_swab_ost_body (struct ost_body *b);
450 extern void lustre_swab_ost_last_id(obd_id *id);
451
452 /* lock value block communicated between the filter and llite */
453
454 struct ost_lvb {
455         __u64 lvb_size;
456         __u64 lvb_mtime;
457         __u64 lvb_atime;
458         __u64 lvb_ctime;
459         __u64 lvb_blocks;
460 };
461
462 extern void lustre_swab_ost_lvb(struct ost_lvb *);
463
464 /*
465  *   MDS REQ RECORDS
466  */
467
468 /* opcodes */
469 typedef enum {
470         MDS_GETATTR      = 33,
471         MDS_GETATTR_NAME = 34,
472         MDS_CLOSE        = 35,
473         MDS_REINT        = 36,
474         MDS_READPAGE     = 37,
475         MDS_CONNECT      = 38,
476         MDS_DISCONNECT   = 39,
477         MDS_GETSTATUS    = 40,
478         MDS_STATFS       = 41,
479         MDS_PIN          = 42,
480         MDS_UNPIN        = 43,
481         MDS_SYNC         = 44,
482         MDS_DONE_WRITING = 45,
483         MDS_LAST_OPC
484 } mds_cmd_t;
485
486 #define MDS_FIRST_OPC    MDS_GETATTR
487
488 /*
489  * Do not exceed 63
490  */
491
492 #define REINT_SETATTR    1
493 #define REINT_CREATE     2
494 #define REINT_LINK       3
495 #define REINT_UNLINK     4
496 #define REINT_RENAME     5
497 #define REINT_OPEN       6
498 #define REINT_CLOSE      7
499 #define REINT_WRITE      8
500 #define REINT_MAX        8
501
502 /* the disposition of the intent outlines what was executed */
503 #define DISP_IT_EXECD   1
504 #define DISP_LOOKUP_EXECD  (1 << 1)
505 #define DISP_LOOKUP_NEG     (1 << 2)
506 #define DISP_LOOKUP_POS     (1 << 3)
507 #define DISP_OPEN_CREATE  (1 << 4)
508 #define DISP_OPEN_OPEN    (1 << 5)
509 #define DISP_ENQ_COMPLETE (1<<6)
510
511 /* INODE LOCK PARTS */
512 #define MDS_INODELOCK_LOOKUP 0x000001       /* dentry, mode, owner, group */
513 #define MDS_INODELOCK_UPDATE 0x000002       /* size, links, timestamps */
514 //#define MDS_INODELOCK_MAXSHIFT 1
515 //#define MDS_INODELOCK_FULL ((1<<(MDS_INODELOCK_MAXSHIFT+1))-1)
516
517 struct ll_fid {
518         __u64 id;
519         __u32 generation;
520         __u32 f_type;
521         __u32 mds;
522         __u32 padding;
523 };
524
525 struct mea_old {
526         __u32 mea_count;
527         __u32 mea_master;
528         struct ll_fid mea_fids[0];
529 };
530
531 #define MEA_MAGIC_LAST_CHAR      0xb2221ca1
532 #define MEA_MAGIC_ALL_CHARS      0xb222a11c
533
534 struct mea {
535         __u32 mea_magic;
536         __u32 mea_count;
537         __u32 mea_master;
538         struct ll_fid mea_fids[0];
539 };
540
541 extern void lustre_swab_ll_fid (struct ll_fid *fid);
542
543 #define MDS_STATUS_CONN 1
544 #define MDS_STATUS_LOV 2
545
546 struct mds_status_req {
547         __u32  flags;
548         __u32  repbuf;
549 };
550
551 extern void lustre_swab_mds_status_req (struct mds_status_req *r);
552
553 #define MDS_BFLAG_UNCOMMITTED_WRITES   0x1
554
555 struct mds_body {
556         struct ll_fid  fid1;
557         struct ll_fid  fid2;
558         struct lustre_handle handle;
559         __u64          size;   /* Offset, in the case of MDS_READPAGE */
560         __u64          blocks; /* XID, in the case of MDS_READPAGE */
561         __u64          io_epoch;
562         __u32          ino;   /* make this a __u64 */
563         __u32          valid;
564         __u32          fsuid;
565         __u32          fsgid;
566         __u32          capability;
567         __u32          mode;
568         __u32          uid;
569         __u32          gid;
570         __u32          mtime;
571         __u32          ctime;
572         __u32          atime;
573         __u32          flags; /* from vfs for pin/unpin, MDS_BFLAG for close */
574         __u32          rdev;
575         __u32          nlink; /* #bytes to read in the case of MDS_READPAGE */
576         __u32          generation;
577         __u32          suppgid;
578         __u32          eadatasize;
579         __u32          mds;
580 };
581
582 extern void lustre_swab_mds_body (struct mds_body *b);
583
584 struct lustre_md {
585         struct mds_body *body;
586         struct lov_stripe_md *lsm;
587         struct mea *mea;
588 };
589
590 struct ll_uctxt {
591         __u32 gid1;
592         __u32 gid2;
593 };
594
595 struct mdc_op_data {
596         struct ll_fid fid1;
597         struct ll_fid fid2;
598         struct ll_uctxt ctxt;
599         __u64 mod_time;
600         const char *name;
601         int namelen;
602         __u32 create_mode;
603         struct mea *mea1;       /* mea of inode1 */
604         struct mea *mea2;       /* mea of inode2 */
605 };
606
607 #define MDS_MODE_DONT_LOCK      (1 << 30)
608 #define MDS_MODE_REPLAY         (1 << 31)
609
610 struct mds_rec_setattr {
611         __u32           sa_opcode;
612         __u32           sa_fsuid;
613         __u32           sa_fsgid;
614         __u32           sa_cap;
615         __u32           sa_suppgid;
616         __u32           sa_valid;
617         struct ll_fid   sa_fid;
618         __u32           sa_mode;
619         __u32           sa_uid;
620         __u32           sa_gid;
621         __u32           sa_attr_flags;
622         __u64           sa_size;
623         __u64           sa_atime;
624         __u64           sa_mtime;
625         __u64           sa_ctime;
626 };
627
628 /* Remove this once we declare it in include/linux/fs.h (v21 kernel patch?) */
629 #ifndef ATTR_CTIME_SET
630 #define ATTR_CTIME_SET 0x2000
631 #endif
632
633 extern void lustre_swab_mds_rec_setattr (struct mds_rec_setattr *sa);
634
635 #ifndef FMODE_READ
636 #define FMODE_READ               00000001
637 #define FMODE_WRITE              00000002
638 #endif
639 #ifndef FMODE_EXEC
640 #define FMODE_EXEC               00000004
641 #endif
642 #define MDS_OPEN_CREAT           00000100
643 #define MDS_OPEN_EXCL            00000200
644 #define MDS_OPEN_TRUNC           00001000
645 #define MDS_OPEN_APPEND          00002000
646 #define MDS_OPEN_SYNC            00010000
647 #define MDS_OPEN_DIRECTORY       00200000
648
649 #define MDS_OPEN_DELAY_CREATE  0100000000 /* delay initial object create */
650 #define MDS_OPEN_HAS_EA      010000000000 /* specify object create pattern */
651 #define MDS_OPEN_HAS_OBJS    020000000000 /* Just set the EA the obj exist */
652
653 struct mds_rec_create {
654         __u32           cr_opcode;
655         __u32           cr_fsuid;
656         __u32           cr_fsgid;
657         __u32           cr_cap;
658         __u32           cr_flags; /* for use with open */
659         __u32           cr_mode;
660         struct ll_fid   cr_fid;
661         struct ll_fid   cr_replayfid;
662         __u64           cr_time;
663         __u64           cr_rdev;
664         __u32           cr_suppgid;
665         __u32           cr_packing;
666 };
667
668 extern void lustre_swab_mds_rec_create (struct mds_rec_create *cr);
669
670 struct mds_rec_link {
671         __u32           lk_opcode;
672         __u32           lk_fsuid;
673         __u32           lk_fsgid;
674         __u32           lk_cap;
675         __u32           lk_suppgid1;
676         __u32           lk_suppgid2;
677         struct ll_fid   lk_fid1;
678         struct ll_fid   lk_fid2;
679         __u64           lk_time;
680 };
681
682 extern void lustre_swab_mds_rec_link (struct mds_rec_link *lk);
683
684 struct mds_rec_unlink {
685         __u32           ul_opcode;
686         __u32           ul_fsuid;
687         __u32           ul_fsgid;
688         __u32           ul_cap;
689         __u32           ul_suppgid;
690         __u32           ul_mode;
691         struct ll_fid   ul_fid1;
692         struct ll_fid   ul_fid2;
693         __u64           ul_time;
694 };
695
696 extern void lustre_swab_mds_rec_unlink (struct mds_rec_unlink *ul);
697
698 struct mds_rec_rename {
699         __u32           rn_opcode;
700         __u32           rn_fsuid;
701         __u32           rn_fsgid;
702         __u32           rn_cap;
703         __u32           rn_suppgid1;
704         __u32           rn_suppgid2;
705         struct ll_fid   rn_fid1;
706         struct ll_fid   rn_fid2;
707         __u64           rn_time;
708 };
709
710 extern void lustre_swab_mds_rec_rename (struct mds_rec_rename *rn);
711
712 /*
713  *  LOV data structures
714  */
715
716 #define LOV_MAX_UUID_BUFFER_SIZE  8192
717 /* The size of the buffer the lov/mdc reserves for the
718  * array of UUIDs returned by the MDS.  With the current
719  * protocol, this will limit the max number of OSTs per LOV */
720
721 struct lov_desc {
722         __u32 ld_tgt_count;                /* how many OBD's */
723         __u32 ld_active_tgt_count;         /* how many active */
724         __u32 ld_default_stripe_count;     /* how many objects are used */
725         __u32 ld_pattern;                  /* PATTERN_RAID0, PATTERN_RAID1 */
726         __u64 ld_default_stripe_size;      /* in bytes */
727         __u64 ld_default_stripe_offset;    /* in bytes */
728         struct obd_uuid ld_uuid;
729 };
730
731 struct lmv_desc {
732         __u32 ld_tgt_count;                /* how many MDS's */
733         __u32 ld_active_tgt_count;         /* how many active */
734         struct obd_uuid ld_uuid;
735 };
736
737 extern void lustre_swab_lov_desc (struct lov_desc *ld);
738
739 /*
740  *   LDLM requests:
741  */
742 /* opcodes -- MUST be distinct from OST/MDS opcodes */
743 typedef enum {
744         LDLM_ENQUEUE     = 101,
745         LDLM_CONVERT     = 102,
746         LDLM_CANCEL      = 103,
747         LDLM_BL_CALLBACK = 104,
748         LDLM_CP_CALLBACK = 105,
749         LDLM_GL_CALLBACK = 106,
750         LDLM_LAST_OPC
751 } ldlm_cmd_t;
752 #define LDLM_FIRST_OPC LDLM_ENQUEUE
753
754 #define RES_NAME_SIZE 4
755 struct ldlm_res_id {
756         __u64 name[RES_NAME_SIZE];
757 };
758
759 extern void lustre_swab_ldlm_res_id (struct ldlm_res_id *id);
760
761 /* lock types */
762 typedef enum {
763         LCK_EX = 1,
764         LCK_PW = 2,
765         LCK_PR = 4,
766         LCK_CW = 8,
767         LCK_CR = 16,
768         LCK_NL = 32,
769         LCK_GROUP = 64
770 } ldlm_mode_t;
771
772 struct ldlm_extent {
773         __u64 start;
774         __u64 end;
775         __u64 gid;
776 };
777 struct ldlm_inodebits {
778         __u64 bits;
779 };
780
781 struct ldlm_flock {
782         __u64 start;
783         __u64 end;
784         __u64 pid;
785         __u64 blocking_pid;
786         __u64 blocking_export;
787 };
788
789 /* it's important that the fields of the ldlm_extent structure match
790  * the first fields of the ldlm_flock structure because there is only
791  * one ldlm_swab routine to process the ldlm_policy_data_t union. if
792  * this ever changes we will need to swab the union differently based
793  * on the resource type. */
794
795 typedef union {
796         struct ldlm_extent l_extent;
797         struct ldlm_flock  l_flock;
798         struct ldlm_inodebits l_inodebits;
799 } ldlm_policy_data_t;
800
801 extern void lustre_swab_ldlm_policy_data (ldlm_policy_data_t *d);
802
803 struct ldlm_intent {
804         __u64 opc;
805 };
806
807 extern void lustre_swab_ldlm_intent (struct ldlm_intent *i);
808
809 struct ldlm_resource_desc {
810         __u32 lr_type;
811         __u32 lr_padding;
812         struct ldlm_res_id lr_name;
813 };
814
815 extern void lustre_swab_ldlm_resource_desc (struct ldlm_resource_desc *r);
816
817 struct ldlm_lock_desc {
818         struct ldlm_resource_desc l_resource;
819         ldlm_mode_t l_req_mode;
820         ldlm_mode_t l_granted_mode;
821         ldlm_policy_data_t l_policy_data;
822 };
823
824 extern void lustre_swab_ldlm_lock_desc (struct ldlm_lock_desc *l);
825
826 struct ldlm_request {
827         __u32 lock_flags;
828         __u32 lock_padding;
829         struct ldlm_lock_desc lock_desc;
830         struct lustre_handle lock_handle1;
831         struct lustre_handle lock_handle2;
832 };
833
834 extern void lustre_swab_ldlm_request (struct ldlm_request *rq);
835
836 struct ldlm_reply {
837         __u32 lock_flags;
838         __u32 lock_padding;
839         struct ldlm_lock_desc lock_desc;
840         struct lustre_handle lock_handle;
841         __u64  lock_policy_res1;
842         __u64  lock_policy_res2;
843 };
844
845 extern void lustre_swab_ldlm_reply (struct ldlm_reply *r);
846
847 /*
848  * ptlbd, portal block device requests
849  */
850 typedef enum {
851         PTLBD_QUERY = 200,
852         PTLBD_READ = 201,
853         PTLBD_WRITE = 202,
854         PTLBD_FLUSH = 203,
855         PTLBD_CONNECT = 204,
856         PTLBD_DISCONNECT = 205,
857         PTLBD_LAST_OPC
858 } ptlbd_cmd_t;
859 #define PTLBD_FIRST_OPC PTLBD_QUERY
860
861 struct ptlbd_op {
862         __u16 op_cmd;
863         __u16 op_lun;
864         __u16 op_niob_cnt;
865         __u16 op__padding;
866         __u32 op_block_cnt;
867 };
868
869 extern void lustre_swab_ptlbd_op (struct ptlbd_op *op);
870
871 struct ptlbd_niob {
872         __u64 n_xid;
873         __u64 n_block_nr;
874         __u32 n_offset;
875         __u32 n_length;
876 };
877
878 extern void lustre_swab_ptlbd_niob (struct ptlbd_niob *n);
879
880 struct ptlbd_rsp {
881         __u16 r_status;
882         __u16 r_error_cnt;
883 };
884
885 extern void lustre_swab_ptlbd_rsp (struct ptlbd_rsp *r);
886
887 #define CLONE_INFO_MAGIC 0x0218
888 struct clonefs_info {
889         int clone_magic;
890         int clone_index;
891         int clone_flags;
892 };
893 extern void lustre_swab_clonefs_info(struct clonefs_info *clone);
894 /*
895  * Opcodes for management/monitoring node.
896  */
897 typedef enum {
898         MGMT_CONNECT = 250,
899         MGMT_DISCONNECT,
900         MGMT_EXCEPTION,         /* node died, etc. */
901         MGMT_LAST_OPC
902 } mgmt_cmd_t;
903 #define MGMT_FIRST_OPC MGMT_CONNECT
904
905 /*
906  * Opcodes for multiple servers.
907  */
908
909 typedef enum {
910         OBD_PING = 400,
911         OBD_LOG_CANCEL,
912         OBD_LAST_OPC
913 } obd_cmd_t;
914 #define OBD_FIRST_OPC OBD_PING
915
916 /* catalog of log objects */
917
918 /* Identifier for a single log object */
919 struct llog_logid {
920         __u64                   lgl_oid;
921         __u64                   lgl_ogr;
922         __u32                   lgl_ogen;
923 } __attribute__((packed));
924
925 /* Records written to the CATALOGS list */
926 #define CATLIST "CATALOGS"
927 struct llog_catid {
928         struct llog_logid       lci_logid;
929         __u32                   lci_padding[3];
930 } __attribute__((packed));
931
932 /* Log data record types - there is no specific reason that these need to
933  * be related to the RPC opcodes, but no reason not to (may be handy later?)
934  */
935 typedef enum {
936         OST_SZ_REC       = 0x10600000 | (OST_SAN_WRITE << 8),
937         OST_RAID1_REC    = 0x10600000 | ((OST_SAN_WRITE + 1) << 8),
938         MDS_UNLINK_REC   = 0x10610000 | (MDS_REINT << 8) | REINT_UNLINK,
939         OBD_CFG_REC      = 0x10620000,
940         PTL_CFG_REC      = 0x10630000,
941         LLOG_GEN_REC     = 0x10640000,
942         LLOG_HDR_MAGIC   = 0x10645539,
943         LLOG_LOGID_MAGIC = 0x1064553b,
944         SMFS_UPDATE_REC  = 0x10650000,
945         CACHE_LRU_REC    = 0x10660000,
946 } llog_op_type;
947
948 /* Log record header - stored in little endian order.
949  * Each record must start with this struct, end with a llog_rec_tail,
950  * and be a multiple of 256 bits in size.
951  */
952 struct llog_rec_hdr {
953         __u32                   lrh_len;
954         __u32                   lrh_index;
955         __u32                   lrh_type;
956         __u32                   padding;
957 };
958
959 struct llog_rec_tail {
960         __u32 lrt_len;
961         __u32 lrt_index;
962 };
963
964 struct llog_logid_rec {
965         struct llog_rec_hdr     lid_hdr;
966         struct llog_logid       lid_id;
967         __u32                   padding[5];
968         struct llog_rec_tail    lid_tail;
969 } __attribute__((packed));
970
971 struct llog_create_rec {
972         struct llog_rec_hdr     lcr_hdr;
973         struct ll_fid           lcr_fid;
974         obd_id                  lcr_oid;
975         obd_count               lcr_ogen;
976         __u32                   padding;
977         struct llog_rec_tail    lcr_tail;
978 } __attribute__((packed));
979
980 struct llog_orphan_rec {
981         struct llog_rec_hdr     lor_hdr;
982         obd_id                  lor_oid;
983         obd_count               lor_ogen;
984         __u32                   padding;
985         struct llog_rec_tail    lor_tail;
986 } __attribute__((packed));
987
988 struct llog_unlink_rec {
989         struct llog_rec_hdr     lur_hdr;
990         obd_id                  lur_oid;
991         obd_count               lur_ogen;
992         __u32                   padding;
993         struct llog_rec_tail    lur_tail;
994 } __attribute__((packed));
995
996 struct llog_size_change_rec {
997         struct llog_rec_hdr     lsc_hdr;
998         struct ll_fid           lsc_fid;
999         __u32                   lsc_io_epoch;
1000         __u32                   padding;
1001         struct llog_rec_tail    lsc_tail;
1002 } __attribute__((packed));
1003
1004 struct llog_gen {
1005         __u64 mnt_cnt;
1006         __u64 conn_cnt;
1007 };
1008
1009 struct llog_gen_rec {
1010         struct llog_rec_hdr     lgr_hdr;
1011         struct llog_gen         lgr_gen;
1012         struct llog_rec_tail    lgr_tail;
1013 } __attribute__((packed));
1014
1015 struct llog_lru_rec {
1016         struct llog_rec_hdr     llr_hdr;
1017         struct ll_fid           llr_cfid;
1018         struct ll_fid           llr_pfid;
1019         struct llog_rec_tail    llr_tail;
1020 } __attribute__((packed));
1021
1022 /* On-disk header structure of each log object, stored in little endian order */
1023 #define LLOG_CHUNK_SIZE         8192
1024 #define LLOG_HEADER_SIZE        (96)
1025 #define LLOG_BITMAP_BYTES       (LLOG_CHUNK_SIZE - LLOG_HEADER_SIZE)
1026
1027 #define LLOG_MIN_REC_SIZE       (24) /* round(llog_rec_hdr + llog_rec_tail) */
1028
1029 /* flags for the logs */
1030 #define LLOG_F_ZAP_WHEN_EMPTY   0x1
1031 #define LLOG_F_IS_CAT           0x2
1032 #define LLOG_F_IS_PLAIN         0x4
1033
1034 struct llog_log_hdr {
1035         struct llog_rec_hdr     llh_hdr;
1036         __u64                   llh_timestamp;
1037         __u32                   llh_count;
1038         __u32                   llh_bitmap_offset;
1039         __u32                   llh_size;
1040         __u32                   llh_flags;
1041         __u32                   llh_cat_idx;
1042         /* for a catalog the first plain slot is next to it */
1043         struct obd_uuid         llh_tgtuuid;
1044         __u32                 llh_reserved[LLOG_HEADER_SIZE/sizeof(__u32) - 23];
1045         __u32                   llh_bitmap[LLOG_BITMAP_BYTES/sizeof(__u32)];
1046         struct llog_rec_tail    llh_tail;
1047 } __attribute__((packed));
1048
1049 #define LLOG_BITMAP_SIZE(llh)  ((llh->llh_hdr.lrh_len -         \
1050                                  llh->llh_bitmap_offset -       \
1051                                  sizeof(llh->llh_tail)) * 8)
1052
1053 /* log cookies are used to reference a specific log file and a record therein */
1054 struct llog_cookie {
1055         struct llog_logid       lgc_lgl;
1056         __u32                   lgc_subsys;
1057         __u32                   lgc_index;
1058         __u32                   lgc_flags;
1059 } __attribute__((packed));
1060
1061 /* llog protocol */
1062 enum llogd_rpc_ops {
1063         LLOG_ORIGIN_HANDLE_OPEN         = 501,
1064         LLOG_ORIGIN_HANDLE_NEXT_BLOCK   = 502,
1065         LLOG_ORIGIN_HANDLE_READ_HEADER  = 503,
1066         LLOG_ORIGIN_HANDLE_WRITE_REC    = 504,
1067         LLOG_ORIGIN_HANDLE_CLOSE        = 505,
1068         LLOG_ORIGIN_CONNECT             = 506,
1069         LLOG_CATINFO                    = 507,  /* for lfs catinfo */
1070         LLOG_ORIGIN_HANDLE_PREV_BLOCK   = 508,
1071 };
1072
1073 struct llogd_body {
1074         struct llog_logid  lgd_logid;
1075         __u32 lgd_ctxt_idx;
1076         __u32 lgd_llh_flags;
1077         __u32 lgd_index;
1078         __u32 lgd_saved_index;
1079         __u32 lgd_len;
1080         __u64 lgd_cur_offset;
1081 } __attribute__((packed));
1082
1083 struct llogd_conn_body {
1084         struct llog_gen         lgdc_gen;
1085         struct llog_logid       lgdc_logid;
1086         __u32                   lgdc_ctxt_idx;
1087 } __attribute__((packed));
1088
1089 extern void lustre_swab_llogd_body (struct llogd_body *d);
1090 extern void lustre_swab_llog_hdr (struct llog_log_hdr *h);
1091 extern void lustre_swab_llogd_conn_body (struct llogd_conn_body *d);
1092
1093 static inline struct ll_fid *obdo_fid(struct obdo *oa)
1094 {
1095         return (struct ll_fid *)(oa->o_inline + sizeof(struct lustre_handle) +
1096                                  sizeof(struct llog_cookie));
1097 }
1098
1099 #endif