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 | |
| 10 | #include <linux/sched.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> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 16 | #include <asm/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" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 28 | |
Steven Whitehouse | 48c2b61 | 2009-05-13 14:49:48 +0100 | [diff] [blame] | 29 | struct gfs2_attr { |
| 30 | struct attribute attr; |
| 31 | ssize_t (*show)(struct gfs2_sbd *, char *); |
| 32 | ssize_t (*store)(struct gfs2_sbd *, const char *, size_t); |
| 33 | }; |
| 34 | |
| 35 | static ssize_t gfs2_attr_show(struct kobject *kobj, struct attribute *attr, |
| 36 | char *buf) |
| 37 | { |
| 38 | struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj); |
| 39 | struct gfs2_attr *a = container_of(attr, struct gfs2_attr, attr); |
| 40 | return a->show ? a->show(sdp, buf) : 0; |
| 41 | } |
| 42 | |
| 43 | static ssize_t gfs2_attr_store(struct kobject *kobj, struct attribute *attr, |
| 44 | const char *buf, size_t len) |
| 45 | { |
| 46 | struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj); |
| 47 | struct gfs2_attr *a = container_of(attr, struct gfs2_attr, attr); |
| 48 | return a->store ? a->store(sdp, buf, len) : len; |
| 49 | } |
| 50 | |
Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 51 | static const struct sysfs_ops gfs2_attr_ops = { |
Steven Whitehouse | 48c2b61 | 2009-05-13 14:49:48 +0100 | [diff] [blame] | 52 | .show = gfs2_attr_show, |
| 53 | .store = gfs2_attr_store, |
| 54 | }; |
| 55 | |
| 56 | |
| 57 | static struct kset *gfs2_kset; |
| 58 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 59 | static ssize_t id_show(struct gfs2_sbd *sdp, char *buf) |
| 60 | { |
Bob Peterson | c7227e46 | 2007-11-02 09:37:15 -0500 | [diff] [blame] | 61 | return snprintf(buf, PAGE_SIZE, "%u:%u\n", |
| 62 | MAJOR(sdp->sd_vfs->s_dev), MINOR(sdp->sd_vfs->s_dev)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | static ssize_t fsname_show(struct gfs2_sbd *sdp, char *buf) |
| 66 | { |
David Teigland | 3204a6c | 2006-09-06 16:57:06 -0500 | [diff] [blame] | 67 | return snprintf(buf, PAGE_SIZE, "%s\n", sdp->sd_fsname); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 68 | } |
| 69 | |
Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 70 | static int gfs2_uuid_valid(const u8 *uuid) |
| 71 | { |
| 72 | int i; |
| 73 | |
| 74 | for (i = 0; i < 16; i++) { |
| 75 | if (uuid[i]) |
| 76 | return 1; |
| 77 | } |
| 78 | return 0; |
| 79 | } |
| 80 | |
| 81 | static ssize_t uuid_show(struct gfs2_sbd *sdp, char *buf) |
| 82 | { |
| 83 | const u8 *uuid = sdp->sd_sb.sb_uuid; |
| 84 | buf[0] = '\0'; |
| 85 | if (!gfs2_uuid_valid(uuid)) |
| 86 | return 0; |
Joe Perches | f0b34ae | 2009-12-14 18:01:13 -0800 | [diff] [blame] | 87 | return snprintf(buf, PAGE_SIZE, "%pUB\n", uuid); |
Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 88 | } |
| 89 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 90 | static ssize_t freeze_show(struct gfs2_sbd *sdp, char *buf) |
| 91 | { |
| 92 | unsigned int count; |
| 93 | |
Steven Whitehouse | f55ab26 | 2006-02-21 12:51:39 +0000 | [diff] [blame] | 94 | mutex_lock(&sdp->sd_freeze_lock); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 95 | count = sdp->sd_freeze_count; |
Steven Whitehouse | f55ab26 | 2006-02-21 12:51:39 +0000 | [diff] [blame] | 96 | mutex_unlock(&sdp->sd_freeze_lock); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 97 | |
David Teigland | 3204a6c | 2006-09-06 16:57:06 -0500 | [diff] [blame] | 98 | return snprintf(buf, PAGE_SIZE, "%u\n", count); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | static ssize_t freeze_store(struct gfs2_sbd *sdp, const char *buf, size_t len) |
| 102 | { |
| 103 | ssize_t ret = len; |
| 104 | int error = 0; |
| 105 | int n = simple_strtol(buf, NULL, 0); |
| 106 | |
| 107 | if (!capable(CAP_SYS_ADMIN)) |
| 108 | return -EACCES; |
| 109 | |
| 110 | switch (n) { |
| 111 | case 0: |
| 112 | gfs2_unfreeze_fs(sdp); |
| 113 | break; |
| 114 | case 1: |
| 115 | error = gfs2_freeze_fs(sdp); |
| 116 | break; |
| 117 | default: |
| 118 | ret = -EINVAL; |
| 119 | } |
| 120 | |
| 121 | if (error) |
| 122 | fs_warn(sdp, "freeze %d error %d", n, error); |
| 123 | |
| 124 | return ret; |
| 125 | } |
| 126 | |
| 127 | static ssize_t withdraw_show(struct gfs2_sbd *sdp, char *buf) |
| 128 | { |
| 129 | unsigned int b = test_bit(SDF_SHUTDOWN, &sdp->sd_flags); |
David Teigland | 3204a6c | 2006-09-06 16:57:06 -0500 | [diff] [blame] | 130 | return snprintf(buf, PAGE_SIZE, "%u\n", b); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | static ssize_t withdraw_store(struct gfs2_sbd *sdp, const char *buf, size_t len) |
| 134 | { |
| 135 | if (!capable(CAP_SYS_ADMIN)) |
| 136 | return -EACCES; |
| 137 | |
| 138 | if (simple_strtol(buf, NULL, 0) != 1) |
| 139 | return -EINVAL; |
| 140 | |
| 141 | gfs2_lm_withdraw(sdp, |
| 142 | "GFS2: fsid=%s: withdrawing from cluster at user's request\n", |
| 143 | sdp->sd_fsname); |
| 144 | return len; |
| 145 | } |
| 146 | |
| 147 | static ssize_t statfs_sync_store(struct gfs2_sbd *sdp, const char *buf, |
| 148 | size_t len) |
| 149 | { |
| 150 | if (!capable(CAP_SYS_ADMIN)) |
| 151 | return -EACCES; |
| 152 | |
| 153 | if (simple_strtol(buf, NULL, 0) != 1) |
| 154 | return -EINVAL; |
| 155 | |
Steven Whitehouse | 8c42d63 | 2009-09-11 14:36:44 +0100 | [diff] [blame] | 156 | gfs2_statfs_sync(sdp->sd_vfs, 0); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 157 | return len; |
| 158 | } |
| 159 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 160 | static ssize_t quota_sync_store(struct gfs2_sbd *sdp, const char *buf, |
| 161 | size_t len) |
| 162 | { |
| 163 | if (!capable(CAP_SYS_ADMIN)) |
| 164 | return -EACCES; |
| 165 | |
| 166 | if (simple_strtol(buf, NULL, 0) != 1) |
| 167 | return -EINVAL; |
| 168 | |
Christoph Hellwig | 5fb324a | 2010-02-16 03:44:52 -0500 | [diff] [blame] | 169 | gfs2_quota_sync(sdp->sd_vfs, 0, 1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 170 | return len; |
| 171 | } |
| 172 | |
| 173 | static ssize_t quota_refresh_user_store(struct gfs2_sbd *sdp, const char *buf, |
| 174 | size_t len) |
| 175 | { |
Steven Whitehouse | ea76233 | 2009-09-15 16:20:30 +0100 | [diff] [blame] | 176 | int error; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 177 | u32 id; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 178 | |
| 179 | if (!capable(CAP_SYS_ADMIN)) |
| 180 | return -EACCES; |
| 181 | |
| 182 | id = simple_strtoul(buf, NULL, 0); |
| 183 | |
Steven Whitehouse | ea76233 | 2009-09-15 16:20:30 +0100 | [diff] [blame] | 184 | error = gfs2_quota_refresh(sdp, 1, id); |
| 185 | return error ? error : len; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | static ssize_t quota_refresh_group_store(struct gfs2_sbd *sdp, const char *buf, |
| 189 | size_t len) |
| 190 | { |
Steven Whitehouse | ea76233 | 2009-09-15 16:20:30 +0100 | [diff] [blame] | 191 | int error; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 192 | u32 id; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 193 | |
| 194 | if (!capable(CAP_SYS_ADMIN)) |
| 195 | return -EACCES; |
| 196 | |
| 197 | id = simple_strtoul(buf, NULL, 0); |
| 198 | |
Steven Whitehouse | ea76233 | 2009-09-15 16:20:30 +0100 | [diff] [blame] | 199 | error = gfs2_quota_refresh(sdp, 0, id); |
| 200 | return error ? error : len; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 201 | } |
| 202 | |
Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 203 | static ssize_t demote_rq_store(struct gfs2_sbd *sdp, const char *buf, size_t len) |
| 204 | { |
| 205 | struct gfs2_glock *gl; |
| 206 | const struct gfs2_glock_operations *glops; |
| 207 | unsigned int glmode; |
| 208 | unsigned int gltype; |
| 209 | unsigned long long glnum; |
| 210 | char mode[16]; |
| 211 | int rv; |
| 212 | |
| 213 | if (!capable(CAP_SYS_ADMIN)) |
| 214 | return -EACCES; |
| 215 | |
| 216 | rv = sscanf(buf, "%u:%llu %15s", &gltype, &glnum, |
| 217 | mode); |
| 218 | if (rv != 3) |
| 219 | return -EINVAL; |
| 220 | |
| 221 | if (strcmp(mode, "EX") == 0) |
| 222 | glmode = LM_ST_UNLOCKED; |
| 223 | else if ((strcmp(mode, "CW") == 0) || (strcmp(mode, "DF") == 0)) |
| 224 | glmode = LM_ST_DEFERRED; |
| 225 | else if ((strcmp(mode, "PR") == 0) || (strcmp(mode, "SH") == 0)) |
| 226 | glmode = LM_ST_SHARED; |
| 227 | else |
| 228 | return -EINVAL; |
| 229 | |
| 230 | if (gltype > LM_TYPE_JOURNAL) |
| 231 | return -EINVAL; |
| 232 | glops = gfs2_glops_list[gltype]; |
| 233 | if (glops == NULL) |
| 234 | return -EINVAL; |
Steven Whitehouse | 6a99be5 | 2010-05-14 14:05:51 +0100 | [diff] [blame] | 235 | if (!test_and_set_bit(SDF_DEMOTE, &sdp->sd_flags)) |
Steven Whitehouse | 913a71d | 2010-05-06 11:03:29 +0100 | [diff] [blame] | 236 | fs_info(sdp, "demote interface used\n"); |
Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 237 | rv = gfs2_glock_get(sdp, glnum, glops, 0, &gl); |
| 238 | if (rv) |
| 239 | return rv; |
| 240 | gfs2_glock_cb(gl, glmode); |
| 241 | gfs2_glock_put(gl); |
| 242 | return len; |
| 243 | } |
| 244 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 245 | |
| 246 | #define GFS2_ATTR(name, mode, show, store) \ |
| 247 | static struct gfs2_attr gfs2_attr_##name = __ATTR(name, mode, show, store) |
| 248 | |
| 249 | GFS2_ATTR(id, 0444, id_show, NULL); |
| 250 | GFS2_ATTR(fsname, 0444, fsname_show, NULL); |
Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 251 | GFS2_ATTR(uuid, 0444, uuid_show, NULL); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 252 | GFS2_ATTR(freeze, 0644, freeze_show, freeze_store); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 253 | GFS2_ATTR(withdraw, 0644, withdraw_show, withdraw_store); |
| 254 | GFS2_ATTR(statfs_sync, 0200, NULL, statfs_sync_store); |
| 255 | GFS2_ATTR(quota_sync, 0200, NULL, quota_sync_store); |
| 256 | GFS2_ATTR(quota_refresh_user, 0200, NULL, quota_refresh_user_store); |
| 257 | GFS2_ATTR(quota_refresh_group, 0200, NULL, quota_refresh_group_store); |
Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 258 | GFS2_ATTR(demote_rq, 0200, NULL, demote_rq_store); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 259 | |
| 260 | static struct attribute *gfs2_attrs[] = { |
| 261 | &gfs2_attr_id.attr, |
| 262 | &gfs2_attr_fsname.attr, |
Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 263 | &gfs2_attr_uuid.attr, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 264 | &gfs2_attr_freeze.attr, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 265 | &gfs2_attr_withdraw.attr, |
| 266 | &gfs2_attr_statfs_sync.attr, |
| 267 | &gfs2_attr_quota_sync.attr, |
| 268 | &gfs2_attr_quota_refresh_user.attr, |
| 269 | &gfs2_attr_quota_refresh_group.attr, |
Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 270 | &gfs2_attr_demote_rq.attr, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 271 | NULL, |
| 272 | }; |
| 273 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 274 | static struct kobj_type gfs2_ktype = { |
| 275 | .default_attrs = gfs2_attrs, |
| 276 | .sysfs_ops = &gfs2_attr_ops, |
| 277 | }; |
| 278 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 279 | |
| 280 | /* |
| 281 | * lock_module. Originally from lock_dlm |
| 282 | */ |
| 283 | |
| 284 | static ssize_t proto_name_show(struct gfs2_sbd *sdp, char *buf) |
| 285 | { |
| 286 | const struct lm_lockops *ops = sdp->sd_lockstruct.ls_ops; |
| 287 | return sprintf(buf, "%s\n", ops->lm_proto_name); |
| 288 | } |
| 289 | |
| 290 | static ssize_t block_show(struct gfs2_sbd *sdp, char *buf) |
| 291 | { |
| 292 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
| 293 | ssize_t ret; |
| 294 | int val = 0; |
| 295 | |
| 296 | if (test_bit(DFL_BLOCK_LOCKS, &ls->ls_flags)) |
| 297 | val = 1; |
| 298 | ret = sprintf(buf, "%d\n", val); |
| 299 | return ret; |
| 300 | } |
| 301 | |
| 302 | static ssize_t block_store(struct gfs2_sbd *sdp, const char *buf, size_t len) |
| 303 | { |
| 304 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
| 305 | ssize_t ret = len; |
| 306 | int val; |
| 307 | |
| 308 | val = simple_strtol(buf, NULL, 0); |
| 309 | |
| 310 | if (val == 1) |
| 311 | set_bit(DFL_BLOCK_LOCKS, &ls->ls_flags); |
| 312 | else if (val == 0) { |
| 313 | clear_bit(DFL_BLOCK_LOCKS, &ls->ls_flags); |
| 314 | smp_mb__after_clear_bit(); |
| 315 | gfs2_glock_thaw(sdp); |
| 316 | } else { |
| 317 | ret = -EINVAL; |
| 318 | } |
| 319 | return ret; |
| 320 | } |
| 321 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 322 | static ssize_t lkfirst_show(struct gfs2_sbd *sdp, char *buf) |
| 323 | { |
| 324 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
| 325 | return sprintf(buf, "%d\n", ls->ls_first); |
| 326 | } |
| 327 | |
| 328 | static ssize_t first_done_show(struct gfs2_sbd *sdp, char *buf) |
| 329 | { |
| 330 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
| 331 | return sprintf(buf, "%d\n", ls->ls_first_done); |
| 332 | } |
| 333 | |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 334 | static ssize_t recover_store(struct gfs2_sbd *sdp, const char *buf, size_t len) |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 335 | { |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 336 | unsigned jid; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 337 | struct gfs2_jdesc *jd; |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 338 | int rv; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 339 | |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 340 | rv = sscanf(buf, "%u", &jid); |
| 341 | if (rv != 1) |
| 342 | return -EINVAL; |
| 343 | |
| 344 | rv = -ESHUTDOWN; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 345 | spin_lock(&sdp->sd_jindex_spin); |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 346 | if (test_bit(SDF_NORECOVERY, &sdp->sd_flags)) |
| 347 | goto out; |
| 348 | rv = -EBUSY; |
| 349 | if (sdp->sd_jdesc->jd_jid == jid) |
| 350 | goto out; |
| 351 | rv = -ENOENT; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 352 | list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) { |
| 353 | if (jd->jd_jid != jid) |
| 354 | continue; |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 355 | rv = slow_work_enqueue(&jd->jd_work); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 356 | break; |
| 357 | } |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 358 | out: |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 359 | spin_unlock(&sdp->sd_jindex_spin); |
Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 360 | return rv ? rv : len; |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | static ssize_t recover_done_show(struct gfs2_sbd *sdp, char *buf) |
| 364 | { |
| 365 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
| 366 | return sprintf(buf, "%d\n", ls->ls_recover_jid_done); |
| 367 | } |
| 368 | |
| 369 | static ssize_t recover_status_show(struct gfs2_sbd *sdp, char *buf) |
| 370 | { |
| 371 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
| 372 | return sprintf(buf, "%d\n", ls->ls_recover_jid_status); |
| 373 | } |
| 374 | |
Steven Whitehouse | e1b28aa | 2009-05-26 15:41:27 +0100 | [diff] [blame] | 375 | static ssize_t jid_show(struct gfs2_sbd *sdp, char *buf) |
| 376 | { |
| 377 | return sprintf(buf, "%u\n", sdp->sd_lockstruct.ls_jid); |
| 378 | } |
| 379 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 380 | #define GDLM_ATTR(_name,_mode,_show,_store) \ |
Steven Whitehouse | 48c2b61 | 2009-05-13 14:49:48 +0100 | [diff] [blame] | 381 | static struct gfs2_attr gdlm_attr_##_name = __ATTR(_name,_mode,_show,_store) |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 382 | |
Steven Whitehouse | d7e623d | 2009-08-11 11:20:11 +0100 | [diff] [blame] | 383 | GDLM_ATTR(proto_name, 0444, proto_name_show, NULL); |
| 384 | GDLM_ATTR(block, 0644, block_show, block_store); |
| 385 | GDLM_ATTR(withdraw, 0644, withdraw_show, withdraw_store); |
Steven Whitehouse | d7e623d | 2009-08-11 11:20:11 +0100 | [diff] [blame] | 386 | GDLM_ATTR(jid, 0444, jid_show, NULL); |
| 387 | GDLM_ATTR(first, 0444, lkfirst_show, NULL); |
| 388 | GDLM_ATTR(first_done, 0444, first_done_show, NULL); |
| 389 | GDLM_ATTR(recover, 0600, NULL, recover_store); |
| 390 | GDLM_ATTR(recover_done, 0444, recover_done_show, NULL); |
| 391 | GDLM_ATTR(recover_status, 0444, recover_status_show, NULL); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 392 | |
| 393 | static struct attribute *lock_module_attrs[] = { |
| 394 | &gdlm_attr_proto_name.attr, |
| 395 | &gdlm_attr_block.attr, |
| 396 | &gdlm_attr_withdraw.attr, |
Steven Whitehouse | e1b28aa | 2009-05-26 15:41:27 +0100 | [diff] [blame] | 397 | &gdlm_attr_jid.attr, |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 398 | &gdlm_attr_first.attr, |
| 399 | &gdlm_attr_first_done.attr, |
| 400 | &gdlm_attr_recover.attr, |
| 401 | &gdlm_attr_recover_done.attr, |
| 402 | &gdlm_attr_recover_status.attr, |
Steven Whitehouse | ea67eed | 2006-09-05 10:53:09 -0400 | [diff] [blame] | 403 | NULL, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 404 | }; |
| 405 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 406 | /* |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 407 | * get and set struct gfs2_tune fields |
| 408 | */ |
| 409 | |
| 410 | static ssize_t quota_scale_show(struct gfs2_sbd *sdp, char *buf) |
| 411 | { |
David Teigland | 3204a6c | 2006-09-06 16:57:06 -0500 | [diff] [blame] | 412 | return snprintf(buf, PAGE_SIZE, "%u %u\n", |
| 413 | sdp->sd_tune.gt_quota_scale_num, |
| 414 | sdp->sd_tune.gt_quota_scale_den); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | static ssize_t quota_scale_store(struct gfs2_sbd *sdp, const char *buf, |
| 418 | size_t len) |
| 419 | { |
| 420 | struct gfs2_tune *gt = &sdp->sd_tune; |
| 421 | unsigned int x, y; |
| 422 | |
| 423 | if (!capable(CAP_SYS_ADMIN)) |
| 424 | return -EACCES; |
| 425 | |
| 426 | if (sscanf(buf, "%u %u", &x, &y) != 2 || !y) |
| 427 | return -EINVAL; |
| 428 | |
| 429 | spin_lock(>->gt_spin); |
| 430 | gt->gt_quota_scale_num = x; |
| 431 | gt->gt_quota_scale_den = y; |
| 432 | spin_unlock(>->gt_spin); |
| 433 | return len; |
| 434 | } |
| 435 | |
| 436 | static ssize_t tune_set(struct gfs2_sbd *sdp, unsigned int *field, |
| 437 | int check_zero, const char *buf, size_t len) |
| 438 | { |
| 439 | struct gfs2_tune *gt = &sdp->sd_tune; |
| 440 | unsigned int x; |
| 441 | |
| 442 | if (!capable(CAP_SYS_ADMIN)) |
| 443 | return -EACCES; |
| 444 | |
| 445 | x = simple_strtoul(buf, NULL, 0); |
| 446 | |
| 447 | if (check_zero && !x) |
| 448 | return -EINVAL; |
| 449 | |
| 450 | spin_lock(>->gt_spin); |
| 451 | *field = x; |
| 452 | spin_unlock(>->gt_spin); |
| 453 | return len; |
| 454 | } |
| 455 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 456 | #define TUNE_ATTR_3(name, show, store) \ |
Steven Whitehouse | 48c2b61 | 2009-05-13 14:49:48 +0100 | [diff] [blame] | 457 | static struct gfs2_attr tune_attr_##name = __ATTR(name, 0644, show, store) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 458 | |
| 459 | #define TUNE_ATTR_2(name, store) \ |
| 460 | static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf) \ |
| 461 | { \ |
David Teigland | 3204a6c | 2006-09-06 16:57:06 -0500 | [diff] [blame] | 462 | return snprintf(buf, PAGE_SIZE, "%u\n", sdp->sd_tune.gt_##name); \ |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 463 | } \ |
| 464 | TUNE_ATTR_3(name, name##_show, store) |
| 465 | |
| 466 | #define TUNE_ATTR(name, check_zero) \ |
| 467 | static ssize_t name##_store(struct gfs2_sbd *sdp, const char *buf, size_t len)\ |
| 468 | { \ |
| 469 | return tune_set(sdp, &sdp->sd_tune.gt_##name, check_zero, buf, len); \ |
| 470 | } \ |
| 471 | TUNE_ATTR_2(name, name##_store) |
| 472 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 473 | TUNE_ATTR(quota_warn_period, 0); |
| 474 | TUNE_ATTR(quota_quantum, 0); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 475 | TUNE_ATTR(max_readahead, 0); |
| 476 | TUNE_ATTR(complain_secs, 0); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 477 | TUNE_ATTR(statfs_slow, 0); |
| 478 | TUNE_ATTR(new_files_jdata, 0); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 479 | TUNE_ATTR(quota_simul_sync, 1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 480 | TUNE_ATTR(statfs_quantum, 1); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 481 | TUNE_ATTR_3(quota_scale, quota_scale_show, quota_scale_store); |
| 482 | |
| 483 | static struct attribute *tune_attrs[] = { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 484 | &tune_attr_quota_warn_period.attr, |
| 485 | &tune_attr_quota_quantum.attr, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 486 | &tune_attr_max_readahead.attr, |
| 487 | &tune_attr_complain_secs.attr, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 488 | &tune_attr_statfs_slow.attr, |
| 489 | &tune_attr_quota_simul_sync.attr, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 490 | &tune_attr_statfs_quantum.attr, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 491 | &tune_attr_quota_scale.attr, |
| 492 | &tune_attr_new_files_jdata.attr, |
Steven Whitehouse | ea67eed | 2006-09-05 10:53:09 -0400 | [diff] [blame] | 493 | NULL, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 494 | }; |
| 495 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 496 | static struct attribute_group tune_group = { |
| 497 | .name = "tune", |
Steven Whitehouse | ea67eed | 2006-09-05 10:53:09 -0400 | [diff] [blame] | 498 | .attrs = tune_attrs, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 499 | }; |
| 500 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 501 | static struct attribute_group lock_module_group = { |
| 502 | .name = "lock_module", |
| 503 | .attrs = lock_module_attrs, |
| 504 | }; |
| 505 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 506 | int gfs2_sys_fs_add(struct gfs2_sbd *sdp) |
| 507 | { |
Steven Whitehouse | 440d6da | 2009-07-31 12:16:25 +0100 | [diff] [blame] | 508 | struct super_block *sb = sdp->sd_vfs; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 509 | int error; |
Steven Whitehouse | 440d6da | 2009-07-31 12:16:25 +0100 | [diff] [blame] | 510 | char ro[20]; |
| 511 | char spectator[20]; |
| 512 | char *envp[] = { ro, spectator, NULL }; |
| 513 | |
| 514 | sprintf(ro, "RDONLY=%d", (sb->s_flags & MS_RDONLY) ? 1 : 0); |
| 515 | sprintf(spectator, "SPECTATOR=%d", sdp->sd_args.ar_spectator ? 1 : 0); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 516 | |
Greg Kroah-Hartman | 9bec101 | 2007-10-29 20:13:17 +0100 | [diff] [blame] | 517 | sdp->sd_kobj.kset = gfs2_kset; |
Greg Kroah-Hartman | 901195e | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 518 | error = kobject_init_and_add(&sdp->sd_kobj, &gfs2_ktype, NULL, |
| 519 | "%s", sdp->sd_table_name); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 520 | if (error) |
| 521 | goto fail; |
| 522 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 523 | error = sysfs_create_group(&sdp->sd_kobj, &tune_group); |
| 524 | if (error) |
Steven Whitehouse | f6eb534 | 2009-05-26 15:50:25 +0100 | [diff] [blame] | 525 | goto fail_reg; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 526 | |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 527 | error = sysfs_create_group(&sdp->sd_kobj, &lock_module_group); |
| 528 | if (error) |
| 529 | goto fail_tune; |
| 530 | |
Steven Whitehouse | 31e54b0 | 2009-08-13 12:18:08 +0100 | [diff] [blame] | 531 | error = sysfs_create_link(&sdp->sd_kobj, |
| 532 | &disk_to_dev(sb->s_bdev->bd_disk)->kobj, |
| 533 | "device"); |
| 534 | if (error) |
| 535 | goto fail_lock_module; |
| 536 | |
Steven Whitehouse | 440d6da | 2009-07-31 12:16:25 +0100 | [diff] [blame] | 537 | kobject_uevent_env(&sdp->sd_kobj, KOBJ_ADD, envp); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 538 | return 0; |
| 539 | |
Steven Whitehouse | 31e54b0 | 2009-08-13 12:18:08 +0100 | [diff] [blame] | 540 | fail_lock_module: |
| 541 | sysfs_remove_group(&sdp->sd_kobj, &lock_module_group); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 542 | fail_tune: |
| 543 | sysfs_remove_group(&sdp->sd_kobj, &tune_group); |
Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 544 | fail_reg: |
Greg Kroah-Hartman | 197b12d | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 545 | kobject_put(&sdp->sd_kobj); |
Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 546 | fail: |
David Teigland | 65952fb | 2006-09-15 13:09:11 -0500 | [diff] [blame] | 547 | fs_err(sdp, "error %d adding sysfs files", error); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 548 | return error; |
| 549 | } |
| 550 | |
| 551 | void gfs2_sys_fs_del(struct gfs2_sbd *sdp) |
| 552 | { |
Steven Whitehouse | 31e54b0 | 2009-08-13 12:18:08 +0100 | [diff] [blame] | 553 | sysfs_remove_link(&sdp->sd_kobj, "device"); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 554 | sysfs_remove_group(&sdp->sd_kobj, &tune_group); |
Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 555 | sysfs_remove_group(&sdp->sd_kobj, &lock_module_group); |
Greg Kroah-Hartman | 197b12d | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 556 | kobject_put(&sdp->sd_kobj); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 557 | } |
| 558 | |
Steven Whitehouse | fdd1062 | 2008-11-26 10:26:38 +0000 | [diff] [blame] | 559 | static int gfs2_uevent(struct kset *kset, struct kobject *kobj, |
| 560 | struct kobj_uevent_env *env) |
| 561 | { |
| 562 | struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj); |
Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 563 | const u8 *uuid = sdp->sd_sb.sb_uuid; |
| 564 | |
Steven Whitehouse | fdd1062 | 2008-11-26 10:26:38 +0000 | [diff] [blame] | 565 | add_uevent_var(env, "LOCKTABLE=%s", sdp->sd_table_name); |
| 566 | add_uevent_var(env, "LOCKPROTO=%s", sdp->sd_proto_name); |
Steven Whitehouse | 440d6da | 2009-07-31 12:16:25 +0100 | [diff] [blame] | 567 | if (!sdp->sd_args.ar_spectator) |
| 568 | add_uevent_var(env, "JOURNALID=%u", sdp->sd_lockstruct.ls_jid); |
Joe Perches | f0b34ae | 2009-12-14 18:01:13 -0800 | [diff] [blame] | 569 | if (gfs2_uuid_valid(uuid)) |
| 570 | add_uevent_var(env, "UUID=%pUB", uuid); |
Steven Whitehouse | fdd1062 | 2008-11-26 10:26:38 +0000 | [diff] [blame] | 571 | return 0; |
| 572 | } |
| 573 | |
Emese Revfy | 9cd4361 | 2009-12-31 14:52:51 +0100 | [diff] [blame] | 574 | static const struct kset_uevent_ops gfs2_uevent_ops = { |
Steven Whitehouse | fdd1062 | 2008-11-26 10:26:38 +0000 | [diff] [blame] | 575 | .uevent = gfs2_uevent, |
| 576 | }; |
| 577 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 578 | int gfs2_sys_init(void) |
| 579 | { |
Steven Whitehouse | fdd1062 | 2008-11-26 10:26:38 +0000 | [diff] [blame] | 580 | 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] | 581 | if (!gfs2_kset) |
| 582 | return -ENOMEM; |
| 583 | return 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 584 | } |
| 585 | |
| 586 | void gfs2_sys_uninit(void) |
| 587 | { |
Greg Kroah-Hartman | 9bec101 | 2007-10-29 20:13:17 +0100 | [diff] [blame] | 588 | kset_unregister(gfs2_kset); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 589 | } |
| 590 | |