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