super.c 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213
  1. /*
  2. * super.c - NTFS kernel super block handling. Part of the Linux-NTFS project.
  3. *
  4. * Copyright (c) 2001-2012 Anton Altaparmakov and Tuxera Inc.
  5. * Copyright (c) 2001,2002 Richard Russon
  6. *
  7. * This program/include file is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as published
  9. * by the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program/include file is distributed in the hope that it will be
  13. * useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  14. * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program (in the main directory of the Linux-NTFS
  19. * distribution in the file COPYING); if not, write to the Free Software
  20. * Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. */
  22. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  23. #include <linux/stddef.h>
  24. #include <linux/init.h>
  25. #include <linux/slab.h>
  26. #include <linux/string.h>
  27. #include <linux/spinlock.h>
  28. #include <linux/blkdev.h> /* For bdev_logical_block_size(). */
  29. #include <linux/backing-dev.h>
  30. #include <linux/buffer_head.h>
  31. #include <linux/vfs.h>
  32. #include <linux/moduleparam.h>
  33. #include <linux/bitmap.h>
  34. #include "sysctl.h"
  35. #include "logfile.h"
  36. #include "quota.h"
  37. #include "usnjrnl.h"
  38. #include "dir.h"
  39. #include "debug.h"
  40. #include "index.h"
  41. #include "inode.h"
  42. #include "aops.h"
  43. #include "layout.h"
  44. #include "malloc.h"
  45. #include "ntfs.h"
  46. /* Number of mounted filesystems which have compression enabled. */
  47. static unsigned long ntfs_nr_compression_users;
  48. /* A global default upcase table and a corresponding reference count. */
  49. static ntfschar *default_upcase;
  50. static unsigned long ntfs_nr_upcase_users;
  51. /* Error constants/strings used in inode.c::ntfs_show_options(). */
  52. typedef enum {
  53. /* One of these must be present, default is ON_ERRORS_CONTINUE. */
  54. ON_ERRORS_PANIC = 0x01,
  55. ON_ERRORS_REMOUNT_RO = 0x02,
  56. ON_ERRORS_CONTINUE = 0x04,
  57. /* Optional, can be combined with any of the above. */
  58. ON_ERRORS_RECOVER = 0x10,
  59. } ON_ERRORS_ACTIONS;
  60. const option_t on_errors_arr[] = {
  61. { ON_ERRORS_PANIC, "panic" },
  62. { ON_ERRORS_REMOUNT_RO, "remount-ro", },
  63. { ON_ERRORS_CONTINUE, "continue", },
  64. { ON_ERRORS_RECOVER, "recover" },
  65. { 0, NULL }
  66. };
  67. /**
  68. * simple_getbool -
  69. *
  70. * Copied from old ntfs driver (which copied from vfat driver).
  71. */
  72. static int simple_getbool(char *s, bool *setval)
  73. {
  74. if (s) {
  75. if (!strcmp(s, "1") || !strcmp(s, "yes") || !strcmp(s, "true"))
  76. *setval = true;
  77. else if (!strcmp(s, "0") || !strcmp(s, "no") ||
  78. !strcmp(s, "false"))
  79. *setval = false;
  80. else
  81. return 0;
  82. } else
  83. *setval = true;
  84. return 1;
  85. }
  86. /**
  87. * parse_options - parse the (re)mount options
  88. * @vol: ntfs volume
  89. * @opt: string containing the (re)mount options
  90. *
  91. * Parse the recognized options in @opt for the ntfs volume described by @vol.
  92. */
  93. static bool parse_options(ntfs_volume *vol, char *opt)
  94. {
  95. char *p, *v, *ov;
  96. static char *utf8 = "utf8";
  97. int errors = 0, sloppy = 0;
  98. kuid_t uid = INVALID_UID;
  99. kgid_t gid = INVALID_GID;
  100. umode_t fmask = (umode_t)-1, dmask = (umode_t)-1;
  101. int mft_zone_multiplier = -1, on_errors = -1;
  102. int show_sys_files = -1, case_sensitive = -1, disable_sparse = -1;
  103. struct nls_table *nls_map = NULL, *old_nls;
  104. /* I am lazy... (-8 */
  105. #define NTFS_GETOPT_WITH_DEFAULT(option, variable, default_value) \
  106. if (!strcmp(p, option)) { \
  107. if (!v || !*v) \
  108. variable = default_value; \
  109. else { \
  110. variable = simple_strtoul(ov = v, &v, 0); \
  111. if (*v) \
  112. goto needs_val; \
  113. } \
  114. }
  115. #define NTFS_GETOPT(option, variable) \
  116. if (!strcmp(p, option)) { \
  117. if (!v || !*v) \
  118. goto needs_arg; \
  119. variable = simple_strtoul(ov = v, &v, 0); \
  120. if (*v) \
  121. goto needs_val; \
  122. }
  123. #define NTFS_GETOPT_UID(option, variable) \
  124. if (!strcmp(p, option)) { \
  125. uid_t uid_value; \
  126. if (!v || !*v) \
  127. goto needs_arg; \
  128. uid_value = simple_strtoul(ov = v, &v, 0); \
  129. if (*v) \
  130. goto needs_val; \
  131. variable = make_kuid(current_user_ns(), uid_value); \
  132. if (!uid_valid(variable)) \
  133. goto needs_val; \
  134. }
  135. #define NTFS_GETOPT_GID(option, variable) \
  136. if (!strcmp(p, option)) { \
  137. gid_t gid_value; \
  138. if (!v || !*v) \
  139. goto needs_arg; \
  140. gid_value = simple_strtoul(ov = v, &v, 0); \
  141. if (*v) \
  142. goto needs_val; \
  143. variable = make_kgid(current_user_ns(), gid_value); \
  144. if (!gid_valid(variable)) \
  145. goto needs_val; \
  146. }
  147. #define NTFS_GETOPT_OCTAL(option, variable) \
  148. if (!strcmp(p, option)) { \
  149. if (!v || !*v) \
  150. goto needs_arg; \
  151. variable = simple_strtoul(ov = v, &v, 8); \
  152. if (*v) \
  153. goto needs_val; \
  154. }
  155. #define NTFS_GETOPT_BOOL(option, variable) \
  156. if (!strcmp(p, option)) { \
  157. bool val; \
  158. if (!simple_getbool(v, &val)) \
  159. goto needs_bool; \
  160. variable = val; \
  161. }
  162. #define NTFS_GETOPT_OPTIONS_ARRAY(option, variable, opt_array) \
  163. if (!strcmp(p, option)) { \
  164. int _i; \
  165. if (!v || !*v) \
  166. goto needs_arg; \
  167. ov = v; \
  168. if (variable == -1) \
  169. variable = 0; \
  170. for (_i = 0; opt_array[_i].str && *opt_array[_i].str; _i++) \
  171. if (!strcmp(opt_array[_i].str, v)) { \
  172. variable |= opt_array[_i].val; \
  173. break; \
  174. } \
  175. if (!opt_array[_i].str || !*opt_array[_i].str) \
  176. goto needs_val; \
  177. }
  178. if (!opt || !*opt)
  179. goto no_mount_options;
  180. ntfs_debug("Entering with mount options string: %s", opt);
  181. while ((p = strsep(&opt, ","))) {
  182. if ((v = strchr(p, '=')))
  183. *v++ = 0;
  184. NTFS_GETOPT_UID("uid", uid)
  185. else NTFS_GETOPT_GID("gid", gid)
  186. else NTFS_GETOPT_OCTAL("umask", fmask = dmask)
  187. else NTFS_GETOPT_OCTAL("fmask", fmask)
  188. else NTFS_GETOPT_OCTAL("dmask", dmask)
  189. else NTFS_GETOPT("mft_zone_multiplier", mft_zone_multiplier)
  190. else NTFS_GETOPT_WITH_DEFAULT("sloppy", sloppy, true)
  191. else NTFS_GETOPT_BOOL("show_sys_files", show_sys_files)
  192. else NTFS_GETOPT_BOOL("case_sensitive", case_sensitive)
  193. else NTFS_GETOPT_BOOL("disable_sparse", disable_sparse)
  194. else NTFS_GETOPT_OPTIONS_ARRAY("errors", on_errors,
  195. on_errors_arr)
  196. else if (!strcmp(p, "posix") || !strcmp(p, "show_inodes"))
  197. ntfs_warning(vol->sb, "Ignoring obsolete option %s.",
  198. p);
  199. else if (!strcmp(p, "nls") || !strcmp(p, "iocharset")) {
  200. if (!strcmp(p, "iocharset"))
  201. ntfs_warning(vol->sb, "Option iocharset is "
  202. "deprecated. Please use "
  203. "option nls=<charsetname> in "
  204. "the future.");
  205. if (!v || !*v)
  206. goto needs_arg;
  207. use_utf8:
  208. old_nls = nls_map;
  209. nls_map = load_nls(v);
  210. if (!nls_map) {
  211. if (!old_nls) {
  212. ntfs_error(vol->sb, "NLS character set "
  213. "%s not found.", v);
  214. return false;
  215. }
  216. ntfs_error(vol->sb, "NLS character set %s not "
  217. "found. Using previous one %s.",
  218. v, old_nls->charset);
  219. nls_map = old_nls;
  220. } else /* nls_map */ {
  221. unload_nls(old_nls);
  222. }
  223. } else if (!strcmp(p, "utf8")) {
  224. bool val = false;
  225. ntfs_warning(vol->sb, "Option utf8 is no longer "
  226. "supported, using option nls=utf8. Please "
  227. "use option nls=utf8 in the future and "
  228. "make sure utf8 is compiled either as a "
  229. "module or into the kernel.");
  230. if (!v || !*v)
  231. val = true;
  232. else if (!simple_getbool(v, &val))
  233. goto needs_bool;
  234. if (val) {
  235. v = utf8;
  236. goto use_utf8;
  237. }
  238. } else {
  239. ntfs_error(vol->sb, "Unrecognized mount option %s.", p);
  240. if (errors < INT_MAX)
  241. errors++;
  242. }
  243. #undef NTFS_GETOPT_OPTIONS_ARRAY
  244. #undef NTFS_GETOPT_BOOL
  245. #undef NTFS_GETOPT
  246. #undef NTFS_GETOPT_WITH_DEFAULT
  247. }
  248. no_mount_options:
  249. if (errors && !sloppy)
  250. return false;
  251. if (sloppy)
  252. ntfs_warning(vol->sb, "Sloppy option given. Ignoring "
  253. "unrecognized mount option(s) and continuing.");
  254. /* Keep this first! */
  255. if (on_errors != -1) {
  256. if (!on_errors) {
  257. ntfs_error(vol->sb, "Invalid errors option argument "
  258. "or bug in options parser.");
  259. return false;
  260. }
  261. }
  262. if (nls_map) {
  263. if (vol->nls_map && vol->nls_map != nls_map) {
  264. ntfs_error(vol->sb, "Cannot change NLS character set "
  265. "on remount.");
  266. return false;
  267. } /* else (!vol->nls_map) */
  268. ntfs_debug("Using NLS character set %s.", nls_map->charset);
  269. vol->nls_map = nls_map;
  270. } else /* (!nls_map) */ {
  271. if (!vol->nls_map) {
  272. vol->nls_map = load_nls_default();
  273. if (!vol->nls_map) {
  274. ntfs_error(vol->sb, "Failed to load default "
  275. "NLS character set.");
  276. return false;
  277. }
  278. ntfs_debug("Using default NLS character set (%s).",
  279. vol->nls_map->charset);
  280. }
  281. }
  282. if (mft_zone_multiplier != -1) {
  283. if (vol->mft_zone_multiplier && vol->mft_zone_multiplier !=
  284. mft_zone_multiplier) {
  285. ntfs_error(vol->sb, "Cannot change mft_zone_multiplier "
  286. "on remount.");
  287. return false;
  288. }
  289. if (mft_zone_multiplier < 1 || mft_zone_multiplier > 4) {
  290. ntfs_error(vol->sb, "Invalid mft_zone_multiplier. "
  291. "Using default value, i.e. 1.");
  292. mft_zone_multiplier = 1;
  293. }
  294. vol->mft_zone_multiplier = mft_zone_multiplier;
  295. }
  296. if (!vol->mft_zone_multiplier)
  297. vol->mft_zone_multiplier = 1;
  298. if (on_errors != -1)
  299. vol->on_errors = on_errors;
  300. if (!vol->on_errors || vol->on_errors == ON_ERRORS_RECOVER)
  301. vol->on_errors |= ON_ERRORS_CONTINUE;
  302. if (uid_valid(uid))
  303. vol->uid = uid;
  304. if (gid_valid(gid))
  305. vol->gid = gid;
  306. if (fmask != (umode_t)-1)
  307. vol->fmask = fmask;
  308. if (dmask != (umode_t)-1)
  309. vol->dmask = dmask;
  310. if (show_sys_files != -1) {
  311. if (show_sys_files)
  312. NVolSetShowSystemFiles(vol);
  313. else
  314. NVolClearShowSystemFiles(vol);
  315. }
  316. if (case_sensitive != -1) {
  317. if (case_sensitive)
  318. NVolSetCaseSensitive(vol);
  319. else
  320. NVolClearCaseSensitive(vol);
  321. }
  322. if (disable_sparse != -1) {
  323. if (disable_sparse)
  324. NVolClearSparseEnabled(vol);
  325. else {
  326. if (!NVolSparseEnabled(vol) &&
  327. vol->major_ver && vol->major_ver < 3)
  328. ntfs_warning(vol->sb, "Not enabling sparse "
  329. "support due to NTFS volume "
  330. "version %i.%i (need at least "
  331. "version 3.0).", vol->major_ver,
  332. vol->minor_ver);
  333. else
  334. NVolSetSparseEnabled(vol);
  335. }
  336. }
  337. return true;
  338. needs_arg:
  339. ntfs_error(vol->sb, "The %s option requires an argument.", p);
  340. return false;
  341. needs_bool:
  342. ntfs_error(vol->sb, "The %s option requires a boolean argument.", p);
  343. return false;
  344. needs_val:
  345. ntfs_error(vol->sb, "Invalid %s option argument: %s", p, ov);
  346. return false;
  347. }
  348. #ifdef NTFS_RW
  349. /**
  350. * ntfs_write_volume_flags - write new flags to the volume information flags
  351. * @vol: ntfs volume on which to modify the flags
  352. * @flags: new flags value for the volume information flags
  353. *
  354. * Internal function. You probably want to use ntfs_{set,clear}_volume_flags()
  355. * instead (see below).
  356. *
  357. * Replace the volume information flags on the volume @vol with the value
  358. * supplied in @flags. Note, this overwrites the volume information flags, so
  359. * make sure to combine the flags you want to modify with the old flags and use
  360. * the result when calling ntfs_write_volume_flags().
  361. *
  362. * Return 0 on success and -errno on error.
  363. */
  364. static int ntfs_write_volume_flags(ntfs_volume *vol, const VOLUME_FLAGS flags)
  365. {
  366. ntfs_inode *ni = NTFS_I(vol->vol_ino);
  367. MFT_RECORD *m;
  368. VOLUME_INFORMATION *vi;
  369. ntfs_attr_search_ctx *ctx;
  370. int err;
  371. ntfs_debug("Entering, old flags = 0x%x, new flags = 0x%x.",
  372. le16_to_cpu(vol->vol_flags), le16_to_cpu(flags));
  373. if (vol->vol_flags == flags)
  374. goto done;
  375. BUG_ON(!ni);
  376. m = map_mft_record(ni);
  377. if (IS_ERR(m)) {
  378. err = PTR_ERR(m);
  379. goto err_out;
  380. }
  381. ctx = ntfs_attr_get_search_ctx(ni, m);
  382. if (!ctx) {
  383. err = -ENOMEM;
  384. goto put_unm_err_out;
  385. }
  386. err = ntfs_attr_lookup(AT_VOLUME_INFORMATION, NULL, 0, 0, 0, NULL, 0,
  387. ctx);
  388. if (err)
  389. goto put_unm_err_out;
  390. vi = (VOLUME_INFORMATION*)((u8*)ctx->attr +
  391. le16_to_cpu(ctx->attr->data.resident.value_offset));
  392. vol->vol_flags = vi->flags = flags;
  393. flush_dcache_mft_record_page(ctx->ntfs_ino);
  394. mark_mft_record_dirty(ctx->ntfs_ino);
  395. ntfs_attr_put_search_ctx(ctx);
  396. unmap_mft_record(ni);
  397. done:
  398. ntfs_debug("Done.");
  399. return 0;
  400. put_unm_err_out:
  401. if (ctx)
  402. ntfs_attr_put_search_ctx(ctx);
  403. unmap_mft_record(ni);
  404. err_out:
  405. ntfs_error(vol->sb, "Failed with error code %i.", -err);
  406. return err;
  407. }
  408. /**
  409. * ntfs_set_volume_flags - set bits in the volume information flags
  410. * @vol: ntfs volume on which to modify the flags
  411. * @flags: flags to set on the volume
  412. *
  413. * Set the bits in @flags in the volume information flags on the volume @vol.
  414. *
  415. * Return 0 on success and -errno on error.
  416. */
  417. static inline int ntfs_set_volume_flags(ntfs_volume *vol, VOLUME_FLAGS flags)
  418. {
  419. flags &= VOLUME_FLAGS_MASK;
  420. return ntfs_write_volume_flags(vol, vol->vol_flags | flags);
  421. }
  422. /**
  423. * ntfs_clear_volume_flags - clear bits in the volume information flags
  424. * @vol: ntfs volume on which to modify the flags
  425. * @flags: flags to clear on the volume
  426. *
  427. * Clear the bits in @flags in the volume information flags on the volume @vol.
  428. *
  429. * Return 0 on success and -errno on error.
  430. */
  431. static inline int ntfs_clear_volume_flags(ntfs_volume *vol, VOLUME_FLAGS flags)
  432. {
  433. flags &= VOLUME_FLAGS_MASK;
  434. flags = vol->vol_flags & cpu_to_le16(~le16_to_cpu(flags));
  435. return ntfs_write_volume_flags(vol, flags);
  436. }
  437. #endif /* NTFS_RW */
  438. /**
  439. * ntfs_remount - change the mount options of a mounted ntfs filesystem
  440. * @sb: superblock of mounted ntfs filesystem
  441. * @flags: remount flags
  442. * @opt: remount options string
  443. *
  444. * Change the mount options of an already mounted ntfs filesystem.
  445. *
  446. * NOTE: The VFS sets the @sb->s_flags remount flags to @flags after
  447. * ntfs_remount() returns successfully (i.e. returns 0). Otherwise,
  448. * @sb->s_flags are not changed.
  449. */
  450. static int ntfs_remount(struct super_block *sb, int *flags, char *opt)
  451. {
  452. ntfs_volume *vol = NTFS_SB(sb);
  453. ntfs_debug("Entering with remount options string: %s", opt);
  454. sync_filesystem(sb);
  455. #ifndef NTFS_RW
  456. /* For read-only compiled driver, enforce read-only flag. */
  457. *flags |= MS_RDONLY;
  458. #else /* NTFS_RW */
  459. /*
  460. * For the read-write compiled driver, if we are remounting read-write,
  461. * make sure there are no volume errors and that no unsupported volume
  462. * flags are set. Also, empty the logfile journal as it would become
  463. * stale as soon as something is written to the volume and mark the
  464. * volume dirty so that chkdsk is run if the volume is not umounted
  465. * cleanly. Finally, mark the quotas out of date so Windows rescans
  466. * the volume on boot and updates them.
  467. *
  468. * When remounting read-only, mark the volume clean if no volume errors
  469. * have occurred.
  470. */
  471. if ((sb->s_flags & MS_RDONLY) && !(*flags & MS_RDONLY)) {
  472. static const char *es = ". Cannot remount read-write.";
  473. /* Remounting read-write. */
  474. if (NVolErrors(vol)) {
  475. ntfs_error(sb, "Volume has errors and is read-only%s",
  476. es);
  477. return -EROFS;
  478. }
  479. if (vol->vol_flags & VOLUME_IS_DIRTY) {
  480. ntfs_error(sb, "Volume is dirty and read-only%s", es);
  481. return -EROFS;
  482. }
  483. if (vol->vol_flags & VOLUME_MODIFIED_BY_CHKDSK) {
  484. ntfs_error(sb, "Volume has been modified by chkdsk "
  485. "and is read-only%s", es);
  486. return -EROFS;
  487. }
  488. if (vol->vol_flags & VOLUME_MUST_MOUNT_RO_MASK) {
  489. ntfs_error(sb, "Volume has unsupported flags set "
  490. "(0x%x) and is read-only%s",
  491. (unsigned)le16_to_cpu(vol->vol_flags),
  492. es);
  493. return -EROFS;
  494. }
  495. if (ntfs_set_volume_flags(vol, VOLUME_IS_DIRTY)) {
  496. ntfs_error(sb, "Failed to set dirty bit in volume "
  497. "information flags%s", es);
  498. return -EROFS;
  499. }
  500. #if 0
  501. // TODO: Enable this code once we start modifying anything that
  502. // is different between NTFS 1.2 and 3.x...
  503. /* Set NT4 compatibility flag on newer NTFS version volumes. */
  504. if ((vol->major_ver > 1)) {
  505. if (ntfs_set_volume_flags(vol, VOLUME_MOUNTED_ON_NT4)) {
  506. ntfs_error(sb, "Failed to set NT4 "
  507. "compatibility flag%s", es);
  508. NVolSetErrors(vol);
  509. return -EROFS;
  510. }
  511. }
  512. #endif
  513. if (!ntfs_empty_logfile(vol->logfile_ino)) {
  514. ntfs_error(sb, "Failed to empty journal $LogFile%s",
  515. es);
  516. NVolSetErrors(vol);
  517. return -EROFS;
  518. }
  519. if (!ntfs_mark_quotas_out_of_date(vol)) {
  520. ntfs_error(sb, "Failed to mark quotas out of date%s",
  521. es);
  522. NVolSetErrors(vol);
  523. return -EROFS;
  524. }
  525. if (!ntfs_stamp_usnjrnl(vol)) {
  526. ntfs_error(sb, "Failed to stamp transaction log "
  527. "($UsnJrnl)%s", es);
  528. NVolSetErrors(vol);
  529. return -EROFS;
  530. }
  531. } else if (!(sb->s_flags & MS_RDONLY) && (*flags & MS_RDONLY)) {
  532. /* Remounting read-only. */
  533. if (!NVolErrors(vol)) {
  534. if (ntfs_clear_volume_flags(vol, VOLUME_IS_DIRTY))
  535. ntfs_warning(sb, "Failed to clear dirty bit "
  536. "in volume information "
  537. "flags. Run chkdsk.");
  538. }
  539. }
  540. #endif /* NTFS_RW */
  541. // TODO: Deal with *flags.
  542. if (!parse_options(vol, opt))
  543. return -EINVAL;
  544. ntfs_debug("Done.");
  545. return 0;
  546. }
  547. /**
  548. * is_boot_sector_ntfs - check whether a boot sector is a valid NTFS boot sector
  549. * @sb: Super block of the device to which @b belongs.
  550. * @b: Boot sector of device @sb to check.
  551. * @silent: If 'true', all output will be silenced.
  552. *
  553. * is_boot_sector_ntfs() checks whether the boot sector @b is a valid NTFS boot
  554. * sector. Returns 'true' if it is valid and 'false' if not.
  555. *
  556. * @sb is only needed for warning/error output, i.e. it can be NULL when silent
  557. * is 'true'.
  558. */
  559. static bool is_boot_sector_ntfs(const struct super_block *sb,
  560. const NTFS_BOOT_SECTOR *b, const bool silent)
  561. {
  562. /*
  563. * Check that checksum == sum of u32 values from b to the checksum
  564. * field. If checksum is zero, no checking is done. We will work when
  565. * the checksum test fails, since some utilities update the boot sector
  566. * ignoring the checksum which leaves the checksum out-of-date. We
  567. * report a warning if this is the case.
  568. */
  569. if ((void*)b < (void*)&b->checksum && b->checksum && !silent) {
  570. le32 *u;
  571. u32 i;
  572. for (i = 0, u = (le32*)b; u < (le32*)(&b->checksum); ++u)
  573. i += le32_to_cpup(u);
  574. if (le32_to_cpu(b->checksum) != i)
  575. ntfs_warning(sb, "Invalid boot sector checksum.");
  576. }
  577. /* Check OEMidentifier is "NTFS " */
  578. if (b->oem_id != magicNTFS)
  579. goto not_ntfs;
  580. /* Check bytes per sector value is between 256 and 4096. */
  581. if (le16_to_cpu(b->bpb.bytes_per_sector) < 0x100 ||
  582. le16_to_cpu(b->bpb.bytes_per_sector) > 0x1000)
  583. goto not_ntfs;
  584. /* Check sectors per cluster value is valid. */
  585. switch (b->bpb.sectors_per_cluster) {
  586. case 1: case 2: case 4: case 8: case 16: case 32: case 64: case 128:
  587. break;
  588. default:
  589. goto not_ntfs;
  590. }
  591. /* Check the cluster size is not above the maximum (64kiB). */
  592. if ((u32)le16_to_cpu(b->bpb.bytes_per_sector) *
  593. b->bpb.sectors_per_cluster > NTFS_MAX_CLUSTER_SIZE)
  594. goto not_ntfs;
  595. /* Check reserved/unused fields are really zero. */
  596. if (le16_to_cpu(b->bpb.reserved_sectors) ||
  597. le16_to_cpu(b->bpb.root_entries) ||
  598. le16_to_cpu(b->bpb.sectors) ||
  599. le16_to_cpu(b->bpb.sectors_per_fat) ||
  600. le32_to_cpu(b->bpb.large_sectors) || b->bpb.fats)
  601. goto not_ntfs;
  602. /* Check clusters per file mft record value is valid. */
  603. if ((u8)b->clusters_per_mft_record < 0xe1 ||
  604. (u8)b->clusters_per_mft_record > 0xf7)
  605. switch (b->clusters_per_mft_record) {
  606. case 1: case 2: case 4: case 8: case 16: case 32: case 64:
  607. break;
  608. default:
  609. goto not_ntfs;
  610. }
  611. /* Check clusters per index block value is valid. */
  612. if ((u8)b->clusters_per_index_record < 0xe1 ||
  613. (u8)b->clusters_per_index_record > 0xf7)
  614. switch (b->clusters_per_index_record) {
  615. case 1: case 2: case 4: case 8: case 16: case 32: case 64:
  616. break;
  617. default:
  618. goto not_ntfs;
  619. }
  620. /*
  621. * Check for valid end of sector marker. We will work without it, but
  622. * many BIOSes will refuse to boot from a bootsector if the magic is
  623. * incorrect, so we emit a warning.
  624. */
  625. if (!silent && b->end_of_sector_marker != cpu_to_le16(0xaa55))
  626. ntfs_warning(sb, "Invalid end of sector marker.");
  627. return true;
  628. not_ntfs:
  629. return false;
  630. }
  631. /**
  632. * read_ntfs_boot_sector - read the NTFS boot sector of a device
  633. * @sb: super block of device to read the boot sector from
  634. * @silent: if true, suppress all output
  635. *
  636. * Reads the boot sector from the device and validates it. If that fails, tries
  637. * to read the backup boot sector, first from the end of the device a-la NT4 and
  638. * later and then from the middle of the device a-la NT3.51 and before.
  639. *
  640. * If a valid boot sector is found but it is not the primary boot sector, we
  641. * repair the primary boot sector silently (unless the device is read-only or
  642. * the primary boot sector is not accessible).
  643. *
  644. * NOTE: To call this function, @sb must have the fields s_dev, the ntfs super
  645. * block (u.ntfs_sb), nr_blocks and the device flags (s_flags) initialized
  646. * to their respective values.
  647. *
  648. * Return the unlocked buffer head containing the boot sector or NULL on error.
  649. */
  650. static struct buffer_head *read_ntfs_boot_sector(struct super_block *sb,
  651. const int silent)
  652. {
  653. const char *read_err_str = "Unable to read %s boot sector.";
  654. struct buffer_head *bh_primary, *bh_backup;
  655. sector_t nr_blocks = NTFS_SB(sb)->nr_blocks;
  656. /* Try to read primary boot sector. */
  657. if ((bh_primary = sb_bread(sb, 0))) {
  658. if (is_boot_sector_ntfs(sb, (NTFS_BOOT_SECTOR*)
  659. bh_primary->b_data, silent))
  660. return bh_primary;
  661. if (!silent)
  662. ntfs_error(sb, "Primary boot sector is invalid.");
  663. } else if (!silent)
  664. ntfs_error(sb, read_err_str, "primary");
  665. if (!(NTFS_SB(sb)->on_errors & ON_ERRORS_RECOVER)) {
  666. if (bh_primary)
  667. brelse(bh_primary);
  668. if (!silent)
  669. ntfs_error(sb, "Mount option errors=recover not used. "
  670. "Aborting without trying to recover.");
  671. return NULL;
  672. }
  673. /* Try to read NT4+ backup boot sector. */
  674. if ((bh_backup = sb_bread(sb, nr_blocks - 1))) {
  675. if (is_boot_sector_ntfs(sb, (NTFS_BOOT_SECTOR*)
  676. bh_backup->b_data, silent))
  677. goto hotfix_primary_boot_sector;
  678. brelse(bh_backup);
  679. } else if (!silent)
  680. ntfs_error(sb, read_err_str, "backup");
  681. /* Try to read NT3.51- backup boot sector. */
  682. if ((bh_backup = sb_bread(sb, nr_blocks >> 1))) {
  683. if (is_boot_sector_ntfs(sb, (NTFS_BOOT_SECTOR*)
  684. bh_backup->b_data, silent))
  685. goto hotfix_primary_boot_sector;
  686. if (!silent)
  687. ntfs_error(sb, "Could not find a valid backup boot "
  688. "sector.");
  689. brelse(bh_backup);
  690. } else if (!silent)
  691. ntfs_error(sb, read_err_str, "backup");
  692. /* We failed. Cleanup and return. */
  693. if (bh_primary)
  694. brelse(bh_primary);
  695. return NULL;
  696. hotfix_primary_boot_sector:
  697. if (bh_primary) {
  698. /*
  699. * If we managed to read sector zero and the volume is not
  700. * read-only, copy the found, valid backup boot sector to the
  701. * primary boot sector. Note we only copy the actual boot
  702. * sector structure, not the actual whole device sector as that
  703. * may be bigger and would potentially damage the $Boot system
  704. * file (FIXME: Would be nice to know if the backup boot sector
  705. * on a large sector device contains the whole boot loader or
  706. * just the first 512 bytes).
  707. */
  708. if (!(sb->s_flags & MS_RDONLY)) {
  709. ntfs_warning(sb, "Hot-fix: Recovering invalid primary "
  710. "boot sector from backup copy.");
  711. memcpy(bh_primary->b_data, bh_backup->b_data,
  712. NTFS_BLOCK_SIZE);
  713. mark_buffer_dirty(bh_primary);
  714. sync_dirty_buffer(bh_primary);
  715. if (buffer_uptodate(bh_primary)) {
  716. brelse(bh_backup);
  717. return bh_primary;
  718. }
  719. ntfs_error(sb, "Hot-fix: Device write error while "
  720. "recovering primary boot sector.");
  721. } else {
  722. ntfs_warning(sb, "Hot-fix: Recovery of primary boot "
  723. "sector failed: Read-only mount.");
  724. }
  725. brelse(bh_primary);
  726. }
  727. ntfs_warning(sb, "Using backup boot sector.");
  728. return bh_backup;
  729. }
  730. /**
  731. * parse_ntfs_boot_sector - parse the boot sector and store the data in @vol
  732. * @vol: volume structure to initialise with data from boot sector
  733. * @b: boot sector to parse
  734. *
  735. * Parse the ntfs boot sector @b and store all imporant information therein in
  736. * the ntfs super block @vol. Return 'true' on success and 'false' on error.
  737. */
  738. static bool parse_ntfs_boot_sector(ntfs_volume *vol, const NTFS_BOOT_SECTOR *b)
  739. {
  740. unsigned int sectors_per_cluster_bits, nr_hidden_sects;
  741. int clusters_per_mft_record, clusters_per_index_record;
  742. s64 ll;
  743. vol->sector_size = le16_to_cpu(b->bpb.bytes_per_sector);
  744. vol->sector_size_bits = ffs(vol->sector_size) - 1;
  745. ntfs_debug("vol->sector_size = %i (0x%x)", vol->sector_size,
  746. vol->sector_size);
  747. ntfs_debug("vol->sector_size_bits = %i (0x%x)", vol->sector_size_bits,
  748. vol->sector_size_bits);
  749. if (vol->sector_size < vol->sb->s_blocksize) {
  750. ntfs_error(vol->sb, "Sector size (%i) is smaller than the "
  751. "device block size (%lu). This is not "
  752. "supported. Sorry.", vol->sector_size,
  753. vol->sb->s_blocksize);
  754. return false;
  755. }
  756. ntfs_debug("sectors_per_cluster = 0x%x", b->bpb.sectors_per_cluster);
  757. sectors_per_cluster_bits = ffs(b->bpb.sectors_per_cluster) - 1;
  758. ntfs_debug("sectors_per_cluster_bits = 0x%x",
  759. sectors_per_cluster_bits);
  760. nr_hidden_sects = le32_to_cpu(b->bpb.hidden_sectors);
  761. ntfs_debug("number of hidden sectors = 0x%x", nr_hidden_sects);
  762. vol->cluster_size = vol->sector_size << sectors_per_cluster_bits;
  763. vol->cluster_size_mask = vol->cluster_size - 1;
  764. vol->cluster_size_bits = ffs(vol->cluster_size) - 1;
  765. ntfs_debug("vol->cluster_size = %i (0x%x)", vol->cluster_size,
  766. vol->cluster_size);
  767. ntfs_debug("vol->cluster_size_mask = 0x%x", vol->cluster_size_mask);
  768. ntfs_debug("vol->cluster_size_bits = %i", vol->cluster_size_bits);
  769. if (vol->cluster_size < vol->sector_size) {
  770. ntfs_error(vol->sb, "Cluster size (%i) is smaller than the "
  771. "sector size (%i). This is not supported. "
  772. "Sorry.", vol->cluster_size, vol->sector_size);
  773. return false;
  774. }
  775. clusters_per_mft_record = b->clusters_per_mft_record;
  776. ntfs_debug("clusters_per_mft_record = %i (0x%x)",
  777. clusters_per_mft_record, clusters_per_mft_record);
  778. if (clusters_per_mft_record > 0)
  779. vol->mft_record_size = vol->cluster_size <<
  780. (ffs(clusters_per_mft_record) - 1);
  781. else
  782. /*
  783. * When mft_record_size < cluster_size, clusters_per_mft_record
  784. * = -log2(mft_record_size) bytes. mft_record_size normaly is
  785. * 1024 bytes, which is encoded as 0xF6 (-10 in decimal).
  786. */
  787. vol->mft_record_size = 1 << -clusters_per_mft_record;
  788. vol->mft_record_size_mask = vol->mft_record_size - 1;
  789. vol->mft_record_size_bits = ffs(vol->mft_record_size) - 1;
  790. ntfs_debug("vol->mft_record_size = %i (0x%x)", vol->mft_record_size,
  791. vol->mft_record_size);
  792. ntfs_debug("vol->mft_record_size_mask = 0x%x",
  793. vol->mft_record_size_mask);
  794. ntfs_debug("vol->mft_record_size_bits = %i (0x%x)",
  795. vol->mft_record_size_bits, vol->mft_record_size_bits);
  796. /*
  797. * We cannot support mft record sizes above the PAGE_CACHE_SIZE since
  798. * we store $MFT/$DATA, the table of mft records in the page cache.
  799. */
  800. if (vol->mft_record_size > PAGE_CACHE_SIZE) {
  801. ntfs_error(vol->sb, "Mft record size (%i) exceeds the "
  802. "PAGE_CACHE_SIZE on your system (%lu). "
  803. "This is not supported. Sorry.",
  804. vol->mft_record_size, PAGE_CACHE_SIZE);
  805. return false;
  806. }
  807. /* We cannot support mft record sizes below the sector size. */
  808. if (vol->mft_record_size < vol->sector_size) {
  809. ntfs_error(vol->sb, "Mft record size (%i) is smaller than the "
  810. "sector size (%i). This is not supported. "
  811. "Sorry.", vol->mft_record_size,
  812. vol->sector_size);
  813. return false;
  814. }
  815. clusters_per_index_record = b->clusters_per_index_record;
  816. ntfs_debug("clusters_per_index_record = %i (0x%x)",
  817. clusters_per_index_record, clusters_per_index_record);
  818. if (clusters_per_index_record > 0)
  819. vol->index_record_size = vol->cluster_size <<
  820. (ffs(clusters_per_index_record) - 1);
  821. else
  822. /*
  823. * When index_record_size < cluster_size,
  824. * clusters_per_index_record = -log2(index_record_size) bytes.
  825. * index_record_size normaly equals 4096 bytes, which is
  826. * encoded as 0xF4 (-12 in decimal).
  827. */
  828. vol->index_record_size = 1 << -clusters_per_index_record;
  829. vol->index_record_size_mask = vol->index_record_size - 1;
  830. vol->index_record_size_bits = ffs(vol->index_record_size) - 1;
  831. ntfs_debug("vol->index_record_size = %i (0x%x)",
  832. vol->index_record_size, vol->index_record_size);
  833. ntfs_debug("vol->index_record_size_mask = 0x%x",
  834. vol->index_record_size_mask);
  835. ntfs_debug("vol->index_record_size_bits = %i (0x%x)",
  836. vol->index_record_size_bits,
  837. vol->index_record_size_bits);
  838. /* We cannot support index record sizes below the sector size. */
  839. if (vol->index_record_size < vol->sector_size) {
  840. ntfs_error(vol->sb, "Index record size (%i) is smaller than "
  841. "the sector size (%i). This is not "
  842. "supported. Sorry.", vol->index_record_size,
  843. vol->sector_size);
  844. return false;
  845. }
  846. /*
  847. * Get the size of the volume in clusters and check for 64-bit-ness.
  848. * Windows currently only uses 32 bits to save the clusters so we do
  849. * the same as it is much faster on 32-bit CPUs.
  850. */
  851. ll = sle64_to_cpu(b->number_of_sectors) >> sectors_per_cluster_bits;
  852. if ((u64)ll >= 1ULL << 32) {
  853. ntfs_error(vol->sb, "Cannot handle 64-bit clusters. Sorry.");
  854. return false;
  855. }
  856. vol->nr_clusters = ll;
  857. ntfs_debug("vol->nr_clusters = 0x%llx", (long long)vol->nr_clusters);
  858. /*
  859. * On an architecture where unsigned long is 32-bits, we restrict the
  860. * volume size to 2TiB (2^41). On a 64-bit architecture, the compiler
  861. * will hopefully optimize the whole check away.
  862. */
  863. if (sizeof(unsigned long) < 8) {
  864. if ((ll << vol->cluster_size_bits) >= (1ULL << 41)) {
  865. ntfs_error(vol->sb, "Volume size (%lluTiB) is too "
  866. "large for this architecture. "
  867. "Maximum supported is 2TiB. Sorry.",
  868. (unsigned long long)ll >> (40 -
  869. vol->cluster_size_bits));
  870. return false;
  871. }
  872. }
  873. ll = sle64_to_cpu(b->mft_lcn);
  874. if (ll >= vol->nr_clusters) {
  875. ntfs_error(vol->sb, "MFT LCN (%lli, 0x%llx) is beyond end of "
  876. "volume. Weird.", (unsigned long long)ll,
  877. (unsigned long long)ll);
  878. return false;
  879. }
  880. vol->mft_lcn = ll;
  881. ntfs_debug("vol->mft_lcn = 0x%llx", (long long)vol->mft_lcn);
  882. ll = sle64_to_cpu(b->mftmirr_lcn);
  883. if (ll >= vol->nr_clusters) {
  884. ntfs_error(vol->sb, "MFTMirr LCN (%lli, 0x%llx) is beyond end "
  885. "of volume. Weird.", (unsigned long long)ll,
  886. (unsigned long long)ll);
  887. return false;
  888. }
  889. vol->mftmirr_lcn = ll;
  890. ntfs_debug("vol->mftmirr_lcn = 0x%llx", (long long)vol->mftmirr_lcn);
  891. #ifdef NTFS_RW
  892. /*
  893. * Work out the size of the mft mirror in number of mft records. If the
  894. * cluster size is less than or equal to the size taken by four mft
  895. * records, the mft mirror stores the first four mft records. If the
  896. * cluster size is bigger than the size taken by four mft records, the
  897. * mft mirror contains as many mft records as will fit into one
  898. * cluster.
  899. */
  900. if (vol->cluster_size <= (4 << vol->mft_record_size_bits))
  901. vol->mftmirr_size = 4;
  902. else
  903. vol->mftmirr_size = vol->cluster_size >>
  904. vol->mft_record_size_bits;
  905. ntfs_debug("vol->mftmirr_size = %i", vol->mftmirr_size);
  906. #endif /* NTFS_RW */
  907. vol->serial_no = le64_to_cpu(b->volume_serial_number);
  908. ntfs_debug("vol->serial_no = 0x%llx",
  909. (unsigned long long)vol->serial_no);
  910. return true;
  911. }
  912. /**
  913. * ntfs_setup_allocators - initialize the cluster and mft allocators
  914. * @vol: volume structure for which to setup the allocators
  915. *
  916. * Setup the cluster (lcn) and mft allocators to the starting values.
  917. */
  918. static void ntfs_setup_allocators(ntfs_volume *vol)
  919. {
  920. #ifdef NTFS_RW
  921. LCN mft_zone_size, mft_lcn;
  922. #endif /* NTFS_RW */
  923. ntfs_debug("vol->mft_zone_multiplier = 0x%x",
  924. vol->mft_zone_multiplier);
  925. #ifdef NTFS_RW
  926. /* Determine the size of the MFT zone. */
  927. mft_zone_size = vol->nr_clusters;
  928. switch (vol->mft_zone_multiplier) { /* % of volume size in clusters */
  929. case 4:
  930. mft_zone_size >>= 1; /* 50% */
  931. break;
  932. case 3:
  933. mft_zone_size = (mft_zone_size +
  934. (mft_zone_size >> 1)) >> 2; /* 37.5% */
  935. break;
  936. case 2:
  937. mft_zone_size >>= 2; /* 25% */
  938. break;
  939. /* case 1: */
  940. default:
  941. mft_zone_size >>= 3; /* 12.5% */
  942. break;
  943. }
  944. /* Setup the mft zone. */
  945. vol->mft_zone_start = vol->mft_zone_pos = vol->mft_lcn;
  946. ntfs_debug("vol->mft_zone_pos = 0x%llx",
  947. (unsigned long long)vol->mft_zone_pos);
  948. /*
  949. * Calculate the mft_lcn for an unmodified NTFS volume (see mkntfs
  950. * source) and if the actual mft_lcn is in the expected place or even
  951. * further to the front of the volume, extend the mft_zone to cover the
  952. * beginning of the volume as well. This is in order to protect the
  953. * area reserved for the mft bitmap as well within the mft_zone itself.
  954. * On non-standard volumes we do not protect it as the overhead would
  955. * be higher than the speed increase we would get by doing it.
  956. */
  957. mft_lcn = (8192 + 2 * vol->cluster_size - 1) / vol->cluster_size;
  958. if (mft_lcn * vol->cluster_size < 16 * 1024)
  959. mft_lcn = (16 * 1024 + vol->cluster_size - 1) /
  960. vol->cluster_size;
  961. if (vol->mft_zone_start <= mft_lcn)
  962. vol->mft_zone_start = 0;
  963. ntfs_debug("vol->mft_zone_start = 0x%llx",
  964. (unsigned long long)vol->mft_zone_start);
  965. /*
  966. * Need to cap the mft zone on non-standard volumes so that it does
  967. * not point outside the boundaries of the volume. We do this by
  968. * halving the zone size until we are inside the volume.
  969. */
  970. vol->mft_zone_end = vol->mft_lcn + mft_zone_size;
  971. while (vol->mft_zone_end >= vol->nr_clusters) {
  972. mft_zone_size >>= 1;
  973. vol->mft_zone_end = vol->mft_lcn + mft_zone_size;
  974. }
  975. ntfs_debug("vol->mft_zone_end = 0x%llx",
  976. (unsigned long long)vol->mft_zone_end);
  977. /*
  978. * Set the current position within each data zone to the start of the
  979. * respective zone.
  980. */
  981. vol->data1_zone_pos = vol->mft_zone_end;
  982. ntfs_debug("vol->data1_zone_pos = 0x%llx",
  983. (unsigned long long)vol->data1_zone_pos);
  984. vol->data2_zone_pos = 0;
  985. ntfs_debug("vol->data2_zone_pos = 0x%llx",
  986. (unsigned long long)vol->data2_zone_pos);
  987. /* Set the mft data allocation position to mft record 24. */
  988. vol->mft_data_pos = 24;
  989. ntfs_debug("vol->mft_data_pos = 0x%llx",
  990. (unsigned long long)vol->mft_data_pos);
  991. #endif /* NTFS_RW */
  992. }
  993. #ifdef NTFS_RW
  994. /**
  995. * load_and_init_mft_mirror - load and setup the mft mirror inode for a volume
  996. * @vol: ntfs super block describing device whose mft mirror to load
  997. *
  998. * Return 'true' on success or 'false' on error.
  999. */
  1000. static bool load_and_init_mft_mirror(ntfs_volume *vol)
  1001. {
  1002. struct inode *tmp_ino;
  1003. ntfs_inode *tmp_ni;
  1004. ntfs_debug("Entering.");
  1005. /* Get mft mirror inode. */
  1006. tmp_ino = ntfs_iget(vol->sb, FILE_MFTMirr);
  1007. if (IS_ERR(tmp_ino) || is_bad_inode(tmp_ino)) {
  1008. if (!IS_ERR(tmp_ino))
  1009. iput(tmp_ino);
  1010. /* Caller will display error message. */
  1011. return false;
  1012. }
  1013. /*
  1014. * Re-initialize some specifics about $MFTMirr's inode as
  1015. * ntfs_read_inode() will have set up the default ones.
  1016. */
  1017. /* Set uid and gid to root. */
  1018. tmp_ino->i_uid = GLOBAL_ROOT_UID;
  1019. tmp_ino->i_gid = GLOBAL_ROOT_GID;
  1020. /* Regular file. No access for anyone. */
  1021. tmp_ino->i_mode = S_IFREG;
  1022. /* No VFS initiated operations allowed for $MFTMirr. */
  1023. tmp_ino->i_op = &ntfs_empty_inode_ops;
  1024. tmp_ino->i_fop = &ntfs_empty_file_ops;
  1025. /* Put in our special address space operations. */
  1026. tmp_ino->i_mapping->a_ops = &ntfs_mst_aops;
  1027. tmp_ni = NTFS_I(tmp_ino);
  1028. /* The $MFTMirr, like the $MFT is multi sector transfer protected. */
  1029. NInoSetMstProtected(tmp_ni);
  1030. NInoSetSparseDisabled(tmp_ni);
  1031. /*
  1032. * Set up our little cheat allowing us to reuse the async read io
  1033. * completion handler for directories.
  1034. */
  1035. tmp_ni->itype.index.block_size = vol->mft_record_size;
  1036. tmp_ni->itype.index.block_size_bits = vol->mft_record_size_bits;
  1037. vol->mftmirr_ino = tmp_ino;
  1038. ntfs_debug("Done.");
  1039. return true;
  1040. }
  1041. /**
  1042. * check_mft_mirror - compare contents of the mft mirror with the mft
  1043. * @vol: ntfs super block describing device whose mft mirror to check
  1044. *
  1045. * Return 'true' on success or 'false' on error.
  1046. *
  1047. * Note, this function also results in the mft mirror runlist being completely
  1048. * mapped into memory. The mft mirror write code requires this and will BUG()
  1049. * should it find an unmapped runlist element.
  1050. */
  1051. static bool check_mft_mirror(ntfs_volume *vol)
  1052. {
  1053. struct super_block *sb = vol->sb;
  1054. ntfs_inode *mirr_ni;
  1055. struct page *mft_page, *mirr_page;
  1056. u8 *kmft, *kmirr;
  1057. runlist_element *rl, rl2[2];
  1058. pgoff_t index;
  1059. int mrecs_per_page, i;
  1060. ntfs_debug("Entering.");
  1061. /* Compare contents of $MFT and $MFTMirr. */
  1062. mrecs_per_page = PAGE_CACHE_SIZE / vol->mft_record_size;
  1063. BUG_ON(!mrecs_per_page);
  1064. BUG_ON(!vol->mftmirr_size);
  1065. mft_page = mirr_page = NULL;
  1066. kmft = kmirr = NULL;
  1067. index = i = 0;
  1068. do {
  1069. u32 bytes;
  1070. /* Switch pages if necessary. */
  1071. if (!(i % mrecs_per_page)) {
  1072. if (index) {
  1073. ntfs_unmap_page(mft_page);
  1074. ntfs_unmap_page(mirr_page);
  1075. }
  1076. /* Get the $MFT page. */
  1077. mft_page = ntfs_map_page(vol->mft_ino->i_mapping,
  1078. index);
  1079. if (IS_ERR(mft_page)) {
  1080. ntfs_error(sb, "Failed to read $MFT.");
  1081. return false;
  1082. }
  1083. kmft = page_address(mft_page);
  1084. /* Get the $MFTMirr page. */
  1085. mirr_page = ntfs_map_page(vol->mftmirr_ino->i_mapping,
  1086. index);
  1087. if (IS_ERR(mirr_page)) {
  1088. ntfs_error(sb, "Failed to read $MFTMirr.");
  1089. goto mft_unmap_out;
  1090. }
  1091. kmirr = page_address(mirr_page);
  1092. ++index;
  1093. }
  1094. /* Do not check the record if it is not in use. */
  1095. if (((MFT_RECORD*)kmft)->flags & MFT_RECORD_IN_USE) {
  1096. /* Make sure the record is ok. */
  1097. if (ntfs_is_baad_recordp((le32*)kmft)) {
  1098. ntfs_error(sb, "Incomplete multi sector "
  1099. "transfer detected in mft "
  1100. "record %i.", i);
  1101. mm_unmap_out:
  1102. ntfs_unmap_page(mirr_page);
  1103. mft_unmap_out:
  1104. ntfs_unmap_page(mft_page);
  1105. return false;
  1106. }
  1107. }
  1108. /* Do not check the mirror record if it is not in use. */
  1109. if (((MFT_RECORD*)kmirr)->flags & MFT_RECORD_IN_USE) {
  1110. if (ntfs_is_baad_recordp((le32*)kmirr)) {
  1111. ntfs_error(sb, "Incomplete multi sector "
  1112. "transfer detected in mft "
  1113. "mirror record %i.", i);
  1114. goto mm_unmap_out;
  1115. }
  1116. }
  1117. /* Get the amount of data in the current record. */
  1118. bytes = le32_to_cpu(((MFT_RECORD*)kmft)->bytes_in_use);
  1119. if (bytes < sizeof(MFT_RECORD_OLD) ||
  1120. bytes > vol->mft_record_size ||
  1121. ntfs_is_baad_recordp((le32*)kmft)) {
  1122. bytes = le32_to_cpu(((MFT_RECORD*)kmirr)->bytes_in_use);
  1123. if (bytes < sizeof(MFT_RECORD_OLD) ||
  1124. bytes > vol->mft_record_size ||
  1125. ntfs_is_baad_recordp((le32*)kmirr))
  1126. bytes = vol->mft_record_size;
  1127. }
  1128. /* Compare the two records. */
  1129. if (memcmp(kmft, kmirr, bytes)) {
  1130. ntfs_error(sb, "$MFT and $MFTMirr (record %i) do not "
  1131. "match. Run ntfsfix or chkdsk.", i);
  1132. goto mm_unmap_out;
  1133. }
  1134. kmft += vol->mft_record_size;
  1135. kmirr += vol->mft_record_size;
  1136. } while (++i < vol->mftmirr_size);
  1137. /* Release the last pages. */
  1138. ntfs_unmap_page(mft_page);
  1139. ntfs_unmap_page(mirr_page);
  1140. /* Construct the mft mirror runlist by hand. */
  1141. rl2[0].vcn = 0;
  1142. rl2[0].lcn = vol->mftmirr_lcn;
  1143. rl2[0].length = (vol->mftmirr_size * vol->mft_record_size +
  1144. vol->cluster_size - 1) / vol->cluster_size;
  1145. rl2[1].vcn = rl2[0].length;
  1146. rl2[1].lcn = LCN_ENOENT;
  1147. rl2[1].length = 0;
  1148. /*
  1149. * Because we have just read all of the mft mirror, we know we have
  1150. * mapped the full runlist for it.
  1151. */
  1152. mirr_ni = NTFS_I(vol->mftmirr_ino);
  1153. down_read(&mirr_ni->runlist.lock);
  1154. rl = mirr_ni->runlist.rl;
  1155. /* Compare the two runlists. They must be identical. */
  1156. i = 0;
  1157. do {
  1158. if (rl2[i].vcn != rl[i].vcn || rl2[i].lcn != rl[i].lcn ||
  1159. rl2[i].length != rl[i].length) {
  1160. ntfs_error(sb, "$MFTMirr location mismatch. "
  1161. "Run chkdsk.");
  1162. up_read(&mirr_ni->runlist.lock);
  1163. return false;
  1164. }
  1165. } while (rl2[i++].length);
  1166. up_read(&mirr_ni->runlist.lock);
  1167. ntfs_debug("Done.");
  1168. return true;
  1169. }
  1170. /**
  1171. * load_and_check_logfile - load and check the logfile inode for a volume
  1172. * @vol: ntfs super block describing device whose logfile to load
  1173. *
  1174. * Return 'true' on success or 'false' on error.
  1175. */
  1176. static bool load_and_check_logfile(ntfs_volume *vol,
  1177. RESTART_PAGE_HEADER **rp)
  1178. {
  1179. struct inode *tmp_ino;
  1180. ntfs_debug("Entering.");
  1181. tmp_ino = ntfs_iget(vol->sb, FILE_LogFile);
  1182. if (IS_ERR(tmp_ino) || is_bad_inode(tmp_ino)) {
  1183. if (!IS_ERR(tmp_ino))
  1184. iput(tmp_ino);
  1185. /* Caller will display error message. */
  1186. return false;
  1187. }
  1188. if (!ntfs_check_logfile(tmp_ino, rp)) {
  1189. iput(tmp_ino);
  1190. /* ntfs_check_logfile() will have displayed error output. */
  1191. return false;
  1192. }
  1193. NInoSetSparseDisabled(NTFS_I(tmp_ino));
  1194. vol->logfile_ino = tmp_ino;
  1195. ntfs_debug("Done.");
  1196. return true;
  1197. }
  1198. #define NTFS_HIBERFIL_HEADER_SIZE 4096
  1199. /**
  1200. * check_windows_hibernation_status - check if Windows is suspended on a volume
  1201. * @vol: ntfs super block of device to check
  1202. *
  1203. * Check if Windows is hibernated on the ntfs volume @vol. This is done by
  1204. * looking for the file hiberfil.sys in the root directory of the volume. If
  1205. * the file is not present Windows is definitely not suspended.
  1206. *
  1207. * If hiberfil.sys exists and is less than 4kiB in size it means Windows is
  1208. * definitely suspended (this volume is not the system volume). Caveat: on a
  1209. * system with many volumes it is possible that the < 4kiB check is bogus but
  1210. * for now this should do fine.
  1211. *
  1212. * If hiberfil.sys exists and is larger than 4kiB in size, we need to read the
  1213. * hiberfil header (which is the first 4kiB). If this begins with "hibr",
  1214. * Windows is definitely suspended. If it is completely full of zeroes,
  1215. * Windows is definitely not hibernated. Any other case is treated as if
  1216. * Windows is suspended. This caters for the above mentioned caveat of a
  1217. * system with many volumes where no "hibr" magic would be present and there is
  1218. * no zero header.
  1219. *
  1220. * Return 0 if Windows is not hibernated on the volume, >0 if Windows is
  1221. * hibernated on the volume, and -errno on error.
  1222. */
  1223. static int check_windows_hibernation_status(ntfs_volume *vol)
  1224. {
  1225. MFT_REF mref;
  1226. struct inode *vi;
  1227. struct page *page;
  1228. u32 *kaddr, *kend;
  1229. ntfs_name *name = NULL;
  1230. int ret = 1;
  1231. static const ntfschar hiberfil[13] = { cpu_to_le16('h'),
  1232. cpu_to_le16('i'), cpu_to_le16('b'),
  1233. cpu_to_le16('e'), cpu_to_le16('r'),
  1234. cpu_to_le16('f'), cpu_to_le16('i'),
  1235. cpu_to_le16('l'), cpu_to_le16('.'),
  1236. cpu_to_le16('s'), cpu_to_le16('y'),
  1237. cpu_to_le16('s'), 0 };
  1238. ntfs_debug("Entering.");
  1239. /*
  1240. * Find the inode number for the hibernation file by looking up the
  1241. * filename hiberfil.sys in the root directory.
  1242. */
  1243. mutex_lock(&vol->root_ino->i_mutex);
  1244. mref = ntfs_lookup_inode_by_name(NTFS_I(vol->root_ino), hiberfil, 12,
  1245. &name);
  1246. mutex_unlock(&vol->root_ino->i_mutex);
  1247. if (IS_ERR_MREF(mref)) {
  1248. ret = MREF_ERR(mref);
  1249. /* If the file does not exist, Windows is not hibernated. */
  1250. if (ret == -ENOENT) {
  1251. ntfs_debug("hiberfil.sys not present. Windows is not "
  1252. "hibernated on the volume.");
  1253. return 0;
  1254. }
  1255. /* A real error occurred. */
  1256. ntfs_error(vol->sb, "Failed to find inode number for "
  1257. "hiberfil.sys.");
  1258. return ret;
  1259. }
  1260. /* We do not care for the type of match that was found. */
  1261. kfree(name);
  1262. /* Get the inode. */
  1263. vi = ntfs_iget(vol->sb, MREF(mref));
  1264. if (IS_ERR(vi) || is_bad_inode(vi)) {
  1265. if (!IS_ERR(vi))
  1266. iput(vi);
  1267. ntfs_error(vol->sb, "Failed to load hiberfil.sys.");
  1268. return IS_ERR(vi) ? PTR_ERR(vi) : -EIO;
  1269. }
  1270. if (unlikely(i_size_read(vi) < NTFS_HIBERFIL_HEADER_SIZE)) {
  1271. ntfs_debug("hiberfil.sys is smaller than 4kiB (0x%llx). "
  1272. "Windows is hibernated on the volume. This "
  1273. "is not the system volume.", i_size_read(vi));
  1274. goto iput_out;
  1275. }
  1276. page = ntfs_map_page(vi->i_mapping, 0);
  1277. if (IS_ERR(page)) {
  1278. ntfs_error(vol->sb, "Failed to read from hiberfil.sys.");
  1279. ret = PTR_ERR(page);
  1280. goto iput_out;
  1281. }
  1282. kaddr = (u32*)page_address(page);
  1283. if (*(le32*)kaddr == cpu_to_le32(0x72626968)/*'hibr'*/) {
  1284. ntfs_debug("Magic \"hibr\" found in hiberfil.sys. Windows is "
  1285. "hibernated on the volume. This is the "
  1286. "system volume.");
  1287. goto unm_iput_out;
  1288. }
  1289. kend = kaddr + NTFS_HIBERFIL_HEADER_SIZE/sizeof(*kaddr);
  1290. do {
  1291. if (unlikely(*kaddr)) {
  1292. ntfs_debug("hiberfil.sys is larger than 4kiB "
  1293. "(0x%llx), does not contain the "
  1294. "\"hibr\" magic, and does not have a "
  1295. "zero header. Windows is hibernated "
  1296. "on the volume. This is not the "
  1297. "system volume.", i_size_read(vi));
  1298. goto unm_iput_out;
  1299. }
  1300. } while (++kaddr < kend);
  1301. ntfs_debug("hiberfil.sys contains a zero header. Windows is not "
  1302. "hibernated on the volume. This is the system "
  1303. "volume.");
  1304. ret = 0;
  1305. unm_iput_out:
  1306. ntfs_unmap_page(page);
  1307. iput_out:
  1308. iput(vi);
  1309. return ret;
  1310. }
  1311. /**
  1312. * load_and_init_quota - load and setup the quota file for a volume if present
  1313. * @vol: ntfs super block describing device whose quota file to load
  1314. *
  1315. * Return 'true' on success or 'false' on error. If $Quota is not present, we
  1316. * leave vol->quota_ino as NULL and return success.
  1317. */
  1318. static bool load_and_init_quota(ntfs_volume *vol)
  1319. {
  1320. MFT_REF mref;
  1321. struct inode *tmp_ino;
  1322. ntfs_name *name = NULL;
  1323. static const ntfschar Quota[7] = { cpu_to_le16('$'),
  1324. cpu_to_le16('Q'), cpu_to_le16('u'),
  1325. cpu_to_le16('o'), cpu_to_le16('t'),
  1326. cpu_to_le16('a'), 0 };
  1327. static ntfschar Q[3] = { cpu_to_le16('$'),
  1328. cpu_to_le16('Q'), 0 };
  1329. ntfs_debug("Entering.");
  1330. /*
  1331. * Find the inode number for the quota file by looking up the filename
  1332. * $Quota in the extended system files directory $Extend.
  1333. */
  1334. mutex_lock(&vol->extend_ino->i_mutex);
  1335. mref = ntfs_lookup_inode_by_name(NTFS_I(vol->extend_ino), Quota, 6,
  1336. &name);
  1337. mutex_unlock(&vol->extend_ino->i_mutex);
  1338. if (IS_ERR_MREF(mref)) {
  1339. /*
  1340. * If the file does not exist, quotas are disabled and have
  1341. * never been enabled on this volume, just return success.
  1342. */
  1343. if (MREF_ERR(mref) == -ENOENT) {
  1344. ntfs_debug("$Quota not present. Volume does not have "
  1345. "quotas enabled.");
  1346. /*
  1347. * No need to try to set quotas out of date if they are
  1348. * not enabled.
  1349. */
  1350. NVolSetQuotaOutOfDate(vol);
  1351. return true;
  1352. }
  1353. /* A real error occurred. */
  1354. ntfs_error(vol->sb, "Failed to find inode number for $Quota.");
  1355. return false;
  1356. }
  1357. /* We do not care for the type of match that was found. */
  1358. kfree(name);
  1359. /* Get the inode. */
  1360. tmp_ino = ntfs_iget(vol->sb, MREF(mref));
  1361. if (IS_ERR(tmp_ino) || is_bad_inode(tmp_ino)) {
  1362. if (!IS_ERR(tmp_ino))
  1363. iput(tmp_ino);
  1364. ntfs_error(vol->sb, "Failed to load $Quota.");
  1365. return false;
  1366. }
  1367. vol->quota_ino = tmp_ino;
  1368. /* Get the $Q index allocation attribute. */
  1369. tmp_ino = ntfs_index_iget(vol->quota_ino, Q, 2);
  1370. if (IS_ERR(tmp_ino)) {
  1371. ntfs_error(vol->sb, "Failed to load $Quota/$Q index.");
  1372. return false;
  1373. }
  1374. vol->quota_q_ino = tmp_ino;
  1375. ntfs_debug("Done.");
  1376. return true;
  1377. }
  1378. /**
  1379. * load_and_init_usnjrnl - load and setup the transaction log if present
  1380. * @vol: ntfs super block describing device whose usnjrnl file to load
  1381. *
  1382. * Return 'true' on success or 'false' on error.
  1383. *
  1384. * If $UsnJrnl is not present or in the process of being disabled, we set
  1385. * NVolUsnJrnlStamped() and return success.
  1386. *
  1387. * If the $UsnJrnl $DATA/$J attribute has a size equal to the lowest valid usn,
  1388. * i.e. transaction logging has only just been enabled or the journal has been
  1389. * stamped and nothing has been logged since, we also set NVolUsnJrnlStamped()
  1390. * and return success.
  1391. */
  1392. static bool load_and_init_usnjrnl(ntfs_volume *vol)
  1393. {
  1394. MFT_REF mref;
  1395. struct inode *tmp_ino;
  1396. ntfs_inode *tmp_ni;
  1397. struct page *page;
  1398. ntfs_name *name = NULL;
  1399. USN_HEADER *uh;
  1400. static const ntfschar UsnJrnl[9] = { cpu_to_le16('$'),
  1401. cpu_to_le16('U'), cpu_to_le16('s'),
  1402. cpu_to_le16('n'), cpu_to_le16('J'),
  1403. cpu_to_le16('r'), cpu_to_le16('n'),
  1404. cpu_to_le16('l'), 0 };
  1405. static ntfschar Max[5] = { cpu_to_le16('$'),
  1406. cpu_to_le16('M'), cpu_to_le16('a'),
  1407. cpu_to_le16('x'), 0 };
  1408. static ntfschar J[3] = { cpu_to_le16('$'),
  1409. cpu_to_le16('J'), 0 };
  1410. ntfs_debug("Entering.");
  1411. /*
  1412. * Find the inode number for the transaction log file by looking up the
  1413. * filename $UsnJrnl in the extended system files directory $Extend.
  1414. */
  1415. mutex_lock(&vol->extend_ino->i_mutex);
  1416. mref = ntfs_lookup_inode_by_name(NTFS_I(vol->extend_ino), UsnJrnl, 8,
  1417. &name);
  1418. mutex_unlock(&vol->extend_ino->i_mutex);
  1419. if (IS_ERR_MREF(mref)) {
  1420. /*
  1421. * If the file does not exist, transaction logging is disabled,
  1422. * just return success.
  1423. */
  1424. if (MREF_ERR(mref) == -ENOENT) {
  1425. ntfs_debug("$UsnJrnl not present. Volume does not "
  1426. "have transaction logging enabled.");
  1427. not_enabled:
  1428. /*
  1429. * No need to try to stamp the transaction log if
  1430. * transaction logging is not enabled.
  1431. */
  1432. NVolSetUsnJrnlStamped(vol);
  1433. return true;
  1434. }
  1435. /* A real error occurred. */
  1436. ntfs_error(vol->sb, "Failed to find inode number for "
  1437. "$UsnJrnl.");
  1438. return false;
  1439. }
  1440. /* We do not care for the type of match that was found. */
  1441. kfree(name);
  1442. /* Get the inode. */
  1443. tmp_ino = ntfs_iget(vol->sb, MREF(mref));
  1444. if (unlikely(IS_ERR(tmp_ino) || is_bad_inode(tmp_ino))) {
  1445. if (!IS_ERR(tmp_ino))
  1446. iput(tmp_ino);
  1447. ntfs_error(vol->sb, "Failed to load $UsnJrnl.");
  1448. return false;
  1449. }
  1450. vol->usnjrnl_ino = tmp_ino;
  1451. /*
  1452. * If the transaction log is in the process of being deleted, we can
  1453. * ignore it.
  1454. */
  1455. if (unlikely(vol->vol_flags & VOLUME_DELETE_USN_UNDERWAY)) {
  1456. ntfs_debug("$UsnJrnl in the process of being disabled. "
  1457. "Volume does not have transaction logging "
  1458. "enabled.");
  1459. goto not_enabled;
  1460. }
  1461. /* Get the $DATA/$Max attribute. */
  1462. tmp_ino = ntfs_attr_iget(vol->usnjrnl_ino, AT_DATA, Max, 4);
  1463. if (IS_ERR(tmp_ino)) {
  1464. ntfs_error(vol->sb, "Failed to load $UsnJrnl/$DATA/$Max "
  1465. "attribute.");
  1466. return false;
  1467. }
  1468. vol->usnjrnl_max_ino = tmp_ino;
  1469. if (unlikely(i_size_read(tmp_ino) < sizeof(USN_HEADER))) {
  1470. ntfs_error(vol->sb, "Found corrupt $UsnJrnl/$DATA/$Max "
  1471. "attribute (size is 0x%llx but should be at "
  1472. "least 0x%zx bytes).", i_size_read(tmp_ino),
  1473. sizeof(USN_HEADER));
  1474. return false;
  1475. }
  1476. /* Get the $DATA/$J attribute. */
  1477. tmp_ino = ntfs_attr_iget(vol->usnjrnl_ino, AT_DATA, J, 2);
  1478. if (IS_ERR(tmp_ino)) {
  1479. ntfs_error(vol->sb, "Failed to load $UsnJrnl/$DATA/$J "
  1480. "attribute.");
  1481. return false;
  1482. }
  1483. vol->usnjrnl_j_ino = tmp_ino;
  1484. /* Verify $J is non-resident and sparse. */
  1485. tmp_ni = NTFS_I(vol->usnjrnl_j_ino);
  1486. if (unlikely(!NInoNonResident(tmp_ni) || !NInoSparse(tmp_ni))) {
  1487. ntfs_error(vol->sb, "$UsnJrnl/$DATA/$J attribute is resident "
  1488. "and/or not sparse.");
  1489. return false;
  1490. }
  1491. /* Read the USN_HEADER from $DATA/$Max. */
  1492. page = ntfs_map_page(vol->usnjrnl_max_ino->i_mapping, 0);
  1493. if (IS_ERR(page)) {
  1494. ntfs_error(vol->sb, "Failed to read from $UsnJrnl/$DATA/$Max "
  1495. "attribute.");
  1496. return false;
  1497. }
  1498. uh = (USN_HEADER*)page_address(page);
  1499. /* Sanity check the $Max. */
  1500. if (unlikely(sle64_to_cpu(uh->allocation_delta) >
  1501. sle64_to_cpu(uh->maximum_size))) {
  1502. ntfs_error(vol->sb, "Allocation delta (0x%llx) exceeds "
  1503. "maximum size (0x%llx). $UsnJrnl is corrupt.",
  1504. (long long)sle64_to_cpu(uh->allocation_delta),
  1505. (long long)sle64_to_cpu(uh->maximum_size));
  1506. ntfs_unmap_page(page);
  1507. return false;
  1508. }
  1509. /*
  1510. * If the transaction log has been stamped and nothing has been written
  1511. * to it since, we do not need to stamp it.
  1512. */
  1513. if (unlikely(sle64_to_cpu(uh->lowest_valid_usn) >=
  1514. i_size_read(vol->usnjrnl_j_ino))) {
  1515. if (likely(sle64_to_cpu(uh->lowest_valid_usn) ==
  1516. i_size_read(vol->usnjrnl_j_ino))) {
  1517. ntfs_unmap_page(page);
  1518. ntfs_debug("$UsnJrnl is enabled but nothing has been "
  1519. "logged since it was last stamped. "
  1520. "Treating this as if the volume does "
  1521. "not have transaction logging "
  1522. "enabled.");
  1523. goto not_enabled;
  1524. }
  1525. ntfs_error(vol->sb, "$UsnJrnl has lowest valid usn (0x%llx) "
  1526. "which is out of bounds (0x%llx). $UsnJrnl "
  1527. "is corrupt.",
  1528. (long long)sle64_to_cpu(uh->lowest_valid_usn),
  1529. i_size_read(vol->usnjrnl_j_ino));
  1530. ntfs_unmap_page(page);
  1531. return false;
  1532. }
  1533. ntfs_unmap_page(page);
  1534. ntfs_debug("Done.");
  1535. return true;
  1536. }
  1537. /**
  1538. * load_and_init_attrdef - load the attribute definitions table for a volume
  1539. * @vol: ntfs super block describing device whose attrdef to load
  1540. *
  1541. * Return 'true' on success or 'false' on error.
  1542. */
  1543. static bool load_and_init_attrdef(ntfs_volume *vol)
  1544. {
  1545. loff_t i_size;
  1546. struct super_block *sb = vol->sb;
  1547. struct inode *ino;
  1548. struct page *page;
  1549. pgoff_t index, max_index;
  1550. unsigned int size;
  1551. ntfs_debug("Entering.");
  1552. /* Read attrdef table and setup vol->attrdef and vol->attrdef_size. */
  1553. ino = ntfs_iget(sb, FILE_AttrDef);
  1554. if (IS_ERR(ino) || is_bad_inode(ino)) {
  1555. if (!IS_ERR(ino))
  1556. iput(ino);
  1557. goto failed;
  1558. }
  1559. NInoSetSparseDisabled(NTFS_I(ino));
  1560. /* The size of FILE_AttrDef must be above 0 and fit inside 31 bits. */
  1561. i_size = i_size_read(ino);
  1562. if (i_size <= 0 || i_size > 0x7fffffff)
  1563. goto iput_failed;
  1564. vol->attrdef = (ATTR_DEF*)ntfs_malloc_nofs(i_size);
  1565. if (!vol->attrdef)
  1566. goto iput_failed;
  1567. index = 0;
  1568. max_index = i_size >> PAGE_CACHE_SHIFT;
  1569. size = PAGE_CACHE_SIZE;
  1570. while (index < max_index) {
  1571. /* Read the attrdef table and copy it into the linear buffer. */
  1572. read_partial_attrdef_page:
  1573. page = ntfs_map_page(ino->i_mapping, index);
  1574. if (IS_ERR(page))
  1575. goto free_iput_failed;
  1576. memcpy((u8*)vol->attrdef + (index++ << PAGE_CACHE_SHIFT),
  1577. page_address(page), size);
  1578. ntfs_unmap_page(page);
  1579. };
  1580. if (size == PAGE_CACHE_SIZE) {
  1581. size = i_size & ~PAGE_CACHE_MASK;
  1582. if (size)
  1583. goto read_partial_attrdef_page;
  1584. }
  1585. vol->attrdef_size = i_size;
  1586. ntfs_debug("Read %llu bytes from $AttrDef.", i_size);
  1587. iput(ino);
  1588. return true;
  1589. free_iput_failed:
  1590. ntfs_free(vol->attrdef);
  1591. vol->attrdef = NULL;
  1592. iput_failed:
  1593. iput(ino);
  1594. failed:
  1595. ntfs_error(sb, "Failed to initialize attribute definition table.");
  1596. return false;
  1597. }
  1598. #endif /* NTFS_RW */
  1599. /**
  1600. * load_and_init_upcase - load the upcase table for an ntfs volume
  1601. * @vol: ntfs super block describing device whose upcase to load
  1602. *
  1603. * Return 'true' on success or 'false' on error.
  1604. */
  1605. static bool load_and_init_upcase(ntfs_volume *vol)
  1606. {
  1607. loff_t i_size;
  1608. struct super_block *sb = vol->sb;
  1609. struct inode *ino;
  1610. struct page *page;
  1611. pgoff_t index, max_index;
  1612. unsigned int size;
  1613. int i, max;
  1614. ntfs_debug("Entering.");
  1615. /* Read upcase table and setup vol->upcase and vol->upcase_len. */
  1616. ino = ntfs_iget(sb, FILE_UpCase);
  1617. if (IS_ERR(ino) || is_bad_inode(ino)) {
  1618. if (!IS_ERR(ino))
  1619. iput(ino);
  1620. goto upcase_failed;
  1621. }
  1622. /*
  1623. * The upcase size must not be above 64k Unicode characters, must not
  1624. * be zero and must be a multiple of sizeof(ntfschar).
  1625. */
  1626. i_size = i_size_read(ino);
  1627. if (!i_size || i_size & (sizeof(ntfschar) - 1) ||
  1628. i_size > 64ULL * 1024 * sizeof(ntfschar))
  1629. goto iput_upcase_failed;
  1630. vol->upcase = (ntfschar*)ntfs_malloc_nofs(i_size);
  1631. if (!vol->upcase)
  1632. goto iput_upcase_failed;
  1633. index = 0;
  1634. max_index = i_size >> PAGE_CACHE_SHIFT;
  1635. size = PAGE_CACHE_SIZE;
  1636. while (index < max_index) {
  1637. /* Read the upcase table and copy it into the linear buffer. */
  1638. read_partial_upcase_page:
  1639. page = ntfs_map_page(ino->i_mapping, index);
  1640. if (IS_ERR(page))
  1641. goto iput_upcase_failed;
  1642. memcpy((char*)vol->upcase + (index++ << PAGE_CACHE_SHIFT),
  1643. page_address(page), size);
  1644. ntfs_unmap_page(page);
  1645. };
  1646. if (size == PAGE_CACHE_SIZE) {
  1647. size = i_size & ~PAGE_CACHE_MASK;
  1648. if (size)
  1649. goto read_partial_upcase_page;
  1650. }
  1651. vol->upcase_len = i_size >> UCHAR_T_SIZE_BITS;
  1652. ntfs_debug("Read %llu bytes from $UpCase (expected %zu bytes).",
  1653. i_size, 64 * 1024 * sizeof(ntfschar));
  1654. iput(ino);
  1655. mutex_lock(&ntfs_lock);
  1656. if (!default_upcase) {
  1657. ntfs_debug("Using volume specified $UpCase since default is "
  1658. "not present.");
  1659. mutex_unlock(&ntfs_lock);
  1660. return true;
  1661. }
  1662. max = default_upcase_len;
  1663. if (max > vol->upcase_len)
  1664. max = vol->upcase_len;
  1665. for (i = 0; i < max; i++)
  1666. if (vol->upcase[i] != default_upcase[i])
  1667. break;
  1668. if (i == max) {
  1669. ntfs_free(vol->upcase);
  1670. vol->upcase = default_upcase;
  1671. vol->upcase_len = max;
  1672. ntfs_nr_upcase_users++;
  1673. mutex_unlock(&ntfs_lock);
  1674. ntfs_debug("Volume specified $UpCase matches default. Using "
  1675. "default.");
  1676. return true;
  1677. }
  1678. mutex_unlock(&ntfs_lock);
  1679. ntfs_debug("Using volume specified $UpCase since it does not match "
  1680. "the default.");
  1681. return true;
  1682. iput_upcase_failed:
  1683. iput(ino);
  1684. ntfs_free(vol->upcase);
  1685. vol->upcase = NULL;
  1686. upcase_failed:
  1687. mutex_lock(&ntfs_lock);
  1688. if (default_upcase) {
  1689. vol->upcase = default_upcase;
  1690. vol->upcase_len = default_upcase_len;
  1691. ntfs_nr_upcase_users++;
  1692. mutex_unlock(&ntfs_lock);
  1693. ntfs_error(sb, "Failed to load $UpCase from the volume. Using "
  1694. "default.");
  1695. return true;
  1696. }
  1697. mutex_unlock(&ntfs_lock);
  1698. ntfs_error(sb, "Failed to initialize upcase table.");
  1699. return false;
  1700. }
  1701. /*
  1702. * The lcn and mft bitmap inodes are NTFS-internal inodes with
  1703. * their own special locking rules:
  1704. */
  1705. static struct lock_class_key
  1706. lcnbmp_runlist_lock_key, lcnbmp_mrec_lock_key,
  1707. mftbmp_runlist_lock_key, mftbmp_mrec_lock_key;
  1708. /**
  1709. * load_system_files - open the system files using normal functions
  1710. * @vol: ntfs super block describing device whose system files to load
  1711. *
  1712. * Open the system files with normal access functions and complete setting up
  1713. * the ntfs super block @vol.
  1714. *
  1715. * Return 'true' on success or 'false' on error.
  1716. */
  1717. static bool load_system_files(ntfs_volume *vol)
  1718. {
  1719. struct super_block *sb = vol->sb;
  1720. MFT_RECORD *m;
  1721. VOLUME_INFORMATION *vi;
  1722. ntfs_attr_search_ctx *ctx;
  1723. #ifdef NTFS_RW
  1724. RESTART_PAGE_HEADER *rp;
  1725. int err;
  1726. #endif /* NTFS_RW */
  1727. ntfs_debug("Entering.");
  1728. #ifdef NTFS_RW
  1729. /* Get mft mirror inode compare the contents of $MFT and $MFTMirr. */
  1730. if (!load_and_init_mft_mirror(vol) || !check_mft_mirror(vol)) {
  1731. static const char *es1 = "Failed to load $MFTMirr";
  1732. static const char *es2 = "$MFTMirr does not match $MFT";
  1733. static const char *es3 = ". Run ntfsfix and/or chkdsk.";
  1734. /* If a read-write mount, convert it to a read-only mount. */
  1735. if (!(sb->s_flags & MS_RDONLY)) {
  1736. if (!(vol->on_errors & (ON_ERRORS_REMOUNT_RO |
  1737. ON_ERRORS_CONTINUE))) {
  1738. ntfs_error(sb, "%s and neither on_errors="
  1739. "continue nor on_errors="
  1740. "remount-ro was specified%s",
  1741. !vol->mftmirr_ino ? es1 : es2,
  1742. es3);
  1743. goto iput_mirr_err_out;
  1744. }
  1745. sb->s_flags |= MS_RDONLY;
  1746. ntfs_error(sb, "%s. Mounting read-only%s",
  1747. !vol->mftmirr_ino ? es1 : es2, es3);
  1748. } else
  1749. ntfs_warning(sb, "%s. Will not be able to remount "
  1750. "read-write%s",
  1751. !vol->mftmirr_ino ? es1 : es2, es3);
  1752. /* This will prevent a read-write remount. */
  1753. NVolSetErrors(vol);
  1754. }
  1755. #endif /* NTFS_RW */
  1756. /* Get mft bitmap attribute inode. */
  1757. vol->mftbmp_ino = ntfs_attr_iget(vol->mft_ino, AT_BITMAP, NULL, 0);
  1758. if (IS_ERR(vol->mftbmp_ino)) {
  1759. ntfs_error(sb, "Failed to load $MFT/$BITMAP attribute.");
  1760. goto iput_mirr_err_out;
  1761. }
  1762. lockdep_set_class(&NTFS_I(vol->mftbmp_ino)->runlist.lock,
  1763. &mftbmp_runlist_lock_key);
  1764. lockdep_set_class(&NTFS_I(vol->mftbmp_ino)->mrec_lock,
  1765. &mftbmp_mrec_lock_key);
  1766. /* Read upcase table and setup @vol->upcase and @vol->upcase_len. */
  1767. if (!load_and_init_upcase(vol))
  1768. goto iput_mftbmp_err_out;
  1769. #ifdef NTFS_RW
  1770. /*
  1771. * Read attribute definitions table and setup @vol->attrdef and
  1772. * @vol->attrdef_size.
  1773. */
  1774. if (!load_and_init_attrdef(vol))
  1775. goto iput_upcase_err_out;
  1776. #endif /* NTFS_RW */
  1777. /*
  1778. * Get the cluster allocation bitmap inode and verify the size, no
  1779. * need for any locking at this stage as we are already running
  1780. * exclusively as we are mount in progress task.
  1781. */
  1782. vol->lcnbmp_ino = ntfs_iget(sb, FILE_Bitmap);
  1783. if (IS_ERR(vol->lcnbmp_ino) || is_bad_inode(vol->lcnbmp_ino)) {
  1784. if (!IS_ERR(vol->lcnbmp_ino))
  1785. iput(vol->lcnbmp_ino);
  1786. goto bitmap_failed;
  1787. }
  1788. lockdep_set_class(&NTFS_I(vol->lcnbmp_ino)->runlist.lock,
  1789. &lcnbmp_runlist_lock_key);
  1790. lockdep_set_class(&NTFS_I(vol->lcnbmp_ino)->mrec_lock,
  1791. &lcnbmp_mrec_lock_key);
  1792. NInoSetSparseDisabled(NTFS_I(vol->lcnbmp_ino));
  1793. if ((vol->nr_clusters + 7) >> 3 > i_size_read(vol->lcnbmp_ino)) {
  1794. iput(vol->lcnbmp_ino);
  1795. bitmap_failed:
  1796. ntfs_error(sb, "Failed to load $Bitmap.");
  1797. goto iput_attrdef_err_out;
  1798. }
  1799. /*
  1800. * Get the volume inode and setup our cache of the volume flags and
  1801. * version.
  1802. */
  1803. vol->vol_ino = ntfs_iget(sb, FILE_Volume);
  1804. if (IS_ERR(vol->vol_ino) || is_bad_inode(vol->vol_ino)) {
  1805. if (!IS_ERR(vol->vol_ino))
  1806. iput(vol->vol_ino);
  1807. volume_failed:
  1808. ntfs_error(sb, "Failed to load $Volume.");
  1809. goto iput_lcnbmp_err_out;
  1810. }
  1811. m = map_mft_record(NTFS_I(vol->vol_ino));
  1812. if (IS_ERR(m)) {
  1813. iput_volume_failed:
  1814. iput(vol->vol_ino);
  1815. goto volume_failed;
  1816. }
  1817. if (!(ctx = ntfs_attr_get_search_ctx(NTFS_I(vol->vol_ino), m))) {
  1818. ntfs_error(sb, "Failed to get attribute search context.");
  1819. goto get_ctx_vol_failed;
  1820. }
  1821. if (ntfs_attr_lookup(AT_VOLUME_INFORMATION, NULL, 0, 0, 0, NULL, 0,
  1822. ctx) || ctx->attr->non_resident || ctx->attr->flags) {
  1823. err_put_vol:
  1824. ntfs_attr_put_search_ctx(ctx);
  1825. get_ctx_vol_failed:
  1826. unmap_mft_record(NTFS_I(vol->vol_ino));
  1827. goto iput_volume_failed;
  1828. }
  1829. vi = (VOLUME_INFORMATION*)((char*)ctx->attr +
  1830. le16_to_cpu(ctx->attr->data.resident.value_offset));
  1831. /* Some bounds checks. */
  1832. if ((u8*)vi < (u8*)ctx->attr || (u8*)vi +
  1833. le32_to_cpu(ctx->attr->data.resident.value_length) >
  1834. (u8*)ctx->attr + le32_to_cpu(ctx->attr->length))
  1835. goto err_put_vol;
  1836. /* Copy the volume flags and version to the ntfs_volume structure. */
  1837. vol->vol_flags = vi->flags;
  1838. vol->major_ver = vi->major_ver;
  1839. vol->minor_ver = vi->minor_ver;
  1840. ntfs_attr_put_search_ctx(ctx);
  1841. unmap_mft_record(NTFS_I(vol->vol_ino));
  1842. pr_info("volume version %i.%i.\n", vol->major_ver,
  1843. vol->minor_ver);
  1844. if (vol->major_ver < 3 && NVolSparseEnabled(vol)) {
  1845. ntfs_warning(vol->sb, "Disabling sparse support due to NTFS "
  1846. "volume version %i.%i (need at least version "
  1847. "3.0).", vol->major_ver, vol->minor_ver);
  1848. NVolClearSparseEnabled(vol);
  1849. }
  1850. #ifdef NTFS_RW
  1851. /* Make sure that no unsupported volume flags are set. */
  1852. if (vol->vol_flags & VOLUME_MUST_MOUNT_RO_MASK) {
  1853. static const char *es1a = "Volume is dirty";
  1854. static const char *es1b = "Volume has been modified by chkdsk";
  1855. static const char *es1c = "Volume has unsupported flags set";
  1856. static const char *es2a = ". Run chkdsk and mount in Windows.";
  1857. static const char *es2b = ". Mount in Windows.";
  1858. const char *es1, *es2;
  1859. es2 = es2a;
  1860. if (vol->vol_flags & VOLUME_IS_DIRTY)
  1861. es1 = es1a;
  1862. else if (vol->vol_flags & VOLUME_MODIFIED_BY_CHKDSK) {
  1863. es1 = es1b;
  1864. es2 = es2b;
  1865. } else {
  1866. es1 = es1c;
  1867. ntfs_warning(sb, "Unsupported volume flags 0x%x "
  1868. "encountered.",
  1869. (unsigned)le16_to_cpu(vol->vol_flags));
  1870. }
  1871. /* If a read-write mount, convert it to a read-only mount. */
  1872. if (!(sb->s_flags & MS_RDONLY)) {
  1873. if (!(vol->on_errors & (ON_ERRORS_REMOUNT_RO |
  1874. ON_ERRORS_CONTINUE))) {
  1875. ntfs_error(sb, "%s and neither on_errors="
  1876. "continue nor on_errors="
  1877. "remount-ro was specified%s",
  1878. es1, es2);
  1879. goto iput_vol_err_out;
  1880. }
  1881. sb->s_flags |= MS_RDONLY;
  1882. ntfs_error(sb, "%s. Mounting read-only%s", es1, es2);
  1883. } else
  1884. ntfs_warning(sb, "%s. Will not be able to remount "
  1885. "read-write%s", es1, es2);
  1886. /*
  1887. * Do not set NVolErrors() because ntfs_remount() re-checks the
  1888. * flags which we need to do in case any flags have changed.
  1889. */
  1890. }
  1891. /*
  1892. * Get the inode for the logfile, check it and determine if the volume
  1893. * was shutdown cleanly.
  1894. */
  1895. rp = NULL;
  1896. if (!load_and_check_logfile(vol, &rp) ||
  1897. !ntfs_is_logfile_clean(vol->logfile_ino, rp)) {
  1898. static const char *es1a = "Failed to load $LogFile";
  1899. static const char *es1b = "$LogFile is not clean";
  1900. static const char *es2 = ". Mount in Windows.";
  1901. const char *es1;
  1902. es1 = !vol->logfile_ino ? es1a : es1b;
  1903. /* If a read-write mount, convert it to a read-only mount. */
  1904. if (!(sb->s_flags & MS_RDONLY)) {
  1905. if (!(vol->on_errors & (ON_ERRORS_REMOUNT_RO |
  1906. ON_ERRORS_CONTINUE))) {
  1907. ntfs_error(sb, "%s and neither on_errors="
  1908. "continue nor on_errors="
  1909. "remount-ro was specified%s",
  1910. es1, es2);
  1911. if (vol->logfile_ino) {
  1912. BUG_ON(!rp);
  1913. ntfs_free(rp);
  1914. }
  1915. goto iput_logfile_err_out;
  1916. }
  1917. sb->s_flags |= MS_RDONLY;
  1918. ntfs_error(sb, "%s. Mounting read-only%s", es1, es2);
  1919. } else
  1920. ntfs_warning(sb, "%s. Will not be able to remount "
  1921. "read-write%s", es1, es2);
  1922. /* This will prevent a read-write remount. */
  1923. NVolSetErrors(vol);
  1924. }
  1925. ntfs_free(rp);
  1926. #endif /* NTFS_RW */
  1927. /* Get the root directory inode so we can do path lookups. */
  1928. vol->root_ino = ntfs_iget(sb, FILE_root);
  1929. if (IS_ERR(vol->root_ino) || is_bad_inode(vol->root_ino)) {
  1930. if (!IS_ERR(vol->root_ino))
  1931. iput(vol->root_ino);
  1932. ntfs_error(sb, "Failed to load root directory.");
  1933. goto iput_logfile_err_out;
  1934. }
  1935. #ifdef NTFS_RW
  1936. /*
  1937. * Check if Windows is suspended to disk on the target volume. If it
  1938. * is hibernated, we must not write *anything* to the disk so set
  1939. * NVolErrors() without setting the dirty volume flag and mount
  1940. * read-only. This will prevent read-write remounting and it will also
  1941. * prevent all writes.
  1942. */
  1943. err = check_windows_hibernation_status(vol);
  1944. if (unlikely(err)) {
  1945. static const char *es1a = "Failed to determine if Windows is "
  1946. "hibernated";
  1947. static const char *es1b = "Windows is hibernated";
  1948. static const char *es2 = ". Run chkdsk.";
  1949. const char *es1;
  1950. es1 = err < 0 ? es1a : es1b;
  1951. /* If a read-write mount, convert it to a read-only mount. */
  1952. if (!(sb->s_flags & MS_RDONLY)) {
  1953. if (!(vol->on_errors & (ON_ERRORS_REMOUNT_RO |
  1954. ON_ERRORS_CONTINUE))) {
  1955. ntfs_error(sb, "%s and neither on_errors="
  1956. "continue nor on_errors="
  1957. "remount-ro was specified%s",
  1958. es1, es2);
  1959. goto iput_root_err_out;
  1960. }
  1961. sb->s_flags |= MS_RDONLY;
  1962. ntfs_error(sb, "%s. Mounting read-only%s", es1, es2);
  1963. } else
  1964. ntfs_warning(sb, "%s. Will not be able to remount "
  1965. "read-write%s", es1, es2);
  1966. /* This will prevent a read-write remount. */
  1967. NVolSetErrors(vol);
  1968. }
  1969. /* If (still) a read-write mount, mark the volume dirty. */
  1970. if (!(sb->s_flags & MS_RDONLY) &&
  1971. ntfs_set_volume_flags(vol, VOLUME_IS_DIRTY)) {
  1972. static const char *es1 = "Failed to set dirty bit in volume "
  1973. "information flags";
  1974. static const char *es2 = ". Run chkdsk.";
  1975. /* Convert to a read-only mount. */
  1976. if (!(vol->on_errors & (ON_ERRORS_REMOUNT_RO |
  1977. ON_ERRORS_CONTINUE))) {
  1978. ntfs_error(sb, "%s and neither on_errors=continue nor "
  1979. "on_errors=remount-ro was specified%s",
  1980. es1, es2);
  1981. goto iput_root_err_out;
  1982. }
  1983. ntfs_error(sb, "%s. Mounting read-only%s", es1, es2);
  1984. sb->s_flags |= MS_RDONLY;
  1985. /*
  1986. * Do not set NVolErrors() because ntfs_remount() might manage
  1987. * to set the dirty flag in which case all would be well.
  1988. */
  1989. }
  1990. #if 0
  1991. // TODO: Enable this code once we start modifying anything that is
  1992. // different between NTFS 1.2 and 3.x...
  1993. /*
  1994. * If (still) a read-write mount, set the NT4 compatibility flag on
  1995. * newer NTFS version volumes.
  1996. */
  1997. if (!(sb->s_flags & MS_RDONLY) && (vol->major_ver > 1) &&
  1998. ntfs_set_volume_flags(vol, VOLUME_MOUNTED_ON_NT4)) {
  1999. static const char *es1 = "Failed to set NT4 compatibility flag";
  2000. static const char *es2 = ". Run chkdsk.";
  2001. /* Convert to a read-only mount. */
  2002. if (!(vol->on_errors & (ON_ERRORS_REMOUNT_RO |
  2003. ON_ERRORS_CONTINUE))) {
  2004. ntfs_error(sb, "%s and neither on_errors=continue nor "
  2005. "on_errors=remount-ro was specified%s",
  2006. es1, es2);
  2007. goto iput_root_err_out;
  2008. }
  2009. ntfs_error(sb, "%s. Mounting read-only%s", es1, es2);
  2010. sb->s_flags |= MS_RDONLY;
  2011. NVolSetErrors(vol);
  2012. }
  2013. #endif
  2014. /* If (still) a read-write mount, empty the logfile. */
  2015. if (!(sb->s_flags & MS_RDONLY) &&
  2016. !ntfs_empty_logfile(vol->logfile_ino)) {
  2017. static const char *es1 = "Failed to empty $LogFile";
  2018. static const char *es2 = ". Mount in Windows.";
  2019. /* Convert to a read-only mount. */
  2020. if (!(vol->on_errors & (ON_ERRORS_REMOUNT_RO |
  2021. ON_ERRORS_CONTINUE))) {
  2022. ntfs_error(sb, "%s and neither on_errors=continue nor "
  2023. "on_errors=remount-ro was specified%s",
  2024. es1, es2);
  2025. goto iput_root_err_out;
  2026. }
  2027. ntfs_error(sb, "%s. Mounting read-only%s", es1, es2);
  2028. sb->s_flags |= MS_RDONLY;
  2029. NVolSetErrors(vol);
  2030. }
  2031. #endif /* NTFS_RW */
  2032. /* If on NTFS versions before 3.0, we are done. */
  2033. if (unlikely(vol->major_ver < 3))
  2034. return true;
  2035. /* NTFS 3.0+ specific initialization. */
  2036. /* Get the security descriptors inode. */
  2037. vol->secure_ino = ntfs_iget(sb, FILE_Secure);
  2038. if (IS_ERR(vol->secure_ino) || is_bad_inode(vol->secure_ino)) {
  2039. if (!IS_ERR(vol->secure_ino))
  2040. iput(vol->secure_ino);
  2041. ntfs_error(sb, "Failed to load $Secure.");
  2042. goto iput_root_err_out;
  2043. }
  2044. // TODO: Initialize security.
  2045. /* Get the extended system files' directory inode. */
  2046. vol->extend_ino = ntfs_iget(sb, FILE_Extend);
  2047. if (IS_ERR(vol->extend_ino) || is_bad_inode(vol->extend_ino)) {
  2048. if (!IS_ERR(vol->extend_ino))
  2049. iput(vol->extend_ino);
  2050. ntfs_error(sb, "Failed to load $Extend.");
  2051. goto iput_sec_err_out;
  2052. }
  2053. #ifdef NTFS_RW
  2054. /* Find the quota file, load it if present, and set it up. */
  2055. if (!load_and_init_quota(vol)) {
  2056. static const char *es1 = "Failed to load $Quota";
  2057. static const char *es2 = ". Run chkdsk.";
  2058. /* If a read-write mount, convert it to a read-only mount. */
  2059. if (!(sb->s_flags & MS_RDONLY)) {
  2060. if (!(vol->on_errors & (ON_ERRORS_REMOUNT_RO |
  2061. ON_ERRORS_CONTINUE))) {
  2062. ntfs_error(sb, "%s and neither on_errors="
  2063. "continue nor on_errors="
  2064. "remount-ro was specified%s",
  2065. es1, es2);
  2066. goto iput_quota_err_out;
  2067. }
  2068. sb->s_flags |= MS_RDONLY;
  2069. ntfs_error(sb, "%s. Mounting read-only%s", es1, es2);
  2070. } else
  2071. ntfs_warning(sb, "%s. Will not be able to remount "
  2072. "read-write%s", es1, es2);
  2073. /* This will prevent a read-write remount. */
  2074. NVolSetErrors(vol);
  2075. }
  2076. /* If (still) a read-write mount, mark the quotas out of date. */
  2077. if (!(sb->s_flags & MS_RDONLY) &&
  2078. !ntfs_mark_quotas_out_of_date(vol)) {
  2079. static const char *es1 = "Failed to mark quotas out of date";
  2080. static const char *es2 = ". Run chkdsk.";
  2081. /* Convert to a read-only mount. */
  2082. if (!(vol->on_errors & (ON_ERRORS_REMOUNT_RO |
  2083. ON_ERRORS_CONTINUE))) {
  2084. ntfs_error(sb, "%s and neither on_errors=continue nor "
  2085. "on_errors=remount-ro was specified%s",
  2086. es1, es2);
  2087. goto iput_quota_err_out;
  2088. }
  2089. ntfs_error(sb, "%s. Mounting read-only%s", es1, es2);
  2090. sb->s_flags |= MS_RDONLY;
  2091. NVolSetErrors(vol);
  2092. }
  2093. /*
  2094. * Find the transaction log file ($UsnJrnl), load it if present, check
  2095. * it, and set it up.
  2096. */
  2097. if (!load_and_init_usnjrnl(vol)) {
  2098. static const char *es1 = "Failed to load $UsnJrnl";
  2099. static const char *es2 = ". Run chkdsk.";
  2100. /* If a read-write mount, convert it to a read-only mount. */
  2101. if (!(sb->s_flags & MS_RDONLY)) {
  2102. if (!(vol->on_errors & (ON_ERRORS_REMOUNT_RO |
  2103. ON_ERRORS_CONTINUE))) {
  2104. ntfs_error(sb, "%s and neither on_errors="
  2105. "continue nor on_errors="
  2106. "remount-ro was specified%s",
  2107. es1, es2);
  2108. goto iput_usnjrnl_err_out;
  2109. }
  2110. sb->s_flags |= MS_RDONLY;
  2111. ntfs_error(sb, "%s. Mounting read-only%s", es1, es2);
  2112. } else
  2113. ntfs_warning(sb, "%s. Will not be able to remount "
  2114. "read-write%s", es1, es2);
  2115. /* This will prevent a read-write remount. */
  2116. NVolSetErrors(vol);
  2117. }
  2118. /* If (still) a read-write mount, stamp the transaction log. */
  2119. if (!(sb->s_flags & MS_RDONLY) && !ntfs_stamp_usnjrnl(vol)) {
  2120. static const char *es1 = "Failed to stamp transaction log "
  2121. "($UsnJrnl)";
  2122. static const char *es2 = ". Run chkdsk.";
  2123. /* Convert to a read-only mount. */
  2124. if (!(vol->on_errors & (ON_ERRORS_REMOUNT_RO |
  2125. ON_ERRORS_CONTINUE))) {
  2126. ntfs_error(sb, "%s and neither on_errors=continue nor "
  2127. "on_errors=remount-ro was specified%s",
  2128. es1, es2);
  2129. goto iput_usnjrnl_err_out;
  2130. }
  2131. ntfs_error(sb, "%s. Mounting read-only%s", es1, es2);
  2132. sb->s_flags |= MS_RDONLY;
  2133. NVolSetErrors(vol);
  2134. }
  2135. #endif /* NTFS_RW */
  2136. return true;
  2137. #ifdef NTFS_RW
  2138. iput_usnjrnl_err_out:
  2139. iput(vol->usnjrnl_j_ino);
  2140. iput(vol->usnjrnl_max_ino);
  2141. iput(vol->usnjrnl_ino);
  2142. iput_quota_err_out:
  2143. iput(vol->quota_q_ino);
  2144. iput(vol->quota_ino);
  2145. iput(vol->extend_ino);
  2146. #endif /* NTFS_RW */
  2147. iput_sec_err_out:
  2148. iput(vol->secure_ino);
  2149. iput_root_err_out:
  2150. iput(vol->root_ino);
  2151. iput_logfile_err_out:
  2152. #ifdef NTFS_RW
  2153. iput(vol->logfile_ino);
  2154. iput_vol_err_out:
  2155. #endif /* NTFS_RW */
  2156. iput(vol->vol_ino);
  2157. iput_lcnbmp_err_out:
  2158. iput(vol->lcnbmp_ino);
  2159. iput_attrdef_err_out:
  2160. vol->attrdef_size = 0;
  2161. if (vol->attrdef) {
  2162. ntfs_free(vol->attrdef);
  2163. vol->attrdef = NULL;
  2164. }
  2165. #ifdef NTFS_RW
  2166. iput_upcase_err_out:
  2167. #endif /* NTFS_RW */
  2168. vol->upcase_len = 0;
  2169. mutex_lock(&ntfs_lock);
  2170. if (vol->upcase == default_upcase) {
  2171. ntfs_nr_upcase_users--;
  2172. vol->upcase = NULL;
  2173. }
  2174. mutex_unlock(&ntfs_lock);
  2175. if (vol->upcase) {
  2176. ntfs_free(vol->upcase);
  2177. vol->upcase = NULL;
  2178. }
  2179. iput_mftbmp_err_out:
  2180. iput(vol->mftbmp_ino);
  2181. iput_mirr_err_out:
  2182. #ifdef NTFS_RW
  2183. iput(vol->mftmirr_ino);
  2184. #endif /* NTFS_RW */
  2185. return false;
  2186. }
  2187. /**
  2188. * ntfs_put_super - called by the vfs to unmount a volume
  2189. * @sb: vfs superblock of volume to unmount
  2190. *
  2191. * ntfs_put_super() is called by the VFS (from fs/super.c::do_umount()) when
  2192. * the volume is being unmounted (umount system call has been invoked) and it
  2193. * releases all inodes and memory belonging to the NTFS specific part of the
  2194. * super block.
  2195. */
  2196. static void ntfs_put_super(struct super_block *sb)
  2197. {
  2198. ntfs_volume *vol = NTFS_SB(sb);
  2199. ntfs_debug("Entering.");
  2200. #ifdef NTFS_RW
  2201. /*
  2202. * Commit all inodes while they are still open in case some of them
  2203. * cause others to be dirtied.
  2204. */
  2205. ntfs_commit_inode(vol->vol_ino);
  2206. /* NTFS 3.0+ specific. */
  2207. if (vol->major_ver >= 3) {
  2208. if (vol->usnjrnl_j_ino)
  2209. ntfs_commit_inode(vol->usnjrnl_j_ino);
  2210. if (vol->usnjrnl_max_ino)
  2211. ntfs_commit_inode(vol->usnjrnl_max_ino);
  2212. if (vol->usnjrnl_ino)
  2213. ntfs_commit_inode(vol->usnjrnl_ino);
  2214. if (vol->quota_q_ino)
  2215. ntfs_commit_inode(vol->quota_q_ino);
  2216. if (vol->quota_ino)
  2217. ntfs_commit_inode(vol->quota_ino);
  2218. if (vol->extend_ino)
  2219. ntfs_commit_inode(vol->extend_ino);
  2220. if (vol->secure_ino)
  2221. ntfs_commit_inode(vol->secure_ino);
  2222. }
  2223. ntfs_commit_inode(vol->root_ino);
  2224. down_write(&vol->lcnbmp_lock);
  2225. ntfs_commit_inode(vol->lcnbmp_ino);
  2226. up_write(&vol->lcnbmp_lock);
  2227. down_write(&vol->mftbmp_lock);
  2228. ntfs_commit_inode(vol->mftbmp_ino);
  2229. up_write(&vol->mftbmp_lock);
  2230. if (vol->logfile_ino)
  2231. ntfs_commit_inode(vol->logfile_ino);
  2232. if (vol->mftmirr_ino)
  2233. ntfs_commit_inode(vol->mftmirr_ino);
  2234. ntfs_commit_inode(vol->mft_ino);
  2235. /*
  2236. * If a read-write mount and no volume errors have occurred, mark the
  2237. * volume clean. Also, re-commit all affected inodes.
  2238. */
  2239. if (!(sb->s_flags & MS_RDONLY)) {
  2240. if (!NVolErrors(vol)) {
  2241. if (ntfs_clear_volume_flags(vol, VOLUME_IS_DIRTY))
  2242. ntfs_warning(sb, "Failed to clear dirty bit "
  2243. "in volume information "
  2244. "flags. Run chkdsk.");
  2245. ntfs_commit_inode(vol->vol_ino);
  2246. ntfs_commit_inode(vol->root_ino);
  2247. if (vol->mftmirr_ino)
  2248. ntfs_commit_inode(vol->mftmirr_ino);
  2249. ntfs_commit_inode(vol->mft_ino);
  2250. } else {
  2251. ntfs_warning(sb, "Volume has errors. Leaving volume "
  2252. "marked dirty. Run chkdsk.");
  2253. }
  2254. }
  2255. #endif /* NTFS_RW */
  2256. iput(vol->vol_ino);
  2257. vol->vol_ino = NULL;
  2258. /* NTFS 3.0+ specific clean up. */
  2259. if (vol->major_ver >= 3) {
  2260. #ifdef NTFS_RW
  2261. if (vol->usnjrnl_j_ino) {
  2262. iput(vol->usnjrnl_j_ino);
  2263. vol->usnjrnl_j_ino = NULL;
  2264. }
  2265. if (vol->usnjrnl_max_ino) {
  2266. iput(vol->usnjrnl_max_ino);
  2267. vol->usnjrnl_max_ino = NULL;
  2268. }
  2269. if (vol->usnjrnl_ino) {
  2270. iput(vol->usnjrnl_ino);
  2271. vol->usnjrnl_ino = NULL;
  2272. }
  2273. if (vol->quota_q_ino) {
  2274. iput(vol->quota_q_ino);
  2275. vol->quota_q_ino = NULL;
  2276. }
  2277. if (vol->quota_ino) {
  2278. iput(vol->quota_ino);
  2279. vol->quota_ino = NULL;
  2280. }
  2281. #endif /* NTFS_RW */
  2282. if (vol->extend_ino) {
  2283. iput(vol->extend_ino);
  2284. vol->extend_ino = NULL;
  2285. }
  2286. if (vol->secure_ino) {
  2287. iput(vol->secure_ino);
  2288. vol->secure_ino = NULL;
  2289. }
  2290. }
  2291. iput(vol->root_ino);
  2292. vol->root_ino = NULL;
  2293. down_write(&vol->lcnbmp_lock);
  2294. iput(vol->lcnbmp_ino);
  2295. vol->lcnbmp_ino = NULL;
  2296. up_write(&vol->lcnbmp_lock);
  2297. down_write(&vol->mftbmp_lock);
  2298. iput(vol->mftbmp_ino);
  2299. vol->mftbmp_ino = NULL;
  2300. up_write(&vol->mftbmp_lock);
  2301. #ifdef NTFS_RW
  2302. if (vol->logfile_ino) {
  2303. iput(vol->logfile_ino);
  2304. vol->logfile_ino = NULL;
  2305. }
  2306. if (vol->mftmirr_ino) {
  2307. /* Re-commit the mft mirror and mft just in case. */
  2308. ntfs_commit_inode(vol->mftmirr_ino);
  2309. ntfs_commit_inode(vol->mft_ino);
  2310. iput(vol->mftmirr_ino);
  2311. vol->mftmirr_ino = NULL;
  2312. }
  2313. /*
  2314. * We should have no dirty inodes left, due to
  2315. * mft.c::ntfs_mft_writepage() cleaning all the dirty pages as
  2316. * the underlying mft records are written out and cleaned.
  2317. */
  2318. ntfs_commit_inode(vol->mft_ino);
  2319. write_inode_now(vol->mft_ino, 1);
  2320. #endif /* NTFS_RW */
  2321. iput(vol->mft_ino);
  2322. vol->mft_ino = NULL;
  2323. /* Throw away the table of attribute definitions. */
  2324. vol->attrdef_size = 0;
  2325. if (vol->attrdef) {
  2326. ntfs_free(vol->attrdef);
  2327. vol->attrdef = NULL;
  2328. }
  2329. vol->upcase_len = 0;
  2330. /*
  2331. * Destroy the global default upcase table if necessary. Also decrease
  2332. * the number of upcase users if we are a user.
  2333. */
  2334. mutex_lock(&ntfs_lock);
  2335. if (vol->upcase == default_upcase) {
  2336. ntfs_nr_upcase_users--;
  2337. vol->upcase = NULL;
  2338. }
  2339. if (!ntfs_nr_upcase_users && default_upcase) {
  2340. ntfs_free(default_upcase);
  2341. default_upcase = NULL;
  2342. }
  2343. if (vol->cluster_size <= 4096 && !--ntfs_nr_compression_users)
  2344. free_compression_buffers();
  2345. mutex_unlock(&ntfs_lock);
  2346. if (vol->upcase) {
  2347. ntfs_free(vol->upcase);
  2348. vol->upcase = NULL;
  2349. }
  2350. unload_nls(vol->nls_map);
  2351. sb->s_fs_info = NULL;
  2352. kfree(vol);
  2353. }
  2354. /**
  2355. * get_nr_free_clusters - return the number of free clusters on a volume
  2356. * @vol: ntfs volume for which to obtain free cluster count
  2357. *
  2358. * Calculate the number of free clusters on the mounted NTFS volume @vol. We
  2359. * actually calculate the number of clusters in use instead because this
  2360. * allows us to not care about partial pages as these will be just zero filled
  2361. * and hence not be counted as allocated clusters.
  2362. *
  2363. * The only particularity is that clusters beyond the end of the logical ntfs
  2364. * volume will be marked as allocated to prevent errors which means we have to
  2365. * discount those at the end. This is important as the cluster bitmap always
  2366. * has a size in multiples of 8 bytes, i.e. up to 63 clusters could be outside
  2367. * the logical volume and marked in use when they are not as they do not exist.
  2368. *
  2369. * If any pages cannot be read we assume all clusters in the erroring pages are
  2370. * in use. This means we return an underestimate on errors which is better than
  2371. * an overestimate.
  2372. */
  2373. static s64 get_nr_free_clusters(ntfs_volume *vol)
  2374. {
  2375. s64 nr_free = vol->nr_clusters;
  2376. struct address_space *mapping = vol->lcnbmp_ino->i_mapping;
  2377. struct page *page;
  2378. pgoff_t index, max_index;
  2379. ntfs_debug("Entering.");
  2380. /* Serialize accesses to the cluster bitmap. */
  2381. down_read(&vol->lcnbmp_lock);
  2382. /*
  2383. * Convert the number of bits into bytes rounded up, then convert into
  2384. * multiples of PAGE_CACHE_SIZE, rounding up so that if we have one
  2385. * full and one partial page max_index = 2.
  2386. */
  2387. max_index = (((vol->nr_clusters + 7) >> 3) + PAGE_CACHE_SIZE - 1) >>
  2388. PAGE_CACHE_SHIFT;
  2389. /* Use multiples of 4 bytes, thus max_size is PAGE_CACHE_SIZE / 4. */
  2390. ntfs_debug("Reading $Bitmap, max_index = 0x%lx, max_size = 0x%lx.",
  2391. max_index, PAGE_CACHE_SIZE / 4);
  2392. for (index = 0; index < max_index; index++) {
  2393. unsigned long *kaddr;
  2394. /*
  2395. * Read the page from page cache, getting it from backing store
  2396. * if necessary, and increment the use count.
  2397. */
  2398. page = read_mapping_page(mapping, index, NULL);
  2399. /* Ignore pages which errored synchronously. */
  2400. if (IS_ERR(page)) {
  2401. ntfs_debug("read_mapping_page() error. Skipping "
  2402. "page (index 0x%lx).", index);
  2403. nr_free -= PAGE_CACHE_SIZE * 8;
  2404. continue;
  2405. }
  2406. kaddr = kmap_atomic(page);
  2407. /*
  2408. * Subtract the number of set bits. If this
  2409. * is the last page and it is partial we don't really care as
  2410. * it just means we do a little extra work but it won't affect
  2411. * the result as all out of range bytes are set to zero by
  2412. * ntfs_readpage().
  2413. */
  2414. nr_free -= bitmap_weight(kaddr,
  2415. PAGE_CACHE_SIZE * BITS_PER_BYTE);
  2416. kunmap_atomic(kaddr);
  2417. page_cache_release(page);
  2418. }
  2419. ntfs_debug("Finished reading $Bitmap, last index = 0x%lx.", index - 1);
  2420. /*
  2421. * Fixup for eventual bits outside logical ntfs volume (see function
  2422. * description above).
  2423. */
  2424. if (vol->nr_clusters & 63)
  2425. nr_free += 64 - (vol->nr_clusters & 63);
  2426. up_read(&vol->lcnbmp_lock);
  2427. /* If errors occurred we may well have gone below zero, fix this. */
  2428. if (nr_free < 0)
  2429. nr_free = 0;
  2430. ntfs_debug("Exiting.");
  2431. return nr_free;
  2432. }
  2433. /**
  2434. * __get_nr_free_mft_records - return the number of free inodes on a volume
  2435. * @vol: ntfs volume for which to obtain free inode count
  2436. * @nr_free: number of mft records in filesystem
  2437. * @max_index: maximum number of pages containing set bits
  2438. *
  2439. * Calculate the number of free mft records (inodes) on the mounted NTFS
  2440. * volume @vol. We actually calculate the number of mft records in use instead
  2441. * because this allows us to not care about partial pages as these will be just
  2442. * zero filled and hence not be counted as allocated mft record.
  2443. *
  2444. * If any pages cannot be read we assume all mft records in the erroring pages
  2445. * are in use. This means we return an underestimate on errors which is better
  2446. * than an overestimate.
  2447. *
  2448. * NOTE: Caller must hold mftbmp_lock rw_semaphore for reading or writing.
  2449. */
  2450. static unsigned long __get_nr_free_mft_records(ntfs_volume *vol,
  2451. s64 nr_free, const pgoff_t max_index)
  2452. {
  2453. struct address_space *mapping = vol->mftbmp_ino->i_mapping;
  2454. struct page *page;
  2455. pgoff_t index;
  2456. ntfs_debug("Entering.");
  2457. /* Use multiples of 4 bytes, thus max_size is PAGE_CACHE_SIZE / 4. */
  2458. ntfs_debug("Reading $MFT/$BITMAP, max_index = 0x%lx, max_size = "
  2459. "0x%lx.", max_index, PAGE_CACHE_SIZE / 4);
  2460. for (index = 0; index < max_index; index++) {
  2461. unsigned long *kaddr;
  2462. /*
  2463. * Read the page from page cache, getting it from backing store
  2464. * if necessary, and increment the use count.
  2465. */
  2466. page = read_mapping_page(mapping, index, NULL);
  2467. /* Ignore pages which errored synchronously. */
  2468. if (IS_ERR(page)) {
  2469. ntfs_debug("read_mapping_page() error. Skipping "
  2470. "page (index 0x%lx).", index);
  2471. nr_free -= PAGE_CACHE_SIZE * 8;
  2472. continue;
  2473. }
  2474. kaddr = kmap_atomic(page);
  2475. /*
  2476. * Subtract the number of set bits. If this
  2477. * is the last page and it is partial we don't really care as
  2478. * it just means we do a little extra work but it won't affect
  2479. * the result as all out of range bytes are set to zero by
  2480. * ntfs_readpage().
  2481. */
  2482. nr_free -= bitmap_weight(kaddr,
  2483. PAGE_CACHE_SIZE * BITS_PER_BYTE);
  2484. kunmap_atomic(kaddr);
  2485. page_cache_release(page);
  2486. }
  2487. ntfs_debug("Finished reading $MFT/$BITMAP, last index = 0x%lx.",
  2488. index - 1);
  2489. /* If errors occurred we may well have gone below zero, fix this. */
  2490. if (nr_free < 0)
  2491. nr_free = 0;
  2492. ntfs_debug("Exiting.");
  2493. return nr_free;
  2494. }
  2495. /**
  2496. * ntfs_statfs - return information about mounted NTFS volume
  2497. * @dentry: dentry from mounted volume
  2498. * @sfs: statfs structure in which to return the information
  2499. *
  2500. * Return information about the mounted NTFS volume @dentry in the statfs structure
  2501. * pointed to by @sfs (this is initialized with zeros before ntfs_statfs is
  2502. * called). We interpret the values to be correct of the moment in time at
  2503. * which we are called. Most values are variable otherwise and this isn't just
  2504. * the free values but the totals as well. For example we can increase the
  2505. * total number of file nodes if we run out and we can keep doing this until
  2506. * there is no more space on the volume left at all.
  2507. *
  2508. * Called from vfs_statfs which is used to handle the statfs, fstatfs, and
  2509. * ustat system calls.
  2510. *
  2511. * Return 0 on success or -errno on error.
  2512. */
  2513. static int ntfs_statfs(struct dentry *dentry, struct kstatfs *sfs)
  2514. {
  2515. struct super_block *sb = dentry->d_sb;
  2516. s64 size;
  2517. ntfs_volume *vol = NTFS_SB(sb);
  2518. ntfs_inode *mft_ni = NTFS_I(vol->mft_ino);
  2519. pgoff_t max_index;
  2520. unsigned long flags;
  2521. ntfs_debug("Entering.");
  2522. /* Type of filesystem. */
  2523. sfs->f_type = NTFS_SB_MAGIC;
  2524. /* Optimal transfer block size. */
  2525. sfs->f_bsize = PAGE_CACHE_SIZE;
  2526. /*
  2527. * Total data blocks in filesystem in units of f_bsize and since
  2528. * inodes are also stored in data blocs ($MFT is a file) this is just
  2529. * the total clusters.
  2530. */
  2531. sfs->f_blocks = vol->nr_clusters << vol->cluster_size_bits >>
  2532. PAGE_CACHE_SHIFT;
  2533. /* Free data blocks in filesystem in units of f_bsize. */
  2534. size = get_nr_free_clusters(vol) << vol->cluster_size_bits >>
  2535. PAGE_CACHE_SHIFT;
  2536. if (size < 0LL)
  2537. size = 0LL;
  2538. /* Free blocks avail to non-superuser, same as above on NTFS. */
  2539. sfs->f_bavail = sfs->f_bfree = size;
  2540. /* Serialize accesses to the inode bitmap. */
  2541. down_read(&vol->mftbmp_lock);
  2542. read_lock_irqsave(&mft_ni->size_lock, flags);
  2543. size = i_size_read(vol->mft_ino) >> vol->mft_record_size_bits;
  2544. /*
  2545. * Convert the maximum number of set bits into bytes rounded up, then
  2546. * convert into multiples of PAGE_CACHE_SIZE, rounding up so that if we
  2547. * have one full and one partial page max_index = 2.
  2548. */
  2549. max_index = ((((mft_ni->initialized_size >> vol->mft_record_size_bits)
  2550. + 7) >> 3) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
  2551. read_unlock_irqrestore(&mft_ni->size_lock, flags);
  2552. /* Number of inodes in filesystem (at this point in time). */
  2553. sfs->f_files = size;
  2554. /* Free inodes in fs (based on current total count). */
  2555. sfs->f_ffree = __get_nr_free_mft_records(vol, size, max_index);
  2556. up_read(&vol->mftbmp_lock);
  2557. /*
  2558. * File system id. This is extremely *nix flavour dependent and even
  2559. * within Linux itself all fs do their own thing. I interpret this to
  2560. * mean a unique id associated with the mounted fs and not the id
  2561. * associated with the filesystem driver, the latter is already given
  2562. * by the filesystem type in sfs->f_type. Thus we use the 64-bit
  2563. * volume serial number splitting it into two 32-bit parts. We enter
  2564. * the least significant 32-bits in f_fsid[0] and the most significant
  2565. * 32-bits in f_fsid[1].
  2566. */
  2567. sfs->f_fsid.val[0] = vol->serial_no & 0xffffffff;
  2568. sfs->f_fsid.val[1] = (vol->serial_no >> 32) & 0xffffffff;
  2569. /* Maximum length of filenames. */
  2570. sfs->f_namelen = NTFS_MAX_NAME_LEN;
  2571. return 0;
  2572. }
  2573. #ifdef NTFS_RW
  2574. static int ntfs_write_inode(struct inode *vi, struct writeback_control *wbc)
  2575. {
  2576. return __ntfs_write_inode(vi, wbc->sync_mode == WB_SYNC_ALL);
  2577. }
  2578. #endif
  2579. /**
  2580. * The complete super operations.
  2581. */
  2582. static const struct super_operations ntfs_sops = {
  2583. .alloc_inode = ntfs_alloc_big_inode, /* VFS: Allocate new inode. */
  2584. .destroy_inode = ntfs_destroy_big_inode, /* VFS: Deallocate inode. */
  2585. #ifdef NTFS_RW
  2586. .write_inode = ntfs_write_inode, /* VFS: Write dirty inode to
  2587. disk. */
  2588. #endif /* NTFS_RW */
  2589. .put_super = ntfs_put_super, /* Syscall: umount. */
  2590. .statfs = ntfs_statfs, /* Syscall: statfs */
  2591. .remount_fs = ntfs_remount, /* Syscall: mount -o remount. */
  2592. .evict_inode = ntfs_evict_big_inode, /* VFS: Called when an inode is
  2593. removed from memory. */
  2594. .show_options = ntfs_show_options, /* Show mount options in
  2595. proc. */
  2596. };
  2597. /**
  2598. * ntfs_fill_super - mount an ntfs filesystem
  2599. * @sb: super block of ntfs filesystem to mount
  2600. * @opt: string containing the mount options
  2601. * @silent: silence error output
  2602. *
  2603. * ntfs_fill_super() is called by the VFS to mount the device described by @sb
  2604. * with the mount otions in @data with the NTFS filesystem.
  2605. *
  2606. * If @silent is true, remain silent even if errors are detected. This is used
  2607. * during bootup, when the kernel tries to mount the root filesystem with all
  2608. * registered filesystems one after the other until one succeeds. This implies
  2609. * that all filesystems except the correct one will quite correctly and
  2610. * expectedly return an error, but nobody wants to see error messages when in
  2611. * fact this is what is supposed to happen.
  2612. *
  2613. * NOTE: @sb->s_flags contains the mount options flags.
  2614. */
  2615. static int ntfs_fill_super(struct super_block *sb, void *opt, const int silent)
  2616. {
  2617. ntfs_volume *vol;
  2618. struct buffer_head *bh;
  2619. struct inode *tmp_ino;
  2620. int blocksize, result;
  2621. /*
  2622. * We do a pretty difficult piece of bootstrap by reading the
  2623. * MFT (and other metadata) from disk into memory. We'll only
  2624. * release this metadata during umount, so the locking patterns
  2625. * observed during bootstrap do not count. So turn off the
  2626. * observation of locking patterns (strictly for this context
  2627. * only) while mounting NTFS. [The validator is still active
  2628. * otherwise, even for this context: it will for example record
  2629. * lock class registrations.]
  2630. */
  2631. lockdep_off();
  2632. ntfs_debug("Entering.");
  2633. #ifndef NTFS_RW
  2634. sb->s_flags |= MS_RDONLY;
  2635. #endif /* ! NTFS_RW */
  2636. /* Allocate a new ntfs_volume and place it in sb->s_fs_info. */
  2637. sb->s_fs_info = kmalloc(sizeof(ntfs_volume), GFP_NOFS);
  2638. vol = NTFS_SB(sb);
  2639. if (!vol) {
  2640. if (!silent)
  2641. ntfs_error(sb, "Allocation of NTFS volume structure "
  2642. "failed. Aborting mount...");
  2643. lockdep_on();
  2644. return -ENOMEM;
  2645. }
  2646. /* Initialize ntfs_volume structure. */
  2647. *vol = (ntfs_volume) {
  2648. .sb = sb,
  2649. /*
  2650. * Default is group and other don't have any access to files or
  2651. * directories while owner has full access. Further, files by
  2652. * default are not executable but directories are of course
  2653. * browseable.
  2654. */
  2655. .fmask = 0177,
  2656. .dmask = 0077,
  2657. };
  2658. init_rwsem(&vol->mftbmp_lock);
  2659. init_rwsem(&vol->lcnbmp_lock);
  2660. /* By default, enable sparse support. */
  2661. NVolSetSparseEnabled(vol);
  2662. /* Important to get the mount options dealt with now. */
  2663. if (!parse_options(vol, (char*)opt))
  2664. goto err_out_now;
  2665. /* We support sector sizes up to the PAGE_CACHE_SIZE. */
  2666. if (bdev_logical_block_size(sb->s_bdev) > PAGE_CACHE_SIZE) {
  2667. if (!silent)
  2668. ntfs_error(sb, "Device has unsupported sector size "
  2669. "(%i). The maximum supported sector "
  2670. "size on this architecture is %lu "
  2671. "bytes.",
  2672. bdev_logical_block_size(sb->s_bdev),
  2673. PAGE_CACHE_SIZE);
  2674. goto err_out_now;
  2675. }
  2676. /*
  2677. * Setup the device access block size to NTFS_BLOCK_SIZE or the hard
  2678. * sector size, whichever is bigger.
  2679. */
  2680. blocksize = sb_min_blocksize(sb, NTFS_BLOCK_SIZE);
  2681. if (blocksize < NTFS_BLOCK_SIZE) {
  2682. if (!silent)
  2683. ntfs_error(sb, "Unable to set device block size.");
  2684. goto err_out_now;
  2685. }
  2686. BUG_ON(blocksize != sb->s_blocksize);
  2687. ntfs_debug("Set device block size to %i bytes (block size bits %i).",
  2688. blocksize, sb->s_blocksize_bits);
  2689. /* Determine the size of the device in units of block_size bytes. */
  2690. if (!i_size_read(sb->s_bdev->bd_inode)) {
  2691. if (!silent)
  2692. ntfs_error(sb, "Unable to determine device size.");
  2693. goto err_out_now;
  2694. }
  2695. vol->nr_blocks = i_size_read(sb->s_bdev->bd_inode) >>
  2696. sb->s_blocksize_bits;
  2697. /* Read the boot sector and return unlocked buffer head to it. */
  2698. if (!(bh = read_ntfs_boot_sector(sb, silent))) {
  2699. if (!silent)
  2700. ntfs_error(sb, "Not an NTFS volume.");
  2701. goto err_out_now;
  2702. }
  2703. /*
  2704. * Extract the data from the boot sector and setup the ntfs volume
  2705. * using it.
  2706. */
  2707. result = parse_ntfs_boot_sector(vol, (NTFS_BOOT_SECTOR*)bh->b_data);
  2708. brelse(bh);
  2709. if (!result) {
  2710. if (!silent)
  2711. ntfs_error(sb, "Unsupported NTFS filesystem.");
  2712. goto err_out_now;
  2713. }
  2714. /*
  2715. * If the boot sector indicates a sector size bigger than the current
  2716. * device block size, switch the device block size to the sector size.
  2717. * TODO: It may be possible to support this case even when the set
  2718. * below fails, we would just be breaking up the i/o for each sector
  2719. * into multiple blocks for i/o purposes but otherwise it should just
  2720. * work. However it is safer to leave disabled until someone hits this
  2721. * error message and then we can get them to try it without the setting
  2722. * so we know for sure that it works.
  2723. */
  2724. if (vol->sector_size > blocksize) {
  2725. blocksize = sb_set_blocksize(sb, vol->sector_size);
  2726. if (blocksize != vol->sector_size) {
  2727. if (!silent)
  2728. ntfs_error(sb, "Unable to set device block "
  2729. "size to sector size (%i).",
  2730. vol->sector_size);
  2731. goto err_out_now;
  2732. }
  2733. BUG_ON(blocksize != sb->s_blocksize);
  2734. vol->nr_blocks = i_size_read(sb->s_bdev->bd_inode) >>
  2735. sb->s_blocksize_bits;
  2736. ntfs_debug("Changed device block size to %i bytes (block size "
  2737. "bits %i) to match volume sector size.",
  2738. blocksize, sb->s_blocksize_bits);
  2739. }
  2740. /* Initialize the cluster and mft allocators. */
  2741. ntfs_setup_allocators(vol);
  2742. /* Setup remaining fields in the super block. */
  2743. sb->s_magic = NTFS_SB_MAGIC;
  2744. /*
  2745. * Ntfs allows 63 bits for the file size, i.e. correct would be:
  2746. * sb->s_maxbytes = ~0ULL >> 1;
  2747. * But the kernel uses a long as the page cache page index which on
  2748. * 32-bit architectures is only 32-bits. MAX_LFS_FILESIZE is kernel
  2749. * defined to the maximum the page cache page index can cope with
  2750. * without overflowing the index or to 2^63 - 1, whichever is smaller.
  2751. */
  2752. sb->s_maxbytes = MAX_LFS_FILESIZE;
  2753. /* Ntfs measures time in 100ns intervals. */
  2754. sb->s_time_gran = 100;
  2755. /*
  2756. * Now load the metadata required for the page cache and our address
  2757. * space operations to function. We do this by setting up a specialised
  2758. * read_inode method and then just calling the normal iget() to obtain
  2759. * the inode for $MFT which is sufficient to allow our normal inode
  2760. * operations and associated address space operations to function.
  2761. */
  2762. sb->s_op = &ntfs_sops;
  2763. tmp_ino = new_inode(sb);
  2764. if (!tmp_ino) {
  2765. if (!silent)
  2766. ntfs_error(sb, "Failed to load essential metadata.");
  2767. goto err_out_now;
  2768. }
  2769. tmp_ino->i_ino = FILE_MFT;
  2770. insert_inode_hash(tmp_ino);
  2771. if (ntfs_read_inode_mount(tmp_ino) < 0) {
  2772. if (!silent)
  2773. ntfs_error(sb, "Failed to load essential metadata.");
  2774. goto iput_tmp_ino_err_out_now;
  2775. }
  2776. mutex_lock(&ntfs_lock);
  2777. /*
  2778. * The current mount is a compression user if the cluster size is
  2779. * less than or equal 4kiB.
  2780. */
  2781. if (vol->cluster_size <= 4096 && !ntfs_nr_compression_users++) {
  2782. result = allocate_compression_buffers();
  2783. if (result) {
  2784. ntfs_error(NULL, "Failed to allocate buffers "
  2785. "for compression engine.");
  2786. ntfs_nr_compression_users--;
  2787. mutex_unlock(&ntfs_lock);
  2788. goto iput_tmp_ino_err_out_now;
  2789. }
  2790. }
  2791. /*
  2792. * Generate the global default upcase table if necessary. Also
  2793. * temporarily increment the number of upcase users to avoid race
  2794. * conditions with concurrent (u)mounts.
  2795. */
  2796. if (!default_upcase)
  2797. default_upcase = generate_default_upcase();
  2798. ntfs_nr_upcase_users++;
  2799. mutex_unlock(&ntfs_lock);
  2800. /*
  2801. * From now on, ignore @silent parameter. If we fail below this line,
  2802. * it will be due to a corrupt fs or a system error, so we report it.
  2803. */
  2804. /*
  2805. * Open the system files with normal access functions and complete
  2806. * setting up the ntfs super block.
  2807. */
  2808. if (!load_system_files(vol)) {
  2809. ntfs_error(sb, "Failed to load system files.");
  2810. goto unl_upcase_iput_tmp_ino_err_out_now;
  2811. }
  2812. /* We grab a reference, simulating an ntfs_iget(). */
  2813. ihold(vol->root_ino);
  2814. if ((sb->s_root = d_make_root(vol->root_ino))) {
  2815. ntfs_debug("Exiting, status successful.");
  2816. /* Release the default upcase if it has no users. */
  2817. mutex_lock(&ntfs_lock);
  2818. if (!--ntfs_nr_upcase_users && default_upcase) {
  2819. ntfs_free(default_upcase);
  2820. default_upcase = NULL;
  2821. }
  2822. mutex_unlock(&ntfs_lock);
  2823. sb->s_export_op = &ntfs_export_ops;
  2824. lockdep_on();
  2825. return 0;
  2826. }
  2827. ntfs_error(sb, "Failed to allocate root directory.");
  2828. /* Clean up after the successful load_system_files() call from above. */
  2829. // TODO: Use ntfs_put_super() instead of repeating all this code...
  2830. // FIXME: Should mark the volume clean as the error is most likely
  2831. // -ENOMEM.
  2832. iput(vol->vol_ino);
  2833. vol->vol_ino = NULL;
  2834. /* NTFS 3.0+ specific clean up. */
  2835. if (vol->major_ver >= 3) {
  2836. #ifdef NTFS_RW
  2837. if (vol->usnjrnl_j_ino) {
  2838. iput(vol->usnjrnl_j_ino);
  2839. vol->usnjrnl_j_ino = NULL;
  2840. }
  2841. if (vol->usnjrnl_max_ino) {
  2842. iput(vol->usnjrnl_max_ino);
  2843. vol->usnjrnl_max_ino = NULL;
  2844. }
  2845. if (vol->usnjrnl_ino) {
  2846. iput(vol->usnjrnl_ino);
  2847. vol->usnjrnl_ino = NULL;
  2848. }
  2849. if (vol->quota_q_ino) {
  2850. iput(vol->quota_q_ino);
  2851. vol->quota_q_ino = NULL;
  2852. }
  2853. if (vol->quota_ino) {
  2854. iput(vol->quota_ino);
  2855. vol->quota_ino = NULL;
  2856. }
  2857. #endif /* NTFS_RW */
  2858. if (vol->extend_ino) {
  2859. iput(vol->extend_ino);
  2860. vol->extend_ino = NULL;
  2861. }
  2862. if (vol->secure_ino) {
  2863. iput(vol->secure_ino);
  2864. vol->secure_ino = NULL;
  2865. }
  2866. }
  2867. iput(vol->root_ino);
  2868. vol->root_ino = NULL;
  2869. iput(vol->lcnbmp_ino);
  2870. vol->lcnbmp_ino = NULL;
  2871. iput(vol->mftbmp_ino);
  2872. vol->mftbmp_ino = NULL;
  2873. #ifdef NTFS_RW
  2874. if (vol->logfile_ino) {
  2875. iput(vol->logfile_ino);
  2876. vol->logfile_ino = NULL;
  2877. }
  2878. if (vol->mftmirr_ino) {
  2879. iput(vol->mftmirr_ino);
  2880. vol->mftmirr_ino = NULL;
  2881. }
  2882. #endif /* NTFS_RW */
  2883. /* Throw away the table of attribute definitions. */
  2884. vol->attrdef_size = 0;
  2885. if (vol->attrdef) {
  2886. ntfs_free(vol->attrdef);
  2887. vol->attrdef = NULL;
  2888. }
  2889. vol->upcase_len = 0;
  2890. mutex_lock(&ntfs_lock);
  2891. if (vol->upcase == default_upcase) {
  2892. ntfs_nr_upcase_users--;
  2893. vol->upcase = NULL;
  2894. }
  2895. mutex_unlock(&ntfs_lock);
  2896. if (vol->upcase) {
  2897. ntfs_free(vol->upcase);
  2898. vol->upcase = NULL;
  2899. }
  2900. if (vol->nls_map) {
  2901. unload_nls(vol->nls_map);
  2902. vol->nls_map = NULL;
  2903. }
  2904. /* Error exit code path. */
  2905. unl_upcase_iput_tmp_ino_err_out_now:
  2906. /*
  2907. * Decrease the number of upcase users and destroy the global default
  2908. * upcase table if necessary.
  2909. */
  2910. mutex_lock(&ntfs_lock);
  2911. if (!--ntfs_nr_upcase_users && default_upcase) {
  2912. ntfs_free(default_upcase);
  2913. default_upcase = NULL;
  2914. }
  2915. if (vol->cluster_size <= 4096 && !--ntfs_nr_compression_users)
  2916. free_compression_buffers();
  2917. mutex_unlock(&ntfs_lock);
  2918. iput_tmp_ino_err_out_now:
  2919. iput(tmp_ino);
  2920. if (vol->mft_ino && vol->mft_ino != tmp_ino)
  2921. iput(vol->mft_ino);
  2922. vol->mft_ino = NULL;
  2923. /* Errors at this stage are irrelevant. */
  2924. err_out_now:
  2925. sb->s_fs_info = NULL;
  2926. kfree(vol);
  2927. ntfs_debug("Failed, returning -EINVAL.");
  2928. lockdep_on();
  2929. return -EINVAL;
  2930. }
  2931. /*
  2932. * This is a slab cache to optimize allocations and deallocations of Unicode
  2933. * strings of the maximum length allowed by NTFS, which is NTFS_MAX_NAME_LEN
  2934. * (255) Unicode characters + a terminating NULL Unicode character.
  2935. */
  2936. struct kmem_cache *ntfs_name_cache;
  2937. /* Slab caches for efficient allocation/deallocation of inodes. */
  2938. struct kmem_cache *ntfs_inode_cache;
  2939. struct kmem_cache *ntfs_big_inode_cache;
  2940. /* Init once constructor for the inode slab cache. */
  2941. static void ntfs_big_inode_init_once(void *foo)
  2942. {
  2943. ntfs_inode *ni = (ntfs_inode *)foo;
  2944. inode_init_once(VFS_I(ni));
  2945. }
  2946. /*
  2947. * Slab caches to optimize allocations and deallocations of attribute search
  2948. * contexts and index contexts, respectively.
  2949. */
  2950. struct kmem_cache *ntfs_attr_ctx_cache;
  2951. struct kmem_cache *ntfs_index_ctx_cache;
  2952. /* Driver wide mutex. */
  2953. DEFINE_MUTEX(ntfs_lock);
  2954. static struct dentry *ntfs_mount(struct file_system_type *fs_type,
  2955. int flags, const char *dev_name, void *data)
  2956. {
  2957. return mount_bdev(fs_type, flags, dev_name, data, ntfs_fill_super);
  2958. }
  2959. static struct file_system_type ntfs_fs_type = {
  2960. .owner = THIS_MODULE,
  2961. .name = "ntfs",
  2962. .mount = ntfs_mount,
  2963. .kill_sb = kill_block_super,
  2964. .fs_flags = FS_REQUIRES_DEV,
  2965. };
  2966. MODULE_ALIAS_FS("ntfs");
  2967. /* Stable names for the slab caches. */
  2968. static const char ntfs_index_ctx_cache_name[] = "ntfs_index_ctx_cache";
  2969. static const char ntfs_attr_ctx_cache_name[] = "ntfs_attr_ctx_cache";
  2970. static const char ntfs_name_cache_name[] = "ntfs_name_cache";
  2971. static const char ntfs_inode_cache_name[] = "ntfs_inode_cache";
  2972. static const char ntfs_big_inode_cache_name[] = "ntfs_big_inode_cache";
  2973. static int __init init_ntfs_fs(void)
  2974. {
  2975. int err = 0;
  2976. /* This may be ugly but it results in pretty output so who cares. (-8 */
  2977. pr_info("driver " NTFS_VERSION " [Flags: R/"
  2978. #ifdef NTFS_RW
  2979. "W"
  2980. #else
  2981. "O"
  2982. #endif
  2983. #ifdef DEBUG
  2984. " DEBUG"
  2985. #endif
  2986. #ifdef MODULE
  2987. " MODULE"
  2988. #endif
  2989. "].\n");
  2990. ntfs_debug("Debug messages are enabled.");
  2991. ntfs_index_ctx_cache = kmem_cache_create(ntfs_index_ctx_cache_name,
  2992. sizeof(ntfs_index_context), 0 /* offset */,
  2993. SLAB_HWCACHE_ALIGN, NULL /* ctor */);
  2994. if (!ntfs_index_ctx_cache) {
  2995. pr_crit("Failed to create %s!\n", ntfs_index_ctx_cache_name);
  2996. goto ictx_err_out;
  2997. }
  2998. ntfs_attr_ctx_cache = kmem_cache_create(ntfs_attr_ctx_cache_name,
  2999. sizeof(ntfs_attr_search_ctx), 0 /* offset */,
  3000. SLAB_HWCACHE_ALIGN, NULL /* ctor */);
  3001. if (!ntfs_attr_ctx_cache) {
  3002. pr_crit("NTFS: Failed to create %s!\n",
  3003. ntfs_attr_ctx_cache_name);
  3004. goto actx_err_out;
  3005. }
  3006. ntfs_name_cache = kmem_cache_create(ntfs_name_cache_name,
  3007. (NTFS_MAX_NAME_LEN+1) * sizeof(ntfschar), 0,
  3008. SLAB_HWCACHE_ALIGN, NULL);
  3009. if (!ntfs_name_cache) {
  3010. pr_crit("Failed to create %s!\n", ntfs_name_cache_name);
  3011. goto name_err_out;
  3012. }
  3013. ntfs_inode_cache = kmem_cache_create(ntfs_inode_cache_name,
  3014. sizeof(ntfs_inode), 0,
  3015. SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD, NULL);
  3016. if (!ntfs_inode_cache) {
  3017. pr_crit("Failed to create %s!\n", ntfs_inode_cache_name);
  3018. goto inode_err_out;
  3019. }
  3020. ntfs_big_inode_cache = kmem_cache_create(ntfs_big_inode_cache_name,
  3021. sizeof(big_ntfs_inode), 0,
  3022. SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD,
  3023. ntfs_big_inode_init_once);
  3024. if (!ntfs_big_inode_cache) {
  3025. pr_crit("Failed to create %s!\n", ntfs_big_inode_cache_name);
  3026. goto big_inode_err_out;
  3027. }
  3028. /* Register the ntfs sysctls. */
  3029. err = ntfs_sysctl(1);
  3030. if (err) {
  3031. pr_crit("Failed to register NTFS sysctls!\n");
  3032. goto sysctl_err_out;
  3033. }
  3034. err = register_filesystem(&ntfs_fs_type);
  3035. if (!err) {
  3036. ntfs_debug("NTFS driver registered successfully.");
  3037. return 0; /* Success! */
  3038. }
  3039. pr_crit("Failed to register NTFS filesystem driver!\n");
  3040. /* Unregister the ntfs sysctls. */
  3041. ntfs_sysctl(0);
  3042. sysctl_err_out:
  3043. kmem_cache_destroy(ntfs_big_inode_cache);
  3044. big_inode_err_out:
  3045. kmem_cache_destroy(ntfs_inode_cache);
  3046. inode_err_out:
  3047. kmem_cache_destroy(ntfs_name_cache);
  3048. name_err_out:
  3049. kmem_cache_destroy(ntfs_attr_ctx_cache);
  3050. actx_err_out:
  3051. kmem_cache_destroy(ntfs_index_ctx_cache);
  3052. ictx_err_out:
  3053. if (!err) {
  3054. pr_crit("Aborting NTFS filesystem driver registration...\n");
  3055. err = -ENOMEM;
  3056. }
  3057. return err;
  3058. }
  3059. static void __exit exit_ntfs_fs(void)
  3060. {
  3061. ntfs_debug("Unregistering NTFS driver.");
  3062. unregister_filesystem(&ntfs_fs_type);
  3063. /*
  3064. * Make sure all delayed rcu free inodes are flushed before we
  3065. * destroy cache.
  3066. */
  3067. rcu_barrier();
  3068. kmem_cache_destroy(ntfs_big_inode_cache);
  3069. kmem_cache_destroy(ntfs_inode_cache);
  3070. kmem_cache_destroy(ntfs_name_cache);
  3071. kmem_cache_destroy(ntfs_attr_ctx_cache);
  3072. kmem_cache_destroy(ntfs_index_ctx_cache);
  3073. /* Unregister the ntfs sysctls. */
  3074. ntfs_sysctl(0);
  3075. }
  3076. MODULE_AUTHOR("Anton Altaparmakov <anton@tuxera.com>");
  3077. MODULE_DESCRIPTION("NTFS 1.2/3.x driver - Copyright (c) 2001-2014 Anton Altaparmakov and Tuxera Inc.");
  3078. MODULE_VERSION(NTFS_VERSION);
  3079. MODULE_LICENSE("GPL");
  3080. #ifdef DEBUG
  3081. module_param(debug_msgs, bint, 0);
  3082. MODULE_PARM_DESC(debug_msgs, "Enable debug messages.");
  3083. #endif
  3084. module_init(init_ntfs_fs)
  3085. module_exit(exit_ntfs_fs)