super.c 64 KB

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