| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
#include <linux/config.h> |
|---|
| 24 |
#include <linux/module.h> |
|---|
| 25 |
#include <linux/slab.h> |
|---|
| 26 |
#include <linux/init.h> |
|---|
| 27 |
#include <linux/smp_lock.h> |
|---|
| 28 |
#include <linux/acct.h> |
|---|
| 29 |
#include <linux/blkdev.h> |
|---|
| 30 |
#include <linux/quotaops.h> |
|---|
| 31 |
#include <linux/namei.h> |
|---|
| 32 |
#include <linux/buffer_head.h> |
|---|
| 33 |
#include <linux/mount.h> |
|---|
| 34 |
#include <linux/security.h> |
|---|
| 35 |
#include <linux/vfs.h> |
|---|
| 36 |
#include <linux/writeback.h> |
|---|
| 37 |
#include <linux/idr.h> |
|---|
| 38 |
#include <asm/uaccess.h> |
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
void get_filesystem(struct file_system_type *fs); |
|---|
| 42 |
void put_filesystem(struct file_system_type *fs); |
|---|
| 43 |
struct file_system_type *get_fs_type(const char *name); |
|---|
| 44 |
|
|---|
| 45 |
LIST_HEAD(super_blocks); |
|---|
| 46 |
spinlock_t sb_lock = SPIN_LOCK_UNLOCKED; |
|---|
| 47 |
|
|---|
| 48 |
|
|---|
| 49 |
|
|---|
| 50 |
|
|---|
| 51 |
|
|---|
| 52 |
|
|---|
| 53 |
|
|---|
| 54 |
static struct super_block *alloc_super(void) |
|---|
| 55 |
{ |
|---|
| 56 |
struct super_block *s = kmalloc(sizeof(struct super_block), GFP_USER); |
|---|
| 57 |
static struct super_operations default_op; |
|---|
| 58 |
|
|---|
| 59 |
if (s) { |
|---|
| 60 |
memset(s, 0, sizeof(struct super_block)); |
|---|
| 61 |
if (security_sb_alloc(s)) { |
|---|
| 62 |
kfree(s); |
|---|
| 63 |
s = NULL; |
|---|
| 64 |
goto out; |
|---|
| 65 |
} |
|---|
| 66 |
INIT_LIST_HEAD(&s->s_dirty); |
|---|
| 67 |
INIT_LIST_HEAD(&s->s_io); |
|---|
| 68 |
INIT_LIST_HEAD(&s->s_files); |
|---|
| 69 |
INIT_LIST_HEAD(&s->s_instances); |
|---|
| 70 |
INIT_HLIST_HEAD(&s->s_anon); |
|---|
| 71 |
init_rwsem(&s->s_umount); |
|---|
| 72 |
sema_init(&s->s_lock, 1); |
|---|
| 73 |
down_write(&s->s_umount); |
|---|
| 74 |
s->s_count = S_BIAS; |
|---|
| 75 |
atomic_set(&s->s_active, 1); |
|---|
| 76 |
sema_init(&s->s_vfs_rename_sem,1); |
|---|
| 77 |
sema_init(&s->s_dquot.dqio_sem, 1); |
|---|
| 78 |
sema_init(&s->s_dquot.dqonoff_sem, 1); |
|---|
| 79 |
init_rwsem(&s->s_dquot.dqptr_sem); |
|---|
| 80 |
init_waitqueue_head(&s->s_wait_unfrozen); |
|---|
| 81 |
s->s_maxbytes = MAX_NON_LFS; |
|---|
| 82 |
s->dq_op = sb_dquot_ops; |
|---|
| 83 |
s->s_qcop = sb_quotactl_ops; |
|---|
| 84 |
s->s_op = &default_op; |
|---|
| 85 |
} |
|---|
| 86 |
out: |
|---|
| 87 |
return s; |
|---|
| 88 |
} |
|---|
| 89 |
|
|---|
| 90 |
|
|---|
| 91 |
|
|---|
| 92 |
|
|---|
| 93 |
|
|---|
| 94 |
|
|---|
| 95 |
|
|---|
| 96 |
static inline void destroy_super(struct super_block *s) |
|---|
| 97 |
{ |
|---|
| 98 |
security_sb_free(s); |
|---|
| 99 |
kfree(s); |
|---|
| 100 |
} |
|---|
| 101 |
|
|---|
| 102 |
|
|---|
| 103 |
|
|---|
| 104 |
|
|---|
| 105 |
|
|---|
| 106 |
|
|---|
| 107 |
|
|---|
| 108 |
int __put_super(struct super_block *sb) |
|---|
| 109 |
{ |
|---|
| 110 |
int ret = 0; |
|---|
| 111 |
|
|---|
| 112 |
if (!--sb->s_count) { |
|---|
| 113 |
destroy_super(sb); |
|---|
| 114 |
ret = 1; |
|---|
| 115 |
} |
|---|
| 116 |
return ret; |
|---|
| 117 |
} |
|---|
| 118 |
|
|---|
| 119 |
|
|---|
| 120 |
|
|---|
| 121 |
|
|---|
| 122 |
|
|---|
| 123 |
|
|---|
| 124 |
|
|---|
| 125 |
|
|---|
| 126 |
static void put_super(struct super_block *sb) |
|---|
| 127 |
{ |
|---|
| 128 |
spin_lock(&sb_lock); |
|---|
| 129 |
__put_super(sb); |
|---|
| 130 |
spin_unlock(&sb_lock); |
|---|
| 131 |
} |
|---|
| 132 |
|
|---|
| 133 |
|
|---|
| 134 |
|
|---|
| 135 |
|
|---|
| 136 |
|
|---|
| 137 |
|
|---|
| 138 |
|
|---|
| 139 |
|
|---|
| 140 |
|
|---|
| 141 |
|
|---|
| 142 |
|
|---|
| 143 |
void deactivate_super(struct super_block *s) |
|---|
| 144 |
{ |
|---|
| 145 |
struct file_system_type *fs = s->s_type; |
|---|
| 146 |
if (atomic_dec_and_lock(&s->s_active, &sb_lock)) { |
|---|
| 147 |
s->s_count -= S_BIAS-1; |
|---|
| 148 |
spin_unlock(&sb_lock); |
|---|
| 149 |
down_write(&s->s_umount); |
|---|
| 150 |
fs->kill_sb(s); |
|---|
| 151 |
put_filesystem(fs); |
|---|
| 152 |
put_super(s); |
|---|
| 153 |
} |
|---|
| 154 |
} |
|---|
| 155 |
|
|---|
| 156 |
EXPORT_SYMBOL(deactivate_super); |
|---|
| 157 |
|
|---|
| 158 |
|
|---|
| 159 |
|
|---|
| 160 |
|
|---|
| 161 |
|
|---|
| 162 |
|
|---|
| 163 |
|
|---|
| 164 |
|
|---|
| 165 |
|
|---|
| 166 |
|
|---|
| 167 |
|
|---|
| 168 |
|
|---|
| 169 |
static int grab_super(struct super_block *s) |
|---|
| 170 |
{ |
|---|
| 171 |
s->s_count++; |
|---|
| 172 |
spin_unlock(&sb_lock); |
|---|
| 173 |
down_write(&s->s_umount); |
|---|
| 174 |
if (s->s_root) { |
|---|
| 175 |
spin_lock(&sb_lock); |
|---|
| 176 |
if (s->s_count > S_BIAS) { |
|---|
| 177 |
atomic_inc(&s->s_active); |
|---|
| 178 |
s->s_count--; |
|---|
| 179 |
spin_unlock(&sb_lock); |
|---|
| 180 |
return 1; |
|---|
| 181 |
} |
|---|
| 182 |
spin_unlock(&sb_lock); |
|---|
| 183 |
} |
|---|
| 184 |
up_write(&s->s_umount); |
|---|
| 185 |
put_super(s); |
|---|
| 186 |
yield(); |
|---|
| 187 |
return 0; |
|---|
| 188 |
} |
|---|
| 189 |
|
|---|
| 190 |
|
|---|
| 191 |
|
|---|
| 192 |
|
|---|
| 193 |
|
|---|
| 194 |
|
|---|
| 195 |
|
|---|
| 196 |
|
|---|
| 197 |
|
|---|
| 198 |
|
|---|
| 199 |
|
|---|
| 200 |
void generic_shutdown_super(struct super_block *sb) |
|---|
| 201 |
{ |
|---|
| 202 |
struct dentry *root = sb->s_root; |
|---|
| 203 |
struct super_operations *sop = sb->s_op; |
|---|
| 204 |
|
|---|
| 205 |
if (root) { |
|---|
| 206 |
sb->s_root = NULL; |
|---|
| 207 |
shrink_dcache_parent(root); |
|---|
| 208 |
shrink_dcache_anon(&sb->s_anon); |
|---|
| 209 |
dput(root); |
|---|
| 210 |
fsync_super(sb); |
|---|
| 211 |
lock_super(sb); |
|---|
| 212 |
lock_kernel(); |
|---|
| 213 |
sb->s_flags &= ~MS_ACTIVE; |
|---|
| 214 |
|
|---|
| 215 |
invalidate_inodes(sb); |
|---|
| 216 |
|
|---|
| 217 |
if (sop->write_super && sb->s_dirt) |
|---|
| 218 |
sop->write_super(sb); |
|---|
| 219 |
if (sop->put_super) |
|---|
| 220 |
sop->put_super(sb); |
|---|
| 221 |
|
|---|
| 222 |
|
|---|
| 223 |
if (invalidate_inodes(sb)) { |
|---|
| 224 |
printk("VFS: Busy inodes after unmount. " |
|---|
| 225 |
"Self-destruct in 5 seconds. Have a nice day...\n"); |
|---|
| 226 |
} |
|---|
| 227 |
|
|---|
| 228 |
unlock_kernel(); |
|---|
| 229 |
unlock_super(sb); |
|---|
| 230 |
} |
|---|
| 231 |
spin_lock(&sb_lock); |
|---|
| 232 |
list_del(&sb->s_list); |
|---|
| 233 |
list_del(&sb->s_instances); |
|---|
| 234 |
spin_unlock(&sb_lock); |
|---|
| 235 |
up_write(&sb->s_umount); |
|---|
| 236 |
} |
|---|
| 237 |
|
|---|
| 238 |
EXPORT_SYMBOL(generic_shutdown_super); |
|---|
| 239 |
|
|---|
| 240 |
|
|---|
| 241 |
|
|---|
| 242 |
|
|---|
| 243 |
|
|---|
| 244 |
|
|---|
| 245 |
|
|---|
| 246 |
|
|---|
| 247 |
struct super_block *sget(struct file_system_type *type, |
|---|
| 248 |
int (*test)(struct super_block *,void *), |
|---|
| 249 |
int (*set)(struct super_block *,void *), |
|---|
| 250 |
void *data) |
|---|
| 251 |
{ |
|---|
| 252 |
struct super_block *s = NULL; |
|---|
| 253 |
struct list_head *p; |
|---|
| 254 |
int err; |
|---|
| 255 |
|
|---|
| 256 |
retry: |
|---|
| 257 |
spin_lock(&sb_lock); |
|---|
| 258 |
if (test) list_for_each(p, &type->fs_supers) { |
|---|
| 259 |
struct super_block *old; |
|---|
| 260 |
old = list_entry(p, struct super_block, s_instances); |
|---|
| 261 |
if (!test(old, data)) |
|---|
| 262 |
continue; |
|---|
| 263 |
if (!grab_super(old)) |
|---|
| 264 |
goto retry; |
|---|
| 265 |
if (s) |
|---|
| 266 |
destroy_super(s); |
|---|
| 267 |
return old; |
|---|
| 268 |
} |
|---|
| 269 |
if (!s) { |
|---|
| 270 |
spin_unlock(&sb_lock); |
|---|
| 271 |
s = alloc_super(); |
|---|
| 272 |
if (!s) |
|---|
| 273 |
return ERR_PTR(-ENOMEM); |
|---|
| 274 |
goto retry; |
|---|
| 275 |
} |
|---|
| 276 |
|
|---|
| 277 |
err = set(s, data); |
|---|
| 278 |
if (err) { |
|---|
| 279 |
spin_unlock(&sb_lock); |
|---|
| 280 |
destroy_super(s); |
|---|
| 281 |
return ERR_PTR(err); |
|---|
| 282 |
} |
|---|
| 283 |
s->s_type = type; |
|---|
| 284 |
strlcpy(s->s_id, type->name, sizeof(s->s_id)); |
|---|
| 285 |
list_add(&s->s_list, super_blocks.prev); |
|---|
| 286 |
list_add(&s->s_instances, &type->fs_supers); |
|---|
| 287 |
spin_unlock(&sb_lock); |
|---|
| 288 |
get_filesystem(type); |
|---|
| 289 |
return s; |
|---|
| 290 |
} |
|---|
| 291 |
|
|---|
| 292 |
EXPORT_SYMBOL(sget); |
|---|
| 293 |
|
|---|
| 294 |
void drop_super(struct super_block *sb) |
|---|
| 295 |
{ |
|---|
| 296 |
up_read(&sb->s_umount); |
|---|
| 297 |
put_super(sb); |
|---|
| 298 |
} |
|---|
| 299 |
|
|---|
| 300 |
EXPORT_SYMBOL(drop_super); |
|---|
| 301 |
|
|---|
| 302 |
static inline void write_super(struct super_block *sb) |
|---|
| 303 |
{ |
|---|
| 304 |
lock_super(sb); |
|---|
| 305 |
if (sb->s_root && sb->s_dirt) |
|---|
| 306 |
if (sb->s_op->write_super) |
|---|
| 307 |
sb->s_op->write_super(sb); |
|---|
| 308 |
unlock_super(sb); |
|---|
| 309 |
} |
|---|
| 310 |
|
|---|
| 311 |
|
|---|
| 312 |
|
|---|
| 313 |
|
|---|
| 314 |
|
|---|
| 315 |
|
|---|
| 316 |
void sync_supers(void) |
|---|
| 317 |
{ |
|---|
| 318 |
struct super_block * sb; |
|---|
| 319 |
restart: |
|---|
| 320 |
spin_lock(&sb_lock); |
|---|
| 321 |
sb = sb_entry(super_blocks.next); |
|---|
| 322 |
while (sb != sb_entry(&super_blocks)) |
|---|
| 323 |
if (sb->s_dirt) { |
|---|
| 324 |
sb->s_count++; |
|---|
| 325 |
spin_unlock(&sb_lock); |
|---|
| 326 |
down_read(&sb->s_umount); |
|---|
| 327 |
write_super(sb); |
|---|
| 328 |
drop_super(sb); |
|---|
| 329 |
goto restart; |
|---|
| 330 |
} else |
|---|
| 331 |
sb = sb_entry(sb->s_list.next); |
|---|
| 332 |
spin_unlock(&sb_lock); |
|---|
| 333 |
} |
|---|
| 334 |
|
|---|
| 335 |
|
|---|
| 336 |
|
|---|
| 337 |
|
|---|
| 338 |
|
|---|
| 339 |
|
|---|
| 340 |
|
|---|
| 341 |
|
|---|
| 342 |
|
|---|
| 343 |
|
|---|
| 344 |
|
|---|
| 345 |
|
|---|
| 346 |
|
|---|
| 347 |
|
|---|
| 348 |
|
|---|
| 349 |
|
|---|
| 350 |
|
|---|
| 351 |
void sync_filesystems(int wait) |
|---|
| 352 |
{ |
|---|
| 353 |
struct super_block *sb; |
|---|
| 354 |
static DECLARE_MUTEX(mutex); |
|---|
| 355 |
|
|---|
| 356 |
down(&mutex); |
|---|
| 357 |
spin_lock(&sb_lock); |
|---|
| 358 |
for (sb = sb_entry(super_blocks.next); sb != sb_entry(&super_blocks); |
|---|
| 359 |
sb = sb_entry(sb->s_list.next)) { |
|---|
| 360 |
if (!sb->s_op->sync_fs) |
|---|
| 361 |
continue; |
|---|
| 362 |
if (sb->s_flags & MS_RDONLY) |
|---|
| 363 |
continue; |
|---|
| 364 |
sb->s_need_sync_fs = 1; |
|---|
| 365 |
} |
|---|
| 366 |
spin_unlock(&sb_lock); |
|---|
| 367 |
|
|---|
| 368 |
restart: |
|---|
| 369 |
spin_lock(&sb_lock); |
|---|
| 370 |
for (sb = sb_entry(super_blocks.next); sb != sb_entry(&super_blocks); |
|---|
| 371 |
sb = sb_entry(sb->s_list.next)) { |
|---|
| 372 |
if (!sb->s_need_sync_fs) |
|---|
| 373 |
continue; |
|---|
| 374 |
sb->s_need_sync_fs = 0; |
|---|
| 375 |
if (sb->s_flags & MS_RDONLY) |
|---|
| 376 |
continue; |
|---|
| 377 |
sb->s_count++; |
|---|
| 378 |
spin_unlock(&sb_lock); |
|---|
| 379 |
down_read(&sb->s_umount); |
|---|
| 380 |
if (sb->s_root && (wait || sb->s_dirt)) |
|---|
| 381 |
sb->s_op->sync_fs(sb, wait); |
|---|
| 382 |
drop_super(sb); |
|---|
| 383 |
goto restart; |
|---|
| 384 |
} |
|---|
| 385 |
spin_unlock(&sb_lock); |
|---|
| 386 |
up(&mutex); |
|---|
| 387 |
} |
|---|
| 388 |
|
|---|
| 389 |
|
|---|
| 390 |
|
|---|
| 391 |
|
|---|
| 392 |
|
|---|
| 393 |
|
|---|
| 394 |
|
|---|
| 395 |
|
|---|
| 396 |
|
|---|
| 397 |
struct super_block * get_super(struct block_device *bdev) |
|---|
| 398 |
{ |
|---|
| 399 |
struct list_head *p; |
|---|
| 400 |
if (!bdev) |
|---|
| 401 |
return NULL; |
|---|
| 402 |
rescan: |
|---|
| 403 |
spin_lock(&sb_lock); |
|---|
| 404 |
list_for_each(p, &super_blocks) { |
|---|
| 405 |
struct super_block *s = sb_entry(p); |
|---|
| 406 |
if (s->s_bdev == bdev) { |
|---|
| 407 |
s->s_count++; |
|---|
| 408 |
spin_unlock(&sb_lock); |
|---|
| 409 |
down_read(&s->s_umount); |
|---|
| 410 |
if (s->s_root) |
|---|
| 411 |
return s; |
|---|
| 412 |
drop_super(s); |
|---|
| 413 |
goto rescan; |
|---|
| 414 |
} |
|---|
| 415 |
} |
|---|
| 416 |
spin_unlock(&sb_lock); |
|---|
| 417 |
return NULL; |
|---|
| 418 |
} |
|---|
| 419 |
|
|---|
| 420 |
EXPORT_SYMBOL(get_super); |
|---|
| 421 |
|
|---|
| 422 |
struct super_block * user_get_super(dev_t dev) |
|---|
| 423 |
{ |
|---|
| 424 |
struct list_head *p; |
|---|
| 425 |
|
|---|
| 426 |
rescan: |
|---|
| 427 |
spin_lock(&sb_lock); |
|---|
| 428 |
list_for_each(p, &super_blocks) { |
|---|
| 429 |
struct super_block *s = sb_entry(p); |
|---|
| 430 |
if (s->s_dev == dev) { |
|---|
| 431 |
s->s_count++; |
|---|
| 432 |
spin_unlock(&sb_lock); |
|---|
| 433 |
down_read(&s->s_umount); |
|---|
| 434 |
if (s->s_root) |
|---|
| 435 |
return s; |
|---|
| 436 |
drop_super(s); |
|---|
| 437 |
goto rescan; |
|---|
| 438 |
} |
|---|
| 439 |
} |
|---|
| 440 |
spin_unlock(&sb_lock); |
|---|
| 441 |
return NULL; |
|---|
| 442 |
} |
|---|
| 443 |
|
|---|
| 444 |
EXPORT_SYMBOL(user_get_super); |
|---|
| 445 |
|
|---|
| 446 |
asmlinkage long sys_ustat(unsigned dev, struct ustat __user * ubuf) |
|---|
| 447 |
{ |
|---|
| 448 |
struct super_block *s; |
|---|
| 449 |
struct ustat tmp; |
|---|
| 450 |
struct kstatfs sbuf; |
|---|
| 451 |
int err = -EINVAL; |
|---|
| 452 |
|
|---|
| 453 |
s = user_get_super(new_decode_dev(dev)); |
|---|
| 454 |
if (s == NULL) |
|---|
| 455 |
goto out; |
|---|
| 456 |
err = vfs_statfs(s, &sbuf); |
|---|
| 457 |
drop_super(s); |
|---|
| 458 |
if (err) |
|---|
| 459 |
goto out; |
|---|
| 460 |
|
|---|
| 461 |
memset(&tmp,0,sizeof(struct ustat)); |
|---|
| 462 |
tmp.f_tfree = sbuf.f_bfree; |
|---|
| 463 |
tmp.f_tinode = sbuf.f_ffree; |
|---|
| 464 |
|
|---|
| 465 |
err = copy_to_user(ubuf,&tmp,sizeof(struct ustat)) ? -EFAULT : 0; |
|---|
| 466 |
out: |
|---|
| 467 |
return err; |
|---|
| 468 |
} |
|---|
| 469 |
|
|---|
| 470 |
|
|---|
| 471 |
|
|---|
| 472 |
|
|---|
| 473 |
|
|---|
| 474 |
|
|---|
| 475 |
|
|---|
| 476 |
|
|---|
| 477 |
|
|---|
| 478 |
static void mark_files_ro(struct super_block *sb) |
|---|
| 479 |
{ |
|---|
| 480 |
struct file *f; |
|---|
| 481 |
|
|---|
| 482 |
file_list_lock(); |
|---|
| 483 |
list_for_each_entry(f, &sb->s_files, f_list) { |
|---|
| 484 |
if (S_ISREG(f->f_dentry->d_inode->i_mode) && file_count(f)) |
|---|
| 485 |
f->f_mode &= ~FMODE_WRITE; |
|---|
| 486 |
} |
|---|
| 487 |
file_list_unlock(); |
|---|
| 488 |
} |
|---|
| 489 |
|
|---|
| 490 |
|
|---|
| 491 |
|
|---|
| 492 |
|
|---|
| 493 |
|
|---|
| 494 |
|
|---|
| 495 |
|
|---|
| 496 |
|
|---|
| 497 |
|
|---|
| 498 |
|
|---|
| 499 |
int do_remount_sb(struct super_block *sb, int flags, void *data, int force) |
|---|
| 500 |
{ |
|---|
| 501 |
int retval; |
|---|
| 502 |
|
|---|
| 503 |
if (!(flags & MS_RDONLY) && bdev_read_only(sb->s_bdev)) |
|---|
| 504 |
return -EACCES; |
|---|
| 505 |
if (flags & MS_RDONLY) |
|---|
| 506 |
acct_auto_close(sb); |
|---|
| 507 |
shrink_dcache_sb(sb); |
|---|
| 508 |
fsync_super(sb); |
|---|
| 509 |
|
|---|
| 510 |
|
|---|
| 511 |
|
|---|
| 512 |
if ((flags & MS_RDONLY) && !(sb->s_flags & MS_RDONLY)) { |
|---|
| 513 |
if (force) |
|---|
| 514 |
mark_files_ro(sb); |
|---|
| 515 |
else if (!fs_may_remount_ro(sb)) |
|---|
| 516 |
return -EBUSY; |
|---|
| 517 |
} |
|---|
| 518 |
|
|---|
| 519 |
if (sb->s_op->remount_fs) { |
|---|
| 520 |
lock_super(sb); |
|---|
| 521 |
retval = sb->s_op->remount_fs(sb, &flags, data); |
|---|
| 522 |
unlock_super(sb); |
|---|
| 523 |
if (retval) |
|---|
| 524 |
return retval; |
|---|
| 525 |
} |
|---|
| 526 |
sb->s_flags = (sb->s_flags & ~MS_RMT_MASK) | (flags & MS_RMT_MASK); |
|---|
| 527 |
return 0; |
|---|
| 528 |
} |
|---|
| 529 |
|
|---|
| 530 |
static void do_emergency_remount(unsigned long foo) |
|---|
| 531 |
{ |
|---|
| 532 |
struct super_block *sb; |
|---|
| 533 |
|
|---|
| 534 |
spin_lock(&sb_lock); |
|---|
| 535 |
list_for_each_entry(sb, &super_blocks, s_list) { |
|---|
| 536 |
sb->s_count++; |
|---|
| 537 |
spin_unlock(&sb_lock); |
|---|
| 538 |
down_read(&sb->s_umount); |
|---|
| 539 |
if (sb->s_root && sb->s_bdev && !(sb->s_flags & MS_RDONLY)) { |
|---|
| 540 |
|
|---|
| 541 |
|
|---|
| 542 |
|
|---|
| 543 |
|
|---|
| 544 |
|
|---|
| 545 |
lock_kernel(); |
|---|
| 546 |
do_remount_sb(sb, MS_RDONLY, NULL, 1); |
|---|
| 547 |
unlock_kernel(); |
|---|
| 548 |
} |
|---|
| 549 |
drop_super(sb); |
|---|
| 550 |
spin_lock(&sb_lock); |
|---|
| 551 |
} |
|---|
| 552 |
spin_unlock(&sb_lock); |
|---|
| 553 |
printk("Emergency Remount complete\n"); |
|---|
| 554 |
} |
|---|
| 555 |
|
|---|
| 556 |
void emergency_remount(void) |
|---|
| 557 |
{ |
|---|
| 558 |
pdflush_operation(do_emergency_remount, 0); |
|---|
| 559 |
} |
|---|
| 560 |
|
|---|
| 561 |
|
|---|
| 562 |
|
|---|
| 563 |
|
|---|
| 564 |
|
|---|
| 565 |
|
|---|
| 566 |
static struct idr unnamed_dev_idr; |
|---|
| 567 |
static spinlock_t unnamed_dev_lock = SPIN_LOCK_UNLOCKED; |
|---|
| 568 |
|
|---|
| 569 |
int set_anon_super(struct super_block *s, void *data) |
|---|
| 570 |
{ |
|---|
| 571 |
int dev; |
|---|
| 572 |
|
|---|
| 573 |
spin_lock(&unnamed_dev_lock); |
|---|
| 574 |
if (idr_pre_get(&unnamed_dev_idr, GFP_ATOMIC) == 0) { |
|---|
| 575 |
spin_unlock(&unnamed_dev_lock); |
|---|
| 576 |
return -ENOMEM; |
|---|
| 577 |
} |
|---|
| 578 |
dev = idr_get_new(&unnamed_dev_idr, NULL); |
|---|
| 579 |
spin_unlock(&unnamed_dev_lock); |
|---|
| 580 |
|
|---|
| 581 |
if ((dev & MAX_ID_MASK) == (1 << MINORBITS)) { |
|---|
| 582 |
spin_lock(&unnamed_dev_lock); |
|---|
| 583 |
idr_remove(&unnamed_dev_idr, dev); |
|---|
| 584 |
spin_unlock(&unnamed_dev_lock); |
|---|
| 585 |
return -EMFILE; |
|---|
| 586 |
} |
|---|
| 587 |
s->s_dev = MKDEV(0, dev & MINORMASK); |
|---|
| 588 |
return 0; |
|---|
| 589 |
} |
|---|
| 590 |
|
|---|
| 591 |
EXPORT_SYMBOL(set_anon_super); |
|---|
| 592 |
|
|---|
| 593 |
void kill_anon_super(struct super_block *sb) |
|---|
| 594 |
{ |
|---|
| 595 |
int slot = MINOR(sb->s_dev); |
|---|
| 596 |
|
|---|
| 597 |
generic_shutdown_super(sb); |
|---|
| 598 |
spin_lock(&unnamed_dev_lock); |
|---|
| 599 |
idr_remove(&unnamed_dev_idr, slot); |
|---|
| 600 |
spin_unlock(&unnamed_dev_lock); |
|---|
| 601 |
} |
|---|
| 602 |
|
|---|
| 603 |
EXPORT_SYMBOL(kill_anon_super); |
|---|
| 604 |
|
|---|
| 605 |
void __init unnamed_dev_init(void) |
|---|
| 606 |
{ |
|---|
| 607 |
idr_init(&unnamed_dev_idr); |
|---|
| 608 |
} |
|---|
| 609 |
|
|---|
| 610 |
void kill_litter_super(struct super_block *sb) |
|---|
| 611 |
{ |
|---|
| 612 |
if (sb->s_root) |
|---|
| 613 |
d_genocide(sb->s_root); |
|---|
| 614 |
kill_anon_super(sb); |
|---|
| 615 |
} |
|---|
| 616 |
|
|---|
| 617 |
EXPORT_SYMBOL(kill_litter_super); |
|---|
| 618 |
|
|---|
| 619 |
static int set_bdev_super(struct super_block *s, void *data) |
|---|
| 620 |
{ |
|---|
| 621 |
s->s_bdev = data; |
|---|
| 622 |
s->s_dev = s->s_bdev->bd_dev; |
|---|
| 623 |
return 0; |
|---|
| 624 |
} |
|---|
| 625 |
|
|---|
| 626 |
static int test_bdev_super(struct super_block *s, void *data) |
|---|
| 627 |
{ |
|---|
| 628 |
return (void *)s->s_bdev == data; |
|---|
| 629 |
} |
|---|
| 630 |
|
|---|
| 631 |
struct super_block *get_sb_bdev(struct file_system_type *fs_type, |
|---|
| 632 |
int flags, const char *dev_name, void *data, |
|---|
| 633 |
int (*fill_super)(struct super_block *, void *, int)) |
|---|
| 634 |
{ |
|---|
| 635 |
struct block_device *bdev; |
|---|
| 636 |
struct super_block *s; |
|---|
| 637 |
int error = 0; |
|---|
| 638 |
|
|---|
| 639 |
bdev = open_bdev_excl(dev_name, flags, fs_type); |
|---|
| 640 |
if (IS_ERR(bdev)) |
|---|
| 641 |
return (struct super_block *)bdev; |
|---|
| 642 |
|
|---|
| 643 |
|
|---|
| 644 |
|
|---|
| 645 |
|
|---|
| 646 |
|
|---|
| 647 |
|
|---|
| 648 |
down(&bdev->bd_mount_sem); |
|---|
| 649 |
s = sget(fs_type, test_bdev_super, set_bdev_super, bdev); |
|---|
| 650 |
up(&bdev->bd_mount_sem); |
|---|
| 651 |
if (IS_ERR(s)) |
|---|
| 652 |
goto out; |
|---|
| 653 |
|
|---|
| 654 |
if (s->s_root) { |
|---|
| 655 |
if ((flags ^ s->s_flags) & MS_RDONLY) { |
|---|
| 656 |
up_write(&s->s_umount); |
|---|
| 657 |
deactivate_super(s); |
|---|
| 658 |
s = ERR_PTR(-EBUSY); |
|---|
| 659 |
} |
|---|
| 660 |
goto out; |
|---|
| 661 |
} else { |
|---|
| 662 |
char b[BDEVNAME_SIZE]; |
|---|
| 663 |
|
|---|
| 664 |
s->s_flags = flags; |
|---|
| 665 |
strlcpy(s->s_id, bdevname(bdev, b), sizeof(s->s_id)); |
|---|
| 666 |
s->s_old_blocksize = block_size(bdev); |
|---|
| 667 |
sb_set_blocksize(s, s->s_old_blocksize); |
|---|
| 668 |
error = fill_super(s, data, flags & MS_VERBOSE ? 1 : 0); |
|---|
| 669 |
if (error) { |
|---|
| 670 |
up_write(&s->s_umount); |
|---|
| 671 |
deactivate_super(s); |
|---|
| 672 |
s = ERR_PTR(error); |
|---|
| 673 |
} else |
|---|
| 674 |
s->s_flags |= MS_ACTIVE; |
|---|
| 675 |
} |
|---|
| 676 |
|
|---|
| 677 |
return s; |
|---|
| 678 |
|
|---|
| 679 |
out: |
|---|
| 680 |
close_bdev_excl(bdev); |
|---|
| 681 |
return s; |
|---|
| 682 |
} |
|---|
| 683 |
|
|---|
| 684 |
EXPORT_SYMBOL(get_sb_bdev); |
|---|
| 685 |
|
|---|
| 686 |
void kill_block_super(struct super_block *sb) |
|---|
| 687 |
{ |
|---|
| 688 |
struct block_device *bdev = sb->s_bdev; |
|---|
| 689 |
generic_shutdown_super(sb); |
|---|
| 690 |
set_blocksize(bdev, sb->s_old_blocksize); |
|---|
| 691 |
close_bdev_excl(bdev); |
|---|
| 692 |
} |
|---|
| 693 |
|
|---|
| 694 |
EXPORT_SYMBOL(kill_block_super); |
|---|
| 695 |
|
|---|
| 696 |
struct super_block *get_sb_nodev(struct file_system_type *fs_type, |
|---|
| 697 |
int flags, void *data, |
|---|
| 698 |
int (*fill_super)(struct super_block *, void *, int)) |
|---|
| 699 |
{ |
|---|
| 700 |
int error; |
|---|
| 701 |
struct super_block *s = sget(fs_type, NULL, set_anon_super, NULL); |
|---|
| 702 |
|
|---|
| 703 |
if (IS_ERR(s)) |
|---|
| 704 |
return s; |
|---|
| 705 |
|
|---|
| 706 |
s->s_flags = flags; |
|---|
| 707 |
|
|---|
| 708 |
error = fill_super(s, data, flags & MS_VERBOSE ? 1 : 0); |
|---|
| 709 |
if (error) { |
|---|
| 710 |
up_write(&s->s_umount); |
|---|
| 711 |
deactivate_super(s); |
|---|
| 712 |
return ERR_PTR(error); |
|---|
| 713 |
} |
|---|
| 714 |
s->s_flags |= MS_ACTIVE; |
|---|
| 715 |
return s; |
|---|
| 716 |
} |
|---|
| 717 |
|
|---|
| 718 |
EXPORT_SYMBOL(get_sb_nodev); |
|---|
| 719 |
|
|---|
| 720 |
static int compare_single(struct super_block *s, void *p) |
|---|
| 721 |
{ |
|---|
| 722 |
return 1; |
|---|
| 723 |
} |
|---|
| 724 |
|
|---|
| 725 |
struct super_block *get_sb_single(struct file_system_type *fs_type, |
|---|
| 726 |
int flags, void *data, |
|---|
| 727 |
int (*fill_super)(struct super_block *, void *, int)) |
|---|
| 728 |
{ |
|---|
| 729 |
struct super_block *s; |
|---|
| 730 |
int error; |
|---|
| 731 |
|
|---|
| 732 |
s = sget(fs_type, compare_single, set_anon_super, NULL); |
|---|
| 733 |
if (IS_ERR(s)) |
|---|
| 734 |
return s; |
|---|
| 735 |
if (!s->s_root) { |
|---|
| 736 |
s->s_flags = flags; |
|---|
| 737 |
error = fill_super(s, data, flags & MS_VERBOSE ? 1 : 0); |
|---|
| 738 |
if (error) { |
|---|
| 739 |
up_write(&s->s_umount); |
|---|
| 740 |
deactivate_super(s); |
|---|
| 741 |
return ERR_PTR(error); |
|---|
| 742 |
} |
|---|
| 743 |
s->s_flags |= MS_ACTIVE; |
|---|
| 744 |
} |
|---|
| 745 |
do_remount_sb(s, flags, data, 0); |
|---|
| 746 |
return s; |
|---|
| 747 |
} |
|---|
| 748 |
|
|---|
| 749 |
EXPORT_SYMBOL(get_sb_single); |
|---|
| 750 |
|
|---|
| 751 |
struct vfsmount * |
|---|
| 752 |
do_kern_mount(const char *fstype, int flags, const char *name, void *data) |
|---|
| 753 |
{ |
|---|
| 754 |
struct file_system_type *type = get_fs_type(fstype); |
|---|
| 755 |
struct super_block *sb = ERR_PTR(-ENOMEM); |
|---|
| 756 |
struct vfsmount *mnt; |
|---|
| 757 |
int error; |
|---|
| 758 |
char *secdata = NULL; |
|---|
| 759 |
|
|---|
| 760 |
if (!type) |
|---|
| 761 |
return ERR_PTR(-ENODEV); |
|---|
| 762 |
|
|---|
| 763 |
mnt = alloc_vfsmnt(name); |
|---|
| 764 |
if (!mnt) |
|---|
| 765 |
goto out; |
|---|
| 766 |
|
|---|
| 767 |
if (data) { |
|---|
| 768 |
secdata = alloc_secdata(); |
|---|
| 769 |
if (!secdata) { |
|---|
| 770 |
sb = ERR_PTR(-ENOMEM); |
|---|
| 771 |
goto out_mnt; |
|---|
| 772 |
} |
|---|
| 773 |
|
|---|
| 774 |
error = security_sb_copy_data(type, data, secdata); |
|---|
| 775 |
if (error) { |
|---|
| 776 |
sb = ERR_PTR(error); |
|---|
| 777 |
goto out_free_secdata; |
|---|
| 778 |
} |
|---|
| 779 |
} |
|---|
| 780 |
|
|---|
| 781 |
sb = type->get_sb(type, flags, name, data); |
|---|
| 782 |
if (IS_ERR(sb)) |
|---|
| 783 |
goto out_free_secdata; |
|---|
| 784 |
error = security_sb_kern_mount(sb, secdata); |
|---|
| 785 |
if (error) |
|---|
| 786 |
goto out_sb; |
|---|
| 787 |
mnt->mnt_sb = sb; |
|---|
| 788 |
mnt->mnt_root = dget(sb->s_root); |
|---|
| 789 |
mnt->mnt_mountpoint = sb->s_root; |
|---|
| 790 |
mnt->mnt_parent = mnt; |
|---|
| 791 |
up_write(&sb->s_umount); |
|---|
| 792 |
put_filesystem(type); |
|---|
| 793 |
return mnt; |
|---|
| 794 |
out_sb: |
|---|
| 795 |
up_write(&sb->s_umount); |
|---|
| 796 |
deactivate_super(sb); |
|---|
| 797 |
sb = ERR_PTR(error); |
|---|
| 798 |
out_free_secdata: |
|---|
| 799 |
free_secdata(secdata); |
|---|
| 800 |
out_mnt: |
|---|
| 801 |
free_vfsmnt(mnt); |
|---|
| 802 |
out: |
|---|
| 803 |
put_filesystem(type); |
|---|
| 804 |
return (struct vfsmount *)sb; |
|---|
| 805 |
} |
|---|
| 806 |
|
|---|
| 807 |
struct vfsmount *kern_mount(struct file_system_type *type) |
|---|
| 808 |
{ |
|---|
| 809 |
return do_kern_mount(type->name, 0, type->name, NULL); |
|---|
| 810 |
} |
|---|
| 811 |
|
|---|
| 812 |
EXPORT_SYMBOL(kern_mount); |
|---|