sys.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  1. /*
  2. * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
  3. * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
  4. *
  5. * This copyrighted material is made available to anyone wishing to use,
  6. * modify, copy, or redistribute it subject to the terms and conditions
  7. * of the GNU General Public License version 2.
  8. */
  9. #include <linux/sched.h>
  10. #include <linux/spinlock.h>
  11. #include <linux/completion.h>
  12. #include <linux/buffer_head.h>
  13. #include <linux/module.h>
  14. #include <linux/kobject.h>
  15. #include <asm/uaccess.h>
  16. #include <linux/gfs2_ondisk.h>
  17. #include <linux/genhd.h>
  18. #include "gfs2.h"
  19. #include "incore.h"
  20. #include "sys.h"
  21. #include "super.h"
  22. #include "glock.h"
  23. #include "quota.h"
  24. #include "util.h"
  25. #include "glops.h"
  26. struct gfs2_attr {
  27. struct attribute attr;
  28. ssize_t (*show)(struct gfs2_sbd *, char *);
  29. ssize_t (*store)(struct gfs2_sbd *, const char *, size_t);
  30. };
  31. static ssize_t gfs2_attr_show(struct kobject *kobj, struct attribute *attr,
  32. char *buf)
  33. {
  34. struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
  35. struct gfs2_attr *a = container_of(attr, struct gfs2_attr, attr);
  36. return a->show ? a->show(sdp, buf) : 0;
  37. }
  38. static ssize_t gfs2_attr_store(struct kobject *kobj, struct attribute *attr,
  39. const char *buf, size_t len)
  40. {
  41. struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
  42. struct gfs2_attr *a = container_of(attr, struct gfs2_attr, attr);
  43. return a->store ? a->store(sdp, buf, len) : len;
  44. }
  45. static const struct sysfs_ops gfs2_attr_ops = {
  46. .show = gfs2_attr_show,
  47. .store = gfs2_attr_store,
  48. };
  49. static struct kset *gfs2_kset;
  50. static ssize_t id_show(struct gfs2_sbd *sdp, char *buf)
  51. {
  52. return snprintf(buf, PAGE_SIZE, "%u:%u\n",
  53. MAJOR(sdp->sd_vfs->s_dev), MINOR(sdp->sd_vfs->s_dev));
  54. }
  55. static ssize_t fsname_show(struct gfs2_sbd *sdp, char *buf)
  56. {
  57. return snprintf(buf, PAGE_SIZE, "%s\n", sdp->sd_fsname);
  58. }
  59. static int gfs2_uuid_valid(const u8 *uuid)
  60. {
  61. int i;
  62. for (i = 0; i < 16; i++) {
  63. if (uuid[i])
  64. return 1;
  65. }
  66. return 0;
  67. }
  68. static ssize_t uuid_show(struct gfs2_sbd *sdp, char *buf)
  69. {
  70. const u8 *uuid = sdp->sd_sb.sb_uuid;
  71. buf[0] = '\0';
  72. if (!gfs2_uuid_valid(uuid))
  73. return 0;
  74. return snprintf(buf, PAGE_SIZE, "%pUB\n", uuid);
  75. }
  76. static ssize_t freeze_show(struct gfs2_sbd *sdp, char *buf)
  77. {
  78. unsigned int count;
  79. mutex_lock(&sdp->sd_freeze_lock);
  80. count = sdp->sd_freeze_count;
  81. mutex_unlock(&sdp->sd_freeze_lock);
  82. return snprintf(buf, PAGE_SIZE, "%u\n", count);
  83. }
  84. static ssize_t freeze_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
  85. {
  86. ssize_t ret = len;
  87. int error = 0;
  88. int n = simple_strtol(buf, NULL, 0);
  89. if (!capable(CAP_SYS_ADMIN))
  90. return -EACCES;
  91. switch (n) {
  92. case 0:
  93. gfs2_unfreeze_fs(sdp);
  94. break;
  95. case 1:
  96. error = gfs2_freeze_fs(sdp);
  97. break;
  98. default:
  99. ret = -EINVAL;
  100. }
  101. if (error)
  102. fs_warn(sdp, "freeze %d error %d", n, error);
  103. return ret;
  104. }
  105. static ssize_t withdraw_show(struct gfs2_sbd *sdp, char *buf)
  106. {
  107. unsigned int b = test_bit(SDF_SHUTDOWN, &sdp->sd_flags);
  108. return snprintf(buf, PAGE_SIZE, "%u\n", b);
  109. }
  110. static ssize_t withdraw_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
  111. {
  112. if (!capable(CAP_SYS_ADMIN))
  113. return -EACCES;
  114. if (simple_strtol(buf, NULL, 0) != 1)
  115. return -EINVAL;
  116. gfs2_lm_withdraw(sdp,
  117. "GFS2: fsid=%s: withdrawing from cluster at user's request\n",
  118. sdp->sd_fsname);
  119. return len;
  120. }
  121. static ssize_t statfs_sync_store(struct gfs2_sbd *sdp, const char *buf,
  122. size_t len)
  123. {
  124. if (!capable(CAP_SYS_ADMIN))
  125. return -EACCES;
  126. if (simple_strtol(buf, NULL, 0) != 1)
  127. return -EINVAL;
  128. gfs2_statfs_sync(sdp->sd_vfs, 0);
  129. return len;
  130. }
  131. static ssize_t quota_sync_store(struct gfs2_sbd *sdp, const char *buf,
  132. size_t len)
  133. {
  134. if (!capable(CAP_SYS_ADMIN))
  135. return -EACCES;
  136. if (simple_strtol(buf, NULL, 0) != 1)
  137. return -EINVAL;
  138. gfs2_quota_sync(sdp->sd_vfs, 0, 1);
  139. return len;
  140. }
  141. static ssize_t quota_refresh_user_store(struct gfs2_sbd *sdp, const char *buf,
  142. size_t len)
  143. {
  144. int error;
  145. u32 id;
  146. if (!capable(CAP_SYS_ADMIN))
  147. return -EACCES;
  148. id = simple_strtoul(buf, NULL, 0);
  149. error = gfs2_quota_refresh(sdp, 1, id);
  150. return error ? error : len;
  151. }
  152. static ssize_t quota_refresh_group_store(struct gfs2_sbd *sdp, const char *buf,
  153. size_t len)
  154. {
  155. int error;
  156. u32 id;
  157. if (!capable(CAP_SYS_ADMIN))
  158. return -EACCES;
  159. id = simple_strtoul(buf, NULL, 0);
  160. error = gfs2_quota_refresh(sdp, 0, id);
  161. return error ? error : len;
  162. }
  163. static ssize_t demote_rq_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
  164. {
  165. struct gfs2_glock *gl;
  166. const struct gfs2_glock_operations *glops;
  167. unsigned int glmode;
  168. unsigned int gltype;
  169. unsigned long long glnum;
  170. char mode[16];
  171. int rv;
  172. if (!capable(CAP_SYS_ADMIN))
  173. return -EACCES;
  174. rv = sscanf(buf, "%u:%llu %15s", &gltype, &glnum,
  175. mode);
  176. if (rv != 3)
  177. return -EINVAL;
  178. if (strcmp(mode, "EX") == 0)
  179. glmode = LM_ST_UNLOCKED;
  180. else if ((strcmp(mode, "CW") == 0) || (strcmp(mode, "DF") == 0))
  181. glmode = LM_ST_DEFERRED;
  182. else if ((strcmp(mode, "PR") == 0) || (strcmp(mode, "SH") == 0))
  183. glmode = LM_ST_SHARED;
  184. else
  185. return -EINVAL;
  186. if (gltype > LM_TYPE_JOURNAL)
  187. return -EINVAL;
  188. glops = gfs2_glops_list[gltype];
  189. if (glops == NULL)
  190. return -EINVAL;
  191. if (!test_and_set_bit(SDF_DEMOTE, &sdp->sd_flags))
  192. fs_info(sdp, "demote interface used\n");
  193. rv = gfs2_glock_get(sdp, glnum, glops, 0, &gl);
  194. if (rv)
  195. return rv;
  196. gfs2_glock_cb(gl, glmode);
  197. gfs2_glock_put(gl);
  198. return len;
  199. }
  200. #define GFS2_ATTR(name, mode, show, store) \
  201. static struct gfs2_attr gfs2_attr_##name = __ATTR(name, mode, show, store)
  202. GFS2_ATTR(id, 0444, id_show, NULL);
  203. GFS2_ATTR(fsname, 0444, fsname_show, NULL);
  204. GFS2_ATTR(uuid, 0444, uuid_show, NULL);
  205. GFS2_ATTR(freeze, 0644, freeze_show, freeze_store);
  206. GFS2_ATTR(withdraw, 0644, withdraw_show, withdraw_store);
  207. GFS2_ATTR(statfs_sync, 0200, NULL, statfs_sync_store);
  208. GFS2_ATTR(quota_sync, 0200, NULL, quota_sync_store);
  209. GFS2_ATTR(quota_refresh_user, 0200, NULL, quota_refresh_user_store);
  210. GFS2_ATTR(quota_refresh_group, 0200, NULL, quota_refresh_group_store);
  211. GFS2_ATTR(demote_rq, 0200, NULL, demote_rq_store);
  212. static struct attribute *gfs2_attrs[] = {
  213. &gfs2_attr_id.attr,
  214. &gfs2_attr_fsname.attr,
  215. &gfs2_attr_uuid.attr,
  216. &gfs2_attr_freeze.attr,
  217. &gfs2_attr_withdraw.attr,
  218. &gfs2_attr_statfs_sync.attr,
  219. &gfs2_attr_quota_sync.attr,
  220. &gfs2_attr_quota_refresh_user.attr,
  221. &gfs2_attr_quota_refresh_group.attr,
  222. &gfs2_attr_demote_rq.attr,
  223. NULL,
  224. };
  225. static struct kobj_type gfs2_ktype = {
  226. .default_attrs = gfs2_attrs,
  227. .sysfs_ops = &gfs2_attr_ops,
  228. };
  229. /*
  230. * lock_module. Originally from lock_dlm
  231. */
  232. static ssize_t proto_name_show(struct gfs2_sbd *sdp, char *buf)
  233. {
  234. const struct lm_lockops *ops = sdp->sd_lockstruct.ls_ops;
  235. return sprintf(buf, "%s\n", ops->lm_proto_name);
  236. }
  237. static ssize_t block_show(struct gfs2_sbd *sdp, char *buf)
  238. {
  239. struct lm_lockstruct *ls = &sdp->sd_lockstruct;
  240. ssize_t ret;
  241. int val = 0;
  242. if (test_bit(DFL_BLOCK_LOCKS, &ls->ls_flags))
  243. val = 1;
  244. ret = sprintf(buf, "%d\n", val);
  245. return ret;
  246. }
  247. static ssize_t block_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
  248. {
  249. struct lm_lockstruct *ls = &sdp->sd_lockstruct;
  250. ssize_t ret = len;
  251. int val;
  252. val = simple_strtol(buf, NULL, 0);
  253. if (val == 1)
  254. set_bit(DFL_BLOCK_LOCKS, &ls->ls_flags);
  255. else if (val == 0) {
  256. clear_bit(DFL_BLOCK_LOCKS, &ls->ls_flags);
  257. smp_mb__after_clear_bit();
  258. gfs2_glock_thaw(sdp);
  259. } else {
  260. ret = -EINVAL;
  261. }
  262. return ret;
  263. }
  264. static ssize_t lkfirst_show(struct gfs2_sbd *sdp, char *buf)
  265. {
  266. struct lm_lockstruct *ls = &sdp->sd_lockstruct;
  267. return sprintf(buf, "%d\n", ls->ls_first);
  268. }
  269. static ssize_t first_done_show(struct gfs2_sbd *sdp, char *buf)
  270. {
  271. struct lm_lockstruct *ls = &sdp->sd_lockstruct;
  272. return sprintf(buf, "%d\n", ls->ls_first_done);
  273. }
  274. static ssize_t recover_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
  275. {
  276. unsigned jid;
  277. struct gfs2_jdesc *jd;
  278. int rv;
  279. rv = sscanf(buf, "%u", &jid);
  280. if (rv != 1)
  281. return -EINVAL;
  282. rv = -ESHUTDOWN;
  283. spin_lock(&sdp->sd_jindex_spin);
  284. if (test_bit(SDF_NORECOVERY, &sdp->sd_flags))
  285. goto out;
  286. rv = -EBUSY;
  287. if (sdp->sd_jdesc->jd_jid == jid)
  288. goto out;
  289. rv = -ENOENT;
  290. list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
  291. if (jd->jd_jid != jid)
  292. continue;
  293. rv = slow_work_enqueue(&jd->jd_work);
  294. break;
  295. }
  296. out:
  297. spin_unlock(&sdp->sd_jindex_spin);
  298. return rv ? rv : len;
  299. }
  300. static ssize_t recover_done_show(struct gfs2_sbd *sdp, char *buf)
  301. {
  302. struct lm_lockstruct *ls = &sdp->sd_lockstruct;
  303. return sprintf(buf, "%d\n", ls->ls_recover_jid_done);
  304. }
  305. static ssize_t recover_status_show(struct gfs2_sbd *sdp, char *buf)
  306. {
  307. struct lm_lockstruct *ls = &sdp->sd_lockstruct;
  308. return sprintf(buf, "%d\n", ls->ls_recover_jid_status);
  309. }
  310. static ssize_t jid_show(struct gfs2_sbd *sdp, char *buf)
  311. {
  312. return sprintf(buf, "%u\n", sdp->sd_lockstruct.ls_jid);
  313. }
  314. #define GDLM_ATTR(_name,_mode,_show,_store) \
  315. static struct gfs2_attr gdlm_attr_##_name = __ATTR(_name,_mode,_show,_store)
  316. GDLM_ATTR(proto_name, 0444, proto_name_show, NULL);
  317. GDLM_ATTR(block, 0644, block_show, block_store);
  318. GDLM_ATTR(withdraw, 0644, withdraw_show, withdraw_store);
  319. GDLM_ATTR(jid, 0444, jid_show, NULL);
  320. GDLM_ATTR(first, 0444, lkfirst_show, NULL);
  321. GDLM_ATTR(first_done, 0444, first_done_show, NULL);
  322. GDLM_ATTR(recover, 0600, NULL, recover_store);
  323. GDLM_ATTR(recover_done, 0444, recover_done_show, NULL);
  324. GDLM_ATTR(recover_status, 0444, recover_status_show, NULL);
  325. static struct attribute *lock_module_attrs[] = {
  326. &gdlm_attr_proto_name.attr,
  327. &gdlm_attr_block.attr,
  328. &gdlm_attr_withdraw.attr,
  329. &gdlm_attr_jid.attr,
  330. &gdlm_attr_first.attr,
  331. &gdlm_attr_first_done.attr,
  332. &gdlm_attr_recover.attr,
  333. &gdlm_attr_recover_done.attr,
  334. &gdlm_attr_recover_status.attr,
  335. NULL,
  336. };
  337. /*
  338. * get and set struct gfs2_tune fields
  339. */
  340. static ssize_t quota_scale_show(struct gfs2_sbd *sdp, char *buf)
  341. {
  342. return snprintf(buf, PAGE_SIZE, "%u %u\n",
  343. sdp->sd_tune.gt_quota_scale_num,
  344. sdp->sd_tune.gt_quota_scale_den);
  345. }
  346. static ssize_t quota_scale_store(struct gfs2_sbd *sdp, const char *buf,
  347. size_t len)
  348. {
  349. struct gfs2_tune *gt = &sdp->sd_tune;
  350. unsigned int x, y;
  351. if (!capable(CAP_SYS_ADMIN))
  352. return -EACCES;
  353. if (sscanf(buf, "%u %u", &x, &y) != 2 || !y)
  354. return -EINVAL;
  355. spin_lock(&gt->gt_spin);
  356. gt->gt_quota_scale_num = x;
  357. gt->gt_quota_scale_den = y;
  358. spin_unlock(&gt->gt_spin);
  359. return len;
  360. }
  361. static ssize_t tune_set(struct gfs2_sbd *sdp, unsigned int *field,
  362. int check_zero, const char *buf, size_t len)
  363. {
  364. struct gfs2_tune *gt = &sdp->sd_tune;
  365. unsigned int x;
  366. if (!capable(CAP_SYS_ADMIN))
  367. return -EACCES;
  368. x = simple_strtoul(buf, NULL, 0);
  369. if (check_zero && !x)
  370. return -EINVAL;
  371. spin_lock(&gt->gt_spin);
  372. *field = x;
  373. spin_unlock(&gt->gt_spin);
  374. return len;
  375. }
  376. #define TUNE_ATTR_3(name, show, store) \
  377. static struct gfs2_attr tune_attr_##name = __ATTR(name, 0644, show, store)
  378. #define TUNE_ATTR_2(name, store) \
  379. static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf) \
  380. { \
  381. return snprintf(buf, PAGE_SIZE, "%u\n", sdp->sd_tune.gt_##name); \
  382. } \
  383. TUNE_ATTR_3(name, name##_show, store)
  384. #define TUNE_ATTR(name, check_zero) \
  385. static ssize_t name##_store(struct gfs2_sbd *sdp, const char *buf, size_t len)\
  386. { \
  387. return tune_set(sdp, &sdp->sd_tune.gt_##name, check_zero, buf, len); \
  388. } \
  389. TUNE_ATTR_2(name, name##_store)
  390. TUNE_ATTR(quota_warn_period, 0);
  391. TUNE_ATTR(quota_quantum, 0);
  392. TUNE_ATTR(max_readahead, 0);
  393. TUNE_ATTR(complain_secs, 0);
  394. TUNE_ATTR(statfs_slow, 0);
  395. TUNE_ATTR(new_files_jdata, 0);
  396. TUNE_ATTR(quota_simul_sync, 1);
  397. TUNE_ATTR(statfs_quantum, 1);
  398. TUNE_ATTR_3(quota_scale, quota_scale_show, quota_scale_store);
  399. static struct attribute *tune_attrs[] = {
  400. &tune_attr_quota_warn_period.attr,
  401. &tune_attr_quota_quantum.attr,
  402. &tune_attr_max_readahead.attr,
  403. &tune_attr_complain_secs.attr,
  404. &tune_attr_statfs_slow.attr,
  405. &tune_attr_quota_simul_sync.attr,
  406. &tune_attr_statfs_quantum.attr,
  407. &tune_attr_quota_scale.attr,
  408. &tune_attr_new_files_jdata.attr,
  409. NULL,
  410. };
  411. static struct attribute_group tune_group = {
  412. .name = "tune",
  413. .attrs = tune_attrs,
  414. };
  415. static struct attribute_group lock_module_group = {
  416. .name = "lock_module",
  417. .attrs = lock_module_attrs,
  418. };
  419. int gfs2_sys_fs_add(struct gfs2_sbd *sdp)
  420. {
  421. struct super_block *sb = sdp->sd_vfs;
  422. int error;
  423. char ro[20];
  424. char spectator[20];
  425. char *envp[] = { ro, spectator, NULL };
  426. sprintf(ro, "RDONLY=%d", (sb->s_flags & MS_RDONLY) ? 1 : 0);
  427. sprintf(spectator, "SPECTATOR=%d", sdp->sd_args.ar_spectator ? 1 : 0);
  428. sdp->sd_kobj.kset = gfs2_kset;
  429. error = kobject_init_and_add(&sdp->sd_kobj, &gfs2_ktype, NULL,
  430. "%s", sdp->sd_table_name);
  431. if (error)
  432. goto fail;
  433. error = sysfs_create_group(&sdp->sd_kobj, &tune_group);
  434. if (error)
  435. goto fail_reg;
  436. error = sysfs_create_group(&sdp->sd_kobj, &lock_module_group);
  437. if (error)
  438. goto fail_tune;
  439. error = sysfs_create_link(&sdp->sd_kobj,
  440. &disk_to_dev(sb->s_bdev->bd_disk)->kobj,
  441. "device");
  442. if (error)
  443. goto fail_lock_module;
  444. kobject_uevent_env(&sdp->sd_kobj, KOBJ_ADD, envp);
  445. return 0;
  446. fail_lock_module:
  447. sysfs_remove_group(&sdp->sd_kobj, &lock_module_group);
  448. fail_tune:
  449. sysfs_remove_group(&sdp->sd_kobj, &tune_group);
  450. fail_reg:
  451. kobject_put(&sdp->sd_kobj);
  452. fail:
  453. fs_err(sdp, "error %d adding sysfs files", error);
  454. return error;
  455. }
  456. void gfs2_sys_fs_del(struct gfs2_sbd *sdp)
  457. {
  458. sysfs_remove_link(&sdp->sd_kobj, "device");
  459. sysfs_remove_group(&sdp->sd_kobj, &tune_group);
  460. sysfs_remove_group(&sdp->sd_kobj, &lock_module_group);
  461. kobject_put(&sdp->sd_kobj);
  462. }
  463. static int gfs2_uevent(struct kset *kset, struct kobject *kobj,
  464. struct kobj_uevent_env *env)
  465. {
  466. struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
  467. const u8 *uuid = sdp->sd_sb.sb_uuid;
  468. add_uevent_var(env, "LOCKTABLE=%s", sdp->sd_table_name);
  469. add_uevent_var(env, "LOCKPROTO=%s", sdp->sd_proto_name);
  470. if (!sdp->sd_args.ar_spectator)
  471. add_uevent_var(env, "JOURNALID=%u", sdp->sd_lockstruct.ls_jid);
  472. if (gfs2_uuid_valid(uuid))
  473. add_uevent_var(env, "UUID=%pUB", uuid);
  474. return 0;
  475. }
  476. static const struct kset_uevent_ops gfs2_uevent_ops = {
  477. .uevent = gfs2_uevent,
  478. };
  479. int gfs2_sys_init(void)
  480. {
  481. gfs2_kset = kset_create_and_add("gfs2", &gfs2_uevent_ops, fs_kobj);
  482. if (!gfs2_kset)
  483. return -ENOMEM;
  484. return 0;
  485. }
  486. void gfs2_sys_uninit(void)
  487. {
  488. kset_unregister(gfs2_kset);
  489. }