ext3.h 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328
  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. struct inode vfs_inode;
  565. };
  566. /*
  567. * third extended-fs super-block data in memory
  568. */
  569. struct ext3_sb_info {
  570. unsigned long s_frag_size; /* Size of a fragment in bytes */
  571. unsigned long s_frags_per_block;/* Number of fragments per block */
  572. unsigned long s_inodes_per_block;/* Number of inodes per block */
  573. unsigned long s_frags_per_group;/* Number of fragments in a group */
  574. unsigned long s_blocks_per_group;/* Number of blocks in a group */
  575. unsigned long s_inodes_per_group;/* Number of inodes in a group */
  576. unsigned long s_itb_per_group; /* Number of inode table blocks per group */
  577. unsigned long s_gdb_count; /* Number of group descriptor blocks */
  578. unsigned long s_desc_per_block; /* Number of group descriptors per block */
  579. unsigned long s_groups_count; /* Number of groups in the fs */
  580. unsigned long s_overhead_last; /* Last calculated overhead */
  581. unsigned long s_blocks_last; /* Last seen block count */
  582. struct buffer_head * s_sbh; /* Buffer containing the super block */
  583. struct ext3_super_block * s_es; /* Pointer to the super block in the buffer */
  584. struct buffer_head ** s_group_desc;
  585. unsigned long s_mount_opt;
  586. ext3_fsblk_t s_sb_block;
  587. kuid_t s_resuid;
  588. kgid_t s_resgid;
  589. unsigned short s_mount_state;
  590. unsigned short s_pad;
  591. int s_addr_per_block_bits;
  592. int s_desc_per_block_bits;
  593. int s_inode_size;
  594. int s_first_ino;
  595. spinlock_t s_next_gen_lock;
  596. u32 s_next_generation;
  597. u32 s_hash_seed[4];
  598. int s_def_hash_version;
  599. int s_hash_unsigned; /* 3 if hash should be signed, 0 if not */
  600. struct percpu_counter s_freeblocks_counter;
  601. struct percpu_counter s_freeinodes_counter;
  602. struct percpu_counter s_dirs_counter;
  603. struct blockgroup_lock *s_blockgroup_lock;
  604. /* root of the per fs reservation window tree */
  605. spinlock_t s_rsv_window_lock;
  606. struct rb_root s_rsv_window_root;
  607. struct ext3_reserve_window_node s_rsv_window_head;
  608. /* Journaling */
  609. struct inode * s_journal_inode;
  610. struct journal_s * s_journal;
  611. struct list_head s_orphan;
  612. struct mutex s_orphan_lock;
  613. struct mutex s_resize_lock;
  614. unsigned long s_commit_interval;
  615. struct block_device *journal_bdev;
  616. #ifdef CONFIG_QUOTA
  617. char *s_qf_names[EXT3_MAXQUOTAS]; /* Names of quota files with journalled quota */
  618. int s_jquota_fmt; /* Format of quota to use */
  619. #endif
  620. };
  621. static inline spinlock_t *
  622. sb_bgl_lock(struct ext3_sb_info *sbi, unsigned int block_group)
  623. {
  624. return bgl_lock_ptr(sbi->s_blockgroup_lock, block_group);
  625. }
  626. static inline struct ext3_sb_info * EXT3_SB(struct super_block *sb)
  627. {
  628. return sb->s_fs_info;
  629. }
  630. static inline struct ext3_inode_info *EXT3_I(struct inode *inode)
  631. {
  632. return container_of(inode, struct ext3_inode_info, vfs_inode);
  633. }
  634. static inline int ext3_valid_inum(struct super_block *sb, unsigned long ino)
  635. {
  636. return ino == EXT3_ROOT_INO ||
  637. ino == EXT3_JOURNAL_INO ||
  638. ino == EXT3_RESIZE_INO ||
  639. (ino >= EXT3_FIRST_INO(sb) &&
  640. ino <= le32_to_cpu(EXT3_SB(sb)->s_es->s_inodes_count));
  641. }
  642. /*
  643. * Inode dynamic state flags
  644. */
  645. enum {
  646. EXT3_STATE_JDATA, /* journaled data exists */
  647. EXT3_STATE_NEW, /* inode is newly created */
  648. EXT3_STATE_XATTR, /* has in-inode xattrs */
  649. EXT3_STATE_FLUSH_ON_CLOSE, /* flush dirty pages on close */
  650. };
  651. static inline int ext3_test_inode_state(struct inode *inode, int bit)
  652. {
  653. return test_bit(bit, &EXT3_I(inode)->i_state_flags);
  654. }
  655. static inline void ext3_set_inode_state(struct inode *inode, int bit)
  656. {
  657. set_bit(bit, &EXT3_I(inode)->i_state_flags);
  658. }
  659. static inline void ext3_clear_inode_state(struct inode *inode, int bit)
  660. {
  661. clear_bit(bit, &EXT3_I(inode)->i_state_flags);
  662. }
  663. #define NEXT_ORPHAN(inode) EXT3_I(inode)->i_dtime
  664. /*
  665. * Codes for operating systems
  666. */
  667. #define EXT3_OS_LINUX 0
  668. #define EXT3_OS_HURD 1
  669. #define EXT3_OS_MASIX 2
  670. #define EXT3_OS_FREEBSD 3
  671. #define EXT3_OS_LITES 4
  672. /*
  673. * Revision levels
  674. */
  675. #define EXT3_GOOD_OLD_REV 0 /* The good old (original) format */
  676. #define EXT3_DYNAMIC_REV 1 /* V2 format w/ dynamic inode sizes */
  677. #define EXT3_CURRENT_REV EXT3_GOOD_OLD_REV
  678. #define EXT3_MAX_SUPP_REV EXT3_DYNAMIC_REV
  679. #define EXT3_GOOD_OLD_INODE_SIZE 128
  680. /*
  681. * Feature set definitions
  682. */
  683. #define EXT3_HAS_COMPAT_FEATURE(sb,mask) \
  684. ( EXT3_SB(sb)->s_es->s_feature_compat & cpu_to_le32(mask) )
  685. #define EXT3_HAS_RO_COMPAT_FEATURE(sb,mask) \
  686. ( EXT3_SB(sb)->s_es->s_feature_ro_compat & cpu_to_le32(mask) )
  687. #define EXT3_HAS_INCOMPAT_FEATURE(sb,mask) \
  688. ( EXT3_SB(sb)->s_es->s_feature_incompat & cpu_to_le32(mask) )
  689. #define EXT3_SET_COMPAT_FEATURE(sb,mask) \
  690. EXT3_SB(sb)->s_es->s_feature_compat |= cpu_to_le32(mask)
  691. #define EXT3_SET_RO_COMPAT_FEATURE(sb,mask) \
  692. EXT3_SB(sb)->s_es->s_feature_ro_compat |= cpu_to_le32(mask)
  693. #define EXT3_SET_INCOMPAT_FEATURE(sb,mask) \
  694. EXT3_SB(sb)->s_es->s_feature_incompat |= cpu_to_le32(mask)
  695. #define EXT3_CLEAR_COMPAT_FEATURE(sb,mask) \
  696. EXT3_SB(sb)->s_es->s_feature_compat &= ~cpu_to_le32(mask)
  697. #define EXT3_CLEAR_RO_COMPAT_FEATURE(sb,mask) \
  698. EXT3_SB(sb)->s_es->s_feature_ro_compat &= ~cpu_to_le32(mask)
  699. #define EXT3_CLEAR_INCOMPAT_FEATURE(sb,mask) \
  700. EXT3_SB(sb)->s_es->s_feature_incompat &= ~cpu_to_le32(mask)
  701. #define EXT3_FEATURE_COMPAT_DIR_PREALLOC 0x0001
  702. #define EXT3_FEATURE_COMPAT_IMAGIC_INODES 0x0002
  703. #define EXT3_FEATURE_COMPAT_HAS_JOURNAL 0x0004
  704. #define EXT3_FEATURE_COMPAT_EXT_ATTR 0x0008
  705. #define EXT3_FEATURE_COMPAT_RESIZE_INODE 0x0010
  706. #define EXT3_FEATURE_COMPAT_DIR_INDEX 0x0020
  707. #define EXT3_FEATURE_RO_COMPAT_SPARSE_SUPER 0x0001
  708. #define EXT3_FEATURE_RO_COMPAT_LARGE_FILE 0x0002
  709. #define EXT3_FEATURE_RO_COMPAT_BTREE_DIR 0x0004
  710. #define EXT3_FEATURE_INCOMPAT_COMPRESSION 0x0001
  711. #define EXT3_FEATURE_INCOMPAT_FILETYPE 0x0002
  712. #define EXT3_FEATURE_INCOMPAT_RECOVER 0x0004 /* Needs recovery */
  713. #define EXT3_FEATURE_INCOMPAT_JOURNAL_DEV 0x0008 /* Journal device */
  714. #define EXT3_FEATURE_INCOMPAT_META_BG 0x0010
  715. #define EXT3_FEATURE_COMPAT_SUPP EXT2_FEATURE_COMPAT_EXT_ATTR
  716. #define EXT3_FEATURE_INCOMPAT_SUPP (EXT3_FEATURE_INCOMPAT_FILETYPE| \
  717. EXT3_FEATURE_INCOMPAT_RECOVER| \
  718. EXT3_FEATURE_INCOMPAT_META_BG)
  719. #define EXT3_FEATURE_RO_COMPAT_SUPP (EXT3_FEATURE_RO_COMPAT_SPARSE_SUPER| \
  720. EXT3_FEATURE_RO_COMPAT_LARGE_FILE| \
  721. EXT3_FEATURE_RO_COMPAT_BTREE_DIR)
  722. /*
  723. * Default values for user and/or group using reserved blocks
  724. */
  725. #define EXT3_DEF_RESUID 0
  726. #define EXT3_DEF_RESGID 0
  727. /*
  728. * Default mount options
  729. */
  730. #define EXT3_DEFM_DEBUG 0x0001
  731. #define EXT3_DEFM_BSDGROUPS 0x0002
  732. #define EXT3_DEFM_XATTR_USER 0x0004
  733. #define EXT3_DEFM_ACL 0x0008
  734. #define EXT3_DEFM_UID16 0x0010
  735. #define EXT3_DEFM_JMODE 0x0060
  736. #define EXT3_DEFM_JMODE_DATA 0x0020
  737. #define EXT3_DEFM_JMODE_ORDERED 0x0040
  738. #define EXT3_DEFM_JMODE_WBACK 0x0060
  739. /*
  740. * Structure of a directory entry
  741. */
  742. #define EXT3_NAME_LEN 255
  743. struct ext3_dir_entry {
  744. __le32 inode; /* Inode number */
  745. __le16 rec_len; /* Directory entry length */
  746. __le16 name_len; /* Name length */
  747. char name[EXT3_NAME_LEN]; /* File name */
  748. };
  749. /*
  750. * The new version of the directory entry. Since EXT3 structures are
  751. * stored in intel byte order, and the name_len field could never be
  752. * bigger than 255 chars, it's safe to reclaim the extra byte for the
  753. * file_type field.
  754. */
  755. struct ext3_dir_entry_2 {
  756. __le32 inode; /* Inode number */
  757. __le16 rec_len; /* Directory entry length */
  758. __u8 name_len; /* Name length */
  759. __u8 file_type;
  760. char name[EXT3_NAME_LEN]; /* File name */
  761. };
  762. /*
  763. * Ext3 directory file types. Only the low 3 bits are used. The
  764. * other bits are reserved for now.
  765. */
  766. #define EXT3_FT_UNKNOWN 0
  767. #define EXT3_FT_REG_FILE 1
  768. #define EXT3_FT_DIR 2
  769. #define EXT3_FT_CHRDEV 3
  770. #define EXT3_FT_BLKDEV 4
  771. #define EXT3_FT_FIFO 5
  772. #define EXT3_FT_SOCK 6
  773. #define EXT3_FT_SYMLINK 7
  774. #define EXT3_FT_MAX 8
  775. /*
  776. * EXT3_DIR_PAD defines the directory entries boundaries
  777. *
  778. * NOTE: It must be a multiple of 4
  779. */
  780. #define EXT3_DIR_PAD 4
  781. #define EXT3_DIR_ROUND (EXT3_DIR_PAD - 1)
  782. #define EXT3_DIR_REC_LEN(name_len) (((name_len) + 8 + EXT3_DIR_ROUND) & \
  783. ~EXT3_DIR_ROUND)
  784. #define EXT3_MAX_REC_LEN ((1<<16)-1)
  785. /*
  786. * Tests against MAX_REC_LEN etc were put in place for 64k block
  787. * sizes; if that is not possible on this arch, we can skip
  788. * those tests and speed things up.
  789. */
  790. static inline unsigned ext3_rec_len_from_disk(__le16 dlen)
  791. {
  792. unsigned len = le16_to_cpu(dlen);
  793. #if (PAGE_CACHE_SIZE >= 65536)
  794. if (len == EXT3_MAX_REC_LEN)
  795. return 1 << 16;
  796. #endif
  797. return len;
  798. }
  799. static inline __le16 ext3_rec_len_to_disk(unsigned len)
  800. {
  801. #if (PAGE_CACHE_SIZE >= 65536)
  802. if (len == (1 << 16))
  803. return cpu_to_le16(EXT3_MAX_REC_LEN);
  804. else if (len > (1 << 16))
  805. BUG();
  806. #endif
  807. return cpu_to_le16(len);
  808. }
  809. /*
  810. * Hash Tree Directory indexing
  811. * (c) Daniel Phillips, 2001
  812. */
  813. #define is_dx(dir) (EXT3_HAS_COMPAT_FEATURE(dir->i_sb, \
  814. EXT3_FEATURE_COMPAT_DIR_INDEX) && \
  815. (EXT3_I(dir)->i_flags & EXT3_INDEX_FL))
  816. #define EXT3_DIR_LINK_MAX(dir) (!is_dx(dir) && (dir)->i_nlink >= EXT3_LINK_MAX)
  817. #define EXT3_DIR_LINK_EMPTY(dir) ((dir)->i_nlink == 2 || (dir)->i_nlink == 1)
  818. /* Legal values for the dx_root hash_version field: */
  819. #define DX_HASH_LEGACY 0
  820. #define DX_HASH_HALF_MD4 1
  821. #define DX_HASH_TEA 2
  822. #define DX_HASH_LEGACY_UNSIGNED 3
  823. #define DX_HASH_HALF_MD4_UNSIGNED 4
  824. #define DX_HASH_TEA_UNSIGNED 5
  825. /* hash info structure used by the directory hash */
  826. struct dx_hash_info
  827. {
  828. u32 hash;
  829. u32 minor_hash;
  830. int hash_version;
  831. u32 *seed;
  832. };
  833. /* 32 and 64 bit signed EOF for dx directories */
  834. #define EXT3_HTREE_EOF_32BIT ((1UL << (32 - 1)) - 1)
  835. #define EXT3_HTREE_EOF_64BIT ((1ULL << (64 - 1)) - 1)
  836. /*
  837. * Control parameters used by ext3_htree_next_block
  838. */
  839. #define HASH_NB_ALWAYS 1
  840. /*
  841. * Describe an inode's exact location on disk and in memory
  842. */
  843. struct ext3_iloc
  844. {
  845. struct buffer_head *bh;
  846. unsigned long offset;
  847. unsigned long block_group;
  848. };
  849. static inline struct ext3_inode *ext3_raw_inode(struct ext3_iloc *iloc)
  850. {
  851. return (struct ext3_inode *) (iloc->bh->b_data + iloc->offset);
  852. }
  853. /*
  854. * This structure is stuffed into the struct file's private_data field
  855. * for directories. It is where we put information so that we can do
  856. * readdir operations in hash tree order.
  857. */
  858. struct dir_private_info {
  859. struct rb_root root;
  860. struct rb_node *curr_node;
  861. struct fname *extra_fname;
  862. loff_t last_pos;
  863. __u32 curr_hash;
  864. __u32 curr_minor_hash;
  865. __u32 next_hash;
  866. };
  867. /* calculate the first block number of the group */
  868. static inline ext3_fsblk_t
  869. ext3_group_first_block_no(struct super_block *sb, unsigned long group_no)
  870. {
  871. return group_no * (ext3_fsblk_t)EXT3_BLOCKS_PER_GROUP(sb) +
  872. le32_to_cpu(EXT3_SB(sb)->s_es->s_first_data_block);
  873. }
  874. /*
  875. * Special error return code only used by dx_probe() and its callers.
  876. */
  877. #define ERR_BAD_DX_DIR -75000
  878. /*
  879. * Function prototypes
  880. */
  881. /*
  882. * Ok, these declarations are also in <linux/kernel.h> but none of the
  883. * ext3 source programs needs to include it so they are duplicated here.
  884. */
  885. # define NORET_TYPE /**/
  886. # define ATTRIB_NORET __attribute__((noreturn))
  887. # define NORET_AND noreturn,
  888. /* balloc.c */
  889. extern int ext3_bg_has_super(struct super_block *sb, int group);
  890. extern unsigned long ext3_bg_num_gdb(struct super_block *sb, int group);
  891. extern ext3_fsblk_t ext3_new_block (handle_t *handle, struct inode *inode,
  892. ext3_fsblk_t goal, int *errp);
  893. extern ext3_fsblk_t ext3_new_blocks (handle_t *handle, struct inode *inode,
  894. ext3_fsblk_t goal, unsigned long *count, int *errp);
  895. extern void ext3_free_blocks (handle_t *handle, struct inode *inode,
  896. ext3_fsblk_t block, unsigned long count);
  897. extern void ext3_free_blocks_sb (handle_t *handle, struct super_block *sb,
  898. ext3_fsblk_t block, unsigned long count,
  899. unsigned long *pdquot_freed_blocks);
  900. extern ext3_fsblk_t ext3_count_free_blocks (struct super_block *);
  901. extern void ext3_check_blocks_bitmap (struct super_block *);
  902. extern struct ext3_group_desc * ext3_get_group_desc(struct super_block * sb,
  903. unsigned int block_group,
  904. struct buffer_head ** bh);
  905. extern int ext3_should_retry_alloc(struct super_block *sb, int *retries);
  906. extern void ext3_init_block_alloc_info(struct inode *);
  907. extern void ext3_rsv_window_add(struct super_block *sb, struct ext3_reserve_window_node *rsv);
  908. extern int ext3_trim_fs(struct super_block *sb, struct fstrim_range *range);
  909. /* dir.c */
  910. extern int ext3_check_dir_entry(const char *, struct inode *,
  911. struct ext3_dir_entry_2 *,
  912. struct buffer_head *, unsigned long);
  913. extern int ext3_htree_store_dirent(struct file *dir_file, __u32 hash,
  914. __u32 minor_hash,
  915. struct ext3_dir_entry_2 *dirent);
  916. extern void ext3_htree_free_dir_info(struct dir_private_info *p);
  917. /* fsync.c */
  918. extern int ext3_sync_file(struct file *, loff_t, loff_t, int);
  919. /* hash.c */
  920. extern int ext3fs_dirhash(const char *name, int len, struct
  921. dx_hash_info *hinfo);
  922. /* ialloc.c */
  923. extern struct inode * ext3_new_inode (handle_t *, struct inode *,
  924. const struct qstr *, umode_t);
  925. extern void ext3_free_inode (handle_t *, struct inode *);
  926. extern struct inode * ext3_orphan_get (struct super_block *, unsigned long);
  927. extern unsigned long ext3_count_free_inodes (struct super_block *);
  928. extern unsigned long ext3_count_dirs (struct super_block *);
  929. extern void ext3_check_inodes_bitmap (struct super_block *);
  930. extern unsigned long ext3_count_free (struct buffer_head *, unsigned);
  931. /* inode.c */
  932. int ext3_forget(handle_t *handle, int is_metadata, struct inode *inode,
  933. struct buffer_head *bh, ext3_fsblk_t blocknr);
  934. struct buffer_head * ext3_getblk (handle_t *, struct inode *, long, int, int *);
  935. struct buffer_head * ext3_bread (handle_t *, struct inode *, int, int, int *);
  936. int ext3_get_blocks_handle(handle_t *handle, struct inode *inode,
  937. sector_t iblock, unsigned long maxblocks, struct buffer_head *bh_result,
  938. int create);
  939. extern struct inode *ext3_iget(struct super_block *, unsigned long);
  940. extern int ext3_write_inode (struct inode *, struct writeback_control *);
  941. extern int ext3_setattr (struct dentry *, struct iattr *);
  942. extern void ext3_evict_inode (struct inode *);
  943. extern int ext3_sync_inode (handle_t *, struct inode *);
  944. extern void ext3_discard_reservation (struct inode *);
  945. extern void ext3_dirty_inode(struct inode *, int);
  946. extern int ext3_change_inode_journal_flag(struct inode *, int);
  947. extern int ext3_get_inode_loc(struct inode *, struct ext3_iloc *);
  948. extern int ext3_can_truncate(struct inode *inode);
  949. extern void ext3_truncate(struct inode *inode);
  950. extern void ext3_set_inode_flags(struct inode *);
  951. extern void ext3_get_inode_flags(struct ext3_inode_info *);
  952. extern void ext3_set_aops(struct inode *inode);
  953. extern int ext3_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
  954. u64 start, u64 len);
  955. /* ioctl.c */
  956. extern long ext3_ioctl(struct file *, unsigned int, unsigned long);
  957. extern long ext3_compat_ioctl(struct file *, unsigned int, unsigned long);
  958. /* namei.c */
  959. extern int ext3_orphan_add(handle_t *, struct inode *);
  960. extern int ext3_orphan_del(handle_t *, struct inode *);
  961. extern int ext3_htree_fill_tree(struct file *dir_file, __u32 start_hash,
  962. __u32 start_minor_hash, __u32 *next_hash);
  963. /* resize.c */
  964. extern int ext3_group_add(struct super_block *sb,
  965. struct ext3_new_group_data *input);
  966. extern int ext3_group_extend(struct super_block *sb,
  967. struct ext3_super_block *es,
  968. ext3_fsblk_t n_blocks_count);
  969. /* super.c */
  970. extern __printf(3, 4)
  971. void ext3_error(struct super_block *, const char *, const char *, ...);
  972. extern void __ext3_std_error (struct super_block *, const char *, int);
  973. extern __printf(3, 4)
  974. void ext3_abort(struct super_block *, const char *, const char *, ...);
  975. extern __printf(3, 4)
  976. void ext3_warning(struct super_block *, const char *, const char *, ...);
  977. extern __printf(3, 4)
  978. void ext3_msg(struct super_block *, const char *, const char *, ...);
  979. extern void ext3_update_dynamic_rev (struct super_block *sb);
  980. #define ext3_std_error(sb, errno) \
  981. do { \
  982. if ((errno)) \
  983. __ext3_std_error((sb), __func__, (errno)); \
  984. } while (0)
  985. /*
  986. * Inodes and files operations
  987. */
  988. /* dir.c */
  989. extern const struct file_operations ext3_dir_operations;
  990. /* file.c */
  991. extern const struct inode_operations ext3_file_inode_operations;
  992. extern const struct file_operations ext3_file_operations;
  993. /* namei.c */
  994. extern const struct inode_operations ext3_dir_inode_operations;
  995. extern const struct inode_operations ext3_special_inode_operations;
  996. /* symlink.c */
  997. extern const struct inode_operations ext3_symlink_inode_operations;
  998. extern const struct inode_operations ext3_fast_symlink_inode_operations;
  999. #define EXT3_JOURNAL(inode) (EXT3_SB((inode)->i_sb)->s_journal)
  1000. /* Define the number of blocks we need to account to a transaction to
  1001. * modify one block of data.
  1002. *
  1003. * We may have to touch one inode, one bitmap buffer, up to three
  1004. * indirection blocks, the group and superblock summaries, and the data
  1005. * block to complete the transaction. */
  1006. #define EXT3_SINGLEDATA_TRANS_BLOCKS 8U
  1007. /* Extended attribute operations touch at most two data buffers,
  1008. * two bitmap buffers, and two group summaries, in addition to the inode
  1009. * and the superblock, which are already accounted for. */
  1010. #define EXT3_XATTR_TRANS_BLOCKS 6U
  1011. /* Define the minimum size for a transaction which modifies data. This
  1012. * needs to take into account the fact that we may end up modifying two
  1013. * quota files too (one for the group, one for the user quota). The
  1014. * superblock only gets updated once, of course, so don't bother
  1015. * counting that again for the quota updates. */
  1016. #define EXT3_DATA_TRANS_BLOCKS(sb) (EXT3_SINGLEDATA_TRANS_BLOCKS + \
  1017. EXT3_XATTR_TRANS_BLOCKS - 2 + \
  1018. EXT3_MAXQUOTAS_TRANS_BLOCKS(sb))
  1019. /* Delete operations potentially hit one directory's namespace plus an
  1020. * entire inode, plus arbitrary amounts of bitmap/indirection data. Be
  1021. * generous. We can grow the delete transaction later if necessary. */
  1022. #define EXT3_DELETE_TRANS_BLOCKS(sb) (EXT3_MAXQUOTAS_TRANS_BLOCKS(sb) + 64)
  1023. /* Define an arbitrary limit for the amount of data we will anticipate
  1024. * writing to any given transaction. For unbounded transactions such as
  1025. * write(2) and truncate(2) we can write more than this, but we always
  1026. * start off at the maximum transaction size and grow the transaction
  1027. * optimistically as we go. */
  1028. #define EXT3_MAX_TRANS_DATA 64U
  1029. /* We break up a large truncate or write transaction once the handle's
  1030. * buffer credits gets this low, we need either to extend the
  1031. * transaction or to start a new one. Reserve enough space here for
  1032. * inode, bitmap, superblock, group and indirection updates for at least
  1033. * one block, plus two quota updates. Quota allocations are not
  1034. * needed. */
  1035. #define EXT3_RESERVE_TRANS_BLOCKS 12U
  1036. #define EXT3_INDEX_EXTRA_TRANS_BLOCKS 8
  1037. #ifdef CONFIG_QUOTA
  1038. /* Amount of blocks needed for quota update - we know that the structure was
  1039. * allocated so we need to update only inode+data */
  1040. #define EXT3_QUOTA_TRANS_BLOCKS(sb) (test_opt(sb, QUOTA) ? 2 : 0)
  1041. /* Amount of blocks needed for quota insert/delete - we do some block writes
  1042. * but inode, sb and group updates are done only once */
  1043. #define EXT3_QUOTA_INIT_BLOCKS(sb) (test_opt(sb, QUOTA) ? (DQUOT_INIT_ALLOC*\
  1044. (EXT3_SINGLEDATA_TRANS_BLOCKS-3)+3+DQUOT_INIT_REWRITE) : 0)
  1045. #define EXT3_QUOTA_DEL_BLOCKS(sb) (test_opt(sb, QUOTA) ? (DQUOT_DEL_ALLOC*\
  1046. (EXT3_SINGLEDATA_TRANS_BLOCKS-3)+3+DQUOT_DEL_REWRITE) : 0)
  1047. #else
  1048. #define EXT3_QUOTA_TRANS_BLOCKS(sb) 0
  1049. #define EXT3_QUOTA_INIT_BLOCKS(sb) 0
  1050. #define EXT3_QUOTA_DEL_BLOCKS(sb) 0
  1051. #endif
  1052. #define EXT3_MAXQUOTAS_TRANS_BLOCKS(sb) (EXT3_MAXQUOTAS*EXT3_QUOTA_TRANS_BLOCKS(sb))
  1053. #define EXT3_MAXQUOTAS_INIT_BLOCKS(sb) (EXT3_MAXQUOTAS*EXT3_QUOTA_INIT_BLOCKS(sb))
  1054. #define EXT3_MAXQUOTAS_DEL_BLOCKS(sb) (EXT3_MAXQUOTAS*EXT3_QUOTA_DEL_BLOCKS(sb))
  1055. int
  1056. ext3_mark_iloc_dirty(handle_t *handle,
  1057. struct inode *inode,
  1058. struct ext3_iloc *iloc);
  1059. /*
  1060. * On success, We end up with an outstanding reference count against
  1061. * iloc->bh. This _must_ be cleaned up later.
  1062. */
  1063. int ext3_reserve_inode_write(handle_t *handle, struct inode *inode,
  1064. struct ext3_iloc *iloc);
  1065. int ext3_mark_inode_dirty(handle_t *handle, struct inode *inode);
  1066. /*
  1067. * Wrapper functions with which ext3 calls into JBD. The intent here is
  1068. * to allow these to be turned into appropriate stubs so ext3 can control
  1069. * ext2 filesystems, so ext2+ext3 systems only nee one fs. This work hasn't
  1070. * been done yet.
  1071. */
  1072. static inline void ext3_journal_release_buffer(handle_t *handle,
  1073. struct buffer_head *bh)
  1074. {
  1075. journal_release_buffer(handle, bh);
  1076. }
  1077. void ext3_journal_abort_handle(const char *caller, const char *err_fn,
  1078. struct buffer_head *bh, handle_t *handle, int err);
  1079. int __ext3_journal_get_undo_access(const char *where, handle_t *handle,
  1080. struct buffer_head *bh);
  1081. int __ext3_journal_get_write_access(const char *where, handle_t *handle,
  1082. struct buffer_head *bh);
  1083. int __ext3_journal_forget(const char *where, handle_t *handle,
  1084. struct buffer_head *bh);
  1085. int __ext3_journal_revoke(const char *where, handle_t *handle,
  1086. unsigned long blocknr, struct buffer_head *bh);
  1087. int __ext3_journal_get_create_access(const char *where,
  1088. handle_t *handle, struct buffer_head *bh);
  1089. int __ext3_journal_dirty_metadata(const char *where,
  1090. handle_t *handle, struct buffer_head *bh);
  1091. #define ext3_journal_get_undo_access(handle, bh) \
  1092. __ext3_journal_get_undo_access(__func__, (handle), (bh))
  1093. #define ext3_journal_get_write_access(handle, bh) \
  1094. __ext3_journal_get_write_access(__func__, (handle), (bh))
  1095. #define ext3_journal_revoke(handle, blocknr, bh) \
  1096. __ext3_journal_revoke(__func__, (handle), (blocknr), (bh))
  1097. #define ext3_journal_get_create_access(handle, bh) \
  1098. __ext3_journal_get_create_access(__func__, (handle), (bh))
  1099. #define ext3_journal_dirty_metadata(handle, bh) \
  1100. __ext3_journal_dirty_metadata(__func__, (handle), (bh))
  1101. #define ext3_journal_forget(handle, bh) \
  1102. __ext3_journal_forget(__func__, (handle), (bh))
  1103. int ext3_journal_dirty_data(handle_t *handle, struct buffer_head *bh);
  1104. handle_t *ext3_journal_start_sb(struct super_block *sb, int nblocks);
  1105. int __ext3_journal_stop(const char *where, handle_t *handle);
  1106. static inline handle_t *ext3_journal_start(struct inode *inode, int nblocks)
  1107. {
  1108. return ext3_journal_start_sb(inode->i_sb, nblocks);
  1109. }
  1110. #define ext3_journal_stop(handle) \
  1111. __ext3_journal_stop(__func__, (handle))
  1112. static inline handle_t *ext3_journal_current_handle(void)
  1113. {
  1114. return journal_current_handle();
  1115. }
  1116. static inline int ext3_journal_extend(handle_t *handle, int nblocks)
  1117. {
  1118. return journal_extend(handle, nblocks);
  1119. }
  1120. static inline int ext3_journal_restart(handle_t *handle, int nblocks)
  1121. {
  1122. return journal_restart(handle, nblocks);
  1123. }
  1124. static inline int ext3_journal_blocks_per_page(struct inode *inode)
  1125. {
  1126. return journal_blocks_per_page(inode);
  1127. }
  1128. static inline int ext3_journal_force_commit(journal_t *journal)
  1129. {
  1130. return journal_force_commit(journal);
  1131. }
  1132. /* super.c */
  1133. int ext3_force_commit(struct super_block *sb);
  1134. static inline int ext3_should_journal_data(struct inode *inode)
  1135. {
  1136. if (!S_ISREG(inode->i_mode))
  1137. return 1;
  1138. if (test_opt(inode->i_sb, DATA_FLAGS) == EXT3_MOUNT_JOURNAL_DATA)
  1139. return 1;
  1140. if (EXT3_I(inode)->i_flags & EXT3_JOURNAL_DATA_FL)
  1141. return 1;
  1142. return 0;
  1143. }
  1144. static inline int ext3_should_order_data(struct inode *inode)
  1145. {
  1146. if (!S_ISREG(inode->i_mode))
  1147. return 0;
  1148. if (EXT3_I(inode)->i_flags & EXT3_JOURNAL_DATA_FL)
  1149. return 0;
  1150. if (test_opt(inode->i_sb, DATA_FLAGS) == EXT3_MOUNT_ORDERED_DATA)
  1151. return 1;
  1152. return 0;
  1153. }
  1154. static inline int ext3_should_writeback_data(struct inode *inode)
  1155. {
  1156. if (!S_ISREG(inode->i_mode))
  1157. return 0;
  1158. if (EXT3_I(inode)->i_flags & EXT3_JOURNAL_DATA_FL)
  1159. return 0;
  1160. if (test_opt(inode->i_sb, DATA_FLAGS) == EXT3_MOUNT_WRITEBACK_DATA)
  1161. return 1;
  1162. return 0;
  1163. }
  1164. #include <trace/events/ext3.h>