super.c 56 KB

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