]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/ceph/ceph_fs.h
libceph: use mon_client.c/put_generic_request() more
[mirror_ubuntu-bionic-kernel.git] / include / linux / ceph / ceph_fs.h
CommitLineData
0dee3c28
SW
1/*
2 * ceph_fs.h - Ceph constants and data types to share between kernel and
3 * user space.
4 *
5 * Most types in this file are defined as little-endian, and are
6 * primarily intended to describe data structures that pass over the
7 * wire or that are stored on disk.
8 *
9 * LGPL2
10 */
11
5cd068c2
SW
12#ifndef CEPH_FS_H
13#define CEPH_FS_H
0dee3c28 14
a1ce3928
DH
15#include <linux/ceph/msgr.h>
16#include <linux/ceph/rados.h>
0dee3c28 17
0dee3c28
SW
18/*
19 * subprotocol versions. when specific messages types or high-level
20 * protocols change, bump the affected components. we keep rev
21 * internal cluster protocols separately from the public,
22 * client-facing protocol.
23 */
0c948992 24#define CEPH_OSDC_PROTOCOL 24 /* server/client */
3ea25f94 25#define CEPH_MDSC_PROTOCOL 32 /* server/client */
13e38c8a 26#define CEPH_MONC_PROTOCOL 15 /* server/client */
0dee3c28
SW
27
28
dd6f5e10
AE
29#define CEPH_INO_ROOT 1
30#define CEPH_INO_CEPH 2 /* hidden .ceph dir */
31#define CEPH_INO_DOTDOT 3 /* used by ceph fuse for parent (..) */
0dee3c28
SW
32
33/* arbitrary limit on max # of monitors (cluster of 3 is typical) */
34#define CEPH_MAX_MON 31
35
0dee3c28
SW
36/*
37 * ceph_file_layout - describe data layout for a file/inode
38 */
39struct ceph_file_layout {
40 /* file -> object mapping */
41 __le32 fl_stripe_unit; /* stripe unit, in bytes. must be multiple
42 of page size. */
43 __le32 fl_stripe_count; /* over this many objects */
44 __le32 fl_object_size; /* until objects are this big, then move to
45 new objects */
6c0f3af7 46 __le32 fl_cas_hash; /* UNUSED. 0 = none; 1 = sha256 */
0dee3c28
SW
47
48 /* pg -> disk layout */
6c0f3af7 49 __le32 fl_object_stripe_unit; /* UNUSED. for per-object parity, if any */
0dee3c28
SW
50
51 /* object -> pg layout */
dd6f5e10 52 __le32 fl_unused; /* unused; used to be preferred primary for pg (-1 for none) */
0dee3c28
SW
53 __le32 fl_pg_pool; /* namespace, crush ruleset, rep level */
54} __attribute__ ((packed));
55
e8221464
ID
56#define ceph_file_layout_su(l) ((__s32)le32_to_cpu((l).fl_stripe_unit))
57#define ceph_file_layout_stripe_count(l) \
58 ((__s32)le32_to_cpu((l).fl_stripe_count))
59#define ceph_file_layout_object_size(l) ((__s32)le32_to_cpu((l).fl_object_size))
60#define ceph_file_layout_cas_hash(l) ((__s32)le32_to_cpu((l).fl_cas_hash))
61#define ceph_file_layout_object_su(l) \
62 ((__s32)le32_to_cpu((l).fl_object_stripe_unit))
63#define ceph_file_layout_pg_pool(l) \
64 ((__s32)le32_to_cpu((l).fl_pg_pool))
65
66static inline unsigned ceph_file_layout_stripe_width(struct ceph_file_layout *l)
67{
68 return le32_to_cpu(l->fl_stripe_unit) *
69 le32_to_cpu(l->fl_stripe_count);
70}
71
72/* "period" == bytes before i start on a new set of objects */
73static inline unsigned ceph_file_layout_period(struct ceph_file_layout *l)
74{
75 return le32_to_cpu(l->fl_object_size) *
76 le32_to_cpu(l->fl_stripe_count);
77}
78
752727a1 79#define CEPH_MIN_STRIPE_UNIT 65536
0dee3c28 80
752727a1 81int ceph_file_layout_is_valid(const struct ceph_file_layout *layout);
0dee3c28 82
6c0f3af7
SW
83struct ceph_dir_layout {
84 __u8 dl_dir_hash; /* see ceph_hash.h for ids */
85 __u8 dl_unused1;
86 __u16 dl_unused2;
87 __u32 dl_unused3;
88} __attribute__ ((packed));
0dee3c28 89
4e7a5dcd
SW
90/* crypto algorithms */
91#define CEPH_CRYPTO_NONE 0x0
92#define CEPH_CRYPTO_AES 0x1
93
cbbfe499
SW
94#define CEPH_AES_IV "cephsageyudagreg"
95
4e7a5dcd
SW
96/* security/authentication protocols */
97#define CEPH_AUTH_UNKNOWN 0x0
98#define CEPH_AUTH_NONE 0x1
99#define CEPH_AUTH_CEPHX 0x2
100
ca9d93a2
SW
101#define CEPH_AUTH_UID_DEFAULT ((__u64) -1)
102
4e7a5dcd 103
0dee3c28
SW
104/*********************************************
105 * message layer
106 */
107
108/*
109 * message types
110 */
111
112/* misc */
113#define CEPH_MSG_SHUTDOWN 1
114#define CEPH_MSG_PING 2
115
116/* client <-> monitor */
117#define CEPH_MSG_MON_MAP 4
118#define CEPH_MSG_MON_GET_MAP 5
0dee3c28
SW
119#define CEPH_MSG_STATFS 13
120#define CEPH_MSG_STATFS_REPLY 14
121#define CEPH_MSG_MON_SUBSCRIBE 15
122#define CEPH_MSG_MON_SUBSCRIBE_ACK 16
4e7a5dcd
SW
123#define CEPH_MSG_AUTH 17
124#define CEPH_MSG_AUTH_REPLY 18
dd6f5e10
AE
125#define CEPH_MSG_MON_GET_VERSION 19
126#define CEPH_MSG_MON_GET_VERSION_REPLY 20
0dee3c28
SW
127
128/* client <-> mds */
0dee3c28
SW
129#define CEPH_MSG_MDS_MAP 21
130
131#define CEPH_MSG_CLIENT_SESSION 22
132#define CEPH_MSG_CLIENT_RECONNECT 23
133
134#define CEPH_MSG_CLIENT_REQUEST 24
135#define CEPH_MSG_CLIENT_REQUEST_FORWARD 25
136#define CEPH_MSG_CLIENT_REPLY 26
137#define CEPH_MSG_CLIENT_CAPS 0x310
138#define CEPH_MSG_CLIENT_LEASE 0x311
139#define CEPH_MSG_CLIENT_SNAP 0x312
140#define CEPH_MSG_CLIENT_CAPRELEASE 0x313
141
ca9d93a2
SW
142/* pool ops */
143#define CEPH_MSG_POOLOP_REPLY 48
144#define CEPH_MSG_POOLOP 49
145
146
0dee3c28 147/* osd */
483fac71
YS
148#define CEPH_MSG_OSD_MAP 41
149#define CEPH_MSG_OSD_OP 42
150#define CEPH_MSG_OSD_OPREPLY 43
151#define CEPH_MSG_WATCH_NOTIFY 44
152
153
154/* watch-notify operations */
155enum {
156 WATCH_NOTIFY = 1, /* notifying watcher */
157 WATCH_NOTIFY_COMPLETE = 2, /* notifier notified when done */
158};
159
0dee3c28 160
13e38c8a
SW
161struct ceph_mon_request_header {
162 __le64 have_version;
163 __le16 session_mon;
164 __le64 session_mon_tid;
165} __attribute__ ((packed));
0dee3c28
SW
166
167struct ceph_mon_statfs {
13e38c8a 168 struct ceph_mon_request_header monhdr;
0dee3c28 169 struct ceph_fsid fsid;
0dee3c28
SW
170} __attribute__ ((packed));
171
172struct ceph_statfs {
173 __le64 kb, kb_used, kb_avail;
174 __le64 num_objects;
175} __attribute__ ((packed));
176
177struct ceph_mon_statfs_reply {
178 struct ceph_fsid fsid;
0dee3c28
SW
179 __le64 version;
180 struct ceph_statfs st;
181} __attribute__ ((packed));
182
183struct ceph_osd_getmap {
13e38c8a 184 struct ceph_mon_request_header monhdr;
0dee3c28
SW
185 struct ceph_fsid fsid;
186 __le32 start;
187} __attribute__ ((packed));
188
189struct ceph_mds_getmap {
13e38c8a 190 struct ceph_mon_request_header monhdr;
0dee3c28
SW
191 struct ceph_fsid fsid;
192} __attribute__ ((packed));
193
194struct ceph_client_mount {
13e38c8a 195 struct ceph_mon_request_header monhdr;
0dee3c28
SW
196} __attribute__ ((packed));
197
483fac71
YS
198#define CEPH_SUBSCRIBE_ONETIME 1 /* i want only 1 update after have */
199
0dee3c28 200struct ceph_mon_subscribe_item {
483fac71 201 __le64 have_version; __le64 have;
0dee3c28
SW
202 __u8 onetime;
203} __attribute__ ((packed));
204
07bd10fb
SW
205struct ceph_mon_subscribe_ack {
206 __le32 duration; /* seconds */
207 struct ceph_fsid fsid;
208} __attribute__ ((packed));
209
dd6f5e10
AE
210/*
211 * mdsmap flags
212 */
213#define CEPH_MDSMAP_DOWN (1<<0) /* cluster deliberately down */
214
0dee3c28
SW
215/*
216 * mds states
217 * > 0 -> in
218 * <= 0 -> out
219 */
220#define CEPH_MDS_STATE_DNE 0 /* down, does not exist. */
221#define CEPH_MDS_STATE_STOPPED -1 /* down, once existed, but no subtrees.
222 empty log. */
223#define CEPH_MDS_STATE_BOOT -4 /* up, boot announcement. */
224#define CEPH_MDS_STATE_STANDBY -5 /* up, idle. waiting for assignment. */
225#define CEPH_MDS_STATE_CREATING -6 /* up, creating MDS instance. */
226#define CEPH_MDS_STATE_STARTING -7 /* up, starting previously stopped mds */
227#define CEPH_MDS_STATE_STANDBY_REPLAY -8 /* up, tailing active node's journal */
dd6f5e10 228#define CEPH_MDS_STATE_REPLAYONCE -9 /* up, replaying an active node's journal */
0dee3c28
SW
229
230#define CEPH_MDS_STATE_REPLAY 8 /* up, replaying journal. */
231#define CEPH_MDS_STATE_RESOLVE 9 /* up, disambiguating distributed
232 operations (import, rename, etc.) */
233#define CEPH_MDS_STATE_RECONNECT 10 /* up, reconnect to clients */
234#define CEPH_MDS_STATE_REJOIN 11 /* up, rejoining distributed cache */
235#define CEPH_MDS_STATE_CLIENTREPLAY 12 /* up, replaying client operations */
236#define CEPH_MDS_STATE_ACTIVE 13 /* up, active */
237#define CEPH_MDS_STATE_STOPPING 14 /* up, but exporting metadata */
238
239extern const char *ceph_mds_state_name(int s);
240
241
242/*
243 * metadata lock types.
244 * - these are bitmasks.. we can compose them
245 * - they also define the lock ordering by the MDS
246 * - a few of these are internal to the mds
247 */
dd1c9057
SW
248#define CEPH_LOCK_DVERSION 1
249#define CEPH_LOCK_DN 2
250#define CEPH_LOCK_ISNAP 16
251#define CEPH_LOCK_IVERSION 32 /* mds internal */
252#define CEPH_LOCK_IFILE 64
253#define CEPH_LOCK_IAUTH 128
254#define CEPH_LOCK_ILINK 256
255#define CEPH_LOCK_IDFT 512 /* dir frag tree */
256#define CEPH_LOCK_INEST 1024 /* mds internal */
257#define CEPH_LOCK_IXATTR 2048
f0b18d9f 258#define CEPH_LOCK_IFLOCK 4096 /* advisory file locks */
dd1c9057 259#define CEPH_LOCK_INO 8192 /* immutable inode bits; not a lock */
dd6f5e10 260#define CEPH_LOCK_IPOLICY 16384 /* policy lock on dirs. MDS internal */
0dee3c28
SW
261
262/* client_session ops */
263enum {
264 CEPH_SESSION_REQUEST_OPEN,
265 CEPH_SESSION_OPEN,
266 CEPH_SESSION_REQUEST_CLOSE,
267 CEPH_SESSION_CLOSE,
268 CEPH_SESSION_REQUEST_RENEWCAPS,
269 CEPH_SESSION_RENEWCAPS,
270 CEPH_SESSION_STALE,
271 CEPH_SESSION_RECALL_STATE,
186e4f7a
YZ
272 CEPH_SESSION_FLUSHMSG,
273 CEPH_SESSION_FLUSHMSG_ACK,
0dee3c28
SW
274};
275
276extern const char *ceph_session_op_name(int op);
277
278struct ceph_mds_session_head {
279 __le32 op;
280 __le64 seq;
281 struct ceph_timespec stamp;
282 __le32 max_caps, max_leases;
283} __attribute__ ((packed));
284
285/* client_request */
286/*
287 * metadata ops.
288 * & 0x001000 -> write op
289 * & 0x010000 -> follow symlink (e.g. stat(), not lstat()).
290 & & 0x100000 -> use weird ino/path trace
291 */
292#define CEPH_MDS_OP_WRITE 0x001000
293enum {
294 CEPH_MDS_OP_LOOKUP = 0x00100,
295 CEPH_MDS_OP_GETATTR = 0x00101,
296 CEPH_MDS_OP_LOOKUPHASH = 0x00102,
297 CEPH_MDS_OP_LOOKUPPARENT = 0x00103,
3c454cf2 298 CEPH_MDS_OP_LOOKUPINO = 0x00104,
19913b4e 299 CEPH_MDS_OP_LOOKUPNAME = 0x00105,
0dee3c28
SW
300
301 CEPH_MDS_OP_SETXATTR = 0x01105,
302 CEPH_MDS_OP_RMXATTR = 0x01106,
303 CEPH_MDS_OP_SETLAYOUT = 0x01107,
304 CEPH_MDS_OP_SETATTR = 0x01108,
fbaad979
GF
305 CEPH_MDS_OP_SETFILELOCK= 0x01109,
306 CEPH_MDS_OP_GETFILELOCK= 0x00110,
571dba52 307 CEPH_MDS_OP_SETDIRLAYOUT=0x0110a,
0dee3c28
SW
308
309 CEPH_MDS_OP_MKNOD = 0x01201,
310 CEPH_MDS_OP_LINK = 0x01202,
311 CEPH_MDS_OP_UNLINK = 0x01203,
312 CEPH_MDS_OP_RENAME = 0x01204,
313 CEPH_MDS_OP_MKDIR = 0x01220,
314 CEPH_MDS_OP_RMDIR = 0x01221,
315 CEPH_MDS_OP_SYMLINK = 0x01222,
316
3ea25f94 317 CEPH_MDS_OP_CREATE = 0x01301,
0dee3c28
SW
318 CEPH_MDS_OP_OPEN = 0x00302,
319 CEPH_MDS_OP_READDIR = 0x00305,
320
321 CEPH_MDS_OP_LOOKUPSNAP = 0x00400,
322 CEPH_MDS_OP_MKSNAP = 0x01400,
323 CEPH_MDS_OP_RMSNAP = 0x01401,
324 CEPH_MDS_OP_LSSNAP = 0x00402,
325};
326
327extern const char *ceph_mds_op_name(int op);
328
329
330#define CEPH_SETATTR_MODE 1
331#define CEPH_SETATTR_UID 2
332#define CEPH_SETATTR_GID 4
333#define CEPH_SETATTR_MTIME 8
334#define CEPH_SETATTR_ATIME 16
335#define CEPH_SETATTR_SIZE 32
336#define CEPH_SETATTR_CTIME 64
337
dd6f5e10
AE
338/*
339 * Ceph setxattr request flags.
340 */
bcdfeb2e
YZ
341#define CEPH_XATTR_CREATE (1 << 0)
342#define CEPH_XATTR_REPLACE (1 << 1)
343#define CEPH_XATTR_REMOVE (1 << 31)
dd6f5e10 344
0dee3c28
SW
345union ceph_mds_request_args {
346 struct {
347 __le32 mask; /* CEPH_CAP_* */
348 } __attribute__ ((packed)) getattr;
349 struct {
350 __le32 mode;
351 __le32 uid;
352 __le32 gid;
353 struct ceph_timespec mtime;
354 struct ceph_timespec atime;
355 __le64 size, old_size; /* old_size needed by truncate */
356 __le32 mask; /* CEPH_SETATTR_* */
357 } __attribute__ ((packed)) setattr;
358 struct {
359 __le32 frag; /* which dir fragment */
360 __le32 max_entries; /* how many dentries to grab */
23804d91 361 __le32 max_bytes;
0dee3c28
SW
362 } __attribute__ ((packed)) readdir;
363 struct {
364 __le32 mode;
365 __le32 rdev;
366 } __attribute__ ((packed)) mknod;
367 struct {
368 __le32 mode;
369 } __attribute__ ((packed)) mkdir;
370 struct {
371 __le32 flags;
372 __le32 mode;
373 __le32 stripe_unit; /* layout for newly created file */
374 __le32 stripe_count; /* ... */
375 __le32 object_size;
376 __le32 file_replication;
3469ac1a 377 __le32 unused; /* used to be preferred osd */
0dee3c28
SW
378 } __attribute__ ((packed)) open;
379 struct {
380 __le32 flags;
381 } __attribute__ ((packed)) setxattr;
382 struct {
383 struct ceph_file_layout layout;
384 } __attribute__ ((packed)) setlayout;
fbaad979
GF
385 struct {
386 __u8 rule; /* currently fcntl or flock */
387 __u8 type; /* shared, exclusive, remove*/
eb13e832 388 __le64 owner; /* owner of the lock */
fbaad979 389 __le64 pid; /* process id requesting the lock */
fbaad979
GF
390 __le64 start; /* initial location to lock */
391 __le64 length; /* num bytes to lock from start */
392 __u8 wait; /* will caller wait for lock to become available? */
393 } __attribute__ ((packed)) filelock_change;
0dee3c28
SW
394} __attribute__ ((packed));
395
396#define CEPH_MDS_FLAG_REPLAY 1 /* this is a replayed op */
397#define CEPH_MDS_FLAG_WANT_DENTRY 2 /* want dentry in reply */
398
399struct ceph_mds_request_head {
6df058c0 400 __le64 oldest_client_tid;
0dee3c28
SW
401 __le32 mdsmap_epoch; /* on client */
402 __le32 flags; /* CEPH_MDS_FLAG_* */
403 __u8 num_retry, num_fwd; /* count retry, fwd attempts */
404 __le16 num_releases; /* # include cap/lease release records */
405 __le32 op; /* mds op code */
406 __le32 caller_uid, caller_gid;
407 __le64 ino; /* use this ino for openc, mkdir, mknod,
408 etc. (if replaying) */
409 union ceph_mds_request_args args;
410} __attribute__ ((packed));
411
412/* cap/lease release record */
413struct ceph_mds_request_release {
414 __le64 ino, cap_id; /* ino and unique cap id */
415 __le32 caps, wanted; /* new issued, wanted */
416 __le32 seq, issue_seq, mseq;
417 __le32 dname_seq; /* if releasing a dentry lease, a */
418 __le32 dname_len; /* string follows. */
419} __attribute__ ((packed));
420
421/* client reply */
422struct ceph_mds_reply_head {
0dee3c28
SW
423 __le32 op;
424 __le32 result;
425 __le32 mdsmap_epoch;
426 __u8 safe; /* true if committed to disk */
427 __u8 is_dentry, is_target; /* true if dentry, target inode records
428 are included with reply */
429} __attribute__ ((packed));
430
431/* one for each node split */
432struct ceph_frag_tree_split {
433 __le32 frag; /* this frag splits... */
434 __le32 by; /* ...by this many bits */
435} __attribute__ ((packed));
436
437struct ceph_frag_tree_head {
438 __le32 nsplits; /* num ceph_frag_tree_split records */
439 struct ceph_frag_tree_split splits[];
440} __attribute__ ((packed));
441
442/* capability issue, for bundling with mds reply */
443struct ceph_mds_reply_cap {
444 __le32 caps, wanted; /* caps issued, wanted */
445 __le64 cap_id;
446 __le32 seq, mseq;
447 __le64 realm; /* snap realm */
448 __u8 flags; /* CEPH_CAP_FLAG_* */
449} __attribute__ ((packed));
450
4ee6a914
YZ
451#define CEPH_CAP_FLAG_AUTH (1 << 0) /* cap is issued by auth mds */
452#define CEPH_CAP_FLAG_RELEASE (1 << 1) /* release the cap */
0dee3c28
SW
453
454/* inode record, for bundling with mds reply */
455struct ceph_mds_reply_inode {
456 __le64 ino;
457 __le64 snapid;
458 __le32 rdev;
459 __le64 version; /* inode version */
460 __le64 xattr_version; /* version for xattr blob */
461 struct ceph_mds_reply_cap cap; /* caps issued for this inode */
462 struct ceph_file_layout layout;
463 struct ceph_timespec ctime, mtime, atime;
464 __le32 time_warp_seq;
465 __le64 size, max_size, truncate_size;
466 __le32 truncate_seq;
467 __le32 mode, uid, gid;
468 __le32 nlink;
469 __le64 files, subdirs, rbytes, rfiles, rsubdirs; /* dir stats */
470 struct ceph_timespec rctime;
471 struct ceph_frag_tree_head fragtree; /* (must be at end of struct) */
472} __attribute__ ((packed));
6c0f3af7 473/* followed by frag array, symlink string, dir layout, xattr blob */
0dee3c28
SW
474
475/* reply_lease follows dname, and reply_inode */
476struct ceph_mds_reply_lease {
477 __le16 mask; /* lease type(s) */
478 __le32 duration_ms; /* lease duration */
479 __le32 seq;
480} __attribute__ ((packed));
481
482struct ceph_mds_reply_dirfrag {
483 __le32 frag; /* fragment */
484 __le32 auth; /* auth mds, if this is a delegation point */
485 __le32 ndist; /* number of mds' this is replicated on */
486 __le32 dist[];
487} __attribute__ ((packed));
488
9280be24
YZ
489#define CEPH_LOCK_FCNTL 1
490#define CEPH_LOCK_FLOCK 2
491#define CEPH_LOCK_FCNTL_INTR 3
492#define CEPH_LOCK_FLOCK_INTR 4
493
fbaad979
GF
494
495#define CEPH_LOCK_SHARED 1
496#define CEPH_LOCK_EXCL 2
497#define CEPH_LOCK_UNLOCK 4
498
499struct ceph_filelock {
500 __le64 start;/* file offset to start lock at */
501 __le64 length; /* num bytes to lock; 0 for all following start */
502 __le64 client; /* which client holds the lock */
eb13e832 503 __le64 owner; /* owner the lock */
fbaad979 504 __le64 pid; /* process id holding the lock on the client */
fbaad979
GF
505 __u8 type; /* shared lock, exclusive lock, or unlock */
506} __attribute__ ((packed));
507
508
0dee3c28
SW
509/* file access modes */
510#define CEPH_FILE_MODE_PIN 0
511#define CEPH_FILE_MODE_RD 1
512#define CEPH_FILE_MODE_WR 2
513#define CEPH_FILE_MODE_RDWR 3 /* RD | WR */
514#define CEPH_FILE_MODE_LAZY 4 /* lazy io */
515#define CEPH_FILE_MODE_NUM 8 /* bc these are bit fields.. mostly */
516
517int ceph_flags_to_mode(int flags);
518
31c542a1 519#define CEPH_INLINE_NONE ((__u64)-1)
0dee3c28
SW
520
521/* capability bits */
522#define CEPH_CAP_PIN 1 /* no specific capabilities beyond the pin */
523
524/* generic cap bits */
525#define CEPH_CAP_GSHARED 1 /* client can reads */
526#define CEPH_CAP_GEXCL 2 /* client can read and update */
527#define CEPH_CAP_GCACHE 4 /* (file) client can cache reads */
528#define CEPH_CAP_GRD 8 /* (file) client can read */
529#define CEPH_CAP_GWR 16 /* (file) client can write */
530#define CEPH_CAP_GBUFFER 32 /* (file) client can buffer writes */
531#define CEPH_CAP_GWREXTEND 64 /* (file) client can extend EOF */
532#define CEPH_CAP_GLAZYIO 128 /* (file) client can perform lazy io */
533
dd6f5e10
AE
534#define CEPH_CAP_SIMPLE_BITS 2
535#define CEPH_CAP_FILE_BITS 8
536
0dee3c28
SW
537/* per-lock shift */
538#define CEPH_CAP_SAUTH 2
539#define CEPH_CAP_SLINK 4
540#define CEPH_CAP_SXATTR 6
fbaad979 541#define CEPH_CAP_SFILE 8
dd6f5e10 542#define CEPH_CAP_SFLOCK 20
0dee3c28 543
dd6f5e10 544#define CEPH_CAP_BITS 22
0dee3c28
SW
545
546/* composed values */
547#define CEPH_CAP_AUTH_SHARED (CEPH_CAP_GSHARED << CEPH_CAP_SAUTH)
548#define CEPH_CAP_AUTH_EXCL (CEPH_CAP_GEXCL << CEPH_CAP_SAUTH)
549#define CEPH_CAP_LINK_SHARED (CEPH_CAP_GSHARED << CEPH_CAP_SLINK)
550#define CEPH_CAP_LINK_EXCL (CEPH_CAP_GEXCL << CEPH_CAP_SLINK)
551#define CEPH_CAP_XATTR_SHARED (CEPH_CAP_GSHARED << CEPH_CAP_SXATTR)
552#define CEPH_CAP_XATTR_EXCL (CEPH_CAP_GEXCL << CEPH_CAP_SXATTR)
553#define CEPH_CAP_FILE(x) (x << CEPH_CAP_SFILE)
554#define CEPH_CAP_FILE_SHARED (CEPH_CAP_GSHARED << CEPH_CAP_SFILE)
555#define CEPH_CAP_FILE_EXCL (CEPH_CAP_GEXCL << CEPH_CAP_SFILE)
556#define CEPH_CAP_FILE_CACHE (CEPH_CAP_GCACHE << CEPH_CAP_SFILE)
557#define CEPH_CAP_FILE_RD (CEPH_CAP_GRD << CEPH_CAP_SFILE)
558#define CEPH_CAP_FILE_WR (CEPH_CAP_GWR << CEPH_CAP_SFILE)
559#define CEPH_CAP_FILE_BUFFER (CEPH_CAP_GBUFFER << CEPH_CAP_SFILE)
560#define CEPH_CAP_FILE_WREXTEND (CEPH_CAP_GWREXTEND << CEPH_CAP_SFILE)
561#define CEPH_CAP_FILE_LAZYIO (CEPH_CAP_GLAZYIO << CEPH_CAP_SFILE)
fbaad979
GF
562#define CEPH_CAP_FLOCK_SHARED (CEPH_CAP_GSHARED << CEPH_CAP_SFLOCK)
563#define CEPH_CAP_FLOCK_EXCL (CEPH_CAP_GEXCL << CEPH_CAP_SFLOCK)
564
0dee3c28
SW
565
566/* cap masks (for getattr) */
567#define CEPH_STAT_CAP_INODE CEPH_CAP_PIN
568#define CEPH_STAT_CAP_TYPE CEPH_CAP_PIN /* mode >> 12 */
569#define CEPH_STAT_CAP_SYMLINK CEPH_CAP_PIN
570#define CEPH_STAT_CAP_UID CEPH_CAP_AUTH_SHARED
571#define CEPH_STAT_CAP_GID CEPH_CAP_AUTH_SHARED
572#define CEPH_STAT_CAP_MODE CEPH_CAP_AUTH_SHARED
573#define CEPH_STAT_CAP_NLINK CEPH_CAP_LINK_SHARED
574#define CEPH_STAT_CAP_LAYOUT CEPH_CAP_FILE_SHARED
575#define CEPH_STAT_CAP_MTIME CEPH_CAP_FILE_SHARED
576#define CEPH_STAT_CAP_SIZE CEPH_CAP_FILE_SHARED
577#define CEPH_STAT_CAP_ATIME CEPH_CAP_FILE_SHARED /* fixme */
578#define CEPH_STAT_CAP_XATTR CEPH_CAP_XATTR_SHARED
579#define CEPH_STAT_CAP_INODE_ALL (CEPH_CAP_PIN | \
580 CEPH_CAP_AUTH_SHARED | \
581 CEPH_CAP_LINK_SHARED | \
582 CEPH_CAP_FILE_SHARED | \
583 CEPH_CAP_XATTR_SHARED)
01deead0
YZ
584#define CEPH_STAT_CAP_INLINE_DATA (CEPH_CAP_FILE_SHARED | \
585 CEPH_CAP_FILE_RD)
0dee3c28
SW
586
587#define CEPH_CAP_ANY_SHARED (CEPH_CAP_AUTH_SHARED | \
588 CEPH_CAP_LINK_SHARED | \
589 CEPH_CAP_XATTR_SHARED | \
590 CEPH_CAP_FILE_SHARED)
591#define CEPH_CAP_ANY_RD (CEPH_CAP_ANY_SHARED | CEPH_CAP_FILE_RD | \
592 CEPH_CAP_FILE_CACHE)
593
594#define CEPH_CAP_ANY_EXCL (CEPH_CAP_AUTH_EXCL | \
595 CEPH_CAP_LINK_EXCL | \
596 CEPH_CAP_XATTR_EXCL | \
597 CEPH_CAP_FILE_EXCL)
f98a128a
YZ
598#define CEPH_CAP_ANY_FILE_RD (CEPH_CAP_FILE_RD | CEPH_CAP_FILE_CACHE | \
599 CEPH_CAP_FILE_SHARED)
0dee3c28
SW
600#define CEPH_CAP_ANY_FILE_WR (CEPH_CAP_FILE_WR | CEPH_CAP_FILE_BUFFER | \
601 CEPH_CAP_FILE_EXCL)
602#define CEPH_CAP_ANY_WR (CEPH_CAP_ANY_EXCL | CEPH_CAP_ANY_FILE_WR)
603#define CEPH_CAP_ANY (CEPH_CAP_ANY_RD | CEPH_CAP_ANY_EXCL | \
84d95092
SW
604 CEPH_CAP_ANY_FILE_WR | CEPH_CAP_FILE_LAZYIO | \
605 CEPH_CAP_PIN)
0dee3c28
SW
606
607#define CEPH_CAP_LOCKS (CEPH_LOCK_IFILE | CEPH_LOCK_IAUTH | CEPH_LOCK_ILINK | \
608 CEPH_LOCK_IXATTR)
609
610int ceph_caps_for_mode(int mode);
611
612enum {
613 CEPH_CAP_OP_GRANT, /* mds->client grant */
614 CEPH_CAP_OP_REVOKE, /* mds->client revoke */
615 CEPH_CAP_OP_TRUNC, /* mds->client trunc notify */
616 CEPH_CAP_OP_EXPORT, /* mds has exported the cap */
617 CEPH_CAP_OP_IMPORT, /* mds has imported the cap */
618 CEPH_CAP_OP_UPDATE, /* client->mds update */
619 CEPH_CAP_OP_DROP, /* client->mds drop cap bits */
620 CEPH_CAP_OP_FLUSH, /* client->mds cap writeback */
621 CEPH_CAP_OP_FLUSH_ACK, /* mds->client flushed */
622 CEPH_CAP_OP_FLUSHSNAP, /* client->mds flush snapped metadata */
623 CEPH_CAP_OP_FLUSHSNAP_ACK, /* mds->client flushed snapped metadata */
624 CEPH_CAP_OP_RELEASE, /* client->mds release (clean) cap */
625 CEPH_CAP_OP_RENEW, /* client->mds renewal request */
626};
627
628extern const char *ceph_cap_op_name(int op);
629
630/*
631 * caps message, used for capability callbacks, acks, requests, etc.
632 */
633struct ceph_mds_caps {
634 __le32 op; /* CEPH_CAP_OP_* */
635 __le64 ino, realm;
636 __le64 cap_id;
637 __le32 seq, issue_seq;
638 __le32 caps, wanted, dirty; /* latest issued/wanted/dirty */
639 __le32 migrate_seq;
640 __le64 snap_follows;
641 __le32 snap_trace_len;
0dee3c28
SW
642
643 /* authlock */
644 __le32 uid, gid, mode;
645
646 /* linklock */
647 __le32 nlink;
648
649 /* xattrlock */
650 __le32 xattr_len;
651 __le64 xattr_version;
652
653 /* filelock */
654 __le64 size, max_size, truncate_size;
655 __le32 truncate_seq;
656 struct ceph_timespec mtime, atime, ctime;
657 struct ceph_file_layout layout;
658 __le32 time_warp_seq;
659} __attribute__ ((packed));
660
4ee6a914
YZ
661struct ceph_mds_cap_peer {
662 __le64 cap_id;
663 __le32 seq;
664 __le32 mseq;
665 __le32 mds;
666 __u8 flags;
667} __attribute__ ((packed));
668
0dee3c28
SW
669/* cap release msg head */
670struct ceph_mds_cap_release {
671 __le32 num; /* number of cap_items that follow */
672} __attribute__ ((packed));
673
674struct ceph_mds_cap_item {
675 __le64 ino;
676 __le64 cap_id;
677 __le32 migrate_seq, seq;
678} __attribute__ ((packed));
679
680#define CEPH_MDS_LEASE_REVOKE 1 /* mds -> client */
681#define CEPH_MDS_LEASE_RELEASE 2 /* client -> mds */
682#define CEPH_MDS_LEASE_RENEW 3 /* client <-> mds */
683#define CEPH_MDS_LEASE_REVOKE_ACK 4 /* client -> mds */
684
685extern const char *ceph_lease_op_name(int o);
686
687/* lease msg header */
688struct ceph_mds_lease {
689 __u8 action; /* CEPH_MDS_LEASE_* */
690 __le16 mask; /* which lease */
691 __le64 ino;
692 __le64 first, last; /* snap range */
693 __le32 seq;
694 __le32 duration_ms; /* duration of renewal */
695} __attribute__ ((packed));
696/* followed by a __le32+string for dname */
697
698/* client reconnect */
699struct ceph_mds_cap_reconnect {
20cb34ae
SW
700 __le64 cap_id;
701 __le32 wanted;
702 __le32 issued;
703 __le64 snaprealm;
704 __le64 pathbase; /* base ino for our path to this ino */
705 __le32 flock_len; /* size of flock state blob, if any */
706} __attribute__ ((packed));
707/* followed by flock blob */
708
709struct ceph_mds_cap_reconnect_v1 {
0dee3c28
SW
710 __le64 cap_id;
711 __le32 wanted;
712 __le32 issued;
713 __le64 size;
714 struct ceph_timespec mtime, atime;
715 __le64 snaprealm;
716 __le64 pathbase; /* base ino for our path to this ino */
717} __attribute__ ((packed));
0dee3c28
SW
718
719struct ceph_mds_snaprealm_reconnect {
720 __le64 ino; /* snap realm base */
721 __le64 seq; /* snap seq for this snap realm */
722 __le64 parent; /* parent realm */
723} __attribute__ ((packed));
724
725/*
726 * snaps
727 */
728enum {
729 CEPH_SNAP_OP_UPDATE, /* CREATE or DESTROY */
730 CEPH_SNAP_OP_CREATE,
731 CEPH_SNAP_OP_DESTROY,
732 CEPH_SNAP_OP_SPLIT,
733};
734
735extern const char *ceph_snap_op_name(int o);
736
737/* snap msg header */
738struct ceph_mds_snap_head {
739 __le32 op; /* CEPH_SNAP_OP_* */
740 __le64 split; /* ino to split off, if any */
741 __le32 num_split_inos; /* # inos belonging to new child realm */
742 __le32 num_split_realms; /* # child realms udner new child realm */
743 __le32 trace_len; /* size of snap trace blob */
744} __attribute__ ((packed));
745/* followed by split ino list, then split realms, then the trace blob */
746
747/*
748 * encode info about a snaprealm, as viewed by a client
749 */
750struct ceph_mds_snap_realm {
751 __le64 ino; /* ino */
752 __le64 created; /* snap: when created */
753 __le64 parent; /* ino: parent realm */
754 __le64 parent_since; /* snap: same parent since */
755 __le64 seq; /* snap: version */
756 __le32 num_snaps;
757 __le32 num_prior_parent_snaps;
758} __attribute__ ((packed));
759/* followed by my snap list, then prior parent snap list */
760
761#endif