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