super.c 102 KB

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