1 // SPDX-License-Identifier: GPL-2.0-or-later
5 * Initialize, read, write, etc. system files.
7 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
11 #include <linux/types.h>
12 #include <linux/highmem.h>
14 #include <cluster/masklog.h>
24 #include "buffer_head_io.h"
26 static struct inode
* _ocfs2_get_system_file_inode(struct ocfs2_super
*osb
,
30 #ifdef CONFIG_DEBUG_LOCK_ALLOC
31 static struct lock_class_key ocfs2_sysfile_cluster_lock_key
[NUM_SYSTEM_INODES
];
34 static inline int is_global_system_inode(int type
)
36 return type
>= OCFS2_FIRST_ONLINE_SYSTEM_INODE
&&
37 type
<= OCFS2_LAST_GLOBAL_SYSTEM_INODE
;
40 static struct inode
**get_local_system_inode(struct ocfs2_super
*osb
,
45 struct inode
**local_system_inodes
, **free
= NULL
;
47 BUG_ON(slot
== OCFS2_INVALID_SLOT
);
48 BUG_ON(type
< OCFS2_FIRST_LOCAL_SYSTEM_INODE
||
49 type
> OCFS2_LAST_LOCAL_SYSTEM_INODE
);
51 spin_lock(&osb
->osb_lock
);
52 local_system_inodes
= osb
->local_system_inodes
;
53 spin_unlock(&osb
->osb_lock
);
55 if (unlikely(!local_system_inodes
)) {
57 kzalloc(array3_size(sizeof(struct inode
*),
58 NUM_LOCAL_SYSTEM_INODES
,
61 if (!local_system_inodes
) {
64 * return NULL here so that ocfs2_get_sytem_file_inodes
65 * will try to create an inode and use it. We will try
66 * to initialize local_system_inodes next time.
71 spin_lock(&osb
->osb_lock
);
72 if (osb
->local_system_inodes
) {
73 /* Someone has initialized it for us. */
74 free
= local_system_inodes
;
75 local_system_inodes
= osb
->local_system_inodes
;
77 osb
->local_system_inodes
= local_system_inodes
;
78 spin_unlock(&osb
->osb_lock
);
82 index
= (slot
* NUM_LOCAL_SYSTEM_INODES
) +
83 (type
- OCFS2_FIRST_LOCAL_SYSTEM_INODE
);
85 return &local_system_inodes
[index
];
88 struct inode
*ocfs2_get_system_file_inode(struct ocfs2_super
*osb
,
92 struct inode
*inode
= NULL
;
93 struct inode
**arr
= NULL
;
95 /* avoid the lookup if cached in local system file array */
96 if (is_global_system_inode(type
)) {
97 arr
= &(osb
->global_system_inodes
[type
]);
99 arr
= get_local_system_inode(osb
, type
, slot
);
101 mutex_lock(&osb
->system_file_mutex
);
102 if (arr
&& ((inode
= *arr
) != NULL
)) {
103 /* get a ref in addition to the array ref */
104 inode
= igrab(inode
);
105 mutex_unlock(&osb
->system_file_mutex
);
111 /* this gets one ref thru iget */
112 inode
= _ocfs2_get_system_file_inode(osb
, type
, slot
);
114 /* add one more if putting into array for first time */
119 mutex_unlock(&osb
->system_file_mutex
);
123 static struct inode
* _ocfs2_get_system_file_inode(struct ocfs2_super
*osb
,
128 struct inode
*inode
= NULL
;
132 ocfs2_sprintf_system_inode_name(namebuf
,
136 status
= ocfs2_lookup_ino_from_name(osb
->sys_root_inode
, namebuf
,
137 strlen(namebuf
), &blkno
);
142 inode
= ocfs2_iget(osb
, blkno
, OCFS2_FI_FLAG_SYSFILE
, type
);
144 mlog_errno(PTR_ERR(inode
));
148 #ifdef CONFIG_DEBUG_LOCK_ALLOC
149 if (type
== LOCAL_USER_QUOTA_SYSTEM_INODE
||
150 type
== LOCAL_GROUP_QUOTA_SYSTEM_INODE
||
151 type
== JOURNAL_SYSTEM_INODE
) {
152 /* Ignore inode lock on these inodes as the lock does not
153 * really belong to any process and lockdep cannot handle
155 OCFS2_I(inode
)->ip_inode_lockres
.l_lockdep_map
.key
= NULL
;
157 lockdep_init_map(&OCFS2_I(inode
)->ip_inode_lockres
.
159 ocfs2_system_inodes
[type
].si_name
,
160 &ocfs2_sysfile_cluster_lock_key
[type
], 0);