Thomas Gleixner | 7336d0e | 2019-05-31 01:09:56 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. |
Steven Whitehouse | 3a8a9a1 | 2006-05-18 15:09:15 -0400 | [diff] [blame] | 4 | * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
Joe Perches | d77d1b5 | 2014-03-06 12:10:45 -0800 | [diff] [blame] | 7 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 8 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 9 | #include <linux/sched.h> |
Ingo Molnar | 5b825c3 | 2017-02-02 17:54:15 +0100 | [diff] [blame] | 10 | #include <linux/cred.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 11 | #include <linux/spinlock.h> |
| 12 | #include <linux/completion.h> |
| 13 | #include <linux/buffer_head.h> |
| 14 | #include <linux/module.h> |
| 15 | #include <linux/kobject.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 16 | #include <linux/uaccess.h> |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 17 | #include <linux/gfs2_ondisk.h> |
Steven Whitehouse | 31e54b0 | 2009-08-13 12:18:08 +0100 | [diff] [blame] | 18 | #include <linux/genhd.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 19 | |
| 20 | #include "gfs2.h" |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 21 | #include "incore.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 22 | #include "sys.h" |
| 23 | #include "super.h" |
| 24 | #include "glock.h" |
| 25 | #include "quota.h" |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 26 | #include "util.h" |
Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 27 | #include "glops.h" |
Tejun Heo | 6ecd7c2 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 28 | #include "recovery.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 29 | |
Steven Whitehouse | 48c2b61 | 2009-05-13 14:49:48 +0100 | [diff] [blame] | 30 | struct gfs2_attr { |
| 31 | struct attribute attr; |
| 32 | ssize_t (*show)(struct gfs2_sbd *, char *); |
| 33 | ssize_t (*store)(struct gfs2_sbd *, const char *, size_t); |
| 34 | }; |
| 35 | |
| 36 | static ssize_t gfs2_attr_show(struct kobject *kobj, struct attribute *attr, |
| 37 | char *buf) |
| 38 | { |
| 39 | struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj); |
| 40 | struct gfs2_attr *a = container_of(attr, struct gfs2_attr, attr); |
| 41 | return a->show ? a->show(sdp, buf) : 0; |
| 42 | } |
| 43 | |
| 44 | static ssize_t gfs2_attr_store(struct kobject *kobj, struct attribute *attr, |
| 45 | const char *buf, size_t len) |
| 46 | { |
| 47 | struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj); |
| 48 | struct gfs2_attr *a = container_of(attr, struct gfs2_attr, attr); |
| 49 | return a->store ? a->store(sdp, buf, len) : len; |
| 50 | } |
| 51 | |
Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 52 | static const struct sysfs_ops gfs2_attr_ops = { |
Steven Whitehouse | 48c2b61 | 2009-05-13 14:49:48 +0100 | [diff] [blame] | 53 | .show = gfs2_attr_show, |
| 54 | .store = gfs2_attr_store, |
| 55 | }; |
| 56 | |
| 57 | |
| 58 | static struct kset *gfs2_kset; |
| 59 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 60 | static ssize_t id_show(struct gfs2_sbd *sdp, char *buf) |
| 61 | { |
Bob Peterson | c7227e46 | 2007-11-02 09:37:15 -0500 | [diff] [blame] | 62 | return snprintf(buf, PAGE_SIZE, "%u:%u\n", |
| 63 | MAJOR(sdp->sd_vfs->s_dev), MINOR(sdp->sd_vfs->s_dev)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | static ssize_t fsname_show(struct gfs2_sbd *sdp, char *buf) |
| 67 | { |
David Teigland | 3204a6c | 2006-09-06 16:57:06 -0500 | [diff] [blame] | 68 | return snprintf(buf, PAGE_SIZE, "%s\n", sdp->sd_fsname); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 69 | } |
| 70 | |
Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 71 | static ssize_t uuid_show(struct gfs2_sbd *sdp, char *buf) |
| 72 | { |
Steven Whitehouse | 32e471e | 2011-05-10 15:01:59 +0100 | [diff] [blame] | 73 | struct super_block *s = sdp->sd_vfs; |
Christoph Hellwig | 8578709 | 2017-05-10 15:06:33 +0200 | [diff] [blame] | 74 | |
Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 75 | buf[0] = '\0'; |
Christoph Hellwig | 8578709 | 2017-05-10 15:06:33 +0200 | [diff] [blame] | 76 | if (uuid_is_null(&s->s_uuid)) |
Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 77 | return 0; |
Christoph Hellwig | 8578709 | 2017-05-10 15:06:33 +0200 | [diff] [blame] | 78 | return snprintf(buf, PAGE_SIZE, "%pUB\n", &s->s_uuid); |
Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 79 | } |
| 80 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 81 | static ssize_t freeze_show(struct gfs2_sbd *sdp, char *buf) |
| 82 | { |
Steven Whitehouse | d564053f | 2013-01-11 10:49:34 +0000 | [diff] [blame] | 83 | struct super_block *sb = sdp->sd_vfs; |
| 84 | int frozen = (sb->s_writers.frozen == SB_UNFROZEN) ? 0 : 1; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 85 | |
alex chen | 3566c96 | 2015-01-12 19:01:03 +0800 | [diff] [blame] | 86 | return snprintf(buf, PAGE_SIZE, "%d\n", frozen); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | static ssize_t freeze_store(struct gfs2_sbd *sdp, const char *buf, size_t len) |
| 90 | { |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 91 | int error, n; |
| 92 | |
| 93 | error = kstrtoint(buf, 0, &n); |
| 94 | if (error) |
| 95 | return error; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 96 | |
| 97 | if (!capable(CAP_SYS_ADMIN)) |
Zhao Hongjiang | 4173581 | 2013-02-20 13:13:55 +1100 | [diff] [blame] | 98 | return -EPERM; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 99 | |
| 100 | switch (n) { |
| 101 | case 0: |
Steven Whitehouse | d564053f | 2013-01-11 10:49:34 +0000 | [diff] [blame] | 102 | error = thaw_super(sdp->sd_vfs); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 103 | break; |
| 104 | case 1: |
Steven Whitehouse | d564053f | 2013-01-11 10:49:34 +0000 | [diff] [blame] | 105 | error = freeze_super(sdp->sd_vfs); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 106 | break; |
| 107 | default: |
Steven Whitehouse | d564053f | 2013-01-11 10:49:34 +0000 | [diff] [blame] | 108 | return -EINVAL; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 109 | } |
| 110 | |
Steven Whitehouse | d564053f | 2013-01-11 10:49:34 +0000 | [diff] [blame] | 111 | if (error) { |
Andreas Gruenbacher | af38816 | 2018-01-30 10:32:30 -0700 | [diff] [blame] | 112 | fs_warn(sdp, "freeze %d error %d\n", n, error); |
Steven Whitehouse | d564053f | 2013-01-11 10:49:34 +0000 | [diff] [blame] | 113 | return error; |
| 114 | } |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 115 | |
Steven Whitehouse | d564053f | 2013-01-11 10:49:34 +0000 | [diff] [blame] | 116 | return len; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | static ssize_t withdraw_show(struct gfs2_sbd *sdp, char *buf) |
| 120 | { |
Bob Peterson | eb43e66 | 2019-11-14 09:52:15 -0500 | [diff] [blame] | 121 | unsigned int b = gfs2_withdrawn(sdp); |
David Teigland | 3204a6c | 2006-09-06 16:57:06 -0500 | [diff] [blame] | 122 | return snprintf(buf, PAGE_SIZE, "%u\n", b); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | static ssize_t withdraw_store(struct gfs2_sbd *sdp, const char *buf, size_t len) |
| 126 | { |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 127 | int error, val; |
| 128 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 129 | if (!capable(CAP_SYS_ADMIN)) |
Zhao Hongjiang | 4173581 | 2013-02-20 13:13:55 +1100 | [diff] [blame] | 130 | return -EPERM; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 131 | |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 132 | error = kstrtoint(buf, 0, &val); |
| 133 | if (error) |
| 134 | return error; |
| 135 | |
| 136 | if (val != 1) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 137 | return -EINVAL; |
| 138 | |
Andreas Gruenbacher | badb55e | 2020-01-23 18:41:00 +0100 | [diff] [blame] | 139 | gfs2_lm(sdp, "withdrawing from cluster at user's request\n"); |
| 140 | gfs2_withdraw(sdp); |
Joe Perches | cb94eb0 | 2014-03-06 12:17:21 -0800 | [diff] [blame] | 141 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 142 | return len; |
| 143 | } |
| 144 | |
| 145 | static ssize_t statfs_sync_store(struct gfs2_sbd *sdp, const char *buf, |
| 146 | size_t len) |
| 147 | { |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 148 | int error, val; |
| 149 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 150 | if (!capable(CAP_SYS_ADMIN)) |
Zhao Hongjiang | 4173581 | 2013-02-20 13:13:55 +1100 | [diff] [blame] | 151 | return -EPERM; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 152 | |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 153 | error = kstrtoint(buf, 0, &val); |
| 154 | if (error) |
| 155 | return error; |
| 156 | |
| 157 | if (val != 1) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 158 | return -EINVAL; |
| 159 | |
Steven Whitehouse | 8c42d63 | 2009-09-11 14:36:44 +0100 | [diff] [blame] | 160 | gfs2_statfs_sync(sdp->sd_vfs, 0); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 161 | return len; |
| 162 | } |
| 163 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 164 | static ssize_t quota_sync_store(struct gfs2_sbd *sdp, const char *buf, |
| 165 | size_t len) |
| 166 | { |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 167 | int error, val; |
| 168 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 169 | if (!capable(CAP_SYS_ADMIN)) |
Zhao Hongjiang | 4173581 | 2013-02-20 13:13:55 +1100 | [diff] [blame] | 170 | return -EPERM; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 171 | |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 172 | error = kstrtoint(buf, 0, &val); |
| 173 | if (error) |
| 174 | return error; |
| 175 | |
| 176 | if (val != 1) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 177 | return -EINVAL; |
| 178 | |
Jan Kara | ceed172 | 2012-07-03 16:45:28 +0200 | [diff] [blame] | 179 | gfs2_quota_sync(sdp->sd_vfs, 0); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 180 | return len; |
| 181 | } |
| 182 | |
| 183 | static ssize_t quota_refresh_user_store(struct gfs2_sbd *sdp, const char *buf, |
| 184 | size_t len) |
| 185 | { |
Eric W. Biederman | ed87dab | 2013-01-31 19:42:40 -0800 | [diff] [blame] | 186 | struct kqid qid; |
Steven Whitehouse | ea76233 | 2009-09-15 16:20:30 +0100 | [diff] [blame] | 187 | int error; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 188 | u32 id; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 189 | |
| 190 | if (!capable(CAP_SYS_ADMIN)) |
Zhao Hongjiang | 4173581 | 2013-02-20 13:13:55 +1100 | [diff] [blame] | 191 | return -EPERM; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 192 | |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 193 | error = kstrtou32(buf, 0, &id); |
| 194 | if (error) |
| 195 | return error; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 196 | |
Eric W. Biederman | ed87dab | 2013-01-31 19:42:40 -0800 | [diff] [blame] | 197 | qid = make_kqid(current_user_ns(), USRQUOTA, id); |
| 198 | if (!qid_valid(qid)) |
| 199 | return -EINVAL; |
| 200 | |
| 201 | error = gfs2_quota_refresh(sdp, qid); |
Steven Whitehouse | ea76233 | 2009-09-15 16:20:30 +0100 | [diff] [blame] | 202 | return error ? error : len; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | static ssize_t quota_refresh_group_store(struct gfs2_sbd *sdp, const char *buf, |
| 206 | size_t len) |
| 207 | { |
Eric W. Biederman | ed87dab | 2013-01-31 19:42:40 -0800 | [diff] [blame] | 208 | struct kqid qid; |
Steven Whitehouse | ea76233 | 2009-09-15 16:20:30 +0100 | [diff] [blame] | 209 | int error; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 210 | u32 id; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 211 | |
| 212 | if (!capable(CAP_SYS_ADMIN)) |
Zhao Hongjiang | 4173581 | 2013-02-20 13:13:55 +1100 | [diff] [blame] | 213 | return -EPERM; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 214 | |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 215 | error = kstrtou32(buf, 0, &id); |
| 216 | if (error) |
| 217 | return error; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 218 | |
Eric W. Biederman | ed87dab | 2013-01-31 19:42:40 -0800 | [diff] [blame] | 219 | qid = make_kqid(current_user_ns(), GRPQUOTA, id); |
| 220 | if (!qid_valid(qid)) |
| 221 | return -EINVAL; |
| 222 | |
| 223 | error = gfs2_quota_refresh(sdp, qid); |
Steven Whitehouse | ea76233 | 2009-09-15 16:20:30 +0100 | [diff] [blame] | 224 | return error ? error : len; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 225 | } |
| 226 | |
Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 227 | static ssize_t demote_rq_store(struct gfs2_sbd *sdp, const char *buf, size_t len) |
| 228 | { |
| 229 | struct gfs2_glock *gl; |
| 230 | const struct gfs2_glock_operations *glops; |
| 231 | unsigned int glmode; |
| 232 | unsigned int gltype; |
| 233 | unsigned long long glnum; |
| 234 | char mode[16]; |
| 235 | int rv; |
| 236 | |
| 237 | if (!capable(CAP_SYS_ADMIN)) |
Zhao Hongjiang | 4173581 | 2013-02-20 13:13:55 +1100 | [diff] [blame] | 238 | return -EPERM; |
Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 239 | |
| 240 | rv = sscanf(buf, "%u:%llu %15s", &gltype, &glnum, |
| 241 | mode); |
| 242 | if (rv != 3) |
| 243 | return -EINVAL; |
| 244 | |
| 245 | if (strcmp(mode, "EX") == 0) |
| 246 | glmode = LM_ST_UNLOCKED; |
| 247 | else if ((strcmp(mode, "CW") == 0) || (strcmp(mode, "DF") == 0)) |
| 248 | glmode = LM_ST_DEFERRED; |
| 249 | else if ((strcmp(mode, "PR") == 0) || (strcmp(mode, "SH") == 0)) |
| 250 | glmode = LM_ST_SHARED; |
| 251 | else |
| 252 | return -EINVAL; |
| 253 | |
| 254 | if (gltype > LM_TYPE_JOURNAL) |
| 255 | return -EINVAL; |
Benjamin Marzinski | 2497255 | 2014-05-01 22:26:55 -0500 | [diff] [blame] | 256 | if (gltype == LM_TYPE_NONDISK && glnum == GFS2_FREEZE_LOCK) |
| 257 | glops = &gfs2_freeze_glops; |
Steven Whitehouse | 1346698 | 2010-10-06 09:58:44 +0100 | [diff] [blame] | 258 | else |
| 259 | glops = gfs2_glops_list[gltype]; |
Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 260 | if (glops == NULL) |
| 261 | return -EINVAL; |
Steven Whitehouse | 6a99be5 | 2010-05-14 14:05:51 +0100 | [diff] [blame] | 262 | if (!test_and_set_bit(SDF_DEMOTE, &sdp->sd_flags)) |
Steven Whitehouse | 913a71d | 2010-05-06 11:03:29 +0100 | [diff] [blame] | 263 | fs_info(sdp, "demote interface used\n"); |
Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 264 | rv = gfs2_glock_get(sdp, glnum, glops, 0, &gl); |
| 265 | if (rv) |
| 266 | return rv; |
| 267 | gfs2_glock_cb(gl, glmode); |
| 268 | gfs2_glock_put(gl); |
| 269 | return len; |
| 270 | } |
| 271 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 272 | |
| 273 | #define GFS2_ATTR(name, mode, show, store) \ |
| 274 | static struct gfs2_attr gfs2_attr_##name = __ATTR(name, mode, show, store) |
| 275 | |
| 276 | GFS2_ATTR(id, 0444, id_show, NULL); |
| 277 | GFS2_ATTR(fsname, 0444, fsname_show, NULL); |
Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 278 | GFS2_ATTR(uuid, 0444, uuid_show, NULL); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 279 | GFS2_ATTR(freeze, 0644, freeze_show, freeze_store); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 280 | GFS2_ATTR(withdraw, 0644, withdraw_show, withdraw_store); |
| 281 | GFS2_ATTR(statfs_sync, 0200, NULL, statfs_sync_store); |
| 282 | GFS2_ATTR(quota_sync, 0200, NULL, quota_sync_store); |
| 283 | GFS2_ATTR(quota_refresh_user, 0200, NULL, quota_refresh_user_store); |
| 284 | GFS2_ATTR(quota_refresh_group, 0200, NULL, quota_refresh_group_store); |
Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 285 | GFS2_ATTR(demote_rq, 0200, NULL, demote_rq_store); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 286 | |
| 287 | static struct attribute *gfs2_attrs[] = { |
| 288 | &gfs2_attr_id.attr, |
| 289 | &gfs2_attr_fsname.attr, |
Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 290 | &gfs2_attr_uuid.attr, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 291 | &gfs2_attr_freeze.attr, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 292 | &gfs2_attr_withdraw.attr, |
| 293 | &gfs2_attr_statfs_sync.attr, |
| 294 | &gfs2_attr_quota_sync.attr, |
| 295 | &gfs2_attr_quota_refresh_user.attr, |
| 296 | &gfs2_attr_quota_refresh_group.attr, |
Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 297 | &gfs2_attr_demote_rq.attr, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 298 | NULL, |
| 299 | }; |
Kimberly Brown | ef254d1 | 2019-06-07 14:23:00 -0400 | [diff] [blame] | 300 | ATTRIBUTE_GROUPS(gfs2); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 301 | |
Bob Peterson | 0d51521 | 2012-06-13 10:27:41 -0400 | [diff] [blame] | 302 | static void gfs2_sbd_release(struct kobject *kobj) |
| 303 | { |
| 304 | struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj); |
| 305 | |
Jamie Iles | c2a04b0 | 2020-10-12 14:13:09 +0100 | [diff] [blame] | 306 | complete(&sdp->sd_kobj_unregister); |
Bob Peterson | 0d51521 | 2012-06-13 10:27:41 -0400 | [diff] [blame] | 307 | } |
| 308 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 309 | static struct kobj_type gfs2_ktype = { |
Bob Peterson | 0d51521 | 2012-06-13 10:27:41 -0400 | [diff] [blame] | 310 | .release = gfs2_sbd_release, |
Kimberly Brown | ef254d1 | 2019-06-07 14:23:00 -0400 | [diff] [blame] | 311 | .default_groups = gfs2_groups, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 312 | .sysfs_ops = &gfs2_attr_ops, |
| 313 | }; |
| 314 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 315 | |
| 316 | /* |
| 317 | * lock_module. Originally from lock_dlm |
| 318 | */ |
| 319 | |
| 320 | static ssize_t proto_name_show(struct gfs2_sbd *sdp, char *buf) |
| 321 | { |
| 322 | const struct lm_lockops *ops = sdp->sd_lockstruct.ls_ops; |
| 323 | return sprintf(buf, "%s\n", ops->lm_proto_name); |
| 324 | } |
| 325 | |
| 326 | static ssize_t block_show(struct gfs2_sbd *sdp, char *buf) |
| 327 | { |
| 328 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
| 329 | ssize_t ret; |
| 330 | int val = 0; |
| 331 | |
David Teigland | e0c2a9a | 2012-01-09 17:18:05 -0500 | [diff] [blame] | 332 | if (test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags)) |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 333 | val = 1; |
| 334 | ret = sprintf(buf, "%d\n", val); |
| 335 | return ret; |
| 336 | } |
| 337 | |
| 338 | static ssize_t block_store(struct gfs2_sbd *sdp, const char *buf, size_t len) |
| 339 | { |
| 340 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 341 | int ret, val; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 342 | |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 343 | ret = kstrtoint(buf, 0, &val); |
| 344 | if (ret) |
| 345 | return ret; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 346 | |
| 347 | if (val == 1) |
David Teigland | e0c2a9a | 2012-01-09 17:18:05 -0500 | [diff] [blame] | 348 | set_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 349 | else if (val == 0) { |
David Teigland | e0c2a9a | 2012-01-09 17:18:05 -0500 | [diff] [blame] | 350 | clear_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags); |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 351 | smp_mb__after_atomic(); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 352 | gfs2_glock_thaw(sdp); |
| 353 | } else { |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 354 | return -EINVAL; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 355 | } |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 356 | return len; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 357 | } |
| 358 | |
Steven Whitehouse | fd95e81 | 2013-02-13 12:21:40 +0000 | [diff] [blame] | 359 | static ssize_t wdack_show(struct gfs2_sbd *sdp, char *buf) |
| 360 | { |
| 361 | int val = completion_done(&sdp->sd_wdack) ? 1 : 0; |
| 362 | |
| 363 | return sprintf(buf, "%d\n", val); |
| 364 | } |
| 365 | |
| 366 | static ssize_t wdack_store(struct gfs2_sbd *sdp, const char *buf, size_t len) |
| 367 | { |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 368 | int ret, val; |
Steven Whitehouse | fd95e81 | 2013-02-13 12:21:40 +0000 | [diff] [blame] | 369 | |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 370 | ret = kstrtoint(buf, 0, &val); |
| 371 | if (ret) |
| 372 | return ret; |
Steven Whitehouse | fd95e81 | 2013-02-13 12:21:40 +0000 | [diff] [blame] | 373 | |
| 374 | if ((val == 1) && |
| 375 | !strcmp(sdp->sd_lockstruct.ls_ops->lm_proto_name, "lock_dlm")) |
| 376 | complete(&sdp->sd_wdack); |
| 377 | else |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 378 | return -EINVAL; |
| 379 | return len; |
Steven Whitehouse | fd95e81 | 2013-02-13 12:21:40 +0000 | [diff] [blame] | 380 | } |
| 381 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 382 | static ssize_t lkfirst_show(struct gfs2_sbd *sdp, char *buf) |
| 383 | { |
| 384 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
| 385 | return sprintf(buf, "%d\n", ls->ls_first); |
| 386 | } |
| 387 | |
Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 388 | static ssize_t lkfirst_store(struct gfs2_sbd *sdp, const char *buf, size_t len) |
| 389 | { |
| 390 | unsigned first; |
| 391 | int rv; |
| 392 | |
| 393 | rv = sscanf(buf, "%u", &first); |
| 394 | if (rv != 1 || first > 1) |
| 395 | return -EINVAL; |
Steven Whitehouse | 3942ae53 | 2011-07-11 08:53:30 +0100 | [diff] [blame] | 396 | rv = wait_for_completion_killable(&sdp->sd_locking_init); |
| 397 | if (rv) |
| 398 | return rv; |
Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 399 | spin_lock(&sdp->sd_jindex_spin); |
| 400 | rv = -EBUSY; |
| 401 | if (test_bit(SDF_NOJOURNALID, &sdp->sd_flags) == 0) |
| 402 | goto out; |
| 403 | rv = -EINVAL; |
| 404 | if (sdp->sd_args.ar_spectator) |
| 405 | goto out; |
| 406 | if (sdp->sd_lockstruct.ls_ops->lm_mount == NULL) |
| 407 | goto out; |
David Teigland | e0c2a9a | 2012-01-09 17:18:05 -0500 | [diff] [blame] | 408 | sdp->sd_lockstruct.ls_first = first; |
| 409 | rv = 0; |
Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 410 | out: |
| 411 | spin_unlock(&sdp->sd_jindex_spin); |
| 412 | return rv ? rv : len; |
| 413 | } |
| 414 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 415 | static ssize_t first_done_show(struct gfs2_sbd *sdp, char *buf) |
| 416 | { |
| 417 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
David Teigland | e0c2a9a | 2012-01-09 17:18:05 -0500 | [diff] [blame] | 418 | return sprintf(buf, "%d\n", !!test_bit(DFL_FIRST_MOUNT_DONE, &ls->ls_recover_flags)); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 419 | } |
| 420 | |
David Teigland | e0c2a9a | 2012-01-09 17:18:05 -0500 | [diff] [blame] | 421 | int gfs2_recover_set(struct gfs2_sbd *sdp, unsigned jid) |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 422 | { |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 423 | struct gfs2_jdesc *jd; |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 424 | int rv; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 425 | |
Bob Peterson | 0e48e055 | 2014-06-02 09:40:25 -0400 | [diff] [blame] | 426 | /* Wait for our primary journal to be initialized */ |
| 427 | wait_for_completion(&sdp->sd_journal_ready); |
| 428 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 429 | spin_lock(&sdp->sd_jindex_spin); |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 430 | rv = -EBUSY; |
Bob Peterson | 4a77277 | 2018-07-05 14:40:46 -0500 | [diff] [blame] | 431 | /** |
| 432 | * If we're a spectator, we use journal0, but it's not really ours. |
| 433 | * So we need to wait for its recovery too. If we skip it we'd never |
| 434 | * queue work to the recovery workqueue, and so its completion would |
| 435 | * never clear the DFL_BLOCK_LOCKS flag, so all our locks would |
| 436 | * permanently stop working. |
| 437 | */ |
Bob Peterson | 601ef0d | 2020-01-28 20:23:45 +0100 | [diff] [blame] | 438 | if (!sdp->sd_jdesc) |
| 439 | goto out; |
Bob Peterson | 4a77277 | 2018-07-05 14:40:46 -0500 | [diff] [blame] | 440 | if (sdp->sd_jdesc->jd_jid == jid && !sdp->sd_args.ar_spectator) |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 441 | goto out; |
| 442 | rv = -ENOENT; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 443 | list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) { |
Bob Peterson | 4a77277 | 2018-07-05 14:40:46 -0500 | [diff] [blame] | 444 | if (jd->jd_jid != jid && !sdp->sd_args.ar_spectator) |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 445 | continue; |
Tejun Heo | 6ecd7c2 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 446 | rv = gfs2_recover_journal(jd, false); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 447 | break; |
| 448 | } |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 449 | out: |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 450 | spin_unlock(&sdp->sd_jindex_spin); |
David Teigland | e0c2a9a | 2012-01-09 17:18:05 -0500 | [diff] [blame] | 451 | return rv; |
| 452 | } |
| 453 | |
| 454 | static ssize_t recover_store(struct gfs2_sbd *sdp, const char *buf, size_t len) |
| 455 | { |
| 456 | unsigned jid; |
| 457 | int rv; |
| 458 | |
| 459 | rv = sscanf(buf, "%u", &jid); |
| 460 | if (rv != 1) |
| 461 | return -EINVAL; |
| 462 | |
David Teigland | 1a058f5 | 2012-05-01 15:50:48 -0500 | [diff] [blame] | 463 | if (test_bit(SDF_NORECOVERY, &sdp->sd_flags)) { |
| 464 | rv = -ESHUTDOWN; |
| 465 | goto out; |
| 466 | } |
David Teigland | e0c2a9a | 2012-01-09 17:18:05 -0500 | [diff] [blame] | 467 | |
David Teigland | 1a058f5 | 2012-05-01 15:50:48 -0500 | [diff] [blame] | 468 | rv = gfs2_recover_set(sdp, jid); |
| 469 | out: |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 470 | return rv ? rv : len; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 471 | } |
| 472 | |
| 473 | static ssize_t recover_done_show(struct gfs2_sbd *sdp, char *buf) |
| 474 | { |
| 475 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
| 476 | return sprintf(buf, "%d\n", ls->ls_recover_jid_done); |
| 477 | } |
| 478 | |
| 479 | static ssize_t recover_status_show(struct gfs2_sbd *sdp, char *buf) |
| 480 | { |
| 481 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
| 482 | return sprintf(buf, "%d\n", ls->ls_recover_jid_status); |
| 483 | } |
| 484 | |
Steven Whitehouse | e1b28aa | 2009-05-26 15:41:27 +0100 | [diff] [blame] | 485 | static ssize_t jid_show(struct gfs2_sbd *sdp, char *buf) |
| 486 | { |
Steven Whitehouse | feb47ca9 | 2010-09-29 15:04:18 +0100 | [diff] [blame] | 487 | return sprintf(buf, "%d\n", sdp->sd_lockstruct.ls_jid); |
Steven Whitehouse | e1b28aa | 2009-05-26 15:41:27 +0100 | [diff] [blame] | 488 | } |
| 489 | |
Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 490 | static ssize_t jid_store(struct gfs2_sbd *sdp, const char *buf, size_t len) |
| 491 | { |
Steven Whitehouse | feb47ca9 | 2010-09-29 15:04:18 +0100 | [diff] [blame] | 492 | int jid; |
Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 493 | int rv; |
| 494 | |
Steven Whitehouse | feb47ca9 | 2010-09-29 15:04:18 +0100 | [diff] [blame] | 495 | rv = sscanf(buf, "%d", &jid); |
Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 496 | if (rv != 1) |
| 497 | return -EINVAL; |
Steven Whitehouse | 3942ae53 | 2011-07-11 08:53:30 +0100 | [diff] [blame] | 498 | rv = wait_for_completion_killable(&sdp->sd_locking_init); |
| 499 | if (rv) |
| 500 | return rv; |
Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 501 | spin_lock(&sdp->sd_jindex_spin); |
| 502 | rv = -EINVAL; |
Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 503 | if (sdp->sd_lockstruct.ls_ops->lm_mount == NULL) |
| 504 | goto out; |
| 505 | rv = -EBUSY; |
Steven Whitehouse | feb47ca9 | 2010-09-29 15:04:18 +0100 | [diff] [blame] | 506 | if (test_bit(SDF_NOJOURNALID, &sdp->sd_flags) == 0) |
Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 507 | goto out; |
Steven Whitehouse | feb47ca9 | 2010-09-29 15:04:18 +0100 | [diff] [blame] | 508 | rv = 0; |
| 509 | if (sdp->sd_args.ar_spectator && jid > 0) |
| 510 | rv = jid = -EINVAL; |
Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 511 | sdp->sd_lockstruct.ls_jid = jid; |
Steven Whitehouse | feb47ca9 | 2010-09-29 15:04:18 +0100 | [diff] [blame] | 512 | clear_bit(SDF_NOJOURNALID, &sdp->sd_flags); |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 513 | smp_mb__after_atomic(); |
Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 514 | wake_up_bit(&sdp->sd_flags, SDF_NOJOURNALID); |
Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 515 | out: |
| 516 | spin_unlock(&sdp->sd_jindex_spin); |
| 517 | return rv ? rv : len; |
| 518 | } |
| 519 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 520 | #define GDLM_ATTR(_name,_mode,_show,_store) \ |
Steven Whitehouse | 48c2b61 | 2009-05-13 14:49:48 +0100 | [diff] [blame] | 521 | static struct gfs2_attr gdlm_attr_##_name = __ATTR(_name,_mode,_show,_store) |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 522 | |
Steven Whitehouse | d7e623d | 2009-08-11 11:20:11 +0100 | [diff] [blame] | 523 | GDLM_ATTR(proto_name, 0444, proto_name_show, NULL); |
| 524 | GDLM_ATTR(block, 0644, block_show, block_store); |
Steven Whitehouse | fd95e81 | 2013-02-13 12:21:40 +0000 | [diff] [blame] | 525 | GDLM_ATTR(withdraw, 0644, wdack_show, wdack_store); |
Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 526 | GDLM_ATTR(jid, 0644, jid_show, jid_store); |
| 527 | GDLM_ATTR(first, 0644, lkfirst_show, lkfirst_store); |
Steven Whitehouse | d7e623d | 2009-08-11 11:20:11 +0100 | [diff] [blame] | 528 | GDLM_ATTR(first_done, 0444, first_done_show, NULL); |
| 529 | GDLM_ATTR(recover, 0600, NULL, recover_store); |
| 530 | GDLM_ATTR(recover_done, 0444, recover_done_show, NULL); |
| 531 | GDLM_ATTR(recover_status, 0444, recover_status_show, NULL); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 532 | |
| 533 | static struct attribute *lock_module_attrs[] = { |
| 534 | &gdlm_attr_proto_name.attr, |
| 535 | &gdlm_attr_block.attr, |
| 536 | &gdlm_attr_withdraw.attr, |
Steven Whitehouse | e1b28aa | 2009-05-26 15:41:27 +0100 | [diff] [blame] | 537 | &gdlm_attr_jid.attr, |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 538 | &gdlm_attr_first.attr, |
| 539 | &gdlm_attr_first_done.attr, |
| 540 | &gdlm_attr_recover.attr, |
| 541 | &gdlm_attr_recover_done.attr, |
| 542 | &gdlm_attr_recover_status.attr, |
Steven Whitehouse | ea67eed | 2006-09-05 10:53:09 -0400 | [diff] [blame] | 543 | NULL, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 544 | }; |
| 545 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 546 | /* |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 547 | * get and set struct gfs2_tune fields |
| 548 | */ |
| 549 | |
| 550 | static ssize_t quota_scale_show(struct gfs2_sbd *sdp, char *buf) |
| 551 | { |
David Teigland | 3204a6c | 2006-09-06 16:57:06 -0500 | [diff] [blame] | 552 | return snprintf(buf, PAGE_SIZE, "%u %u\n", |
| 553 | sdp->sd_tune.gt_quota_scale_num, |
| 554 | sdp->sd_tune.gt_quota_scale_den); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 555 | } |
| 556 | |
| 557 | static ssize_t quota_scale_store(struct gfs2_sbd *sdp, const char *buf, |
| 558 | size_t len) |
| 559 | { |
| 560 | struct gfs2_tune *gt = &sdp->sd_tune; |
| 561 | unsigned int x, y; |
| 562 | |
| 563 | if (!capable(CAP_SYS_ADMIN)) |
Zhao Hongjiang | 4173581 | 2013-02-20 13:13:55 +1100 | [diff] [blame] | 564 | return -EPERM; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 565 | |
| 566 | if (sscanf(buf, "%u %u", &x, &y) != 2 || !y) |
| 567 | return -EINVAL; |
| 568 | |
| 569 | spin_lock(>->gt_spin); |
| 570 | gt->gt_quota_scale_num = x; |
| 571 | gt->gt_quota_scale_den = y; |
| 572 | spin_unlock(>->gt_spin); |
| 573 | return len; |
| 574 | } |
| 575 | |
| 576 | static ssize_t tune_set(struct gfs2_sbd *sdp, unsigned int *field, |
| 577 | int check_zero, const char *buf, size_t len) |
| 578 | { |
| 579 | struct gfs2_tune *gt = &sdp->sd_tune; |
| 580 | unsigned int x; |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 581 | int error; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 582 | |
| 583 | if (!capable(CAP_SYS_ADMIN)) |
Zhao Hongjiang | 4173581 | 2013-02-20 13:13:55 +1100 | [diff] [blame] | 584 | return -EPERM; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 585 | |
Fabian Frederick | e50ead4 | 2015-05-05 13:23:22 -0500 | [diff] [blame] | 586 | error = kstrtouint(buf, 0, &x); |
| 587 | if (error) |
| 588 | return error; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 589 | |
| 590 | if (check_zero && !x) |
| 591 | return -EINVAL; |
| 592 | |
| 593 | spin_lock(>->gt_spin); |
| 594 | *field = x; |
| 595 | spin_unlock(>->gt_spin); |
| 596 | return len; |
| 597 | } |
| 598 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 599 | #define TUNE_ATTR_3(name, show, store) \ |
Steven Whitehouse | 48c2b61 | 2009-05-13 14:49:48 +0100 | [diff] [blame] | 600 | static struct gfs2_attr tune_attr_##name = __ATTR(name, 0644, show, store) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 601 | |
| 602 | #define TUNE_ATTR_2(name, store) \ |
| 603 | static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf) \ |
| 604 | { \ |
David Teigland | 3204a6c | 2006-09-06 16:57:06 -0500 | [diff] [blame] | 605 | return snprintf(buf, PAGE_SIZE, "%u\n", sdp->sd_tune.gt_##name); \ |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 606 | } \ |
| 607 | TUNE_ATTR_3(name, name##_show, store) |
| 608 | |
| 609 | #define TUNE_ATTR(name, check_zero) \ |
| 610 | static ssize_t name##_store(struct gfs2_sbd *sdp, const char *buf, size_t len)\ |
| 611 | { \ |
| 612 | return tune_set(sdp, &sdp->sd_tune.gt_##name, check_zero, buf, len); \ |
| 613 | } \ |
| 614 | TUNE_ATTR_2(name, name##_store) |
| 615 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 616 | TUNE_ATTR(quota_warn_period, 0); |
| 617 | TUNE_ATTR(quota_quantum, 0); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 618 | TUNE_ATTR(max_readahead, 0); |
| 619 | TUNE_ATTR(complain_secs, 0); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 620 | TUNE_ATTR(statfs_slow, 0); |
| 621 | TUNE_ATTR(new_files_jdata, 0); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 622 | TUNE_ATTR(statfs_quantum, 1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 623 | TUNE_ATTR_3(quota_scale, quota_scale_show, quota_scale_store); |
| 624 | |
| 625 | static struct attribute *tune_attrs[] = { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 626 | &tune_attr_quota_warn_period.attr, |
| 627 | &tune_attr_quota_quantum.attr, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 628 | &tune_attr_max_readahead.attr, |
| 629 | &tune_attr_complain_secs.attr, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 630 | &tune_attr_statfs_slow.attr, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 631 | &tune_attr_statfs_quantum.attr, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 632 | &tune_attr_quota_scale.attr, |
| 633 | &tune_attr_new_files_jdata.attr, |
Steven Whitehouse | ea67eed | 2006-09-05 10:53:09 -0400 | [diff] [blame] | 634 | NULL, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 635 | }; |
| 636 | |
Arvind Yadav | 2969525 | 2017-06-30 08:33:54 -0500 | [diff] [blame] | 637 | static const struct attribute_group tune_group = { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 638 | .name = "tune", |
Steven Whitehouse | ea67eed | 2006-09-05 10:53:09 -0400 | [diff] [blame] | 639 | .attrs = tune_attrs, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 640 | }; |
| 641 | |
Arvind Yadav | 2969525 | 2017-06-30 08:33:54 -0500 | [diff] [blame] | 642 | static const struct attribute_group lock_module_group = { |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 643 | .name = "lock_module", |
| 644 | .attrs = lock_module_attrs, |
| 645 | }; |
| 646 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 647 | int gfs2_sys_fs_add(struct gfs2_sbd *sdp) |
| 648 | { |
Steven Whitehouse | 440d6da | 2009-07-31 12:16:25 +0100 | [diff] [blame] | 649 | struct super_block *sb = sdp->sd_vfs; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 650 | int error; |
Steven Whitehouse | 440d6da | 2009-07-31 12:16:25 +0100 | [diff] [blame] | 651 | char ro[20]; |
| 652 | char spectator[20]; |
| 653 | char *envp[] = { ro, spectator, NULL }; |
| 654 | |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 655 | sprintf(ro, "RDONLY=%d", sb_rdonly(sb)); |
Steven Whitehouse | 440d6da | 2009-07-31 12:16:25 +0100 | [diff] [blame] | 656 | sprintf(spectator, "SPECTATOR=%d", sdp->sd_args.ar_spectator ? 1 : 0); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 657 | |
Jamie Iles | c2a04b0 | 2020-10-12 14:13:09 +0100 | [diff] [blame] | 658 | init_completion(&sdp->sd_kobj_unregister); |
Greg Kroah-Hartman | 9bec101 | 2007-10-29 20:13:17 +0100 | [diff] [blame] | 659 | sdp->sd_kobj.kset = gfs2_kset; |
Greg Kroah-Hartman | 901195e | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 660 | error = kobject_init_and_add(&sdp->sd_kobj, &gfs2_ktype, NULL, |
| 661 | "%s", sdp->sd_table_name); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 662 | if (error) |
Bob Peterson | 0d51521 | 2012-06-13 10:27:41 -0400 | [diff] [blame] | 663 | goto fail_reg; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 664 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 665 | error = sysfs_create_group(&sdp->sd_kobj, &tune_group); |
| 666 | if (error) |
Steven Whitehouse | f6eb534 | 2009-05-26 15:50:25 +0100 | [diff] [blame] | 667 | goto fail_reg; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 668 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 669 | error = sysfs_create_group(&sdp->sd_kobj, &lock_module_group); |
| 670 | if (error) |
| 671 | goto fail_tune; |
| 672 | |
Steven Whitehouse | 31e54b0 | 2009-08-13 12:18:08 +0100 | [diff] [blame] | 673 | error = sysfs_create_link(&sdp->sd_kobj, |
| 674 | &disk_to_dev(sb->s_bdev->bd_disk)->kobj, |
| 675 | "device"); |
| 676 | if (error) |
| 677 | goto fail_lock_module; |
| 678 | |
Steven Whitehouse | 440d6da | 2009-07-31 12:16:25 +0100 | [diff] [blame] | 679 | kobject_uevent_env(&sdp->sd_kobj, KOBJ_ADD, envp); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 680 | return 0; |
| 681 | |
Steven Whitehouse | 31e54b0 | 2009-08-13 12:18:08 +0100 | [diff] [blame] | 682 | fail_lock_module: |
| 683 | sysfs_remove_group(&sdp->sd_kobj, &lock_module_group); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 684 | fail_tune: |
| 685 | sysfs_remove_group(&sdp->sd_kobj, &tune_group); |
Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 686 | fail_reg: |
Andreas Gruenbacher | af38816 | 2018-01-30 10:32:30 -0700 | [diff] [blame] | 687 | fs_err(sdp, "error %d adding sysfs files\n", error); |
Tobin C. Harding | fbcde19 | 2019-05-13 21:59:04 +0200 | [diff] [blame] | 688 | kobject_put(&sdp->sd_kobj); |
Jamie Iles | c2a04b0 | 2020-10-12 14:13:09 +0100 | [diff] [blame] | 689 | wait_for_completion(&sdp->sd_kobj_unregister); |
Bob Peterson | 0d51521 | 2012-06-13 10:27:41 -0400 | [diff] [blame] | 690 | sb->s_fs_info = NULL; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 691 | return error; |
| 692 | } |
| 693 | |
| 694 | void gfs2_sys_fs_del(struct gfs2_sbd *sdp) |
| 695 | { |
Steven Whitehouse | 31e54b0 | 2009-08-13 12:18:08 +0100 | [diff] [blame] | 696 | sysfs_remove_link(&sdp->sd_kobj, "device"); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 697 | sysfs_remove_group(&sdp->sd_kobj, &tune_group); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 698 | sysfs_remove_group(&sdp->sd_kobj, &lock_module_group); |
Greg Kroah-Hartman | 197b12d | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 699 | kobject_put(&sdp->sd_kobj); |
Jamie Iles | c2a04b0 | 2020-10-12 14:13:09 +0100 | [diff] [blame] | 700 | wait_for_completion(&sdp->sd_kobj_unregister); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 701 | } |
| 702 | |
Steven Whitehouse | fdd1062e | 2008-11-26 10:26:38 +0000 | [diff] [blame] | 703 | static int gfs2_uevent(struct kset *kset, struct kobject *kobj, |
| 704 | struct kobj_uevent_env *env) |
| 705 | { |
| 706 | struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj); |
Steven Whitehouse | 32e471e | 2011-05-10 15:01:59 +0100 | [diff] [blame] | 707 | struct super_block *s = sdp->sd_vfs; |
Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 708 | |
Steven Whitehouse | fdd1062e | 2008-11-26 10:26:38 +0000 | [diff] [blame] | 709 | add_uevent_var(env, "LOCKTABLE=%s", sdp->sd_table_name); |
| 710 | add_uevent_var(env, "LOCKPROTO=%s", sdp->sd_proto_name); |
Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 711 | if (!test_bit(SDF_NOJOURNALID, &sdp->sd_flags)) |
Steven Whitehouse | feb47ca9 | 2010-09-29 15:04:18 +0100 | [diff] [blame] | 712 | add_uevent_var(env, "JOURNALID=%d", sdp->sd_lockstruct.ls_jid); |
Christoph Hellwig | 8578709 | 2017-05-10 15:06:33 +0200 | [diff] [blame] | 713 | if (!uuid_is_null(&s->s_uuid)) |
| 714 | add_uevent_var(env, "UUID=%pUB", &s->s_uuid); |
Steven Whitehouse | fdd1062e | 2008-11-26 10:26:38 +0000 | [diff] [blame] | 715 | return 0; |
| 716 | } |
| 717 | |
Emese Revfy | 9cd4361 | 2009-12-31 14:52:51 +0100 | [diff] [blame] | 718 | static const struct kset_uevent_ops gfs2_uevent_ops = { |
Steven Whitehouse | fdd1062e | 2008-11-26 10:26:38 +0000 | [diff] [blame] | 719 | .uevent = gfs2_uevent, |
| 720 | }; |
| 721 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 722 | int gfs2_sys_init(void) |
| 723 | { |
Steven Whitehouse | fdd1062e | 2008-11-26 10:26:38 +0000 | [diff] [blame] | 724 | gfs2_kset = kset_create_and_add("gfs2", &gfs2_uevent_ops, fs_kobj); |
Greg Kroah-Hartman | 9bec101 | 2007-10-29 20:13:17 +0100 | [diff] [blame] | 725 | if (!gfs2_kset) |
| 726 | return -ENOMEM; |
| 727 | return 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 728 | } |
| 729 | |
| 730 | void gfs2_sys_uninit(void) |
| 731 | { |
Greg Kroah-Hartman | 9bec101 | 2007-10-29 20:13:17 +0100 | [diff] [blame] | 732 | kset_unregister(gfs2_kset); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 733 | } |
| 734 | |