Whamcloud - gitweb
184572f12ade1ed96603827cc46435c480d8902d
[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 <libcfs/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_VERSION_MASK 0xffff0000
133 #define LUSTRE_OBD_VERSION  0x00010000
134 #define LUSTRE_MDS_VERSION  0x00020000
135 #define LUSTRE_OST_VERSION  0x00030000
136 #define LUSTRE_DLM_VERSION  0x00040000
137 #define LUSTRE_LOG_VERSION  0x00050000
138 #define LUSTRE_PBD_VERSION  0x00060000
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_flags;
260 typedef uint64_t        obd_valid;
261 typedef uint32_t        obd_count;
262
263 #define OBD_FL_INLINEDATA    (0x00000001)
264 #define OBD_FL_OBDMDEXISTS   (0x00000002)
265 #define OBD_FL_DELORPHAN     (0x00000004) /* if set in o_flags delete orphans */
266 #define OBD_FL_NORPC         (0x00000008) // if set in o_flags set in OSC not OST
267 #define OBD_FL_IDONLY        (0x00000010) // if set in o_flags only adjust obj id
268 #define OBD_FL_RECREATE_OBJS (0x00000020) // recreate missing obj
269 #define OBD_FL_DEBUG_CHECK   (0x00000040) /* echo client/server debug check */
270
271 /* this should be sizeof(struct lustre_handle) + sizeof(struct llog_cookie) +
272  * sizeof(struct lustre_id). */
273 #define OBD_INLINESZ (80)
274
275 /* Note: 64-bit types are 64-bit aligned in structure */
276 struct obdo {
277         obd_id                  o_id;
278         obd_gr                  o_gr;
279         obd_size                o_size;
280         obd_time                o_mtime;
281         obd_time                o_atime;
282         obd_time                o_ctime;
283         obd_blocks              o_blocks;       /* brw: cli sent cached bytes */
284         obd_size                o_grant;
285         obd_blksize             o_blksize;      /* optimal IO blocksize */
286         obd_mode                o_mode;         /* brw: cli sent cache remain */
287         obd_uid                 o_uid;
288         obd_gid                 o_gid;
289         obd_flags               o_flags;
290         obd_count               o_nlink;        /* brw: checksum */
291         obd_count               o_generation;
292         obd_valid               o_valid;        /* hot fields in this obdo */
293         obd_count               o_misc;         /* brw: o_dropped */
294         __u32                   o_easize;       /* epoch in ost writes */
295         __u32                   o_mds;
296         __u64                   o_fid;
297         __u32                   o_padding;
298         char                    o_inline[OBD_INLINESZ]; /* fid in ost writes */
299 };
300
301 #define o_dirty   o_blocks
302 #define o_undirty o_mode
303 #define o_dropped o_misc
304 #define o_cksum   o_nlink
305
306 extern void lustre_swab_obdo (struct obdo *o);
307
308 #define LOV_MAGIC_V1      0x0BD10BD0
309 #define LOV_MAGIC         LOV_MAGIC_V1
310
311 #define LOV_PATTERN_RAID0 0x001   /* stripes are used round-robin */
312 #define LOV_PATTERN_RAID1 0x002   /* stripes are mirrors of each other */
313 #define LOV_PATTERN_FIRST 0x100   /* first stripe is not in round-robin */
314 #define LOV_PATTERN_CMOBD 0x200  
315  
316 #define lov_ost_data lov_ost_data_v1
317 struct lov_ost_data_v1 {          /* per-stripe data structure (little-endian)*/
318         __u64 l_object_id;        /* OST object ID */
319         __u64 l_object_gr;        /* OST object group (creating MDS number) */
320         __u32 l_ost_gen;          /* generation of this l_ost_idx */
321         __u32 l_ost_idx;          /* OST index in LOV (lov_tgt_desc->tgts) */
322 };
323
324 #define lov_mds_md lov_mds_md_v1
325 struct lov_mds_md_v1 {            /* LOV EA mds/wire data (little-endian) */
326         __u32 lmm_magic;          /* magic number = LOV_MAGIC_V1 */
327         __u32 lmm_pattern;        /* LOV_PATTERN_RAID0, LOV_PATTERN_RAID1 */
328         __u64 lmm_object_id;      /* LOV object ID */
329         __u64 lmm_object_gr;      /* LOV object group */
330         __u32 lmm_stripe_size;    /* size of stripe in bytes */
331         __u32 lmm_stripe_count;   /* num stripes in use for this object */
332         struct lov_ost_data_v1 lmm_objects[0]; /* per-stripe data */
333 };
334
335 #define LOV_MAGIC_V0      0x0BD00BD0
336
337 struct lov_ost_data_v0 {          /* per-stripe data structure (little-endian)*/
338         __u64 l_object_id;        /* OST object ID */
339 };
340
341 struct lov_mds_md_v0 {            /* LOV EA mds/wire data (little-endian) */
342         __u32 lmm_magic;          /* magic number = LOV_MAGIC_V0 */
343         __u64 lmm_object_id;      /* LOV object ID */
344         __u32 lmm_stripe_size;    /* size of the stripe in bytes (not RAID1) */
345         __u32 lmm_stripe_offset;  /* starting stripe offset in lmm_objects */
346         __u16 lmm_stripe_count;   /* number of stipes in use for this object */
347         __u16 lmm_ost_count;      /* how many OST idx are in this LOV md */
348         struct lov_ost_data_v0 lmm_objects[0];
349 } __attribute__((packed));
350
351 #define OBD_MD_FLALL    (0xffffffffffffffffLL)
352 #define OBD_MD_FLID     (0x0000000000000001LL)    /* object ID */
353 #define OBD_MD_FLATIME  (0x0000000000000002LL)    /* access time */
354 #define OBD_MD_FLMTIME  (0x0000000000000004LL)    /* data modification time */
355 #define OBD_MD_FLCTIME  (0x0000000000000008LL)    /* change time */
356 #define OBD_MD_FLSIZE   (0x0000000000000010LL)    /* size */
357 #define OBD_MD_FLBLOCKS (0x0000000000000020LL)    /* allocated blocks count */
358 #define OBD_MD_FLBLKSZ  (0x0000000000000040LL)    /* block size */
359 #define OBD_MD_FLMODE   (0x0000000000000080LL)    /* access bits (mode & ~S_IFMT) */
360 #define OBD_MD_FLTYPE   (0x0000000000000100LL)    /* object type (mode & S_IFMT) */
361 #define OBD_MD_FLUID    (0x0000000000000200LL)    /* user ID */
362 #define OBD_MD_FLGID    (0x0000000000000400LL)    /* group ID */
363 #define OBD_MD_FLFLAGS  (0x0000000000000800LL)    /* flags word */
364 #define OBD_MD_FLEA     (0x0000000000001000LL)    /* extended attributes */
365 #define OBD_MD_FLNLINK  (0x0000000000002000LL)    /* link count */
366 #define OBD_MD_FLGENER  (0x0000000000004000LL)    /* generation number */
367 #define OBD_MD_FLINLINE (0x0000000000008000LL)    /* inline data */
368 #define OBD_MD_FLRDEV   (0x0000000000010000LL)    /* device number */
369 #define OBD_MD_FLEASIZE (0x0000000000020000LL)    /* extended attribute data */
370 #define OBD_MD_LINKNAME (0x0000000000040000LL)    /* symbolic link target */
371 #define OBD_MD_FLHANDLE (0x0000000000080000LL)    /* file handle */
372 #define OBD_MD_FLCKSUM  (0x0000000000100000LL)    /* bulk data checksum */
373 #define OBD_MD_FLQOS    (0x0000000000200000LL)    /* quality of service stats */
374 #define OBD_MD_FLOSCOPQ (0x0000000000400000LL)    /* osc opaque data */
375 #define OBD_MD_FLCOOKIE (0x0000000000800000LL)    /* log cancellation cookie */
376 #define OBD_MD_FLGROUP  (0x0000000001000000LL)    /* group */
377 #define OBD_MD_FLIFID   (0x0000000002000000LL)    /* ->ost write inline fid */
378 #define OBD_MD_FLEPOCH  (0x0000000004000000LL)    /* ->ost write easize is epoch */
379 #define OBD_MD_FLGRANT  (0x0000000008000000LL)    /* ost preallocation space grant */
380 #define OBD_MD_MDS      (0x0000000010000000LL)    /* where an inode lives on */
381 #define OBD_MD_FLDIREA  (0x0000000020000000LL)    /* dir's extended attribute data */
382 #define OBD_MD_REINT    (0x0000000040000000LL)    /* reintegrate oa */
383 #define OBD_MD_FID      (0x0000000080000000LL)    /* lustre_id data */
384 #define OBD_MD_FLEALIST (0x0000000100000000LL)    /* list extended attributes */
385 #define OBD_MD_FLACL_ACCESS (0x0000000200000000LL) /*access acl*/
386
387 #define OBD_MD_FLNOTOBD (~(OBD_MD_FLBLOCKS | OBD_MD_LINKNAME |          \
388                            OBD_MD_FLEASIZE | OBD_MD_FLHANDLE |          \
389                            OBD_MD_FLCKSUM | OBD_MD_FLQOS |              \
390                            OBD_MD_FLOSCOPQ | OBD_MD_FLCOOKIE |          \
391                            OBD_MD_FLEA | OBD_MD_FLEALIST |              \
392                            OBD_MD_FLACL_ACCESS | OBD_MD_MDS))
393
394 static inline struct lustre_handle *obdo_handle(struct obdo *oa)
395 {
396         return (struct lustre_handle *)oa->o_inline;
397 }
398
399 static inline struct llog_cookie *obdo_logcookie(struct obdo *oa)
400 {
401         return (struct llog_cookie *)(oa->o_inline +
402                                       sizeof(struct lustre_handle));
403 }
404
405 /* don't forget obdo_fid which is way down at the bottom so it can come after
406  * the definition of llog_cookie */
407 struct obd_statfs {
408         __u64           os_type;
409         __u64           os_blocks;
410         __u64           os_bfree;
411         __u64           os_bavail;
412         __u64           os_files;
413         __u64           os_ffree;
414         __u8            os_fsid[40];
415         __u32           os_bsize;
416         __u32           os_namelen;
417         __u64           os_maxbytes;
418         __u32           os_spare[10];
419 };
420
421 extern void lustre_swab_obd_statfs (struct obd_statfs *os);
422
423 /* ost_body.data values for OST_BRW */
424
425 #define OBD_BRW_READ       0x01
426 #define OBD_BRW_WRITE      0x02
427 #define OBD_BRW_RWMASK     (OBD_BRW_READ | OBD_BRW_WRITE)
428 #define OBD_BRW_SYNC       0x08
429 #define OBD_BRW_CHECK      0x10
430 #define OBD_BRW_FROM_GRANT 0x20 /* the osc manages this under llite */
431 #define OBD_BRW_GRANTED    0x40 /* the ost manages this */
432
433 #define OBD_OBJECT_EOF 0xffffffffffffffffULL
434
435 struct obd_ioobj {
436         obd_id               ioo_id;
437         obd_gr               ioo_gr;
438         __u32                ioo_type;
439         __u32                ioo_bufcnt;
440 };
441
442 extern void lustre_swab_obd_ioobj (struct obd_ioobj *ioo);
443
444 /* multiple of 8 bytes => can array */
445 struct niobuf_remote {
446         __u64 offset;
447         __u32 len;
448         __u32 flags;
449 };
450
451 extern void lustre_swab_niobuf_remote (struct niobuf_remote *nbr);
452
453 /* request structure for OST's */
454
455 #define OST_REQ_HAS_OA1  0x1
456
457 struct ost_body {
458         struct  obdo oa;
459 };
460
461 extern void lustre_swab_ost_body (struct ost_body *b);
462 extern void lustre_swab_ost_last_id(obd_id *id);
463 extern void lustre_swab_generic_32s(__u32 *val);
464
465 /* lock value block communicated between the filter and llite */
466
467 struct ost_lvb {
468         __u64 lvb_size;
469         __u64 lvb_mtime;
470         __u64 lvb_atime;
471         __u64 lvb_ctime;
472         __u64 lvb_blocks;
473 };
474
475 extern void lustre_swab_ost_lvb(struct ost_lvb *);
476
477 /*
478  *   MDS REQ RECORDS
479  */
480
481 /* offsets in the request */
482 #define MDS_REQ_SECDESC_OFF             0
483 #define MDS_REQ_REC_OFF                 1
484
485 #define MDS_REQ_INTENT_LOCKREQ_OFF      1
486 #define MDS_REQ_INTENT_IT_OFF           2
487 #define MDS_REQ_INTENT_REC_OFF          3
488
489 /* maximum supplementary groups */
490 #define LUSTRE_MAX_GROUPS               128
491
492 /* 
493  * security descriptor in mds request
494  */
495 struct mds_req_sec_desc {
496         __u32           rsd_uid;
497         __u32           rsd_gid;
498         __u32           rsd_fsuid;
499         __u32           rsd_fsgid;
500         __u32           rsd_cap;
501         __u32           rsd_ngroups;
502         __u32           rsd_groups[0];
503 };
504
505 struct ptlrpc_request;
506 struct mds_req_sec_desc *lustre_swab_mds_secdesc(struct ptlrpc_request *req,
507                                                  int offset);
508
509 /* opcodes */
510 typedef enum {
511         MDS_GETATTR      = 33,
512         MDS_GETATTR_LOCK = 34,
513         MDS_CLOSE        = 35,
514         MDS_REINT        = 36,
515         MDS_READPAGE     = 37,
516         MDS_CONNECT      = 38,
517         MDS_DISCONNECT   = 39,
518         MDS_GETSTATUS    = 40,
519         MDS_STATFS       = 41,
520         MDS_PIN          = 42,
521         MDS_UNPIN        = 43,
522         MDS_SYNC         = 44,
523         MDS_DONE_WRITING = 45,
524         MDS_LAST_OPC
525 } mds_cmd_t;
526
527 #define MDS_FIRST_OPC    MDS_GETATTR
528
529 /*
530  * Do not exceed 63
531  */
532
533 #define REINT_SETATTR      1
534 #define REINT_CREATE       2
535 #define REINT_LINK         3
536 #define REINT_UNLINK       4
537 #define REINT_RENAME       5
538 #define REINT_OPEN         6
539 #define REINT_CLOSE        7
540 #define REINT_WRITE        8
541 #define REINT_MAX          8
542
543 /* the disposition of the intent outlines what was executed */
544 #define DISP_IT_EXECD     (1 << 0)
545 #define DISP_LOOKUP_EXECD (1 << 1)
546 #define DISP_LOOKUP_NEG   (1 << 2)
547 #define DISP_LOOKUP_POS   (1 << 3)
548 #define DISP_OPEN_CREATE  (1 << 4)
549 #define DISP_OPEN_OPEN    (1 << 5)
550 #define DISP_ENQ_COMPLETE (1 << 6)
551
552 /* INODE LOCK PARTS */
553 #define MDS_INODELOCK_LOOKUP 0x000001  /* dentry, mode, owner, group */
554 #define MDS_INODELOCK_UPDATE 0x000002  /* size, links, timestamps */
555
556 /* lustre store cookie */
557 struct lustre_stc {
558         union {
559                 struct {
560                     __u64 l3s_ino;     /* inode number on local MDS */
561                     __u32 l3s_gen;     /* inode generation */
562                     __u32 l3s_type;    /* inode type */
563                 } e3s;
564         } u;
565 };
566
567 /* lustre file id */
568 struct lustre_fid {
569         __u64 lf_id;                   /* fid counter maintained on per 
570                                           group basis */
571         __u64 lf_group;                /* sequence group num */
572         __u32 lf_version;              /* what snapfs version of inode */
573         __u32 lf_padding;
574 };
575
576 struct lustre_id {
577         struct lustre_stc li_stc;      /* store cookie */
578         struct lustre_fid li_fid;      /* fid cookie */
579 };
580
581 struct mea_old {
582         __u32 mea_count;
583         __u32 mea_master;
584         struct lustre_id mea_ids[0];
585 };
586
587 #define MEA_MAGIC_LAST_CHAR      0xb2221ca1
588 #define MEA_MAGIC_ALL_CHARS      0xb222a11c
589
590 struct mea {
591         __u32 mea_magic;
592         __u32 mea_count;
593         __u32 mea_master;
594         struct lustre_id mea_ids[0];
595 };
596
597 #define MDS_STATUS_CONN 1
598 #define MDS_STATUS_LOV 2
599
600 struct mds_status_req {
601         __u32  flags;
602         __u32  repbuf;
603 };
604
605 extern void lustre_swab_lustre_id(struct lustre_id *id);
606 extern void lustre_swab_lustre_stc(struct lustre_stc *stc);
607 extern void lustre_swab_lustre_fid(struct lustre_fid *fid);
608 extern void lustre_swab_mds_status_req (struct mds_status_req *r);
609
610 #define MDS_BFLAG_UNCOMMITTED_WRITES   0x1
611
612 struct mds_body {
613         struct lustre_id id1;
614         struct lustre_id id2;
615         struct lustre_handle handle;
616         __u64          size;   /* Offset, in the case of MDS_READPAGE */
617         __u64          blocks; /* XID, in the case of MDS_READPAGE */
618         __u64          io_epoch;
619         __u64          valid;
620         __u32          mode;
621         __u32          uid;
622         __u32          gid;
623         __u32          mtime;
624         __u32          ctime;
625         __u32          atime;
626         __u32          flags;  /* from vfs for pin/unpin, MDS_BFLAG for close */
627         __u32          rdev;
628         __u32          nlink;  /* #bytes to read in the case of MDS_READPAGE */
629         __u32          eadatasize;
630 };
631
632 extern void lustre_swab_mds_body (struct mds_body *b);
633
634 struct lustre_md {
635         struct mds_body *body;
636         struct lov_stripe_md *lsm;
637         struct mea *mea;
638         struct posix_acl *acl_access;
639 };
640
641 struct mdc_op_data {
642         struct lustre_id id1;
643         struct lustre_id id2;
644         __u64            mod_time;
645         const char      *name;
646         int              namelen;
647         __u32            create_mode;
648         struct mea      *mea1;       /* mea of inode1 */
649         struct mea      *mea2;       /* mea of inode2 */
650         __u64            valid;
651 };
652
653 #define MDS_MODE_DONT_LOCK      (1 << 30)
654 #define MDS_MODE_REPLAY         (1 << 31)
655
656 struct mds_rec_setattr {
657         __u32            sa_opcode;
658         __u32            sa_valid;
659         struct lustre_id sa_id;
660         __u32            sa_mode;
661         __u32            sa_uid;
662         __u32            sa_gid;
663         __u32            sa_attr_flags;
664         __u64            sa_size;
665         __u64            sa_atime;
666         __u64            sa_mtime;
667         __u64            sa_ctime;
668 };
669
670 /* XXX Following ATTR_XXX should go to vfs patch...  */
671 #ifdef ATTR_CTIME_SET
672 #error "ATTR_CTIME_SET has been defined somewhere else"
673 #endif
674 #ifdef ATTR_EA
675 #error "ATTR_EA has been defined somewhere else"
676 #endif
677 #ifdef ATTR_EA_RM
678 #error "ATTR_EA_RM has been defined somewhere else"
679 #endif
680
681 #define ATTR_CTIME_SET  0x00002000
682 #define ATTR_EA         0x00040000
683 #define ATTR_EA_RM      0x00080000
684
685 extern void lustre_swab_mds_rec_setattr (struct mds_rec_setattr *sa);
686
687 #ifndef FMODE_READ
688 #define FMODE_READ               00000001
689 #define FMODE_WRITE              00000002
690 #endif
691 #ifndef FMODE_EXEC
692 #define FMODE_EXEC               00000004
693 #endif
694 #define MDS_OPEN_CREAT           00000100
695 #define MDS_OPEN_EXCL            00000200
696 #define MDS_OPEN_TRUNC           00001000
697 #define MDS_OPEN_APPEND          00002000
698 #define MDS_OPEN_SYNC            00010000
699 #define MDS_OPEN_DIRECTORY       00200000
700
701 #define MDS_OPEN_DELAY_CREATE    0100000000   /* delay initial object create */
702 #define MDS_OPEN_HAS_EA          010000000000 /* specify object create pattern */
703 #define MDS_OPEN_HAS_OBJS        020000000000 /* Just set the EA the obj exist */
704
705 struct mds_rec_create {
706         __u32            cr_opcode;
707         __u32            cr_flags; /* for use with open */
708         __u32            cr_mode;
709         __u32            cr_padding;
710         struct lustre_id cr_id;
711         struct lustre_id cr_replayid;
712         __u64            cr_time;
713         __u64            cr_rdev;
714 };
715
716 extern void lustre_swab_mds_rec_create (struct mds_rec_create *cr);
717
718 struct mds_rec_link {
719         __u32            lk_opcode;
720         __u32            lk_padding;
721         struct lustre_id lk_id1;
722         struct lustre_id lk_id2;
723         __u64            lk_time;
724 };
725
726 extern void lustre_swab_mds_rec_link (struct mds_rec_link *lk);
727
728 struct mds_rec_unlink {
729         __u32            ul_opcode;
730         __u32            ul_mode;
731         struct lustre_id ul_id1;
732         struct lustre_id ul_id2;
733         __u64            ul_time;
734 };
735
736 extern void lustre_swab_mds_rec_unlink (struct mds_rec_unlink *ul);
737
738 struct mds_rec_rename {
739         __u32            rn_opcode;
740         __u32            rn_padding;
741         struct lustre_id rn_id1;
742         struct lustre_id rn_id2;
743         __u64            rn_time;
744 };
745
746 extern void lustre_swab_mds_rec_rename (struct mds_rec_rename *rn);
747
748 /*
749  *  LOV data structures
750  */
751
752 #define LOV_MAX_UUID_BUFFER_SIZE  8192
753 /* The size of the buffer the lov/mdc reserves for the
754  * array of UUIDs returned by the MDS.  With the current
755  * protocol, this will limit the max number of OSTs per LOV */
756
757 struct lov_desc {
758         __u32 ld_tgt_count;                /* how many OBD's */
759         __u32 ld_active_tgt_count;         /* how many active */
760         __u32 ld_default_stripe_count;     /* how many objects are used */
761         __u32 ld_pattern;                  /* PATTERN_RAID0, PATTERN_RAID1 */
762         __u64 ld_default_stripe_size;      /* in bytes */
763         __u64 ld_default_stripe_offset;    /* in bytes */
764         struct obd_uuid ld_uuid;
765 };
766
767 struct lmv_desc {
768         __u32 ld_tgt_count;                /* how many MDS's */
769         __u32 ld_active_tgt_count;         /* how many active */
770         struct obd_uuid ld_uuid;
771 };
772
773 extern void lustre_swab_lov_desc (struct lov_desc *ld);
774
775 /*
776  *   LDLM requests:
777  */
778 /* opcodes -- MUST be distinct from OST/MDS opcodes */
779 typedef enum {
780         LDLM_ENQUEUE     = 101,
781         LDLM_CONVERT     = 102,
782         LDLM_CANCEL      = 103,
783         LDLM_BL_CALLBACK = 104,
784         LDLM_CP_CALLBACK = 105,
785         LDLM_GL_CALLBACK = 106,
786         LDLM_LAST_OPC
787 } ldlm_cmd_t;
788 #define LDLM_FIRST_OPC LDLM_ENQUEUE
789
790 #define RES_NAME_SIZE 4
791 struct ldlm_res_id {
792         __u64 name[RES_NAME_SIZE];
793 };
794
795 extern void lustre_swab_ldlm_res_id (struct ldlm_res_id *id);
796
797 /* lock types */
798 typedef enum {
799         LCK_EX = 1,
800         LCK_PW = 2,
801         LCK_PR = 4,
802         LCK_CW = 8,
803         LCK_CR = 16,
804         LCK_NL = 32,
805         LCK_GROUP = 64
806 } ldlm_mode_t;
807
808 struct ldlm_extent {
809         __u64 start;
810         __u64 end;
811         __u64 gid;
812 };
813 struct ldlm_inodebits {
814         __u64 bits;
815 };
816
817 struct ldlm_flock {
818         __u64 start;
819         __u64 end;
820         __u64 pid;
821         __u64 blocking_pid;
822         __u64 blocking_export;
823 };
824
825 /* it's important that the fields of the ldlm_extent structure match
826  * the first fields of the ldlm_flock structure because there is only
827  * one ldlm_swab routine to process the ldlm_policy_data_t union. if
828  * this ever changes we will need to swab the union differently based
829  * on the resource type. */
830
831 typedef union {
832         struct ldlm_extent l_extent;
833         struct ldlm_flock  l_flock;
834         struct ldlm_inodebits l_inodebits;
835 } ldlm_policy_data_t;
836
837 extern void lustre_swab_ldlm_policy_data (ldlm_policy_data_t *d);
838
839 struct ldlm_intent {
840         __u64 opc;
841 };
842
843 extern void lustre_swab_ldlm_intent (struct ldlm_intent *i);
844
845 struct ldlm_resource_desc {
846         __u32 lr_type;
847         __u32 lr_padding;
848         struct ldlm_res_id lr_name;
849 };
850
851 extern void lustre_swab_ldlm_resource_desc (struct ldlm_resource_desc *r);
852
853 struct ldlm_lock_desc {
854         struct ldlm_resource_desc l_resource;
855         ldlm_mode_t l_req_mode;
856         ldlm_mode_t l_granted_mode;
857         ldlm_policy_data_t l_policy_data;
858 };
859
860 extern void lustre_swab_ldlm_lock_desc (struct ldlm_lock_desc *l);
861
862 struct ldlm_request {
863         __u32 lock_flags;
864         __u32 lock_padding;
865         struct ldlm_lock_desc lock_desc;
866         struct lustre_handle lock_handle1;
867         struct lustre_handle lock_handle2;
868 };
869
870 extern void lustre_swab_ldlm_request (struct ldlm_request *rq);
871
872 struct ldlm_reply {
873         __u32 lock_flags;
874         __u32 lock_padding;
875         struct ldlm_lock_desc lock_desc;
876         struct lustre_handle lock_handle;
877         __u64  lock_policy_res1;
878         __u64  lock_policy_res2;
879 };
880
881 extern void lustre_swab_ldlm_reply (struct ldlm_reply *r);
882
883 /*
884  * ptlbd, portal block device requests
885  */
886 typedef enum {
887         PTLBD_QUERY      = 200,
888         PTLBD_READ       = 201,
889         PTLBD_WRITE      = 202,
890         PTLBD_FLUSH      = 203,
891         PTLBD_CONNECT    = 204,
892         PTLBD_DISCONNECT = 205,
893         PTLBD_LAST_OPC
894 } ptlbd_cmd_t;
895 #define PTLBD_FIRST_OPC PTLBD_QUERY
896
897 struct ptlbd_op {
898         __u16 op_cmd;
899         __u16 op_lun;
900         __u16 op_niob_cnt;
901         __u16 op__padding;
902         __u32 op_block_cnt;
903 };
904
905 extern void lustre_swab_ptlbd_op (struct ptlbd_op *op);
906
907 struct ptlbd_niob {
908         __u64 n_xid;
909         __u64 n_block_nr;
910         __u32 n_offset;
911         __u32 n_length;
912 };
913
914 extern void lustre_swab_ptlbd_niob (struct ptlbd_niob *n);
915
916 struct ptlbd_rsp {
917         __u16 r_status;
918         __u16 r_error_cnt;
919 };
920
921 extern void lustre_swab_ptlbd_rsp (struct ptlbd_rsp *r);
922
923 /*
924  * Opcodes for management/monitoring node.
925  */
926 typedef enum {
927         MGMT_CONNECT = 250,
928         MGMT_DISCONNECT,
929         MGMT_EXCEPTION,         /* node died, etc. */
930         MGMT_LAST_OPC
931 } mgmt_cmd_t;
932 #define MGMT_FIRST_OPC MGMT_CONNECT
933
934 /*
935  * Opcodes for multiple servers.
936  */
937
938 typedef enum {
939         OBD_PING = 400,
940         OBD_LOG_CANCEL,
941         OBD_LAST_OPC
942 } obd_cmd_t;
943 #define OBD_FIRST_OPC OBD_PING
944
945 /* catalog of log objects */
946
947 /* Identifier for a single log object */
948 struct llog_logid {
949         __u64                   lgl_oid;
950         __u64                   lgl_ogr;
951         __u32                   lgl_ogen;
952 } __attribute__((packed));
953
954 /* Records written to the CATALOGS list */
955 #define CATLIST "CATALOGS"
956 struct llog_catid {
957         struct llog_logid       lci_logid;
958         __u32                   lci_padding[3];
959 } __attribute__((packed));
960
961 /* Log data record types - there is no specific reason that these need to
962  * be related to the RPC opcodes, but no reason not to (may be handy later?)
963  */
964 typedef enum {
965         OST_SZ_REC       = 0x10600000 | (OST_SAN_WRITE << 8),
966         OST_RAID1_REC    = 0x10600000 | ((OST_SAN_WRITE + 1) << 8),
967         MDS_UNLINK_REC   = 0x10610000 | (MDS_REINT << 8) | REINT_UNLINK,
968         OBD_CFG_REC      = 0x10620000,
969         PTL_CFG_REC      = 0x10630000,
970         LLOG_GEN_REC     = 0x10640000,
971         LLOG_HDR_MAGIC   = 0x10645539,
972         LLOG_LOGID_MAGIC = 0x1064553b,
973         SMFS_UPDATE_REC  = 0x10650000,
974         CACHE_LRU_REC    = 0x10660000,
975 } llog_op_type;
976
977 /* Log record header - stored in little endian order.
978  * Each record must start with this struct, end with a llog_rec_tail,
979  * and be a multiple of 256 bits in size.
980  */
981 struct llog_rec_hdr {
982         __u32                   lrh_len;
983         __u32                   lrh_index;
984         __u32                   lrh_type;
985         __u32                   padding;
986 };
987
988 struct llog_rec_tail {
989         __u32 lrt_len;
990         __u32 lrt_index;
991 };
992
993 struct llog_logid_rec {
994         struct llog_rec_hdr     lid_hdr;
995         struct llog_logid       lid_id;
996         __u32                   padding[5];
997         struct llog_rec_tail    lid_tail;
998 } __attribute__((packed));
999
1000 struct llog_create_rec {
1001         struct llog_rec_hdr     lcr_hdr;
1002         struct lustre_id        lcr_id;
1003         obd_id                  lcr_oid;
1004         obd_count               lcr_ogen;
1005         __u32                   padding;
1006         struct llog_rec_tail    lcr_tail;
1007 } __attribute__((packed));
1008
1009 struct llog_orphan_rec {
1010         struct llog_rec_hdr     lor_hdr;
1011         obd_id                  lor_oid;
1012         obd_count               lor_ogen;
1013         __u32                   padding;
1014         struct llog_rec_tail    lor_tail;
1015 } __attribute__((packed));
1016
1017 struct llog_unlink_rec {
1018         struct llog_rec_hdr     lur_hdr;
1019         obd_id                  lur_oid;
1020         obd_count               lur_ogen;
1021         __u32                   padding;
1022         struct llog_rec_tail    lur_tail;
1023 } __attribute__((packed));
1024
1025 struct llog_size_change_rec {
1026         struct llog_rec_hdr     lsc_hdr;
1027         struct lustre_id        lsc_id;
1028         __u32                   lsc_io_epoch;
1029         __u32                   padding;
1030         struct llog_rec_tail    lsc_tail;
1031 } __attribute__((packed));
1032
1033 struct llog_gen {
1034         __u64 mnt_cnt;
1035         __u64 conn_cnt;
1036 };
1037
1038 struct llog_gen_rec {
1039         struct llog_rec_hdr     lgr_hdr;
1040         struct llog_gen         lgr_gen;
1041         struct llog_rec_tail    lgr_tail;
1042 } __attribute__((packed));
1043
1044 struct llog_lru_rec {
1045         struct llog_rec_hdr     llr_hdr;
1046         struct lustre_id        llr_cid;
1047         struct lustre_id        llr_pid;
1048         struct llog_rec_tail    llr_tail;
1049 } __attribute__((packed));
1050
1051 /* On-disk header structure of each log object, stored in little endian order */
1052 #define LLOG_CHUNK_SIZE         8192
1053 #define LLOG_HEADER_SIZE        (96)
1054 #define LLOG_BITMAP_BYTES       (LLOG_CHUNK_SIZE - LLOG_HEADER_SIZE)
1055
1056 #define LLOG_MIN_REC_SIZE       (24) /* round(llog_rec_hdr + llog_rec_tail) */
1057
1058 /* flags for the logs */
1059 #define LLOG_F_ZAP_WHEN_EMPTY   0x1
1060 #define LLOG_F_IS_CAT           0x2
1061 #define LLOG_F_IS_PLAIN         0x4
1062
1063 struct llog_log_hdr {
1064         struct llog_rec_hdr     llh_hdr;
1065         __u64                   llh_timestamp;
1066         __u32                   llh_count;
1067         __u32                   llh_bitmap_offset;
1068         __u32                   llh_size;
1069         __u32                   llh_flags;
1070         __u32                   llh_cat_idx;
1071         /* for a catalog the first plain slot is next to it */
1072         struct obd_uuid         llh_tgtuuid;
1073         __u32                 llh_reserved[LLOG_HEADER_SIZE/sizeof(__u32) - 23];
1074         __u32                   llh_bitmap[LLOG_BITMAP_BYTES/sizeof(__u32)];
1075         struct llog_rec_tail    llh_tail;
1076 } __attribute__((packed));
1077
1078 #define LLOG_BITMAP_SIZE(llh)  ((llh->llh_hdr.lrh_len -         \
1079                                  llh->llh_bitmap_offset -       \
1080                                  sizeof(llh->llh_tail)) * 8)
1081
1082 /* log cookies are used to reference a specific log file and a record therein */
1083 struct llog_cookie {
1084         struct llog_logid       lgc_lgl;
1085         __u32                   lgc_subsys;
1086         __u32                   lgc_index;
1087         __u32                   lgc_flags;
1088 } __attribute__((packed));
1089
1090 /* llog protocol */
1091 enum llogd_rpc_ops {
1092         LLOG_ORIGIN_HANDLE_OPEN         = 501,
1093         LLOG_ORIGIN_HANDLE_NEXT_BLOCK   = 502,
1094         LLOG_ORIGIN_HANDLE_READ_HEADER  = 503,
1095         LLOG_ORIGIN_HANDLE_WRITE_REC    = 504,
1096         LLOG_ORIGIN_HANDLE_CLOSE        = 505,
1097         LLOG_ORIGIN_CONNECT             = 506,
1098         LLOG_CATINFO                    = 507,  /* for lfs catinfo */
1099         LLOG_ORIGIN_HANDLE_PREV_BLOCK   = 508,
1100 };
1101
1102 struct llogd_body {
1103         struct llog_logid  lgd_logid;
1104         __u32 lgd_ctxt_idx;
1105         __u32 lgd_llh_flags;
1106         __u32 lgd_index;
1107         __u32 lgd_saved_index;
1108         __u32 lgd_len;
1109         __u64 lgd_cur_offset;
1110 } __attribute__((packed));
1111
1112 struct llogd_conn_body {
1113         struct llog_gen         lgdc_gen;
1114         struct llog_logid       lgdc_logid;
1115         __u32                   lgdc_ctxt_idx;
1116 } __attribute__((packed));
1117
1118 extern void lustre_swab_llogd_body (struct llogd_body *d);
1119 extern void lustre_swab_llog_hdr (struct llog_log_hdr *h);
1120 extern void lustre_swab_llogd_conn_body (struct llogd_conn_body *d);
1121
1122 static inline struct lustre_id *obdo_id(struct obdo *oa)
1123 {
1124         void *raw_id = oa->o_inline + sizeof(struct lustre_handle) +
1125                 sizeof(struct llog_cookie);
1126         
1127         return (struct lustre_id *)raw_id;
1128 }
1129
1130 /* security negotiate */
1131 typedef enum {
1132         SEC_INIT                = 600,
1133         SEC_INIT_CONTINUE       = 601,
1134         SEC_FINI                = 602,
1135         SEC_LAST_OPC
1136 } sec_cmd_t;
1137 #define SEC_FIRST_OPC SEC_INIT
1138
1139 #endif