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