ext3.h 44 KB

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