Whamcloud - gitweb
cefe7f11fd671a64380ba0325aa23643190f8b22
[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_REQUEST_PORTAL     15
72 #define LDLM_REPLY_PORTAL       16
73 #define LDLM_CLI_REQUEST_PORTAL 17
74 #define LDLM_CLI_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 flags;
114         __u32 opc;
115         __u64 last_xid;
116         __u64 last_committed;
117         __u64 transno;
118         __u32 status;
119         __u32 bufcount;
120         __u32 version;
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
131 static inline u16 lustre_msg_get_flags(struct lustre_msg *msg)
132 {
133         return (u16)(msg->flags & MSG_GEN_FLAG_MASK);
134 }
135
136 static inline void lustre_msg_set_flags(struct lustre_msg *msg, u16 flags)
137 {
138         msg->flags &= ~MSG_GEN_FLAG_MASK;
139         msg->flags |= flags;
140 }
141
142 static inline u16 lustre_msg_get_op_flags(struct lustre_msg *msg)
143 {
144         return (u16)(msg->flags >> MSG_OP_FLAG_SHIFT);
145 }
146
147 static inline void lustre_msg_set_op_flags(struct lustre_msg *msg, u16 flags)
148 {
149         msg->flags &= ~MSG_OP_FLAG_MASK;
150         msg->flags |= (flags << MSG_OP_FLAG_SHIFT);
151 }
152
153 #define CONNMGR_REPLY   0
154 #define CONNMGR_CONNECT 1
155
156 /*
157  *   OST requests: OBDO & OBD request records
158  */
159
160 /* opcodes */
161 #define OST_REPLY       0        /* reply ? */
162 #define OST_GETATTR     1
163 #define OST_SETATTR     2
164 #define OST_READ        3
165 #define OST_WRITE       4
166 #define OST_CREATE      5
167 #define OST_DESTROY     6
168 #define OST_GET_INFO    7
169 #define OST_CONNECT     8
170 #define OST_DISCONNECT  9
171 #define OST_PUNCH      10
172 #define OST_OPEN       11
173 #define OST_CLOSE      12
174 #define OST_STATFS     13
175
176
177 typedef uint64_t        obd_id;
178 typedef uint64_t        obd_gr;
179 typedef uint64_t        obd_time;
180 typedef uint64_t        obd_size;
181 typedef uint64_t        obd_off;
182 typedef uint64_t        obd_blocks;
183 typedef uint32_t        obd_blksize;
184 typedef uint32_t        obd_mode;
185 typedef uint32_t        obd_uid;
186 typedef uint32_t        obd_gid;
187 typedef uint64_t        obd_rdev;
188 typedef uint32_t        obd_flag;
189 typedef uint32_t        obd_count;
190
191 #define OBD_FL_INLINEDATA       (0x00000001)
192 #define OBD_FL_OBDMDEXISTS      (0x00000002)
193
194 #define OBD_INLINESZ    60
195
196 /* Note: 64-bit types are 64-bit aligned in structure */
197 struct obdo {
198         obd_id                  o_id;
199         obd_gr                  o_gr;
200         obd_time                o_atime;
201         obd_time                o_mtime;
202         obd_time                o_ctime;
203         obd_size                o_size;
204         obd_blocks              o_blocks;
205         obd_rdev                o_rdev;
206         obd_blksize             o_blksize;
207         obd_mode                o_mode;
208         obd_uid                 o_uid;
209         obd_gid                 o_gid;
210         obd_flag                o_flags;
211         obd_count               o_nlink;
212         obd_count               o_generation;
213         obd_flag                o_valid;        /* hot fields in this obdo */
214         obd_flag                o_obdflags;
215         __u32                   o_easize;
216         char                    o_inline[OBD_INLINESZ];
217 };
218
219 struct lov_object_id { /* per-child structure */
220         __u64 l_object_id;
221 };
222
223 #define LOV_MAGIC  0x0BD00BD0
224
225 struct lov_mds_md {
226         __u32 lmm_magic;
227         __u32 lmm_easize;          /* packed size of extended */
228         __u64 lmm_object_id;       /* lov object id */
229         __u32 lmm_stripe_offset;   /* starting stripe offset in lmd_objects */
230         __u32 lmm_stripe_count;    /* number of stipes in use for this object */
231         __u64 lmm_stripe_size;     /* size of the stripe */
232         __u32 lmm_ost_count;       /* how many OSTs are in this LOV */
233         __u32 lmm_stripe_pattern;  /* per-lov object stripe pattern */
234         struct lov_object_id lmm_objects[0];
235 };
236
237 #define OBD_MD_FLALL    (0xffffffff)
238 #define OBD_MD_FLID     (0x00000001)    /* object ID */
239 #define OBD_MD_FLATIME  (0x00000002)    /* access time */
240 #define OBD_MD_FLMTIME  (0x00000004)    /* data modification time */
241 #define OBD_MD_FLCTIME  (0x00000008)    /* change time */
242 #define OBD_MD_FLSIZE   (0x00000010)    /* size */
243 #define OBD_MD_FLBLOCKS (0x00000020)    /* allocated blocks count */
244 #define OBD_MD_FLBLKSZ  (0x00000040)    /* block size */
245 #define OBD_MD_FLMODE   (0x00000080)    /* access bits (mode & ~S_IFMT) */
246 #define OBD_MD_FLTYPE   (0x00000100)    /* object type (mode & S_IFMT) */
247 #define OBD_MD_FLUID    (0x00000200)    /* user ID */
248 #define OBD_MD_FLGID    (0x00000400)    /* group ID */
249 #define OBD_MD_FLFLAGS  (0x00000800)    /* flags word */
250 #define OBD_MD_FLOBDFLG (0x00001000)
251 #define OBD_MD_FLNLINK  (0x00002000)    /* link count */
252 #define OBD_MD_FLGENER  (0x00004000)    /* generation number */
253 #define OBD_MD_FLINLINE (0x00008000)    /* inline data */
254 #define OBD_MD_FLRDEV   (0x00010000)    /* device number */
255 #define OBD_MD_FLEASIZE (0x00020000)    /* extended attribute data */
256 #define OBD_MD_LINKNAME (0x00040000)    /* symbolic link target */
257 #define OBD_MD_FLHANDLE (0x00080000)    /* file handle */
258 #define OBD_MD_FLNOTOBD (~(OBD_MD_FLOBDFLG | OBD_MD_FLBLOCKS | OBD_MD_LINKNAME))
259
260 struct obd_statfs {
261         __u64           os_type;
262         __u64           os_blocks;
263         __u64           os_bfree;
264         __u64           os_bavail;
265         __u64           os_files;
266         __u64           os_ffree;
267         __u8            os_fsid[40];
268         __u32           os_bsize;
269         __u32           os_namelen;
270         __u32           os_spare[12];
271 };
272
273 /* ost_body.data values for OST_BRW */
274
275 #define OBD_BRW_READ    0x1
276 #define OBD_BRW_WRITE   0x2
277 #define OBD_BRW_RWMASK  (OBD_BRW_READ | OBD_BRW_WRITE)
278 #define OBD_BRW_CREATE  0x4
279
280 #define OBD_OBJECT_EOF 0xffffffffffffffffULL
281
282 struct obd_ioobj {
283         obd_id               ioo_id;
284         obd_gr               ioo_gr;
285         /* struct lustre_handle ioo_handle; XXX in the future */
286         __u32                ioo_type;
287         __u32                ioo_bufcnt;
288 };
289
290 struct niobuf_remote {
291         __u64 offset;
292         __u32 len;
293         __u32 xid;
294         __u32 flags;
295 };
296
297 #define CONNMGR_REPLY   0
298 #define CONNMGR_CONNECT 1
299
300 struct connmgr_body {
301         __u64 conn;
302         __u64 conn_token;
303         __u32 generation;
304         obd_uuid_t conn_uuid;
305 };
306
307 /* request structure for OST's */
308
309 #define OST_REQ_HAS_OA1  0x1
310
311 struct ost_body {
312         struct  obdo oa;
313 };
314
315 /*
316  *   MDS REQ RECORDS
317  */
318
319 /* opcodes */
320 #define MDS_GETATTR    1
321 #define MDS_OPEN       2
322 #define MDS_CLOSE      3
323 #define MDS_REINT      4
324 #define MDS_READPAGE   6
325 #define MDS_CONNECT    7
326 #define MDS_DISCONNECT 8
327 #define MDS_GETSTATUS  9
328 #define MDS_STATFS     10
329 #define MDS_GETLOVINFO 11
330
331 #define REINT_SETATTR  1
332 #define REINT_CREATE   2
333 #define REINT_LINK     3
334 #define REINT_UNLINK   4
335 #define REINT_RENAME   5
336 #define REINT_MAX      5
337
338 #define REINT_OPCODE_MASK 0xff /* opcodes must fit into this mask */
339 #define REINT_REPLAYING 0x1000 /* masked into the opcode to indicate replay */
340
341 struct ll_fid {
342         __u64 id;
343         __u32 generation;
344         __u32 f_type;
345 };
346
347
348 #define MDS_STATUS_CONN 1
349 #define MDS_STATUS_LOV 2
350
351 struct mds_status_req {
352         __u32  flags;
353         __u32  repbuf;
354 };
355
356 struct mds_fileh_body {
357         struct ll_fid f_fid;
358         struct lustre_handle f_handle;
359 };
360
361 struct mds_conn_status {
362         struct ll_fid rootfid;
363         __u64          xid;
364         __u64          last_committed;
365         __u64          last_rcvd;
366         /* XXX preallocated quota & obj fields here */
367 };
368
369 struct mds_body {
370         struct ll_fid  fid1;
371         struct ll_fid  fid2;
372         struct lustre_handle handle;
373         __u64          size;
374         __u32          ino;   /* make this a __u64 */
375         __u32          valid;
376         __u32          fsuid;
377         __u32          fsgid;
378         __u32          mode;
379         __u32          uid;
380         __u32          gid;
381         __u32          mtime;
382         __u32          ctime;
383         __u32          atime;
384         __u32          flags;
385         __u32          rdev;
386         __u32          nlink;
387         __u32          generation;
388 };
389
390 #define MDS_OPEN_HAS_EA 1 /* this open has an EA, for a delayed create*/
391
392 /* MDS update records */
393
394
395 //struct mds_update_record_hdr {
396 //        __u32 ur_opcode;
397 //};
398
399 struct mds_rec_setattr {
400         __u32           sa_opcode;
401         __u32           sa_fsuid;
402         __u32           sa_fsgid;
403         __u32           sa_valid;
404         struct ll_fid   sa_fid;
405         __u32           sa_mode;
406         __u32           sa_uid;
407         __u32           sa_gid;
408         __u32           sa_attr_flags;
409         __u64           sa_size;
410         __u64           sa_atime;
411         __u64           sa_mtime;
412         __u64           sa_ctime;
413 };
414
415 struct mds_rec_create {
416         __u32           cr_opcode;
417         __u32           cr_fsuid;
418         __u32           cr_fsgid;
419         __u32           cr_mode;
420         struct ll_fid   cr_fid;
421         __u32           cr_uid;
422         __u32           cr_gid;
423         __u64           cr_time;
424         __u64           cr_rdev;
425 };
426
427 struct mds_rec_link {
428         __u32           lk_opcode;
429         __u32           lk_fsuid;
430         __u32           lk_fsgid;
431         __u32           lk_reserved;
432         struct ll_fid   lk_fid1;
433         struct ll_fid   lk_fid2;
434 };
435
436 struct mds_rec_unlink {
437         __u32           ul_opcode;
438         __u32           ul_fsuid;
439         __u32           ul_fsgid;
440         __u32           ul_mode;
441         struct ll_fid   ul_fid1;
442         struct ll_fid   ul_fid2;
443 };
444
445 struct mds_rec_rename {
446         __u32           rn_opcode;
447         __u32           rn_fsuid;
448         __u32           rn_fsgid;
449         __u32           rn_reserved;
450         struct ll_fid   rn_fid1;
451         struct ll_fid   rn_fid2;
452 };
453
454
455 /*
456  *  LOV data structures
457  */
458
459 #define LOV_RAID0   0
460 #define LOV_RAIDRR  1
461
462 struct lov_desc {
463         __u32 ld_tgt_count;                /* how many OBD's */
464         __u32 ld_active_tgt_count;         /* how many active */
465         __u32 ld_default_stripe_count;     /* how many objects are used */
466         __u64 ld_default_stripe_size;      /* in bytes */
467         __u64 ld_default_stripe_offset;    /* in bytes */
468         __u32 ld_pattern;                  /* RAID 0,1 etc */
469         obd_uuid_t ld_uuid;
470 };
471
472 /*
473  *   LDLM requests:
474  */
475 /* opcodes -- MUST be distinct from OST/MDS opcodes */
476 #define LDLM_ENQUEUE       101
477 #define LDLM_CONVERT       102
478 #define LDLM_CANCEL        103
479 #define LDLM_BL_CALLBACK   104
480 #define LDLM_CP_CALLBACK   105
481
482 #define RES_NAME_SIZE 3
483 #define RES_VERSION_SIZE 4
484
485 /* lock types */
486 typedef enum {
487         LCK_EX = 1,
488         LCK_PW,
489         LCK_PR,
490         LCK_CW,
491         LCK_CR,
492         LCK_NL
493 } ldlm_mode_t;
494
495 struct ldlm_extent {
496         __u64 start;
497         __u64 end;
498 };
499
500 struct ldlm_intent {
501         __u64 opc;
502 };
503
504 /* Note this unaligned structure; as long as it's only used in ldlm_request
505  * below, we're probably fine. */
506 struct ldlm_resource_desc {
507         __u32 lr_type;
508         __u64 lr_name[RES_NAME_SIZE];
509         __u32 lr_version[RES_VERSION_SIZE];
510 };
511
512 struct ldlm_lock_desc {
513         struct ldlm_resource_desc l_resource;
514         ldlm_mode_t l_req_mode;
515         ldlm_mode_t l_granted_mode;
516         struct ldlm_extent l_extent;
517         __u32 l_version[RES_VERSION_SIZE];
518 };
519
520 struct ldlm_request {
521         __u32 lock_flags;
522         struct ldlm_lock_desc lock_desc;
523         struct lustre_handle lock_handle1;
524         struct lustre_handle lock_handle2;
525 };
526
527 struct ldlm_reply {
528         __u32 lock_flags;
529         __u32 lock_mode;
530         __u64 lock_resource_name[RES_NAME_SIZE];
531         struct lustre_handle lock_handle;
532         struct ldlm_extent lock_extent;   /* XXX make this policy 1 &2 */
533         __u64  lock_policy_res1;
534         __u64  lock_policy_res2;
535 };
536 #endif