sysfile.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /* -*- mode: c; c-basic-offset: 8; -*-
  2. * vim: noexpandtab sw=8 ts=8 sts=0:
  3. *
  4. * sysfile.c
  5. *
  6. * Initialize, read, write, etc. system files.
  7. *
  8. * Copyright (C) 2002, 2004 Oracle. All rights reserved.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2 of the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public
  21. * License along with this program; if not, write to the
  22. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  23. * Boston, MA 021110-1307, USA.
  24. */
  25. #include <linux/fs.h>
  26. #include <linux/types.h>
  27. #include <linux/slab.h>
  28. #include <linux/highmem.h>
  29. #define MLOG_MASK_PREFIX ML_INODE
  30. #include <cluster/masklog.h>
  31. #include "ocfs2.h"
  32. #include "alloc.h"
  33. #include "dir.h"
  34. #include "inode.h"
  35. #include "journal.h"
  36. #include "sysfile.h"
  37. #include "buffer_head_io.h"
  38. static struct inode * _ocfs2_get_system_file_inode(struct ocfs2_super *osb,
  39. int type,
  40. u32 slot);
  41. static inline int is_global_system_inode(int type);
  42. static inline int is_in_system_inode_array(struct ocfs2_super *osb,
  43. int type,
  44. u32 slot);
  45. #ifdef CONFIG_DEBUG_LOCK_ALLOC
  46. static struct lock_class_key ocfs2_sysfile_cluster_lock_key[NUM_SYSTEM_INODES];
  47. #endif
  48. static inline int is_global_system_inode(int type)
  49. {
  50. return type >= OCFS2_FIRST_ONLINE_SYSTEM_INODE &&
  51. type <= OCFS2_LAST_GLOBAL_SYSTEM_INODE;
  52. }
  53. static inline int is_in_system_inode_array(struct ocfs2_super *osb,
  54. int type,
  55. u32 slot)
  56. {
  57. return slot == osb->slot_num || is_global_system_inode(type);
  58. }
  59. struct inode *ocfs2_get_system_file_inode(struct ocfs2_super *osb,
  60. int type,
  61. u32 slot)
  62. {
  63. struct inode *inode = NULL;
  64. struct inode **arr = NULL;
  65. /* avoid the lookup if cached in local system file array */
  66. if (is_in_system_inode_array(osb, type, slot))
  67. arr = &(osb->system_inodes[type]);
  68. if (arr && ((inode = *arr) != NULL)) {
  69. /* get a ref in addition to the array ref */
  70. inode = igrab(inode);
  71. BUG_ON(!inode);
  72. return inode;
  73. }
  74. /* this gets one ref thru iget */
  75. inode = _ocfs2_get_system_file_inode(osb, type, slot);
  76. /* add one more if putting into array for first time */
  77. if (arr && inode) {
  78. *arr = igrab(inode);
  79. BUG_ON(!*arr);
  80. }
  81. return inode;
  82. }
  83. static struct inode * _ocfs2_get_system_file_inode(struct ocfs2_super *osb,
  84. int type,
  85. u32 slot)
  86. {
  87. char namebuf[40];
  88. struct inode *inode = NULL;
  89. u64 blkno;
  90. int status = 0;
  91. ocfs2_sprintf_system_inode_name(namebuf,
  92. sizeof(namebuf),
  93. type, slot);
  94. status = ocfs2_lookup_ino_from_name(osb->sys_root_inode, namebuf,
  95. strlen(namebuf), &blkno);
  96. if (status < 0) {
  97. goto bail;
  98. }
  99. inode = ocfs2_iget(osb, blkno, OCFS2_FI_FLAG_SYSFILE, type);
  100. if (IS_ERR(inode)) {
  101. mlog_errno(PTR_ERR(inode));
  102. inode = NULL;
  103. goto bail;
  104. }
  105. #ifdef CONFIG_DEBUG_LOCK_ALLOC
  106. if (type == LOCAL_USER_QUOTA_SYSTEM_INODE ||
  107. type == LOCAL_GROUP_QUOTA_SYSTEM_INODE ||
  108. type == JOURNAL_SYSTEM_INODE) {
  109. /* Ignore inode lock on these inodes as the lock does not
  110. * really belong to any process and lockdep cannot handle
  111. * that */
  112. OCFS2_I(inode)->ip_inode_lockres.l_lockdep_map.key = NULL;
  113. } else {
  114. lockdep_init_map(&OCFS2_I(inode)->ip_inode_lockres.
  115. l_lockdep_map,
  116. ocfs2_system_inodes[type].si_name,
  117. &ocfs2_sysfile_cluster_lock_key[type], 0);
  118. }
  119. #endif
  120. bail:
  121. return inode;
  122. }