sysfile.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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/highmem.h>
  28. #include <cluster/masklog.h>
  29. #include "ocfs2.h"
  30. #include "alloc.h"
  31. #include "dir.h"
  32. #include "inode.h"
  33. #include "journal.h"
  34. #include "sysfile.h"
  35. #include "buffer_head_io.h"
  36. static struct inode * _ocfs2_get_system_file_inode(struct ocfs2_super *osb,
  37. int type,
  38. u32 slot);
  39. #ifdef CONFIG_DEBUG_LOCK_ALLOC
  40. static struct lock_class_key ocfs2_sysfile_cluster_lock_key[NUM_SYSTEM_INODES];
  41. #endif
  42. static inline int is_global_system_inode(int type)
  43. {
  44. return type >= OCFS2_FIRST_ONLINE_SYSTEM_INODE &&
  45. type <= OCFS2_LAST_GLOBAL_SYSTEM_INODE;
  46. }
  47. static struct inode **get_local_system_inode(struct ocfs2_super *osb,
  48. int type,
  49. u32 slot)
  50. {
  51. int index;
  52. struct inode **local_system_inodes, **free = NULL;
  53. BUG_ON(slot == OCFS2_INVALID_SLOT);
  54. BUG_ON(type < OCFS2_FIRST_LOCAL_SYSTEM_INODE ||
  55. type > OCFS2_LAST_LOCAL_SYSTEM_INODE);
  56. spin_lock(&osb->osb_lock);
  57. local_system_inodes = osb->local_system_inodes;
  58. spin_unlock(&osb->osb_lock);
  59. if (unlikely(!local_system_inodes)) {
  60. local_system_inodes =
  61. kzalloc(array3_size(sizeof(struct inode *),
  62. NUM_LOCAL_SYSTEM_INODES,
  63. osb->max_slots),
  64. GFP_NOFS);
  65. if (!local_system_inodes) {
  66. mlog_errno(-ENOMEM);
  67. /*
  68. * return NULL here so that ocfs2_get_sytem_file_inodes
  69. * will try to create an inode and use it. We will try
  70. * to initialize local_system_inodes next time.
  71. */
  72. return NULL;
  73. }
  74. spin_lock(&osb->osb_lock);
  75. if (osb->local_system_inodes) {
  76. /* Someone has initialized it for us. */
  77. free = local_system_inodes;
  78. local_system_inodes = osb->local_system_inodes;
  79. } else
  80. osb->local_system_inodes = local_system_inodes;
  81. spin_unlock(&osb->osb_lock);
  82. kfree(free);
  83. }
  84. index = (slot * NUM_LOCAL_SYSTEM_INODES) +
  85. (type - OCFS2_FIRST_LOCAL_SYSTEM_INODE);
  86. return &local_system_inodes[index];
  87. }
  88. struct inode *ocfs2_get_system_file_inode(struct ocfs2_super *osb,
  89. int type,
  90. u32 slot)
  91. {
  92. struct inode *inode = NULL;
  93. struct inode **arr = NULL;
  94. /* avoid the lookup if cached in local system file array */
  95. if (is_global_system_inode(type)) {
  96. arr = &(osb->global_system_inodes[type]);
  97. } else
  98. arr = get_local_system_inode(osb, type, slot);
  99. mutex_lock(&osb->system_file_mutex);
  100. if (arr && ((inode = *arr) != NULL)) {
  101. /* get a ref in addition to the array ref */
  102. inode = igrab(inode);
  103. mutex_unlock(&osb->system_file_mutex);
  104. BUG_ON(!inode);
  105. return inode;
  106. }
  107. /* this gets one ref thru iget */
  108. inode = _ocfs2_get_system_file_inode(osb, type, slot);
  109. /* add one more if putting into array for first time */
  110. if (arr && inode) {
  111. *arr = igrab(inode);
  112. BUG_ON(!*arr);
  113. }
  114. mutex_unlock(&osb->system_file_mutex);
  115. return inode;
  116. }
  117. static struct inode * _ocfs2_get_system_file_inode(struct ocfs2_super *osb,
  118. int type,
  119. u32 slot)
  120. {
  121. char namebuf[40];
  122. struct inode *inode = NULL;
  123. u64 blkno;
  124. int status = 0;
  125. ocfs2_sprintf_system_inode_name(namebuf,
  126. sizeof(namebuf),
  127. type, slot);
  128. status = ocfs2_lookup_ino_from_name(osb->sys_root_inode, namebuf,
  129. strlen(namebuf), &blkno);
  130. if (status < 0) {
  131. goto bail;
  132. }
  133. inode = ocfs2_iget(osb, blkno, OCFS2_FI_FLAG_SYSFILE, type);
  134. if (IS_ERR(inode)) {
  135. mlog_errno(PTR_ERR(inode));
  136. inode = NULL;
  137. goto bail;
  138. }
  139. #ifdef CONFIG_DEBUG_LOCK_ALLOC
  140. if (type == LOCAL_USER_QUOTA_SYSTEM_INODE ||
  141. type == LOCAL_GROUP_QUOTA_SYSTEM_INODE ||
  142. type == JOURNAL_SYSTEM_INODE) {
  143. /* Ignore inode lock on these inodes as the lock does not
  144. * really belong to any process and lockdep cannot handle
  145. * that */
  146. OCFS2_I(inode)->ip_inode_lockres.l_lockdep_map.key = NULL;
  147. } else {
  148. lockdep_init_map(&OCFS2_I(inode)->ip_inode_lockres.
  149. l_lockdep_map,
  150. ocfs2_system_inodes[type].si_name,
  151. &ocfs2_sysfile_cluster_lock_key[type], 0);
  152. }
  153. #endif
  154. bail:
  155. return inode;
  156. }