Whamcloud - gitweb
ea75f088fd36b03b89b5522d6e814239d5b4f97c
[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  * (Un)packing of OST requests
22  */
23
24 #ifndef _LUSTRE_IDL_H_
25 #define _LUSTRE_IDL_H_
26
27 #ifdef __KERNEL__
28 # include <linux/ioctl.h>
29 # include <asm/types.h>
30 # include <linux/types.h>
31 # include <linux/list.h>
32 #else
33 # define __KERNEL__
34 # include <asm/types.h>
35 # include <linux/list.h>
36 # undef __KERNEL__
37 # include <stdint.h>
38 #endif
39 /*
40  * this file contains all data structures used in Lustre interfaces:
41  * - obdo and obd_request records
42  * - mds_request records
43  * - ldlm data
44  * - ioctl's
45  */
46
47 /*
48  *  GENERAL STUFF
49  */
50 typedef __u8 obd_uuid_t[37];
51
52 /* FOO_REQUEST_PORTAL is for incoming requests on the FOO
53  * FOO_REPLY_PORTAL   is for incoming replies on the FOO
54  * FOO_BULK_PORTAL    is for incoming bulk on the FOO
55  */
56
57 #define CONNMGR_REQUEST_PORTAL  1
58 #define CONNMGR_REPLY_PORTAL    2
59 #define OSC_REQUEST_PORTAL      3
60 #define OSC_REPLY_PORTAL        4
61 #define OSC_BULK_PORTAL         5
62 #define OST_REQUEST_PORTAL      6
63 #define OST_REPLY_PORTAL        7
64 #define OST_BULK_PORTAL         8
65 #define MDC_REQUEST_PORTAL      9
66 #define MDC_REPLY_PORTAL        10
67 #define MDC_BULK_PORTAL         11
68 #define MDS_REQUEST_PORTAL      12
69 #define MDS_REPLY_PORTAL        13
70 #define MDS_BULK_PORTAL         14
71 #define LDLM_CB_REQUEST_PORTAL     15
72 #define LDLM_CB_REPLY_PORTAL       16
73 #define LDLM_CANCEL_REQUEST_PORTAL     17
74 #define LDLM_CANCEL_REPLY_PORTAL       18
75
76 #define SVC_KILLED               1
77 #define SVC_EVENT                2
78 #define SVC_SIGNAL               4
79 #define SVC_RUNNING              8
80 #define SVC_STOPPING            16
81 #define SVC_STOPPED             32
82
83 #define LUSTRE_CONN_NEW          1
84 #define LUSTRE_CONN_CON          2
85 #define LUSTRE_CONN_RECOVD       3
86 #define LUSTRE_CONN_FULL         4
87
88 /* packet types */
89 #define PTL_RPC_MSG_REQUEST 4711
90 #define PTL_RPC_MSG_ERR     4712
91 #define PTL_RPC_MSG_REPLY   4713
92
93 #define PTLRPC_MSG_MAGIC (cpu_to_le32(0x0BD00BD0))
94 #define PTLRPC_MSG_VERSION (cpu_to_le32(0x00040001))
95
96 struct lustre_handle {
97         __u64 addr;
98         __u64 cookie;
99 };
100 #define DEAD_HANDLE_MAGIC 0xdeadbeefcafebabe
101
102 static inline void ptlrpc_invalidate_handle(struct lustre_handle *hdl)
103 {
104         hdl->addr = hdl->cookie = 0; /* XXX invalid enough? */
105 }
106
107 /* we depend on this structure to be 8-byte aligned */
108 struct lustre_msg {
109         __u64 addr;
110         __u64 cookie; /* security token */
111         __u32 magic;
112         __u32 type;
113         __u32 version;
114         __u32 opc;
115         __u64 last_xid;
116         __u64 last_committed;
117         __u64 transno;
118         __u32 status;
119         __u32 bufcount;
120         __u32 flags;
121         __u32 buflens[0];
122 };
123
124 /* Flags that are operation-specific go in the top 16 bits. */
125 #define MSG_OP_FLAG_MASK   0xffff0000
126 #define MSG_OP_FLAG_SHIFT  16
127
128 /* Flags that apply to all requests are in the bottom 16 bits */
129 #define MSG_GEN_FLAG_MASK  0x0000ffff
130 #define MSG_LAST_REPLAY    1
131
132 static inline int lustre_msg_get_flags(struct lustre_msg *msg)
133 {
134         return (msg->flags & MSG_GEN_FLAG_MASK);
135 }
136
137 static inline void lustre_msg_set_flags(struct lustre_msg *msg, int flags)
138 {
139         msg->flags &= ~MSG_GEN_FLAG_MASK;
140         msg->flags |= MSG_GEN_FLAG_MASK & flags;
141 }
142
143 static inline int lustre_msg_get_op_flags(struct lustre_msg *msg)
144 {
145         return (msg->flags >> MSG_OP_FLAG_SHIFT);
146 }
147
148 static inline void lustre_msg_set_op_flags(struct lustre_msg *msg, int flags)
149 {
150         msg->flags &= ~MSG_OP_FLAG_MASK;
151         msg->flags |= ((flags & MSG_GEN_FLAG_MASK) << MSG_OP_FLAG_SHIFT);
152 }
153
154 #define CONNMGR_REPLY   0
155 #define CONNMGR_CONNECT 1
156
157 /*
158  *   OST requests: OBDO & OBD request records
159  */
160
161 /* opcodes */
162 #define OST_REPLY       0        /* reply ? */
163 #define OST_GETATTR     1
164 #define OST_SETATTR     2
165 #define OST_READ        3
166 #define OST_WRITE       4
167 #define OST_CREATE      5
168 #define OST_DESTROY     6
169 #define OST_GET_INFO    7
170 #define OST_CONNECT     8
171 #define OST_DISCONNECT  9
172 #define OST_PUNCH      10
173 #define OST_OPEN       11
174 #define OST_CLOSE      12
175 #define OST_STATFS     13
176
177
178 typedef uint64_t        obd_id;
179 typedef uint64_t        obd_gr;
180 typedef uint64_t        obd_time;
181 typedef uint64_t        obd_size;
182 typedef uint64_t        obd_off;
183 typedef uint64_t        obd_blocks;
184 typedef uint32_t        obd_blksize;
185 typedef uint32_t        obd_mode;
186 typedef uint32_t        obd_uid;
187 typedef uint32_t        obd_gid;
188 typedef uint64_t        obd_rdev;
189 typedef uint32_t        obd_flag;
190 typedef uint32_t        obd_count;
191
192 #define OBD_FL_INLINEDATA       (0x00000001)
193 #define OBD_FL_OBDMDEXISTS      (0x00000002)
194
195 #define OBD_INLINESZ    60
196
197 /* Note: 64-bit types are 64-bit aligned in structure */
198 struct obdo {
199         obd_id                  o_id;
200         obd_gr                  o_gr;
201         obd_time                o_atime;
202         obd_time                o_mtime;
203         obd_time                o_ctime;
204         obd_size                o_size;
205         obd_blocks              o_blocks;
206         obd_rdev                o_rdev;
207         obd_blksize             o_blksize;
208         obd_mode                o_mode;
209         obd_uid                 o_uid;
210         obd_gid                 o_gid;
211         obd_flag                o_flags;
212         obd_count               o_nlink;
213         obd_count               o_generation;
214         obd_flag                o_valid;        /* hot fields in this obdo */
215         obd_flag                o_obdflags;
216         __u32                   o_easize;
217         char                    o_inline[OBD_INLINESZ];
218 };
219
220 struct lov_object_id { /* per-child structure */
221         __u64 l_object_id;
222 };
223
224 #define LOV_MAGIC  0x0BD00BD0
225
226 struct lov_mds_md {
227         __u32 lmm_magic;
228         __u32 lmm_unused;          /* was packed size of extended attribute */
229         __u64 lmm_object_id;       /* lov object id */
230         __u32 lmm_stripe_offset;   /* starting stripe offset in lmd_objects */
231         __u32 lmm_stripe_count;    /* number of stipes in use for this object */
232         __u64 lmm_stripe_size;     /* size of the stripe */
233         __u32 lmm_ost_count;       /* how many OST idx are in this LOV md */
234         __u32 lmm_stripe_pattern;  /* per-lov object stripe pattern */
235         struct lov_object_id lmm_objects[0];
236 };
237
238 #define OBD_MD_FLALL    (0xffffffff)
239 #define OBD_MD_FLID     (0x00000001)    /* object ID */
240 #define OBD_MD_FLATIME  (0x00000002)    /* access time */
241 #define OBD_MD_FLMTIME  (0x00000004)    /* data modification time */
242 #define OBD_MD_FLCTIME  (0x00000008)    /* change time */
243 #define OBD_MD_FLSIZE   (0x00000010)    /* size */
244 #define OBD_MD_FLBLOCKS (0x00000020)    /* allocated blocks count */
245 #define OBD_MD_FLBLKSZ  (0x00000040)    /* block size */
246 #define OBD_MD_FLMODE   (0x00000080)    /* access bits (mode & ~S_IFMT) */
247 #define OBD_MD_FLTYPE   (0x00000100)    /* object type (mode & S_IFMT) */
248 #define OBD_MD_FLUID    (0x00000200)    /* user ID */
249 #define OBD_MD_FLGID    (0x00000400)    /* group ID */
250 #define OBD_MD_FLFLAGS  (0x00000800)    /* flags word */
251 #define OBD_MD_FLOBDFLG (0x00001000)
252 #define OBD_MD_FLNLINK  (0x00002000)    /* link count */
253 #define OBD_MD_FLGENER  (0x00004000)    /* generation number */
254 #define OBD_MD_FLINLINE (0x00008000)    /* inline data */
255 #define OBD_MD_FLRDEV   (0x00010000)    /* device number */
256 #define OBD_MD_FLEASIZE (0x00020000)    /* extended attribute data */
257 #define OBD_MD_LINKNAME (0x00040000)    /* symbolic link target */
258 #define OBD_MD_FLHANDLE (0x00080000)    /* file handle */
259 #define OBD_MD_FLNOTOBD (~(OBD_MD_FLOBDFLG | OBD_MD_FLBLOCKS | OBD_MD_LINKNAME|\
260                            OBD_MD_FLEASIZE | OBD_MD_FLHANDLE))
261
262 struct obd_statfs {
263         __u64           os_type;
264         __u64           os_blocks;
265         __u64           os_bfree;
266         __u64           os_bavail;
267         __u64           os_files;
268         __u64           os_ffree;
269         __u8            os_fsid[40];
270         __u32           os_bsize;
271         __u32           os_namelen;
272         __u32           os_spare[12];
273 };
274
275 /* ost_body.data values for OST_BRW */
276
277 #define OBD_BRW_READ    0x1
278 #define OBD_BRW_WRITE   0x2
279 #define OBD_BRW_RWMASK  (OBD_BRW_READ | OBD_BRW_WRITE)
280 #define OBD_BRW_CREATE  0x4
281
282 #define OBD_OBJECT_EOF 0xffffffffffffffffULL
283
284 struct obd_ioobj {
285         obd_id               ioo_id;
286         obd_gr               ioo_gr;
287         /* struct lustre_handle ioo_handle; XXX in the future */
288         __u32                ioo_type;
289         __u32                ioo_bufcnt;
290 };
291
292 struct niobuf_remote {
293         __u64 offset;
294         __u32 len;
295         __u32 xid;
296         __u32 flags;
297 };
298
299 #define CONNMGR_REPLY   0
300 #define CONNMGR_CONNECT 1
301
302 struct connmgr_body {
303         __u64 conn;
304         __u64 conn_token;
305         __u32 generation;
306         obd_uuid_t conn_uuid;
307 };
308
309 /* request structure for OST's */
310
311 #define OST_REQ_HAS_OA1  0x1
312
313 struct ost_body {
314         struct  obdo oa;
315 };
316
317 /*
318  *   MDS REQ RECORDS
319  */
320
321 /* opcodes */
322 #define MDS_GETATTR    1
323 #define MDS_OPEN       2
324 #define MDS_CLOSE      3
325 #define MDS_REINT      4
326 #define MDS_READPAGE   6
327 #define MDS_CONNECT    7
328 #define MDS_DISCONNECT 8
329 #define MDS_GETSTATUS  9
330 #define MDS_STATFS     10
331 #define MDS_GETLOVINFO 11
332
333 #define REINT_SETATTR  1
334 #define REINT_CREATE   2
335 #define REINT_LINK     3
336 #define REINT_UNLINK   4
337 #define REINT_RENAME   5
338 #define REINT_MAX      5
339
340 #define REINT_OPCODE_MASK 0xff /* opcodes must fit into this mask */
341 #define REINT_REPLAYING 0x1000 /* masked into the opcode to indicate replay */
342
343 struct ll_fid {
344         __u64 id;
345         __u32 generation;
346         __u32 f_type;
347 };
348
349
350 #define MDS_STATUS_CONN 1
351 #define MDS_STATUS_LOV 2
352
353 struct mds_status_req {
354         __u32  flags;
355         __u32  repbuf;
356 };
357
358 struct mds_fileh_body {
359         struct ll_fid f_fid;
360         struct lustre_handle f_handle;
361 };
362
363 struct mds_conn_status {
364         struct ll_fid rootfid;
365         __u64          xid;
366         __u64          last_committed;
367         __u64          last_rcvd;
368         /* XXX preallocated quota & obj fields here */
369 };
370
371 struct mds_body {
372         struct ll_fid  fid1;
373         struct ll_fid  fid2;
374         struct lustre_handle handle;
375         __u64          size;
376         __u32          ino;   /* make this a __u64 */
377         __u32          valid;
378         __u32          fsuid;
379         __u32          fsgid;
380         __u32          capability;
381         __u32          mode;
382         __u32          uid;
383         __u32          gid;
384         __u32          mtime;
385         __u32          ctime;
386         __u32          atime;
387         __u32          flags;
388         __u32          rdev;
389         __u32          nlink;
390         __u32          generation;
391 };
392
393 /* This is probably redundant with OBD_MD_FLEASIZE, but we need an audit */
394 #define MDS_OPEN_HAS_EA 1 /* this open has an EA, for a delayed create*/
395
396 /* MDS update records */
397
398
399 //struct mds_update_record_hdr {
400 //        __u32 ur_opcode;
401 //};
402
403 struct mds_rec_setattr {
404         __u32           sa_opcode;
405         __u32           sa_fsuid;
406         __u32           sa_fsgid;
407         __u32           sa_cap;
408         __u32           sa_reserved;
409         __u32           sa_valid;
410         struct ll_fid   sa_fid;
411         __u32           sa_mode;
412         __u32           sa_uid;
413         __u32           sa_gid;
414         __u32           sa_attr_flags;
415         __u64           sa_size;
416         __u64           sa_atime;
417         __u64           sa_mtime;
418         __u64           sa_ctime;
419 };
420
421 struct mds_rec_create {
422         __u32           cr_opcode;
423         __u32           cr_fsuid;
424         __u32           cr_fsgid;
425         __u32           cr_cap;
426         __u32           cr_reserved;
427         __u32           cr_mode;
428         struct ll_fid   cr_fid;
429         struct ll_fid   cr_replayfid;
430         __u32           cr_uid;
431         __u32           cr_gid;
432         __u64           cr_time;
433         __u64           cr_rdev;
434 };
435
436 struct mds_rec_link {
437         __u32           lk_opcode;
438         __u32           lk_fsuid;
439         __u32           lk_fsgid;
440         __u32           lk_cap;
441         struct ll_fid   lk_fid1;
442         struct ll_fid   lk_fid2;
443 };
444
445 struct mds_rec_unlink {
446         __u32           ul_opcode;
447         __u32           ul_fsuid;
448         __u32           ul_fsgid;
449         __u32           ul_cap;
450         __u32           ul_reserved;
451         __u32           ul_mode;
452         struct ll_fid   ul_fid1;
453         struct ll_fid   ul_fid2;
454 };
455
456 struct mds_rec_rename {
457         __u32           rn_opcode;
458         __u32           rn_fsuid;
459         __u32           rn_fsgid;
460         __u32           rn_cap;
461         struct ll_fid   rn_fid1;
462         struct ll_fid   rn_fid2;
463 };
464
465
466 /*
467  *  LOV data structures
468  */
469
470 #define LOV_RAID0   0
471 #define LOV_RAIDRR  1
472
473 struct lov_desc {
474         __u32 ld_tgt_count;                /* how many OBD's */
475         __u32 ld_active_tgt_count;         /* how many active */
476         __u32 ld_default_stripe_count;     /* how many objects are used */
477         __u64 ld_default_stripe_size;      /* in bytes */
478         __u64 ld_default_stripe_offset;    /* in bytes */
479         __u32 ld_pattern;                  /* RAID 0,1 etc */
480         obd_uuid_t ld_uuid;
481 };
482
483 /*
484  *   LDLM requests:
485  */
486 /* opcodes -- MUST be distinct from OST/MDS opcodes */
487 #define LDLM_ENQUEUE       101
488 #define LDLM_CONVERT       102
489 #define LDLM_CANCEL        103
490 #define LDLM_BL_CALLBACK   104
491 #define LDLM_CP_CALLBACK   105
492
493 #define RES_NAME_SIZE 3
494 #define RES_VERSION_SIZE 4
495
496 /* lock types */
497 typedef enum {
498         LCK_EX = 1,
499         LCK_PW,
500         LCK_PR,
501         LCK_CW,
502         LCK_CR,
503         LCK_NL
504 } ldlm_mode_t;
505
506 struct ldlm_extent {
507         __u64 start;
508         __u64 end;
509 };
510
511 struct ldlm_intent {
512         __u64 opc;
513 };
514
515 /* Note this unaligned structure; as long as it's only used in ldlm_request
516  * below, we're probably fine. */
517 struct ldlm_resource_desc {
518         __u32 lr_type;
519         __u64 lr_name[RES_NAME_SIZE];
520         __u32 lr_version[RES_VERSION_SIZE];
521 };
522
523 struct ldlm_lock_desc {
524         struct ldlm_resource_desc l_resource;
525         ldlm_mode_t l_req_mode;
526         ldlm_mode_t l_granted_mode;
527         struct ldlm_extent l_extent;
528         __u32 l_version[RES_VERSION_SIZE];
529 };
530
531 struct ldlm_request {
532         __u32 lock_flags;
533         struct ldlm_lock_desc lock_desc;
534         struct lustre_handle lock_handle1;
535         struct lustre_handle lock_handle2;
536 };
537
538 struct ldlm_reply {
539         __u32 lock_flags;
540         __u32 lock_mode;
541         __u64 lock_resource_name[RES_NAME_SIZE];
542         struct lustre_handle lock_handle;
543         struct ldlm_extent lock_extent;   /* XXX make this policy 1 &2 */
544         __u64  lock_policy_res1;
545         __u64  lock_policy_res2;
546 };
547 #endif