ext3.h 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322
  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. #define EXT3_HTREE_EOF 0x7fffffff
  832. /*
  833. * Control parameters used by ext3_htree_next_block
  834. */
  835. #define HASH_NB_ALWAYS 1
  836. /*
  837. * Describe an inode's exact location on disk and in memory
  838. */
  839. struct ext3_iloc
  840. {
  841. struct buffer_head *bh;
  842. unsigned long offset;
  843. unsigned long block_group;
  844. };
  845. static inline struct ext3_inode *ext3_raw_inode(struct ext3_iloc *iloc)
  846. {
  847. return (struct ext3_inode *) (iloc->bh->b_data + iloc->offset);
  848. }
  849. /*
  850. * This structure is stuffed into the struct file's private_data field
  851. * for directories. It is where we put information so that we can do
  852. * readdir operations in hash tree order.
  853. */
  854. struct dir_private_info {
  855. struct rb_root root;
  856. struct rb_node *curr_node;
  857. struct fname *extra_fname;
  858. loff_t last_pos;
  859. __u32 curr_hash;
  860. __u32 curr_minor_hash;
  861. __u32 next_hash;
  862. };
  863. /* calculate the first block number of the group */
  864. static inline ext3_fsblk_t
  865. ext3_group_first_block_no(struct super_block *sb, unsigned long group_no)
  866. {
  867. return group_no * (ext3_fsblk_t)EXT3_BLOCKS_PER_GROUP(sb) +
  868. le32_to_cpu(EXT3_SB(sb)->s_es->s_first_data_block);
  869. }
  870. /*
  871. * Special error return code only used by dx_probe() and its callers.
  872. */
  873. #define ERR_BAD_DX_DIR -75000
  874. /*
  875. * Function prototypes
  876. */
  877. /*
  878. * Ok, these declarations are also in <linux/kernel.h> but none of the
  879. * ext3 source programs needs to include it so they are duplicated here.
  880. */
  881. # define NORET_TYPE /**/
  882. # define ATTRIB_NORET __attribute__((noreturn))
  883. # define NORET_AND noreturn,
  884. /* balloc.c */
  885. extern int ext3_bg_has_super(struct super_block *sb, int group);
  886. extern unsigned long ext3_bg_num_gdb(struct super_block *sb, int group);
  887. extern ext3_fsblk_t ext3_new_block (handle_t *handle, struct inode *inode,
  888. ext3_fsblk_t goal, int *errp);
  889. extern ext3_fsblk_t ext3_new_blocks (handle_t *handle, struct inode *inode,
  890. ext3_fsblk_t goal, unsigned long *count, int *errp);
  891. extern void ext3_free_blocks (handle_t *handle, struct inode *inode,
  892. ext3_fsblk_t block, unsigned long count);
  893. extern void ext3_free_blocks_sb (handle_t *handle, struct super_block *sb,
  894. ext3_fsblk_t block, unsigned long count,
  895. unsigned long *pdquot_freed_blocks);
  896. extern ext3_fsblk_t ext3_count_free_blocks (struct super_block *);
  897. extern void ext3_check_blocks_bitmap (struct super_block *);
  898. extern struct ext3_group_desc * ext3_get_group_desc(struct super_block * sb,
  899. unsigned int block_group,
  900. struct buffer_head ** bh);
  901. extern int ext3_should_retry_alloc(struct super_block *sb, int *retries);
  902. extern void ext3_init_block_alloc_info(struct inode *);
  903. extern void ext3_rsv_window_add(struct super_block *sb, struct ext3_reserve_window_node *rsv);
  904. extern int ext3_trim_fs(struct super_block *sb, struct fstrim_range *range);
  905. /* dir.c */
  906. extern int ext3_check_dir_entry(const char *, struct inode *,
  907. struct ext3_dir_entry_2 *,
  908. struct buffer_head *, unsigned long);
  909. extern int ext3_htree_store_dirent(struct file *dir_file, __u32 hash,
  910. __u32 minor_hash,
  911. struct ext3_dir_entry_2 *dirent);
  912. extern void ext3_htree_free_dir_info(struct dir_private_info *p);
  913. /* fsync.c */
  914. extern int ext3_sync_file(struct file *, loff_t, loff_t, int);
  915. /* hash.c */
  916. extern int ext3fs_dirhash(const char *name, int len, struct
  917. dx_hash_info *hinfo);
  918. /* ialloc.c */
  919. extern struct inode * ext3_new_inode (handle_t *, struct inode *,
  920. const struct qstr *, umode_t);
  921. extern void ext3_free_inode (handle_t *, struct inode *);
  922. extern struct inode * ext3_orphan_get (struct super_block *, unsigned long);
  923. extern unsigned long ext3_count_free_inodes (struct super_block *);
  924. extern unsigned long ext3_count_dirs (struct super_block *);
  925. extern void ext3_check_inodes_bitmap (struct super_block *);
  926. extern unsigned long ext3_count_free (struct buffer_head *, unsigned);
  927. /* inode.c */
  928. int ext3_forget(handle_t *handle, int is_metadata, struct inode *inode,
  929. struct buffer_head *bh, ext3_fsblk_t blocknr);
  930. struct buffer_head * ext3_getblk (handle_t *, struct inode *, long, int, int *);
  931. struct buffer_head * ext3_bread (handle_t *, struct inode *, int, int, int *);
  932. int ext3_get_blocks_handle(handle_t *handle, struct inode *inode,
  933. sector_t iblock, unsigned long maxblocks, struct buffer_head *bh_result,
  934. int create);
  935. extern struct inode *ext3_iget(struct super_block *, unsigned long);
  936. extern int ext3_write_inode (struct inode *, struct writeback_control *);
  937. extern int ext3_setattr (struct dentry *, struct iattr *);
  938. extern void ext3_evict_inode (struct inode *);
  939. extern int ext3_sync_inode (handle_t *, struct inode *);
  940. extern void ext3_discard_reservation (struct inode *);
  941. extern void ext3_dirty_inode(struct inode *, int);
  942. extern int ext3_change_inode_journal_flag(struct inode *, int);
  943. extern int ext3_get_inode_loc(struct inode *, struct ext3_iloc *);
  944. extern int ext3_can_truncate(struct inode *inode);
  945. extern void ext3_truncate(struct inode *inode);
  946. extern void ext3_set_inode_flags(struct inode *);
  947. extern void ext3_get_inode_flags(struct ext3_inode_info *);
  948. extern void ext3_set_aops(struct inode *inode);
  949. extern int ext3_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
  950. u64 start, u64 len);
  951. /* ioctl.c */
  952. extern long ext3_ioctl(struct file *, unsigned int, unsigned long);
  953. extern long ext3_compat_ioctl(struct file *, unsigned int, unsigned long);
  954. /* namei.c */
  955. extern int ext3_orphan_add(handle_t *, struct inode *);
  956. extern int ext3_orphan_del(handle_t *, struct inode *);
  957. extern int ext3_htree_fill_tree(struct file *dir_file, __u32 start_hash,
  958. __u32 start_minor_hash, __u32 *next_hash);
  959. /* resize.c */
  960. extern int ext3_group_add(struct super_block *sb,
  961. struct ext3_new_group_data *input);
  962. extern int ext3_group_extend(struct super_block *sb,
  963. struct ext3_super_block *es,
  964. ext3_fsblk_t n_blocks_count);
  965. /* super.c */
  966. extern __printf(3, 4)
  967. void ext3_error(struct super_block *, const char *, const char *, ...);
  968. extern void __ext3_std_error (struct super_block *, const char *, int);
  969. extern __printf(3, 4)
  970. void ext3_abort(struct super_block *, const char *, const char *, ...);
  971. extern __printf(3, 4)
  972. void ext3_warning(struct super_block *, const char *, const char *, ...);
  973. extern __printf(3, 4)
  974. void ext3_msg(struct super_block *, const char *, const char *, ...);
  975. extern void ext3_update_dynamic_rev (struct super_block *sb);
  976. #define ext3_std_error(sb, errno) \
  977. do { \
  978. if ((errno)) \
  979. __ext3_std_error((sb), __func__, (errno)); \
  980. } while (0)
  981. /*
  982. * Inodes and files operations
  983. */
  984. /* dir.c */
  985. extern const struct file_operations ext3_dir_operations;
  986. /* file.c */
  987. extern const struct inode_operations ext3_file_inode_operations;
  988. extern const struct file_operations ext3_file_operations;
  989. /* namei.c */
  990. extern const struct inode_operations ext3_dir_inode_operations;
  991. extern const struct inode_operations ext3_special_inode_operations;
  992. /* symlink.c */
  993. extern const struct inode_operations ext3_symlink_inode_operations;
  994. extern const struct inode_operations ext3_fast_symlink_inode_operations;
  995. #define EXT3_JOURNAL(inode) (EXT3_SB((inode)->i_sb)->s_journal)
  996. /* Define the number of blocks we need to account to a transaction to
  997. * modify one block of data.
  998. *
  999. * We may have to touch one inode, one bitmap buffer, up to three
  1000. * indirection blocks, the group and superblock summaries, and the data
  1001. * block to complete the transaction. */
  1002. #define EXT3_SINGLEDATA_TRANS_BLOCKS 8U
  1003. /* Extended attribute operations touch at most two data buffers,
  1004. * two bitmap buffers, and two group summaries, in addition to the inode
  1005. * and the superblock, which are already accounted for. */
  1006. #define EXT3_XATTR_TRANS_BLOCKS 6U
  1007. /* Define the minimum size for a transaction which modifies data. This
  1008. * needs to take into account the fact that we may end up modifying two
  1009. * quota files too (one for the group, one for the user quota). The
  1010. * superblock only gets updated once, of course, so don't bother
  1011. * counting that again for the quota updates. */
  1012. #define EXT3_DATA_TRANS_BLOCKS(sb) (EXT3_SINGLEDATA_TRANS_BLOCKS + \
  1013. EXT3_XATTR_TRANS_BLOCKS - 2 + \
  1014. EXT3_MAXQUOTAS_TRANS_BLOCKS(sb))
  1015. /* Delete operations potentially hit one directory's namespace plus an
  1016. * entire inode, plus arbitrary amounts of bitmap/indirection data. Be
  1017. * generous. We can grow the delete transaction later if necessary. */
  1018. #define EXT3_DELETE_TRANS_BLOCKS(sb) (EXT3_MAXQUOTAS_TRANS_BLOCKS(sb) + 64)
  1019. /* Define an arbitrary limit for the amount of data we will anticipate
  1020. * writing to any given transaction. For unbounded transactions such as
  1021. * write(2) and truncate(2) we can write more than this, but we always
  1022. * start off at the maximum transaction size and grow the transaction
  1023. * optimistically as we go. */
  1024. #define EXT3_MAX_TRANS_DATA 64U
  1025. /* We break up a large truncate or write transaction once the handle's
  1026. * buffer credits gets this low, we need either to extend the
  1027. * transaction or to start a new one. Reserve enough space here for
  1028. * inode, bitmap, superblock, group and indirection updates for at least
  1029. * one block, plus two quota updates. Quota allocations are not
  1030. * needed. */
  1031. #define EXT3_RESERVE_TRANS_BLOCKS 12U
  1032. #define EXT3_INDEX_EXTRA_TRANS_BLOCKS 8
  1033. #ifdef CONFIG_QUOTA
  1034. /* Amount of blocks needed for quota update - we know that the structure was
  1035. * allocated so we need to update only inode+data */
  1036. #define EXT3_QUOTA_TRANS_BLOCKS(sb) (test_opt(sb, QUOTA) ? 2 : 0)
  1037. /* Amount of blocks needed for quota insert/delete - we do some block writes
  1038. * but inode, sb and group updates are done only once */
  1039. #define EXT3_QUOTA_INIT_BLOCKS(sb) (test_opt(sb, QUOTA) ? (DQUOT_INIT_ALLOC*\
  1040. (EXT3_SINGLEDATA_TRANS_BLOCKS-3)+3+DQUOT_INIT_REWRITE) : 0)
  1041. #define EXT3_QUOTA_DEL_BLOCKS(sb) (test_opt(sb, QUOTA) ? (DQUOT_DEL_ALLOC*\
  1042. (EXT3_SINGLEDATA_TRANS_BLOCKS-3)+3+DQUOT_DEL_REWRITE) : 0)
  1043. #else
  1044. #define EXT3_QUOTA_TRANS_BLOCKS(sb) 0
  1045. #define EXT3_QUOTA_INIT_BLOCKS(sb) 0
  1046. #define EXT3_QUOTA_DEL_BLOCKS(sb) 0
  1047. #endif
  1048. #define EXT3_MAXQUOTAS_TRANS_BLOCKS(sb) (MAXQUOTAS*EXT3_QUOTA_TRANS_BLOCKS(sb))
  1049. #define EXT3_MAXQUOTAS_INIT_BLOCKS(sb) (MAXQUOTAS*EXT3_QUOTA_INIT_BLOCKS(sb))
  1050. #define EXT3_MAXQUOTAS_DEL_BLOCKS(sb) (MAXQUOTAS*EXT3_QUOTA_DEL_BLOCKS(sb))
  1051. int
  1052. ext3_mark_iloc_dirty(handle_t *handle,
  1053. struct inode *inode,
  1054. struct ext3_iloc *iloc);
  1055. /*
  1056. * On success, We end up with an outstanding reference count against
  1057. * iloc->bh. This _must_ be cleaned up later.
  1058. */
  1059. int ext3_reserve_inode_write(handle_t *handle, struct inode *inode,
  1060. struct ext3_iloc *iloc);
  1061. int ext3_mark_inode_dirty(handle_t *handle, struct inode *inode);
  1062. /*
  1063. * Wrapper functions with which ext3 calls into JBD. The intent here is
  1064. * to allow these to be turned into appropriate stubs so ext3 can control
  1065. * ext2 filesystems, so ext2+ext3 systems only nee one fs. This work hasn't
  1066. * been done yet.
  1067. */
  1068. static inline void ext3_journal_release_buffer(handle_t *handle,
  1069. struct buffer_head *bh)
  1070. {
  1071. journal_release_buffer(handle, bh);
  1072. }
  1073. void ext3_journal_abort_handle(const char *caller, const char *err_fn,
  1074. struct buffer_head *bh, handle_t *handle, int err);
  1075. int __ext3_journal_get_undo_access(const char *where, handle_t *handle,
  1076. struct buffer_head *bh);
  1077. int __ext3_journal_get_write_access(const char *where, handle_t *handle,
  1078. struct buffer_head *bh);
  1079. int __ext3_journal_forget(const char *where, handle_t *handle,
  1080. struct buffer_head *bh);
  1081. int __ext3_journal_revoke(const char *where, handle_t *handle,
  1082. unsigned long blocknr, struct buffer_head *bh);
  1083. int __ext3_journal_get_create_access(const char *where,
  1084. handle_t *handle, struct buffer_head *bh);
  1085. int __ext3_journal_dirty_metadata(const char *where,
  1086. handle_t *handle, struct buffer_head *bh);
  1087. #define ext3_journal_get_undo_access(handle, bh) \
  1088. __ext3_journal_get_undo_access(__func__, (handle), (bh))
  1089. #define ext3_journal_get_write_access(handle, bh) \
  1090. __ext3_journal_get_write_access(__func__, (handle), (bh))
  1091. #define ext3_journal_revoke(handle, blocknr, bh) \
  1092. __ext3_journal_revoke(__func__, (handle), (blocknr), (bh))
  1093. #define ext3_journal_get_create_access(handle, bh) \
  1094. __ext3_journal_get_create_access(__func__, (handle), (bh))
  1095. #define ext3_journal_dirty_metadata(handle, bh) \
  1096. __ext3_journal_dirty_metadata(__func__, (handle), (bh))
  1097. #define ext3_journal_forget(handle, bh) \
  1098. __ext3_journal_forget(__func__, (handle), (bh))
  1099. int ext3_journal_dirty_data(handle_t *handle, struct buffer_head *bh);
  1100. handle_t *ext3_journal_start_sb(struct super_block *sb, int nblocks);
  1101. int __ext3_journal_stop(const char *where, handle_t *handle);
  1102. static inline handle_t *ext3_journal_start(struct inode *inode, int nblocks)
  1103. {
  1104. return ext3_journal_start_sb(inode->i_sb, nblocks);
  1105. }
  1106. #define ext3_journal_stop(handle) \
  1107. __ext3_journal_stop(__func__, (handle))
  1108. static inline handle_t *ext3_journal_current_handle(void)
  1109. {
  1110. return journal_current_handle();
  1111. }
  1112. static inline int ext3_journal_extend(handle_t *handle, int nblocks)
  1113. {
  1114. return journal_extend(handle, nblocks);
  1115. }
  1116. static inline int ext3_journal_restart(handle_t *handle, int nblocks)
  1117. {
  1118. return journal_restart(handle, nblocks);
  1119. }
  1120. static inline int ext3_journal_blocks_per_page(struct inode *inode)
  1121. {
  1122. return journal_blocks_per_page(inode);
  1123. }
  1124. static inline int ext3_journal_force_commit(journal_t *journal)
  1125. {
  1126. return journal_force_commit(journal);
  1127. }
  1128. /* super.c */
  1129. int ext3_force_commit(struct super_block *sb);
  1130. static inline int ext3_should_journal_data(struct inode *inode)
  1131. {
  1132. if (!S_ISREG(inode->i_mode))
  1133. return 1;
  1134. if (test_opt(inode->i_sb, DATA_FLAGS) == EXT3_MOUNT_JOURNAL_DATA)
  1135. return 1;
  1136. if (EXT3_I(inode)->i_flags & EXT3_JOURNAL_DATA_FL)
  1137. return 1;
  1138. return 0;
  1139. }
  1140. static inline int ext3_should_order_data(struct inode *inode)
  1141. {
  1142. if (!S_ISREG(inode->i_mode))
  1143. return 0;
  1144. if (EXT3_I(inode)->i_flags & EXT3_JOURNAL_DATA_FL)
  1145. return 0;
  1146. if (test_opt(inode->i_sb, DATA_FLAGS) == EXT3_MOUNT_ORDERED_DATA)
  1147. return 1;
  1148. return 0;
  1149. }
  1150. static inline int ext3_should_writeback_data(struct inode *inode)
  1151. {
  1152. if (!S_ISREG(inode->i_mode))
  1153. return 0;
  1154. if (EXT3_I(inode)->i_flags & EXT3_JOURNAL_DATA_FL)
  1155. return 0;
  1156. if (test_opt(inode->i_sb, DATA_FLAGS) == EXT3_MOUNT_WRITEBACK_DATA)
  1157. return 1;
  1158. return 0;
  1159. }
  1160. #include <trace/events/ext3.h>