summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorDarrick J. Wong <darrick.wong@oracle.com>2020-10-25 17:16:02 -0700
committerDarrick J. Wong <darrick.wong@oracle.com>2020-10-26 18:32:30 -0700
commit0491ae7c38cded2cda562815156fdc0826215c48 (patch)
treee46955933214e4e99d886b71b6fa301c176e4905 /fs
parent2546e0140aa85d37bfa7e420cbbe2acf995ca06f (diff)
xfs: iget for metadata inodes
Create a xfs_iget_meta function for metadata inodes to ensure that we always check that the inobt thinks a metadata inode is in use. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/xfs/libxfs/xfs_imeta.h5
-rw-r--r--fs/xfs/xfs_icache.c36
-rw-r--r--fs/xfs/xfs_inode.c7
-rw-r--r--fs/xfs/xfs_qm.c33
-rw-r--r--fs/xfs/xfs_qm_syscalls.c4
-rw-r--r--fs/xfs/xfs_rtalloc.c14
6 files changed, 77 insertions, 22 deletions
diff --git a/fs/xfs/libxfs/xfs_imeta.h b/fs/xfs/libxfs/xfs_imeta.h
index 0d7199f9bfd4..d85cabc41ace 100644
--- a/fs/xfs/libxfs/xfs_imeta.h
+++ b/fs/xfs/libxfs/xfs_imeta.h
@@ -43,4 +43,9 @@ int xfs_imeta_mount(struct xfs_mount *mp);
unsigned int xfs_imeta_create_space_res(struct xfs_mount *mp);
unsigned int xfs_imeta_unlink_space_res(struct xfs_mount *mp);
+/* Must be implemented by the libxfs client */
+int xfs_imeta_iget(struct xfs_mount *mp, xfs_ino_t ino, unsigned char ftype,
+ struct xfs_inode **ipp);
+void xfs_imeta_irele(struct xfs_inode *ip);
+
#endif /* __XFS_IMETA_H__ */
diff --git a/fs/xfs/xfs_icache.c b/fs/xfs/xfs_icache.c
index a2096ca82504..e7c804b90639 100644
--- a/fs/xfs/xfs_icache.c
+++ b/fs/xfs/xfs_icache.c
@@ -24,6 +24,9 @@
#include "xfs_reflink.h"
#include "xfs_ialloc.h"
#include "xfs_health.h"
+#include "xfs_da_format.h"
+#include "xfs_dir2.h"
+#include "xfs_imeta.h"
#include <linux/iversion.h>
#include <linux/nmi.h>
@@ -867,6 +870,39 @@ xfs_icache_inode_is_allocated(
return 0;
}
+/* Get a metadata inode. The ftype must match exactly. */
+int
+xfs_imeta_iget(
+ struct xfs_mount *mp,
+ xfs_ino_t ino,
+ unsigned char ftype,
+ struct xfs_inode **ipp)
+{
+ struct xfs_inode *ip;
+ int error;
+
+ ASSERT(ftype != XFS_DIR3_FT_UNKNOWN);
+
+ error = xfs_iget(mp, NULL, ino, XFS_IGET_UNTRUSTED, 0, &ip);
+ if (error == -EFSCORRUPTED)
+ goto whine;
+ if (error)
+ return error;
+
+ if (VFS_I(ip)->i_nlink == 0)
+ goto bad_rele;
+ if (xfs_mode_to_ftype(VFS_I(ip)->i_mode) != ftype)
+ goto bad_rele;
+
+ *ipp = ip;
+ return 0;
+bad_rele:
+ xfs_irele(ip);
+whine:
+ xfs_err(mp, "metadata inode 0x%llx is corrupt", ino);
+ return -EFSCORRUPTED;
+}
+
/*
* The inode lookup is done in batches to keep the amount of lock traffic and
* radix tree lookups to a minimum. The batch size is a trade off between
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c
index 64f798697b42..2fed392c158c 100644
--- a/fs/xfs/xfs_inode.c
+++ b/fs/xfs/xfs_inode.c
@@ -2743,6 +2743,13 @@ xfs_irele(
iput(VFS_I(ip));
}
+void
+xfs_imeta_irele(
+ struct xfs_inode *ip)
+{
+ xfs_irele(ip);
+}
+
/*
* Ensure all commited transactions touching the inode are written to the log.
*/
diff --git a/fs/xfs/xfs_qm.c b/fs/xfs/xfs_qm.c
index e157c9e835af..defea0132b81 100644
--- a/fs/xfs/xfs_qm.c
+++ b/fs/xfs/xfs_qm.c
@@ -25,6 +25,7 @@
#include "xfs_error.h"
#include "xfs_health.h"
#include "xfs_imeta.h"
+#include "xfs_da_format.h"
/*
* The global quota manager. There is only one of these for the entire
@@ -234,15 +235,15 @@ xfs_qm_unmount_quotas(
*/
if (mp->m_quotainfo) {
if (mp->m_quotainfo->qi_uquotaip) {
- xfs_irele(mp->m_quotainfo->qi_uquotaip);
+ xfs_imeta_irele(mp->m_quotainfo->qi_uquotaip);
mp->m_quotainfo->qi_uquotaip = NULL;
}
if (mp->m_quotainfo->qi_gquotaip) {
- xfs_irele(mp->m_quotainfo->qi_gquotaip);
+ xfs_imeta_irele(mp->m_quotainfo->qi_gquotaip);
mp->m_quotainfo->qi_gquotaip = NULL;
}
if (mp->m_quotainfo->qi_pquotaip) {
- xfs_irele(mp->m_quotainfo->qi_pquotaip);
+ xfs_imeta_irele(mp->m_quotainfo->qi_pquotaip);
mp->m_quotainfo->qi_pquotaip = NULL;
}
}
@@ -810,7 +811,7 @@ xfs_qm_qino_switch(
if (ino == NULLFSINO)
return 0;
- error = xfs_iget(mp, NULL, ino, 0, 0, ip);
+ error = xfs_imeta_iget(mp, ino, XFS_DIR3_FT_REG_FILE, ip);
if (error)
return error;
@@ -1566,24 +1567,24 @@ xfs_qm_init_quotainos(
if (XFS_IS_UQUOTA_ON(mp) &&
mp->m_sb.sb_uquotino != NULLFSINO) {
ASSERT(mp->m_sb.sb_uquotino > 0);
- error = xfs_iget(mp, NULL, mp->m_sb.sb_uquotino,
- 0, 0, &uip);
+ error = xfs_imeta_iget(mp, mp->m_sb.sb_uquotino,
+ XFS_DIR3_FT_REG_FILE, &uip);
if (error)
return error;
}
if (XFS_IS_GQUOTA_ON(mp) &&
mp->m_sb.sb_gquotino != NULLFSINO) {
ASSERT(mp->m_sb.sb_gquotino > 0);
- error = xfs_iget(mp, NULL, mp->m_sb.sb_gquotino,
- 0, 0, &gip);
+ error = xfs_imeta_iget(mp, mp->m_sb.sb_gquotino,
+ XFS_DIR3_FT_REG_FILE, &gip);
if (error)
goto error_rele;
}
if (XFS_IS_PQUOTA_ON(mp) &&
mp->m_sb.sb_pquotino != NULLFSINO) {
ASSERT(mp->m_sb.sb_pquotino > 0);
- error = xfs_iget(mp, NULL, mp->m_sb.sb_pquotino,
- 0, 0, &pip);
+ error = xfs_imeta_iget(mp, mp->m_sb.sb_pquotino,
+ XFS_DIR3_FT_REG_FILE, &pip);
if (error)
goto error_rele;
}
@@ -1628,11 +1629,11 @@ xfs_qm_init_quotainos(
error_rele:
if (uip)
- xfs_irele(uip);
+ xfs_imeta_irele(uip);
if (gip)
- xfs_irele(gip);
+ xfs_imeta_irele(gip);
if (pip)
- xfs_irele(pip);
+ xfs_imeta_irele(pip);
return error;
}
@@ -1641,15 +1642,15 @@ xfs_qm_destroy_quotainos(
struct xfs_quotainfo *qi)
{
if (qi->qi_uquotaip) {
- xfs_irele(qi->qi_uquotaip);
+ xfs_imeta_irele(qi->qi_uquotaip);
qi->qi_uquotaip = NULL; /* paranoia */
}
if (qi->qi_gquotaip) {
- xfs_irele(qi->qi_gquotaip);
+ xfs_imeta_irele(qi->qi_gquotaip);
qi->qi_gquotaip = NULL;
}
if (qi->qi_pquotaip) {
- xfs_irele(qi->qi_pquotaip);
+ xfs_imeta_irele(qi->qi_pquotaip);
qi->qi_pquotaip = NULL;
}
}
diff --git a/fs/xfs/xfs_qm_syscalls.c b/fs/xfs/xfs_qm_syscalls.c
index 34d052935684..816063d63faf 100644
--- a/fs/xfs/xfs_qm_syscalls.c
+++ b/fs/xfs/xfs_qm_syscalls.c
@@ -18,6 +18,8 @@
#include "xfs_quota.h"
#include "xfs_qm.h"
#include "xfs_icache.h"
+#include "xfs_imeta.h"
+#include "xfs_da_format.h"
STATIC int
xfs_qm_log_quotaoff(
@@ -284,7 +286,7 @@ xfs_qm_scall_trunc_qfile(
if (ino == NULLFSINO)
return 0;
- error = xfs_iget(mp, NULL, ino, 0, 0, &ip);
+ error = xfs_imeta_iget(mp, ino, XFS_DIR3_FT_REG_FILE, &ip);
if (error)
return error;
diff --git a/fs/xfs/xfs_rtalloc.c b/fs/xfs/xfs_rtalloc.c
index 20e41e47b3eb..30d162643b6b 100644
--- a/fs/xfs/xfs_rtalloc.c
+++ b/fs/xfs/xfs_rtalloc.c
@@ -20,6 +20,8 @@
#include "xfs_rtalloc.h"
#include "xfs_sb.h"
#include "xfs_health.h"
+#include "xfs_da_format.h"
+#include "xfs_imeta.h"
/*
* Read and return the summary information for a given extent size,
@@ -1265,18 +1267,20 @@ xfs_rtmount_inodes(
xfs_sb_t *sbp;
sbp = &mp->m_sb;
- error = xfs_iget(mp, NULL, sbp->sb_rbmino, 0, 0, &mp->m_rbmip);
+ error = xfs_imeta_iget(mp, mp->m_sb.sb_rbmino, XFS_DIR3_FT_REG_FILE,
+ &mp->m_rbmip);
if (xfs_metadata_is_sick(error))
xfs_rt_mark_sick(mp, XFS_SICK_RT_BITMAP);
if (error)
return error;
ASSERT(mp->m_rbmip != NULL);
- error = xfs_iget(mp, NULL, sbp->sb_rsumino, 0, 0, &mp->m_rsumip);
+ error = xfs_imeta_iget(mp, mp->m_sb.sb_rsumino, XFS_DIR3_FT_REG_FILE,
+ &mp->m_rsumip);
if (xfs_metadata_is_sick(error))
xfs_rt_mark_sick(mp, XFS_SICK_RT_SUMMARY);
if (error) {
- xfs_irele(mp->m_rbmip);
+ xfs_imeta_irele(mp->m_rbmip);
return error;
}
ASSERT(mp->m_rsumip != NULL);
@@ -1290,9 +1294,9 @@ xfs_rtunmount_inodes(
{
kmem_free(mp->m_rsum_cache);
if (mp->m_rbmip)
- xfs_irele(mp->m_rbmip);
+ xfs_imeta_irele(mp->m_rbmip);
if (mp->m_rsumip)
- xfs_irele(mp->m_rsumip);
+ xfs_imeta_irele(mp->m_rsumip);
}
/*