super.c 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244
  1. /* -*- mode: c; c-basic-offset: 8; -*-
  2. * vim: noexpandtab sw=8 ts=8 sts=0:
  3. *
  4. * super.c
  5. *
  6. * load/unload driver, mount/dismount volumes
  7. *
  8. * Copyright (C) 2002, 2004 Oracle. All rights reserved.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2 of the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public
  21. * License along with this program; if not, write to the
  22. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  23. * Boston, MA 021110-1307, USA.
  24. */
  25. #include <linux/module.h>
  26. #include <linux/fs.h>
  27. #include <linux/types.h>
  28. #include <linux/slab.h>
  29. #include <linux/highmem.h>
  30. #include <linux/utsname.h>
  31. #include <linux/init.h>
  32. #include <linux/random.h>
  33. #include <linux/statfs.h>
  34. #include <linux/moduleparam.h>
  35. #include <linux/blkdev.h>
  36. #include <linux/socket.h>
  37. #include <linux/inet.h>
  38. #include <linux/parser.h>
  39. #include <linux/crc32.h>
  40. #include <linux/debugfs.h>
  41. #include <linux/mount.h>
  42. #include <linux/seq_file.h>
  43. #include <linux/quotaops.h>
  44. #define MLOG_MASK_PREFIX ML_SUPER
  45. #include <cluster/masklog.h>
  46. #include "ocfs2.h"
  47. /* this should be the only file to include a version 1 header */
  48. #include "ocfs1_fs_compat.h"
  49. #include "alloc.h"
  50. #include "blockcheck.h"
  51. #include "dlmglue.h"
  52. #include "export.h"
  53. #include "extent_map.h"
  54. #include "heartbeat.h"
  55. #include "inode.h"
  56. #include "journal.h"
  57. #include "localalloc.h"
  58. #include "namei.h"
  59. #include "slot_map.h"
  60. #include "super.h"
  61. #include "sysfile.h"
  62. #include "uptodate.h"
  63. #include "ver.h"
  64. #include "xattr.h"
  65. #include "quota.h"
  66. #include "buffer_head_io.h"
  67. static struct kmem_cache *ocfs2_inode_cachep = NULL;
  68. struct kmem_cache *ocfs2_dquot_cachep;
  69. struct kmem_cache *ocfs2_qf_chunk_cachep;
  70. /* OCFS2 needs to schedule several differnt types of work which
  71. * require cluster locking, disk I/O, recovery waits, etc. Since these
  72. * types of work tend to be heavy we avoid using the kernel events
  73. * workqueue and schedule on our own. */
  74. struct workqueue_struct *ocfs2_wq = NULL;
  75. static struct dentry *ocfs2_debugfs_root = NULL;
  76. MODULE_AUTHOR("Oracle");
  77. MODULE_LICENSE("GPL");
  78. struct mount_options
  79. {
  80. unsigned long commit_interval;
  81. unsigned long mount_opt;
  82. unsigned int atime_quantum;
  83. signed short slot;
  84. unsigned int localalloc_opt;
  85. char cluster_stack[OCFS2_STACK_LABEL_LEN + 1];
  86. };
  87. static int ocfs2_parse_options(struct super_block *sb, char *options,
  88. struct mount_options *mopt,
  89. int is_remount);
  90. static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt);
  91. static void ocfs2_put_super(struct super_block *sb);
  92. static int ocfs2_mount_volume(struct super_block *sb);
  93. static int ocfs2_remount(struct super_block *sb, int *flags, char *data);
  94. static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err);
  95. static int ocfs2_initialize_mem_caches(void);
  96. static void ocfs2_free_mem_caches(void);
  97. static void ocfs2_delete_osb(struct ocfs2_super *osb);
  98. static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf);
  99. static int ocfs2_sync_fs(struct super_block *sb, int wait);
  100. static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb);
  101. static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb);
  102. static void ocfs2_release_system_inodes(struct ocfs2_super *osb);
  103. static int ocfs2_check_volume(struct ocfs2_super *osb);
  104. static int ocfs2_verify_volume(struct ocfs2_dinode *di,
  105. struct buffer_head *bh,
  106. u32 sectsize);
  107. static int ocfs2_initialize_super(struct super_block *sb,
  108. struct buffer_head *bh,
  109. int sector_size);
  110. static int ocfs2_get_sector(struct super_block *sb,
  111. struct buffer_head **bh,
  112. int block,
  113. int sect_size);
  114. static void ocfs2_write_super(struct super_block *sb);
  115. static struct inode *ocfs2_alloc_inode(struct super_block *sb);
  116. static void ocfs2_destroy_inode(struct inode *inode);
  117. static int ocfs2_susp_quotas(struct ocfs2_super *osb, int unsuspend);
  118. static int ocfs2_enable_quotas(struct ocfs2_super *osb);
  119. static void ocfs2_disable_quotas(struct ocfs2_super *osb);
  120. static const struct super_operations ocfs2_sops = {
  121. .statfs = ocfs2_statfs,
  122. .alloc_inode = ocfs2_alloc_inode,
  123. .destroy_inode = ocfs2_destroy_inode,
  124. .drop_inode = ocfs2_drop_inode,
  125. .clear_inode = ocfs2_clear_inode,
  126. .delete_inode = ocfs2_delete_inode,
  127. .sync_fs = ocfs2_sync_fs,
  128. .write_super = ocfs2_write_super,
  129. .put_super = ocfs2_put_super,
  130. .remount_fs = ocfs2_remount,
  131. .show_options = ocfs2_show_options,
  132. .quota_read = ocfs2_quota_read,
  133. .quota_write = ocfs2_quota_write,
  134. };
  135. enum {
  136. Opt_barrier,
  137. Opt_err_panic,
  138. Opt_err_ro,
  139. Opt_intr,
  140. Opt_nointr,
  141. Opt_hb_none,
  142. Opt_hb_local,
  143. Opt_data_ordered,
  144. Opt_data_writeback,
  145. Opt_atime_quantum,
  146. Opt_slot,
  147. Opt_commit,
  148. Opt_localalloc,
  149. Opt_localflocks,
  150. Opt_stack,
  151. Opt_user_xattr,
  152. Opt_nouser_xattr,
  153. Opt_inode64,
  154. Opt_acl,
  155. Opt_noacl,
  156. Opt_usrquota,
  157. Opt_grpquota,
  158. Opt_err,
  159. };
  160. static const match_table_t tokens = {
  161. {Opt_barrier, "barrier=%u"},
  162. {Opt_err_panic, "errors=panic"},
  163. {Opt_err_ro, "errors=remount-ro"},
  164. {Opt_intr, "intr"},
  165. {Opt_nointr, "nointr"},
  166. {Opt_hb_none, OCFS2_HB_NONE},
  167. {Opt_hb_local, OCFS2_HB_LOCAL},
  168. {Opt_data_ordered, "data=ordered"},
  169. {Opt_data_writeback, "data=writeback"},
  170. {Opt_atime_quantum, "atime_quantum=%u"},
  171. {Opt_slot, "preferred_slot=%u"},
  172. {Opt_commit, "commit=%u"},
  173. {Opt_localalloc, "localalloc=%d"},
  174. {Opt_localflocks, "localflocks"},
  175. {Opt_stack, "cluster_stack=%s"},
  176. {Opt_user_xattr, "user_xattr"},
  177. {Opt_nouser_xattr, "nouser_xattr"},
  178. {Opt_inode64, "inode64"},
  179. {Opt_acl, "acl"},
  180. {Opt_noacl, "noacl"},
  181. {Opt_usrquota, "usrquota"},
  182. {Opt_grpquota, "grpquota"},
  183. {Opt_err, NULL}
  184. };
  185. /*
  186. * write_super and sync_fs ripped right out of ext3.
  187. */
  188. static void ocfs2_write_super(struct super_block *sb)
  189. {
  190. if (mutex_trylock(&sb->s_lock) != 0)
  191. BUG();
  192. sb->s_dirt = 0;
  193. }
  194. static int ocfs2_sync_fs(struct super_block *sb, int wait)
  195. {
  196. int status;
  197. tid_t target;
  198. struct ocfs2_super *osb = OCFS2_SB(sb);
  199. sb->s_dirt = 0;
  200. if (ocfs2_is_hard_readonly(osb))
  201. return -EROFS;
  202. if (wait) {
  203. status = ocfs2_flush_truncate_log(osb);
  204. if (status < 0)
  205. mlog_errno(status);
  206. } else {
  207. ocfs2_schedule_truncate_log_flush(osb, 0);
  208. }
  209. if (jbd2_journal_start_commit(OCFS2_SB(sb)->journal->j_journal,
  210. &target)) {
  211. if (wait)
  212. jbd2_log_wait_commit(OCFS2_SB(sb)->journal->j_journal,
  213. target);
  214. }
  215. return 0;
  216. }
  217. static int ocfs2_need_system_inode(struct ocfs2_super *osb, int ino)
  218. {
  219. if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, OCFS2_FEATURE_RO_COMPAT_USRQUOTA)
  220. && (ino == USER_QUOTA_SYSTEM_INODE
  221. || ino == LOCAL_USER_QUOTA_SYSTEM_INODE))
  222. return 0;
  223. if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)
  224. && (ino == GROUP_QUOTA_SYSTEM_INODE
  225. || ino == LOCAL_GROUP_QUOTA_SYSTEM_INODE))
  226. return 0;
  227. return 1;
  228. }
  229. static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb)
  230. {
  231. struct inode *new = NULL;
  232. int status = 0;
  233. int i;
  234. mlog_entry_void();
  235. new = ocfs2_iget(osb, osb->root_blkno, OCFS2_FI_FLAG_SYSFILE, 0);
  236. if (IS_ERR(new)) {
  237. status = PTR_ERR(new);
  238. mlog_errno(status);
  239. goto bail;
  240. }
  241. osb->root_inode = new;
  242. new = ocfs2_iget(osb, osb->system_dir_blkno, OCFS2_FI_FLAG_SYSFILE, 0);
  243. if (IS_ERR(new)) {
  244. status = PTR_ERR(new);
  245. mlog_errno(status);
  246. goto bail;
  247. }
  248. osb->sys_root_inode = new;
  249. for (i = OCFS2_FIRST_ONLINE_SYSTEM_INODE;
  250. i <= OCFS2_LAST_GLOBAL_SYSTEM_INODE; i++) {
  251. if (!ocfs2_need_system_inode(osb, i))
  252. continue;
  253. new = ocfs2_get_system_file_inode(osb, i, osb->slot_num);
  254. if (!new) {
  255. ocfs2_release_system_inodes(osb);
  256. status = -EINVAL;
  257. mlog_errno(status);
  258. /* FIXME: Should ERROR_RO_FS */
  259. mlog(ML_ERROR, "Unable to load system inode %d, "
  260. "possibly corrupt fs?", i);
  261. goto bail;
  262. }
  263. // the array now has one ref, so drop this one
  264. iput(new);
  265. }
  266. bail:
  267. mlog_exit(status);
  268. return status;
  269. }
  270. static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb)
  271. {
  272. struct inode *new = NULL;
  273. int status = 0;
  274. int i;
  275. mlog_entry_void();
  276. for (i = OCFS2_LAST_GLOBAL_SYSTEM_INODE + 1;
  277. i < NUM_SYSTEM_INODES;
  278. i++) {
  279. if (!ocfs2_need_system_inode(osb, i))
  280. continue;
  281. new = ocfs2_get_system_file_inode(osb, i, osb->slot_num);
  282. if (!new) {
  283. ocfs2_release_system_inodes(osb);
  284. status = -EINVAL;
  285. mlog(ML_ERROR, "status=%d, sysfile=%d, slot=%d\n",
  286. status, i, osb->slot_num);
  287. goto bail;
  288. }
  289. /* the array now has one ref, so drop this one */
  290. iput(new);
  291. }
  292. bail:
  293. mlog_exit(status);
  294. return status;
  295. }
  296. static void ocfs2_release_system_inodes(struct ocfs2_super *osb)
  297. {
  298. int i;
  299. struct inode *inode;
  300. mlog_entry_void();
  301. for (i = 0; i < NUM_SYSTEM_INODES; i++) {
  302. inode = osb->system_inodes[i];
  303. if (inode) {
  304. iput(inode);
  305. osb->system_inodes[i] = NULL;
  306. }
  307. }
  308. inode = osb->sys_root_inode;
  309. if (inode) {
  310. iput(inode);
  311. osb->sys_root_inode = NULL;
  312. }
  313. inode = osb->root_inode;
  314. if (inode) {
  315. iput(inode);
  316. osb->root_inode = NULL;
  317. }
  318. mlog_exit(0);
  319. }
  320. /* We're allocating fs objects, use GFP_NOFS */
  321. static struct inode *ocfs2_alloc_inode(struct super_block *sb)
  322. {
  323. struct ocfs2_inode_info *oi;
  324. oi = kmem_cache_alloc(ocfs2_inode_cachep, GFP_NOFS);
  325. if (!oi)
  326. return NULL;
  327. jbd2_journal_init_jbd_inode(&oi->ip_jinode, &oi->vfs_inode);
  328. return &oi->vfs_inode;
  329. }
  330. static void ocfs2_destroy_inode(struct inode *inode)
  331. {
  332. kmem_cache_free(ocfs2_inode_cachep, OCFS2_I(inode));
  333. }
  334. static unsigned long long ocfs2_max_file_offset(unsigned int bbits,
  335. unsigned int cbits)
  336. {
  337. unsigned int bytes = 1 << cbits;
  338. unsigned int trim = bytes;
  339. unsigned int bitshift = 32;
  340. /*
  341. * i_size and all block offsets in ocfs2 are always 64 bits
  342. * wide. i_clusters is 32 bits, in cluster-sized units. So on
  343. * 64 bit platforms, cluster size will be the limiting factor.
  344. */
  345. #if BITS_PER_LONG == 32
  346. # if defined(CONFIG_LBD)
  347. BUILD_BUG_ON(sizeof(sector_t) != 8);
  348. /*
  349. * We might be limited by page cache size.
  350. */
  351. if (bytes > PAGE_CACHE_SIZE) {
  352. bytes = PAGE_CACHE_SIZE;
  353. trim = 1;
  354. /*
  355. * Shift by 31 here so that we don't get larger than
  356. * MAX_LFS_FILESIZE
  357. */
  358. bitshift = 31;
  359. }
  360. # else
  361. /*
  362. * We are limited by the size of sector_t. Use block size, as
  363. * that's what we expose to the VFS.
  364. */
  365. bytes = 1 << bbits;
  366. trim = 1;
  367. bitshift = 31;
  368. # endif
  369. #endif
  370. /*
  371. * Trim by a whole cluster when we can actually approach the
  372. * on-disk limits. Otherwise we can overflow i_clusters when
  373. * an extent start is at the max offset.
  374. */
  375. return (((unsigned long long)bytes) << bitshift) - trim;
  376. }
  377. static int ocfs2_remount(struct super_block *sb, int *flags, char *data)
  378. {
  379. int incompat_features;
  380. int ret = 0;
  381. struct mount_options parsed_options;
  382. struct ocfs2_super *osb = OCFS2_SB(sb);
  383. if (!ocfs2_parse_options(sb, data, &parsed_options, 1)) {
  384. ret = -EINVAL;
  385. goto out;
  386. }
  387. if ((osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) !=
  388. (parsed_options.mount_opt & OCFS2_MOUNT_HB_LOCAL)) {
  389. ret = -EINVAL;
  390. mlog(ML_ERROR, "Cannot change heartbeat mode on remount\n");
  391. goto out;
  392. }
  393. if ((osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK) !=
  394. (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) {
  395. ret = -EINVAL;
  396. mlog(ML_ERROR, "Cannot change data mode on remount\n");
  397. goto out;
  398. }
  399. /* Probably don't want this on remount; it might
  400. * mess with other nodes */
  401. if (!(osb->s_mount_opt & OCFS2_MOUNT_INODE64) &&
  402. (parsed_options.mount_opt & OCFS2_MOUNT_INODE64)) {
  403. ret = -EINVAL;
  404. mlog(ML_ERROR, "Cannot enable inode64 on remount\n");
  405. goto out;
  406. }
  407. /* We're going to/from readonly mode. */
  408. if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY)) {
  409. /* Disable quota accounting before remounting RO */
  410. if (*flags & MS_RDONLY) {
  411. ret = ocfs2_susp_quotas(osb, 0);
  412. if (ret < 0)
  413. goto out;
  414. }
  415. /* Lock here so the check of HARD_RO and the potential
  416. * setting of SOFT_RO is atomic. */
  417. spin_lock(&osb->osb_lock);
  418. if (osb->osb_flags & OCFS2_OSB_HARD_RO) {
  419. mlog(ML_ERROR, "Remount on readonly device is forbidden.\n");
  420. ret = -EROFS;
  421. goto unlock_osb;
  422. }
  423. if (*flags & MS_RDONLY) {
  424. mlog(0, "Going to ro mode.\n");
  425. sb->s_flags |= MS_RDONLY;
  426. osb->osb_flags |= OCFS2_OSB_SOFT_RO;
  427. } else {
  428. mlog(0, "Making ro filesystem writeable.\n");
  429. if (osb->osb_flags & OCFS2_OSB_ERROR_FS) {
  430. mlog(ML_ERROR, "Cannot remount RDWR "
  431. "filesystem due to previous errors.\n");
  432. ret = -EROFS;
  433. goto unlock_osb;
  434. }
  435. incompat_features = OCFS2_HAS_RO_COMPAT_FEATURE(sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP);
  436. if (incompat_features) {
  437. mlog(ML_ERROR, "Cannot remount RDWR because "
  438. "of unsupported optional features "
  439. "(%x).\n", incompat_features);
  440. ret = -EINVAL;
  441. goto unlock_osb;
  442. }
  443. sb->s_flags &= ~MS_RDONLY;
  444. osb->osb_flags &= ~OCFS2_OSB_SOFT_RO;
  445. }
  446. unlock_osb:
  447. spin_unlock(&osb->osb_lock);
  448. /* Enable quota accounting after remounting RW */
  449. if (!ret && !(*flags & MS_RDONLY)) {
  450. if (sb_any_quota_suspended(sb))
  451. ret = ocfs2_susp_quotas(osb, 1);
  452. else
  453. ret = ocfs2_enable_quotas(osb);
  454. if (ret < 0) {
  455. /* Return back changes... */
  456. spin_lock(&osb->osb_lock);
  457. sb->s_flags |= MS_RDONLY;
  458. osb->osb_flags |= OCFS2_OSB_SOFT_RO;
  459. spin_unlock(&osb->osb_lock);
  460. goto out;
  461. }
  462. }
  463. }
  464. if (!ret) {
  465. /* Only save off the new mount options in case of a successful
  466. * remount. */
  467. if (!(osb->s_feature_incompat & OCFS2_FEATURE_INCOMPAT_XATTR))
  468. parsed_options.mount_opt &= ~OCFS2_MOUNT_POSIX_ACL;
  469. osb->s_mount_opt = parsed_options.mount_opt;
  470. osb->s_atime_quantum = parsed_options.atime_quantum;
  471. osb->preferred_slot = parsed_options.slot;
  472. if (parsed_options.commit_interval)
  473. osb->osb_commit_interval = parsed_options.commit_interval;
  474. if (!ocfs2_is_hard_readonly(osb))
  475. ocfs2_set_journal_params(osb);
  476. }
  477. out:
  478. return ret;
  479. }
  480. static int ocfs2_sb_probe(struct super_block *sb,
  481. struct buffer_head **bh,
  482. int *sector_size)
  483. {
  484. int status, tmpstat;
  485. struct ocfs1_vol_disk_hdr *hdr;
  486. struct ocfs2_dinode *di;
  487. int blksize;
  488. *bh = NULL;
  489. /* may be > 512 */
  490. *sector_size = bdev_hardsect_size(sb->s_bdev);
  491. if (*sector_size > OCFS2_MAX_BLOCKSIZE) {
  492. mlog(ML_ERROR, "Hardware sector size too large: %d (max=%d)\n",
  493. *sector_size, OCFS2_MAX_BLOCKSIZE);
  494. status = -EINVAL;
  495. goto bail;
  496. }
  497. /* Can this really happen? */
  498. if (*sector_size < OCFS2_MIN_BLOCKSIZE)
  499. *sector_size = OCFS2_MIN_BLOCKSIZE;
  500. /* check block zero for old format */
  501. status = ocfs2_get_sector(sb, bh, 0, *sector_size);
  502. if (status < 0) {
  503. mlog_errno(status);
  504. goto bail;
  505. }
  506. hdr = (struct ocfs1_vol_disk_hdr *) (*bh)->b_data;
  507. if (hdr->major_version == OCFS1_MAJOR_VERSION) {
  508. mlog(ML_ERROR, "incompatible version: %u.%u\n",
  509. hdr->major_version, hdr->minor_version);
  510. status = -EINVAL;
  511. }
  512. if (memcmp(hdr->signature, OCFS1_VOLUME_SIGNATURE,
  513. strlen(OCFS1_VOLUME_SIGNATURE)) == 0) {
  514. mlog(ML_ERROR, "incompatible volume signature: %8s\n",
  515. hdr->signature);
  516. status = -EINVAL;
  517. }
  518. brelse(*bh);
  519. *bh = NULL;
  520. if (status < 0) {
  521. mlog(ML_ERROR, "This is an ocfs v1 filesystem which must be "
  522. "upgraded before mounting with ocfs v2\n");
  523. goto bail;
  524. }
  525. /*
  526. * Now check at magic offset for 512, 1024, 2048, 4096
  527. * blocksizes. 4096 is the maximum blocksize because it is
  528. * the minimum clustersize.
  529. */
  530. status = -EINVAL;
  531. for (blksize = *sector_size;
  532. blksize <= OCFS2_MAX_BLOCKSIZE;
  533. blksize <<= 1) {
  534. tmpstat = ocfs2_get_sector(sb, bh,
  535. OCFS2_SUPER_BLOCK_BLKNO,
  536. blksize);
  537. if (tmpstat < 0) {
  538. status = tmpstat;
  539. mlog_errno(status);
  540. goto bail;
  541. }
  542. di = (struct ocfs2_dinode *) (*bh)->b_data;
  543. status = ocfs2_verify_volume(di, *bh, blksize);
  544. if (status >= 0)
  545. goto bail;
  546. brelse(*bh);
  547. *bh = NULL;
  548. if (status != -EAGAIN)
  549. break;
  550. }
  551. bail:
  552. return status;
  553. }
  554. static int ocfs2_verify_heartbeat(struct ocfs2_super *osb)
  555. {
  556. if (ocfs2_mount_local(osb)) {
  557. if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
  558. mlog(ML_ERROR, "Cannot heartbeat on a locally "
  559. "mounted device.\n");
  560. return -EINVAL;
  561. }
  562. }
  563. if (ocfs2_userspace_stack(osb)) {
  564. if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
  565. mlog(ML_ERROR, "Userspace stack expected, but "
  566. "o2cb heartbeat arguments passed to mount\n");
  567. return -EINVAL;
  568. }
  569. }
  570. if (!(osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL)) {
  571. if (!ocfs2_mount_local(osb) && !ocfs2_is_hard_readonly(osb) &&
  572. !ocfs2_userspace_stack(osb)) {
  573. mlog(ML_ERROR, "Heartbeat has to be started to mount "
  574. "a read-write clustered device.\n");
  575. return -EINVAL;
  576. }
  577. }
  578. return 0;
  579. }
  580. /*
  581. * If we're using a userspace stack, mount should have passed
  582. * a name that matches the disk. If not, mount should not
  583. * have passed a stack.
  584. */
  585. static int ocfs2_verify_userspace_stack(struct ocfs2_super *osb,
  586. struct mount_options *mopt)
  587. {
  588. if (!ocfs2_userspace_stack(osb) && mopt->cluster_stack[0]) {
  589. mlog(ML_ERROR,
  590. "cluster stack passed to mount, but this filesystem "
  591. "does not support it\n");
  592. return -EINVAL;
  593. }
  594. if (ocfs2_userspace_stack(osb) &&
  595. strncmp(osb->osb_cluster_stack, mopt->cluster_stack,
  596. OCFS2_STACK_LABEL_LEN)) {
  597. mlog(ML_ERROR,
  598. "cluster stack passed to mount (\"%s\") does not "
  599. "match the filesystem (\"%s\")\n",
  600. mopt->cluster_stack,
  601. osb->osb_cluster_stack);
  602. return -EINVAL;
  603. }
  604. return 0;
  605. }
  606. static int ocfs2_susp_quotas(struct ocfs2_super *osb, int unsuspend)
  607. {
  608. int type;
  609. struct super_block *sb = osb->sb;
  610. unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
  611. OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
  612. int status = 0;
  613. for (type = 0; type < MAXQUOTAS; type++) {
  614. if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
  615. continue;
  616. if (unsuspend)
  617. status = vfs_quota_enable(
  618. sb_dqopt(sb)->files[type],
  619. type, QFMT_OCFS2,
  620. DQUOT_SUSPENDED);
  621. else
  622. status = vfs_quota_disable(sb, type,
  623. DQUOT_SUSPENDED);
  624. if (status < 0)
  625. break;
  626. }
  627. if (status < 0)
  628. mlog(ML_ERROR, "Failed to suspend/unsuspend quotas on "
  629. "remount (error = %d).\n", status);
  630. return status;
  631. }
  632. static int ocfs2_enable_quotas(struct ocfs2_super *osb)
  633. {
  634. struct inode *inode[MAXQUOTAS] = { NULL, NULL };
  635. struct super_block *sb = osb->sb;
  636. unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
  637. OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
  638. unsigned int ino[MAXQUOTAS] = { LOCAL_USER_QUOTA_SYSTEM_INODE,
  639. LOCAL_GROUP_QUOTA_SYSTEM_INODE };
  640. int status;
  641. int type;
  642. sb_dqopt(sb)->flags |= DQUOT_QUOTA_SYS_FILE | DQUOT_NEGATIVE_USAGE;
  643. for (type = 0; type < MAXQUOTAS; type++) {
  644. if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
  645. continue;
  646. inode[type] = ocfs2_get_system_file_inode(osb, ino[type],
  647. osb->slot_num);
  648. if (!inode[type]) {
  649. status = -ENOENT;
  650. goto out_quota_off;
  651. }
  652. status = vfs_quota_enable(inode[type], type, QFMT_OCFS2,
  653. DQUOT_USAGE_ENABLED);
  654. if (status < 0)
  655. goto out_quota_off;
  656. }
  657. for (type = 0; type < MAXQUOTAS; type++)
  658. iput(inode[type]);
  659. return 0;
  660. out_quota_off:
  661. ocfs2_disable_quotas(osb);
  662. for (type = 0; type < MAXQUOTAS; type++)
  663. iput(inode[type]);
  664. mlog_errno(status);
  665. return status;
  666. }
  667. static void ocfs2_disable_quotas(struct ocfs2_super *osb)
  668. {
  669. int type;
  670. struct inode *inode;
  671. struct super_block *sb = osb->sb;
  672. /* We mostly ignore errors in this function because there's not much
  673. * we can do when we see them */
  674. for (type = 0; type < MAXQUOTAS; type++) {
  675. if (!sb_has_quota_loaded(sb, type))
  676. continue;
  677. inode = igrab(sb->s_dquot.files[type]);
  678. /* Turn off quotas. This will remove all dquot structures from
  679. * memory and so they will be automatically synced to global
  680. * quota files */
  681. vfs_quota_disable(sb, type, DQUOT_USAGE_ENABLED |
  682. DQUOT_LIMITS_ENABLED);
  683. if (!inode)
  684. continue;
  685. iput(inode);
  686. }
  687. }
  688. /* Handle quota on quotactl */
  689. static int ocfs2_quota_on(struct super_block *sb, int type, int format_id,
  690. char *path, int remount)
  691. {
  692. unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
  693. OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
  694. if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
  695. return -EINVAL;
  696. if (remount)
  697. return 0; /* Just ignore it has been handled in
  698. * ocfs2_remount() */
  699. return vfs_quota_enable(sb_dqopt(sb)->files[type], type,
  700. format_id, DQUOT_LIMITS_ENABLED);
  701. }
  702. /* Handle quota off quotactl */
  703. static int ocfs2_quota_off(struct super_block *sb, int type, int remount)
  704. {
  705. if (remount)
  706. return 0; /* Ignore now and handle later in
  707. * ocfs2_remount() */
  708. return vfs_quota_disable(sb, type, DQUOT_LIMITS_ENABLED);
  709. }
  710. static struct quotactl_ops ocfs2_quotactl_ops = {
  711. .quota_on = ocfs2_quota_on,
  712. .quota_off = ocfs2_quota_off,
  713. .quota_sync = vfs_quota_sync,
  714. .get_info = vfs_get_dqinfo,
  715. .set_info = vfs_set_dqinfo,
  716. .get_dqblk = vfs_get_dqblk,
  717. .set_dqblk = vfs_set_dqblk,
  718. };
  719. static int ocfs2_fill_super(struct super_block *sb, void *data, int silent)
  720. {
  721. struct dentry *root;
  722. int status, sector_size;
  723. struct mount_options parsed_options;
  724. struct inode *inode = NULL;
  725. struct ocfs2_super *osb = NULL;
  726. struct buffer_head *bh = NULL;
  727. char nodestr[8];
  728. mlog_entry("%p, %p, %i", sb, data, silent);
  729. if (!ocfs2_parse_options(sb, data, &parsed_options, 0)) {
  730. status = -EINVAL;
  731. goto read_super_error;
  732. }
  733. /* probe for superblock */
  734. status = ocfs2_sb_probe(sb, &bh, &sector_size);
  735. if (status < 0) {
  736. mlog(ML_ERROR, "superblock probe failed!\n");
  737. goto read_super_error;
  738. }
  739. status = ocfs2_initialize_super(sb, bh, sector_size);
  740. osb = OCFS2_SB(sb);
  741. if (status < 0) {
  742. mlog_errno(status);
  743. goto read_super_error;
  744. }
  745. brelse(bh);
  746. bh = NULL;
  747. if (!(osb->s_feature_incompat & OCFS2_FEATURE_INCOMPAT_XATTR))
  748. parsed_options.mount_opt &= ~OCFS2_MOUNT_POSIX_ACL;
  749. osb->s_mount_opt = parsed_options.mount_opt;
  750. osb->s_atime_quantum = parsed_options.atime_quantum;
  751. osb->preferred_slot = parsed_options.slot;
  752. osb->osb_commit_interval = parsed_options.commit_interval;
  753. osb->local_alloc_default_bits = ocfs2_megabytes_to_clusters(sb, parsed_options.localalloc_opt);
  754. osb->local_alloc_bits = osb->local_alloc_default_bits;
  755. if (osb->s_mount_opt & OCFS2_MOUNT_USRQUOTA &&
  756. !OCFS2_HAS_RO_COMPAT_FEATURE(sb,
  757. OCFS2_FEATURE_RO_COMPAT_USRQUOTA)) {
  758. status = -EINVAL;
  759. mlog(ML_ERROR, "User quotas were requested, but this "
  760. "filesystem does not have the feature enabled.\n");
  761. goto read_super_error;
  762. }
  763. if (osb->s_mount_opt & OCFS2_MOUNT_GRPQUOTA &&
  764. !OCFS2_HAS_RO_COMPAT_FEATURE(sb,
  765. OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)) {
  766. status = -EINVAL;
  767. mlog(ML_ERROR, "Group quotas were requested, but this "
  768. "filesystem does not have the feature enabled.\n");
  769. goto read_super_error;
  770. }
  771. status = ocfs2_verify_userspace_stack(osb, &parsed_options);
  772. if (status)
  773. goto read_super_error;
  774. sb->s_magic = OCFS2_SUPER_MAGIC;
  775. sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
  776. ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
  777. /* Hard readonly mode only if: bdev_read_only, MS_RDONLY,
  778. * heartbeat=none */
  779. if (bdev_read_only(sb->s_bdev)) {
  780. if (!(sb->s_flags & MS_RDONLY)) {
  781. status = -EACCES;
  782. mlog(ML_ERROR, "Readonly device detected but readonly "
  783. "mount was not specified.\n");
  784. goto read_super_error;
  785. }
  786. /* You should not be able to start a local heartbeat
  787. * on a readonly device. */
  788. if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
  789. status = -EROFS;
  790. mlog(ML_ERROR, "Local heartbeat specified on readonly "
  791. "device.\n");
  792. goto read_super_error;
  793. }
  794. status = ocfs2_check_journals_nolocks(osb);
  795. if (status < 0) {
  796. if (status == -EROFS)
  797. mlog(ML_ERROR, "Recovery required on readonly "
  798. "file system, but write access is "
  799. "unavailable.\n");
  800. else
  801. mlog_errno(status);
  802. goto read_super_error;
  803. }
  804. ocfs2_set_ro_flag(osb, 1);
  805. printk(KERN_NOTICE "Readonly device detected. No cluster "
  806. "services will be utilized for this mount. Recovery "
  807. "will be skipped.\n");
  808. }
  809. if (!ocfs2_is_hard_readonly(osb)) {
  810. if (sb->s_flags & MS_RDONLY)
  811. ocfs2_set_ro_flag(osb, 0);
  812. }
  813. status = ocfs2_verify_heartbeat(osb);
  814. if (status < 0) {
  815. mlog_errno(status);
  816. goto read_super_error;
  817. }
  818. osb->osb_debug_root = debugfs_create_dir(osb->uuid_str,
  819. ocfs2_debugfs_root);
  820. if (!osb->osb_debug_root) {
  821. status = -EINVAL;
  822. mlog(ML_ERROR, "Unable to create per-mount debugfs root.\n");
  823. goto read_super_error;
  824. }
  825. status = ocfs2_mount_volume(sb);
  826. if (osb->root_inode)
  827. inode = igrab(osb->root_inode);
  828. if (status < 0)
  829. goto read_super_error;
  830. if (!inode) {
  831. status = -EIO;
  832. mlog_errno(status);
  833. goto read_super_error;
  834. }
  835. root = d_alloc_root(inode);
  836. if (!root) {
  837. status = -ENOMEM;
  838. mlog_errno(status);
  839. goto read_super_error;
  840. }
  841. sb->s_root = root;
  842. ocfs2_complete_mount_recovery(osb);
  843. if (ocfs2_mount_local(osb))
  844. snprintf(nodestr, sizeof(nodestr), "local");
  845. else
  846. snprintf(nodestr, sizeof(nodestr), "%u", osb->node_num);
  847. printk(KERN_INFO "ocfs2: Mounting device (%s) on (node %s, slot %d) "
  848. "with %s data mode.\n",
  849. osb->dev_str, nodestr, osb->slot_num,
  850. osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK ? "writeback" :
  851. "ordered");
  852. atomic_set(&osb->vol_state, VOLUME_MOUNTED);
  853. wake_up(&osb->osb_mount_event);
  854. /* Now we can initialize quotas because we can afford to wait
  855. * for cluster locks recovery now. That also means that truncation
  856. * log recovery can happen but that waits for proper quota setup */
  857. if (!(sb->s_flags & MS_RDONLY)) {
  858. status = ocfs2_enable_quotas(osb);
  859. if (status < 0) {
  860. /* We have to err-out specially here because
  861. * s_root is already set */
  862. mlog_errno(status);
  863. atomic_set(&osb->vol_state, VOLUME_DISABLED);
  864. wake_up(&osb->osb_mount_event);
  865. mlog_exit(status);
  866. return status;
  867. }
  868. }
  869. ocfs2_complete_quota_recovery(osb);
  870. /* Now we wake up again for processes waiting for quotas */
  871. atomic_set(&osb->vol_state, VOLUME_MOUNTED_QUOTAS);
  872. wake_up(&osb->osb_mount_event);
  873. mlog_exit(status);
  874. return status;
  875. read_super_error:
  876. brelse(bh);
  877. if (inode)
  878. iput(inode);
  879. if (osb) {
  880. atomic_set(&osb->vol_state, VOLUME_DISABLED);
  881. wake_up(&osb->osb_mount_event);
  882. ocfs2_dismount_volume(sb, 1);
  883. }
  884. mlog_exit(status);
  885. return status;
  886. }
  887. static int ocfs2_get_sb(struct file_system_type *fs_type,
  888. int flags,
  889. const char *dev_name,
  890. void *data,
  891. struct vfsmount *mnt)
  892. {
  893. return get_sb_bdev(fs_type, flags, dev_name, data, ocfs2_fill_super,
  894. mnt);
  895. }
  896. static struct file_system_type ocfs2_fs_type = {
  897. .owner = THIS_MODULE,
  898. .name = "ocfs2",
  899. .get_sb = ocfs2_get_sb, /* is this called when we mount
  900. * the fs? */
  901. .kill_sb = kill_block_super, /* set to the generic one
  902. * right now, but do we
  903. * need to change that? */
  904. .fs_flags = FS_REQUIRES_DEV|FS_RENAME_DOES_D_MOVE,
  905. .next = NULL
  906. };
  907. static int ocfs2_parse_options(struct super_block *sb,
  908. char *options,
  909. struct mount_options *mopt,
  910. int is_remount)
  911. {
  912. int status;
  913. char *p;
  914. mlog_entry("remount: %d, options: \"%s\"\n", is_remount,
  915. options ? options : "(none)");
  916. mopt->commit_interval = 0;
  917. mopt->mount_opt = 0;
  918. mopt->atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM;
  919. mopt->slot = OCFS2_INVALID_SLOT;
  920. mopt->localalloc_opt = OCFS2_DEFAULT_LOCAL_ALLOC_SIZE;
  921. mopt->cluster_stack[0] = '\0';
  922. if (!options) {
  923. status = 1;
  924. goto bail;
  925. }
  926. while ((p = strsep(&options, ",")) != NULL) {
  927. int token, option;
  928. substring_t args[MAX_OPT_ARGS];
  929. if (!*p)
  930. continue;
  931. token = match_token(p, tokens, args);
  932. switch (token) {
  933. case Opt_hb_local:
  934. mopt->mount_opt |= OCFS2_MOUNT_HB_LOCAL;
  935. break;
  936. case Opt_hb_none:
  937. mopt->mount_opt &= ~OCFS2_MOUNT_HB_LOCAL;
  938. break;
  939. case Opt_barrier:
  940. if (match_int(&args[0], &option)) {
  941. status = 0;
  942. goto bail;
  943. }
  944. if (option)
  945. mopt->mount_opt |= OCFS2_MOUNT_BARRIER;
  946. else
  947. mopt->mount_opt &= ~OCFS2_MOUNT_BARRIER;
  948. break;
  949. case Opt_intr:
  950. mopt->mount_opt &= ~OCFS2_MOUNT_NOINTR;
  951. break;
  952. case Opt_nointr:
  953. mopt->mount_opt |= OCFS2_MOUNT_NOINTR;
  954. break;
  955. case Opt_err_panic:
  956. mopt->mount_opt |= OCFS2_MOUNT_ERRORS_PANIC;
  957. break;
  958. case Opt_err_ro:
  959. mopt->mount_opt &= ~OCFS2_MOUNT_ERRORS_PANIC;
  960. break;
  961. case Opt_data_ordered:
  962. mopt->mount_opt &= ~OCFS2_MOUNT_DATA_WRITEBACK;
  963. break;
  964. case Opt_data_writeback:
  965. mopt->mount_opt |= OCFS2_MOUNT_DATA_WRITEBACK;
  966. break;
  967. case Opt_user_xattr:
  968. mopt->mount_opt &= ~OCFS2_MOUNT_NOUSERXATTR;
  969. break;
  970. case Opt_nouser_xattr:
  971. mopt->mount_opt |= OCFS2_MOUNT_NOUSERXATTR;
  972. break;
  973. case Opt_atime_quantum:
  974. if (match_int(&args[0], &option)) {
  975. status = 0;
  976. goto bail;
  977. }
  978. if (option >= 0)
  979. mopt->atime_quantum = option;
  980. break;
  981. case Opt_slot:
  982. option = 0;
  983. if (match_int(&args[0], &option)) {
  984. status = 0;
  985. goto bail;
  986. }
  987. if (option)
  988. mopt->slot = (s16)option;
  989. break;
  990. case Opt_commit:
  991. option = 0;
  992. if (match_int(&args[0], &option)) {
  993. status = 0;
  994. goto bail;
  995. }
  996. if (option < 0)
  997. return 0;
  998. if (option == 0)
  999. option = JBD2_DEFAULT_MAX_COMMIT_AGE;
  1000. mopt->commit_interval = HZ * option;
  1001. break;
  1002. case Opt_localalloc:
  1003. option = 0;
  1004. if (match_int(&args[0], &option)) {
  1005. status = 0;
  1006. goto bail;
  1007. }
  1008. if (option >= 0 && (option <= ocfs2_local_alloc_size(sb) * 8))
  1009. mopt->localalloc_opt = option;
  1010. break;
  1011. case Opt_localflocks:
  1012. /*
  1013. * Changing this during remount could race
  1014. * flock() requests, or "unbalance" existing
  1015. * ones (e.g., a lock is taken in one mode but
  1016. * dropped in the other). If users care enough
  1017. * to flip locking modes during remount, we
  1018. * could add a "local" flag to individual
  1019. * flock structures for proper tracking of
  1020. * state.
  1021. */
  1022. if (!is_remount)
  1023. mopt->mount_opt |= OCFS2_MOUNT_LOCALFLOCKS;
  1024. break;
  1025. case Opt_stack:
  1026. /* Check both that the option we were passed
  1027. * is of the right length and that it is a proper
  1028. * string of the right length.
  1029. */
  1030. if (((args[0].to - args[0].from) !=
  1031. OCFS2_STACK_LABEL_LEN) ||
  1032. (strnlen(args[0].from,
  1033. OCFS2_STACK_LABEL_LEN) !=
  1034. OCFS2_STACK_LABEL_LEN)) {
  1035. mlog(ML_ERROR,
  1036. "Invalid cluster_stack option\n");
  1037. status = 0;
  1038. goto bail;
  1039. }
  1040. memcpy(mopt->cluster_stack, args[0].from,
  1041. OCFS2_STACK_LABEL_LEN);
  1042. mopt->cluster_stack[OCFS2_STACK_LABEL_LEN] = '\0';
  1043. break;
  1044. case Opt_inode64:
  1045. mopt->mount_opt |= OCFS2_MOUNT_INODE64;
  1046. break;
  1047. case Opt_usrquota:
  1048. /* We check only on remount, otherwise features
  1049. * aren't yet initialized. */
  1050. if (is_remount && !OCFS2_HAS_RO_COMPAT_FEATURE(sb,
  1051. OCFS2_FEATURE_RO_COMPAT_USRQUOTA)) {
  1052. mlog(ML_ERROR, "User quota requested but "
  1053. "filesystem feature is not set\n");
  1054. status = 0;
  1055. goto bail;
  1056. }
  1057. mopt->mount_opt |= OCFS2_MOUNT_USRQUOTA;
  1058. break;
  1059. case Opt_grpquota:
  1060. if (is_remount && !OCFS2_HAS_RO_COMPAT_FEATURE(sb,
  1061. OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)) {
  1062. mlog(ML_ERROR, "Group quota requested but "
  1063. "filesystem feature is not set\n");
  1064. status = 0;
  1065. goto bail;
  1066. }
  1067. mopt->mount_opt |= OCFS2_MOUNT_GRPQUOTA;
  1068. break;
  1069. #ifdef CONFIG_OCFS2_FS_POSIX_ACL
  1070. case Opt_acl:
  1071. mopt->mount_opt |= OCFS2_MOUNT_POSIX_ACL;
  1072. break;
  1073. case Opt_noacl:
  1074. mopt->mount_opt &= ~OCFS2_MOUNT_POSIX_ACL;
  1075. break;
  1076. #else
  1077. case Opt_acl:
  1078. case Opt_noacl:
  1079. printk(KERN_INFO "ocfs2 (no)acl options not supported\n");
  1080. break;
  1081. #endif
  1082. default:
  1083. mlog(ML_ERROR,
  1084. "Unrecognized mount option \"%s\" "
  1085. "or missing value\n", p);
  1086. status = 0;
  1087. goto bail;
  1088. }
  1089. }
  1090. status = 1;
  1091. bail:
  1092. mlog_exit(status);
  1093. return status;
  1094. }
  1095. static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt)
  1096. {
  1097. struct ocfs2_super *osb = OCFS2_SB(mnt->mnt_sb);
  1098. unsigned long opts = osb->s_mount_opt;
  1099. unsigned int local_alloc_megs;
  1100. if (opts & OCFS2_MOUNT_HB_LOCAL)
  1101. seq_printf(s, ",_netdev,heartbeat=local");
  1102. else
  1103. seq_printf(s, ",heartbeat=none");
  1104. if (opts & OCFS2_MOUNT_NOINTR)
  1105. seq_printf(s, ",nointr");
  1106. if (opts & OCFS2_MOUNT_DATA_WRITEBACK)
  1107. seq_printf(s, ",data=writeback");
  1108. else
  1109. seq_printf(s, ",data=ordered");
  1110. if (opts & OCFS2_MOUNT_BARRIER)
  1111. seq_printf(s, ",barrier=1");
  1112. if (opts & OCFS2_MOUNT_ERRORS_PANIC)
  1113. seq_printf(s, ",errors=panic");
  1114. else
  1115. seq_printf(s, ",errors=remount-ro");
  1116. if (osb->preferred_slot != OCFS2_INVALID_SLOT)
  1117. seq_printf(s, ",preferred_slot=%d", osb->preferred_slot);
  1118. if (osb->s_atime_quantum != OCFS2_DEFAULT_ATIME_QUANTUM)
  1119. seq_printf(s, ",atime_quantum=%u", osb->s_atime_quantum);
  1120. if (osb->osb_commit_interval)
  1121. seq_printf(s, ",commit=%u",
  1122. (unsigned) (osb->osb_commit_interval / HZ));
  1123. local_alloc_megs = osb->local_alloc_bits >> (20 - osb->s_clustersize_bits);
  1124. if (local_alloc_megs != OCFS2_DEFAULT_LOCAL_ALLOC_SIZE)
  1125. seq_printf(s, ",localalloc=%d", local_alloc_megs);
  1126. if (opts & OCFS2_MOUNT_LOCALFLOCKS)
  1127. seq_printf(s, ",localflocks,");
  1128. if (osb->osb_cluster_stack[0])
  1129. seq_printf(s, ",cluster_stack=%.*s", OCFS2_STACK_LABEL_LEN,
  1130. osb->osb_cluster_stack);
  1131. if (opts & OCFS2_MOUNT_USRQUOTA)
  1132. seq_printf(s, ",usrquota");
  1133. if (opts & OCFS2_MOUNT_GRPQUOTA)
  1134. seq_printf(s, ",grpquota");
  1135. if (opts & OCFS2_MOUNT_NOUSERXATTR)
  1136. seq_printf(s, ",nouser_xattr");
  1137. else
  1138. seq_printf(s, ",user_xattr");
  1139. if (opts & OCFS2_MOUNT_INODE64)
  1140. seq_printf(s, ",inode64");
  1141. #ifdef CONFIG_OCFS2_FS_POSIX_ACL
  1142. if (opts & OCFS2_MOUNT_POSIX_ACL)
  1143. seq_printf(s, ",acl");
  1144. else
  1145. seq_printf(s, ",noacl");
  1146. #endif
  1147. return 0;
  1148. }
  1149. static int __init ocfs2_init(void)
  1150. {
  1151. int status;
  1152. mlog_entry_void();
  1153. ocfs2_print_version();
  1154. status = init_ocfs2_uptodate_cache();
  1155. if (status < 0) {
  1156. mlog_errno(status);
  1157. goto leave;
  1158. }
  1159. status = ocfs2_initialize_mem_caches();
  1160. if (status < 0) {
  1161. mlog_errno(status);
  1162. goto leave;
  1163. }
  1164. ocfs2_wq = create_singlethread_workqueue("ocfs2_wq");
  1165. if (!ocfs2_wq) {
  1166. status = -ENOMEM;
  1167. goto leave;
  1168. }
  1169. ocfs2_debugfs_root = debugfs_create_dir("ocfs2", NULL);
  1170. if (!ocfs2_debugfs_root) {
  1171. status = -EFAULT;
  1172. mlog(ML_ERROR, "Unable to create ocfs2 debugfs root.\n");
  1173. }
  1174. status = ocfs2_quota_setup();
  1175. if (status)
  1176. goto leave;
  1177. ocfs2_set_locking_protocol();
  1178. status = register_quota_format(&ocfs2_quota_format);
  1179. leave:
  1180. if (status < 0) {
  1181. ocfs2_quota_shutdown();
  1182. ocfs2_free_mem_caches();
  1183. exit_ocfs2_uptodate_cache();
  1184. }
  1185. mlog_exit(status);
  1186. if (status >= 0) {
  1187. return register_filesystem(&ocfs2_fs_type);
  1188. } else
  1189. return -1;
  1190. }
  1191. static void __exit ocfs2_exit(void)
  1192. {
  1193. mlog_entry_void();
  1194. ocfs2_quota_shutdown();
  1195. if (ocfs2_wq) {
  1196. flush_workqueue(ocfs2_wq);
  1197. destroy_workqueue(ocfs2_wq);
  1198. }
  1199. unregister_quota_format(&ocfs2_quota_format);
  1200. debugfs_remove(ocfs2_debugfs_root);
  1201. ocfs2_free_mem_caches();
  1202. unregister_filesystem(&ocfs2_fs_type);
  1203. exit_ocfs2_uptodate_cache();
  1204. mlog_exit_void();
  1205. }
  1206. static void ocfs2_put_super(struct super_block *sb)
  1207. {
  1208. mlog_entry("(0x%p)\n", sb);
  1209. ocfs2_sync_blockdev(sb);
  1210. ocfs2_dismount_volume(sb, 0);
  1211. mlog_exit_void();
  1212. }
  1213. static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
  1214. {
  1215. struct ocfs2_super *osb;
  1216. u32 numbits, freebits;
  1217. int status;
  1218. struct ocfs2_dinode *bm_lock;
  1219. struct buffer_head *bh = NULL;
  1220. struct inode *inode = NULL;
  1221. mlog_entry("(%p, %p)\n", dentry->d_sb, buf);
  1222. osb = OCFS2_SB(dentry->d_sb);
  1223. inode = ocfs2_get_system_file_inode(osb,
  1224. GLOBAL_BITMAP_SYSTEM_INODE,
  1225. OCFS2_INVALID_SLOT);
  1226. if (!inode) {
  1227. mlog(ML_ERROR, "failed to get bitmap inode\n");
  1228. status = -EIO;
  1229. goto bail;
  1230. }
  1231. status = ocfs2_inode_lock(inode, &bh, 0);
  1232. if (status < 0) {
  1233. mlog_errno(status);
  1234. goto bail;
  1235. }
  1236. bm_lock = (struct ocfs2_dinode *) bh->b_data;
  1237. numbits = le32_to_cpu(bm_lock->id1.bitmap1.i_total);
  1238. freebits = numbits - le32_to_cpu(bm_lock->id1.bitmap1.i_used);
  1239. buf->f_type = OCFS2_SUPER_MAGIC;
  1240. buf->f_bsize = dentry->d_sb->s_blocksize;
  1241. buf->f_namelen = OCFS2_MAX_FILENAME_LEN;
  1242. buf->f_blocks = ((sector_t) numbits) *
  1243. (osb->s_clustersize >> osb->sb->s_blocksize_bits);
  1244. buf->f_bfree = ((sector_t) freebits) *
  1245. (osb->s_clustersize >> osb->sb->s_blocksize_bits);
  1246. buf->f_bavail = buf->f_bfree;
  1247. buf->f_files = numbits;
  1248. buf->f_ffree = freebits;
  1249. brelse(bh);
  1250. ocfs2_inode_unlock(inode, 0);
  1251. status = 0;
  1252. bail:
  1253. if (inode)
  1254. iput(inode);
  1255. mlog_exit(status);
  1256. return status;
  1257. }
  1258. static void ocfs2_inode_init_once(void *data)
  1259. {
  1260. struct ocfs2_inode_info *oi = data;
  1261. oi->ip_flags = 0;
  1262. oi->ip_open_count = 0;
  1263. spin_lock_init(&oi->ip_lock);
  1264. ocfs2_extent_map_init(&oi->vfs_inode);
  1265. INIT_LIST_HEAD(&oi->ip_io_markers);
  1266. oi->ip_created_trans = 0;
  1267. oi->ip_last_trans = 0;
  1268. oi->ip_dir_start_lookup = 0;
  1269. init_rwsem(&oi->ip_alloc_sem);
  1270. init_rwsem(&oi->ip_xattr_sem);
  1271. mutex_init(&oi->ip_io_mutex);
  1272. oi->ip_blkno = 0ULL;
  1273. oi->ip_clusters = 0;
  1274. ocfs2_lock_res_init_once(&oi->ip_rw_lockres);
  1275. ocfs2_lock_res_init_once(&oi->ip_inode_lockres);
  1276. ocfs2_lock_res_init_once(&oi->ip_open_lockres);
  1277. ocfs2_metadata_cache_init(&oi->vfs_inode);
  1278. inode_init_once(&oi->vfs_inode);
  1279. }
  1280. static int ocfs2_initialize_mem_caches(void)
  1281. {
  1282. ocfs2_inode_cachep = kmem_cache_create("ocfs2_inode_cache",
  1283. sizeof(struct ocfs2_inode_info),
  1284. 0,
  1285. (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
  1286. SLAB_MEM_SPREAD),
  1287. ocfs2_inode_init_once);
  1288. ocfs2_dquot_cachep = kmem_cache_create("ocfs2_dquot_cache",
  1289. sizeof(struct ocfs2_dquot),
  1290. 0,
  1291. (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
  1292. SLAB_MEM_SPREAD),
  1293. NULL);
  1294. ocfs2_qf_chunk_cachep = kmem_cache_create("ocfs2_qf_chunk_cache",
  1295. sizeof(struct ocfs2_quota_chunk),
  1296. 0,
  1297. (SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD),
  1298. NULL);
  1299. if (!ocfs2_inode_cachep || !ocfs2_dquot_cachep ||
  1300. !ocfs2_qf_chunk_cachep) {
  1301. if (ocfs2_inode_cachep)
  1302. kmem_cache_destroy(ocfs2_inode_cachep);
  1303. if (ocfs2_dquot_cachep)
  1304. kmem_cache_destroy(ocfs2_dquot_cachep);
  1305. if (ocfs2_qf_chunk_cachep)
  1306. kmem_cache_destroy(ocfs2_qf_chunk_cachep);
  1307. return -ENOMEM;
  1308. }
  1309. return 0;
  1310. }
  1311. static void ocfs2_free_mem_caches(void)
  1312. {
  1313. if (ocfs2_inode_cachep)
  1314. kmem_cache_destroy(ocfs2_inode_cachep);
  1315. ocfs2_inode_cachep = NULL;
  1316. if (ocfs2_dquot_cachep)
  1317. kmem_cache_destroy(ocfs2_dquot_cachep);
  1318. ocfs2_dquot_cachep = NULL;
  1319. if (ocfs2_qf_chunk_cachep)
  1320. kmem_cache_destroy(ocfs2_qf_chunk_cachep);
  1321. ocfs2_qf_chunk_cachep = NULL;
  1322. }
  1323. static int ocfs2_get_sector(struct super_block *sb,
  1324. struct buffer_head **bh,
  1325. int block,
  1326. int sect_size)
  1327. {
  1328. if (!sb_set_blocksize(sb, sect_size)) {
  1329. mlog(ML_ERROR, "unable to set blocksize\n");
  1330. return -EIO;
  1331. }
  1332. *bh = sb_getblk(sb, block);
  1333. if (!*bh) {
  1334. mlog_errno(-EIO);
  1335. return -EIO;
  1336. }
  1337. lock_buffer(*bh);
  1338. if (!buffer_dirty(*bh))
  1339. clear_buffer_uptodate(*bh);
  1340. unlock_buffer(*bh);
  1341. ll_rw_block(READ, 1, bh);
  1342. wait_on_buffer(*bh);
  1343. return 0;
  1344. }
  1345. static int ocfs2_mount_volume(struct super_block *sb)
  1346. {
  1347. int status = 0;
  1348. int unlock_super = 0;
  1349. struct ocfs2_super *osb = OCFS2_SB(sb);
  1350. mlog_entry_void();
  1351. if (ocfs2_is_hard_readonly(osb))
  1352. goto leave;
  1353. status = ocfs2_dlm_init(osb);
  1354. if (status < 0) {
  1355. mlog_errno(status);
  1356. goto leave;
  1357. }
  1358. status = ocfs2_super_lock(osb, 1);
  1359. if (status < 0) {
  1360. mlog_errno(status);
  1361. goto leave;
  1362. }
  1363. unlock_super = 1;
  1364. /* This will load up the node map and add ourselves to it. */
  1365. status = ocfs2_find_slot(osb);
  1366. if (status < 0) {
  1367. mlog_errno(status);
  1368. goto leave;
  1369. }
  1370. /* load all node-local system inodes */
  1371. status = ocfs2_init_local_system_inodes(osb);
  1372. if (status < 0) {
  1373. mlog_errno(status);
  1374. goto leave;
  1375. }
  1376. status = ocfs2_check_volume(osb);
  1377. if (status < 0) {
  1378. mlog_errno(status);
  1379. goto leave;
  1380. }
  1381. status = ocfs2_truncate_log_init(osb);
  1382. if (status < 0) {
  1383. mlog_errno(status);
  1384. goto leave;
  1385. }
  1386. if (ocfs2_mount_local(osb))
  1387. goto leave;
  1388. leave:
  1389. if (unlock_super)
  1390. ocfs2_super_unlock(osb, 1);
  1391. mlog_exit(status);
  1392. return status;
  1393. }
  1394. static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err)
  1395. {
  1396. int tmp, hangup_needed = 0;
  1397. struct ocfs2_super *osb = NULL;
  1398. char nodestr[8];
  1399. mlog_entry("(0x%p)\n", sb);
  1400. BUG_ON(!sb);
  1401. osb = OCFS2_SB(sb);
  1402. BUG_ON(!osb);
  1403. ocfs2_disable_quotas(osb);
  1404. ocfs2_shutdown_local_alloc(osb);
  1405. ocfs2_truncate_log_shutdown(osb);
  1406. /* This will disable recovery and flush any recovery work. */
  1407. ocfs2_recovery_exit(osb);
  1408. ocfs2_journal_shutdown(osb);
  1409. ocfs2_sync_blockdev(sb);
  1410. /* No cluster connection means we've failed during mount, so skip
  1411. * all the steps which depended on that to complete. */
  1412. if (osb->cconn) {
  1413. tmp = ocfs2_super_lock(osb, 1);
  1414. if (tmp < 0) {
  1415. mlog_errno(tmp);
  1416. return;
  1417. }
  1418. }
  1419. if (osb->slot_num != OCFS2_INVALID_SLOT)
  1420. ocfs2_put_slot(osb);
  1421. if (osb->cconn)
  1422. ocfs2_super_unlock(osb, 1);
  1423. ocfs2_release_system_inodes(osb);
  1424. /*
  1425. * If we're dismounting due to mount error, mount.ocfs2 will clean
  1426. * up heartbeat. If we're a local mount, there is no heartbeat.
  1427. * If we failed before we got a uuid_str yet, we can't stop
  1428. * heartbeat. Otherwise, do it.
  1429. */
  1430. if (!mnt_err && !ocfs2_mount_local(osb) && osb->uuid_str)
  1431. hangup_needed = 1;
  1432. if (osb->cconn)
  1433. ocfs2_dlm_shutdown(osb, hangup_needed);
  1434. debugfs_remove(osb->osb_debug_root);
  1435. if (hangup_needed)
  1436. ocfs2_cluster_hangup(osb->uuid_str, strlen(osb->uuid_str));
  1437. atomic_set(&osb->vol_state, VOLUME_DISMOUNTED);
  1438. if (ocfs2_mount_local(osb))
  1439. snprintf(nodestr, sizeof(nodestr), "local");
  1440. else
  1441. snprintf(nodestr, sizeof(nodestr), "%u", osb->node_num);
  1442. printk(KERN_INFO "ocfs2: Unmounting device (%s) on (node %s)\n",
  1443. osb->dev_str, nodestr);
  1444. ocfs2_delete_osb(osb);
  1445. kfree(osb);
  1446. sb->s_dev = 0;
  1447. sb->s_fs_info = NULL;
  1448. }
  1449. static int ocfs2_setup_osb_uuid(struct ocfs2_super *osb, const unsigned char *uuid,
  1450. unsigned uuid_bytes)
  1451. {
  1452. int i, ret;
  1453. char *ptr;
  1454. BUG_ON(uuid_bytes != OCFS2_VOL_UUID_LEN);
  1455. osb->uuid_str = kzalloc(OCFS2_VOL_UUID_LEN * 2 + 1, GFP_KERNEL);
  1456. if (osb->uuid_str == NULL)
  1457. return -ENOMEM;
  1458. for (i = 0, ptr = osb->uuid_str; i < OCFS2_VOL_UUID_LEN; i++) {
  1459. /* print with null */
  1460. ret = snprintf(ptr, 3, "%02X", uuid[i]);
  1461. if (ret != 2) /* drop super cleans up */
  1462. return -EINVAL;
  1463. /* then only advance past the last char */
  1464. ptr += 2;
  1465. }
  1466. return 0;
  1467. }
  1468. static int ocfs2_initialize_super(struct super_block *sb,
  1469. struct buffer_head *bh,
  1470. int sector_size)
  1471. {
  1472. int status;
  1473. int i, cbits, bbits;
  1474. struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data;
  1475. struct inode *inode = NULL;
  1476. struct ocfs2_journal *journal;
  1477. __le32 uuid_net_key;
  1478. struct ocfs2_super *osb;
  1479. mlog_entry_void();
  1480. osb = kzalloc(sizeof(struct ocfs2_super), GFP_KERNEL);
  1481. if (!osb) {
  1482. status = -ENOMEM;
  1483. mlog_errno(status);
  1484. goto bail;
  1485. }
  1486. sb->s_fs_info = osb;
  1487. sb->s_op = &ocfs2_sops;
  1488. sb->s_export_op = &ocfs2_export_ops;
  1489. sb->s_qcop = &ocfs2_quotactl_ops;
  1490. sb->dq_op = &ocfs2_quota_operations;
  1491. sb->s_xattr = ocfs2_xattr_handlers;
  1492. sb->s_time_gran = 1;
  1493. sb->s_flags |= MS_NOATIME;
  1494. /* this is needed to support O_LARGEFILE */
  1495. cbits = le32_to_cpu(di->id2.i_super.s_clustersize_bits);
  1496. bbits = le32_to_cpu(di->id2.i_super.s_blocksize_bits);
  1497. sb->s_maxbytes = ocfs2_max_file_offset(bbits, cbits);
  1498. osb->sb = sb;
  1499. /* Save off for ocfs2_rw_direct */
  1500. osb->s_sectsize_bits = blksize_bits(sector_size);
  1501. BUG_ON(!osb->s_sectsize_bits);
  1502. spin_lock_init(&osb->dc_task_lock);
  1503. init_waitqueue_head(&osb->dc_event);
  1504. osb->dc_work_sequence = 0;
  1505. osb->dc_wake_sequence = 0;
  1506. INIT_LIST_HEAD(&osb->blocked_lock_list);
  1507. osb->blocked_lock_count = 0;
  1508. spin_lock_init(&osb->osb_lock);
  1509. spin_lock_init(&osb->osb_xattr_lock);
  1510. ocfs2_init_inode_steal_slot(osb);
  1511. atomic_set(&osb->alloc_stats.moves, 0);
  1512. atomic_set(&osb->alloc_stats.local_data, 0);
  1513. atomic_set(&osb->alloc_stats.bitmap_data, 0);
  1514. atomic_set(&osb->alloc_stats.bg_allocs, 0);
  1515. atomic_set(&osb->alloc_stats.bg_extends, 0);
  1516. ocfs2_init_node_maps(osb);
  1517. snprintf(osb->dev_str, sizeof(osb->dev_str), "%u,%u",
  1518. MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev));
  1519. status = ocfs2_recovery_init(osb);
  1520. if (status) {
  1521. mlog(ML_ERROR, "Unable to initialize recovery state\n");
  1522. mlog_errno(status);
  1523. goto bail;
  1524. }
  1525. init_waitqueue_head(&osb->checkpoint_event);
  1526. atomic_set(&osb->needs_checkpoint, 0);
  1527. osb->s_atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM;
  1528. osb->slot_num = OCFS2_INVALID_SLOT;
  1529. osb->s_xattr_inline_size = le16_to_cpu(
  1530. di->id2.i_super.s_xattr_inline_size);
  1531. osb->local_alloc_state = OCFS2_LA_UNUSED;
  1532. osb->local_alloc_bh = NULL;
  1533. INIT_DELAYED_WORK(&osb->la_enable_wq, ocfs2_la_enable_worker);
  1534. init_waitqueue_head(&osb->osb_mount_event);
  1535. osb->vol_label = kmalloc(OCFS2_MAX_VOL_LABEL_LEN, GFP_KERNEL);
  1536. if (!osb->vol_label) {
  1537. mlog(ML_ERROR, "unable to alloc vol label\n");
  1538. status = -ENOMEM;
  1539. goto bail;
  1540. }
  1541. osb->max_slots = le16_to_cpu(di->id2.i_super.s_max_slots);
  1542. if (osb->max_slots > OCFS2_MAX_SLOTS || osb->max_slots == 0) {
  1543. mlog(ML_ERROR, "Invalid number of node slots (%u)\n",
  1544. osb->max_slots);
  1545. status = -EINVAL;
  1546. goto bail;
  1547. }
  1548. mlog(0, "max_slots for this device: %u\n", osb->max_slots);
  1549. osb->slot_recovery_generations =
  1550. kcalloc(osb->max_slots, sizeof(*osb->slot_recovery_generations),
  1551. GFP_KERNEL);
  1552. if (!osb->slot_recovery_generations) {
  1553. status = -ENOMEM;
  1554. mlog_errno(status);
  1555. goto bail;
  1556. }
  1557. init_waitqueue_head(&osb->osb_wipe_event);
  1558. osb->osb_orphan_wipes = kcalloc(osb->max_slots,
  1559. sizeof(*osb->osb_orphan_wipes),
  1560. GFP_KERNEL);
  1561. if (!osb->osb_orphan_wipes) {
  1562. status = -ENOMEM;
  1563. mlog_errno(status);
  1564. goto bail;
  1565. }
  1566. osb->s_feature_compat =
  1567. le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_compat);
  1568. osb->s_feature_ro_compat =
  1569. le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_ro_compat);
  1570. osb->s_feature_incompat =
  1571. le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_incompat);
  1572. if ((i = OCFS2_HAS_INCOMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_INCOMPAT_SUPP))) {
  1573. mlog(ML_ERROR, "couldn't mount because of unsupported "
  1574. "optional features (%x).\n", i);
  1575. status = -EINVAL;
  1576. goto bail;
  1577. }
  1578. if (!(osb->sb->s_flags & MS_RDONLY) &&
  1579. (i = OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP))) {
  1580. mlog(ML_ERROR, "couldn't mount RDWR because of "
  1581. "unsupported optional features (%x).\n", i);
  1582. status = -EINVAL;
  1583. goto bail;
  1584. }
  1585. if (ocfs2_userspace_stack(osb)) {
  1586. memcpy(osb->osb_cluster_stack,
  1587. OCFS2_RAW_SB(di)->s_cluster_info.ci_stack,
  1588. OCFS2_STACK_LABEL_LEN);
  1589. osb->osb_cluster_stack[OCFS2_STACK_LABEL_LEN] = '\0';
  1590. if (strlen(osb->osb_cluster_stack) != OCFS2_STACK_LABEL_LEN) {
  1591. mlog(ML_ERROR,
  1592. "couldn't mount because of an invalid "
  1593. "cluster stack label (%s) \n",
  1594. osb->osb_cluster_stack);
  1595. status = -EINVAL;
  1596. goto bail;
  1597. }
  1598. } else {
  1599. /* The empty string is identical with classic tools that
  1600. * don't know about s_cluster_info. */
  1601. osb->osb_cluster_stack[0] = '\0';
  1602. }
  1603. get_random_bytes(&osb->s_next_generation, sizeof(u32));
  1604. /* FIXME
  1605. * This should be done in ocfs2_journal_init(), but unknown
  1606. * ordering issues will cause the filesystem to crash.
  1607. * If anyone wants to figure out what part of the code
  1608. * refers to osb->journal before ocfs2_journal_init() is run,
  1609. * be my guest.
  1610. */
  1611. /* initialize our journal structure */
  1612. journal = kzalloc(sizeof(struct ocfs2_journal), GFP_KERNEL);
  1613. if (!journal) {
  1614. mlog(ML_ERROR, "unable to alloc journal\n");
  1615. status = -ENOMEM;
  1616. goto bail;
  1617. }
  1618. osb->journal = journal;
  1619. journal->j_osb = osb;
  1620. atomic_set(&journal->j_num_trans, 0);
  1621. init_rwsem(&journal->j_trans_barrier);
  1622. init_waitqueue_head(&journal->j_checkpointed);
  1623. spin_lock_init(&journal->j_lock);
  1624. journal->j_trans_id = (unsigned long) 1;
  1625. INIT_LIST_HEAD(&journal->j_la_cleanups);
  1626. INIT_WORK(&journal->j_recovery_work, ocfs2_complete_recovery);
  1627. journal->j_state = OCFS2_JOURNAL_FREE;
  1628. INIT_WORK(&osb->dentry_lock_work, ocfs2_drop_dl_inodes);
  1629. osb->dentry_lock_list = NULL;
  1630. /* get some pseudo constants for clustersize bits */
  1631. osb->s_clustersize_bits =
  1632. le32_to_cpu(di->id2.i_super.s_clustersize_bits);
  1633. osb->s_clustersize = 1 << osb->s_clustersize_bits;
  1634. mlog(0, "clusterbits=%d\n", osb->s_clustersize_bits);
  1635. if (osb->s_clustersize < OCFS2_MIN_CLUSTERSIZE ||
  1636. osb->s_clustersize > OCFS2_MAX_CLUSTERSIZE) {
  1637. mlog(ML_ERROR, "Volume has invalid cluster size (%d)\n",
  1638. osb->s_clustersize);
  1639. status = -EINVAL;
  1640. goto bail;
  1641. }
  1642. if (ocfs2_clusters_to_blocks(osb->sb, le32_to_cpu(di->i_clusters) - 1)
  1643. > (u32)~0UL) {
  1644. mlog(ML_ERROR, "Volume might try to write to blocks beyond "
  1645. "what jbd can address in 32 bits.\n");
  1646. status = -EINVAL;
  1647. goto bail;
  1648. }
  1649. if (ocfs2_setup_osb_uuid(osb, di->id2.i_super.s_uuid,
  1650. sizeof(di->id2.i_super.s_uuid))) {
  1651. mlog(ML_ERROR, "Out of memory trying to setup our uuid.\n");
  1652. status = -ENOMEM;
  1653. goto bail;
  1654. }
  1655. memcpy(&uuid_net_key, di->id2.i_super.s_uuid, sizeof(uuid_net_key));
  1656. strncpy(osb->vol_label, di->id2.i_super.s_label, 63);
  1657. osb->vol_label[63] = '\0';
  1658. osb->root_blkno = le64_to_cpu(di->id2.i_super.s_root_blkno);
  1659. osb->system_dir_blkno = le64_to_cpu(di->id2.i_super.s_system_dir_blkno);
  1660. osb->first_cluster_group_blkno =
  1661. le64_to_cpu(di->id2.i_super.s_first_cluster_group);
  1662. osb->fs_generation = le32_to_cpu(di->i_fs_generation);
  1663. osb->uuid_hash = le32_to_cpu(di->id2.i_super.s_uuid_hash);
  1664. mlog(0, "vol_label: %s\n", osb->vol_label);
  1665. mlog(0, "uuid: %s\n", osb->uuid_str);
  1666. mlog(0, "root_blkno=%llu, system_dir_blkno=%llu\n",
  1667. (unsigned long long)osb->root_blkno,
  1668. (unsigned long long)osb->system_dir_blkno);
  1669. osb->osb_dlm_debug = ocfs2_new_dlm_debug();
  1670. if (!osb->osb_dlm_debug) {
  1671. status = -ENOMEM;
  1672. mlog_errno(status);
  1673. goto bail;
  1674. }
  1675. atomic_set(&osb->vol_state, VOLUME_INIT);
  1676. /* load root, system_dir, and all global system inodes */
  1677. status = ocfs2_init_global_system_inodes(osb);
  1678. if (status < 0) {
  1679. mlog_errno(status);
  1680. goto bail;
  1681. }
  1682. /*
  1683. * global bitmap
  1684. */
  1685. inode = ocfs2_get_system_file_inode(osb, GLOBAL_BITMAP_SYSTEM_INODE,
  1686. OCFS2_INVALID_SLOT);
  1687. if (!inode) {
  1688. status = -EINVAL;
  1689. mlog_errno(status);
  1690. goto bail;
  1691. }
  1692. osb->bitmap_blkno = OCFS2_I(inode)->ip_blkno;
  1693. iput(inode);
  1694. osb->bitmap_cpg = ocfs2_group_bitmap_size(sb) * 8;
  1695. status = ocfs2_init_slot_info(osb);
  1696. if (status < 0) {
  1697. mlog_errno(status);
  1698. goto bail;
  1699. }
  1700. bail:
  1701. mlog_exit(status);
  1702. return status;
  1703. }
  1704. /*
  1705. * will return: -EAGAIN if it is ok to keep searching for superblocks
  1706. * -EINVAL if there is a bad superblock
  1707. * 0 on success
  1708. */
  1709. static int ocfs2_verify_volume(struct ocfs2_dinode *di,
  1710. struct buffer_head *bh,
  1711. u32 blksz)
  1712. {
  1713. int status = -EAGAIN;
  1714. mlog_entry_void();
  1715. if (memcmp(di->i_signature, OCFS2_SUPER_BLOCK_SIGNATURE,
  1716. strlen(OCFS2_SUPER_BLOCK_SIGNATURE)) == 0) {
  1717. /* We have to do a raw check of the feature here */
  1718. if (le32_to_cpu(di->id2.i_super.s_feature_incompat) &
  1719. OCFS2_FEATURE_INCOMPAT_META_ECC) {
  1720. status = ocfs2_block_check_validate(bh->b_data,
  1721. bh->b_size,
  1722. &di->i_check);
  1723. if (status)
  1724. goto out;
  1725. }
  1726. status = -EINVAL;
  1727. if ((1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits)) != blksz) {
  1728. mlog(ML_ERROR, "found superblock with incorrect block "
  1729. "size: found %u, should be %u\n",
  1730. 1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits),
  1731. blksz);
  1732. } else if (le16_to_cpu(di->id2.i_super.s_major_rev_level) !=
  1733. OCFS2_MAJOR_REV_LEVEL ||
  1734. le16_to_cpu(di->id2.i_super.s_minor_rev_level) !=
  1735. OCFS2_MINOR_REV_LEVEL) {
  1736. mlog(ML_ERROR, "found superblock with bad version: "
  1737. "found %u.%u, should be %u.%u\n",
  1738. le16_to_cpu(di->id2.i_super.s_major_rev_level),
  1739. le16_to_cpu(di->id2.i_super.s_minor_rev_level),
  1740. OCFS2_MAJOR_REV_LEVEL,
  1741. OCFS2_MINOR_REV_LEVEL);
  1742. } else if (bh->b_blocknr != le64_to_cpu(di->i_blkno)) {
  1743. mlog(ML_ERROR, "bad block number on superblock: "
  1744. "found %llu, should be %llu\n",
  1745. (unsigned long long)le64_to_cpu(di->i_blkno),
  1746. (unsigned long long)bh->b_blocknr);
  1747. } else if (le32_to_cpu(di->id2.i_super.s_clustersize_bits) < 12 ||
  1748. le32_to_cpu(di->id2.i_super.s_clustersize_bits) > 20) {
  1749. mlog(ML_ERROR, "bad cluster size found: %u\n",
  1750. 1 << le32_to_cpu(di->id2.i_super.s_clustersize_bits));
  1751. } else if (!le64_to_cpu(di->id2.i_super.s_root_blkno)) {
  1752. mlog(ML_ERROR, "bad root_blkno: 0\n");
  1753. } else if (!le64_to_cpu(di->id2.i_super.s_system_dir_blkno)) {
  1754. mlog(ML_ERROR, "bad system_dir_blkno: 0\n");
  1755. } else if (le16_to_cpu(di->id2.i_super.s_max_slots) > OCFS2_MAX_SLOTS) {
  1756. mlog(ML_ERROR,
  1757. "Superblock slots found greater than file system "
  1758. "maximum: found %u, max %u\n",
  1759. le16_to_cpu(di->id2.i_super.s_max_slots),
  1760. OCFS2_MAX_SLOTS);
  1761. } else {
  1762. /* found it! */
  1763. status = 0;
  1764. }
  1765. }
  1766. out:
  1767. mlog_exit(status);
  1768. return status;
  1769. }
  1770. static int ocfs2_check_volume(struct ocfs2_super *osb)
  1771. {
  1772. int status;
  1773. int dirty;
  1774. int local;
  1775. struct ocfs2_dinode *local_alloc = NULL; /* only used if we
  1776. * recover
  1777. * ourselves. */
  1778. mlog_entry_void();
  1779. /* Init our journal object. */
  1780. status = ocfs2_journal_init(osb->journal, &dirty);
  1781. if (status < 0) {
  1782. mlog(ML_ERROR, "Could not initialize journal!\n");
  1783. goto finally;
  1784. }
  1785. /* If the journal was unmounted cleanly then we don't want to
  1786. * recover anything. Otherwise, journal_load will do that
  1787. * dirty work for us :) */
  1788. if (!dirty) {
  1789. status = ocfs2_journal_wipe(osb->journal, 0);
  1790. if (status < 0) {
  1791. mlog_errno(status);
  1792. goto finally;
  1793. }
  1794. } else {
  1795. mlog(ML_NOTICE, "File system was not unmounted cleanly, "
  1796. "recovering volume.\n");
  1797. }
  1798. local = ocfs2_mount_local(osb);
  1799. /* will play back anything left in the journal. */
  1800. status = ocfs2_journal_load(osb->journal, local, dirty);
  1801. if (status < 0) {
  1802. mlog(ML_ERROR, "ocfs2 journal load failed! %d\n", status);
  1803. goto finally;
  1804. }
  1805. if (dirty) {
  1806. /* recover my local alloc if we didn't unmount cleanly. */
  1807. status = ocfs2_begin_local_alloc_recovery(osb,
  1808. osb->slot_num,
  1809. &local_alloc);
  1810. if (status < 0) {
  1811. mlog_errno(status);
  1812. goto finally;
  1813. }
  1814. /* we complete the recovery process after we've marked
  1815. * ourselves as mounted. */
  1816. }
  1817. mlog(0, "Journal loaded.\n");
  1818. status = ocfs2_load_local_alloc(osb);
  1819. if (status < 0) {
  1820. mlog_errno(status);
  1821. goto finally;
  1822. }
  1823. if (dirty) {
  1824. /* Recovery will be completed after we've mounted the
  1825. * rest of the volume. */
  1826. osb->dirty = 1;
  1827. osb->local_alloc_copy = local_alloc;
  1828. local_alloc = NULL;
  1829. }
  1830. /* go through each journal, trylock it and if you get the
  1831. * lock, and it's marked as dirty, set the bit in the recover
  1832. * map and launch a recovery thread for it. */
  1833. status = ocfs2_mark_dead_nodes(osb);
  1834. if (status < 0)
  1835. mlog_errno(status);
  1836. finally:
  1837. if (local_alloc)
  1838. kfree(local_alloc);
  1839. mlog_exit(status);
  1840. return status;
  1841. }
  1842. /*
  1843. * The routine gets called from dismount or close whenever a dismount on
  1844. * volume is requested and the osb open count becomes 1.
  1845. * It will remove the osb from the global list and also free up all the
  1846. * initialized resources and fileobject.
  1847. */
  1848. static void ocfs2_delete_osb(struct ocfs2_super *osb)
  1849. {
  1850. mlog_entry_void();
  1851. /* This function assumes that the caller has the main osb resource */
  1852. ocfs2_free_slot_info(osb);
  1853. kfree(osb->osb_orphan_wipes);
  1854. kfree(osb->slot_recovery_generations);
  1855. /* FIXME
  1856. * This belongs in journal shutdown, but because we have to
  1857. * allocate osb->journal at the start of ocfs2_initalize_osb(),
  1858. * we free it here.
  1859. */
  1860. kfree(osb->journal);
  1861. if (osb->local_alloc_copy)
  1862. kfree(osb->local_alloc_copy);
  1863. kfree(osb->uuid_str);
  1864. ocfs2_put_dlm_debug(osb->osb_dlm_debug);
  1865. memset(osb, 0, sizeof(struct ocfs2_super));
  1866. mlog_exit_void();
  1867. }
  1868. /* Put OCFS2 into a readonly state, or (if the user specifies it),
  1869. * panic(). We do not support continue-on-error operation. */
  1870. static void ocfs2_handle_error(struct super_block *sb)
  1871. {
  1872. struct ocfs2_super *osb = OCFS2_SB(sb);
  1873. if (osb->s_mount_opt & OCFS2_MOUNT_ERRORS_PANIC)
  1874. panic("OCFS2: (device %s): panic forced after error\n",
  1875. sb->s_id);
  1876. ocfs2_set_osb_flag(osb, OCFS2_OSB_ERROR_FS);
  1877. if (sb->s_flags & MS_RDONLY &&
  1878. (ocfs2_is_soft_readonly(osb) ||
  1879. ocfs2_is_hard_readonly(osb)))
  1880. return;
  1881. printk(KERN_CRIT "File system is now read-only due to the potential "
  1882. "of on-disk corruption. Please run fsck.ocfs2 once the file "
  1883. "system is unmounted.\n");
  1884. sb->s_flags |= MS_RDONLY;
  1885. ocfs2_set_ro_flag(osb, 0);
  1886. }
  1887. static char error_buf[1024];
  1888. void __ocfs2_error(struct super_block *sb,
  1889. const char *function,
  1890. const char *fmt, ...)
  1891. {
  1892. va_list args;
  1893. va_start(args, fmt);
  1894. vsnprintf(error_buf, sizeof(error_buf), fmt, args);
  1895. va_end(args);
  1896. /* Not using mlog here because we want to show the actual
  1897. * function the error came from. */
  1898. printk(KERN_CRIT "OCFS2: ERROR (device %s): %s: %s\n",
  1899. sb->s_id, function, error_buf);
  1900. ocfs2_handle_error(sb);
  1901. }
  1902. /* Handle critical errors. This is intentionally more drastic than
  1903. * ocfs2_handle_error, so we only use for things like journal errors,
  1904. * etc. */
  1905. void __ocfs2_abort(struct super_block* sb,
  1906. const char *function,
  1907. const char *fmt, ...)
  1908. {
  1909. va_list args;
  1910. va_start(args, fmt);
  1911. vsnprintf(error_buf, sizeof(error_buf), fmt, args);
  1912. va_end(args);
  1913. printk(KERN_CRIT "OCFS2: abort (device %s): %s: %s\n",
  1914. sb->s_id, function, error_buf);
  1915. /* We don't have the cluster support yet to go straight to
  1916. * hard readonly in here. Until then, we want to keep
  1917. * ocfs2_abort() so that we can at least mark critical
  1918. * errors.
  1919. *
  1920. * TODO: This should abort the journal and alert other nodes
  1921. * that our slot needs recovery. */
  1922. /* Force a panic(). This stinks, but it's better than letting
  1923. * things continue without having a proper hard readonly
  1924. * here. */
  1925. OCFS2_SB(sb)->s_mount_opt |= OCFS2_MOUNT_ERRORS_PANIC;
  1926. ocfs2_handle_error(sb);
  1927. }
  1928. module_init(ocfs2_init);
  1929. module_exit(ocfs2_exit);