super.c 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025
  1. /*
  2. * Copyright (C) 2007 Oracle. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public
  6. * License v2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public
  14. * License along with this program; if not, write to the
  15. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  16. * Boston, MA 021110-1307, USA.
  17. */
  18. #include <linux/blkdev.h>
  19. #include <linux/module.h>
  20. #include <linux/buffer_head.h>
  21. #include <linux/fs.h>
  22. #include <linux/pagemap.h>
  23. #include <linux/highmem.h>
  24. #include <linux/time.h>
  25. #include <linux/init.h>
  26. #include <linux/seq_file.h>
  27. #include <linux/string.h>
  28. #include <linux/backing-dev.h>
  29. #include <linux/mount.h>
  30. #include <linux/mpage.h>
  31. #include <linux/swap.h>
  32. #include <linux/writeback.h>
  33. #include <linux/statfs.h>
  34. #include <linux/compat.h>
  35. #include <linux/parser.h>
  36. #include <linux/ctype.h>
  37. #include <linux/namei.h>
  38. #include <linux/miscdevice.h>
  39. #include <linux/magic.h>
  40. #include <linux/slab.h>
  41. #include <linux/cleancache.h>
  42. #include <linux/ratelimit.h>
  43. #include <linux/btrfs.h>
  44. #include "delayed-inode.h"
  45. #include "ctree.h"
  46. #include "disk-io.h"
  47. #include "transaction.h"
  48. #include "btrfs_inode.h"
  49. #include "print-tree.h"
  50. #include "hash.h"
  51. #include "props.h"
  52. #include "xattr.h"
  53. #include "volumes.h"
  54. #include "export.h"
  55. #include "compression.h"
  56. #include "rcu-string.h"
  57. #include "dev-replace.h"
  58. #include "free-space-cache.h"
  59. #include "backref.h"
  60. #include "tests/btrfs-tests.h"
  61. #define CREATE_TRACE_POINTS
  62. #include <trace/events/btrfs.h>
  63. static const struct super_operations btrfs_super_ops;
  64. static struct file_system_type btrfs_fs_type;
  65. static int btrfs_remount(struct super_block *sb, int *flags, char *data);
  66. static const char *btrfs_decode_error(int errno)
  67. {
  68. char *errstr = "unknown";
  69. switch (errno) {
  70. case -EIO:
  71. errstr = "IO failure";
  72. break;
  73. case -ENOMEM:
  74. errstr = "Out of memory";
  75. break;
  76. case -EROFS:
  77. errstr = "Readonly filesystem";
  78. break;
  79. case -EEXIST:
  80. errstr = "Object already exists";
  81. break;
  82. case -ENOSPC:
  83. errstr = "No space left";
  84. break;
  85. case -ENOENT:
  86. errstr = "No such entry";
  87. break;
  88. }
  89. return errstr;
  90. }
  91. static void save_error_info(struct btrfs_fs_info *fs_info)
  92. {
  93. /*
  94. * today we only save the error info into ram. Long term we'll
  95. * also send it down to the disk
  96. */
  97. set_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state);
  98. }
  99. /* btrfs handle error by forcing the filesystem readonly */
  100. static void btrfs_handle_error(struct btrfs_fs_info *fs_info)
  101. {
  102. struct super_block *sb = fs_info->sb;
  103. if (sb->s_flags & MS_RDONLY)
  104. return;
  105. if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state)) {
  106. sb->s_flags |= MS_RDONLY;
  107. btrfs_info(fs_info, "forced readonly");
  108. /*
  109. * Note that a running device replace operation is not
  110. * canceled here although there is no way to update
  111. * the progress. It would add the risk of a deadlock,
  112. * therefore the canceling is ommited. The only penalty
  113. * is that some I/O remains active until the procedure
  114. * completes. The next time when the filesystem is
  115. * mounted writeable again, the device replace
  116. * operation continues.
  117. */
  118. }
  119. }
  120. #ifdef CONFIG_PRINTK
  121. /*
  122. * __btrfs_std_error decodes expected errors from the caller and
  123. * invokes the approciate error response.
  124. */
  125. void __btrfs_std_error(struct btrfs_fs_info *fs_info, const char *function,
  126. unsigned int line, int errno, const char *fmt, ...)
  127. {
  128. struct super_block *sb = fs_info->sb;
  129. const char *errstr;
  130. /*
  131. * Special case: if the error is EROFS, and we're already
  132. * under MS_RDONLY, then it is safe here.
  133. */
  134. if (errno == -EROFS && (sb->s_flags & MS_RDONLY))
  135. return;
  136. errstr = btrfs_decode_error(errno);
  137. if (fmt) {
  138. struct va_format vaf;
  139. va_list args;
  140. va_start(args, fmt);
  141. vaf.fmt = fmt;
  142. vaf.va = &args;
  143. printk(KERN_CRIT
  144. "BTRFS: error (device %s) in %s:%d: errno=%d %s (%pV)\n",
  145. sb->s_id, function, line, errno, errstr, &vaf);
  146. va_end(args);
  147. } else {
  148. printk(KERN_CRIT "BTRFS: error (device %s) in %s:%d: errno=%d %s\n",
  149. sb->s_id, function, line, errno, errstr);
  150. }
  151. /* Don't go through full error handling during mount */
  152. save_error_info(fs_info);
  153. if (sb->s_flags & MS_BORN)
  154. btrfs_handle_error(fs_info);
  155. }
  156. static const char * const logtypes[] = {
  157. "emergency",
  158. "alert",
  159. "critical",
  160. "error",
  161. "warning",
  162. "notice",
  163. "info",
  164. "debug",
  165. };
  166. void btrfs_printk(const struct btrfs_fs_info *fs_info, const char *fmt, ...)
  167. {
  168. struct super_block *sb = fs_info->sb;
  169. char lvl[4];
  170. struct va_format vaf;
  171. va_list args;
  172. const char *type = logtypes[4];
  173. int kern_level;
  174. va_start(args, fmt);
  175. kern_level = printk_get_level(fmt);
  176. if (kern_level) {
  177. size_t size = printk_skip_level(fmt) - fmt;
  178. memcpy(lvl, fmt, size);
  179. lvl[size] = '\0';
  180. fmt += size;
  181. type = logtypes[kern_level - '0'];
  182. } else
  183. *lvl = '\0';
  184. vaf.fmt = fmt;
  185. vaf.va = &args;
  186. printk("%sBTRFS %s (device %s): %pV\n", lvl, type, sb->s_id, &vaf);
  187. va_end(args);
  188. }
  189. #else
  190. void __btrfs_std_error(struct btrfs_fs_info *fs_info, const char *function,
  191. unsigned int line, int errno, const char *fmt, ...)
  192. {
  193. struct super_block *sb = fs_info->sb;
  194. /*
  195. * Special case: if the error is EROFS, and we're already
  196. * under MS_RDONLY, then it is safe here.
  197. */
  198. if (errno == -EROFS && (sb->s_flags & MS_RDONLY))
  199. return;
  200. /* Don't go through full error handling during mount */
  201. if (sb->s_flags & MS_BORN) {
  202. save_error_info(fs_info);
  203. btrfs_handle_error(fs_info);
  204. }
  205. }
  206. #endif
  207. /*
  208. * We only mark the transaction aborted and then set the file system read-only.
  209. * This will prevent new transactions from starting or trying to join this
  210. * one.
  211. *
  212. * This means that error recovery at the call site is limited to freeing
  213. * any local memory allocations and passing the error code up without
  214. * further cleanup. The transaction should complete as it normally would
  215. * in the call path but will return -EIO.
  216. *
  217. * We'll complete the cleanup in btrfs_end_transaction and
  218. * btrfs_commit_transaction.
  219. */
  220. void __btrfs_abort_transaction(struct btrfs_trans_handle *trans,
  221. struct btrfs_root *root, const char *function,
  222. unsigned int line, int errno)
  223. {
  224. /*
  225. * Report first abort since mount
  226. */
  227. if (!test_and_set_bit(BTRFS_FS_STATE_TRANS_ABORTED,
  228. &root->fs_info->fs_state)) {
  229. WARN(1, KERN_DEBUG "BTRFS: Transaction aborted (error %d)\n",
  230. errno);
  231. }
  232. trans->aborted = errno;
  233. /* Nothing used. The other threads that have joined this
  234. * transaction may be able to continue. */
  235. if (!trans->blocks_used) {
  236. const char *errstr;
  237. errstr = btrfs_decode_error(errno);
  238. btrfs_warn(root->fs_info,
  239. "%s:%d: Aborting unused transaction(%s).",
  240. function, line, errstr);
  241. return;
  242. }
  243. ACCESS_ONCE(trans->transaction->aborted) = errno;
  244. /* Wake up anybody who may be waiting on this transaction */
  245. wake_up(&root->fs_info->transaction_wait);
  246. wake_up(&root->fs_info->transaction_blocked_wait);
  247. __btrfs_std_error(root->fs_info, function, line, errno, NULL);
  248. }
  249. /*
  250. * __btrfs_panic decodes unexpected, fatal errors from the caller,
  251. * issues an alert, and either panics or BUGs, depending on mount options.
  252. */
  253. void __btrfs_panic(struct btrfs_fs_info *fs_info, const char *function,
  254. unsigned int line, int errno, const char *fmt, ...)
  255. {
  256. char *s_id = "<unknown>";
  257. const char *errstr;
  258. struct va_format vaf = { .fmt = fmt };
  259. va_list args;
  260. if (fs_info)
  261. s_id = fs_info->sb->s_id;
  262. va_start(args, fmt);
  263. vaf.va = &args;
  264. errstr = btrfs_decode_error(errno);
  265. if (fs_info && (fs_info->mount_opt & BTRFS_MOUNT_PANIC_ON_FATAL_ERROR))
  266. panic(KERN_CRIT "BTRFS panic (device %s) in %s:%d: %pV (errno=%d %s)\n",
  267. s_id, function, line, &vaf, errno, errstr);
  268. btrfs_crit(fs_info, "panic in %s:%d: %pV (errno=%d %s)",
  269. function, line, &vaf, errno, errstr);
  270. va_end(args);
  271. /* Caller calls BUG() */
  272. }
  273. static void btrfs_put_super(struct super_block *sb)
  274. {
  275. (void)close_ctree(btrfs_sb(sb)->tree_root);
  276. /* FIXME: need to fix VFS to return error? */
  277. /* AV: return it _where_? ->put_super() can be triggered by any number
  278. * of async events, up to and including delivery of SIGKILL to the
  279. * last process that kept it busy. Or segfault in the aforementioned
  280. * process... Whom would you report that to?
  281. */
  282. }
  283. enum {
  284. Opt_degraded, Opt_subvol, Opt_subvolid, Opt_device, Opt_nodatasum,
  285. Opt_nodatacow, Opt_max_inline, Opt_alloc_start, Opt_nobarrier, Opt_ssd,
  286. Opt_nossd, Opt_ssd_spread, Opt_thread_pool, Opt_noacl, Opt_compress,
  287. Opt_compress_type, Opt_compress_force, Opt_compress_force_type,
  288. Opt_notreelog, Opt_ratio, Opt_flushoncommit, Opt_discard,
  289. Opt_space_cache, Opt_clear_cache, Opt_user_subvol_rm_allowed,
  290. Opt_enospc_debug, Opt_subvolrootid, Opt_defrag, Opt_inode_cache,
  291. Opt_no_space_cache, Opt_recovery, Opt_skip_balance,
  292. Opt_check_integrity, Opt_check_integrity_including_extent_data,
  293. Opt_check_integrity_print_mask, Opt_fatal_errors, Opt_rescan_uuid_tree,
  294. Opt_commit_interval, Opt_barrier, Opt_nodefrag, Opt_nodiscard,
  295. Opt_noenospc_debug, Opt_noflushoncommit, Opt_acl, Opt_datacow,
  296. Opt_datasum, Opt_treelog, Opt_noinode_cache,
  297. Opt_err,
  298. };
  299. static match_table_t tokens = {
  300. {Opt_degraded, "degraded"},
  301. {Opt_subvol, "subvol=%s"},
  302. {Opt_subvolid, "subvolid=%s"},
  303. {Opt_device, "device=%s"},
  304. {Opt_nodatasum, "nodatasum"},
  305. {Opt_datasum, "datasum"},
  306. {Opt_nodatacow, "nodatacow"},
  307. {Opt_datacow, "datacow"},
  308. {Opt_nobarrier, "nobarrier"},
  309. {Opt_barrier, "barrier"},
  310. {Opt_max_inline, "max_inline=%s"},
  311. {Opt_alloc_start, "alloc_start=%s"},
  312. {Opt_thread_pool, "thread_pool=%d"},
  313. {Opt_compress, "compress"},
  314. {Opt_compress_type, "compress=%s"},
  315. {Opt_compress_force, "compress-force"},
  316. {Opt_compress_force_type, "compress-force=%s"},
  317. {Opt_ssd, "ssd"},
  318. {Opt_ssd_spread, "ssd_spread"},
  319. {Opt_nossd, "nossd"},
  320. {Opt_acl, "acl"},
  321. {Opt_noacl, "noacl"},
  322. {Opt_notreelog, "notreelog"},
  323. {Opt_treelog, "treelog"},
  324. {Opt_flushoncommit, "flushoncommit"},
  325. {Opt_noflushoncommit, "noflushoncommit"},
  326. {Opt_ratio, "metadata_ratio=%d"},
  327. {Opt_discard, "discard"},
  328. {Opt_nodiscard, "nodiscard"},
  329. {Opt_space_cache, "space_cache"},
  330. {Opt_clear_cache, "clear_cache"},
  331. {Opt_user_subvol_rm_allowed, "user_subvol_rm_allowed"},
  332. {Opt_enospc_debug, "enospc_debug"},
  333. {Opt_noenospc_debug, "noenospc_debug"},
  334. {Opt_subvolrootid, "subvolrootid=%d"},
  335. {Opt_defrag, "autodefrag"},
  336. {Opt_nodefrag, "noautodefrag"},
  337. {Opt_inode_cache, "inode_cache"},
  338. {Opt_noinode_cache, "noinode_cache"},
  339. {Opt_no_space_cache, "nospace_cache"},
  340. {Opt_recovery, "recovery"},
  341. {Opt_skip_balance, "skip_balance"},
  342. {Opt_check_integrity, "check_int"},
  343. {Opt_check_integrity_including_extent_data, "check_int_data"},
  344. {Opt_check_integrity_print_mask, "check_int_print_mask=%d"},
  345. {Opt_rescan_uuid_tree, "rescan_uuid_tree"},
  346. {Opt_fatal_errors, "fatal_errors=%s"},
  347. {Opt_commit_interval, "commit=%d"},
  348. {Opt_err, NULL},
  349. };
  350. #define btrfs_set_and_info(root, opt, fmt, args...) \
  351. { \
  352. if (!btrfs_test_opt(root, opt)) \
  353. btrfs_info(root->fs_info, fmt, ##args); \
  354. btrfs_set_opt(root->fs_info->mount_opt, opt); \
  355. }
  356. #define btrfs_clear_and_info(root, opt, fmt, args...) \
  357. { \
  358. if (btrfs_test_opt(root, opt)) \
  359. btrfs_info(root->fs_info, fmt, ##args); \
  360. btrfs_clear_opt(root->fs_info->mount_opt, opt); \
  361. }
  362. /*
  363. * Regular mount options parser. Everything that is needed only when
  364. * reading in a new superblock is parsed here.
  365. * XXX JDM: This needs to be cleaned up for remount.
  366. */
  367. int btrfs_parse_options(struct btrfs_root *root, char *options)
  368. {
  369. struct btrfs_fs_info *info = root->fs_info;
  370. substring_t args[MAX_OPT_ARGS];
  371. char *p, *num, *orig = NULL;
  372. u64 cache_gen;
  373. int intarg;
  374. int ret = 0;
  375. char *compress_type;
  376. bool compress_force = false;
  377. bool compress = false;
  378. cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
  379. if (cache_gen)
  380. btrfs_set_opt(info->mount_opt, SPACE_CACHE);
  381. if (!options)
  382. goto out;
  383. /*
  384. * strsep changes the string, duplicate it because parse_options
  385. * gets called twice
  386. */
  387. options = kstrdup(options, GFP_NOFS);
  388. if (!options)
  389. return -ENOMEM;
  390. orig = options;
  391. while ((p = strsep(&options, ",")) != NULL) {
  392. int token;
  393. if (!*p)
  394. continue;
  395. token = match_token(p, tokens, args);
  396. switch (token) {
  397. case Opt_degraded:
  398. btrfs_info(root->fs_info, "allowing degraded mounts");
  399. btrfs_set_opt(info->mount_opt, DEGRADED);
  400. break;
  401. case Opt_subvol:
  402. case Opt_subvolid:
  403. case Opt_subvolrootid:
  404. case Opt_device:
  405. /*
  406. * These are parsed by btrfs_parse_early_options
  407. * and can be happily ignored here.
  408. */
  409. break;
  410. case Opt_nodatasum:
  411. btrfs_set_and_info(root, NODATASUM,
  412. "setting nodatasum");
  413. break;
  414. case Opt_datasum:
  415. if (btrfs_test_opt(root, NODATASUM)) {
  416. if (btrfs_test_opt(root, NODATACOW))
  417. btrfs_info(root->fs_info, "setting datasum, datacow enabled");
  418. else
  419. btrfs_info(root->fs_info, "setting datasum");
  420. }
  421. btrfs_clear_opt(info->mount_opt, NODATACOW);
  422. btrfs_clear_opt(info->mount_opt, NODATASUM);
  423. break;
  424. case Opt_nodatacow:
  425. if (!btrfs_test_opt(root, NODATACOW)) {
  426. if (!btrfs_test_opt(root, COMPRESS) ||
  427. !btrfs_test_opt(root, FORCE_COMPRESS)) {
  428. btrfs_info(root->fs_info,
  429. "setting nodatacow, compression disabled");
  430. } else {
  431. btrfs_info(root->fs_info, "setting nodatacow");
  432. }
  433. }
  434. btrfs_clear_opt(info->mount_opt, COMPRESS);
  435. btrfs_clear_opt(info->mount_opt, FORCE_COMPRESS);
  436. btrfs_set_opt(info->mount_opt, NODATACOW);
  437. btrfs_set_opt(info->mount_opt, NODATASUM);
  438. break;
  439. case Opt_datacow:
  440. btrfs_clear_and_info(root, NODATACOW,
  441. "setting datacow");
  442. break;
  443. case Opt_compress_force:
  444. case Opt_compress_force_type:
  445. compress_force = true;
  446. /* Fallthrough */
  447. case Opt_compress:
  448. case Opt_compress_type:
  449. compress = true;
  450. if (token == Opt_compress ||
  451. token == Opt_compress_force ||
  452. strcmp(args[0].from, "zlib") == 0) {
  453. compress_type = "zlib";
  454. info->compress_type = BTRFS_COMPRESS_ZLIB;
  455. btrfs_set_opt(info->mount_opt, COMPRESS);
  456. btrfs_clear_opt(info->mount_opt, NODATACOW);
  457. btrfs_clear_opt(info->mount_opt, NODATASUM);
  458. } else if (strcmp(args[0].from, "lzo") == 0) {
  459. compress_type = "lzo";
  460. info->compress_type = BTRFS_COMPRESS_LZO;
  461. btrfs_set_opt(info->mount_opt, COMPRESS);
  462. btrfs_clear_opt(info->mount_opt, NODATACOW);
  463. btrfs_clear_opt(info->mount_opt, NODATASUM);
  464. btrfs_set_fs_incompat(info, COMPRESS_LZO);
  465. } else if (strncmp(args[0].from, "no", 2) == 0) {
  466. compress_type = "no";
  467. btrfs_clear_opt(info->mount_opt, COMPRESS);
  468. btrfs_clear_opt(info->mount_opt, FORCE_COMPRESS);
  469. compress_force = false;
  470. } else {
  471. ret = -EINVAL;
  472. goto out;
  473. }
  474. if (compress_force) {
  475. btrfs_set_and_info(root, FORCE_COMPRESS,
  476. "force %s compression",
  477. compress_type);
  478. } else if (compress) {
  479. if (!btrfs_test_opt(root, COMPRESS))
  480. btrfs_info(root->fs_info,
  481. "btrfs: use %s compression\n",
  482. compress_type);
  483. }
  484. break;
  485. case Opt_ssd:
  486. btrfs_set_and_info(root, SSD,
  487. "use ssd allocation scheme");
  488. break;
  489. case Opt_ssd_spread:
  490. btrfs_set_and_info(root, SSD_SPREAD,
  491. "use spread ssd allocation scheme");
  492. break;
  493. case Opt_nossd:
  494. btrfs_clear_and_info(root, NOSSD,
  495. "not using ssd allocation scheme");
  496. btrfs_clear_opt(info->mount_opt, SSD);
  497. break;
  498. case Opt_barrier:
  499. btrfs_clear_and_info(root, NOBARRIER,
  500. "turning on barriers");
  501. break;
  502. case Opt_nobarrier:
  503. btrfs_set_and_info(root, NOBARRIER,
  504. "turning off barriers");
  505. break;
  506. case Opt_thread_pool:
  507. ret = match_int(&args[0], &intarg);
  508. if (ret) {
  509. goto out;
  510. } else if (intarg > 0) {
  511. info->thread_pool_size = intarg;
  512. } else {
  513. ret = -EINVAL;
  514. goto out;
  515. }
  516. break;
  517. case Opt_max_inline:
  518. num = match_strdup(&args[0]);
  519. if (num) {
  520. info->max_inline = memparse(num, NULL);
  521. kfree(num);
  522. if (info->max_inline) {
  523. info->max_inline = min_t(u64,
  524. info->max_inline,
  525. root->sectorsize);
  526. }
  527. btrfs_info(root->fs_info, "max_inline at %llu",
  528. info->max_inline);
  529. } else {
  530. ret = -ENOMEM;
  531. goto out;
  532. }
  533. break;
  534. case Opt_alloc_start:
  535. num = match_strdup(&args[0]);
  536. if (num) {
  537. mutex_lock(&info->chunk_mutex);
  538. info->alloc_start = memparse(num, NULL);
  539. mutex_unlock(&info->chunk_mutex);
  540. kfree(num);
  541. btrfs_info(root->fs_info, "allocations start at %llu",
  542. info->alloc_start);
  543. } else {
  544. ret = -ENOMEM;
  545. goto out;
  546. }
  547. break;
  548. case Opt_acl:
  549. root->fs_info->sb->s_flags |= MS_POSIXACL;
  550. break;
  551. case Opt_noacl:
  552. root->fs_info->sb->s_flags &= ~MS_POSIXACL;
  553. break;
  554. case Opt_notreelog:
  555. btrfs_set_and_info(root, NOTREELOG,
  556. "disabling tree log");
  557. break;
  558. case Opt_treelog:
  559. btrfs_clear_and_info(root, NOTREELOG,
  560. "enabling tree log");
  561. break;
  562. case Opt_flushoncommit:
  563. btrfs_set_and_info(root, FLUSHONCOMMIT,
  564. "turning on flush-on-commit");
  565. break;
  566. case Opt_noflushoncommit:
  567. btrfs_clear_and_info(root, FLUSHONCOMMIT,
  568. "turning off flush-on-commit");
  569. break;
  570. case Opt_ratio:
  571. ret = match_int(&args[0], &intarg);
  572. if (ret) {
  573. goto out;
  574. } else if (intarg >= 0) {
  575. info->metadata_ratio = intarg;
  576. btrfs_info(root->fs_info, "metadata ratio %d",
  577. info->metadata_ratio);
  578. } else {
  579. ret = -EINVAL;
  580. goto out;
  581. }
  582. break;
  583. case Opt_discard:
  584. btrfs_set_and_info(root, DISCARD,
  585. "turning on discard");
  586. break;
  587. case Opt_nodiscard:
  588. btrfs_clear_and_info(root, DISCARD,
  589. "turning off discard");
  590. break;
  591. case Opt_space_cache:
  592. btrfs_set_and_info(root, SPACE_CACHE,
  593. "enabling disk space caching");
  594. break;
  595. case Opt_rescan_uuid_tree:
  596. btrfs_set_opt(info->mount_opt, RESCAN_UUID_TREE);
  597. break;
  598. case Opt_no_space_cache:
  599. btrfs_clear_and_info(root, SPACE_CACHE,
  600. "disabling disk space caching");
  601. break;
  602. case Opt_inode_cache:
  603. btrfs_set_and_info(root, CHANGE_INODE_CACHE,
  604. "enabling inode map caching");
  605. break;
  606. case Opt_noinode_cache:
  607. btrfs_clear_and_info(root, CHANGE_INODE_CACHE,
  608. "disabling inode map caching");
  609. break;
  610. case Opt_clear_cache:
  611. btrfs_set_and_info(root, CLEAR_CACHE,
  612. "force clearing of disk cache");
  613. break;
  614. case Opt_user_subvol_rm_allowed:
  615. btrfs_set_opt(info->mount_opt, USER_SUBVOL_RM_ALLOWED);
  616. break;
  617. case Opt_enospc_debug:
  618. btrfs_set_opt(info->mount_opt, ENOSPC_DEBUG);
  619. break;
  620. case Opt_noenospc_debug:
  621. btrfs_clear_opt(info->mount_opt, ENOSPC_DEBUG);
  622. break;
  623. case Opt_defrag:
  624. btrfs_set_and_info(root, AUTO_DEFRAG,
  625. "enabling auto defrag");
  626. break;
  627. case Opt_nodefrag:
  628. btrfs_clear_and_info(root, AUTO_DEFRAG,
  629. "disabling auto defrag");
  630. break;
  631. case Opt_recovery:
  632. btrfs_info(root->fs_info, "enabling auto recovery");
  633. btrfs_set_opt(info->mount_opt, RECOVERY);
  634. break;
  635. case Opt_skip_balance:
  636. btrfs_set_opt(info->mount_opt, SKIP_BALANCE);
  637. break;
  638. #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
  639. case Opt_check_integrity_including_extent_data:
  640. btrfs_info(root->fs_info,
  641. "enabling check integrity including extent data");
  642. btrfs_set_opt(info->mount_opt,
  643. CHECK_INTEGRITY_INCLUDING_EXTENT_DATA);
  644. btrfs_set_opt(info->mount_opt, CHECK_INTEGRITY);
  645. break;
  646. case Opt_check_integrity:
  647. btrfs_info(root->fs_info, "enabling check integrity");
  648. btrfs_set_opt(info->mount_opt, CHECK_INTEGRITY);
  649. break;
  650. case Opt_check_integrity_print_mask:
  651. ret = match_int(&args[0], &intarg);
  652. if (ret) {
  653. goto out;
  654. } else if (intarg >= 0) {
  655. info->check_integrity_print_mask = intarg;
  656. btrfs_info(root->fs_info, "check_integrity_print_mask 0x%x",
  657. info->check_integrity_print_mask);
  658. } else {
  659. ret = -EINVAL;
  660. goto out;
  661. }
  662. break;
  663. #else
  664. case Opt_check_integrity_including_extent_data:
  665. case Opt_check_integrity:
  666. case Opt_check_integrity_print_mask:
  667. btrfs_err(root->fs_info,
  668. "support for check_integrity* not compiled in!");
  669. ret = -EINVAL;
  670. goto out;
  671. #endif
  672. case Opt_fatal_errors:
  673. if (strcmp(args[0].from, "panic") == 0)
  674. btrfs_set_opt(info->mount_opt,
  675. PANIC_ON_FATAL_ERROR);
  676. else if (strcmp(args[0].from, "bug") == 0)
  677. btrfs_clear_opt(info->mount_opt,
  678. PANIC_ON_FATAL_ERROR);
  679. else {
  680. ret = -EINVAL;
  681. goto out;
  682. }
  683. break;
  684. case Opt_commit_interval:
  685. intarg = 0;
  686. ret = match_int(&args[0], &intarg);
  687. if (ret < 0) {
  688. btrfs_err(root->fs_info, "invalid commit interval");
  689. ret = -EINVAL;
  690. goto out;
  691. }
  692. if (intarg > 0) {
  693. if (intarg > 300) {
  694. btrfs_warn(root->fs_info, "excessive commit interval %d",
  695. intarg);
  696. }
  697. info->commit_interval = intarg;
  698. } else {
  699. btrfs_info(root->fs_info, "using default commit interval %ds",
  700. BTRFS_DEFAULT_COMMIT_INTERVAL);
  701. info->commit_interval = BTRFS_DEFAULT_COMMIT_INTERVAL;
  702. }
  703. break;
  704. case Opt_err:
  705. btrfs_info(root->fs_info, "unrecognized mount option '%s'", p);
  706. ret = -EINVAL;
  707. goto out;
  708. default:
  709. break;
  710. }
  711. }
  712. out:
  713. if (!ret && btrfs_test_opt(root, SPACE_CACHE))
  714. btrfs_info(root->fs_info, "disk space caching is enabled");
  715. kfree(orig);
  716. return ret;
  717. }
  718. /*
  719. * Parse mount options that are required early in the mount process.
  720. *
  721. * All other options will be parsed on much later in the mount process and
  722. * only when we need to allocate a new super block.
  723. */
  724. static int btrfs_parse_early_options(const char *options, fmode_t flags,
  725. void *holder, char **subvol_name, u64 *subvol_objectid,
  726. struct btrfs_fs_devices **fs_devices)
  727. {
  728. substring_t args[MAX_OPT_ARGS];
  729. char *device_name, *opts, *orig, *p;
  730. char *num = NULL;
  731. int error = 0;
  732. if (!options)
  733. return 0;
  734. /*
  735. * strsep changes the string, duplicate it because parse_options
  736. * gets called twice
  737. */
  738. opts = kstrdup(options, GFP_KERNEL);
  739. if (!opts)
  740. return -ENOMEM;
  741. orig = opts;
  742. while ((p = strsep(&opts, ",")) != NULL) {
  743. int token;
  744. if (!*p)
  745. continue;
  746. token = match_token(p, tokens, args);
  747. switch (token) {
  748. case Opt_subvol:
  749. kfree(*subvol_name);
  750. *subvol_name = match_strdup(&args[0]);
  751. if (!*subvol_name) {
  752. error = -ENOMEM;
  753. goto out;
  754. }
  755. break;
  756. case Opt_subvolid:
  757. num = match_strdup(&args[0]);
  758. if (num) {
  759. *subvol_objectid = memparse(num, NULL);
  760. kfree(num);
  761. /* we want the original fs_tree */
  762. if (!*subvol_objectid)
  763. *subvol_objectid =
  764. BTRFS_FS_TREE_OBJECTID;
  765. } else {
  766. error = -EINVAL;
  767. goto out;
  768. }
  769. break;
  770. case Opt_subvolrootid:
  771. printk(KERN_WARNING
  772. "BTRFS: 'subvolrootid' mount option is deprecated and has "
  773. "no effect\n");
  774. break;
  775. case Opt_device:
  776. device_name = match_strdup(&args[0]);
  777. if (!device_name) {
  778. error = -ENOMEM;
  779. goto out;
  780. }
  781. error = btrfs_scan_one_device(device_name,
  782. flags, holder, fs_devices);
  783. kfree(device_name);
  784. if (error)
  785. goto out;
  786. break;
  787. default:
  788. break;
  789. }
  790. }
  791. out:
  792. kfree(orig);
  793. return error;
  794. }
  795. static struct dentry *get_default_root(struct super_block *sb,
  796. u64 subvol_objectid)
  797. {
  798. struct btrfs_fs_info *fs_info = btrfs_sb(sb);
  799. struct btrfs_root *root = fs_info->tree_root;
  800. struct btrfs_root *new_root;
  801. struct btrfs_dir_item *di;
  802. struct btrfs_path *path;
  803. struct btrfs_key location;
  804. struct inode *inode;
  805. struct dentry *dentry;
  806. u64 dir_id;
  807. int new = 0;
  808. /*
  809. * We have a specific subvol we want to mount, just setup location and
  810. * go look up the root.
  811. */
  812. if (subvol_objectid) {
  813. location.objectid = subvol_objectid;
  814. location.type = BTRFS_ROOT_ITEM_KEY;
  815. location.offset = (u64)-1;
  816. goto find_root;
  817. }
  818. path = btrfs_alloc_path();
  819. if (!path)
  820. return ERR_PTR(-ENOMEM);
  821. path->leave_spinning = 1;
  822. /*
  823. * Find the "default" dir item which points to the root item that we
  824. * will mount by default if we haven't been given a specific subvolume
  825. * to mount.
  826. */
  827. dir_id = btrfs_super_root_dir(fs_info->super_copy);
  828. di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0);
  829. if (IS_ERR(di)) {
  830. btrfs_free_path(path);
  831. return ERR_CAST(di);
  832. }
  833. if (!di) {
  834. /*
  835. * Ok the default dir item isn't there. This is weird since
  836. * it's always been there, but don't freak out, just try and
  837. * mount to root most subvolume.
  838. */
  839. btrfs_free_path(path);
  840. dir_id = BTRFS_FIRST_FREE_OBJECTID;
  841. new_root = fs_info->fs_root;
  842. goto setup_root;
  843. }
  844. btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
  845. btrfs_free_path(path);
  846. find_root:
  847. new_root = btrfs_read_fs_root_no_name(fs_info, &location);
  848. if (IS_ERR(new_root))
  849. return ERR_CAST(new_root);
  850. dir_id = btrfs_root_dirid(&new_root->root_item);
  851. setup_root:
  852. location.objectid = dir_id;
  853. location.type = BTRFS_INODE_ITEM_KEY;
  854. location.offset = 0;
  855. inode = btrfs_iget(sb, &location, new_root, &new);
  856. if (IS_ERR(inode))
  857. return ERR_CAST(inode);
  858. /*
  859. * If we're just mounting the root most subvol put the inode and return
  860. * a reference to the dentry. We will have already gotten a reference
  861. * to the inode in btrfs_fill_super so we're good to go.
  862. */
  863. if (!new && sb->s_root->d_inode == inode) {
  864. iput(inode);
  865. return dget(sb->s_root);
  866. }
  867. dentry = d_obtain_alias(inode);
  868. if (!IS_ERR(dentry)) {
  869. spin_lock(&dentry->d_lock);
  870. dentry->d_flags &= ~DCACHE_DISCONNECTED;
  871. spin_unlock(&dentry->d_lock);
  872. }
  873. return dentry;
  874. }
  875. static int btrfs_fill_super(struct super_block *sb,
  876. struct btrfs_fs_devices *fs_devices,
  877. void *data, int silent)
  878. {
  879. struct inode *inode;
  880. struct btrfs_fs_info *fs_info = btrfs_sb(sb);
  881. struct btrfs_key key;
  882. int err;
  883. sb->s_maxbytes = MAX_LFS_FILESIZE;
  884. sb->s_magic = BTRFS_SUPER_MAGIC;
  885. sb->s_op = &btrfs_super_ops;
  886. sb->s_d_op = &btrfs_dentry_operations;
  887. sb->s_export_op = &btrfs_export_ops;
  888. sb->s_xattr = btrfs_xattr_handlers;
  889. sb->s_time_gran = 1;
  890. #ifdef CONFIG_BTRFS_FS_POSIX_ACL
  891. sb->s_flags |= MS_POSIXACL;
  892. #endif
  893. sb->s_flags |= MS_I_VERSION;
  894. err = open_ctree(sb, fs_devices, (char *)data);
  895. if (err) {
  896. printk(KERN_ERR "BTRFS: open_ctree failed\n");
  897. return err;
  898. }
  899. key.objectid = BTRFS_FIRST_FREE_OBJECTID;
  900. key.type = BTRFS_INODE_ITEM_KEY;
  901. key.offset = 0;
  902. inode = btrfs_iget(sb, &key, fs_info->fs_root, NULL);
  903. if (IS_ERR(inode)) {
  904. err = PTR_ERR(inode);
  905. goto fail_close;
  906. }
  907. sb->s_root = d_make_root(inode);
  908. if (!sb->s_root) {
  909. err = -ENOMEM;
  910. goto fail_close;
  911. }
  912. save_mount_options(sb, data);
  913. cleancache_init_fs(sb);
  914. sb->s_flags |= MS_ACTIVE;
  915. return 0;
  916. fail_close:
  917. close_ctree(fs_info->tree_root);
  918. return err;
  919. }
  920. int btrfs_sync_fs(struct super_block *sb, int wait)
  921. {
  922. struct btrfs_trans_handle *trans;
  923. struct btrfs_fs_info *fs_info = btrfs_sb(sb);
  924. struct btrfs_root *root = fs_info->tree_root;
  925. trace_btrfs_sync_fs(wait);
  926. if (!wait) {
  927. filemap_flush(fs_info->btree_inode->i_mapping);
  928. return 0;
  929. }
  930. btrfs_wait_ordered_roots(fs_info, -1);
  931. trans = btrfs_attach_transaction_barrier(root);
  932. if (IS_ERR(trans)) {
  933. /* no transaction, don't bother */
  934. if (PTR_ERR(trans) == -ENOENT)
  935. return 0;
  936. return PTR_ERR(trans);
  937. }
  938. return btrfs_commit_transaction(trans, root);
  939. }
  940. static int btrfs_show_options(struct seq_file *seq, struct dentry *dentry)
  941. {
  942. struct btrfs_fs_info *info = btrfs_sb(dentry->d_sb);
  943. struct btrfs_root *root = info->tree_root;
  944. char *compress_type;
  945. if (btrfs_test_opt(root, DEGRADED))
  946. seq_puts(seq, ",degraded");
  947. if (btrfs_test_opt(root, NODATASUM))
  948. seq_puts(seq, ",nodatasum");
  949. if (btrfs_test_opt(root, NODATACOW))
  950. seq_puts(seq, ",nodatacow");
  951. if (btrfs_test_opt(root, NOBARRIER))
  952. seq_puts(seq, ",nobarrier");
  953. if (info->max_inline != 8192 * 1024)
  954. seq_printf(seq, ",max_inline=%llu", info->max_inline);
  955. if (info->alloc_start != 0)
  956. seq_printf(seq, ",alloc_start=%llu", info->alloc_start);
  957. if (info->thread_pool_size != min_t(unsigned long,
  958. num_online_cpus() + 2, 8))
  959. seq_printf(seq, ",thread_pool=%d", info->thread_pool_size);
  960. if (btrfs_test_opt(root, COMPRESS)) {
  961. if (info->compress_type == BTRFS_COMPRESS_ZLIB)
  962. compress_type = "zlib";
  963. else
  964. compress_type = "lzo";
  965. if (btrfs_test_opt(root, FORCE_COMPRESS))
  966. seq_printf(seq, ",compress-force=%s", compress_type);
  967. else
  968. seq_printf(seq, ",compress=%s", compress_type);
  969. }
  970. if (btrfs_test_opt(root, NOSSD))
  971. seq_puts(seq, ",nossd");
  972. if (btrfs_test_opt(root, SSD_SPREAD))
  973. seq_puts(seq, ",ssd_spread");
  974. else if (btrfs_test_opt(root, SSD))
  975. seq_puts(seq, ",ssd");
  976. if (btrfs_test_opt(root, NOTREELOG))
  977. seq_puts(seq, ",notreelog");
  978. if (btrfs_test_opt(root, FLUSHONCOMMIT))
  979. seq_puts(seq, ",flushoncommit");
  980. if (btrfs_test_opt(root, DISCARD))
  981. seq_puts(seq, ",discard");
  982. if (!(root->fs_info->sb->s_flags & MS_POSIXACL))
  983. seq_puts(seq, ",noacl");
  984. if (btrfs_test_opt(root, SPACE_CACHE))
  985. seq_puts(seq, ",space_cache");
  986. else
  987. seq_puts(seq, ",nospace_cache");
  988. if (btrfs_test_opt(root, RESCAN_UUID_TREE))
  989. seq_puts(seq, ",rescan_uuid_tree");
  990. if (btrfs_test_opt(root, CLEAR_CACHE))
  991. seq_puts(seq, ",clear_cache");
  992. if (btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
  993. seq_puts(seq, ",user_subvol_rm_allowed");
  994. if (btrfs_test_opt(root, ENOSPC_DEBUG))
  995. seq_puts(seq, ",enospc_debug");
  996. if (btrfs_test_opt(root, AUTO_DEFRAG))
  997. seq_puts(seq, ",autodefrag");
  998. if (btrfs_test_opt(root, INODE_MAP_CACHE))
  999. seq_puts(seq, ",inode_cache");
  1000. if (btrfs_test_opt(root, SKIP_BALANCE))
  1001. seq_puts(seq, ",skip_balance");
  1002. if (btrfs_test_opt(root, RECOVERY))
  1003. seq_puts(seq, ",recovery");
  1004. #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
  1005. if (btrfs_test_opt(root, CHECK_INTEGRITY_INCLUDING_EXTENT_DATA))
  1006. seq_puts(seq, ",check_int_data");
  1007. else if (btrfs_test_opt(root, CHECK_INTEGRITY))
  1008. seq_puts(seq, ",check_int");
  1009. if (info->check_integrity_print_mask)
  1010. seq_printf(seq, ",check_int_print_mask=%d",
  1011. info->check_integrity_print_mask);
  1012. #endif
  1013. if (info->metadata_ratio)
  1014. seq_printf(seq, ",metadata_ratio=%d",
  1015. info->metadata_ratio);
  1016. if (btrfs_test_opt(root, PANIC_ON_FATAL_ERROR))
  1017. seq_puts(seq, ",fatal_errors=panic");
  1018. if (info->commit_interval != BTRFS_DEFAULT_COMMIT_INTERVAL)
  1019. seq_printf(seq, ",commit=%d", info->commit_interval);
  1020. return 0;
  1021. }
  1022. static int btrfs_test_super(struct super_block *s, void *data)
  1023. {
  1024. struct btrfs_fs_info *p = data;
  1025. struct btrfs_fs_info *fs_info = btrfs_sb(s);
  1026. return fs_info->fs_devices == p->fs_devices;
  1027. }
  1028. static int btrfs_set_super(struct super_block *s, void *data)
  1029. {
  1030. int err = set_anon_super(s, data);
  1031. if (!err)
  1032. s->s_fs_info = data;
  1033. return err;
  1034. }
  1035. /*
  1036. * subvolumes are identified by ino 256
  1037. */
  1038. static inline int is_subvolume_inode(struct inode *inode)
  1039. {
  1040. if (inode && inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
  1041. return 1;
  1042. return 0;
  1043. }
  1044. /*
  1045. * This will strip out the subvol=%s argument for an argument string and add
  1046. * subvolid=0 to make sure we get the actual tree root for path walking to the
  1047. * subvol we want.
  1048. */
  1049. static char *setup_root_args(char *args)
  1050. {
  1051. unsigned len = strlen(args) + 2 + 1;
  1052. char *src, *dst, *buf;
  1053. /*
  1054. * We need the same args as before, but with this substitution:
  1055. * s!subvol=[^,]+!subvolid=0!
  1056. *
  1057. * Since the replacement string is up to 2 bytes longer than the
  1058. * original, allocate strlen(args) + 2 + 1 bytes.
  1059. */
  1060. src = strstr(args, "subvol=");
  1061. /* This shouldn't happen, but just in case.. */
  1062. if (!src)
  1063. return NULL;
  1064. buf = dst = kmalloc(len, GFP_NOFS);
  1065. if (!buf)
  1066. return NULL;
  1067. /*
  1068. * If the subvol= arg is not at the start of the string,
  1069. * copy whatever precedes it into buf.
  1070. */
  1071. if (src != args) {
  1072. *src++ = '\0';
  1073. strcpy(buf, args);
  1074. dst += strlen(args);
  1075. }
  1076. strcpy(dst, "subvolid=0");
  1077. dst += strlen("subvolid=0");
  1078. /*
  1079. * If there is a "," after the original subvol=... string,
  1080. * copy that suffix into our buffer. Otherwise, we're done.
  1081. */
  1082. src = strchr(src, ',');
  1083. if (src)
  1084. strcpy(dst, src);
  1085. return buf;
  1086. }
  1087. static struct dentry *mount_subvol(const char *subvol_name, int flags,
  1088. const char *device_name, char *data)
  1089. {
  1090. struct dentry *root;
  1091. struct vfsmount *mnt;
  1092. char *newargs;
  1093. newargs = setup_root_args(data);
  1094. if (!newargs)
  1095. return ERR_PTR(-ENOMEM);
  1096. mnt = vfs_kern_mount(&btrfs_fs_type, flags, device_name,
  1097. newargs);
  1098. kfree(newargs);
  1099. if (PTR_RET(mnt) == -EBUSY) {
  1100. if (flags & MS_RDONLY) {
  1101. mnt = vfs_kern_mount(&btrfs_fs_type, flags & ~MS_RDONLY, device_name,
  1102. newargs);
  1103. } else {
  1104. int r;
  1105. mnt = vfs_kern_mount(&btrfs_fs_type, flags | MS_RDONLY, device_name,
  1106. newargs);
  1107. if (IS_ERR(mnt))
  1108. return ERR_CAST(mnt);
  1109. r = btrfs_remount(mnt->mnt_sb, &flags, NULL);
  1110. if (r < 0) {
  1111. /* FIXME: release vfsmount mnt ??*/
  1112. return ERR_PTR(r);
  1113. }
  1114. }
  1115. }
  1116. if (IS_ERR(mnt))
  1117. return ERR_CAST(mnt);
  1118. root = mount_subtree(mnt, subvol_name);
  1119. if (!IS_ERR(root) && !is_subvolume_inode(root->d_inode)) {
  1120. struct super_block *s = root->d_sb;
  1121. dput(root);
  1122. root = ERR_PTR(-EINVAL);
  1123. deactivate_locked_super(s);
  1124. printk(KERN_ERR "BTRFS: '%s' is not a valid subvolume\n",
  1125. subvol_name);
  1126. }
  1127. return root;
  1128. }
  1129. /*
  1130. * Find a superblock for the given device / mount point.
  1131. *
  1132. * Note: This is based on get_sb_bdev from fs/super.c with a few additions
  1133. * for multiple device setup. Make sure to keep it in sync.
  1134. */
  1135. static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags,
  1136. const char *device_name, void *data)
  1137. {
  1138. struct block_device *bdev = NULL;
  1139. struct super_block *s;
  1140. struct dentry *root;
  1141. struct btrfs_fs_devices *fs_devices = NULL;
  1142. struct btrfs_fs_info *fs_info = NULL;
  1143. fmode_t mode = FMODE_READ;
  1144. char *subvol_name = NULL;
  1145. u64 subvol_objectid = 0;
  1146. int error = 0;
  1147. if (!(flags & MS_RDONLY))
  1148. mode |= FMODE_WRITE;
  1149. error = btrfs_parse_early_options(data, mode, fs_type,
  1150. &subvol_name, &subvol_objectid,
  1151. &fs_devices);
  1152. if (error) {
  1153. kfree(subvol_name);
  1154. return ERR_PTR(error);
  1155. }
  1156. if (subvol_name) {
  1157. root = mount_subvol(subvol_name, flags, device_name, data);
  1158. kfree(subvol_name);
  1159. return root;
  1160. }
  1161. error = btrfs_scan_one_device(device_name, mode, fs_type, &fs_devices);
  1162. if (error)
  1163. return ERR_PTR(error);
  1164. /*
  1165. * Setup a dummy root and fs_info for test/set super. This is because
  1166. * we don't actually fill this stuff out until open_ctree, but we need
  1167. * it for searching for existing supers, so this lets us do that and
  1168. * then open_ctree will properly initialize everything later.
  1169. */
  1170. fs_info = kzalloc(sizeof(struct btrfs_fs_info), GFP_NOFS);
  1171. if (!fs_info)
  1172. return ERR_PTR(-ENOMEM);
  1173. fs_info->fs_devices = fs_devices;
  1174. fs_info->super_copy = kzalloc(BTRFS_SUPER_INFO_SIZE, GFP_NOFS);
  1175. fs_info->super_for_commit = kzalloc(BTRFS_SUPER_INFO_SIZE, GFP_NOFS);
  1176. if (!fs_info->super_copy || !fs_info->super_for_commit) {
  1177. error = -ENOMEM;
  1178. goto error_fs_info;
  1179. }
  1180. error = btrfs_open_devices(fs_devices, mode, fs_type);
  1181. if (error)
  1182. goto error_fs_info;
  1183. if (!(flags & MS_RDONLY) && fs_devices->rw_devices == 0) {
  1184. error = -EACCES;
  1185. goto error_close_devices;
  1186. }
  1187. bdev = fs_devices->latest_bdev;
  1188. s = sget(fs_type, btrfs_test_super, btrfs_set_super, flags | MS_NOSEC,
  1189. fs_info);
  1190. if (IS_ERR(s)) {
  1191. error = PTR_ERR(s);
  1192. goto error_close_devices;
  1193. }
  1194. if (s->s_root) {
  1195. btrfs_close_devices(fs_devices);
  1196. free_fs_info(fs_info);
  1197. if ((flags ^ s->s_flags) & MS_RDONLY)
  1198. error = -EBUSY;
  1199. } else {
  1200. char b[BDEVNAME_SIZE];
  1201. strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id));
  1202. btrfs_sb(s)->bdev_holder = fs_type;
  1203. error = btrfs_fill_super(s, fs_devices, data,
  1204. flags & MS_SILENT ? 1 : 0);
  1205. }
  1206. root = !error ? get_default_root(s, subvol_objectid) : ERR_PTR(error);
  1207. if (IS_ERR(root))
  1208. deactivate_locked_super(s);
  1209. return root;
  1210. error_close_devices:
  1211. btrfs_close_devices(fs_devices);
  1212. error_fs_info:
  1213. free_fs_info(fs_info);
  1214. return ERR_PTR(error);
  1215. }
  1216. static void btrfs_resize_thread_pool(struct btrfs_fs_info *fs_info,
  1217. int new_pool_size, int old_pool_size)
  1218. {
  1219. if (new_pool_size == old_pool_size)
  1220. return;
  1221. fs_info->thread_pool_size = new_pool_size;
  1222. btrfs_info(fs_info, "resize thread pool %d -> %d",
  1223. old_pool_size, new_pool_size);
  1224. btrfs_workqueue_set_max(fs_info->workers, new_pool_size);
  1225. btrfs_workqueue_set_max(fs_info->delalloc_workers, new_pool_size);
  1226. btrfs_workqueue_set_max(fs_info->submit_workers, new_pool_size);
  1227. btrfs_workqueue_set_max(fs_info->caching_workers, new_pool_size);
  1228. btrfs_workqueue_set_max(fs_info->endio_workers, new_pool_size);
  1229. btrfs_workqueue_set_max(fs_info->endio_meta_workers, new_pool_size);
  1230. btrfs_workqueue_set_max(fs_info->endio_meta_write_workers,
  1231. new_pool_size);
  1232. btrfs_workqueue_set_max(fs_info->endio_write_workers, new_pool_size);
  1233. btrfs_workqueue_set_max(fs_info->endio_freespace_worker, new_pool_size);
  1234. btrfs_workqueue_set_max(fs_info->delayed_workers, new_pool_size);
  1235. btrfs_workqueue_set_max(fs_info->readahead_workers, new_pool_size);
  1236. btrfs_workqueue_set_max(fs_info->scrub_wr_completion_workers,
  1237. new_pool_size);
  1238. }
  1239. static inline void btrfs_remount_prepare(struct btrfs_fs_info *fs_info)
  1240. {
  1241. set_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state);
  1242. }
  1243. static inline void btrfs_remount_begin(struct btrfs_fs_info *fs_info,
  1244. unsigned long old_opts, int flags)
  1245. {
  1246. if (btrfs_raw_test_opt(old_opts, AUTO_DEFRAG) &&
  1247. (!btrfs_raw_test_opt(fs_info->mount_opt, AUTO_DEFRAG) ||
  1248. (flags & MS_RDONLY))) {
  1249. /* wait for any defraggers to finish */
  1250. wait_event(fs_info->transaction_wait,
  1251. (atomic_read(&fs_info->defrag_running) == 0));
  1252. if (flags & MS_RDONLY)
  1253. sync_filesystem(fs_info->sb);
  1254. }
  1255. }
  1256. static inline void btrfs_remount_cleanup(struct btrfs_fs_info *fs_info,
  1257. unsigned long old_opts)
  1258. {
  1259. /*
  1260. * We need cleanup all defragable inodes if the autodefragment is
  1261. * close or the fs is R/O.
  1262. */
  1263. if (btrfs_raw_test_opt(old_opts, AUTO_DEFRAG) &&
  1264. (!btrfs_raw_test_opt(fs_info->mount_opt, AUTO_DEFRAG) ||
  1265. (fs_info->sb->s_flags & MS_RDONLY))) {
  1266. btrfs_cleanup_defrag_inodes(fs_info);
  1267. }
  1268. clear_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state);
  1269. }
  1270. static int btrfs_remount(struct super_block *sb, int *flags, char *data)
  1271. {
  1272. struct btrfs_fs_info *fs_info = btrfs_sb(sb);
  1273. struct btrfs_root *root = fs_info->tree_root;
  1274. unsigned old_flags = sb->s_flags;
  1275. unsigned long old_opts = fs_info->mount_opt;
  1276. unsigned long old_compress_type = fs_info->compress_type;
  1277. u64 old_max_inline = fs_info->max_inline;
  1278. u64 old_alloc_start = fs_info->alloc_start;
  1279. int old_thread_pool_size = fs_info->thread_pool_size;
  1280. unsigned int old_metadata_ratio = fs_info->metadata_ratio;
  1281. int ret;
  1282. sync_filesystem(sb);
  1283. btrfs_remount_prepare(fs_info);
  1284. ret = btrfs_parse_options(root, data);
  1285. if (ret) {
  1286. ret = -EINVAL;
  1287. goto restore;
  1288. }
  1289. btrfs_remount_begin(fs_info, old_opts, *flags);
  1290. btrfs_resize_thread_pool(fs_info,
  1291. fs_info->thread_pool_size, old_thread_pool_size);
  1292. if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
  1293. goto out;
  1294. if (*flags & MS_RDONLY) {
  1295. /*
  1296. * this also happens on 'umount -rf' or on shutdown, when
  1297. * the filesystem is busy.
  1298. */
  1299. /* wait for the uuid_scan task to finish */
  1300. down(&fs_info->uuid_tree_rescan_sem);
  1301. /* avoid complains from lockdep et al. */
  1302. up(&fs_info->uuid_tree_rescan_sem);
  1303. sb->s_flags |= MS_RDONLY;
  1304. btrfs_dev_replace_suspend_for_unmount(fs_info);
  1305. btrfs_scrub_cancel(fs_info);
  1306. btrfs_pause_balance(fs_info);
  1307. ret = btrfs_commit_super(root);
  1308. if (ret)
  1309. goto restore;
  1310. } else {
  1311. if (test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state)) {
  1312. btrfs_err(fs_info,
  1313. "Remounting read-write after error is not allowed");
  1314. ret = -EINVAL;
  1315. goto restore;
  1316. }
  1317. if (fs_info->fs_devices->rw_devices == 0) {
  1318. ret = -EACCES;
  1319. goto restore;
  1320. }
  1321. if (fs_info->fs_devices->missing_devices >
  1322. fs_info->num_tolerated_disk_barrier_failures &&
  1323. !(*flags & MS_RDONLY)) {
  1324. btrfs_warn(fs_info,
  1325. "too many missing devices, writeable remount is not allowed");
  1326. ret = -EACCES;
  1327. goto restore;
  1328. }
  1329. if (btrfs_super_log_root(fs_info->super_copy) != 0) {
  1330. ret = -EINVAL;
  1331. goto restore;
  1332. }
  1333. ret = btrfs_cleanup_fs_roots(fs_info);
  1334. if (ret)
  1335. goto restore;
  1336. /* recover relocation */
  1337. ret = btrfs_recover_relocation(root);
  1338. if (ret)
  1339. goto restore;
  1340. ret = btrfs_resume_balance_async(fs_info);
  1341. if (ret)
  1342. goto restore;
  1343. ret = btrfs_resume_dev_replace_async(fs_info);
  1344. if (ret) {
  1345. btrfs_warn(fs_info, "failed to resume dev_replace");
  1346. goto restore;
  1347. }
  1348. if (!fs_info->uuid_root) {
  1349. btrfs_info(fs_info, "creating UUID tree");
  1350. ret = btrfs_create_uuid_tree(fs_info);
  1351. if (ret) {
  1352. btrfs_warn(fs_info, "failed to create the UUID tree %d", ret);
  1353. goto restore;
  1354. }
  1355. }
  1356. sb->s_flags &= ~MS_RDONLY;
  1357. }
  1358. out:
  1359. wake_up_process(fs_info->transaction_kthread);
  1360. btrfs_remount_cleanup(fs_info, old_opts);
  1361. return 0;
  1362. restore:
  1363. /* We've hit an error - don't reset MS_RDONLY */
  1364. if (sb->s_flags & MS_RDONLY)
  1365. old_flags |= MS_RDONLY;
  1366. sb->s_flags = old_flags;
  1367. fs_info->mount_opt = old_opts;
  1368. fs_info->compress_type = old_compress_type;
  1369. fs_info->max_inline = old_max_inline;
  1370. mutex_lock(&fs_info->chunk_mutex);
  1371. fs_info->alloc_start = old_alloc_start;
  1372. mutex_unlock(&fs_info->chunk_mutex);
  1373. btrfs_resize_thread_pool(fs_info,
  1374. old_thread_pool_size, fs_info->thread_pool_size);
  1375. fs_info->metadata_ratio = old_metadata_ratio;
  1376. btrfs_remount_cleanup(fs_info, old_opts);
  1377. return ret;
  1378. }
  1379. /* Used to sort the devices by max_avail(descending sort) */
  1380. static int btrfs_cmp_device_free_bytes(const void *dev_info1,
  1381. const void *dev_info2)
  1382. {
  1383. if (((struct btrfs_device_info *)dev_info1)->max_avail >
  1384. ((struct btrfs_device_info *)dev_info2)->max_avail)
  1385. return -1;
  1386. else if (((struct btrfs_device_info *)dev_info1)->max_avail <
  1387. ((struct btrfs_device_info *)dev_info2)->max_avail)
  1388. return 1;
  1389. else
  1390. return 0;
  1391. }
  1392. /*
  1393. * sort the devices by max_avail, in which max free extent size of each device
  1394. * is stored.(Descending Sort)
  1395. */
  1396. static inline void btrfs_descending_sort_devices(
  1397. struct btrfs_device_info *devices,
  1398. size_t nr_devices)
  1399. {
  1400. sort(devices, nr_devices, sizeof(struct btrfs_device_info),
  1401. btrfs_cmp_device_free_bytes, NULL);
  1402. }
  1403. /*
  1404. * The helper to calc the free space on the devices that can be used to store
  1405. * file data.
  1406. */
  1407. static int btrfs_calc_avail_data_space(struct btrfs_root *root, u64 *free_bytes)
  1408. {
  1409. struct btrfs_fs_info *fs_info = root->fs_info;
  1410. struct btrfs_device_info *devices_info;
  1411. struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
  1412. struct btrfs_device *device;
  1413. u64 skip_space;
  1414. u64 type;
  1415. u64 avail_space;
  1416. u64 used_space;
  1417. u64 min_stripe_size;
  1418. int min_stripes = 1, num_stripes = 1;
  1419. int i = 0, nr_devices;
  1420. int ret;
  1421. nr_devices = fs_info->fs_devices->open_devices;
  1422. BUG_ON(!nr_devices);
  1423. devices_info = kmalloc_array(nr_devices, sizeof(*devices_info),
  1424. GFP_NOFS);
  1425. if (!devices_info)
  1426. return -ENOMEM;
  1427. /* calc min stripe number for data space alloction */
  1428. type = btrfs_get_alloc_profile(root, 1);
  1429. if (type & BTRFS_BLOCK_GROUP_RAID0) {
  1430. min_stripes = 2;
  1431. num_stripes = nr_devices;
  1432. } else if (type & BTRFS_BLOCK_GROUP_RAID1) {
  1433. min_stripes = 2;
  1434. num_stripes = 2;
  1435. } else if (type & BTRFS_BLOCK_GROUP_RAID10) {
  1436. min_stripes = 4;
  1437. num_stripes = 4;
  1438. }
  1439. if (type & BTRFS_BLOCK_GROUP_DUP)
  1440. min_stripe_size = 2 * BTRFS_STRIPE_LEN;
  1441. else
  1442. min_stripe_size = BTRFS_STRIPE_LEN;
  1443. list_for_each_entry(device, &fs_devices->devices, dev_list) {
  1444. if (!device->in_fs_metadata || !device->bdev ||
  1445. device->is_tgtdev_for_dev_replace)
  1446. continue;
  1447. avail_space = device->total_bytes - device->bytes_used;
  1448. /* align with stripe_len */
  1449. do_div(avail_space, BTRFS_STRIPE_LEN);
  1450. avail_space *= BTRFS_STRIPE_LEN;
  1451. /*
  1452. * In order to avoid overwritting the superblock on the drive,
  1453. * btrfs starts at an offset of at least 1MB when doing chunk
  1454. * allocation.
  1455. */
  1456. skip_space = 1024 * 1024;
  1457. /* user can set the offset in fs_info->alloc_start. */
  1458. if (fs_info->alloc_start + BTRFS_STRIPE_LEN <=
  1459. device->total_bytes)
  1460. skip_space = max(fs_info->alloc_start, skip_space);
  1461. /*
  1462. * btrfs can not use the free space in [0, skip_space - 1],
  1463. * we must subtract it from the total. In order to implement
  1464. * it, we account the used space in this range first.
  1465. */
  1466. ret = btrfs_account_dev_extents_size(device, 0, skip_space - 1,
  1467. &used_space);
  1468. if (ret) {
  1469. kfree(devices_info);
  1470. return ret;
  1471. }
  1472. /* calc the free space in [0, skip_space - 1] */
  1473. skip_space -= used_space;
  1474. /*
  1475. * we can use the free space in [0, skip_space - 1], subtract
  1476. * it from the total.
  1477. */
  1478. if (avail_space && avail_space >= skip_space)
  1479. avail_space -= skip_space;
  1480. else
  1481. avail_space = 0;
  1482. if (avail_space < min_stripe_size)
  1483. continue;
  1484. devices_info[i].dev = device;
  1485. devices_info[i].max_avail = avail_space;
  1486. i++;
  1487. }
  1488. nr_devices = i;
  1489. btrfs_descending_sort_devices(devices_info, nr_devices);
  1490. i = nr_devices - 1;
  1491. avail_space = 0;
  1492. while (nr_devices >= min_stripes) {
  1493. if (num_stripes > nr_devices)
  1494. num_stripes = nr_devices;
  1495. if (devices_info[i].max_avail >= min_stripe_size) {
  1496. int j;
  1497. u64 alloc_size;
  1498. avail_space += devices_info[i].max_avail * num_stripes;
  1499. alloc_size = devices_info[i].max_avail;
  1500. for (j = i + 1 - num_stripes; j <= i; j++)
  1501. devices_info[j].max_avail -= alloc_size;
  1502. }
  1503. i--;
  1504. nr_devices--;
  1505. }
  1506. kfree(devices_info);
  1507. *free_bytes = avail_space;
  1508. return 0;
  1509. }
  1510. static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf)
  1511. {
  1512. struct btrfs_fs_info *fs_info = btrfs_sb(dentry->d_sb);
  1513. struct btrfs_super_block *disk_super = fs_info->super_copy;
  1514. struct list_head *head = &fs_info->space_info;
  1515. struct btrfs_space_info *found;
  1516. u64 total_used = 0;
  1517. u64 total_free_data = 0;
  1518. int bits = dentry->d_sb->s_blocksize_bits;
  1519. __be32 *fsid = (__be32 *)fs_info->fsid;
  1520. int ret;
  1521. /* holding chunk_muext to avoid allocating new chunks */
  1522. mutex_lock(&fs_info->chunk_mutex);
  1523. rcu_read_lock();
  1524. list_for_each_entry_rcu(found, head, list) {
  1525. if (found->flags & BTRFS_BLOCK_GROUP_DATA) {
  1526. total_free_data += found->disk_total - found->disk_used;
  1527. total_free_data -=
  1528. btrfs_account_ro_block_groups_free_space(found);
  1529. }
  1530. total_used += found->disk_used;
  1531. }
  1532. rcu_read_unlock();
  1533. buf->f_namelen = BTRFS_NAME_LEN;
  1534. buf->f_blocks = btrfs_super_total_bytes(disk_super) >> bits;
  1535. buf->f_bfree = buf->f_blocks - (total_used >> bits);
  1536. buf->f_bsize = dentry->d_sb->s_blocksize;
  1537. buf->f_type = BTRFS_SUPER_MAGIC;
  1538. buf->f_bavail = total_free_data;
  1539. ret = btrfs_calc_avail_data_space(fs_info->tree_root, &total_free_data);
  1540. if (ret) {
  1541. mutex_unlock(&fs_info->chunk_mutex);
  1542. return ret;
  1543. }
  1544. buf->f_bavail += total_free_data;
  1545. buf->f_bavail = buf->f_bavail >> bits;
  1546. mutex_unlock(&fs_info->chunk_mutex);
  1547. /* We treat it as constant endianness (it doesn't matter _which_)
  1548. because we want the fsid to come out the same whether mounted
  1549. on a big-endian or little-endian host */
  1550. buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]);
  1551. buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]);
  1552. /* Mask in the root object ID too, to disambiguate subvols */
  1553. buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32;
  1554. buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid;
  1555. return 0;
  1556. }
  1557. static void btrfs_kill_super(struct super_block *sb)
  1558. {
  1559. struct btrfs_fs_info *fs_info = btrfs_sb(sb);
  1560. kill_anon_super(sb);
  1561. free_fs_info(fs_info);
  1562. }
  1563. static struct file_system_type btrfs_fs_type = {
  1564. .owner = THIS_MODULE,
  1565. .name = "btrfs",
  1566. .mount = btrfs_mount,
  1567. .kill_sb = btrfs_kill_super,
  1568. .fs_flags = FS_REQUIRES_DEV,
  1569. };
  1570. MODULE_ALIAS_FS("btrfs");
  1571. /*
  1572. * used by btrfsctl to scan devices when no FS is mounted
  1573. */
  1574. static long btrfs_control_ioctl(struct file *file, unsigned int cmd,
  1575. unsigned long arg)
  1576. {
  1577. struct btrfs_ioctl_vol_args *vol;
  1578. struct btrfs_fs_devices *fs_devices;
  1579. int ret = -ENOTTY;
  1580. if (!capable(CAP_SYS_ADMIN))
  1581. return -EPERM;
  1582. vol = memdup_user((void __user *)arg, sizeof(*vol));
  1583. if (IS_ERR(vol))
  1584. return PTR_ERR(vol);
  1585. switch (cmd) {
  1586. case BTRFS_IOC_SCAN_DEV:
  1587. ret = btrfs_scan_one_device(vol->name, FMODE_READ,
  1588. &btrfs_fs_type, &fs_devices);
  1589. break;
  1590. case BTRFS_IOC_DEVICES_READY:
  1591. ret = btrfs_scan_one_device(vol->name, FMODE_READ,
  1592. &btrfs_fs_type, &fs_devices);
  1593. if (ret)
  1594. break;
  1595. ret = !(fs_devices->num_devices == fs_devices->total_devices);
  1596. break;
  1597. }
  1598. kfree(vol);
  1599. return ret;
  1600. }
  1601. static int btrfs_freeze(struct super_block *sb)
  1602. {
  1603. struct btrfs_trans_handle *trans;
  1604. struct btrfs_root *root = btrfs_sb(sb)->tree_root;
  1605. trans = btrfs_attach_transaction_barrier(root);
  1606. if (IS_ERR(trans)) {
  1607. /* no transaction, don't bother */
  1608. if (PTR_ERR(trans) == -ENOENT)
  1609. return 0;
  1610. return PTR_ERR(trans);
  1611. }
  1612. return btrfs_commit_transaction(trans, root);
  1613. }
  1614. static int btrfs_unfreeze(struct super_block *sb)
  1615. {
  1616. return 0;
  1617. }
  1618. static int btrfs_show_devname(struct seq_file *m, struct dentry *root)
  1619. {
  1620. struct btrfs_fs_info *fs_info = btrfs_sb(root->d_sb);
  1621. struct btrfs_fs_devices *cur_devices;
  1622. struct btrfs_device *dev, *first_dev = NULL;
  1623. struct list_head *head;
  1624. struct rcu_string *name;
  1625. mutex_lock(&fs_info->fs_devices->device_list_mutex);
  1626. cur_devices = fs_info->fs_devices;
  1627. while (cur_devices) {
  1628. head = &cur_devices->devices;
  1629. list_for_each_entry(dev, head, dev_list) {
  1630. if (dev->missing)
  1631. continue;
  1632. if (!first_dev || dev->devid < first_dev->devid)
  1633. first_dev = dev;
  1634. }
  1635. cur_devices = cur_devices->seed;
  1636. }
  1637. if (first_dev) {
  1638. rcu_read_lock();
  1639. name = rcu_dereference(first_dev->name);
  1640. seq_escape(m, name->str, " \t\n\\");
  1641. rcu_read_unlock();
  1642. } else {
  1643. WARN_ON(1);
  1644. }
  1645. mutex_unlock(&fs_info->fs_devices->device_list_mutex);
  1646. return 0;
  1647. }
  1648. static const struct super_operations btrfs_super_ops = {
  1649. .drop_inode = btrfs_drop_inode,
  1650. .evict_inode = btrfs_evict_inode,
  1651. .put_super = btrfs_put_super,
  1652. .sync_fs = btrfs_sync_fs,
  1653. .show_options = btrfs_show_options,
  1654. .show_devname = btrfs_show_devname,
  1655. .write_inode = btrfs_write_inode,
  1656. .alloc_inode = btrfs_alloc_inode,
  1657. .destroy_inode = btrfs_destroy_inode,
  1658. .statfs = btrfs_statfs,
  1659. .remount_fs = btrfs_remount,
  1660. .freeze_fs = btrfs_freeze,
  1661. .unfreeze_fs = btrfs_unfreeze,
  1662. };
  1663. static const struct file_operations btrfs_ctl_fops = {
  1664. .unlocked_ioctl = btrfs_control_ioctl,
  1665. .compat_ioctl = btrfs_control_ioctl,
  1666. .owner = THIS_MODULE,
  1667. .llseek = noop_llseek,
  1668. };
  1669. static struct miscdevice btrfs_misc = {
  1670. .minor = BTRFS_MINOR,
  1671. .name = "btrfs-control",
  1672. .fops = &btrfs_ctl_fops
  1673. };
  1674. MODULE_ALIAS_MISCDEV(BTRFS_MINOR);
  1675. MODULE_ALIAS("devname:btrfs-control");
  1676. static int btrfs_interface_init(void)
  1677. {
  1678. return misc_register(&btrfs_misc);
  1679. }
  1680. static void btrfs_interface_exit(void)
  1681. {
  1682. if (misc_deregister(&btrfs_misc) < 0)
  1683. printk(KERN_INFO "BTRFS: misc_deregister failed for control device\n");
  1684. }
  1685. static void btrfs_print_info(void)
  1686. {
  1687. printk(KERN_INFO "Btrfs loaded"
  1688. #ifdef CONFIG_BTRFS_DEBUG
  1689. ", debug=on"
  1690. #endif
  1691. #ifdef CONFIG_BTRFS_ASSERT
  1692. ", assert=on"
  1693. #endif
  1694. #ifdef CONFIG_BTRFS_FS_CHECK_INTEGRITY
  1695. ", integrity-checker=on"
  1696. #endif
  1697. "\n");
  1698. }
  1699. static int btrfs_run_sanity_tests(void)
  1700. {
  1701. int ret;
  1702. ret = btrfs_init_test_fs();
  1703. if (ret)
  1704. return ret;
  1705. ret = btrfs_test_free_space_cache();
  1706. if (ret)
  1707. goto out;
  1708. ret = btrfs_test_extent_buffer_operations();
  1709. if (ret)
  1710. goto out;
  1711. ret = btrfs_test_extent_io();
  1712. if (ret)
  1713. goto out;
  1714. ret = btrfs_test_inodes();
  1715. out:
  1716. btrfs_destroy_test_fs();
  1717. return ret;
  1718. }
  1719. static int __init init_btrfs_fs(void)
  1720. {
  1721. int err;
  1722. err = btrfs_hash_init();
  1723. if (err)
  1724. return err;
  1725. btrfs_props_init();
  1726. err = btrfs_init_sysfs();
  1727. if (err)
  1728. goto free_hash;
  1729. btrfs_init_compress();
  1730. err = btrfs_init_cachep();
  1731. if (err)
  1732. goto free_compress;
  1733. err = extent_io_init();
  1734. if (err)
  1735. goto free_cachep;
  1736. err = extent_map_init();
  1737. if (err)
  1738. goto free_extent_io;
  1739. err = ordered_data_init();
  1740. if (err)
  1741. goto free_extent_map;
  1742. err = btrfs_delayed_inode_init();
  1743. if (err)
  1744. goto free_ordered_data;
  1745. err = btrfs_auto_defrag_init();
  1746. if (err)
  1747. goto free_delayed_inode;
  1748. err = btrfs_delayed_ref_init();
  1749. if (err)
  1750. goto free_auto_defrag;
  1751. err = btrfs_prelim_ref_init();
  1752. if (err)
  1753. goto free_prelim_ref;
  1754. err = btrfs_interface_init();
  1755. if (err)
  1756. goto free_delayed_ref;
  1757. btrfs_init_lockdep();
  1758. btrfs_print_info();
  1759. err = btrfs_run_sanity_tests();
  1760. if (err)
  1761. goto unregister_ioctl;
  1762. err = register_filesystem(&btrfs_fs_type);
  1763. if (err)
  1764. goto unregister_ioctl;
  1765. return 0;
  1766. unregister_ioctl:
  1767. btrfs_interface_exit();
  1768. free_prelim_ref:
  1769. btrfs_prelim_ref_exit();
  1770. free_delayed_ref:
  1771. btrfs_delayed_ref_exit();
  1772. free_auto_defrag:
  1773. btrfs_auto_defrag_exit();
  1774. free_delayed_inode:
  1775. btrfs_delayed_inode_exit();
  1776. free_ordered_data:
  1777. ordered_data_exit();
  1778. free_extent_map:
  1779. extent_map_exit();
  1780. free_extent_io:
  1781. extent_io_exit();
  1782. free_cachep:
  1783. btrfs_destroy_cachep();
  1784. free_compress:
  1785. btrfs_exit_compress();
  1786. btrfs_exit_sysfs();
  1787. free_hash:
  1788. btrfs_hash_exit();
  1789. return err;
  1790. }
  1791. static void __exit exit_btrfs_fs(void)
  1792. {
  1793. btrfs_destroy_cachep();
  1794. btrfs_delayed_ref_exit();
  1795. btrfs_auto_defrag_exit();
  1796. btrfs_delayed_inode_exit();
  1797. btrfs_prelim_ref_exit();
  1798. ordered_data_exit();
  1799. extent_map_exit();
  1800. extent_io_exit();
  1801. btrfs_interface_exit();
  1802. unregister_filesystem(&btrfs_fs_type);
  1803. btrfs_exit_sysfs();
  1804. btrfs_cleanup_fs_uuids();
  1805. btrfs_exit_compress();
  1806. btrfs_hash_exit();
  1807. }
  1808. late_initcall(init_btrfs_fs);
  1809. module_exit(exit_btrfs_fs)
  1810. MODULE_LICENSE("GPL");