gfs2_ondisk.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. /*
  2. * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
  3. * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
  4. *
  5. * This copyrighted material is made available to anyone wishing to use,
  6. * modify, copy, or redistribute it subject to the terms and conditions
  7. * of the GNU General Public License v.2.
  8. */
  9. #ifndef __GFS2_ONDISK_DOT_H__
  10. #define __GFS2_ONDISK_DOT_H__
  11. #include <linux/types.h>
  12. #define GFS2_MAGIC 0x01161970
  13. #define GFS2_BASIC_BLOCK 512
  14. #define GFS2_BASIC_BLOCK_SHIFT 9
  15. /* Lock numbers of the LM_TYPE_NONDISK type */
  16. #define GFS2_MOUNT_LOCK 0
  17. #define GFS2_LIVE_LOCK 1
  18. #define GFS2_TRANS_LOCK 2
  19. #define GFS2_RENAME_LOCK 3
  20. /* Format numbers for various metadata types */
  21. #define GFS2_FORMAT_NONE 0
  22. #define GFS2_FORMAT_SB 100
  23. #define GFS2_FORMAT_RG 200
  24. #define GFS2_FORMAT_RB 300
  25. #define GFS2_FORMAT_DI 400
  26. #define GFS2_FORMAT_IN 500
  27. #define GFS2_FORMAT_LF 600
  28. #define GFS2_FORMAT_JD 700
  29. #define GFS2_FORMAT_LH 800
  30. #define GFS2_FORMAT_LD 900
  31. #define GFS2_FORMAT_LB 1000
  32. #define GFS2_FORMAT_EA 1600
  33. #define GFS2_FORMAT_ED 1700
  34. #define GFS2_FORMAT_QC 1400
  35. /* These are format numbers for entities contained in files */
  36. #define GFS2_FORMAT_RI 1100
  37. #define GFS2_FORMAT_DE 1200
  38. #define GFS2_FORMAT_QU 1500
  39. /* These are part of the superblock */
  40. #define GFS2_FORMAT_FS 1801
  41. #define GFS2_FORMAT_MULTI 1900
  42. /*
  43. * An on-disk inode number
  44. */
  45. struct gfs2_inum {
  46. __be64 no_formal_ino;
  47. __be64 no_addr;
  48. };
  49. /*
  50. * Generic metadata head structure
  51. * Every inplace buffer logged in the journal must start with this.
  52. */
  53. #define GFS2_METATYPE_NONE 0
  54. #define GFS2_METATYPE_SB 1
  55. #define GFS2_METATYPE_RG 2
  56. #define GFS2_METATYPE_RB 3
  57. #define GFS2_METATYPE_DI 4
  58. #define GFS2_METATYPE_IN 5
  59. #define GFS2_METATYPE_LF 6
  60. #define GFS2_METATYPE_JD 7
  61. #define GFS2_METATYPE_LH 8
  62. #define GFS2_METATYPE_LD 9
  63. #define GFS2_METATYPE_LB 12
  64. #define GFS2_METATYPE_EA 10
  65. #define GFS2_METATYPE_ED 11
  66. #define GFS2_METATYPE_QC 14
  67. struct gfs2_meta_header {
  68. __be32 mh_magic;
  69. __be32 mh_type;
  70. __be64 __pad0; /* Was generation number in gfs1 */
  71. __be32 mh_format;
  72. /* This union is to keep userspace happy */
  73. union {
  74. __be32 mh_jid; /* Was incarnation number in gfs1 */
  75. __be32 __pad1;
  76. };
  77. };
  78. /*
  79. * super-block structure
  80. *
  81. * It's probably good if SIZEOF_SB <= GFS2_BASIC_BLOCK (512 bytes)
  82. *
  83. * Order is important, need to be able to read old superblocks to do on-disk
  84. * version upgrades.
  85. */
  86. /* Address of superblock in GFS2 basic blocks */
  87. #define GFS2_SB_ADDR 128
  88. /* The lock number for the superblock (must be zero) */
  89. #define GFS2_SB_LOCK 0
  90. /* Requirement: GFS2_LOCKNAME_LEN % 8 == 0
  91. Includes: the fencing zero at the end */
  92. #define GFS2_LOCKNAME_LEN 64
  93. struct gfs2_sb {
  94. struct gfs2_meta_header sb_header;
  95. __be32 sb_fs_format;
  96. __be32 sb_multihost_format;
  97. __u32 __pad0; /* Was superblock flags in gfs1 */
  98. __be32 sb_bsize;
  99. __be32 sb_bsize_shift;
  100. __u32 __pad1; /* Was journal segment size in gfs1 */
  101. struct gfs2_inum sb_master_dir; /* Was jindex dinode in gfs1 */
  102. struct gfs2_inum __pad2; /* Was rindex dinode in gfs1 */
  103. struct gfs2_inum sb_root_dir;
  104. char sb_lockproto[GFS2_LOCKNAME_LEN];
  105. char sb_locktable[GFS2_LOCKNAME_LEN];
  106. struct gfs2_inum __pad3; /* Was quota inode in gfs1 */
  107. struct gfs2_inum __pad4; /* Was licence inode in gfs1 */
  108. #define GFS2_HAS_UUID 1
  109. __u8 sb_uuid[16]; /* The UUID, maybe 0 for backwards compat */
  110. };
  111. /*
  112. * resource index structure
  113. */
  114. struct gfs2_rindex {
  115. __be64 ri_addr; /* grp block disk address */
  116. __be32 ri_length; /* length of rgrp header in fs blocks */
  117. __u32 __pad;
  118. __be64 ri_data0; /* first data location */
  119. __be32 ri_data; /* num of data blocks in rgrp */
  120. __be32 ri_bitbytes; /* number of bytes in data bitmaps */
  121. __u8 ri_reserved[64];
  122. };
  123. /*
  124. * resource group header structure
  125. */
  126. /* Number of blocks per byte in rgrp */
  127. #define GFS2_NBBY 4
  128. #define GFS2_BIT_SIZE 2
  129. #define GFS2_BIT_MASK 0x00000003
  130. #define GFS2_BLKST_FREE 0
  131. #define GFS2_BLKST_USED 1
  132. #define GFS2_BLKST_UNLINKED 2
  133. #define GFS2_BLKST_DINODE 3
  134. #define GFS2_RGF_JOURNAL 0x00000001
  135. #define GFS2_RGF_METAONLY 0x00000002
  136. #define GFS2_RGF_DATAONLY 0x00000004
  137. #define GFS2_RGF_NOALLOC 0x00000008
  138. struct gfs2_rgrp {
  139. struct gfs2_meta_header rg_header;
  140. __be32 rg_flags;
  141. __be32 rg_free;
  142. __be32 rg_dinodes;
  143. __be32 __pad;
  144. __be64 rg_igeneration;
  145. __u8 rg_reserved[80]; /* Several fields from gfs1 now reserved */
  146. };
  147. /*
  148. * quota linked list: user quotas and group quotas form two separate
  149. * singly linked lists. ll_next stores uids or gids of next quotas in the
  150. * linked list.
  151. Given the uid/gid, how to calculate the quota file offsets for the corresponding
  152. gfs2_quota structures on disk:
  153. for user quotas, given uid,
  154. offset = uid * sizeof(struct gfs2_quota);
  155. for group quotas, given gid,
  156. offset = (gid * sizeof(struct gfs2_quota)) + sizeof(struct gfs2_quota);
  157. uid:0 gid:0 uid:12 gid:12 uid:17 gid:17 uid:5142 gid:5142
  158. +-------+-------+ +-------+-------+ +-------+- - - -+ +- - - -+-------+
  159. | valid | valid | :: | valid | valid | :: | valid | inval | :: | inval | valid |
  160. +-------+-------+ +-------+-------+ +-------+- - - -+ +- - - -+-------+
  161. next:12 next:12 next:17 next:5142 next:NULL next:NULL
  162. | | | | |<-- user quota list |
  163. \______|___________/ \______|___________/ group quota list -->|
  164. | | |
  165. \__________________/ \_______________________________________/
  166. */
  167. /*
  168. * quota structure
  169. */
  170. struct gfs2_quota {
  171. __be64 qu_limit;
  172. __be64 qu_warn;
  173. __be64 qu_value;
  174. __be32 qu_ll_next; /* location of next quota in list */
  175. __u8 qu_reserved[60];
  176. };
  177. /*
  178. * dinode structure
  179. */
  180. #define GFS2_MAX_META_HEIGHT 10
  181. #define GFS2_DIR_MAX_DEPTH 17
  182. #define DT2IF(dt) (((dt) << 12) & S_IFMT)
  183. #define IF2DT(sif) (((sif) & S_IFMT) >> 12)
  184. enum {
  185. gfs2fl_Jdata = 0,
  186. gfs2fl_ExHash = 1,
  187. gfs2fl_Unused = 2,
  188. gfs2fl_EaIndirect = 3,
  189. gfs2fl_Directio = 4,
  190. gfs2fl_Immutable = 5,
  191. gfs2fl_AppendOnly = 6,
  192. gfs2fl_NoAtime = 7,
  193. gfs2fl_Sync = 8,
  194. gfs2fl_System = 9,
  195. gfs2fl_TruncInProg = 29,
  196. gfs2fl_InheritDirectio = 30,
  197. gfs2fl_InheritJdata = 31,
  198. };
  199. /* Dinode flags */
  200. #define GFS2_DIF_JDATA 0x00000001
  201. #define GFS2_DIF_EXHASH 0x00000002
  202. #define GFS2_DIF_UNUSED 0x00000004 /* only in gfs1 */
  203. #define GFS2_DIF_EA_INDIRECT 0x00000008
  204. #define GFS2_DIF_DIRECTIO 0x00000010
  205. #define GFS2_DIF_IMMUTABLE 0x00000020
  206. #define GFS2_DIF_APPENDONLY 0x00000040
  207. #define GFS2_DIF_NOATIME 0x00000080
  208. #define GFS2_DIF_SYNC 0x00000100
  209. #define GFS2_DIF_SYSTEM 0x00000200 /* New in gfs2 */
  210. #define GFS2_DIF_TRUNC_IN_PROG 0x20000000 /* New in gfs2 */
  211. #define GFS2_DIF_INHERIT_DIRECTIO 0x40000000
  212. #define GFS2_DIF_INHERIT_JDATA 0x80000000
  213. struct gfs2_dinode {
  214. struct gfs2_meta_header di_header;
  215. struct gfs2_inum di_num;
  216. __be32 di_mode; /* mode of file */
  217. __be32 di_uid; /* owner's user id */
  218. __be32 di_gid; /* owner's group id */
  219. __be32 di_nlink; /* number of links to this file */
  220. __be64 di_size; /* number of bytes in file */
  221. __be64 di_blocks; /* number of blocks in file */
  222. __be64 di_atime; /* time last accessed */
  223. __be64 di_mtime; /* time last modified */
  224. __be64 di_ctime; /* time last changed */
  225. __be32 di_major; /* device major number */
  226. __be32 di_minor; /* device minor number */
  227. /* This section varies from gfs1. Padding added to align with
  228. * remainder of dinode
  229. */
  230. __be64 di_goal_meta; /* rgrp to alloc from next */
  231. __be64 di_goal_data; /* data block goal */
  232. __be64 di_generation; /* generation number for NFS */
  233. __be32 di_flags; /* GFS2_DIF_... */
  234. __be32 di_payload_format; /* GFS2_FORMAT_... */
  235. __u16 __pad1; /* Was ditype in gfs1 */
  236. __be16 di_height; /* height of metadata */
  237. __u32 __pad2; /* Unused incarnation number from gfs1 */
  238. /* These only apply to directories */
  239. __u16 __pad3; /* Padding */
  240. __be16 di_depth; /* Number of bits in the table */
  241. __be32 di_entries; /* The number of entries in the directory */
  242. struct gfs2_inum __pad4; /* Unused even in current gfs1 */
  243. __be64 di_eattr; /* extended attribute block number */
  244. __be32 di_atime_nsec; /* nsec portion of atime */
  245. __be32 di_mtime_nsec; /* nsec portion of mtime */
  246. __be32 di_ctime_nsec; /* nsec portion of ctime */
  247. __u8 di_reserved[44];
  248. };
  249. /*
  250. * directory structure - many of these per directory file
  251. */
  252. #define GFS2_FNAMESIZE 255
  253. #define GFS2_DIRENT_SIZE(name_len) ((sizeof(struct gfs2_dirent) + (name_len) + 7) & ~7)
  254. struct gfs2_dirent {
  255. struct gfs2_inum de_inum;
  256. __be32 de_hash;
  257. __be16 de_rec_len;
  258. __be16 de_name_len;
  259. __be16 de_type;
  260. __u8 __pad[14];
  261. };
  262. /*
  263. * Header of leaf directory nodes
  264. */
  265. struct gfs2_leaf {
  266. struct gfs2_meta_header lf_header;
  267. __be16 lf_depth; /* Depth of leaf */
  268. __be16 lf_entries; /* Number of dirents in leaf */
  269. __be32 lf_dirent_format; /* Format of the dirents */
  270. __be64 lf_next; /* Next leaf, if overflow */
  271. __u8 lf_reserved[64];
  272. };
  273. /*
  274. * Extended attribute header format
  275. *
  276. * This works in a similar way to dirents. There is a fixed size header
  277. * followed by a variable length section made up of the name and the
  278. * associated data. In the case of a "stuffed" entry, the value is
  279. * inline directly after the name, the ea_num_ptrs entry will be
  280. * zero in that case. For non-"stuffed" entries, there will be
  281. * a set of pointers (aligned to 8 byte boundary) to the block(s)
  282. * containing the value.
  283. *
  284. * The blocks containing the values and the blocks containing the
  285. * extended attribute headers themselves all start with the common
  286. * metadata header. Each inode, if it has extended attributes, will
  287. * have either a single block containing the extended attribute headers
  288. * or a single indirect block pointing to blocks containing the
  289. * extended attribure headers.
  290. *
  291. * The maximim size of the data part of an extended attribute is 64k
  292. * so the number of blocks required depends upon block size. Since the
  293. * block size also determines the number of pointers in an indirect
  294. * block, its a fairly complicated calculation to work out the maximum
  295. * number of blocks that an inode may have relating to extended attributes.
  296. *
  297. */
  298. #define GFS2_EA_MAX_NAME_LEN 255
  299. #define GFS2_EA_MAX_DATA_LEN 65536
  300. #define GFS2_EATYPE_UNUSED 0
  301. #define GFS2_EATYPE_USR 1
  302. #define GFS2_EATYPE_SYS 2
  303. #define GFS2_EATYPE_SECURITY 3
  304. #define GFS2_EATYPE_LAST 3
  305. #define GFS2_EATYPE_VALID(x) ((x) <= GFS2_EATYPE_LAST)
  306. #define GFS2_EAFLAG_LAST 0x01 /* last ea in block */
  307. struct gfs2_ea_header {
  308. __be32 ea_rec_len;
  309. __be32 ea_data_len;
  310. __u8 ea_name_len; /* no NULL pointer after the string */
  311. __u8 ea_type; /* GFS2_EATYPE_... */
  312. __u8 ea_flags; /* GFS2_EAFLAG_... */
  313. __u8 ea_num_ptrs;
  314. __u32 __pad;
  315. };
  316. /*
  317. * Log header structure
  318. */
  319. #define GFS2_LOG_HEAD_UNMOUNT 0x00000001 /* log is clean */
  320. struct gfs2_log_header {
  321. struct gfs2_meta_header lh_header;
  322. __be64 lh_sequence; /* Sequence number of this transaction */
  323. __be32 lh_flags; /* GFS2_LOG_HEAD_... */
  324. __be32 lh_tail; /* Block number of log tail */
  325. __be32 lh_blkno;
  326. __be32 lh_hash;
  327. };
  328. /*
  329. * Log type descriptor
  330. */
  331. #define GFS2_LOG_DESC_METADATA 300
  332. /* ld_data1 is the number of metadata blocks in the descriptor.
  333. ld_data2 is unused. */
  334. #define GFS2_LOG_DESC_REVOKE 301
  335. /* ld_data1 is the number of revoke blocks in the descriptor.
  336. ld_data2 is unused. */
  337. #define GFS2_LOG_DESC_JDATA 302
  338. /* ld_data1 is the number of data blocks in the descriptor.
  339. ld_data2 is unused. */
  340. struct gfs2_log_descriptor {
  341. struct gfs2_meta_header ld_header;
  342. __be32 ld_type; /* GFS2_LOG_DESC_... */
  343. __be32 ld_length; /* Number of buffers in this chunk */
  344. __be32 ld_data1; /* descriptor-specific field */
  345. __be32 ld_data2; /* descriptor-specific field */
  346. __u8 ld_reserved[32];
  347. };
  348. /*
  349. * Inum Range
  350. * Describe a range of formal inode numbers allocated to
  351. * one machine to assign to inodes.
  352. */
  353. #define GFS2_INUM_QUANTUM 1048576
  354. struct gfs2_inum_range {
  355. __be64 ir_start;
  356. __be64 ir_length;
  357. };
  358. /*
  359. * Statfs change
  360. * Describes an change to the pool of free and allocated
  361. * blocks.
  362. */
  363. struct gfs2_statfs_change {
  364. __be64 sc_total;
  365. __be64 sc_free;
  366. __be64 sc_dinodes;
  367. };
  368. /*
  369. * Quota change
  370. * Describes an allocation change for a particular
  371. * user or group.
  372. */
  373. #define GFS2_QCF_USER 0x00000001
  374. struct gfs2_quota_change {
  375. __be64 qc_change;
  376. __be32 qc_flags; /* GFS2_QCF_... */
  377. __be32 qc_id;
  378. };
  379. struct gfs2_quota_lvb {
  380. __be32 qb_magic;
  381. __u32 __pad;
  382. __be64 qb_limit; /* Hard limit of # blocks to alloc */
  383. __be64 qb_warn; /* Warn user when alloc is above this # */
  384. __be64 qb_value; /* Current # blocks allocated */
  385. };
  386. #endif /* __GFS2_ONDISK_DOT_H__ */