ChangeLog 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407
  1. ToDo/Notes:
  2. - Find and fix bugs.
  3. - Checkpoint or disable the user space journal ($UsnJrnl).
  4. - In between ntfs_prepare/commit_write, need exclusion between
  5. simultaneous file extensions. This is given to us by holding i_sem
  6. on the inode. The only places in the kernel when a file is resized
  7. are prepare/commit write and truncate for both of which i_sem is
  8. held. Just have to be careful in readpage/writepage and all other
  9. helpers not running under i_sem that we play nice...
  10. Also need to be careful with initialized_size extention in
  11. ntfs_prepare_write. Basically, just be _very_ careful in this code...
  12. UPDATE: The only things that need to be checked are read/writepage
  13. which do not hold i_sem. Note writepage cannot change i_size but it
  14. needs to cope with a concurrent i_size change, just like readpage.
  15. Also both need to cope with concurrent changes to the other sizes,
  16. i.e. initialized/allocated/compressed size, as well.
  17. - Implement mft.c::sync_mft_mirror_umount(). We currently will just
  18. leave the volume dirty on umount if the final iput(vol->mft_ino)
  19. causes a write of any mirrored mft records due to the mft mirror
  20. inode having been discarded already. Whether this can actually ever
  21. happen is unclear however so it is worth waiting until someone hits
  22. the problem.
  23. - Enable the code for setting the NT4 compatibility flag when we start
  24. making NTFS 1.2 specific modifications.
  25. 2.1.23-WIP
  26. - Add printk rate limiting for ntfs_warning() and ntfs_error() when
  27. compiled without debug. This avoids a possible denial of service
  28. attack. Thanks to Carl-Daniel Hailfinger from SuSE for pointing this
  29. out.
  30. - Fix compilation warnings on ia64. (Randy Dunlap)
  31. - Use i_size_read() in fs/ntfs/attrib.c::ntfs_attr_set().
  32. - Use i_size_read() in fs/ntfs/logfile.c::ntfs_{check,empty}_logfile().
  33. - Use i_size_read() once and then use the cached value in
  34. fs/ntfs/lcnalloc.c::ntfs_cluster_alloc().
  35. - Use i_size_read() in fs/ntfs/file.c::ntfs_file_open().
  36. - Add size_lock to the ntfs_inode structure. This is an rw spinlock
  37. and it locks against access to the inode sizes. Note, ->size_lock
  38. is also accessed from irq context so you must use the _irqsave and
  39. _irqrestore lock and unlock functions, respectively.
  40. - Use i_size_read() in fs/ntfs/compress.c at the start of the read and
  41. use the cached value afterwards. Cache the initialized_size in the
  42. same way and protect access to the two sizes using the size_lock.
  43. - Use i_size_read() in fs/ntfs/dir.c once and then use the cached
  44. value afterwards.
  45. - Use i_size_read() in fs/ntfs/super.c once and then use the cached
  46. value afterwards. Cache the initialized_size in the same way and
  47. protect access to the two sizes using the size_lock.
  48. - Minor optimization to fs/ntfs/super.c::ntfs_statfs() and its helpers.
  49. - Use i_size_read() in fs/ntfs/inode.c once and then use the cached
  50. value afterwards when reading the size of the bitmap inode.
  51. - Use i_size_{read,write}() in fs/ntfs/{aops.c,mft.c} and protect
  52. access to the i_size and other size fields using the size_lock.
  53. - Implement extension of resident files in the regular file write code
  54. paths (fs/ntfs/aops.c::ntfs_{prepare,commit}_write()). At present
  55. this only works until the data attribute becomes too big for the mft
  56. record after which we abort the write returning -EOPNOTSUPP from
  57. ntfs_prepare_write().
  58. - Add disable_sparse mount option together with a per volume sparse
  59. enable bit which is set appropriately and a per inode sparse disable
  60. bit which is preset on some system file inodes as appropriate.
  61. - Enforce that sparse support is disabled on NTFS volumes pre 3.0.
  62. - Fix a bug in fs/ntfs/runlist.c::ntfs_mapping_pairs_decompress() in
  63. the creation of the unmapped runlist element for the base attribute
  64. extent.
  65. - Split ntfs_map_runlist() into ntfs_map_runlist() and a non-locking
  66. helper ntfs_map_runlist_nolock() which is used by ntfs_map_runlist().
  67. This allows us to map runlist fragments with the runlist lock already
  68. held without having to drop and reacquire it around the call. Adapt
  69. all callers.
  70. - Change ntfs_find_vcn() to ntfs_find_vcn_nolock() which takes a locked
  71. runlist. This allows us to find runlist elements with the runlist
  72. lock already held without having to drop and reacquire it around the
  73. call. Adapt all callers.
  74. - Change time to u64 in time.h::ntfs2utc() as it otherwise generates a
  75. warning in the do_div() call on sparc32. Thanks to Meelis Roos for
  76. the report and analysis of the warning.
  77. - Fix a nasty runlist merge bug when merging two holes.
  78. - Set the ntfs_inode->allocated_size to the real allocated size in the
  79. mft record for resident attributes (fs/ntfs/inode.c).
  80. - Small readability cleanup to use "a" instead of "ctx->attr"
  81. everywhere (fs/ntfs/inode.c).
  82. - Make fs/ntfs/namei.c::ntfs_get_{parent,dentry} static and move the
  83. definition of ntfs_export_ops from fs/ntfs/super.c to namei.c. Also,
  84. declare ntfs_export_ops in fs/ntfs/ntfs.h.
  85. - Correct sparse file handling. The compressed values need to be
  86. checked and set in the ntfs inode as done for compressed files and
  87. the compressed size needs to be used for vfs inode->i_blocks instead
  88. of the allocated size, again, as done for compressed files.
  89. 2.1.22 - Many bug and race fixes and error handling improvements.
  90. - Improve error handling in fs/ntfs/inode.c::ntfs_truncate().
  91. - Change fs/ntfs/inode.c::ntfs_truncate() to return an error code
  92. instead of void and provide a helper ntfs_truncate_vfs() for the
  93. vfs ->truncate method.
  94. - Add a new ntfs inode flag NInoTruncateFailed() and modify
  95. fs/ntfs/inode.c::ntfs_truncate() to set and clear it appropriately.
  96. - Fix min_size and max_size definitions in ATTR_DEF structure in
  97. fs/ntfs/layout.h to be signed.
  98. - Add attribute definition handling helpers to fs/ntfs/attrib.[hc]:
  99. ntfs_attr_size_bounds_check(), ntfs_attr_can_be_non_resident(), and
  100. ntfs_attr_can_be_resident(), which in turn use the new private helper
  101. ntfs_attr_find_in_attrdef().
  102. - In fs/ntfs/aops.c::mark_ntfs_record_dirty(), take the
  103. mapping->private_lock around the dirtying of the buffer heads
  104. analagous to the way it is done in __set_page_dirty_buffers().
  105. - Ensure the mft record size does not exceed the PAGE_CACHE_SIZE at
  106. mount time as this cannot work with the current implementation.
  107. - Check for location of attribute name and improve error handling in
  108. general in fs/ntfs/inode.c::ntfs_read_locked_inode() and friends.
  109. - In fs/ntfs/aops.c::ntfs_writepage(), if the page is fully outside
  110. i_size, i.e. race with truncate, invalidate the buffers on the page
  111. so that they become freeable and hence the page does not leak.
  112. - Remove unused function fs/ntfs/runlist.c::ntfs_rl_merge(). (Adrian
  113. Bunk)
  114. - Fix stupid bug in fs/ntfs/attrib.c::ntfs_attr_find() that resulted in
  115. a NULL pointer dereference in the error code path when a corrupt
  116. attribute was found. (Thanks to Domen Puncer for the bug report.)
  117. - Add MODULE_VERSION() to fs/ntfs/super.c.
  118. - Make several functions and variables static. (Adrian Bunk)
  119. - Modify fs/ntfs/aops.c::mark_ntfs_record_dirty() so it allocates
  120. buffers for the page if they are not present and then marks the
  121. buffers belonging to the ntfs record dirty. This causes the buffers
  122. to become busy and hence they are safe from removal until the page
  123. has been written out.
  124. - Fix stupid bug in fs/ntfs/attrib.c::ntfs_external_attr_find() in the
  125. error handling code path that resulted in a BUG() due to trying to
  126. unmap an extent mft record when the mapping of it had failed and it
  127. thus was not mapped. (Thanks to Ken MacFerrin for the bug report.)
  128. - Drop the runlist lock after the vcn has been read in
  129. fs/ntfs/lcnalloc.c::__ntfs_cluster_free().
  130. - Rewrite handling of multi sector transfer errors. We now do not set
  131. PageError() when such errors are detected in the async i/o handler
  132. fs/ntfs/aops.c::ntfs_end_buffer_async_read(). All users of mst
  133. protected attributes now check the magic of each ntfs record as they
  134. use it and act appropriately. This has the effect of making errors
  135. granular per ntfs record rather than per page which solves the case
  136. where we cannot access any of the ntfs records in a page when a
  137. single one of them had an mst error. (Thanks to Ken MacFerrin for
  138. the bug report.)
  139. - Fix error handling in fs/ntfs/quota.c::ntfs_mark_quotas_out_of_date()
  140. where we failed to release i_sem on the $Quota/$Q attribute inode.
  141. - Fix bug in handling of bad inodes in fs/ntfs/namei.c::ntfs_lookup().
  142. - Add mapping of unmapped buffers to all remaining code paths, i.e.
  143. fs/ntfs/aops.c::ntfs_write_mst_block(), mft.c::ntfs_sync_mft_mirror(),
  144. and write_mft_record_nolock(). From now on we require that the
  145. complete runlist for the mft mirror is always mapped into memory.
  146. - Add creation of buffers to fs/ntfs/mft.c::ntfs_sync_mft_mirror().
  147. - Improve error handling in fs/ntfs/aops.c::ntfs_{read,write}_block().
  148. - Cleanup fs/ntfs/aops.c::ntfs_{read,write}page() since we know that a
  149. resident attribute will be smaller than a page which makes the code
  150. simpler. Also make the code more tolerant to concurrent ->truncate.
  151. 2.1.21 - Fix some races and bugs, rewrite mft write code, add mft allocator.
  152. - Implement extent mft record deallocation
  153. fs/ntfs/mft.c::ntfs_extent_mft_record_free().
  154. - Splitt runlist related functions off from attrib.[hc] to runlist.[hc].
  155. - Add vol->mft_data_pos and initialize it at mount time.
  156. - Rename init_runlist() to ntfs_init_runlist(), ntfs_vcn_to_lcn() to
  157. ntfs_rl_vcn_to_lcn(), decompress_mapping_pairs() to
  158. ntfs_mapping_pairs_decompress(), ntfs_merge_runlists() to
  159. ntfs_runlists_merge() and adapt all callers.
  160. - Add fs/ntfs/runlist.[hc]::ntfs_get_nr_significant_bytes(),
  161. ntfs_get_size_for_mapping_pairs(), ntfs_write_significant_bytes(),
  162. and ntfs_mapping_pairs_build(), adapted from libntfs.
  163. - Make fs/ntfs/lcnalloc.c::ntfs_cluster_free_from_rl_nolock() not
  164. static and add a declaration for it to lcnalloc.h.
  165. - Add fs/ntfs/lcnalloc.h::ntfs_cluster_free_from_rl() which is a static
  166. inline wrapper for ntfs_cluster_free_from_rl_nolock() which takes the
  167. cluster bitmap lock for the duration of the call.
  168. - Add fs/ntfs/attrib.[hc]::ntfs_attr_record_resize().
  169. - Implement the equivalent of memset() for an ntfs attribute in
  170. fs/ntfs/attrib.[hc]::ntfs_attr_set() and switch
  171. fs/ntfs/logfile.c::ntfs_empty_logfile() to using it.
  172. - Remove unnecessary casts from LCN_* constants.
  173. - Implement fs/ntfs/runlist.c::ntfs_rl_truncate_nolock().
  174. - Add MFT_RECORD_OLD as a copy of MFT_RECORD in fs/ntfs/layout.h and
  175. change MFT_RECORD to contain the NTFS 3.1+ specific fields.
  176. - Add a helper function fs/ntfs/aops.c::mark_ntfs_record_dirty() which
  177. marks all buffers belonging to an ntfs record dirty, followed by
  178. marking the page the ntfs record is in dirty and also marking the vfs
  179. inode containing the ntfs record dirty (I_DIRTY_PAGES).
  180. - Switch fs/ntfs/index.h::ntfs_index_entry_mark_dirty() to using the
  181. new helper fs/ntfs/aops.c::mark_ntfs_record_dirty() and remove the no
  182. longer needed fs/ntfs/index.[hc]::__ntfs_index_entry_mark_dirty().
  183. - Move ntfs_{un,}map_page() from ntfs.h to aops.h and fix resulting
  184. include errors.
  185. - Move the typedefs for runlist_element and runlist from types.h to
  186. runlist.h and fix resulting include errors.
  187. - Remove unused {__,}format_mft_record() from fs/ntfs/mft.c.
  188. - Modify fs/ntfs/mft.c::__mark_mft_record_dirty() to use the helper
  189. mark_ntfs_record_dirty() which also changes the behaviour in that we
  190. now set the buffers belonging to the mft record dirty as well as the
  191. page itself.
  192. - Update fs/ntfs/mft.c::write_mft_record_nolock() and sync_mft_mirror()
  193. to cope with the fact that there now are dirty buffers in mft pages.
  194. - Update fs/ntfs/inode.c::ntfs_write_inode() to also use the helper
  195. mark_ntfs_record_dirty() and thus to set the buffers belonging to the
  196. mft record dirty as well as the page itself.
  197. - Fix compiler warnings on x86-64 in fs/ntfs/dir.c. (Randy Dunlap,
  198. slightly modified by me)
  199. - Add fs/ntfs/mft.c::try_map_mft_record() which fails with -EALREADY if
  200. the mft record is already locked and otherwise behaves the same way
  201. as fs/ntfs/mft.c::map_mft_record().
  202. - Modify fs/ntfs/mft.c::write_mft_record_nolock() so that it only
  203. writes the mft record if the buffers belonging to it are dirty.
  204. Otherwise we assume that it was written out by other means already.
  205. - Attempting to write outside initialized size is _not_ a bug so remove
  206. the bug check from fs/ntfs/aops.c::ntfs_write_mst_block(). It is in
  207. fact required to write outside initialized size when preparing to
  208. extend the initialized size.
  209. - Map the page instead of using page_address() before writing to it in
  210. fs/ntfs/aops.c::ntfs_mft_writepage().
  211. - Provide exclusion between opening an inode / mapping an mft record
  212. and accessing the mft record in fs/ntfs/mft.c::ntfs_mft_writepage()
  213. by setting the page not uptodate throughout ntfs_mft_writepage().
  214. - Clear the page uptodate flag in fs/ntfs/aops.c::ntfs_write_mst_block()
  215. to ensure noone can see the page whilst the mst fixups are applied.
  216. - Add the helper fs/ntfs/mft.c::ntfs_may_write_mft_record() which
  217. checks if an mft record may be written out safely obtaining any
  218. necessary locks in the process. This is used by
  219. fs/ntfs/aops.c::ntfs_write_mst_block().
  220. - Modify fs/ntfs/aops.c::ntfs_write_mst_block() to also work for
  221. writing mft records and improve its error handling in the process.
  222. Now if any of the records in the page fail to be written out, all
  223. other records will be written out instead of aborting completely.
  224. - Remove ntfs_mft_aops and update all users to use ntfs_mst_aops.
  225. - Modify fs/ntfs/inode.c::ntfs_read_locked_inode() to set the
  226. ntfs_mst_aops for all inodes which are NInoMstProtected() and
  227. ntfs_aops for all other inodes.
  228. - Rename fs/ntfs/mft.c::sync_mft_mirror{,_umount}() to
  229. ntfs_sync_mft_mirror{,_umount}() and change their parameters so they
  230. no longer require an ntfs inode to be present. Update all callers.
  231. - Cleanup the error handling in fs/ntfs/mft.c::ntfs_sync_mft_mirror().
  232. - Clear the page uptodate flag in fs/ntfs/mft.c::ntfs_sync_mft_mirror()
  233. to ensure noone can see the page whilst the mst fixups are applied.
  234. - Remove the no longer needed fs/ntfs/mft.c::ntfs_mft_writepage() and
  235. fs/ntfs/mft.c::try_map_mft_record().
  236. - Fix callers of fs/ntfs/aops.c::mark_ntfs_record_dirty() to call it
  237. with the ntfs inode which contains the page rather than the ntfs
  238. inode the mft record of which is in the page.
  239. - Fix race condition in fs/ntfs/inode.c::ntfs_put_inode() by moving the
  240. index inode bitmap inode release code from there to
  241. fs/ntfs/inode.c::ntfs_clear_big_inode(). (Thanks to Christoph
  242. Hellwig for spotting this.)
  243. - Fix race condition in fs/ntfs/inode.c::ntfs_put_inode() by taking the
  244. inode semaphore around the code that sets ni->itype.index.bmp_ino to
  245. NULL and reorganize the code to optimize it a bit. (Thanks to
  246. Christoph Hellwig for spotting this.)
  247. - Modify fs/ntfs/aops.c::mark_ntfs_record_dirty() to no longer take the
  248. ntfs inode as a parameter as this is confusing and misleading and the
  249. needed ntfs inode is available via NTFS_I(page->mapping->host).
  250. Adapt all callers to this change.
  251. - Modify fs/ntfs/mft.c::write_mft_record_nolock() and
  252. fs/ntfs/aops.c::ntfs_write_mst_block() to only check the dirty state
  253. of the first buffer in a record and to take this as the ntfs record
  254. dirty state. We cannot look at the dirty state for subsequent
  255. buffers because we might be racing with
  256. fs/ntfs/aops.c::mark_ntfs_record_dirty().
  257. - Move the static inline ntfs_init_big_inode() from fs/ntfs/inode.c to
  258. inode.h and make fs/ntfs/inode.c::__ntfs_init_inode() non-static and
  259. add a declaration for it to inode.h. Fix some compilation issues
  260. that resulted due to #includes and header file interdependencies.
  261. - Simplify setup of i_mode in fs/ntfs/inode.c::ntfs_read_locked_inode().
  262. - Add helpers fs/ntfs/layout.h::MK_MREF() and MK_LE_MREF().
  263. - Modify fs/ntfs/mft.c::map_extent_mft_record() to only verify the mft
  264. record sequence number if it is specified (i.e. not zero).
  265. - Add fs/ntfs/mft.[hc]::ntfs_mft_record_alloc() and various helper
  266. functions used by it.
  267. - Update Documentation/filesystems/ntfs.txt with instructions on how to
  268. use the Device-Mapper driver with NTFS ftdisk/LDM raid. This removes
  269. the linear raid problem with the Software RAID / MD driver when one
  270. or more of the devices has an odd number of sectors.
  271. 2.1.20 - Fix two stupid bugs introduced in 2.1.18 release.
  272. - Fix stupid bug in fs/ntfs/attrib.c::ntfs_attr_reinit_search_ctx()
  273. where we did not clear ctx->al_entry but it was still set due to
  274. changes in ntfs_attr_lookup() and ntfs_external_attr_find() in
  275. particular.
  276. - Fix another stupid bug in fs/ntfs/attrib.c::ntfs_external_attr_find()
  277. where we forgot to unmap the extent mft record when we had finished
  278. enumerating an attribute which caused a bug check to trigger when the
  279. VFS calls ->clear_inode.
  280. 2.1.19 - Many cleanups, improvements, and a minor bug fix.
  281. - Update ->setattr (fs/ntfs/inode.c::ntfs_setattr()) to refuse to
  282. change the uid, gid, and mode of an inode as we do not support NTFS
  283. ACLs yet.
  284. - Remove BKL use from ntfs_setattr() syncing up with the rest of the
  285. kernel.
  286. - Get rid of the ugly transparent union in fs/ntfs/dir.c::ntfs_readdir()
  287. and ntfs_filldir() as per suggestion from Al Viro.
  288. - Change '\0' and L'\0' to simply 0 as per advice from Linus Torvalds.
  289. - Update ->truncate (fs/ntfs/inode.c::ntfs_truncate()) to check if the
  290. inode size has changed and to only output an error if so.
  291. - Rename fs/ntfs/attrib.h::attribute_value_length() to ntfs_attr_size().
  292. - Add le{16,32,64} as well as sle{16,32,64} data types to
  293. fs/ntfs/types.h.
  294. - Change ntfschar to be le16 instead of u16 in fs/ntfs/types.h.
  295. - Add le versions of VCN, LCN, and LSN called leVCN, leLCN, and leLSN,
  296. respectively, to fs/ntfs/types.h.
  297. - Update endianness conversion macros in fs/ntfs/endian.h to use the
  298. new types as appropriate.
  299. - Do proper type casting when using sle64_to_cpup() in fs/ntfs/dir.c
  300. and index.c.
  301. - Add leMFT_REF data type to fs/ntfs/layout.h.
  302. - Update all NTFS header files with the new little endian data types.
  303. Affected files are fs/ntfs/layout.h, logfile.h, and time.h.
  304. - Do proper type casting when using ntfs_is_*_recordp() in
  305. fs/ntfs/logfile.c, mft.c, and super.c.
  306. - Fix all the sparse bitwise warnings. Had to change all the typedef
  307. enums storing little endian values to simple enums plus a typedef for
  308. the datatype to make sparse happy.
  309. - Fix a bug found by the new sparse bitwise warnings where the default
  310. upcase table was defined as a pointer to wchar_t rather than ntfschar
  311. in fs/ntfs/ntfs.h and super.c.
  312. - Change {const_,}cpu_to_le{16,32}(0) to just 0 as suggested by Al Viro.
  313. 2.1.18 - Fix scheduling latencies at mount time as well as an endianness bug.
  314. - Remove vol->nr_mft_records as it was pretty meaningless and optimize
  315. the calculation of total/free inodes as used by statfs().
  316. - Fix scheduling latencies in ntfs_fill_super() by dropping the BKL
  317. because the code itself is using the ntfs_lock semaphore which
  318. provides safe locking. (Ingo Molnar)
  319. - Fix a potential bug in fs/ntfs/mft.c::map_extent_mft_record() that
  320. could occur in the future for when we start closing/freeing extent
  321. inodes if we don't set base_ni->ext.extent_ntfs_inos to NULL after
  322. we free it.
  323. - Rename {find,lookup}_attr() to ntfs_attr_{find,lookup}() as well as
  324. find_external_attr() to ntfs_external_attr_find() to cleanup the
  325. namespace a bit and to be more consistent with libntfs.
  326. - Rename {{re,}init,get,put}_attr_search_ctx() to
  327. ntfs_attr_{{re,}init,get,put}_search_ctx() as well as the type
  328. attr_search_context to ntfs_attr_search_ctx.
  329. - Force use of ntfs_attr_find() in ntfs_attr_lookup() when searching
  330. for the attribute list attribute itself.
  331. - Fix endianness bug in ntfs_external_attr_find().
  332. - Change ntfs_{external_,}attr_find() to return 0 on success, -ENOENT
  333. if the attribute is not found, and -EIO on real error. In the case
  334. of -ENOENT, the search context is updated to describe the attribute
  335. before which the attribute being searched for would need to be
  336. inserted if such an action were to be desired and in the case of
  337. ntfs_external_attr_find() the search context is also updated to
  338. indicate the attribute list entry before which the attribute list
  339. entry of the attribute being searched for would need to be inserted
  340. if such an action were to be desired. Also make ntfs_find_attr()
  341. static and remove its prototype from attrib.h as it is not used
  342. anywhere other than attrib.c. Update ntfs_attr_lookup() and all
  343. callers of ntfs_{external,}attr_{find,lookup}() for the new return
  344. values.
  345. - Minor cleanup of fs/ntfs/inode.c::ntfs_init_locked_inode().
  346. 2.1.17 - Fix bugs in mount time error code paths and other updates.
  347. - Implement bitmap modification code (fs/ntfs/bitmap.[hc]). This
  348. includes functions to set/clear a single bit or a run of bits.
  349. - Add fs/ntfs/attrib.[hc]::ntfs_find_vcn() which returns the locked
  350. runlist element containing a particular vcn. It also takes care of
  351. mapping any needed runlist fragments.
  352. - Implement cluster (de-)allocation code (fs/ntfs/lcnalloc.[hc]).
  353. - Load attribute definition table from $AttrDef at mount time.
  354. - Fix bugs in mount time error code paths involving (de)allocation of
  355. the default and volume upcase tables.
  356. - Remove ntfs_nr_mounts as it is no longer used.
  357. 2.1.16 - Implement access time updates, file sync, async io, and read/writev.
  358. - Add support for readv/writev and aio_read/aio_write (fs/ntfs/file.c).
  359. This is done by setting the appropriate file operations pointers to
  360. the generic helper functions provided by mm/filemap.c.
  361. - Implement fsync, fdatasync, and msync both for files (fs/ntfs/file.c)
  362. and directories (fs/ntfs/dir.c).
  363. - Add support for {a,m,c}time updates to inode.c::ntfs_write_inode().
  364. Note, except for the root directory and any other system files opened
  365. by the user, the system files will not have their access times
  366. updated as they are only accessed at the inode level an hence the
  367. file level functions which cause the times to be updated are never
  368. invoked.
  369. 2.1.15 - Invalidate quotas when (re)mounting read-write.
  370. - Add new element itype.index.collation_rule to the ntfs inode
  371. structure and set it appropriately in ntfs_read_locked_inode().
  372. - Implement a new inode type "index" to allow efficient access to the
  373. indices found in various system files and adapt inode handling
  374. accordingly (fs/ntfs/inode.[hc]). An index inode is essentially an
  375. attribute inode (NInoAttr() is true) with an attribute type of
  376. AT_INDEX_ALLOCATION. As such, it is no longer allowed to call
  377. ntfs_attr_iget() with an attribute type of AT_INDEX_ALLOCATION as
  378. there would be no way to distinguish between normal attribute inodes
  379. and index inodes. The function to obtain an index inode is
  380. ntfs_index_iget() and it uses the helper function
  381. ntfs_read_locked_index_inode(). Note, we do not overload
  382. ntfs_attr_iget() as indices consist of multiple attributes so using
  383. ntfs_attr_iget() to obtain an index inode would be confusing.
  384. - Ensure that there is no overflow when doing page->index <<
  385. PAGE_CACHE_SHIFT by casting page->index to s64 in fs/ntfs/aops.c.
  386. - Use atomic kmap instead of kmap() in fs/ntfs/aops.c::ntfs_read_page()
  387. and ntfs_read_block().
  388. - Use case sensitive attribute lookups instead of case insensitive ones.
  389. - Lock all page cache pages belonging to mst protected attributes while
  390. accessing them to ensure we never see corrupt data while the page is
  391. under writeout.
  392. - Add framework for generic ntfs collation (fs/ntfs/collation.[hc]).
  393. We have ntfs_is_collation_rule_supported() to check if the collation
  394. rule you want to use is supported and ntfs_collation() which actually
  395. collates two data items. We currently only support COLLATION_BINARY
  396. and COLLATION_NTOFS_ULONG but support for other collation rules will
  397. be added as the need arises.
  398. - Add a new type, ntfs_index_context, to allow retrieval of an index
  399. entry using the corresponding index key. To get an index context,
  400. use ntfs_index_ctx_get() and to release it, use ntfs_index_ctx_put().
  401. This also adds a new slab cache for the index contexts. To lookup a
  402. key in an index inode, use ntfs_index_lookup(). After modifying an
  403. index entry, call ntfs_index_entry_flush_dcache_page() followed by
  404. ntfs_index_entry_mark_dirty() to ensure the changes are written out
  405. to disk. For details see fs/ntfs/index.[hc]. Note, at present, if
  406. an index entry is in the index allocation attribute rather than the
  407. index root attribute it will not be written out (you will get a
  408. warning message about discarded changes instead).
  409. - Load the quota file ($Quota) and check if quota tracking is enabled
  410. and if so, mark the quotas out of date. This causes windows to
  411. rescan the volume on boot and update all quota entries.
  412. - Add a set_page_dirty address space operation for ntfs_m[fs]t_aops.
  413. It is simply set to __set_page_dirty_nobuffers() to make sure that
  414. running set_page_dirty() on a page containing mft/ntfs records will
  415. not affect the dirty state of the page buffers.
  416. - Add fs/ntfs/index.c::__ntfs_index_entry_mark_dirty() which sets all
  417. buffers that are inside the ntfs record in the page dirty after which
  418. it sets the page dirty. This allows ->writepage to only write the
  419. dirty index records rather than having to write all the records in
  420. the page. Modify fs/ntfs/index.h::ntfs_index_entry_mark_dirty() to
  421. use this rather than __set_page_dirty_nobuffers().
  422. - Implement fs/ntfs/aops.c::ntfs_write_mst_block() which enables the
  423. writing of page cache pages belonging to mst protected attributes
  424. like the index allocation attribute in directory indices and other
  425. indices like $Quota/$Q, etc. This means that the quota is now marked
  426. out of date on all volumes rather than only on ones where the quota
  427. defaults entry is in the index root attribute of the $Quota/$Q index.
  428. 2.1.14 - Fix an NFSd caused deadlock reported by several users.
  429. - Modify fs/ntfs/ntfs_readdir() to copy the index root attribute value
  430. to a buffer so that we can put the search context and unmap the mft
  431. record before calling the filldir() callback. We need to do this
  432. because of NFSd which calls ->lookup() from its filldir callback()
  433. and this causes NTFS to deadlock as ntfs_lookup() maps the mft record
  434. of the directory and since ntfs_readdir() has got it mapped already
  435. ntfs_lookup() deadlocks.
  436. 2.1.13 - Enable overwriting of resident files and housekeeping of system files.
  437. - Implement writing of mft records (fs/ntfs/mft.[hc]), which includes
  438. keeping the mft mirror in sync with the mft when mirrored mft records
  439. are written. The functions are write_mft_record{,_nolock}(). The
  440. implementation is quite rudimentary for now with lots of things not
  441. implemented yet but I am not sure any of them can actually occur so
  442. I will wait for people to hit each one and only then implement it.
  443. - Commit open system inodes at umount time. This should make it
  444. virtually impossible for sync_mft_mirror_umount() to ever be needed.
  445. - Implement ->write_inode (fs/ntfs/inode.c::ntfs_write_inode()) for the
  446. ntfs super operations. This gives us inode writing via the VFS inode
  447. dirty code paths. Note: Access time updates are not implemented yet.
  448. - Implement fs/ntfs/mft.[hc]::{,__}mark_mft_record_dirty() and make
  449. fs/ntfs/aops.c::ntfs_writepage() and ntfs_commit_write() use it, thus
  450. finally enabling resident file overwrite! (-8 This also includes a
  451. placeholder for ->writepage (ntfs_mft_writepage()), which for now
  452. just redirties the page and returns. Also, at umount time, we for
  453. now throw away all mft data page cache pages after the last call to
  454. ntfs_commit_inode() in the hope that all inodes will have been
  455. written out by then and hence no dirty (meta)data will be lost. We
  456. also check for this case and emit an error message telling the user
  457. to run chkdsk.
  458. - Use set_page_writeback() and end_page_writeback() in the resident
  459. attribute code path of fs/ntfs/aops.c::ntfs_writepage() otherwise
  460. the radix-tree tag PAGECACHE_TAG_DIRTY remains set even though the
  461. page is clean.
  462. - Implement ntfs_mft_writepage() so it now checks if any of the mft
  463. records in the page are dirty and if so redirties the page and
  464. returns. Otherwise it just returns (after doing set_page_writeback(),
  465. unlock_page(), end_page_writeback() or the radix-tree tag
  466. PAGECACHE_TAG_DIRTY remains set even though the page is clean), thus
  467. alowing the VM to do with the page as it pleases. Also, at umount
  468. time, now only throw away dirty mft (meta)data pages if dirty inodes
  469. are present and ask the user to email us if they see this happening.
  470. - Add functions ntfs_{clear,set}_volume_flags(), to modify the volume
  471. information flags (fs/ntfs/super.c).
  472. - Mark the volume dirty when (re)mounting read-write and mark it clean
  473. when unmounting or remounting read-only. If any volume errors are
  474. found, the volume is left marked dirty to force chkdsk to run.
  475. - Add code to set the NT4 compatibility flag when (re)mounting
  476. read-write for newer NTFS versions but leave it commented out for now
  477. since we do not make any modifications that are NTFS 1.2 specific yet
  478. and since setting this flag breaks Captive-NTFS which is not nice.
  479. This code must be enabled once we start writing NTFS 1.2 specific
  480. changes otherwise Windows NTFS driver might crash / cause corruption.
  481. 2.1.12 - Fix the second fix to the decompression engine and some cleanups.
  482. - Add a new address space operations struct, ntfs_mst_aops, for mst
  483. protected attributes. This is because the default ntfs_aops do not
  484. make sense with mst protected data and were they to write anything to
  485. such an attribute they would cause data corruption so we provide
  486. ntfs_mst_aops which does not have any write related operations set.
  487. - Cleanup dirty ntfs inode handling (fs/ntfs/inode.[hc]) which also
  488. includes an adapted ntfs_commit_inode() and an implementation of
  489. ntfs_write_inode() which for now just cleans dirty inodes without
  490. writing them (it does emit a warning that this is happening).
  491. - Undo the second decompression engine fix (see 2.1.9 release ChangeLog
  492. entry) as it was only fixing a theoretical bug but at the same time
  493. it badly broke the handling of sparse and uncompressed compression
  494. blocks.
  495. 2.1.11 - Driver internal cleanups.
  496. - Only build logfile.o if building the driver with read-write support.
  497. - Really final white space cleanups.
  498. - Use generic_ffs() instead of ffs() in logfile.c which allows the
  499. log_page_size variable to be optimized by gcc into a constant.
  500. - Rename uchar_t to ntfschar everywhere as uchar_t is unsigned 1-byte
  501. char as defined by POSIX and as found on some systems.
  502. 2.1.10 - Force read-only (re)mounting of volumes with unsupported volume flags.
  503. - Finish off the white space cleanups (remove trailing spaces, etc).
  504. - Clean up ntfs_fill_super() and ntfs_read_inode_mount() by removing
  505. the kludges around the first iget(). Instead of (re)setting ->s_op
  506. we have the $MFT inode set up by explicit new_inode() / set ->i_ino /
  507. insert_inode_hash() / call ntfs_read_inode_mount() directly. This
  508. kills the need for second super_operations and allows to return error
  509. from ntfs_read_inode_mount() without resorting to ugly "poisoning"
  510. tricks. (Al Viro)
  511. - Force read-only (re)mounting if any of the following bits are set in
  512. the volume information flags:
  513. VOLUME_IS_DIRTY, VOLUME_RESIZE_LOG_FILE,
  514. VOLUME_UPGRADE_ON_MOUNT, VOLUME_DELETE_USN_UNDERWAY,
  515. VOLUME_REPAIR_OBJECT_ID, VOLUME_MODIFIED_BY_CHKDSK
  516. To make this easier we define VOLUME_MUST_MOUNT_RO_MASK with all the
  517. above bits set so the test is made easy.
  518. 2.1.9 - Fix two bugs in decompression engine.
  519. - Fix a bug where we would not always detect that we have reached the
  520. end of a compression block because we were ending at minus one byte
  521. which is effectively the same as being at the end. The fix is to
  522. check whether the uncompressed buffer has been fully filled and if so
  523. we assume we have reached the end of the compression block. A big
  524. thank you to Marcin Gibuła for the bug report, the assistance in
  525. tracking down the bug and testing the fix.
  526. - Fix a possible bug where when a compressed read is truncated to the
  527. end of the file, the offset inside the last page was not truncated.
  528. 2.1.8 - Handle $MFT mirror and $LogFile, improve time handling, and cleanups.
  529. - Use get_bh() instead of manual atomic_inc() in fs/ntfs/compress.c.
  530. - Modify fs/ntfs/time.c::ntfs2utc(), get_current_ntfs_time(), and
  531. utc2ntfs() to work with struct timespec instead of time_t on the
  532. Linux UTC time side thus preserving the full precision of the NTFS
  533. time and only loosing up to 99 nano-seconds in the Linux UTC time.
  534. - Move fs/ntfs/time.c to fs/ntfs/time.h and make the time functions
  535. static inline.
  536. - Remove unused ntfs_dirty_inode().
  537. - Cleanup super operations declaration in fs/ntfs/super.c.
  538. - Wrap flush_dcache_mft_record_page() in #ifdef NTFS_RW.
  539. - Add NInoTestSetFoo() and NInoTestClearFoo() macro magic to
  540. fs/ntfs/inode.h and use it to declare NInoTest{Set,Clear}Dirty.
  541. - Move typedefs for ntfs_attr and test_t from fs/ntfs/inode.c to
  542. fs/ntfs/inode.h so they can be used elsewhere.
  543. - Determine the mft mirror size as the number of mirrored mft records
  544. and store it in ntfs_volume->mftmirr_size (fs/ntfs/super.c).
  545. - Load the mft mirror at mount time and compare the mft records stored
  546. in it to the ones in the mft. Force a read-only mount if the two do
  547. not match (fs/ntfs/super.c).
  548. - Fix type casting related warnings on 64-bit architectures. Thanks
  549. to Meelis Roos for reporting them.
  550. - Move %L to %ll as %L is floating point and %ll is integer which is
  551. what we want.
  552. - Read the journal ($LogFile) and determine if the volume has been
  553. shutdown cleanly and force a read-only mount if not (fs/ntfs/super.c
  554. and fs/ntfs/logfile.c). This is a little bit of a crude check in
  555. that we only look at the restart areas and not at the actual log
  556. records so that there will be a very small number of cases where we
  557. think that a volume is dirty when in fact it is clean. This should
  558. only affect volumes that have not been shutdown cleanly and did not
  559. have any pending, non-check-pointed i/o.
  560. - If the $LogFile indicates a clean shutdown and a read-write (re)mount
  561. is requested, empty $LogFile by overwriting it with 0xff bytes to
  562. ensure that Windows cannot cause data corruption by replaying a stale
  563. journal after Linux has written to the volume.
  564. 2.1.7 - Enable NFS exporting of mounted NTFS volumes.
  565. - Set i_generation in the VFS inode from the seq_no of the NTFS inode.
  566. - Make ntfs_lookup() NFS export safe, i.e. use d_splice_alias(), etc.
  567. - Implement ->get_dentry() in fs/ntfs/namei.c::ntfs_get_dentry() as the
  568. default doesn't allow inode number 0 which is a valid inode on NTFS
  569. and even if it did allow that it uses iget() instead of ntfs_iget()
  570. which makes it useless for us.
  571. - Implement ->get_parent() in fs/ntfs/namei.c::ntfs_get_parent() as the
  572. default just returns -EACCES which is not very useful.
  573. - Define export operations (->s_export_op) for NTFS (ntfs_export_ops)
  574. and set them up in the super block at mount time (super.c) this
  575. allows mounted NTFS volumes to be exported via NFS.
  576. - Add missing return -EOPNOTSUPP; in
  577. fs/ntfs/aops.c::ntfs_commit_nonresident_write().
  578. - Enforce no atime and no dir atime updates at mount/remount time as
  579. they are not implemented yet anyway.
  580. - Move a few assignments in fs/ntfs/attrib.c::load_attribute_list() to
  581. after a NULL check. Thanks to Dave Jones for pointing this out.
  582. 2.1.6 - Fix minor bug in handling of compressed directories.
  583. - Fix bug in handling of compressed directories. A compressed
  584. directory is not really compressed so when we set the ->i_blocks
  585. field of a compressed directory inode we were setting it from the
  586. non-existing field ni->itype.compressed.size which gave random
  587. results... For directories we now always use ni->allocated_size.
  588. 2.1.5 - Fix minor bug in attribute list attribute handling.
  589. - Fix bug in attribute list handling. Actually it is not as much a bug
  590. as too much protection in that we were not allowing attribute lists
  591. which waste space on disk while Windows XP clearly allows it and in
  592. fact creates such attribute lists so our driver was failing.
  593. - Update NTFS documentation ready for 2.6 kernel release.
  594. 2.1.4 - Reduce compiler requirements.
  595. - Remove all uses of unnamed structs and unions in the driver to make
  596. old and newer gcc versions happy. Makes it a bit uglier IMO but at
  597. least people will stop hassling me about it.
  598. 2.1.3 - Important bug fixes in corner cases.
  599. - super.c::parse_ntfs_boot_sector(): Correct the check for 64-bit
  600. clusters. (Philipp Thomas)
  601. - attrib.c::load_attribute_list(): Fix bug when initialized_size is a
  602. multiple of the block_size but not the cluster size. (Szabolcs
  603. Szakacsits <szaka@sienet.hu>)
  604. 2.1.2 - Important bug fixes aleviating the hangs in statfs.
  605. - Fix buggy free cluster and free inode determination logic.
  606. 2.1.1 - Minor updates.
  607. - Add handling for initialized_size != data_size in compressed files.
  608. - Reduce function local stack usage from 0x3d4 bytes to just noise in
  609. fs/ntfs/upcase.c. (Randy Dunlap <rddunlap@osdl.ord>)
  610. - Remove compiler warnings for newer gcc.
  611. - Pages are no longer kmapped by mm/filemap.c::generic_file_write()
  612. around calls to ->{prepare,commit}_write. Adapt NTFS appropriately
  613. in fs/ntfs/aops.c::ntfs_prepare_nonresident_write() by using
  614. kmap_atomic(KM_USER0).
  615. 2.1.0 - First steps towards write support: implement file overwrite.
  616. - Add configuration option for developmental write support with an
  617. appropriately scary configuration help text.
  618. - Initial implementation of fs/ntfs/aops.c::ntfs_writepage() and its
  619. helper fs/ntfs/aops.c::ntfs_write_block(). This enables mmap(2) based
  620. overwriting of existing files on ntfs. Note: Resident files are
  621. only written into memory, and not written out to disk at present, so
  622. avoid writing to files smaller than about 1kiB.
  623. - Initial implementation of fs/ntfs/aops.c::ntfs_prepare_write(), its
  624. helper fs/ntfs/aops.c::ntfs_prepare_nonresident_write() and their
  625. counterparts, fs/ntfs/aops.c::ntfs_commit_write(), and
  626. fs/ntfs/aops.c::ntfs_commit_nonresident_write(), respectively. Also,
  627. add generic_file_write() to the ntfs file operations (fs/ntfs/file.c).
  628. This enables write(2) based overwriting of existing files on ntfs.
  629. Note: As with mmap(2) based overwriting, resident files are only
  630. written into memory, and not written out to disk at present, so avoid
  631. writing to files smaller than about 1kiB.
  632. - Implement ->truncate (fs/ntfs/inode.c::ntfs_truncate()) and
  633. ->setattr() (fs/ntfs/inode.c::ntfs_setattr()) inode operations for
  634. files with the purpose of intercepting and aborting all i_size
  635. changes which we do not support yet. ntfs_truncate() actually only
  636. emits a warning message but AFAICS our interception of i_size changes
  637. elsewhere means ntfs_truncate() never gets called for i_size changes.
  638. It is only called from generic_file_write() when we fail in
  639. ntfs_prepare_{,nonresident_}write() in order to discard any
  640. instantiated buffers beyond i_size. Thus i_size is not actually
  641. changed so our warning message is enough. Unfortunately it is not
  642. possible to easily determine if i_size is being changed or not hence
  643. we just emit an appropriately worded error message.
  644. 2.0.25 - Small bug fixes and cleanups.
  645. - Unlock the page in an out of memory error code path in
  646. fs/ntfs/aops.c::ntfs_read_block().
  647. - If fs/ntfs/aops.c::ntfs_read_page() is called on an uptodate page,
  648. just unlock the page and return. (This can happen due to ->writepage
  649. clearing PageUptodate() during write out of MstProtected()
  650. attributes.
  651. - Remove leaked write code again.
  652. 2.0.24 - Cleanups.
  653. - Treat BUG_ON() as ASSERT() not VERIFY(), i.e. do not use side effects
  654. inside BUG_ON(). (Adam J. Richter)
  655. - Split logical OR expressions inside BUG_ON() into individual BUG_ON()
  656. calls for improved debugging. (Adam J. Richter)
  657. - Add errors flag to the ntfs volume state, accessed via
  658. NVol{,Set,Clear}Errors(vol).
  659. - Do not allow read-write remounts of read-only volumes with errors.
  660. - Clarify comment for ntfs file operation sendfile which was added by
  661. Christoph Hellwig a while ago (just using generic_file_sendfile())
  662. to say that ntfs ->sendfile is only used for the case where the
  663. source data is on the ntfs partition and the destination is
  664. somewhere else, i.e. nothing we need to concern ourselves with.
  665. - Add generic_file_write() as our ntfs file write operation.
  666. 2.0.23 - Major bug fixes (races, deadlocks, non-i386 architectures).
  667. - Massive internal locking changes to mft record locking. Fixes lock
  668. recursion and replaces the mrec_lock read/write semaphore with a
  669. mutex. Also removes the now superfluous mft_count. This fixes several
  670. race conditions and deadlocks, especially in the future write code.
  671. - Fix ntfs over loopback for compressed files by adding an
  672. optimization barrier. (gcc was screwing up otherwise ?)
  673. - Miscellaneous cleanups all over the code and a fix or two in error
  674. handling code paths.
  675. Thanks go to Christoph Hellwig for pointing out the following two:
  676. - Remove now unused function fs/ntfs/malloc.h::vmalloc_nofs().
  677. - Fix ntfs_free() for ia64 and parisc by checking for VMALLOC_END, too.
  678. 2.0.22 - Cleanups, mainly to ntfs_readdir(), and use C99 initializers.
  679. - Change fs/ntfs/dir.c::ntfs_reddir() to only read/write ->f_pos once
  680. at entry/exit respectively.
  681. - Use C99 initializers for structures.
  682. - Remove unused variable blocks from fs/ntfs/aops.c::ntfs_read_block().
  683. 2.0.21 - Check for, and refuse to work with too large files/directories/volumes.
  684. - Limit volume size at mount time to 2TiB on architectures where
  685. unsigned long is 32-bits (fs/ntfs/super.c::parse_ntfs_boot_sector()).
  686. This is the most we can do without overflowing the 32-bit limit of
  687. the block device size imposed on us by sb_bread() and sb_getblk()
  688. for the time being.
  689. - Limit file/directory size at open() time to 16TiB on architectures
  690. where unsigned long is 32-bits (fs/ntfs/file.c::ntfs_file_open() and
  691. fs/ntfs/dir.c::ntfs_dir_open()). This is the most we can do without
  692. overflowing the page cache page index.
  693. 2.0.20 - Support non-resident directory index bitmaps, fix page leak in readdir.
  694. - Move the directory index bitmap to use an attribute inode instead of
  695. having special fields for it inside the ntfs inode structure. This
  696. means that the index bitmaps now use the page cache for i/o, too,
  697. and also as a side effect we get support for non-resident index
  698. bitmaps for free.
  699. - Simplify/cleanup error handling in fs/ntfs/dir.c::ntfs_readdir() and
  700. fix a page leak that manifested itself in some cases.
  701. - Add fs/ntfs/inode.c::ntfs_put_inode(), which we need to release the
  702. index bitmap inode on the final iput().
  703. 2.0.19 - Fix race condition, improvements, and optimizations in i/o interface.
  704. - Apply block optimization added to fs/ntfs/aops.c::ntfs_read_block()
  705. to fs/ntfs/compress.c::ntfs_file_read_compressed_block() as well.
  706. - Drop the "file" from ntfs_file_read_compressed_block().
  707. - Rename fs/ntfs/aops.c::ntfs_enb_buffer_read_async() to
  708. ntfs_end_buffer_async_read() (more like the fs/buffer.c counterpart).
  709. - Update ntfs_end_buffer_async_read() with the improved logic from
  710. its updated counterpart fs/buffer.c::end_buffer_async_read(). Apply
  711. further logic improvements to better determine when we set PageError.
  712. - Update submission of buffers in fs/ntfs/aops.c::ntfs_read_block() to
  713. check for the buffers being uptodate first in line with the updated
  714. fs/buffer.c::block_read_full_page(). This plugs a small race
  715. condition.
  716. 2.0.18 - Fix race condition in reading of compressed files.
  717. - There was a narrow window between checking a buffer head for being
  718. uptodate and locking it in ntfs_file_read_compressed_block(). We now
  719. lock the buffer and then check whether it is uptodate or not.
  720. 2.0.17 - Cleanups and optimizations - shrinking the ToDo list.
  721. - Modify fs/ntfs/inode.c::ntfs_read_locked_inode() to return an error
  722. code and update callers, i.e. ntfs_iget(), to pass that error code
  723. up instead of just using -EIO.
  724. - Modifications to super.c to ensure that both mount and remount
  725. cannot set any write related options when the driver is compiled
  726. read-only.
  727. - Optimize block resolution in fs/ntfs/aops.c::ntfs_read_block() to
  728. cache the current runlist element. This should improve performance
  729. when reading very large and/or very fragmented data.
  730. 2.0.16 - Convert access to $MFT/$BITMAP to attribute inode API.
  731. - Fix a stupid bug introduced in 2.0.15 where we were unmapping the
  732. wrong inode in fs/ntfs/inode.c::ntfs_attr_iget().
  733. - Fix debugging check in fs/ntfs/aops.c::ntfs_read_block().
  734. - Convert $MFT/$BITMAP access to attribute inode API and remove all
  735. remnants of the ugly mftbmp address space and operations hack. This
  736. means we finally have only one readpage function as well as only one
  737. async io completion handler. Yey! The mft bitmap is now just an
  738. attribute inode and is accessed from vol->mftbmp_ino just as if it
  739. were a normal file. Fake inodes rule. (-:
  740. 2.0.15 - Fake inodes based attribute i/o via the pagecache, fixes and cleanups.
  741. - Fix silly bug in fs/ntfs/super.c::parse_options() which was causing
  742. remounts to fail when the partition had an entry in /etc/fstab and
  743. the entry specified the nls= option.
  744. - Apply same macro magic used in fs/ntfs/inode.h to fs/ntfs/volume.h to
  745. expand all the helper functions NVolFoo(), NVolSetFoo(), and
  746. NVolClearFoo().
  747. - Move copyright statement from driver initialisation message to
  748. module description (fs/super.c). This makes the initialisation
  749. message fit on one line and fits in better with rest of kernel.
  750. - Update fs/ntfs/attrib.c::map_run_list() to work on both real and
  751. attribute inodes, and both for files and directories.
  752. - Implement fake attribute inodes allowing all attribute i/o to go via
  753. the page cache and to use all the normal vfs/mm functionality:
  754. - Add ntfs_attr_iget() and its helper ntfs_read_locked_attr_inode()
  755. to fs/ntfs/inode.c.
  756. - Add needed cleanup code to ntfs_clear_big_inode().
  757. - Merge address space operations for files and directories (aops.c),
  758. now just have ntfs_aops:
  759. - Rename:
  760. end_buffer_read_attr_async() -> ntfs_end_buffer_read_async(),
  761. ntfs_attr_read_block() -> ntfs_read_block(),
  762. ntfs_file_read_page() -> ntfs_readpage().
  763. - Rewrite fs/ntfs/aops.c::ntfs_readpage() to work on both real and
  764. attribute inodes, and both for files and directories.
  765. - Remove obsolete fs/ntfs/aops.c::ntfs_mst_readpage().
  766. 2.0.14 - Run list merging code cleanup, minor locking changes, typo fixes.
  767. - Change fs/ntfs/super.c::ntfs_statfs() to not rely on BKL by moving
  768. the locking out of super.c::get_nr_free_mft_records() and taking and
  769. dropping the mftbmp_lock rw_semaphore in ntfs_statfs() itself.
  770. - Bring attribute runlist merging code (fs/ntfs/attrib.c) in sync with
  771. current userspace ntfs library code. This means that if a merge
  772. fails the original runlists are always left unmodified instead of
  773. being silently corrupted.
  774. - Misc typo fixes.
  775. 2.0.13 - Use iget5_locked() in preparation for fake inodes and small cleanups.
  776. - Remove nr_mft_bits and the now superfluous union with nr_mft_records
  777. from ntfs_volume structure.
  778. - Remove nr_lcn_bits and the now superfluous union with nr_clusters
  779. from ntfs_volume structure.
  780. - Use iget5_locked() and friends instead of conventional iget(). Wrap
  781. the call in fs/ntfs/inode.c::ntfs_iget() and update callers of iget()
  782. to use ntfs_iget(). Leave only one iget() call at mount time so we
  783. don't need an ntfs_iget_mount().
  784. - Change fs/ntfs/inode.c::ntfs_new_extent_inode() to take mft_no as an
  785. additional argument.
  786. 2.0.12 - Initial cleanup of address space operations following 2.0.11 changes.
  787. - Merge fs/ntfs/aops.c::end_buffer_read_mst_async() and
  788. fs/ntfs/aops.c::end_buffer_read_file_async() into one function
  789. fs/ntfs/aops.c::end_buffer_read_attr_async() using NInoMstProtected()
  790. to determine whether to apply mst fixups or not.
  791. - Above change allows merging fs/ntfs/aops.c::ntfs_file_read_block()
  792. and fs/ntfs/aops.c::ntfs_mst_readpage() into one function
  793. fs/ntfs/aops.c::ntfs_attr_read_block(). Also, create a tiny wrapper
  794. fs/ntfs/aops.c::ntfs_mst_readpage() to transform the parameters from
  795. the VFS readpage function prototype to the ntfs_attr_read_block()
  796. function prototype.
  797. 2.0.11 - Initial preparations for fake inode based attribute i/o.
  798. - Move definition of ntfs_inode_state_bits to fs/ntfs/inode.h and
  799. do some macro magic (adapted from include/linux/buffer_head.h) to
  800. expand all the helper functions NInoFoo(), NInoSetFoo(), and
  801. NInoClearFoo().
  802. - Add new flag to ntfs_inode_state_bits: NI_Sparse.
  803. - Add new fields to ntfs_inode structure to allow use of fake inodes
  804. for attribute i/o: type, name, name_len. Also add new state bits:
  805. NI_Attr, which, if set, indicates the inode is a fake inode, and
  806. NI_MstProtected, which, if set, indicates the attribute uses multi
  807. sector transfer protection, i.e. fixups need to be applied after
  808. reads and before/after writes.
  809. - Rename fs/ntfs/inode.c::ntfs_{new,clear,destroy}_inode() to
  810. ntfs_{new,clear,destroy}_extent_inode() and update callers.
  811. - Use ntfs_clear_extent_inode() in fs/ntfs/inode.c::__ntfs_clear_inode()
  812. instead of ntfs_destroy_extent_inode().
  813. - Cleanup memory deallocations in {__,}ntfs_clear_{,big_}inode().
  814. - Make all operations on ntfs inode state bits use the NIno* functions.
  815. - Set up the new ntfs inode fields and state bits in
  816. fs/ntfs/inode.c::ntfs_read_inode() and add appropriate cleanup of
  817. allocated memory to __ntfs_clear_inode().
  818. - Cleanup ntfs_inode structure a bit for better ordering of elements
  819. w.r.t. their size to allow better packing of the structure in memory.
  820. 2.0.10 - There can only be 2^32 - 1 inodes on an NTFS volume.
  821. - Add check at mount time to verify that the number of inodes on the
  822. volume does not exceed 2^32 - 1, which is the maximum allowed for
  823. NTFS according to Microsoft.
  824. - Change mft_no member of ntfs_inode structure to be unsigned long.
  825. Update all users. This makes ntfs_inode->mft_no just a copy of struct
  826. inode->i_ino. But we can't just always use struct inode->i_ino and
  827. remove mft_no because extent inodes do not have an attached struct
  828. inode.
  829. 2.0.9 - Decompression engine now uses a single buffer and other cleanups.
  830. - Change decompression engine to use a single buffer protected by a
  831. spin lock instead of per-CPU buffers. (Rusty Russell)
  832. - Do not update cb_pos when handling a partial final page during
  833. decompression of a sparse compression block, as the value is later
  834. reset without being read/used. (Rusty Russell)
  835. - Switch to using the new KM_BIO_SRC_IRQ for atomic kmap()s. (Andrew
  836. Morton)
  837. - Change buffer size in ntfs_readdir()/ntfs_filldir() to use
  838. NLS_MAX_CHARSET_SIZE which makes the buffers almost 1kiB each but
  839. it also makes everything safer so it is a good thing.
  840. - Miscellaneous minor cleanups to comments.
  841. 2.0.8 - Major updates for handling of case sensitivity and dcache aliasing.
  842. Big thanks go to Al Viro and other inhabitants of #kernel for investing
  843. their time to discuss the case sensitivity and dcache aliasing issues.
  844. - Remove unused source file fs/ntfs/attraops.c.
  845. - Remove show_inodes mount option(s), thus dropping support for
  846. displaying of short file names.
  847. - Remove deprecated mount option posix.
  848. - Restore show_sys_files mount option.
  849. - Add new mount option case_sensitive, to determine if the driver
  850. treats file names as case sensitive or not. If case sensitive, create
  851. file names in the POSIX namespace. Otherwise create file names in the
  852. LONG/WIN32 namespace. Note, files remain accessible via their short
  853. file name, if it exists.
  854. - Remove really dumb logic bug in boot sector recovery code.
  855. - Fix dcache aliasing issues wrt short/long file names via changes
  856. to fs/ntfs/dir.c::ntfs_lookup_inode_by_name() and
  857. fs/ntfs/namei.c::ntfs_lookup():
  858. - Add additional argument to ntfs_lookup_inode_by_name() in which we
  859. return information about the matching file name if the case is not
  860. matching or the match is a short file name. See comments above the
  861. function definition for details.
  862. - Change ntfs_lookup() to only create dcache entries for the correctly
  863. cased file name and only for the WIN32 namespace counterpart of DOS
  864. namespace file names. This ensures we have only one dentry per
  865. directory and also removes all dcache aliasing issues between short
  866. and long file names once we add write support. See comments above
  867. function for details.
  868. - Fix potential 1 byte overflow in fs/ntfs/unistr.c::ntfs_ucstonls().
  869. 2.0.7 - Minor cleanups and updates for changes in core kernel code.
  870. - Remove much of the NULL struct element initializers.
  871. - Various updates to make compatible with recent kernels.
  872. - Remove defines of MAX_BUF_PER_PAGE and include linux/buffer_head.h
  873. in fs/ntfs/ntfs.h instead.
  874. - Remove no longer needed KERNEL_VERSION checks. We are now in the
  875. kernel proper so they are no longer needed.
  876. 2.0.6 - Major bugfix to make compatible with other kernel changes.
  877. - Initialize the mftbmp address space properly now that there are more
  878. fields in the struct address_space. This was leading to hangs and
  879. oopses on umount since 2.5.12 because of changes to other parts of
  880. the kernel. We probably want a kernel generic init_address_space()
  881. function...
  882. - Drop BKL from ntfs_readdir() after consultation with Al Viro. The
  883. only caller of ->readdir() is vfs_readdir() which holds i_sem during
  884. the call, and i_sem is sufficient protection against changes in the
  885. directory inode (including ->i_size).
  886. - Use generic_file_llseek() for directories (as opposed to
  887. default_llseek()) as this downs i_sem instead of the BKL which is
  888. what we now need for exclusion against ->f_pos changes considering we
  889. no longer take the BKL in ntfs_readdir().
  890. 2.0.5 - Major bugfix. Buffer overflow in extent inode handling.
  891. - No need to set old blocksize in super.c::ntfs_fill_super() as the
  892. VFS does so via invocation of deactivate_super() calling
  893. fs->fill_super() calling block_kill_super() which does it.
  894. - BKL moved from VFS into dir.c::ntfs_readdir(). (Linus Torvalds)
  895. -> Do we really need it? I don't think so as we have exclusion on
  896. the directory ntfs_inode rw_semaphore mrec_lock. We mmight have to
  897. move the ->f_pos accesses under the mrec_lock though. Check this...
  898. - Fix really, really, really stupid buffer overflow in extent inode
  899. handling in mft.c::map_extent_mft_record().
  900. 2.0.4 - Cleanups and updates for kernel 2.5.11.
  901. - Add documentation on how to use the MD driver to be able to use NTFS
  902. stripe and volume sets in Linux and generally cleanup documentation
  903. a bit.
  904. Remove all uses of kdev_t in favour of struct block_device *:
  905. - Change compress.c::ntfs_file_read_compressed_block() to use
  906. sb_getblk() instead of getblk().
  907. - Change super.c::ntfs_fill_super() to use bdev_hardsect_size() instead
  908. of get_hardsect_size().
  909. - No need to get old blocksize in super.c::ntfs_fill_super() as
  910. fs/super.c::get_sb_bdev() already does this.
  911. - Set bh->b_bdev instead of bh->b_dev throughout aops.c.
  912. 2.0.3 - Small bug fixes, cleanups, and performance improvements.
  913. - Remove some dead code from mft.c.
  914. - Optimize readpage and read_block functions throughout aops.c so that
  915. only initialized blocks are read. Non-initialized ones have their
  916. buffer head mapped, zeroed, and set up to date, without scheduling
  917. any i/o. Thanks to Al Viro for advice on how to avoid the device i/o.
  918. Thanks go to Andrew Morton for spotting the below:
  919. - Fix buglet in allocate_compression_buffers() error code path.
  920. - Call flush_dcache_page() after modifying page cache page contents in
  921. ntfs_file_readpage().
  922. - Check for existence of page buffers throughout aops.c before calling
  923. create_empty_buffers(). This happens when an I/O error occurs and the
  924. read is retried. (It also happens once writing is implemented so that
  925. needed doing anyway but I had left it for later...)
  926. - Don't BUG_ON() uptodate and/or mapped buffers throughout aops.c in
  927. readpage and read_block functions. Reasoning same as above (i.e. I/O
  928. error retries and future write code paths.)
  929. 2.0.2 - Minor updates and cleanups.
  930. - Cleanup: rename mst.c::__post_read_mst_fixup to post_write_mst_fixup
  931. and cleanup the code a bit, removing the unused size parameter.
  932. - Change default fmask to 0177 and update documentation.
  933. - Change attrib.c::get_attr_search_ctx() to return the search context
  934. directly instead of taking the address of a pointer. A return value
  935. of NULL means the allocation failed. Updated all callers
  936. appropriately.
  937. - Update to 2.5.9 kernel (preserving backwards compatibility) by
  938. replacing all occurences of page->buffers with page_buffers(page).
  939. - Fix minor bugs in runlist merging, also minor cleanup.
  940. - Updates to bootsector layout and mft mirror contents descriptions.
  941. - Small bug fix in error detection in unistr.c and some cleanups.
  942. - Grow name buffer allocations in unistr.c in aligned mutlipled of 64
  943. bytes.
  944. 2.0.1 - Minor updates.
  945. - Make default umask correspond to documentation.
  946. - Improve documentation.
  947. - Set default mode to include execute bit. The {u,f,d}mask can be used
  948. to take it away if desired. This allows binaries to be executed from
  949. a mounted ntfs partition.
  950. 2.0.0 - New version number. Remove TNG from the name. Now in the kernel.
  951. - Add kill_super, just keeping up with the vfs changes in the kernel.
  952. - Repeat some changes from tng-0.0.8 that somehow got lost on the way
  953. from the CVS import into BitKeeper.
  954. - Begin to implement proper handling of allocated_size vs
  955. initialized_size vs data_size (i.e. i_size). Done are
  956. mft.c::ntfs_mft_readpage(), aops.c::end_buffer_read_index_async(),
  957. and attrib.c::load_attribute_list().
  958. - Lock the runlist in attrib.c::load_attribute_list() while using it.
  959. - Fix memory leak in ntfs_file_read_compressed_block() and generally
  960. clean up compress.c a little, removing some uncommented/unused debug
  961. code.
  962. - Tidy up dir.c a little bit.
  963. - Don't bother getting the runlist in inode.c::ntfs_read_inode().
  964. - Merge mft.c::ntfs_mft_readpage() and aops.c::ntfs_index_readpage()
  965. creating aops.c::ntfs_mst_readpage(), improving the handling of
  966. holes and overflow in the process and implementing the correct
  967. equivalent of ntfs_file_get_block() in ntfs_mst_readpage() itself.
  968. I am aiming for correctness at the moment. Modularisation can come
  969. later.
  970. - Rename aops.c::end_buffer_read_index_async() to
  971. end_buffer_read_mst_async() and optimize the overflow checking and
  972. handling.
  973. - Use the host of the mftbmp address space mapping to hold the ntfs
  974. volume. This is needed so the async i/o completion handler can
  975. retrieve a pointer to the volume. Hopefully this will not cause
  976. problems elsewhere in the kernel... Otherwise will need to use a
  977. fake inode.
  978. - Complete implementation of proper handling of allocated_size vs
  979. initialized_size vs data_size (i.e. i_size) in whole driver.
  980. Basically aops.c is now completely rewritten.
  981. - Change NTFS driver name to just NTFS and set version number to 2.0.0
  982. to make a clear distinction from the old driver which is still on
  983. version 1.1.22.
  984. tng-0.0.8 - 08/03/2002 - Now using BitKeeper, http://linux-ntfs.bkbits.net/
  985. - Replace bdevname(sb->s_dev) with sb->s_id.
  986. - Remove now superfluous new-line characters in all callers of
  987. ntfs_debug().
  988. - Apply kludge in ntfs_read_inode(), setting i_nlink to 1 for
  989. directories. Without this the "find" utility gets very upset which is
  990. fair enough as Linux/Unix do not support directory hard links.
  991. - Further runlist merging work. (Richard Russon)
  992. - Backwards compatibility for gcc-2.95. (Richard Russon)
  993. - Update to kernel 2.5.5-pre1 and rediff the now tiny patch.
  994. - Convert to new filesystem declaration using ->ntfs_get_sb() and
  995. replacing ntfs_read_super() with ntfs_fill_super().
  996. - Set s_maxbytes to MAX_LFS_FILESIZE to avoid page cache page index
  997. overflow on 32-bit architectures.
  998. - Cleanup upcase loading code to use ntfs_(un)map_page().
  999. - Disable/reenable preemtion in critical sections of compession engine.
  1000. - Replace device size determination in ntfs_fill_super() with
  1001. sb->s_bdev->bd_inode->i_size (in bytes) and remove now superfluous
  1002. function super.c::get_nr_blocks().
  1003. - Implement a mount time option (show_inodes) allowing choice of which
  1004. types of inode names readdir() returns and modify ntfs_filldir()
  1005. accordingly. There are several parameters to show_inodes:
  1006. system: system files
  1007. win32: long file names (including POSIX file names) [DEFAULT]
  1008. long: same as win32
  1009. dos: short file names only (excluding POSIX file names)
  1010. short: same as dos
  1011. posix: same as both win32 and dos
  1012. all: all file names
  1013. Note that the options are additive, i.e. specifying:
  1014. -o show_inodes=system,show_inodes=win32,show_inodes=dos
  1015. is the same as specifying:
  1016. -o show_inodes=all
  1017. Note that the "posix" and "all" options will show all directory
  1018. names, BUT the link count on each directory inode entry is set to 1,
  1019. due to Linux not supporting directory hard links. This may well
  1020. confuse some userspace applications, since the directory names will
  1021. have the same inode numbers. Thus it is NOT advisable to use the
  1022. "posix" or "all" options. We provide them only for completeness sake.
  1023. - Add copies of allocated_size, initialized_size, and compressed_size to
  1024. the ntfs inode structure and set them up in
  1025. inode.c::ntfs_read_inode(). These reflect the unnamed data attribute
  1026. for files and the index allocation attribute for directories.
  1027. - Add copies of allocated_size and initialized_size to ntfs inode for
  1028. $BITMAP attribute of large directories and set them up in
  1029. inode.c::ntfs_read_inode().
  1030. - Add copies of allocated_size and initialized_size to ntfs volume for
  1031. $BITMAP attribute of $MFT and set them up in
  1032. super.c::load_system_files().
  1033. - Parse deprecated ntfs driver options (iocharset, show_sys_files,
  1034. posix, and utf8) and tell user what the new options to use are. Note
  1035. we still do support them but they will be removed with kernel 2.7.x.
  1036. - Change all occurences of integer long long printf formatting to hex
  1037. as printk() will not support long long integer format if/when the
  1038. div64 patch goes into the kernel.
  1039. - Make slab caches have stable names and change the names to what they
  1040. were intended to be. These changes are required/made possible by the
  1041. new slab cache name handling which removes the length limitation by
  1042. requiring the caller of kmem_cache_create() to supply a stable name
  1043. which is then referenced but not copied.
  1044. - Rename run_list structure to run_list_element and create a new
  1045. run_list structure containing a pointer to a run_list_element
  1046. structure and a read/write semaphore. Adapt all users of runlists
  1047. to new scheme and take and release the lock as needed. This fixes a
  1048. nasty race as the run_list changes even when inodes are locked for
  1049. reading and even when the inode isn't locked at all, so we really
  1050. needed the serialization. We use a semaphore rather than a spinlock
  1051. as memory allocations can sleep and doing everything GFP_ATOMIC
  1052. would be silly.
  1053. - Cleanup read_inode() removing all code checking for lowest_vcn != 0.
  1054. This can never happen due to the nature of lookup_attr() and how we
  1055. support attribute lists. If it did happen it would imply the inode
  1056. being corrupt.
  1057. - Check for lowest_vcn != 0 in ntfs_read_inode() and mark the inode as
  1058. bad if found.
  1059. - Update to 2.5.6-pre2 changes in struct address_space.
  1060. - Use parent_ino() when accessing d_parent inode number in dir.c.
  1061. - Import Sourceforge CVS repository into BitKeeper repository:
  1062. http://linux-ntfs.bkbits.net/ntfs-tng-2.5
  1063. - Update fs/Makefile, fs/Config.help, fs/Config.in, and
  1064. Documentation/filesystems/ntfs.txt for NTFS TNG.
  1065. - Create kernel configuration option controlling whether debugging
  1066. is enabled or not.
  1067. - Add the required export of end_buffer_io_sync() from the patches
  1068. directory to the kernel code.
  1069. - Update inode.c::ntfs_show_options() with show_inodes mount option.
  1070. - Update errors mount option.
  1071. tng-0.0.7 - 13/02/2002 - The driver is now feature complete for read-only!
  1072. - Cleanup mft.c and it's debug/error output in particular. Fix a minor
  1073. bug in mapping of extent inodes. Update all the comments to fit all
  1074. the recent code changes.
  1075. - Modify vcn_to_lcn() to cope with entirely unmapped runlists.
  1076. - Cleanups in compress.c, mostly comments and folding help.
  1077. - Implement attrib.c::map_run_list() as a generic helper.
  1078. - Make compress.c::ntfs_file_read_compressed_block() use map_run_list()
  1079. thus making code shorter and enabling attribute list support.
  1080. - Cleanup incorrect use of [su]64 with %L printf format specifier in
  1081. all source files. Type casts to [unsigned] long long added to correct
  1082. the mismatches (important for architectures which have long long not
  1083. being 64 bits).
  1084. - Merge async io completion handlers for directory indexes and $MFT
  1085. data into one by setting the index_block_size{_bits} of the ntfs
  1086. inode for $MFT to the mft_record_size{_bits} of the ntfs_volume.
  1087. - Cleanup aops.c, update comments.
  1088. - Make ntfs_file_get_block() use map_run_list() so all files now
  1089. support attribute lists.
  1090. - Make ntfs_dir_readpage() almost verbatim copy of
  1091. block_read_full_page() by using ntfs_file_get_block() with only real
  1092. difference being the use of our own async io completion handler
  1093. rather than the default one, thus reducing the amount of code and
  1094. automatically enabling attribute list support for directory indices.
  1095. - Fix bug in load_attribute_list() - forgot to call brelse in error
  1096. code path.
  1097. - Change parameters to find_attr() and lookup_attr(). We no longer
  1098. pass in the upcase table and its length. These can be gotten from
  1099. ctx->ntfs_ino->vol->upcase{_len}. Update all callers.
  1100. - Cleanups in attrib.c.
  1101. - Implement merging of runlists, attrib.c::merge_run_lists() and its
  1102. helpers. (Richard Russon)
  1103. - Attribute lists part 2, attribute extents and multi part runlists:
  1104. enable proper support for LCN_RL_NOT_MAPPED and automatic mapping of
  1105. further runlist parts via attrib.c::map_run_list().
  1106. - Tiny endianness bug fix in decompress_mapping_pairs().
  1107. tng-0.0.6 - Encrypted directories, bug fixes, cleanups, debugging enhancements.
  1108. - Enable encrypted directories. (Their index root is marked encrypted
  1109. to indicate that new files in that directory should be created
  1110. encrypted.)
  1111. - Fix bug in NInoBmpNonResident() macro. (Cut and paste error.)
  1112. - Enable $Extend system directory. Most (if not all) extended system
  1113. files do not have unnamed data attributes so ntfs_read_inode() had to
  1114. special case them but that is ok, as the special casing recovery
  1115. happens inside an error code path so there is zero slow down in the
  1116. normal fast path. The special casing is done by introducing a new
  1117. function inode.c::ntfs_is_extended_system_file() which checks if any
  1118. of the hard links in the inode point to $Extend as being their parent
  1119. directory and if they do we assume this is an extended system file.
  1120. - Create a sysctl/proc interface to allow {dis,en}abling of debug output
  1121. when compiled with -DDEBUG. Default is debug messages to be disabled.
  1122. To enable them, one writes a non-zero value to /proc/sys/fs/ntfs-debug
  1123. (if /proc is enabled) or uses sysctl(2) to effect the same (if sysctl
  1124. interface is enabled). Inspired by old ntfs driver.
  1125. - Add debug_msgs insmod/kernel boot parameter to set whether debug
  1126. messages are {dis,en}abled. This is useful to enable debug messages
  1127. during ntfs initialization and is the only way to activate debugging
  1128. when the sysctl interface is not enabled.
  1129. - Cleanup debug output in various places.
  1130. - Remove all dollar signs ($) from the source (except comments) to
  1131. enable compilation on architectures whose gcc compiler does not
  1132. support dollar signs in the names of variables/constants. Attribute
  1133. types now start with AT_ instead of $ and $I30 is now just I30.
  1134. - Cleanup ntfs_lookup() and add consistency check of sequence numbers.
  1135. - Load complete runlist for $MFT/$BITMAP during mount and cleanup
  1136. access functions. This means we now cope with $MFT/$BITMAP being
  1137. spread accross several mft records.
  1138. - Disable modification of mft_zone_multiplier on remount. We can always
  1139. reenable this later on if we really want to, but we will need to make
  1140. sure we readjust the mft_zone size / layout accordingly.
  1141. tng-0.0.5 - Modernize for 2.5.x and further in line-ing with Al Viro's comments.
  1142. - Use sb_set_blocksize() instead of set_blocksize() and verify the
  1143. return value.
  1144. - Use sb_bread() instead of bread() throughout.
  1145. - Add index_vcn_size{_bits} to ntfs_inode structure to store the size
  1146. of a directory index block vcn. Apply resulting simplifications in
  1147. dir.c everywhere.
  1148. - Fix a small bug somewhere (but forgot what it was).
  1149. - Change ntfs_{debug,error,warning} to enable gcc to do type checking
  1150. on the printf-format parameter list and fix bugs reported by gcc
  1151. as a result. (Richard Russon)
  1152. - Move inode allocation strategy to Al's new stuff but maintain the
  1153. divorce of ntfs_inode from struct inode. To achieve this we have two
  1154. separate slab caches, one for big ntfs inodes containing a struct
  1155. inode and pure ntfs inodes and at the same time fix some faulty
  1156. error code paths in ntfs_read_inode().
  1157. - Show mount options in proc (inode.c::ntfs_show_options()).
  1158. tng-0.0.4 - Big changes, getting in line with Al Viro's comments.
  1159. - Modified (un)map_mft_record functions to be common for read and write
  1160. case. To specify which is which, added extra parameter at front of
  1161. parameter list. Pass either READ or WRITE to this, each has the
  1162. obvious meaning.
  1163. - General cleanups to allow for easier folding in vi.
  1164. - attrib.c::decompress_mapping_pairs() now accepts the old runlist
  1165. argument, and invokes attrib.c::merge_run_lists() to merge the old
  1166. and the new runlists.
  1167. - Removed attrib.c::find_first_attr().
  1168. - Implemented loading of attribute list and complete runlist for $MFT.
  1169. This means we now cope with $MFT being spread across several mft
  1170. records.
  1171. - Adapt to 2.5.2-pre9 and the changed create_empty_buffers() syntax.
  1172. - Adapt major/minor/kdev_t/[bk]devname stuff to new 2.5.x kernels.
  1173. - Make ntfs_volume be allocated via kmalloc() instead of using a slab
  1174. cache. There are too little ntfs_volume structures at any one time
  1175. to justify a private slab cache.
  1176. - Fix bogus kmap() use in async io completion. Now use kmap_atomic().
  1177. Use KM_BIO_IRQ on advice from IRC/kernel...
  1178. - Use ntfs_map_page() in map_mft_record() and create ->readpage method
  1179. for reading $MFT (ntfs_mft_readpage). In the process create dedicated
  1180. address space operations (ntfs_mft_aops) for $MFT inode mapping. Also
  1181. removed the now superfluous exports from the kernel core patch.
  1182. - Fix a bug where kfree() was used insted of ntfs_free().
  1183. - Change map_mft_record() to take ntfs_inode as argument instead of
  1184. vfs inode. Dito for unmap_mft_record(). Adapt all callers.
  1185. - Add pointer to ntfs_volume to ntfs_inode.
  1186. - Add mft record number and sequence number to ntfs_inode. Stop using
  1187. i_ino and i_generation for in-driver purposes.
  1188. - Implement attrib.c::merge_run_lists(). (Richard Russon)
  1189. - Remove use of proper inodes by extent inodes. Move i_ino and
  1190. i_generation to ntfs_inode to do this. Apply simplifications that
  1191. result and remove iget_no_wait(), etc.
  1192. - Pass ntfs_inode everywhere in the driver (used to be struct inode).
  1193. - Add reference counting in ntfs_inode for the ntfs inode itself and
  1194. for the mapped mft record.
  1195. - Extend mft record mapping so we can (un)map extent mft records (new
  1196. functions (un)map_extent_mft_record), and so mappings are reference
  1197. counted and don't have to happen twice if already mapped - just ref
  1198. count increases.
  1199. - Add -o iocharset as alias to -o nls for backwards compatibility.
  1200. - The latest core patch is now tiny. In fact just a single additional
  1201. export is necessary over the base kernel.
  1202. tng-0.0.3 - Cleanups, enhancements, bug fixes.
  1203. - Work on attrib.c::decompress_mapping_pairs() to detect base extents
  1204. and setup the runlist appropriately using knowledge provided by the
  1205. sizes in the base attribute record.
  1206. - Balance the get_/put_attr_search_ctx() calls so we don't leak memory
  1207. any more.
  1208. - Introduce ntfs_malloc_nofs() and ntfs_free() to allocate/free a single
  1209. page or use vmalloc depending on the amount of memory requested.
  1210. - Cleanup error output. The __FUNCTION__ "(): " is now added
  1211. automatically. Introduced a new header file debug.h to support this
  1212. and also moved ntfs_debug() function into it.
  1213. - Make reading of compressed files more intelligent and especially get
  1214. rid of the vmalloc_nofs() from readpage(). This now uses per CPU
  1215. buffers (allocated at first mount with cluster size <= 4kiB and
  1216. deallocated on last umount with cluster size <= 4kiB), and
  1217. asynchronous io for the compressed data using a list of buffer heads.
  1218. Er, we use synchronous io as async io only works on whole pages
  1219. covered by buffers and not on individual buffer heads...
  1220. - Bug fix for reading compressed files with sparse compression blocks.
  1221. tng-0.0.2 - Now handles larger/fragmented/compressed volumes/files/dirs.
  1222. - Fixed handling of directories when cluster size exceeds index block
  1223. size.
  1224. - Hide DOS only name space directory entries from readdir() but allow
  1225. them in lookup(). This should fix the problem that Linux doesn't
  1226. support directory hard links, while still allowing access to entries
  1227. via their short file name. This also has the benefit of mimicking
  1228. what Windows users are used to, so it is the ideal solution.
  1229. - Implemented sync_page everywhere so no more hangs in D state when
  1230. waiting for a page.
  1231. - Stop using bforget() in favour of brelse().
  1232. - Stop locking buffers unnecessarily.
  1233. - Implemented compressed files (inode->mapping contains uncompressed
  1234. data, raw compressed data is currently bread() into a vmalloc()ed
  1235. memory buffer).
  1236. - Enable compressed directories. (Their index root is marked compressed
  1237. to indicate that new files in that directory should be created
  1238. compressed.)
  1239. - Use vsnprintf rather than vsprintf in the ntfs_error and ntfs_warning
  1240. functions. (Thanks to Will Dyson for pointing this out.)
  1241. - Moved the ntfs_inode and ntfs_volume (the former ntfs_inode_info and
  1242. ntfs_sb_info) out of the common inode and super_block structures and
  1243. started using the generic_ip and generic_sbp pointers instead. This
  1244. makes ntfs entirely private with respect to the kernel tree.
  1245. - Detect compiler version and abort with error message if gcc less than
  1246. 2.96 is used.
  1247. - Fix bug in name comparison function in unistr.c.
  1248. - Implement attribute lists part 1, the infrastructure: search contexts
  1249. and operations, find_external_attr(), lookup_attr()) and make the
  1250. code use the infrastructure.
  1251. - Fix stupid buffer overflow bug that became apparent on larger run
  1252. list containing attributes.
  1253. - Fix bugs in readdir() that became apparent on larger directories.
  1254. The driver is now really useful and survives the test
  1255. find . -type f -exec md5sum "{}" \;
  1256. without any error messages on a over 1GiB sized partition with >16k
  1257. files on it, including compressed files and directories and many files
  1258. and directories with attribute lists.
  1259. tng-0.0.1 - The first useful version.
  1260. - Added ntfs_lookup().
  1261. - Added default upcase generation and handling.
  1262. - Added compile options to be shown on module init.
  1263. - Many bug fixes that were "hidden" before.
  1264. - Update to latest kernel.
  1265. - Added ntfs_readdir().
  1266. - Added file operations for mmap(), read(), open() and llseek(). We just
  1267. use the generic ones. The whole point of going through implementing
  1268. readpage() methods and where possible get_block() call backs is that
  1269. this allows us to make use of the generic high level methods provided
  1270. by the kernel.
  1271. The driver is now actually useful! Yey. (-: It undoubtedly has got bugs
  1272. though and it doesn't implement accesssing compressed files yet. Also,
  1273. accessing files with attribute list attributes is not implemented yet
  1274. either. But for small or simple filesystems it should work and allow
  1275. you to list directories, use stat on directory entries and the file
  1276. system, open, read, mmap and llseek around in files. A big mile stone
  1277. has been reached!
  1278. tng-0.0.0 - Initial version tag.
  1279. Initial driver implementation. The driver can mount and umount simple
  1280. NTFS filesystems (i.e. ones without attribute lists in the system
  1281. files). If the mount fails there might be problems in the error handling
  1282. code paths, so be warned. Otherwise it seems to be loading the system
  1283. files nicely and the mft record read mapping/unmapping seems to be
  1284. working nicely, too. Proof of inode metadata in the page cache and non-
  1285. resident file unnamed stream data in the page cache concepts is thus
  1286. complete.