ext3.h 44 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327
  1. /*
  2. * Written by Stephen C. Tweedie <sct@redhat.com>, 1999
  3. *
  4. * Copyright 1998--1999 Red Hat corp --- All Rights Reserved
  5. *
  6. * This file is part of the Linux kernel and is made available under
  7. * the terms of the GNU General Public License, version 2, or at your
  8. * option, any later version, incorporated herein by reference.
  9. *
  10. * Copyright (C) 1992, 1993, 1994, 1995
  11. * Remy Card (card@masi.ibp.fr)
  12. * Laboratoire MASI - Institut Blaise Pascal
  13. * Universite Pierre et Marie Curie (Paris VI)
  14. *
  15. * from
  16. *
  17. * linux/include/linux/minix_fs.h
  18. *
  19. * Copyright (C) 1991, 1992 Linus Torvalds
  20. */
  21. #include <linux/fs.h>
  22. #include <linux/jbd.h>
  23. #include <linux/magic.h>
  24. #include <linux/bug.h>
  25. #include <linux/blockgroup_lock.h>
  26. /*
  27. * The second extended filesystem constants/structures
  28. */
  29. /*
  30. * Define EXT3FS_DEBUG to produce debug messages
  31. */
  32. #undef EXT3FS_DEBUG
  33. /*
  34. * Define EXT3_RESERVATION to reserve data blocks for expanding files
  35. */
  36. #define EXT3_DEFAULT_RESERVE_BLOCKS 8
  37. /*max window size: 1024(direct blocks) + 3([t,d]indirect blocks) */
  38. #define EXT3_MAX_RESERVE_BLOCKS 1027
  39. #define EXT3_RESERVE_WINDOW_NOT_ALLOCATED 0
  40. /*
  41. * Debug code
  42. */
  43. #ifdef EXT3FS_DEBUG
  44. #define ext3_debug(f, a...) \
  45. do { \
  46. printk (KERN_DEBUG "EXT3-fs DEBUG (%s, %d): %s:", \
  47. __FILE__, __LINE__, __func__); \
  48. printk (KERN_DEBUG f, ## a); \
  49. } while (0)
  50. #else
  51. #define ext3_debug(f, a...) do {} while (0)
  52. #endif
  53. /*
  54. * Special inodes numbers
  55. */
  56. #define EXT3_BAD_INO 1 /* Bad blocks inode */
  57. #define EXT3_ROOT_INO 2 /* Root inode */
  58. #define EXT3_BOOT_LOADER_INO 5 /* Boot loader inode */
  59. #define EXT3_UNDEL_DIR_INO 6 /* Undelete directory inode */
  60. #define EXT3_RESIZE_INO 7 /* Reserved group descriptors inode */
  61. #define EXT3_JOURNAL_INO 8 /* Journal inode */
  62. /* First non-reserved inode for old ext3 filesystems */
  63. #define EXT3_GOOD_OLD_FIRST_INO 11
  64. /*
  65. * Maximal count of links to a file
  66. */
  67. #define EXT3_LINK_MAX 32000
  68. /*
  69. * Macro-instructions used to manage several block sizes
  70. */
  71. #define EXT3_MIN_BLOCK_SIZE 1024
  72. #define EXT3_MAX_BLOCK_SIZE 65536
  73. #define EXT3_MIN_BLOCK_LOG_SIZE 10
  74. #define EXT3_BLOCK_SIZE(s) ((s)->s_blocksize)
  75. #define EXT3_ADDR_PER_BLOCK(s) (EXT3_BLOCK_SIZE(s) / sizeof (__u32))
  76. #define EXT3_BLOCK_SIZE_BITS(s) ((s)->s_blocksize_bits)
  77. #define EXT3_ADDR_PER_BLOCK_BITS(s) (EXT3_SB(s)->s_addr_per_block_bits)
  78. #define EXT3_INODE_SIZE(s) (EXT3_SB(s)->s_inode_size)
  79. #define EXT3_FIRST_INO(s) (EXT3_SB(s)->s_first_ino)
  80. /*
  81. * Macro-instructions used to manage fragments
  82. */
  83. #define EXT3_MIN_FRAG_SIZE 1024
  84. #define EXT3_MAX_FRAG_SIZE 4096
  85. #define EXT3_MIN_FRAG_LOG_SIZE 10
  86. #define EXT3_FRAG_SIZE(s) (EXT3_SB(s)->s_frag_size)
  87. #define EXT3_FRAGS_PER_BLOCK(s) (EXT3_SB(s)->s_frags_per_block)
  88. /*
  89. * Structure of a blocks group descriptor
  90. */
  91. struct ext3_group_desc
  92. {
  93. __le32 bg_block_bitmap; /* Blocks bitmap block */
  94. __le32 bg_inode_bitmap; /* Inodes bitmap block */
  95. __le32 bg_inode_table; /* Inodes table block */
  96. __le16 bg_free_blocks_count; /* Free blocks count */
  97. __le16 bg_free_inodes_count; /* Free inodes count */
  98. __le16 bg_used_dirs_count; /* Directories count */
  99. __u16 bg_pad;
  100. __le32 bg_reserved[3];
  101. };
  102. /*
  103. * Macro-instructions used to manage group descriptors
  104. */
  105. #define EXT3_BLOCKS_PER_GROUP(s) (EXT3_SB(s)->s_blocks_per_group)
  106. #define EXT3_DESC_PER_BLOCK(s) (EXT3_SB(s)->s_desc_per_block)
  107. #define EXT3_INODES_PER_GROUP(s) (EXT3_SB(s)->s_inodes_per_group)
  108. #define EXT3_DESC_PER_BLOCK_BITS(s) (EXT3_SB(s)->s_desc_per_block_bits)
  109. /*
  110. * Constants relative to the data blocks
  111. */
  112. #define EXT3_NDIR_BLOCKS 12
  113. #define EXT3_IND_BLOCK EXT3_NDIR_BLOCKS
  114. #define EXT3_DIND_BLOCK (EXT3_IND_BLOCK + 1)
  115. #define EXT3_TIND_BLOCK (EXT3_DIND_BLOCK + 1)
  116. #define EXT3_N_BLOCKS (EXT3_TIND_BLOCK + 1)
  117. /*
  118. * Inode flags
  119. */
  120. #define EXT3_SECRM_FL 0x00000001 /* Secure deletion */
  121. #define EXT3_UNRM_FL 0x00000002 /* Undelete */
  122. #define EXT3_COMPR_FL 0x00000004 /* Compress file */
  123. #define EXT3_SYNC_FL 0x00000008 /* Synchronous updates */
  124. #define EXT3_IMMUTABLE_FL 0x00000010 /* Immutable file */
  125. #define EXT3_APPEND_FL 0x00000020 /* writes to file may only append */
  126. #define EXT3_NODUMP_FL 0x00000040 /* do not dump file */
  127. #define EXT3_NOATIME_FL 0x00000080 /* do not update atime */
  128. /* Reserved for compression usage... */
  129. #define EXT3_DIRTY_FL 0x00000100
  130. #define EXT3_COMPRBLK_FL 0x00000200 /* One or more compressed clusters */
  131. #define EXT3_NOCOMPR_FL 0x00000400 /* Don't compress */
  132. #define EXT3_ECOMPR_FL 0x00000800 /* Compression error */
  133. /* End compression flags --- maybe not all used */
  134. #define EXT3_INDEX_FL 0x00001000 /* hash-indexed directory */
  135. #define EXT3_IMAGIC_FL 0x00002000 /* AFS directory */
  136. #define EXT3_JOURNAL_DATA_FL 0x00004000 /* file data should be journaled */
  137. #define EXT3_NOTAIL_FL 0x00008000 /* file tail should not be merged */
  138. #define EXT3_DIRSYNC_FL 0x00010000 /* dirsync behaviour (directories only) */
  139. #define EXT3_TOPDIR_FL 0x00020000 /* Top of directory hierarchies*/
  140. #define EXT3_RESERVED_FL 0x80000000 /* reserved for ext3 lib */
  141. #define EXT3_FL_USER_VISIBLE 0x0003DFFF /* User visible flags */
  142. #define EXT3_FL_USER_MODIFIABLE 0x000380FF /* User modifiable flags */
  143. /* Flags that should be inherited by new inodes from their parent. */
  144. #define EXT3_FL_INHERITED (EXT3_SECRM_FL | EXT3_UNRM_FL | EXT3_COMPR_FL |\
  145. EXT3_SYNC_FL | EXT3_NODUMP_FL |\
  146. EXT3_NOATIME_FL | EXT3_COMPRBLK_FL |\
  147. EXT3_NOCOMPR_FL | EXT3_JOURNAL_DATA_FL |\
  148. EXT3_NOTAIL_FL | EXT3_DIRSYNC_FL)
  149. /* Flags that are appropriate for regular files (all but dir-specific ones). */
  150. #define EXT3_REG_FLMASK (~(EXT3_DIRSYNC_FL | EXT3_TOPDIR_FL))
  151. /* Flags that are appropriate for non-directories/regular files. */
  152. #define EXT3_OTHER_FLMASK (EXT3_NODUMP_FL | EXT3_NOATIME_FL)
  153. /* Mask out flags that are inappropriate for the given type of inode. */
  154. static inline __u32 ext3_mask_flags(umode_t mode, __u32 flags)
  155. {
  156. if (S_ISDIR(mode))
  157. return flags;
  158. else if (S_ISREG(mode))
  159. return flags & EXT3_REG_FLMASK;
  160. else
  161. return flags & EXT3_OTHER_FLMASK;
  162. }
  163. /* Used to pass group descriptor data when online resize is done */
  164. struct ext3_new_group_input {
  165. __u32 group; /* Group number for this data */
  166. __u32 block_bitmap; /* Absolute block number of block bitmap */
  167. __u32 inode_bitmap; /* Absolute block number of inode bitmap */
  168. __u32 inode_table; /* Absolute block number of inode table start */
  169. __u32 blocks_count; /* Total number of blocks in this group */
  170. __u16 reserved_blocks; /* Number of reserved blocks in this group */
  171. __u16 unused;
  172. };
  173. /* The struct ext3_new_group_input in kernel space, with free_blocks_count */
  174. struct ext3_new_group_data {
  175. __u32 group;
  176. __u32 block_bitmap;
  177. __u32 inode_bitmap;
  178. __u32 inode_table;
  179. __u32 blocks_count;
  180. __u16 reserved_blocks;
  181. __u16 unused;
  182. __u32 free_blocks_count;
  183. };
  184. /*
  185. * ioctl commands
  186. */
  187. #define EXT3_IOC_GETFLAGS FS_IOC_GETFLAGS
  188. #define EXT3_IOC_SETFLAGS FS_IOC_SETFLAGS
  189. #define EXT3_IOC_GETVERSION _IOR('f', 3, long)
  190. #define EXT3_IOC_SETVERSION _IOW('f', 4, long)
  191. #define EXT3_IOC_GROUP_EXTEND _IOW('f', 7, unsigned long)
  192. #define EXT3_IOC_GROUP_ADD _IOW('f', 8,struct ext3_new_group_input)
  193. #define EXT3_IOC_GETVERSION_OLD FS_IOC_GETVERSION
  194. #define EXT3_IOC_SETVERSION_OLD FS_IOC_SETVERSION
  195. #ifdef CONFIG_JBD_DEBUG
  196. #define EXT3_IOC_WAIT_FOR_READONLY _IOR('f', 99, long)
  197. #endif
  198. #define EXT3_IOC_GETRSVSZ _IOR('f', 5, long)
  199. #define EXT3_IOC_SETRSVSZ _IOW('f', 6, long)
  200. /*
  201. * ioctl commands in 32 bit emulation
  202. */
  203. #define EXT3_IOC32_GETFLAGS FS_IOC32_GETFLAGS
  204. #define EXT3_IOC32_SETFLAGS FS_IOC32_SETFLAGS
  205. #define EXT3_IOC32_GETVERSION _IOR('f', 3, int)
  206. #define EXT3_IOC32_SETVERSION _IOW('f', 4, int)
  207. #define EXT3_IOC32_GETRSVSZ _IOR('f', 5, int)
  208. #define EXT3_IOC32_SETRSVSZ _IOW('f', 6, int)
  209. #define EXT3_IOC32_GROUP_EXTEND _IOW('f', 7, unsigned int)
  210. #ifdef CONFIG_JBD_DEBUG
  211. #define EXT3_IOC32_WAIT_FOR_READONLY _IOR('f', 99, int)
  212. #endif
  213. #define EXT3_IOC32_GETVERSION_OLD FS_IOC32_GETVERSION
  214. #define EXT3_IOC32_SETVERSION_OLD FS_IOC32_SETVERSION
  215. /*
  216. * Mount options
  217. */
  218. struct ext3_mount_options {
  219. unsigned long s_mount_opt;
  220. uid_t s_resuid;
  221. gid_t s_resgid;
  222. unsigned long s_commit_interval;
  223. #ifdef CONFIG_QUOTA
  224. int s_jquota_fmt;
  225. char *s_qf_names[MAXQUOTAS];
  226. #endif
  227. };
  228. /*
  229. * Structure of an inode on the disk
  230. */
  231. struct ext3_inode {
  232. __le16 i_mode; /* File mode */
  233. __le16 i_uid; /* Low 16 bits of Owner Uid */
  234. __le32 i_size; /* Size in bytes */
  235. __le32 i_atime; /* Access time */
  236. __le32 i_ctime; /* Creation time */
  237. __le32 i_mtime; /* Modification time */
  238. __le32 i_dtime; /* Deletion Time */
  239. __le16 i_gid; /* Low 16 bits of Group Id */
  240. __le16 i_links_count; /* Links count */
  241. __le32 i_blocks; /* Blocks count */
  242. __le32 i_flags; /* File flags */
  243. union {
  244. struct {
  245. __u32 l_i_reserved1;
  246. } linux1;
  247. struct {
  248. __u32 h_i_translator;
  249. } hurd1;
  250. struct {
  251. __u32 m_i_reserved1;
  252. } masix1;
  253. } osd1; /* OS dependent 1 */
  254. __le32 i_block[EXT3_N_BLOCKS];/* Pointers to blocks */
  255. __le32 i_generation; /* File version (for NFS) */
  256. __le32 i_file_acl; /* File ACL */
  257. __le32 i_dir_acl; /* Directory ACL */
  258. __le32 i_faddr; /* Fragment address */
  259. union {
  260. struct {
  261. __u8 l_i_frag; /* Fragment number */
  262. __u8 l_i_fsize; /* Fragment size */
  263. __u16 i_pad1;
  264. __le16 l_i_uid_high; /* these 2 fields */
  265. __le16 l_i_gid_high; /* were reserved2[0] */
  266. __u32 l_i_reserved2;
  267. } linux2;
  268. struct {
  269. __u8 h_i_frag; /* Fragment number */
  270. __u8 h_i_fsize; /* Fragment size */
  271. __u16 h_i_mode_high;
  272. __u16 h_i_uid_high;
  273. __u16 h_i_gid_high;
  274. __u32 h_i_author;
  275. } hurd2;
  276. struct {
  277. __u8 m_i_frag; /* Fragment number */
  278. __u8 m_i_fsize; /* Fragment size */
  279. __u16 m_pad1;
  280. __u32 m_i_reserved2[2];
  281. } masix2;
  282. } osd2; /* OS dependent 2 */
  283. __le16 i_extra_isize;
  284. __le16 i_pad1;
  285. };
  286. #define i_size_high i_dir_acl
  287. #define i_reserved1 osd1.linux1.l_i_reserved1
  288. #define i_frag osd2.linux2.l_i_frag
  289. #define i_fsize osd2.linux2.l_i_fsize
  290. #define i_uid_low i_uid
  291. #define i_gid_low i_gid
  292. #define i_uid_high osd2.linux2.l_i_uid_high
  293. #define i_gid_high osd2.linux2.l_i_gid_high
  294. #define i_reserved2 osd2.linux2.l_i_reserved2
  295. /*
  296. * File system states
  297. */
  298. #define EXT3_VALID_FS 0x0001 /* Unmounted cleanly */
  299. #define EXT3_ERROR_FS 0x0002 /* Errors detected */
  300. #define EXT3_ORPHAN_FS 0x0004 /* Orphans being recovered */
  301. /*
  302. * Misc. filesystem flags
  303. */
  304. #define EXT2_FLAGS_SIGNED_HASH 0x0001 /* Signed dirhash in use */
  305. #define EXT2_FLAGS_UNSIGNED_HASH 0x0002 /* Unsigned dirhash in use */
  306. #define EXT2_FLAGS_TEST_FILESYS 0x0004 /* to test development code */
  307. /*
  308. * Mount flags
  309. */
  310. #define EXT3_MOUNT_CHECK 0x00001 /* Do mount-time checks */
  311. /* EXT3_MOUNT_OLDALLOC was there */
  312. #define EXT3_MOUNT_GRPID 0x00004 /* Create files with directory's group */
  313. #define EXT3_MOUNT_DEBUG 0x00008 /* Some debugging messages */
  314. #define EXT3_MOUNT_ERRORS_CONT 0x00010 /* Continue on errors */
  315. #define EXT3_MOUNT_ERRORS_RO 0x00020 /* Remount fs ro on errors */
  316. #define EXT3_MOUNT_ERRORS_PANIC 0x00040 /* Panic on errors */
  317. #define EXT3_MOUNT_MINIX_DF 0x00080 /* Mimics the Minix statfs */
  318. #define EXT3_MOUNT_NOLOAD 0x00100 /* Don't use existing journal*/
  319. #define EXT3_MOUNT_ABORT 0x00200 /* Fatal error detected */
  320. #define EXT3_MOUNT_DATA_FLAGS 0x00C00 /* Mode for data writes: */
  321. #define EXT3_MOUNT_JOURNAL_DATA 0x00400 /* Write data to journal */
  322. #define EXT3_MOUNT_ORDERED_DATA 0x00800 /* Flush data before commit */
  323. #define EXT3_MOUNT_WRITEBACK_DATA 0x00C00 /* No data ordering */
  324. #define EXT3_MOUNT_UPDATE_JOURNAL 0x01000 /* Update the journal format */
  325. #define EXT3_MOUNT_NO_UID32 0x02000 /* Disable 32-bit UIDs */
  326. #define EXT3_MOUNT_XATTR_USER 0x04000 /* Extended user attributes */
  327. #define EXT3_MOUNT_POSIX_ACL 0x08000 /* POSIX Access Control Lists */
  328. #define EXT3_MOUNT_RESERVATION 0x10000 /* Preallocation */
  329. #define EXT3_MOUNT_BARRIER 0x20000 /* Use block barriers */
  330. #define EXT3_MOUNT_QUOTA 0x80000 /* Some quota option set */
  331. #define EXT3_MOUNT_USRQUOTA 0x100000 /* "old" user quota */
  332. #define EXT3_MOUNT_GRPQUOTA 0x200000 /* "old" group quota */
  333. #define EXT3_MOUNT_DATA_ERR_ABORT 0x400000 /* Abort on file data write
  334. * error in ordered mode */
  335. /* Compatibility, for having both ext2_fs.h and ext3_fs.h included at once */
  336. #ifndef _LINUX_EXT2_FS_H
  337. #define clear_opt(o, opt) o &= ~EXT3_MOUNT_##opt
  338. #define set_opt(o, opt) o |= EXT3_MOUNT_##opt
  339. #define test_opt(sb, opt) (EXT3_SB(sb)->s_mount_opt & \
  340. EXT3_MOUNT_##opt)
  341. #else
  342. #define EXT2_MOUNT_NOLOAD EXT3_MOUNT_NOLOAD
  343. #define EXT2_MOUNT_ABORT EXT3_MOUNT_ABORT
  344. #define EXT2_MOUNT_DATA_FLAGS EXT3_MOUNT_DATA_FLAGS
  345. #endif
  346. #define ext3_set_bit __set_bit_le
  347. #define ext3_set_bit_atomic ext2_set_bit_atomic
  348. #define ext3_clear_bit __clear_bit_le
  349. #define ext3_clear_bit_atomic ext2_clear_bit_atomic
  350. #define ext3_test_bit test_bit_le
  351. #define ext3_find_next_zero_bit find_next_zero_bit_le
  352. /*
  353. * Maximal mount counts between two filesystem checks
  354. */
  355. #define EXT3_DFL_MAX_MNT_COUNT 20 /* Allow 20 mounts */
  356. #define EXT3_DFL_CHECKINTERVAL 0 /* Don't use interval check */
  357. /*
  358. * Behaviour when detecting errors
  359. */
  360. #define EXT3_ERRORS_CONTINUE 1 /* Continue execution */
  361. #define EXT3_ERRORS_RO 2 /* Remount fs read-only */
  362. #define EXT3_ERRORS_PANIC 3 /* Panic */
  363. #define EXT3_ERRORS_DEFAULT EXT3_ERRORS_CONTINUE
  364. /*
  365. * Structure of the super block
  366. */
  367. struct ext3_super_block {
  368. /*00*/ __le32 s_inodes_count; /* Inodes count */
  369. __le32 s_blocks_count; /* Blocks count */
  370. __le32 s_r_blocks_count; /* Reserved blocks count */
  371. __le32 s_free_blocks_count; /* Free blocks count */
  372. /*10*/ __le32 s_free_inodes_count; /* Free inodes count */
  373. __le32 s_first_data_block; /* First Data Block */
  374. __le32 s_log_block_size; /* Block size */
  375. __le32 s_log_frag_size; /* Fragment size */
  376. /*20*/ __le32 s_blocks_per_group; /* # Blocks per group */
  377. __le32 s_frags_per_group; /* # Fragments per group */
  378. __le32 s_inodes_per_group; /* # Inodes per group */
  379. __le32 s_mtime; /* Mount time */
  380. /*30*/ __le32 s_wtime; /* Write time */
  381. __le16 s_mnt_count; /* Mount count */
  382. __le16 s_max_mnt_count; /* Maximal mount count */
  383. __le16 s_magic; /* Magic signature */
  384. __le16 s_state; /* File system state */
  385. __le16 s_errors; /* Behaviour when detecting errors */
  386. __le16 s_minor_rev_level; /* minor revision level */
  387. /*40*/ __le32 s_lastcheck; /* time of last check */
  388. __le32 s_checkinterval; /* max. time between checks */
  389. __le32 s_creator_os; /* OS */
  390. __le32 s_rev_level; /* Revision level */
  391. /*50*/ __le16 s_def_resuid; /* Default uid for reserved blocks */
  392. __le16 s_def_resgid; /* Default gid for reserved blocks */
  393. /*
  394. * These fields are for EXT3_DYNAMIC_REV superblocks only.
  395. *
  396. * Note: the difference between the compatible feature set and
  397. * the incompatible feature set is that if there is a bit set
  398. * in the incompatible feature set that the kernel doesn't
  399. * know about, it should refuse to mount the filesystem.
  400. *
  401. * e2fsck's requirements are more strict; if it doesn't know
  402. * about a feature in either the compatible or incompatible
  403. * feature set, it must abort and not try to meddle with
  404. * things it doesn't understand...
  405. */
  406. __le32 s_first_ino; /* First non-reserved inode */
  407. __le16 s_inode_size; /* size of inode structure */
  408. __le16 s_block_group_nr; /* block group # of this superblock */
  409. __le32 s_feature_compat; /* compatible feature set */
  410. /*60*/ __le32 s_feature_incompat; /* incompatible feature set */
  411. __le32 s_feature_ro_compat; /* readonly-compatible feature set */
  412. /*68*/ __u8 s_uuid[16]; /* 128-bit uuid for volume */
  413. /*78*/ char s_volume_name[16]; /* volume name */
  414. /*88*/ char s_last_mounted[64]; /* directory where last mounted */
  415. /*C8*/ __le32 s_algorithm_usage_bitmap; /* For compression */
  416. /*
  417. * Performance hints. Directory preallocation should only
  418. * happen if the EXT3_FEATURE_COMPAT_DIR_PREALLOC flag is on.
  419. */
  420. __u8 s_prealloc_blocks; /* Nr of blocks to try to preallocate*/
  421. __u8 s_prealloc_dir_blocks; /* Nr to preallocate for dirs */
  422. __le16 s_reserved_gdt_blocks; /* Per group desc for online growth */
  423. /*
  424. * Journaling support valid if EXT3_FEATURE_COMPAT_HAS_JOURNAL set.
  425. */
  426. /*D0*/ __u8 s_journal_uuid[16]; /* uuid of journal superblock */
  427. /*E0*/ __le32 s_journal_inum; /* inode number of journal file */
  428. __le32 s_journal_dev; /* device number of journal file */
  429. __le32 s_last_orphan; /* start of list of inodes to delete */
  430. __le32 s_hash_seed[4]; /* HTREE hash seed */
  431. __u8 s_def_hash_version; /* Default hash version to use */
  432. __u8 s_reserved_char_pad;
  433. __u16 s_reserved_word_pad;
  434. __le32 s_default_mount_opts;
  435. __le32 s_first_meta_bg; /* First metablock block group */
  436. __le32 s_mkfs_time; /* When the filesystem was created */
  437. __le32 s_jnl_blocks[17]; /* Backup of the journal inode */
  438. /* 64bit support valid if EXT4_FEATURE_COMPAT_64BIT */
  439. /*150*/ __le32 s_blocks_count_hi; /* Blocks count */
  440. __le32 s_r_blocks_count_hi; /* Reserved blocks count */
  441. __le32 s_free_blocks_count_hi; /* Free blocks count */
  442. __le16 s_min_extra_isize; /* All inodes have at least # bytes */
  443. __le16 s_want_extra_isize; /* New inodes should reserve # bytes */
  444. __le32 s_flags; /* Miscellaneous flags */
  445. __le16 s_raid_stride; /* RAID stride */
  446. __le16 s_mmp_interval; /* # seconds to wait in MMP checking */
  447. __le64 s_mmp_block; /* Block for multi-mount protection */
  448. __le32 s_raid_stripe_width; /* blocks on all data disks (N*stride)*/
  449. __u8 s_log_groups_per_flex; /* FLEX_BG group size */
  450. __u8 s_reserved_char_pad2;
  451. __le16 s_reserved_pad;
  452. __u32 s_reserved[162]; /* Padding to the end of the block */
  453. };
  454. /* data type for block offset of block group */
  455. typedef int ext3_grpblk_t;
  456. /* data type for filesystem-wide blocks number */
  457. typedef unsigned long ext3_fsblk_t;
  458. #define E3FSBLK "%lu"
  459. struct ext3_reserve_window {
  460. ext3_fsblk_t _rsv_start; /* First byte reserved */
  461. ext3_fsblk_t _rsv_end; /* Last byte reserved or 0 */
  462. };
  463. struct ext3_reserve_window_node {
  464. struct rb_node rsv_node;
  465. __u32 rsv_goal_size;
  466. __u32 rsv_alloc_hit;
  467. struct ext3_reserve_window rsv_window;
  468. };
  469. struct ext3_block_alloc_info {
  470. /* information about reservation window */
  471. struct ext3_reserve_window_node rsv_window_node;
  472. /*
  473. * was i_next_alloc_block in ext3_inode_info
  474. * is the logical (file-relative) number of the
  475. * most-recently-allocated block in this file.
  476. * We use this for detecting linearly ascending allocation requests.
  477. */
  478. __u32 last_alloc_logical_block;
  479. /*
  480. * Was i_next_alloc_goal in ext3_inode_info
  481. * is the *physical* companion to i_next_alloc_block.
  482. * it the physical block number of the block which was most-recentl
  483. * allocated to this file. This give us the goal (target) for the next
  484. * allocation when we detect linearly ascending requests.
  485. */
  486. ext3_fsblk_t last_alloc_physical_block;
  487. };
  488. #define rsv_start rsv_window._rsv_start
  489. #define rsv_end rsv_window._rsv_end
  490. /*
  491. * third extended file system inode data in memory
  492. */
  493. struct ext3_inode_info {
  494. __le32 i_data[15]; /* unconverted */
  495. __u32 i_flags;
  496. #ifdef EXT3_FRAGMENTS
  497. __u32 i_faddr;
  498. __u8 i_frag_no;
  499. __u8 i_frag_size;
  500. #endif
  501. ext3_fsblk_t i_file_acl;
  502. __u32 i_dir_acl;
  503. __u32 i_dtime;
  504. /*
  505. * i_block_group is the number of the block group which contains
  506. * this file's inode. Constant across the lifetime of the inode,
  507. * it is ued for making block allocation decisions - we try to
  508. * place a file's data blocks near its inode block, and new inodes
  509. * near to their parent directory's inode.
  510. */
  511. __u32 i_block_group;
  512. unsigned long i_state_flags; /* Dynamic state flags for ext3 */
  513. /* block reservation info */
  514. struct ext3_block_alloc_info *i_block_alloc_info;
  515. __u32 i_dir_start_lookup;
  516. #ifdef CONFIG_EXT3_FS_XATTR
  517. /*
  518. * Extended attributes can be read independently of the main file
  519. * data. Taking i_mutex even when reading would cause contention
  520. * between readers of EAs and writers of regular file data, so
  521. * instead we synchronize on xattr_sem when reading or changing
  522. * EAs.
  523. */
  524. struct rw_semaphore xattr_sem;
  525. #endif
  526. struct list_head i_orphan; /* unlinked but open inodes */
  527. /*
  528. * i_disksize keeps track of what the inode size is ON DISK, not
  529. * in memory. During truncate, i_size is set to the new size by
  530. * the VFS prior to calling ext3_truncate(), but the filesystem won't
  531. * set i_disksize to 0 until the truncate is actually under way.
  532. *
  533. * The intent is that i_disksize always represents the blocks which
  534. * are used by this file. This allows recovery to restart truncate
  535. * on orphans if we crash during truncate. We actually write i_disksize
  536. * into the on-disk inode when writing inodes out, instead of i_size.
  537. *
  538. * The only time when i_disksize and i_size may be different is when
  539. * a truncate is in progress. The only things which change i_disksize
  540. * are ext3_get_block (growth) and ext3_truncate (shrinkth).
  541. */
  542. loff_t i_disksize;
  543. /* on-disk additional length */
  544. __u16 i_extra_isize;
  545. /*
  546. * truncate_mutex is for serialising ext3_truncate() against
  547. * ext3_getblock(). In the 2.4 ext2 design, great chunks of inode's
  548. * data tree are chopped off during truncate. We can't do that in
  549. * ext3 because whenever we perform intermediate commits during
  550. * truncate, the inode and all the metadata blocks *must* be in a
  551. * consistent state which allows truncation of the orphans to restart
  552. * during recovery. Hence we must fix the get_block-vs-truncate race
  553. * by other means, so we have truncate_mutex.
  554. */
  555. struct mutex truncate_mutex;
  556. /*
  557. * Transactions that contain inode's metadata needed to complete
  558. * fsync and fdatasync, respectively.
  559. */
  560. atomic_t i_sync_tid;
  561. atomic_t i_datasync_tid;
  562. struct inode vfs_inode;
  563. };
  564. /*
  565. * third extended-fs super-block data in memory
  566. */
  567. struct ext3_sb_info {
  568. unsigned long s_frag_size; /* Size of a fragment in bytes */
  569. unsigned long s_frags_per_block;/* Number of fragments per block */
  570. unsigned long s_inodes_per_block;/* Number of inodes per block */
  571. unsigned long s_frags_per_group;/* Number of fragments in a group */
  572. unsigned long s_blocks_per_group;/* Number of blocks in a group */
  573. unsigned long s_inodes_per_group;/* Number of inodes in a group */
  574. unsigned long s_itb_per_group; /* Number of inode table blocks per group */
  575. unsigned long s_gdb_count; /* Number of group descriptor blocks */
  576. unsigned long s_desc_per_block; /* Number of group descriptors per block */
  577. unsigned long s_groups_count; /* Number of groups in the fs */
  578. unsigned long s_overhead_last; /* Last calculated overhead */
  579. unsigned long s_blocks_last; /* Last seen block count */
  580. struct buffer_head * s_sbh; /* Buffer containing the super block */
  581. struct ext3_super_block * s_es; /* Pointer to the super block in the buffer */
  582. struct buffer_head ** s_group_desc;
  583. unsigned long s_mount_opt;
  584. ext3_fsblk_t s_sb_block;
  585. uid_t s_resuid;
  586. gid_t s_resgid;
  587. unsigned short s_mount_state;
  588. unsigned short s_pad;
  589. int s_addr_per_block_bits;
  590. int s_desc_per_block_bits;
  591. int s_inode_size;
  592. int s_first_ino;
  593. spinlock_t s_next_gen_lock;
  594. u32 s_next_generation;
  595. u32 s_hash_seed[4];
  596. int s_def_hash_version;
  597. int s_hash_unsigned; /* 3 if hash should be signed, 0 if not */
  598. struct percpu_counter s_freeblocks_counter;
  599. struct percpu_counter s_freeinodes_counter;
  600. struct percpu_counter s_dirs_counter;
  601. struct blockgroup_lock *s_blockgroup_lock;
  602. /* root of the per fs reservation window tree */
  603. spinlock_t s_rsv_window_lock;
  604. struct rb_root s_rsv_window_root;
  605. struct ext3_reserve_window_node s_rsv_window_head;
  606. /* Journaling */
  607. struct inode * s_journal_inode;
  608. struct journal_s * s_journal;
  609. struct list_head s_orphan;
  610. struct mutex s_orphan_lock;
  611. struct mutex s_resize_lock;
  612. unsigned long s_commit_interval;
  613. struct block_device *journal_bdev;
  614. #ifdef CONFIG_QUOTA
  615. char *s_qf_names[MAXQUOTAS]; /* Names of quota files with journalled quota */
  616. int s_jquota_fmt; /* Format of quota to use */
  617. #endif
  618. };
  619. static inline spinlock_t *
  620. sb_bgl_lock(struct ext3_sb_info *sbi, unsigned int block_group)
  621. {
  622. return bgl_lock_ptr(sbi->s_blockgroup_lock, block_group);
  623. }
  624. static inline struct ext3_sb_info * EXT3_SB(struct super_block *sb)
  625. {
  626. return sb->s_fs_info;
  627. }
  628. static inline struct ext3_inode_info *EXT3_I(struct inode *inode)
  629. {
  630. return container_of(inode, struct ext3_inode_info, vfs_inode);
  631. }
  632. static inline int ext3_valid_inum(struct super_block *sb, unsigned long ino)
  633. {
  634. return ino == EXT3_ROOT_INO ||
  635. ino == EXT3_JOURNAL_INO ||
  636. ino == EXT3_RESIZE_INO ||
  637. (ino >= EXT3_FIRST_INO(sb) &&
  638. ino <= le32_to_cpu(EXT3_SB(sb)->s_es->s_inodes_count));
  639. }
  640. /*
  641. * Inode dynamic state flags
  642. */
  643. enum {
  644. EXT3_STATE_JDATA, /* journaled data exists */
  645. EXT3_STATE_NEW, /* inode is newly created */
  646. EXT3_STATE_XATTR, /* has in-inode xattrs */
  647. EXT3_STATE_FLUSH_ON_CLOSE, /* flush dirty pages on close */
  648. };
  649. static inline int ext3_test_inode_state(struct inode *inode, int bit)
  650. {
  651. return test_bit(bit, &EXT3_I(inode)->i_state_flags);
  652. }
  653. static inline void ext3_set_inode_state(struct inode *inode, int bit)
  654. {
  655. set_bit(bit, &EXT3_I(inode)->i_state_flags);
  656. }
  657. static inline void ext3_clear_inode_state(struct inode *inode, int bit)
  658. {
  659. clear_bit(bit, &EXT3_I(inode)->i_state_flags);
  660. }
  661. #define NEXT_ORPHAN(inode) EXT3_I(inode)->i_dtime
  662. /*
  663. * Codes for operating systems
  664. */
  665. #define EXT3_OS_LINUX 0
  666. #define EXT3_OS_HURD 1
  667. #define EXT3_OS_MASIX 2
  668. #define EXT3_OS_FREEBSD 3
  669. #define EXT3_OS_LITES 4
  670. /*
  671. * Revision levels
  672. */
  673. #define EXT3_GOOD_OLD_REV 0 /* The good old (original) format */
  674. #define EXT3_DYNAMIC_REV 1 /* V2 format w/ dynamic inode sizes */
  675. #define EXT3_CURRENT_REV EXT3_GOOD_OLD_REV
  676. #define EXT3_MAX_SUPP_REV EXT3_DYNAMIC_REV
  677. #define EXT3_GOOD_OLD_INODE_SIZE 128
  678. /*
  679. * Feature set definitions
  680. */
  681. #define EXT3_HAS_COMPAT_FEATURE(sb,mask) \
  682. ( EXT3_SB(sb)->s_es->s_feature_compat & cpu_to_le32(mask) )
  683. #define EXT3_HAS_RO_COMPAT_FEATURE(sb,mask) \
  684. ( EXT3_SB(sb)->s_es->s_feature_ro_compat & cpu_to_le32(mask) )
  685. #define EXT3_HAS_INCOMPAT_FEATURE(sb,mask) \
  686. ( EXT3_SB(sb)->s_es->s_feature_incompat & cpu_to_le32(mask) )
  687. #define EXT3_SET_COMPAT_FEATURE(sb,mask) \
  688. EXT3_SB(sb)->s_es->s_feature_compat |= cpu_to_le32(mask)
  689. #define EXT3_SET_RO_COMPAT_FEATURE(sb,mask) \
  690. EXT3_SB(sb)->s_es->s_feature_ro_compat |= cpu_to_le32(mask)
  691. #define EXT3_SET_INCOMPAT_FEATURE(sb,mask) \
  692. EXT3_SB(sb)->s_es->s_feature_incompat |= cpu_to_le32(mask)
  693. #define EXT3_CLEAR_COMPAT_FEATURE(sb,mask) \
  694. EXT3_SB(sb)->s_es->s_feature_compat &= ~cpu_to_le32(mask)
  695. #define EXT3_CLEAR_RO_COMPAT_FEATURE(sb,mask) \
  696. EXT3_SB(sb)->s_es->s_feature_ro_compat &= ~cpu_to_le32(mask)
  697. #define EXT3_CLEAR_INCOMPAT_FEATURE(sb,mask) \
  698. EXT3_SB(sb)->s_es->s_feature_incompat &= ~cpu_to_le32(mask)
  699. #define EXT3_FEATURE_COMPAT_DIR_PREALLOC 0x0001
  700. #define EXT3_FEATURE_COMPAT_IMAGIC_INODES 0x0002
  701. #define EXT3_FEATURE_COMPAT_HAS_JOURNAL 0x0004
  702. #define EXT3_FEATURE_COMPAT_EXT_ATTR 0x0008
  703. #define EXT3_FEATURE_COMPAT_RESIZE_INODE 0x0010
  704. #define EXT3_FEATURE_COMPAT_DIR_INDEX 0x0020
  705. #define EXT3_FEATURE_RO_COMPAT_SPARSE_SUPER 0x0001
  706. #define EXT3_FEATURE_RO_COMPAT_LARGE_FILE 0x0002
  707. #define EXT3_FEATURE_RO_COMPAT_BTREE_DIR 0x0004
  708. #define EXT3_FEATURE_INCOMPAT_COMPRESSION 0x0001
  709. #define EXT3_FEATURE_INCOMPAT_FILETYPE 0x0002
  710. #define EXT3_FEATURE_INCOMPAT_RECOVER 0x0004 /* Needs recovery */
  711. #define EXT3_FEATURE_INCOMPAT_JOURNAL_DEV 0x0008 /* Journal device */
  712. #define EXT3_FEATURE_INCOMPAT_META_BG 0x0010
  713. #define EXT3_FEATURE_COMPAT_SUPP EXT2_FEATURE_COMPAT_EXT_ATTR
  714. #define EXT3_FEATURE_INCOMPAT_SUPP (EXT3_FEATURE_INCOMPAT_FILETYPE| \
  715. EXT3_FEATURE_INCOMPAT_RECOVER| \
  716. EXT3_FEATURE_INCOMPAT_META_BG)
  717. #define EXT3_FEATURE_RO_COMPAT_SUPP (EXT3_FEATURE_RO_COMPAT_SPARSE_SUPER| \
  718. EXT3_FEATURE_RO_COMPAT_LARGE_FILE| \
  719. EXT3_FEATURE_RO_COMPAT_BTREE_DIR)
  720. /*
  721. * Default values for user and/or group using reserved blocks
  722. */
  723. #define EXT3_DEF_RESUID 0
  724. #define EXT3_DEF_RESGID 0
  725. /*
  726. * Default mount options
  727. */
  728. #define EXT3_DEFM_DEBUG 0x0001
  729. #define EXT3_DEFM_BSDGROUPS 0x0002
  730. #define EXT3_DEFM_XATTR_USER 0x0004
  731. #define EXT3_DEFM_ACL 0x0008
  732. #define EXT3_DEFM_UID16 0x0010
  733. #define EXT3_DEFM_JMODE 0x0060
  734. #define EXT3_DEFM_JMODE_DATA 0x0020
  735. #define EXT3_DEFM_JMODE_ORDERED 0x0040
  736. #define EXT3_DEFM_JMODE_WBACK 0x0060
  737. /*
  738. * Structure of a directory entry
  739. */
  740. #define EXT3_NAME_LEN 255
  741. struct ext3_dir_entry {
  742. __le32 inode; /* Inode number */
  743. __le16 rec_len; /* Directory entry length */
  744. __le16 name_len; /* Name length */
  745. char name[EXT3_NAME_LEN]; /* File name */
  746. };
  747. /*
  748. * The new version of the directory entry. Since EXT3 structures are
  749. * stored in intel byte order, and the name_len field could never be
  750. * bigger than 255 chars, it's safe to reclaim the extra byte for the
  751. * file_type field.
  752. */
  753. struct ext3_dir_entry_2 {
  754. __le32 inode; /* Inode number */
  755. __le16 rec_len; /* Directory entry length */
  756. __u8 name_len; /* Name length */
  757. __u8 file_type;
  758. char name[EXT3_NAME_LEN]; /* File name */
  759. };
  760. /*
  761. * Ext3 directory file types. Only the low 3 bits are used. The
  762. * other bits are reserved for now.
  763. */
  764. #define EXT3_FT_UNKNOWN 0
  765. #define EXT3_FT_REG_FILE 1
  766. #define EXT3_FT_DIR 2
  767. #define EXT3_FT_CHRDEV 3
  768. #define EXT3_FT_BLKDEV 4
  769. #define EXT3_FT_FIFO 5
  770. #define EXT3_FT_SOCK 6
  771. #define EXT3_FT_SYMLINK 7
  772. #define EXT3_FT_MAX 8
  773. /*
  774. * EXT3_DIR_PAD defines the directory entries boundaries
  775. *
  776. * NOTE: It must be a multiple of 4
  777. */
  778. #define EXT3_DIR_PAD 4
  779. #define EXT3_DIR_ROUND (EXT3_DIR_PAD - 1)
  780. #define EXT3_DIR_REC_LEN(name_len) (((name_len) + 8 + EXT3_DIR_ROUND) & \
  781. ~EXT3_DIR_ROUND)
  782. #define EXT3_MAX_REC_LEN ((1<<16)-1)
  783. /*
  784. * Tests against MAX_REC_LEN etc were put in place for 64k block
  785. * sizes; if that is not possible on this arch, we can skip
  786. * those tests and speed things up.
  787. */
  788. static inline unsigned ext3_rec_len_from_disk(__le16 dlen)
  789. {
  790. unsigned len = le16_to_cpu(dlen);
  791. #if (PAGE_CACHE_SIZE >= 65536)
  792. if (len == EXT3_MAX_REC_LEN)
  793. return 1 << 16;
  794. #endif
  795. return len;
  796. }
  797. static inline __le16 ext3_rec_len_to_disk(unsigned len)
  798. {
  799. #if (PAGE_CACHE_SIZE >= 65536)
  800. if (len == (1 << 16))
  801. return cpu_to_le16(EXT3_MAX_REC_LEN);
  802. else if (len > (1 << 16))
  803. BUG();
  804. #endif
  805. return cpu_to_le16(len);
  806. }
  807. /*
  808. * Hash Tree Directory indexing
  809. * (c) Daniel Phillips, 2001
  810. */
  811. #define is_dx(dir) (EXT3_HAS_COMPAT_FEATURE(dir->i_sb, \
  812. EXT3_FEATURE_COMPAT_DIR_INDEX) && \
  813. (EXT3_I(dir)->i_flags & EXT3_INDEX_FL))
  814. #define EXT3_DIR_LINK_MAX(dir) (!is_dx(dir) && (dir)->i_nlink >= EXT3_LINK_MAX)
  815. #define EXT3_DIR_LINK_EMPTY(dir) ((dir)->i_nlink == 2 || (dir)->i_nlink == 1)
  816. /* Legal values for the dx_root hash_version field: */
  817. #define DX_HASH_LEGACY 0
  818. #define DX_HASH_HALF_MD4 1
  819. #define DX_HASH_TEA 2
  820. #define DX_HASH_LEGACY_UNSIGNED 3
  821. #define DX_HASH_HALF_MD4_UNSIGNED 4
  822. #define DX_HASH_TEA_UNSIGNED 5
  823. /* hash info structure used by the directory hash */
  824. struct dx_hash_info
  825. {
  826. u32 hash;
  827. u32 minor_hash;
  828. int hash_version;
  829. u32 *seed;
  830. };
  831. /* 32 and 64 bit signed EOF for dx directories */
  832. #define EXT3_HTREE_EOF_32BIT ((1UL << (32 - 1)) - 1)
  833. #define EXT3_HTREE_EOF_64BIT ((1ULL << (64 - 1)) - 1)
  834. /*
  835. * Control parameters used by ext3_htree_next_block
  836. */
  837. #define HASH_NB_ALWAYS 1
  838. /*
  839. * Describe an inode's exact location on disk and in memory
  840. */
  841. struct ext3_iloc
  842. {
  843. struct buffer_head *bh;
  844. unsigned long offset;
  845. unsigned long block_group;
  846. };
  847. static inline struct ext3_inode *ext3_raw_inode(struct ext3_iloc *iloc)
  848. {
  849. return (struct ext3_inode *) (iloc->bh->b_data + iloc->offset);
  850. }
  851. /*
  852. * This structure is stuffed into the struct file's private_data field
  853. * for directories. It is where we put information so that we can do
  854. * readdir operations in hash tree order.
  855. */
  856. struct dir_private_info {
  857. struct rb_root root;
  858. struct rb_node *curr_node;
  859. struct fname *extra_fname;
  860. loff_t last_pos;
  861. __u32 curr_hash;
  862. __u32 curr_minor_hash;
  863. __u32 next_hash;
  864. };
  865. /* calculate the first block number of the group */
  866. static inline ext3_fsblk_t
  867. ext3_group_first_block_no(struct super_block *sb, unsigned long group_no)
  868. {
  869. return group_no * (ext3_fsblk_t)EXT3_BLOCKS_PER_GROUP(sb) +
  870. le32_to_cpu(EXT3_SB(sb)->s_es->s_first_data_block);
  871. }
  872. /*
  873. * Special error return code only used by dx_probe() and its callers.
  874. */
  875. #define ERR_BAD_DX_DIR -75000
  876. /*
  877. * Function prototypes
  878. */
  879. /*
  880. * Ok, these declarations are also in <linux/kernel.h> but none of the
  881. * ext3 source programs needs to include it so they are duplicated here.
  882. */
  883. # define NORET_TYPE /**/
  884. # define ATTRIB_NORET __attribute__((noreturn))
  885. # define NORET_AND noreturn,
  886. /* balloc.c */
  887. extern int ext3_bg_has_super(struct super_block *sb, int group);
  888. extern unsigned long ext3_bg_num_gdb(struct super_block *sb, int group);
  889. extern ext3_fsblk_t ext3_new_block (handle_t *handle, struct inode *inode,
  890. ext3_fsblk_t goal, int *errp);
  891. extern ext3_fsblk_t ext3_new_blocks (handle_t *handle, struct inode *inode,
  892. ext3_fsblk_t goal, unsigned long *count, int *errp);
  893. extern void ext3_free_blocks (handle_t *handle, struct inode *inode,
  894. ext3_fsblk_t block, unsigned long count);
  895. extern void ext3_free_blocks_sb (handle_t *handle, struct super_block *sb,
  896. ext3_fsblk_t block, unsigned long count,
  897. unsigned long *pdquot_freed_blocks);
  898. extern ext3_fsblk_t ext3_count_free_blocks (struct super_block *);
  899. extern void ext3_check_blocks_bitmap (struct super_block *);
  900. extern struct ext3_group_desc * ext3_get_group_desc(struct super_block * sb,
  901. unsigned int block_group,
  902. struct buffer_head ** bh);
  903. extern int ext3_should_retry_alloc(struct super_block *sb, int *retries);
  904. extern void ext3_init_block_alloc_info(struct inode *);
  905. extern void ext3_rsv_window_add(struct super_block *sb, struct ext3_reserve_window_node *rsv);
  906. extern int ext3_trim_fs(struct super_block *sb, struct fstrim_range *range);
  907. /* dir.c */
  908. extern int ext3_check_dir_entry(const char *, struct inode *,
  909. struct ext3_dir_entry_2 *,
  910. struct buffer_head *, unsigned long);
  911. extern int ext3_htree_store_dirent(struct file *dir_file, __u32 hash,
  912. __u32 minor_hash,
  913. struct ext3_dir_entry_2 *dirent);
  914. extern void ext3_htree_free_dir_info(struct dir_private_info *p);
  915. /* fsync.c */
  916. extern int ext3_sync_file(struct file *, loff_t, loff_t, int);
  917. /* hash.c */
  918. extern int ext3fs_dirhash(const char *name, int len, struct
  919. dx_hash_info *hinfo);
  920. /* ialloc.c */
  921. extern struct inode * ext3_new_inode (handle_t *, struct inode *,
  922. const struct qstr *, umode_t);
  923. extern void ext3_free_inode (handle_t *, struct inode *);
  924. extern struct inode * ext3_orphan_get (struct super_block *, unsigned long);
  925. extern unsigned long ext3_count_free_inodes (struct super_block *);
  926. extern unsigned long ext3_count_dirs (struct super_block *);
  927. extern void ext3_check_inodes_bitmap (struct super_block *);
  928. extern unsigned long ext3_count_free (struct buffer_head *, unsigned);
  929. /* inode.c */
  930. int ext3_forget(handle_t *handle, int is_metadata, struct inode *inode,
  931. struct buffer_head *bh, ext3_fsblk_t blocknr);
  932. struct buffer_head * ext3_getblk (handle_t *, struct inode *, long, int, int *);
  933. struct buffer_head * ext3_bread (handle_t *, struct inode *, int, int, int *);
  934. int ext3_get_blocks_handle(handle_t *handle, struct inode *inode,
  935. sector_t iblock, unsigned long maxblocks, struct buffer_head *bh_result,
  936. int create);
  937. extern struct inode *ext3_iget(struct super_block *, unsigned long);
  938. extern int ext3_write_inode (struct inode *, struct writeback_control *);
  939. extern int ext3_setattr (struct dentry *, struct iattr *);
  940. extern void ext3_evict_inode (struct inode *);
  941. extern int ext3_sync_inode (handle_t *, struct inode *);
  942. extern void ext3_discard_reservation (struct inode *);
  943. extern void ext3_dirty_inode(struct inode *, int);
  944. extern int ext3_change_inode_journal_flag(struct inode *, int);
  945. extern int ext3_get_inode_loc(struct inode *, struct ext3_iloc *);
  946. extern int ext3_can_truncate(struct inode *inode);
  947. extern void ext3_truncate(struct inode *inode);
  948. extern void ext3_set_inode_flags(struct inode *);
  949. extern void ext3_get_inode_flags(struct ext3_inode_info *);
  950. extern void ext3_set_aops(struct inode *inode);
  951. extern int ext3_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
  952. u64 start, u64 len);
  953. /* ioctl.c */
  954. extern long ext3_ioctl(struct file *, unsigned int, unsigned long);
  955. extern long ext3_compat_ioctl(struct file *, unsigned int, unsigned long);
  956. /* namei.c */
  957. extern int ext3_orphan_add(handle_t *, struct inode *);
  958. extern int ext3_orphan_del(handle_t *, struct inode *);
  959. extern int ext3_htree_fill_tree(struct file *dir_file, __u32 start_hash,
  960. __u32 start_minor_hash, __u32 *next_hash);
  961. /* resize.c */
  962. extern int ext3_group_add(struct super_block *sb,
  963. struct ext3_new_group_data *input);
  964. extern int ext3_group_extend(struct super_block *sb,
  965. struct ext3_super_block *es,
  966. ext3_fsblk_t n_blocks_count);
  967. /* super.c */
  968. extern __printf(3, 4)
  969. void ext3_error(struct super_block *, const char *, const char *, ...);
  970. extern void __ext3_std_error (struct super_block *, const char *, int);
  971. extern __printf(3, 4)
  972. void ext3_abort(struct super_block *, const char *, const char *, ...);
  973. extern __printf(3, 4)
  974. void ext3_warning(struct super_block *, const char *, const char *, ...);
  975. extern __printf(3, 4)
  976. void ext3_msg(struct super_block *, const char *, const char *, ...);
  977. extern void ext3_update_dynamic_rev (struct super_block *sb);
  978. #define ext3_std_error(sb, errno) \
  979. do { \
  980. if ((errno)) \
  981. __ext3_std_error((sb), __func__, (errno)); \
  982. } while (0)
  983. /*
  984. * Inodes and files operations
  985. */
  986. /* dir.c */
  987. extern const struct file_operations ext3_dir_operations;
  988. /* file.c */
  989. extern const struct inode_operations ext3_file_inode_operations;
  990. extern const struct file_operations ext3_file_operations;
  991. /* namei.c */
  992. extern const struct inode_operations ext3_dir_inode_operations;
  993. extern const struct inode_operations ext3_special_inode_operations;
  994. /* symlink.c */
  995. extern const struct inode_operations ext3_symlink_inode_operations;
  996. extern const struct inode_operations ext3_fast_symlink_inode_operations;
  997. #define EXT3_JOURNAL(inode) (EXT3_SB((inode)->i_sb)->s_journal)
  998. /* Define the number of blocks we need to account to a transaction to
  999. * modify one block of data.
  1000. *
  1001. * We may have to touch one inode, one bitmap buffer, up to three
  1002. * indirection blocks, the group and superblock summaries, and the data
  1003. * block to complete the transaction. */
  1004. #define EXT3_SINGLEDATA_TRANS_BLOCKS 8U
  1005. /* Extended attribute operations touch at most two data buffers,
  1006. * two bitmap buffers, and two group summaries, in addition to the inode
  1007. * and the superblock, which are already accounted for. */
  1008. #define EXT3_XATTR_TRANS_BLOCKS 6U
  1009. /* Define the minimum size for a transaction which modifies data. This
  1010. * needs to take into account the fact that we may end up modifying two
  1011. * quota files too (one for the group, one for the user quota). The
  1012. * superblock only gets updated once, of course, so don't bother
  1013. * counting that again for the quota updates. */
  1014. #define EXT3_DATA_TRANS_BLOCKS(sb) (EXT3_SINGLEDATA_TRANS_BLOCKS + \
  1015. EXT3_XATTR_TRANS_BLOCKS - 2 + \
  1016. EXT3_MAXQUOTAS_TRANS_BLOCKS(sb))
  1017. /* Delete operations potentially hit one directory's namespace plus an
  1018. * entire inode, plus arbitrary amounts of bitmap/indirection data. Be
  1019. * generous. We can grow the delete transaction later if necessary. */
  1020. #define EXT3_DELETE_TRANS_BLOCKS(sb) (EXT3_MAXQUOTAS_TRANS_BLOCKS(sb) + 64)
  1021. /* Define an arbitrary limit for the amount of data we will anticipate
  1022. * writing to any given transaction. For unbounded transactions such as
  1023. * write(2) and truncate(2) we can write more than this, but we always
  1024. * start off at the maximum transaction size and grow the transaction
  1025. * optimistically as we go. */
  1026. #define EXT3_MAX_TRANS_DATA 64U
  1027. /* We break up a large truncate or write transaction once the handle's
  1028. * buffer credits gets this low, we need either to extend the
  1029. * transaction or to start a new one. Reserve enough space here for
  1030. * inode, bitmap, superblock, group and indirection updates for at least
  1031. * one block, plus two quota updates. Quota allocations are not
  1032. * needed. */
  1033. #define EXT3_RESERVE_TRANS_BLOCKS 12U
  1034. #define EXT3_INDEX_EXTRA_TRANS_BLOCKS 8
  1035. #ifdef CONFIG_QUOTA
  1036. /* Amount of blocks needed for quota update - we know that the structure was
  1037. * allocated so we need to update only inode+data */
  1038. #define EXT3_QUOTA_TRANS_BLOCKS(sb) (test_opt(sb, QUOTA) ? 2 : 0)
  1039. /* Amount of blocks needed for quota insert/delete - we do some block writes
  1040. * but inode, sb and group updates are done only once */
  1041. #define EXT3_QUOTA_INIT_BLOCKS(sb) (test_opt(sb, QUOTA) ? (DQUOT_INIT_ALLOC*\
  1042. (EXT3_SINGLEDATA_TRANS_BLOCKS-3)+3+DQUOT_INIT_REWRITE) : 0)
  1043. #define EXT3_QUOTA_DEL_BLOCKS(sb) (test_opt(sb, QUOTA) ? (DQUOT_DEL_ALLOC*\
  1044. (EXT3_SINGLEDATA_TRANS_BLOCKS-3)+3+DQUOT_DEL_REWRITE) : 0)
  1045. #else
  1046. #define EXT3_QUOTA_TRANS_BLOCKS(sb) 0
  1047. #define EXT3_QUOTA_INIT_BLOCKS(sb) 0
  1048. #define EXT3_QUOTA_DEL_BLOCKS(sb) 0
  1049. #endif
  1050. #define EXT3_MAXQUOTAS_TRANS_BLOCKS(sb) (MAXQUOTAS*EXT3_QUOTA_TRANS_BLOCKS(sb))
  1051. #define EXT3_MAXQUOTAS_INIT_BLOCKS(sb) (MAXQUOTAS*EXT3_QUOTA_INIT_BLOCKS(sb))
  1052. #define EXT3_MAXQUOTAS_DEL_BLOCKS(sb) (MAXQUOTAS*EXT3_QUOTA_DEL_BLOCKS(sb))
  1053. int
  1054. ext3_mark_iloc_dirty(handle_t *handle,
  1055. struct inode *inode,
  1056. struct ext3_iloc *iloc);
  1057. /*
  1058. * On success, We end up with an outstanding reference count against
  1059. * iloc->bh. This _must_ be cleaned up later.
  1060. */
  1061. int ext3_reserve_inode_write(handle_t *handle, struct inode *inode,
  1062. struct ext3_iloc *iloc);
  1063. int ext3_mark_inode_dirty(handle_t *handle, struct inode *inode);
  1064. /*
  1065. * Wrapper functions with which ext3 calls into JBD. The intent here is
  1066. * to allow these to be turned into appropriate stubs so ext3 can control
  1067. * ext2 filesystems, so ext2+ext3 systems only nee one fs. This work hasn't
  1068. * been done yet.
  1069. */
  1070. static inline void ext3_journal_release_buffer(handle_t *handle,
  1071. struct buffer_head *bh)
  1072. {
  1073. journal_release_buffer(handle, bh);
  1074. }
  1075. void ext3_journal_abort_handle(const char *caller, const char *err_fn,
  1076. struct buffer_head *bh, handle_t *handle, int err);
  1077. int __ext3_journal_get_undo_access(const char *where, handle_t *handle,
  1078. struct buffer_head *bh);
  1079. int __ext3_journal_get_write_access(const char *where, handle_t *handle,
  1080. struct buffer_head *bh);
  1081. int __ext3_journal_forget(const char *where, handle_t *handle,
  1082. struct buffer_head *bh);
  1083. int __ext3_journal_revoke(const char *where, handle_t *handle,
  1084. unsigned long blocknr, struct buffer_head *bh);
  1085. int __ext3_journal_get_create_access(const char *where,
  1086. handle_t *handle, struct buffer_head *bh);
  1087. int __ext3_journal_dirty_metadata(const char *where,
  1088. handle_t *handle, struct buffer_head *bh);
  1089. #define ext3_journal_get_undo_access(handle, bh) \
  1090. __ext3_journal_get_undo_access(__func__, (handle), (bh))
  1091. #define ext3_journal_get_write_access(handle, bh) \
  1092. __ext3_journal_get_write_access(__func__, (handle), (bh))
  1093. #define ext3_journal_revoke(handle, blocknr, bh) \
  1094. __ext3_journal_revoke(__func__, (handle), (blocknr), (bh))
  1095. #define ext3_journal_get_create_access(handle, bh) \
  1096. __ext3_journal_get_create_access(__func__, (handle), (bh))
  1097. #define ext3_journal_dirty_metadata(handle, bh) \
  1098. __ext3_journal_dirty_metadata(__func__, (handle), (bh))
  1099. #define ext3_journal_forget(handle, bh) \
  1100. __ext3_journal_forget(__func__, (handle), (bh))
  1101. int ext3_journal_dirty_data(handle_t *handle, struct buffer_head *bh);
  1102. handle_t *ext3_journal_start_sb(struct super_block *sb, int nblocks);
  1103. int __ext3_journal_stop(const char *where, handle_t *handle);
  1104. static inline handle_t *ext3_journal_start(struct inode *inode, int nblocks)
  1105. {
  1106. return ext3_journal_start_sb(inode->i_sb, nblocks);
  1107. }
  1108. #define ext3_journal_stop(handle) \
  1109. __ext3_journal_stop(__func__, (handle))
  1110. static inline handle_t *ext3_journal_current_handle(void)
  1111. {
  1112. return journal_current_handle();
  1113. }
  1114. static inline int ext3_journal_extend(handle_t *handle, int nblocks)
  1115. {
  1116. return journal_extend(handle, nblocks);
  1117. }
  1118. static inline int ext3_journal_restart(handle_t *handle, int nblocks)
  1119. {
  1120. return journal_restart(handle, nblocks);
  1121. }
  1122. static inline int ext3_journal_blocks_per_page(struct inode *inode)
  1123. {
  1124. return journal_blocks_per_page(inode);
  1125. }
  1126. static inline int ext3_journal_force_commit(journal_t *journal)
  1127. {
  1128. return journal_force_commit(journal);
  1129. }
  1130. /* super.c */
  1131. int ext3_force_commit(struct super_block *sb);
  1132. static inline int ext3_should_journal_data(struct inode *inode)
  1133. {
  1134. if (!S_ISREG(inode->i_mode))
  1135. return 1;
  1136. if (test_opt(inode->i_sb, DATA_FLAGS) == EXT3_MOUNT_JOURNAL_DATA)
  1137. return 1;
  1138. if (EXT3_I(inode)->i_flags & EXT3_JOURNAL_DATA_FL)
  1139. return 1;
  1140. return 0;
  1141. }
  1142. static inline int ext3_should_order_data(struct inode *inode)
  1143. {
  1144. if (!S_ISREG(inode->i_mode))
  1145. return 0;
  1146. if (EXT3_I(inode)->i_flags & EXT3_JOURNAL_DATA_FL)
  1147. return 0;
  1148. if (test_opt(inode->i_sb, DATA_FLAGS) == EXT3_MOUNT_ORDERED_DATA)
  1149. return 1;
  1150. return 0;
  1151. }
  1152. static inline int ext3_should_writeback_data(struct inode *inode)
  1153. {
  1154. if (!S_ISREG(inode->i_mode))
  1155. return 0;
  1156. if (EXT3_I(inode)->i_flags & EXT3_JOURNAL_DATA_FL)
  1157. return 0;
  1158. if (test_opt(inode->i_sb, DATA_FLAGS) == EXT3_MOUNT_WRITEBACK_DATA)
  1159. return 1;
  1160. return 0;
  1161. }
  1162. #include <trace/events/ext3.h>