1 /* 2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. 3 * Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved. 4 * 5 * This copyrighted material is made available to anyone wishing to use, 6 * modify, copy, or redistribute it subject to the terms and conditions 7 * of the GNU General Public License version 2. 8 */ 9 10 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 11 12 #include <linux/bio.h> 13 #include <linux/sched/signal.h> 14 #include <linux/slab.h> 15 #include <linux/spinlock.h> 16 #include <linux/completion.h> 17 #include <linux/buffer_head.h> 18 #include <linux/statfs.h> 19 #include <linux/seq_file.h> 20 #include <linux/mount.h> 21 #include <linux/kthread.h> 22 #include <linux/delay.h> 23 #include <linux/gfs2_ondisk.h> 24 #include <linux/crc32.h> 25 #include <linux/time.h> 26 #include <linux/wait.h> 27 #include <linux/writeback.h> 28 #include <linux/backing-dev.h> 29 #include <linux/kernel.h> 30 31 #include "gfs2.h" 32 #include "incore.h" 33 #include "bmap.h" 34 #include "dir.h" 35 #include "glock.h" 36 #include "glops.h" 37 #include "inode.h" 38 #include "log.h" 39 #include "meta_io.h" 40 #include "quota.h" 41 #include "recovery.h" 42 #include "rgrp.h" 43 #include "super.h" 44 #include "trans.h" 45 #include "util.h" 46 #include "sys.h" 47 #include "xattr.h" 48 #include "lops.h" 49 50 #define args_neq(a1, a2, x) ((a1)->ar_##x != (a2)->ar_##x) 51 52 enum { 53 Opt_lockproto, 54 Opt_locktable, 55 Opt_hostdata, 56 Opt_spectator, 57 Opt_ignore_local_fs, 58 Opt_localflocks, 59 Opt_localcaching, 60 Opt_debug, 61 Opt_nodebug, 62 Opt_upgrade, 63 Opt_acl, 64 Opt_noacl, 65 Opt_quota_off, 66 Opt_quota_account, 67 Opt_quota_on, 68 Opt_quota, 69 Opt_noquota, 70 Opt_suiddir, 71 Opt_nosuiddir, 72 Opt_data_writeback, 73 Opt_data_ordered, 74 Opt_meta, 75 Opt_discard, 76 Opt_nodiscard, 77 Opt_commit, 78 Opt_err_withdraw, 79 Opt_err_panic, 80 Opt_statfs_quantum, 81 Opt_statfs_percent, 82 Opt_quota_quantum, 83 Opt_barrier, 84 Opt_nobarrier, 85 Opt_rgrplvb, 86 Opt_norgrplvb, 87 Opt_loccookie, 88 Opt_noloccookie, 89 Opt_error, 90 }; 91 92 static const match_table_t tokens = { 93 {Opt_lockproto, "lockproto=%s"}, 94 {Opt_locktable, "locktable=%s"}, 95 {Opt_hostdata, "hostdata=%s"}, 96 {Opt_spectator, "spectator"}, 97 {Opt_spectator, "norecovery"}, 98 {Opt_ignore_local_fs, "ignore_local_fs"}, 99 {Opt_localflocks, "localflocks"}, 100 {Opt_localcaching, "localcaching"}, 101 {Opt_debug, "debug"}, 102 {Opt_nodebug, "nodebug"}, 103 {Opt_upgrade, "upgrade"}, 104 {Opt_acl, "acl"}, 105 {Opt_noacl, "noacl"}, 106 {Opt_quota_off, "quota=off"}, 107 {Opt_quota_account, "quota=account"}, 108 {Opt_quota_on, "quota=on"}, 109 {Opt_quota, "quota"}, 110 {Opt_noquota, "noquota"}, 111 {Opt_suiddir, "suiddir"}, 112 {Opt_nosuiddir, "nosuiddir"}, 113 {Opt_data_writeback, "data=writeback"}, 114 {Opt_data_ordered, "data=ordered"}, 115 {Opt_meta, "meta"}, 116 {Opt_discard, "discard"}, 117 {Opt_nodiscard, "nodiscard"}, 118 {Opt_commit, "commit=%d"}, 119 {Opt_err_withdraw, "errors=withdraw"}, 120 {Opt_err_panic, "errors=panic"}, 121 {Opt_statfs_quantum, "statfs_quantum=%d"}, 122 {Opt_statfs_percent, "statfs_percent=%d"}, 123 {Opt_quota_quantum, "quota_quantum=%d"}, 124 {Opt_barrier, "barrier"}, 125 {Opt_nobarrier, "nobarrier"}, 126 {Opt_rgrplvb, "rgrplvb"}, 127 {Opt_norgrplvb, "norgrplvb"}, 128 {Opt_loccookie, "loccookie"}, 129 {Opt_noloccookie, "noloccookie"}, 130 {Opt_error, NULL} 131 }; 132 133 /** 134 * gfs2_mount_args - Parse mount options 135 * @args: The structure into which the parsed options will be written 136 * @options: The options to parse 137 * 138 * Return: errno 139 */ 140 141 int gfs2_mount_args(struct gfs2_args *args, char *options) 142 { 143 char *o; 144 int token; 145 substring_t tmp[MAX_OPT_ARGS]; 146 int rv; 147 148 /* Split the options into tokens with the "," character and 149 process them */ 150 151 while (1) { 152 o = strsep(&options, ","); 153 if (o == NULL) 154 break; 155 if (*o == '\0') 156 continue; 157 158 token = match_token(o, tokens, tmp); 159 switch (token) { 160 case Opt_lockproto: 161 match_strlcpy(args->ar_lockproto, &tmp[0], 162 GFS2_LOCKNAME_LEN); 163 break; 164 case Opt_locktable: 165 match_strlcpy(args->ar_locktable, &tmp[0], 166 GFS2_LOCKNAME_LEN); 167 break; 168 case Opt_hostdata: 169 match_strlcpy(args->ar_hostdata, &tmp[0], 170 GFS2_LOCKNAME_LEN); 171 break; 172 case Opt_spectator: 173 args->ar_spectator = 1; 174 break; 175 case Opt_ignore_local_fs: 176 /* Retained for backwards compat only */ 177 break; 178 case Opt_localflocks: 179 args->ar_localflocks = 1; 180 break; 181 case Opt_localcaching: 182 /* Retained for backwards compat only */ 183 break; 184 case Opt_debug: 185 if (args->ar_errors == GFS2_ERRORS_PANIC) { 186 pr_warn("-o debug and -o errors=panic are mutually exclusive\n"); 187 return -EINVAL; 188 } 189 args->ar_debug = 1; 190 break; 191 case Opt_nodebug: 192 args->ar_debug = 0; 193 break; 194 case Opt_upgrade: 195 /* Retained for backwards compat only */ 196 break; 197 case Opt_acl: 198 args->ar_posix_acl = 1; 199 break; 200 case Opt_noacl: 201 args->ar_posix_acl = 0; 202 break; 203 case Opt_quota_off: 204 case Opt_noquota: 205 args->ar_quota = GFS2_QUOTA_OFF; 206 break; 207 case Opt_quota_account: 208 args->ar_quota = GFS2_QUOTA_ACCOUNT; 209 break; 210 case Opt_quota_on: 211 case Opt_quota: 212 args->ar_quota = GFS2_QUOTA_ON; 213 break; 214 case Opt_suiddir: 215 args->ar_suiddir = 1; 216 break; 217 case Opt_nosuiddir: 218 args->ar_suiddir = 0; 219 break; 220 case Opt_data_writeback: 221 args->ar_data = GFS2_DATA_WRITEBACK; 222 break; 223 case Opt_data_ordered: 224 args->ar_data = GFS2_DATA_ORDERED; 225 break; 226 case Opt_meta: 227 args->ar_meta = 1; 228 break; 229 case Opt_discard: 230 args->ar_discard = 1; 231 break; 232 case Opt_nodiscard: 233 args->ar_discard = 0; 234 break; 235 case Opt_commit: 236 rv = match_int(&tmp[0], &args->ar_commit); 237 if (rv || args->ar_commit <= 0) { 238 pr_warn("commit mount option requires a positive numeric argument\n"); 239 return rv ? rv : -EINVAL; 240 } 241 break; 242 case Opt_statfs_quantum: 243 rv = match_int(&tmp[0], &args->ar_statfs_quantum); 244 if (rv || args->ar_statfs_quantum < 0) { 245 pr_warn("statfs_quantum mount option requires a non-negative numeric argument\n"); 246 return rv ? rv : -EINVAL; 247 } 248 break; 249 case Opt_quota_quantum: 250 rv = match_int(&tmp[0], &args->ar_quota_quantum); 251 if (rv || args->ar_quota_quantum <= 0) { 252 pr_warn("quota_quantum mount option requires a positive numeric argument\n"); 253 return rv ? rv : -EINVAL; 254 } 255 break; 256 case Opt_statfs_percent: 257 rv = match_int(&tmp[0], &args->ar_statfs_percent); 258 if (rv || args->ar_statfs_percent < 0 || 259 args->ar_statfs_percent > 100) { 260 pr_warn("statfs_percent mount option requires a numeric argument between 0 and 100\n"); 261 return rv ? rv : -EINVAL; 262 } 263 break; 264 case Opt_err_withdraw: 265 args->ar_errors = GFS2_ERRORS_WITHDRAW; 266 break; 267 case Opt_err_panic: 268 if (args->ar_debug) { 269 pr_warn("-o debug and -o errors=panic are mutually exclusive\n"); 270 return -EINVAL; 271 } 272 args->ar_errors = GFS2_ERRORS_PANIC; 273 break; 274 case Opt_barrier: 275 args->ar_nobarrier = 0; 276 break; 277 case Opt_nobarrier: 278 args->ar_nobarrier = 1; 279 break; 280 case Opt_rgrplvb: 281 args->ar_rgrplvb = 1; 282 break; 283 case Opt_norgrplvb: 284 args->ar_rgrplvb = 0; 285 break; 286 case Opt_loccookie: 287 args->ar_loccookie = 1; 288 break; 289 case Opt_noloccookie: 290 args->ar_loccookie = 0; 291 break; 292 case Opt_error: 293 default: 294 pr_warn("invalid mount option: %s\n", o); 295 return -EINVAL; 296 } 297 } 298 299 return 0; 300 } 301 302 /** 303 * gfs2_jindex_free - Clear all the journal index information 304 * @sdp: The GFS2 superblock 305 * 306 */ 307 308 void gfs2_jindex_free(struct gfs2_sbd *sdp) 309 { 310 struct list_head list; 311 struct gfs2_jdesc *jd; 312 313 spin_lock(&sdp->sd_jindex_spin); 314 list_add(&list, &sdp->sd_jindex_list); 315 list_del_init(&sdp->sd_jindex_list); 316 sdp->sd_journals = 0; 317 spin_unlock(&sdp->sd_jindex_spin); 318 319 while (!list_empty(&list)) { 320 jd = list_entry(list.next, struct gfs2_jdesc, jd_list); 321 gfs2_free_journal_extents(jd); 322 list_del(&jd->jd_list); 323 iput(jd->jd_inode); 324 kfree(jd); 325 } 326 } 327 328 static struct gfs2_jdesc *jdesc_find_i(struct list_head *head, unsigned int jid) 329 { 330 struct gfs2_jdesc *jd; 331 int found = 0; 332 333 list_for_each_entry(jd, head, jd_list) { 334 if (jd->jd_jid == jid) { 335 found = 1; 336 break; 337 } 338 } 339 340 if (!found) 341 jd = NULL; 342 343 return jd; 344 } 345 346 struct gfs2_jdesc *gfs2_jdesc_find(struct gfs2_sbd *sdp, unsigned int jid) 347 { 348 struct gfs2_jdesc *jd; 349 350 spin_lock(&sdp->sd_jindex_spin); 351 jd = jdesc_find_i(&sdp->sd_jindex_list, jid); 352 spin_unlock(&sdp->sd_jindex_spin); 353 354 return jd; 355 } 356 357 int gfs2_jdesc_check(struct gfs2_jdesc *jd) 358 { 359 struct gfs2_inode *ip = GFS2_I(jd->jd_inode); 360 struct gfs2_sbd *sdp = GFS2_SB(jd->jd_inode); 361 u64 size = i_size_read(jd->jd_inode); 362 363 if (gfs2_check_internal_file_size(jd->jd_inode, 8 << 20, BIT(30))) 364 return -EIO; 365 366 jd->jd_blocks = size >> sdp->sd_sb.sb_bsize_shift; 367 368 if (gfs2_write_alloc_required(ip, 0, size)) { 369 gfs2_consist_inode(ip); 370 return -EIO; 371 } 372 373 return 0; 374 } 375 376 static int init_threads(struct gfs2_sbd *sdp) 377 { 378 struct task_struct *p; 379 int error = 0; 380 381 p = kthread_run(gfs2_logd, sdp, "gfs2_logd"); 382 if (IS_ERR(p)) { 383 error = PTR_ERR(p); 384 fs_err(sdp, "can't start logd thread: %d\n", error); 385 return error; 386 } 387 sdp->sd_logd_process = p; 388 389 p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad"); 390 if (IS_ERR(p)) { 391 error = PTR_ERR(p); 392 fs_err(sdp, "can't start quotad thread: %d\n", error); 393 goto fail; 394 } 395 sdp->sd_quotad_process = p; 396 return 0; 397 398 fail: 399 kthread_stop(sdp->sd_logd_process); 400 return error; 401 } 402 403 /** 404 * gfs2_make_fs_rw - Turn a Read-Only FS into a Read-Write one 405 * @sdp: the filesystem 406 * 407 * Returns: errno 408 */ 409 410 int gfs2_make_fs_rw(struct gfs2_sbd *sdp) 411 { 412 struct gfs2_inode *ip = GFS2_I(sdp->sd_jdesc->jd_inode); 413 struct gfs2_glock *j_gl = ip->i_gl; 414 struct gfs2_holder freeze_gh; 415 struct gfs2_log_header_host head; 416 int error; 417 418 error = init_threads(sdp); 419 if (error) 420 return error; 421 422 error = gfs2_glock_nq_init(sdp->sd_freeze_gl, LM_ST_SHARED, 0, 423 &freeze_gh); 424 if (error) 425 goto fail_threads; 426 427 j_gl->gl_ops->go_inval(j_gl, DIO_METADATA); 428 429 error = gfs2_find_jhead(sdp->sd_jdesc, &head, false); 430 if (error) 431 goto fail; 432 433 if (!(head.lh_flags & GFS2_LOG_HEAD_UNMOUNT)) { 434 gfs2_consist(sdp); 435 error = -EIO; 436 goto fail; 437 } 438 439 /* Initialize some head of the log stuff */ 440 sdp->sd_log_sequence = head.lh_sequence + 1; 441 gfs2_log_pointers_init(sdp, head.lh_blkno); 442 443 error = gfs2_quota_init(sdp); 444 if (error) 445 goto fail; 446 447 set_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags); 448 449 gfs2_glock_dq_uninit(&freeze_gh); 450 451 return 0; 452 453 fail: 454 freeze_gh.gh_flags |= GL_NOCACHE; 455 gfs2_glock_dq_uninit(&freeze_gh); 456 fail_threads: 457 kthread_stop(sdp->sd_quotad_process); 458 kthread_stop(sdp->sd_logd_process); 459 return error; 460 } 461 462 void gfs2_statfs_change_in(struct gfs2_statfs_change_host *sc, const void *buf) 463 { 464 const struct gfs2_statfs_change *str = buf; 465 466 sc->sc_total = be64_to_cpu(str->sc_total); 467 sc->sc_free = be64_to_cpu(str->sc_free); 468 sc->sc_dinodes = be64_to_cpu(str->sc_dinodes); 469 } 470 471 static void gfs2_statfs_change_out(const struct gfs2_statfs_change_host *sc, void *buf) 472 { 473 struct gfs2_statfs_change *str = buf; 474 475 str->sc_total = cpu_to_be64(sc->sc_total); 476 str->sc_free = cpu_to_be64(sc->sc_free); 477 str->sc_dinodes = cpu_to_be64(sc->sc_dinodes); 478 } 479 480 int gfs2_statfs_init(struct gfs2_sbd *sdp) 481 { 482 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode); 483 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master; 484 struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode); 485 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local; 486 struct buffer_head *m_bh, *l_bh; 487 struct gfs2_holder gh; 488 int error; 489 490 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, GL_NOCACHE, 491 &gh); 492 if (error) 493 return error; 494 495 error = gfs2_meta_inode_buffer(m_ip, &m_bh); 496 if (error) 497 goto out; 498 499 if (sdp->sd_args.ar_spectator) { 500 spin_lock(&sdp->sd_statfs_spin); 501 gfs2_statfs_change_in(m_sc, m_bh->b_data + 502 sizeof(struct gfs2_dinode)); 503 spin_unlock(&sdp->sd_statfs_spin); 504 } else { 505 error = gfs2_meta_inode_buffer(l_ip, &l_bh); 506 if (error) 507 goto out_m_bh; 508 509 spin_lock(&sdp->sd_statfs_spin); 510 gfs2_statfs_change_in(m_sc, m_bh->b_data + 511 sizeof(struct gfs2_dinode)); 512 gfs2_statfs_change_in(l_sc, l_bh->b_data + 513 sizeof(struct gfs2_dinode)); 514 spin_unlock(&sdp->sd_statfs_spin); 515 516 brelse(l_bh); 517 } 518 519 out_m_bh: 520 brelse(m_bh); 521 out: 522 gfs2_glock_dq_uninit(&gh); 523 return 0; 524 } 525 526 void gfs2_statfs_change(struct gfs2_sbd *sdp, s64 total, s64 free, 527 s64 dinodes) 528 { 529 struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode); 530 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local; 531 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master; 532 struct buffer_head *l_bh; 533 s64 x, y; 534 int need_sync = 0; 535 int error; 536 537 error = gfs2_meta_inode_buffer(l_ip, &l_bh); 538 if (error) 539 return; 540 541 gfs2_trans_add_meta(l_ip->i_gl, l_bh); 542 543 spin_lock(&sdp->sd_statfs_spin); 544 l_sc->sc_total += total; 545 l_sc->sc_free += free; 546 l_sc->sc_dinodes += dinodes; 547 gfs2_statfs_change_out(l_sc, l_bh->b_data + sizeof(struct gfs2_dinode)); 548 if (sdp->sd_args.ar_statfs_percent) { 549 x = 100 * l_sc->sc_free; 550 y = m_sc->sc_free * sdp->sd_args.ar_statfs_percent; 551 if (x >= y || x <= -y) 552 need_sync = 1; 553 } 554 spin_unlock(&sdp->sd_statfs_spin); 555 556 brelse(l_bh); 557 if (need_sync) 558 gfs2_wake_up_statfs(sdp); 559 } 560 561 void update_statfs(struct gfs2_sbd *sdp, struct buffer_head *m_bh, 562 struct buffer_head *l_bh) 563 { 564 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode); 565 struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode); 566 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master; 567 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local; 568 569 gfs2_trans_add_meta(l_ip->i_gl, l_bh); 570 gfs2_trans_add_meta(m_ip->i_gl, m_bh); 571 572 spin_lock(&sdp->sd_statfs_spin); 573 m_sc->sc_total += l_sc->sc_total; 574 m_sc->sc_free += l_sc->sc_free; 575 m_sc->sc_dinodes += l_sc->sc_dinodes; 576 memset(l_sc, 0, sizeof(struct gfs2_statfs_change)); 577 memset(l_bh->b_data + sizeof(struct gfs2_dinode), 578 0, sizeof(struct gfs2_statfs_change)); 579 gfs2_statfs_change_out(m_sc, m_bh->b_data + sizeof(struct gfs2_dinode)); 580 spin_unlock(&sdp->sd_statfs_spin); 581 } 582 583 int gfs2_statfs_sync(struct super_block *sb, int type) 584 { 585 struct gfs2_sbd *sdp = sb->s_fs_info; 586 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode); 587 struct gfs2_inode *l_ip = GFS2_I(sdp->sd_sc_inode); 588 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master; 589 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local; 590 struct gfs2_holder gh; 591 struct buffer_head *m_bh, *l_bh; 592 int error; 593 594 sb_start_write(sb); 595 error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, GL_NOCACHE, 596 &gh); 597 if (error) 598 goto out; 599 600 error = gfs2_meta_inode_buffer(m_ip, &m_bh); 601 if (error) 602 goto out_unlock; 603 604 spin_lock(&sdp->sd_statfs_spin); 605 gfs2_statfs_change_in(m_sc, m_bh->b_data + 606 sizeof(struct gfs2_dinode)); 607 if (!l_sc->sc_total && !l_sc->sc_free && !l_sc->sc_dinodes) { 608 spin_unlock(&sdp->sd_statfs_spin); 609 goto out_bh; 610 } 611 spin_unlock(&sdp->sd_statfs_spin); 612 613 error = gfs2_meta_inode_buffer(l_ip, &l_bh); 614 if (error) 615 goto out_bh; 616 617 error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0); 618 if (error) 619 goto out_bh2; 620 621 update_statfs(sdp, m_bh, l_bh); 622 sdp->sd_statfs_force_sync = 0; 623 624 gfs2_trans_end(sdp); 625 626 out_bh2: 627 brelse(l_bh); 628 out_bh: 629 brelse(m_bh); 630 out_unlock: 631 gfs2_glock_dq_uninit(&gh); 632 out: 633 sb_end_write(sb); 634 return error; 635 } 636 637 struct lfcc { 638 struct list_head list; 639 struct gfs2_holder gh; 640 }; 641 642 /** 643 * gfs2_lock_fs_check_clean - Stop all writes to the FS and check that all 644 * journals are clean 645 * @sdp: the file system 646 * @state: the state to put the transaction lock into 647 * @t_gh: the hold on the transaction lock 648 * 649 * Returns: errno 650 */ 651 652 static int gfs2_lock_fs_check_clean(struct gfs2_sbd *sdp, 653 struct gfs2_holder *freeze_gh) 654 { 655 struct gfs2_inode *ip; 656 struct gfs2_jdesc *jd; 657 struct lfcc *lfcc; 658 LIST_HEAD(list); 659 struct gfs2_log_header_host lh; 660 int error; 661 662 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) { 663 lfcc = kmalloc(sizeof(struct lfcc), GFP_KERNEL); 664 if (!lfcc) { 665 error = -ENOMEM; 666 goto out; 667 } 668 ip = GFS2_I(jd->jd_inode); 669 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &lfcc->gh); 670 if (error) { 671 kfree(lfcc); 672 goto out; 673 } 674 list_add(&lfcc->list, &list); 675 } 676 677 error = gfs2_glock_nq_init(sdp->sd_freeze_gl, LM_ST_EXCLUSIVE, 678 GL_NOCACHE, freeze_gh); 679 680 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) { 681 error = gfs2_jdesc_check(jd); 682 if (error) 683 break; 684 error = gfs2_find_jhead(jd, &lh, false); 685 if (error) 686 break; 687 if (!(lh.lh_flags & GFS2_LOG_HEAD_UNMOUNT)) { 688 error = -EBUSY; 689 break; 690 } 691 } 692 693 if (error) 694 gfs2_glock_dq_uninit(freeze_gh); 695 696 out: 697 while (!list_empty(&list)) { 698 lfcc = list_entry(list.next, struct lfcc, list); 699 list_del(&lfcc->list); 700 gfs2_glock_dq_uninit(&lfcc->gh); 701 kfree(lfcc); 702 } 703 return error; 704 } 705 706 void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf) 707 { 708 struct gfs2_dinode *str = buf; 709 710 str->di_header.mh_magic = cpu_to_be32(GFS2_MAGIC); 711 str->di_header.mh_type = cpu_to_be32(GFS2_METATYPE_DI); 712 str->di_header.mh_format = cpu_to_be32(GFS2_FORMAT_DI); 713 str->di_num.no_addr = cpu_to_be64(ip->i_no_addr); 714 str->di_num.no_formal_ino = cpu_to_be64(ip->i_no_formal_ino); 715 str->di_mode = cpu_to_be32(ip->i_inode.i_mode); 716 str->di_uid = cpu_to_be32(i_uid_read(&ip->i_inode)); 717 str->di_gid = cpu_to_be32(i_gid_read(&ip->i_inode)); 718 str->di_nlink = cpu_to_be32(ip->i_inode.i_nlink); 719 str->di_size = cpu_to_be64(i_size_read(&ip->i_inode)); 720 str->di_blocks = cpu_to_be64(gfs2_get_inode_blocks(&ip->i_inode)); 721 str->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec); 722 str->di_mtime = cpu_to_be64(ip->i_inode.i_mtime.tv_sec); 723 str->di_ctime = cpu_to_be64(ip->i_inode.i_ctime.tv_sec); 724 725 str->di_goal_meta = cpu_to_be64(ip->i_goal); 726 str->di_goal_data = cpu_to_be64(ip->i_goal); 727 str->di_generation = cpu_to_be64(ip->i_generation); 728 729 str->di_flags = cpu_to_be32(ip->i_diskflags); 730 str->di_height = cpu_to_be16(ip->i_height); 731 str->di_payload_format = cpu_to_be32(S_ISDIR(ip->i_inode.i_mode) && 732 !(ip->i_diskflags & GFS2_DIF_EXHASH) ? 733 GFS2_FORMAT_DE : 0); 734 str->di_depth = cpu_to_be16(ip->i_depth); 735 str->di_entries = cpu_to_be32(ip->i_entries); 736 737 str->di_eattr = cpu_to_be64(ip->i_eattr); 738 str->di_atime_nsec = cpu_to_be32(ip->i_inode.i_atime.tv_nsec); 739 str->di_mtime_nsec = cpu_to_be32(ip->i_inode.i_mtime.tv_nsec); 740 str->di_ctime_nsec = cpu_to_be32(ip->i_inode.i_ctime.tv_nsec); 741 } 742 743 /** 744 * gfs2_write_inode - Make sure the inode is stable on the disk 745 * @inode: The inode 746 * @wbc: The writeback control structure 747 * 748 * Returns: errno 749 */ 750 751 static int gfs2_write_inode(struct inode *inode, struct writeback_control *wbc) 752 { 753 struct gfs2_inode *ip = GFS2_I(inode); 754 struct gfs2_sbd *sdp = GFS2_SB(inode); 755 struct address_space *metamapping = gfs2_glock2aspace(ip->i_gl); 756 struct backing_dev_info *bdi = inode_to_bdi(metamapping->host); 757 int ret = 0; 758 bool flush_all = (wbc->sync_mode == WB_SYNC_ALL || gfs2_is_jdata(ip)); 759 760 if (flush_all) 761 gfs2_log_flush(GFS2_SB(inode), ip->i_gl, 762 GFS2_LOG_HEAD_FLUSH_NORMAL | 763 GFS2_LFC_WRITE_INODE); 764 if (bdi->wb.dirty_exceeded) 765 gfs2_ail1_flush(sdp, wbc); 766 else 767 filemap_fdatawrite(metamapping); 768 if (flush_all) 769 ret = filemap_fdatawait(metamapping); 770 if (ret) 771 mark_inode_dirty_sync(inode); 772 else { 773 spin_lock(&inode->i_lock); 774 if (!(inode->i_flags & I_DIRTY)) 775 gfs2_ordered_del_inode(ip); 776 spin_unlock(&inode->i_lock); 777 } 778 return ret; 779 } 780 781 /** 782 * gfs2_dirty_inode - check for atime updates 783 * @inode: The inode in question 784 * @flags: The type of dirty 785 * 786 * Unfortunately it can be called under any combination of inode 787 * glock and transaction lock, so we have to check carefully. 788 * 789 * At the moment this deals only with atime - it should be possible 790 * to expand that role in future, once a review of the locking has 791 * been carried out. 792 */ 793 794 static void gfs2_dirty_inode(struct inode *inode, int flags) 795 { 796 struct gfs2_inode *ip = GFS2_I(inode); 797 struct gfs2_sbd *sdp = GFS2_SB(inode); 798 struct buffer_head *bh; 799 struct gfs2_holder gh; 800 int need_unlock = 0; 801 int need_endtrans = 0; 802 int ret; 803 804 if (!(flags & I_DIRTY_INODE)) 805 return; 806 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) 807 return; 808 if (!gfs2_glock_is_locked_by_me(ip->i_gl)) { 809 ret = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh); 810 if (ret) { 811 fs_err(sdp, "dirty_inode: glock %d\n", ret); 812 return; 813 } 814 need_unlock = 1; 815 } else if (WARN_ON_ONCE(ip->i_gl->gl_state != LM_ST_EXCLUSIVE)) 816 return; 817 818 if (current->journal_info == NULL) { 819 ret = gfs2_trans_begin(sdp, RES_DINODE, 0); 820 if (ret) { 821 fs_err(sdp, "dirty_inode: gfs2_trans_begin %d\n", ret); 822 goto out; 823 } 824 need_endtrans = 1; 825 } 826 827 ret = gfs2_meta_inode_buffer(ip, &bh); 828 if (ret == 0) { 829 gfs2_trans_add_meta(ip->i_gl, bh); 830 gfs2_dinode_out(ip, bh->b_data); 831 brelse(bh); 832 } 833 834 if (need_endtrans) 835 gfs2_trans_end(sdp); 836 out: 837 if (need_unlock) 838 gfs2_glock_dq_uninit(&gh); 839 } 840 841 /** 842 * gfs2_make_fs_ro - Turn a Read-Write FS into a Read-Only one 843 * @sdp: the filesystem 844 * 845 * Returns: errno 846 */ 847 848 static int gfs2_make_fs_ro(struct gfs2_sbd *sdp) 849 { 850 struct gfs2_holder freeze_gh; 851 int error; 852 853 error = gfs2_glock_nq_init(sdp->sd_freeze_gl, LM_ST_SHARED, GL_NOCACHE, 854 &freeze_gh); 855 if (error && !test_bit(SDF_SHUTDOWN, &sdp->sd_flags)) 856 return error; 857 858 flush_workqueue(gfs2_delete_workqueue); 859 kthread_stop(sdp->sd_quotad_process); 860 kthread_stop(sdp->sd_logd_process); 861 862 gfs2_quota_sync(sdp->sd_vfs, 0); 863 gfs2_statfs_sync(sdp->sd_vfs, 0); 864 865 gfs2_log_flush(sdp, NULL, GFS2_LOG_HEAD_FLUSH_SHUTDOWN | 866 GFS2_LFC_MAKE_FS_RO); 867 wait_event(sdp->sd_reserving_log_wait, atomic_read(&sdp->sd_reserving_log) == 0); 868 gfs2_assert_warn(sdp, atomic_read(&sdp->sd_log_blks_free) == sdp->sd_jdesc->jd_blocks); 869 870 if (gfs2_holder_initialized(&freeze_gh)) 871 gfs2_glock_dq_uninit(&freeze_gh); 872 873 gfs2_quota_cleanup(sdp); 874 875 return error; 876 } 877 878 /** 879 * gfs2_put_super - Unmount the filesystem 880 * @sb: The VFS superblock 881 * 882 */ 883 884 static void gfs2_put_super(struct super_block *sb) 885 { 886 struct gfs2_sbd *sdp = sb->s_fs_info; 887 int error; 888 struct gfs2_jdesc *jd; 889 890 /* No more recovery requests */ 891 set_bit(SDF_NORECOVERY, &sdp->sd_flags); 892 smp_mb(); 893 894 /* Wait on outstanding recovery */ 895 restart: 896 spin_lock(&sdp->sd_jindex_spin); 897 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) { 898 if (!test_bit(JDF_RECOVERY, &jd->jd_flags)) 899 continue; 900 spin_unlock(&sdp->sd_jindex_spin); 901 wait_on_bit(&jd->jd_flags, JDF_RECOVERY, 902 TASK_UNINTERRUPTIBLE); 903 goto restart; 904 } 905 spin_unlock(&sdp->sd_jindex_spin); 906 907 if (!sb_rdonly(sb)) { 908 error = gfs2_make_fs_ro(sdp); 909 if (error) 910 gfs2_io_error(sdp); 911 } 912 /* At this point, we're through modifying the disk */ 913 914 /* Release stuff */ 915 916 iput(sdp->sd_jindex); 917 iput(sdp->sd_statfs_inode); 918 iput(sdp->sd_rindex); 919 iput(sdp->sd_quota_inode); 920 921 gfs2_glock_put(sdp->sd_rename_gl); 922 gfs2_glock_put(sdp->sd_freeze_gl); 923 924 if (!sdp->sd_args.ar_spectator) { 925 gfs2_glock_dq_uninit(&sdp->sd_journal_gh); 926 gfs2_glock_dq_uninit(&sdp->sd_jinode_gh); 927 gfs2_glock_dq_uninit(&sdp->sd_sc_gh); 928 gfs2_glock_dq_uninit(&sdp->sd_qc_gh); 929 iput(sdp->sd_sc_inode); 930 iput(sdp->sd_qc_inode); 931 } 932 933 gfs2_glock_dq_uninit(&sdp->sd_live_gh); 934 gfs2_clear_rgrpd(sdp); 935 gfs2_jindex_free(sdp); 936 /* Take apart glock structures and buffer lists */ 937 gfs2_gl_hash_clear(sdp); 938 gfs2_delete_debugfs_file(sdp); 939 /* Unmount the locking protocol */ 940 gfs2_lm_unmount(sdp); 941 942 /* At this point, we're through participating in the lockspace */ 943 gfs2_sys_fs_del(sdp); 944 } 945 946 /** 947 * gfs2_sync_fs - sync the filesystem 948 * @sb: the superblock 949 * 950 * Flushes the log to disk. 951 */ 952 953 static int gfs2_sync_fs(struct super_block *sb, int wait) 954 { 955 struct gfs2_sbd *sdp = sb->s_fs_info; 956 957 gfs2_quota_sync(sb, -1); 958 if (wait) 959 gfs2_log_flush(sdp, NULL, GFS2_LOG_HEAD_FLUSH_NORMAL | 960 GFS2_LFC_SYNC_FS); 961 return sdp->sd_log_error; 962 } 963 964 void gfs2_freeze_func(struct work_struct *work) 965 { 966 int error; 967 struct gfs2_holder freeze_gh; 968 struct gfs2_sbd *sdp = container_of(work, struct gfs2_sbd, sd_freeze_work); 969 struct super_block *sb = sdp->sd_vfs; 970 971 atomic_inc(&sb->s_active); 972 error = gfs2_glock_nq_init(sdp->sd_freeze_gl, LM_ST_SHARED, 0, 973 &freeze_gh); 974 if (error) { 975 printk(KERN_INFO "GFS2: couldn't get freeze lock : %d\n", error); 976 gfs2_assert_withdraw(sdp, 0); 977 } else { 978 atomic_set(&sdp->sd_freeze_state, SFS_UNFROZEN); 979 error = thaw_super(sb); 980 if (error) { 981 printk(KERN_INFO "GFS2: couldn't thaw filesystem: %d\n", 982 error); 983 gfs2_assert_withdraw(sdp, 0); 984 } 985 if (!test_bit(SDF_JOURNAL_LIVE, &sdp->sd_flags)) 986 freeze_gh.gh_flags |= GL_NOCACHE; 987 gfs2_glock_dq_uninit(&freeze_gh); 988 } 989 deactivate_super(sb); 990 clear_bit_unlock(SDF_FS_FROZEN, &sdp->sd_flags); 991 wake_up_bit(&sdp->sd_flags, SDF_FS_FROZEN); 992 return; 993 } 994 995 /** 996 * gfs2_freeze - prevent further writes to the filesystem 997 * @sb: the VFS structure for the filesystem 998 * 999 */ 1000 1001 static int gfs2_freeze(struct super_block *sb) 1002 { 1003 struct gfs2_sbd *sdp = sb->s_fs_info; 1004 int error = 0; 1005 1006 mutex_lock(&sdp->sd_freeze_mutex); 1007 if (atomic_read(&sdp->sd_freeze_state) != SFS_UNFROZEN) 1008 goto out; 1009 1010 if (test_bit(SDF_SHUTDOWN, &sdp->sd_flags)) { 1011 error = -EINVAL; 1012 goto out; 1013 } 1014 1015 for (;;) { 1016 error = gfs2_lock_fs_check_clean(sdp, &sdp->sd_freeze_gh); 1017 if (!error) 1018 break; 1019 1020 switch (error) { 1021 case -EBUSY: 1022 fs_err(sdp, "waiting for recovery before freeze\n"); 1023 break; 1024 1025 default: 1026 fs_err(sdp, "error freezing FS: %d\n", error); 1027 break; 1028 } 1029 1030 fs_err(sdp, "retrying...\n"); 1031 msleep(1000); 1032 } 1033 error = 0; 1034 set_bit(SDF_FS_FROZEN, &sdp->sd_flags); 1035 out: 1036 mutex_unlock(&sdp->sd_freeze_mutex); 1037 return error; 1038 } 1039 1040 /** 1041 * gfs2_unfreeze - reallow writes to the filesystem 1042 * @sb: the VFS structure for the filesystem 1043 * 1044 */ 1045 1046 static int gfs2_unfreeze(struct super_block *sb) 1047 { 1048 struct gfs2_sbd *sdp = sb->s_fs_info; 1049 1050 mutex_lock(&sdp->sd_freeze_mutex); 1051 if (atomic_read(&sdp->sd_freeze_state) != SFS_FROZEN || 1052 !gfs2_holder_initialized(&sdp->sd_freeze_gh)) { 1053 mutex_unlock(&sdp->sd_freeze_mutex); 1054 return 0; 1055 } 1056 1057 gfs2_glock_dq_uninit(&sdp->sd_freeze_gh); 1058 mutex_unlock(&sdp->sd_freeze_mutex); 1059 return wait_on_bit(&sdp->sd_flags, SDF_FS_FROZEN, TASK_INTERRUPTIBLE); 1060 } 1061 1062 /** 1063 * statfs_fill - fill in the sg for a given RG 1064 * @rgd: the RG 1065 * @sc: the sc structure 1066 * 1067 * Returns: 0 on success, -ESTALE if the LVB is invalid 1068 */ 1069 1070 static int statfs_slow_fill(struct gfs2_rgrpd *rgd, 1071 struct gfs2_statfs_change_host *sc) 1072 { 1073 gfs2_rgrp_verify(rgd); 1074 sc->sc_total += rgd->rd_data; 1075 sc->sc_free += rgd->rd_free; 1076 sc->sc_dinodes += rgd->rd_dinodes; 1077 return 0; 1078 } 1079 1080 /** 1081 * gfs2_statfs_slow - Stat a filesystem using asynchronous locking 1082 * @sdp: the filesystem 1083 * @sc: the sc info that will be returned 1084 * 1085 * Any error (other than a signal) will cause this routine to fall back 1086 * to the synchronous version. 1087 * 1088 * FIXME: This really shouldn't busy wait like this. 1089 * 1090 * Returns: errno 1091 */ 1092 1093 static int gfs2_statfs_slow(struct gfs2_sbd *sdp, struct gfs2_statfs_change_host *sc) 1094 { 1095 struct gfs2_rgrpd *rgd_next; 1096 struct gfs2_holder *gha, *gh; 1097 unsigned int slots = 64; 1098 unsigned int x; 1099 int done; 1100 int error = 0, err; 1101 1102 memset(sc, 0, sizeof(struct gfs2_statfs_change_host)); 1103 gha = kmalloc_array(slots, sizeof(struct gfs2_holder), GFP_KERNEL); 1104 if (!gha) 1105 return -ENOMEM; 1106 for (x = 0; x < slots; x++) 1107 gfs2_holder_mark_uninitialized(gha + x); 1108 1109 rgd_next = gfs2_rgrpd_get_first(sdp); 1110 1111 for (;;) { 1112 done = 1; 1113 1114 for (x = 0; x < slots; x++) { 1115 gh = gha + x; 1116 1117 if (gfs2_holder_initialized(gh) && gfs2_glock_poll(gh)) { 1118 err = gfs2_glock_wait(gh); 1119 if (err) { 1120 gfs2_holder_uninit(gh); 1121 error = err; 1122 } else { 1123 if (!error) { 1124 struct gfs2_rgrpd *rgd = 1125 gfs2_glock2rgrp(gh->gh_gl); 1126 1127 error = statfs_slow_fill(rgd, sc); 1128 } 1129 gfs2_glock_dq_uninit(gh); 1130 } 1131 } 1132 1133 if (gfs2_holder_initialized(gh)) 1134 done = 0; 1135 else if (rgd_next && !error) { 1136 error = gfs2_glock_nq_init(rgd_next->rd_gl, 1137 LM_ST_SHARED, 1138 GL_ASYNC, 1139 gh); 1140 rgd_next = gfs2_rgrpd_get_next(rgd_next); 1141 done = 0; 1142 } 1143 1144 if (signal_pending(current)) 1145 error = -ERESTARTSYS; 1146 } 1147 1148 if (done) 1149 break; 1150 1151 yield(); 1152 } 1153 1154 kfree(gha); 1155 return error; 1156 } 1157 1158 /** 1159 * gfs2_statfs_i - Do a statfs 1160 * @sdp: the filesystem 1161 * @sg: the sg structure 1162 * 1163 * Returns: errno 1164 */ 1165 1166 static int gfs2_statfs_i(struct gfs2_sbd *sdp, struct gfs2_statfs_change_host *sc) 1167 { 1168 struct gfs2_statfs_change_host *m_sc = &sdp->sd_statfs_master; 1169 struct gfs2_statfs_change_host *l_sc = &sdp->sd_statfs_local; 1170 1171 spin_lock(&sdp->sd_statfs_spin); 1172 1173 *sc = *m_sc; 1174 sc->sc_total += l_sc->sc_total; 1175 sc->sc_free += l_sc->sc_free; 1176 sc->sc_dinodes += l_sc->sc_dinodes; 1177 1178 spin_unlock(&sdp->sd_statfs_spin); 1179 1180 if (sc->sc_free < 0) 1181 sc->sc_free = 0; 1182 if (sc->sc_free > sc->sc_total) 1183 sc->sc_free = sc->sc_total; 1184 if (sc->sc_dinodes < 0) 1185 sc->sc_dinodes = 0; 1186 1187 return 0; 1188 } 1189 1190 /** 1191 * gfs2_statfs - Gather and return stats about the filesystem 1192 * @sb: The superblock 1193 * @statfsbuf: The buffer 1194 * 1195 * Returns: 0 on success or error code 1196 */ 1197 1198 static int gfs2_statfs(struct dentry *dentry, struct kstatfs *buf) 1199 { 1200 struct super_block *sb = dentry->d_sb; 1201 struct gfs2_sbd *sdp = sb->s_fs_info; 1202 struct gfs2_statfs_change_host sc; 1203 int error; 1204 1205 error = gfs2_rindex_update(sdp); 1206 if (error) 1207 return error; 1208 1209 if (gfs2_tune_get(sdp, gt_statfs_slow)) 1210 error = gfs2_statfs_slow(sdp, &sc); 1211 else 1212 error = gfs2_statfs_i(sdp, &sc); 1213 1214 if (error) 1215 return error; 1216 1217 buf->f_type = GFS2_MAGIC; 1218 buf->f_bsize = sdp->sd_sb.sb_bsize; 1219 buf->f_blocks = sc.sc_total; 1220 buf->f_bfree = sc.sc_free; 1221 buf->f_bavail = sc.sc_free; 1222 buf->f_files = sc.sc_dinodes + sc.sc_free; 1223 buf->f_ffree = sc.sc_free; 1224 buf->f_namelen = GFS2_FNAMESIZE; 1225 1226 return 0; 1227 } 1228 1229 /** 1230 * gfs2_remount_fs - called when the FS is remounted 1231 * @sb: the filesystem 1232 * @flags: the remount flags 1233 * @data: extra data passed in (not used right now) 1234 * 1235 * Returns: errno 1236 */ 1237 1238 static int gfs2_remount_fs(struct super_block *sb, int *flags, char *data) 1239 { 1240 struct gfs2_sbd *sdp = sb->s_fs_info; 1241 struct gfs2_args args = sdp->sd_args; /* Default to current settings */ 1242 struct gfs2_tune *gt = &sdp->sd_tune; 1243 int error; 1244 1245 sync_filesystem(sb); 1246 1247 spin_lock(>->gt_spin); 1248 args.ar_commit = gt->gt_logd_secs; 1249 args.ar_quota_quantum = gt->gt_quota_quantum; 1250 if (gt->gt_statfs_slow) 1251 args.ar_statfs_quantum = 0; 1252 else 1253 args.ar_statfs_quantum = gt->gt_statfs_quantum; 1254 spin_unlock(>->gt_spin); 1255 error = gfs2_mount_args(&args, data); 1256 if (error) 1257 return error; 1258 1259 /* Not allowed to change locking details */ 1260 if (strcmp(args.ar_lockproto, sdp->sd_args.ar_lockproto) || 1261 strcmp(args.ar_locktable, sdp->sd_args.ar_locktable) || 1262 strcmp(args.ar_hostdata, sdp->sd_args.ar_hostdata)) 1263 return -EINVAL; 1264 1265 /* Some flags must not be changed */ 1266 if (args_neq(&args, &sdp->sd_args, spectator) || 1267 args_neq(&args, &sdp->sd_args, localflocks) || 1268 args_neq(&args, &sdp->sd_args, meta)) 1269 return -EINVAL; 1270 1271 if (sdp->sd_args.ar_spectator) 1272 *flags |= SB_RDONLY; 1273 1274 if ((sb->s_flags ^ *flags) & SB_RDONLY) { 1275 if (*flags & SB_RDONLY) 1276 error = gfs2_make_fs_ro(sdp); 1277 else 1278 error = gfs2_make_fs_rw(sdp); 1279 if (error) 1280 return error; 1281 } 1282 1283 sdp->sd_args = args; 1284 if (sdp->sd_args.ar_posix_acl) 1285 sb->s_flags |= SB_POSIXACL; 1286 else 1287 sb->s_flags &= ~SB_POSIXACL; 1288 if (sdp->sd_args.ar_nobarrier) 1289 set_bit(SDF_NOBARRIERS, &sdp->sd_flags); 1290 else 1291 clear_bit(SDF_NOBARRIERS, &sdp->sd_flags); 1292 spin_lock(>->gt_spin); 1293 gt->gt_logd_secs = args.ar_commit; 1294 gt->gt_quota_quantum = args.ar_quota_quantum; 1295 if (args.ar_statfs_quantum) { 1296 gt->gt_statfs_slow = 0; 1297 gt->gt_statfs_quantum = args.ar_statfs_quantum; 1298 } 1299 else { 1300 gt->gt_statfs_slow = 1; 1301 gt->gt_statfs_quantum = 30; 1302 } 1303 spin_unlock(>->gt_spin); 1304 1305 gfs2_online_uevent(sdp); 1306 return 0; 1307 } 1308 1309 /** 1310 * gfs2_drop_inode - Drop an inode (test for remote unlink) 1311 * @inode: The inode to drop 1312 * 1313 * If we've received a callback on an iopen lock then it's because a 1314 * remote node tried to deallocate the inode but failed due to this node 1315 * still having the inode open. Here we mark the link count zero 1316 * since we know that it must have reached zero if the GLF_DEMOTE flag 1317 * is set on the iopen glock. If we didn't do a disk read since the 1318 * remote node removed the final link then we might otherwise miss 1319 * this event. This check ensures that this node will deallocate the 1320 * inode's blocks, or alternatively pass the baton on to another 1321 * node for later deallocation. 1322 */ 1323 1324 static int gfs2_drop_inode(struct inode *inode) 1325 { 1326 struct gfs2_inode *ip = GFS2_I(inode); 1327 1328 if (!test_bit(GIF_FREE_VFS_INODE, &ip->i_flags) && 1329 inode->i_nlink && 1330 gfs2_holder_initialized(&ip->i_iopen_gh)) { 1331 struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl; 1332 if (test_bit(GLF_DEMOTE, &gl->gl_flags)) 1333 clear_nlink(inode); 1334 } 1335 1336 /* 1337 * When under memory pressure when an inode's link count has dropped to 1338 * zero, defer deleting the inode to the delete workqueue. This avoids 1339 * calling into DLM under memory pressure, which can deadlock. 1340 */ 1341 if (!inode->i_nlink && 1342 unlikely(current->flags & PF_MEMALLOC) && 1343 gfs2_holder_initialized(&ip->i_iopen_gh)) { 1344 struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl; 1345 1346 gfs2_glock_hold(gl); 1347 if (queue_work(gfs2_delete_workqueue, &gl->gl_delete) == 0) 1348 gfs2_glock_queue_put(gl); 1349 return false; 1350 } 1351 1352 return generic_drop_inode(inode); 1353 } 1354 1355 static int is_ancestor(const struct dentry *d1, const struct dentry *d2) 1356 { 1357 do { 1358 if (d1 == d2) 1359 return 1; 1360 d1 = d1->d_parent; 1361 } while (!IS_ROOT(d1)); 1362 return 0; 1363 } 1364 1365 /** 1366 * gfs2_show_options - Show mount options for /proc/mounts 1367 * @s: seq_file structure 1368 * @root: root of this (sub)tree 1369 * 1370 * Returns: 0 on success or error code 1371 */ 1372 1373 static int gfs2_show_options(struct seq_file *s, struct dentry *root) 1374 { 1375 struct gfs2_sbd *sdp = root->d_sb->s_fs_info; 1376 struct gfs2_args *args = &sdp->sd_args; 1377 int val; 1378 1379 if (is_ancestor(root, sdp->sd_master_dir)) 1380 seq_puts(s, ",meta"); 1381 if (args->ar_lockproto[0]) 1382 seq_show_option(s, "lockproto", args->ar_lockproto); 1383 if (args->ar_locktable[0]) 1384 seq_show_option(s, "locktable", args->ar_locktable); 1385 if (args->ar_hostdata[0]) 1386 seq_show_option(s, "hostdata", args->ar_hostdata); 1387 if (args->ar_spectator) 1388 seq_puts(s, ",spectator"); 1389 if (args->ar_localflocks) 1390 seq_puts(s, ",localflocks"); 1391 if (args->ar_debug) 1392 seq_puts(s, ",debug"); 1393 if (args->ar_posix_acl) 1394 seq_puts(s, ",acl"); 1395 if (args->ar_quota != GFS2_QUOTA_DEFAULT) { 1396 char *state; 1397 switch (args->ar_quota) { 1398 case GFS2_QUOTA_OFF: 1399 state = "off"; 1400 break; 1401 case GFS2_QUOTA_ACCOUNT: 1402 state = "account"; 1403 break; 1404 case GFS2_QUOTA_ON: 1405 state = "on"; 1406 break; 1407 default: 1408 state = "unknown"; 1409 break; 1410 } 1411 seq_printf(s, ",quota=%s", state); 1412 } 1413 if (args->ar_suiddir) 1414 seq_puts(s, ",suiddir"); 1415 if (args->ar_data != GFS2_DATA_DEFAULT) { 1416 char *state; 1417 switch (args->ar_data) { 1418 case GFS2_DATA_WRITEBACK: 1419 state = "writeback"; 1420 break; 1421 case GFS2_DATA_ORDERED: 1422 state = "ordered"; 1423 break; 1424 default: 1425 state = "unknown"; 1426 break; 1427 } 1428 seq_printf(s, ",data=%s", state); 1429 } 1430 if (args->ar_discard) 1431 seq_puts(s, ",discard"); 1432 val = sdp->sd_tune.gt_logd_secs; 1433 if (val != 30) 1434 seq_printf(s, ",commit=%d", val); 1435 val = sdp->sd_tune.gt_statfs_quantum; 1436 if (val != 30) 1437 seq_printf(s, ",statfs_quantum=%d", val); 1438 else if (sdp->sd_tune.gt_statfs_slow) 1439 seq_puts(s, ",statfs_quantum=0"); 1440 val = sdp->sd_tune.gt_quota_quantum; 1441 if (val != 60) 1442 seq_printf(s, ",quota_quantum=%d", val); 1443 if (args->ar_statfs_percent) 1444 seq_printf(s, ",statfs_percent=%d", args->ar_statfs_percent); 1445 if (args->ar_errors != GFS2_ERRORS_DEFAULT) { 1446 const char *state; 1447 1448 switch (args->ar_errors) { 1449 case GFS2_ERRORS_WITHDRAW: 1450 state = "withdraw"; 1451 break; 1452 case GFS2_ERRORS_PANIC: 1453 state = "panic"; 1454 break; 1455 default: 1456 state = "unknown"; 1457 break; 1458 } 1459 seq_printf(s, ",errors=%s", state); 1460 } 1461 if (test_bit(SDF_NOBARRIERS, &sdp->sd_flags)) 1462 seq_puts(s, ",nobarrier"); 1463 if (test_bit(SDF_DEMOTE, &sdp->sd_flags)) 1464 seq_puts(s, ",demote_interface_used"); 1465 if (args->ar_rgrplvb) 1466 seq_puts(s, ",rgrplvb"); 1467 if (args->ar_loccookie) 1468 seq_puts(s, ",loccookie"); 1469 return 0; 1470 } 1471 1472 static void gfs2_final_release_pages(struct gfs2_inode *ip) 1473 { 1474 struct inode *inode = &ip->i_inode; 1475 struct gfs2_glock *gl = ip->i_gl; 1476 1477 truncate_inode_pages(gfs2_glock2aspace(ip->i_gl), 0); 1478 truncate_inode_pages(&inode->i_data, 0); 1479 1480 if (!test_bit(GLF_REVOKES, &gl->gl_flags)) { 1481 clear_bit(GLF_LFLUSH, &gl->gl_flags); 1482 clear_bit(GLF_DIRTY, &gl->gl_flags); 1483 } 1484 } 1485 1486 static int gfs2_dinode_dealloc(struct gfs2_inode *ip) 1487 { 1488 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); 1489 struct gfs2_rgrpd *rgd; 1490 struct gfs2_holder gh; 1491 int error; 1492 1493 if (gfs2_get_inode_blocks(&ip->i_inode) != 1) { 1494 gfs2_consist_inode(ip); 1495 return -EIO; 1496 } 1497 1498 error = gfs2_rindex_update(sdp); 1499 if (error) 1500 return error; 1501 1502 error = gfs2_quota_hold(ip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE); 1503 if (error) 1504 return error; 1505 1506 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr, 1); 1507 if (!rgd) { 1508 gfs2_consist_inode(ip); 1509 error = -EIO; 1510 goto out_qs; 1511 } 1512 1513 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, &gh); 1514 if (error) 1515 goto out_qs; 1516 1517 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 1518 sdp->sd_jdesc->jd_blocks); 1519 if (error) 1520 goto out_rg_gunlock; 1521 1522 gfs2_free_di(rgd, ip); 1523 1524 gfs2_final_release_pages(ip); 1525 1526 gfs2_trans_end(sdp); 1527 1528 out_rg_gunlock: 1529 gfs2_glock_dq_uninit(&gh); 1530 out_qs: 1531 gfs2_quota_unhold(ip); 1532 return error; 1533 } 1534 1535 /** 1536 * gfs2_glock_put_eventually 1537 * @gl: The glock to put 1538 * 1539 * When under memory pressure, trigger a deferred glock put to make sure we 1540 * won't call into DLM and deadlock. Otherwise, put the glock directly. 1541 */ 1542 1543 static void gfs2_glock_put_eventually(struct gfs2_glock *gl) 1544 { 1545 if (current->flags & PF_MEMALLOC) 1546 gfs2_glock_queue_put(gl); 1547 else 1548 gfs2_glock_put(gl); 1549 } 1550 1551 /** 1552 * gfs2_evict_inode - Remove an inode from cache 1553 * @inode: The inode to evict 1554 * 1555 * There are three cases to consider: 1556 * 1. i_nlink == 0, we are final opener (and must deallocate) 1557 * 2. i_nlink == 0, we are not the final opener (and cannot deallocate) 1558 * 3. i_nlink > 0 1559 * 1560 * If the fs is read only, then we have to treat all cases as per #3 1561 * since we are unable to do any deallocation. The inode will be 1562 * deallocated by the next read/write node to attempt an allocation 1563 * in the same resource group 1564 * 1565 * We have to (at the moment) hold the inodes main lock to cover 1566 * the gap between unlocking the shared lock on the iopen lock and 1567 * taking the exclusive lock. I'd rather do a shared -> exclusive 1568 * conversion on the iopen lock, but we can change that later. This 1569 * is safe, just less efficient. 1570 */ 1571 1572 static void gfs2_evict_inode(struct inode *inode) 1573 { 1574 struct super_block *sb = inode->i_sb; 1575 struct gfs2_sbd *sdp = sb->s_fs_info; 1576 struct gfs2_inode *ip = GFS2_I(inode); 1577 struct gfs2_holder gh; 1578 struct address_space *metamapping; 1579 int error; 1580 1581 if (test_bit(GIF_FREE_VFS_INODE, &ip->i_flags)) { 1582 clear_inode(inode); 1583 return; 1584 } 1585 1586 if (inode->i_nlink || sb_rdonly(sb)) 1587 goto out; 1588 1589 if (test_bit(GIF_ALLOC_FAILED, &ip->i_flags)) { 1590 BUG_ON(!gfs2_glock_is_locked_by_me(ip->i_gl)); 1591 gfs2_holder_mark_uninitialized(&gh); 1592 goto alloc_failed; 1593 } 1594 1595 /* Deletes should never happen under memory pressure anymore. */ 1596 if (WARN_ON_ONCE(current->flags & PF_MEMALLOC)) 1597 goto out; 1598 1599 /* Must not read inode block until block type has been verified */ 1600 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_SKIP, &gh); 1601 if (unlikely(error)) { 1602 glock_clear_object(ip->i_iopen_gh.gh_gl, ip); 1603 ip->i_iopen_gh.gh_flags |= GL_NOCACHE; 1604 gfs2_glock_dq_uninit(&ip->i_iopen_gh); 1605 goto out; 1606 } 1607 1608 error = gfs2_check_blk_type(sdp, ip->i_no_addr, GFS2_BLKST_UNLINKED); 1609 if (error) 1610 goto out_truncate; 1611 1612 if (test_bit(GIF_INVALID, &ip->i_flags)) { 1613 error = gfs2_inode_refresh(ip); 1614 if (error) 1615 goto out_truncate; 1616 } 1617 1618 /* 1619 * The inode may have been recreated in the meantime. 1620 */ 1621 if (inode->i_nlink) 1622 goto out_truncate; 1623 1624 alloc_failed: 1625 if (gfs2_holder_initialized(&ip->i_iopen_gh) && 1626 test_bit(HIF_HOLDER, &ip->i_iopen_gh.gh_iflags)) { 1627 ip->i_iopen_gh.gh_flags |= GL_NOCACHE; 1628 gfs2_glock_dq_wait(&ip->i_iopen_gh); 1629 gfs2_holder_reinit(LM_ST_EXCLUSIVE, LM_FLAG_TRY_1CB | GL_NOCACHE, 1630 &ip->i_iopen_gh); 1631 error = gfs2_glock_nq(&ip->i_iopen_gh); 1632 if (error) 1633 goto out_truncate; 1634 } 1635 1636 if (S_ISDIR(inode->i_mode) && 1637 (ip->i_diskflags & GFS2_DIF_EXHASH)) { 1638 error = gfs2_dir_exhash_dealloc(ip); 1639 if (error) 1640 goto out_unlock; 1641 } 1642 1643 if (ip->i_eattr) { 1644 error = gfs2_ea_dealloc(ip); 1645 if (error) 1646 goto out_unlock; 1647 } 1648 1649 if (!gfs2_is_stuffed(ip)) { 1650 error = gfs2_file_dealloc(ip); 1651 if (error) 1652 goto out_unlock; 1653 } 1654 1655 /* We're about to clear the bitmap for the dinode, but as soon as we 1656 do, gfs2_create_inode can create another inode at the same block 1657 location and try to set gl_object again. We clear gl_object here so 1658 that subsequent inode creates don't see an old gl_object. */ 1659 glock_clear_object(ip->i_gl, ip); 1660 error = gfs2_dinode_dealloc(ip); 1661 goto out_unlock; 1662 1663 out_truncate: 1664 gfs2_log_flush(sdp, ip->i_gl, GFS2_LOG_HEAD_FLUSH_NORMAL | 1665 GFS2_LFC_EVICT_INODE); 1666 metamapping = gfs2_glock2aspace(ip->i_gl); 1667 if (test_bit(GLF_DIRTY, &ip->i_gl->gl_flags)) { 1668 filemap_fdatawrite(metamapping); 1669 filemap_fdatawait(metamapping); 1670 } 1671 write_inode_now(inode, 1); 1672 gfs2_ail_flush(ip->i_gl, 0); 1673 1674 error = gfs2_trans_begin(sdp, 0, sdp->sd_jdesc->jd_blocks); 1675 if (error) 1676 goto out_unlock; 1677 /* Needs to be done before glock release & also in a transaction */ 1678 truncate_inode_pages(&inode->i_data, 0); 1679 truncate_inode_pages(metamapping, 0); 1680 gfs2_trans_end(sdp); 1681 1682 out_unlock: 1683 if (gfs2_rs_active(&ip->i_res)) 1684 gfs2_rs_deltree(&ip->i_res); 1685 1686 if (gfs2_holder_initialized(&ip->i_iopen_gh)) { 1687 glock_clear_object(ip->i_iopen_gh.gh_gl, ip); 1688 if (test_bit(HIF_HOLDER, &ip->i_iopen_gh.gh_iflags)) { 1689 ip->i_iopen_gh.gh_flags |= GL_NOCACHE; 1690 gfs2_glock_dq(&ip->i_iopen_gh); 1691 } 1692 gfs2_holder_uninit(&ip->i_iopen_gh); 1693 } 1694 if (gfs2_holder_initialized(&gh)) { 1695 glock_clear_object(ip->i_gl, ip); 1696 gfs2_glock_dq_uninit(&gh); 1697 } 1698 if (error && error != GLR_TRYFAILED && error != -EROFS) 1699 fs_warn(sdp, "gfs2_evict_inode: %d\n", error); 1700 out: 1701 truncate_inode_pages_final(&inode->i_data); 1702 gfs2_rsqa_delete(ip, NULL); 1703 gfs2_ordered_del_inode(ip); 1704 clear_inode(inode); 1705 gfs2_dir_hash_inval(ip); 1706 glock_clear_object(ip->i_gl, ip); 1707 wait_on_bit_io(&ip->i_flags, GIF_GLOP_PENDING, TASK_UNINTERRUPTIBLE); 1708 gfs2_glock_add_to_lru(ip->i_gl); 1709 gfs2_glock_put_eventually(ip->i_gl); 1710 ip->i_gl = NULL; 1711 if (gfs2_holder_initialized(&ip->i_iopen_gh)) { 1712 struct gfs2_glock *gl = ip->i_iopen_gh.gh_gl; 1713 1714 glock_clear_object(gl, ip); 1715 ip->i_iopen_gh.gh_flags |= GL_NOCACHE; 1716 gfs2_glock_hold(gl); 1717 gfs2_glock_dq_uninit(&ip->i_iopen_gh); 1718 gfs2_glock_put_eventually(gl); 1719 } 1720 } 1721 1722 static struct inode *gfs2_alloc_inode(struct super_block *sb) 1723 { 1724 struct gfs2_inode *ip; 1725 1726 ip = kmem_cache_alloc(gfs2_inode_cachep, GFP_KERNEL); 1727 if (ip) { 1728 ip->i_flags = 0; 1729 ip->i_gl = NULL; 1730 memset(&ip->i_res, 0, sizeof(ip->i_res)); 1731 RB_CLEAR_NODE(&ip->i_res.rs_node); 1732 ip->i_rahead = 0; 1733 } 1734 return &ip->i_inode; 1735 } 1736 1737 static void gfs2_free_inode(struct inode *inode) 1738 { 1739 kmem_cache_free(gfs2_inode_cachep, GFS2_I(inode)); 1740 } 1741 1742 const struct super_operations gfs2_super_ops = { 1743 .alloc_inode = gfs2_alloc_inode, 1744 .free_inode = gfs2_free_inode, 1745 .write_inode = gfs2_write_inode, 1746 .dirty_inode = gfs2_dirty_inode, 1747 .evict_inode = gfs2_evict_inode, 1748 .put_super = gfs2_put_super, 1749 .sync_fs = gfs2_sync_fs, 1750 .freeze_super = gfs2_freeze, 1751 .thaw_super = gfs2_unfreeze, 1752 .statfs = gfs2_statfs, 1753 .remount_fs = gfs2_remount_fs, 1754 .drop_inode = gfs2_drop_inode, 1755 .show_options = gfs2_show_options, 1756 }; 1757 1758