xref: /openbmc/linux/fs/xfs/xfs_itable.c (revision 4b8fdfecd84528e044a6ca32242de641b203995b)
11da177e4SLinus Torvalds /*
27b718769SNathan Scott  * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
37b718769SNathan Scott  * All Rights Reserved.
41da177e4SLinus Torvalds  *
57b718769SNathan Scott  * This program is free software; you can redistribute it and/or
67b718769SNathan Scott  * modify it under the terms of the GNU General Public License as
71da177e4SLinus Torvalds  * published by the Free Software Foundation.
81da177e4SLinus Torvalds  *
97b718769SNathan Scott  * This program is distributed in the hope that it would be useful,
107b718769SNathan Scott  * but WITHOUT ANY WARRANTY; without even the implied warranty of
117b718769SNathan Scott  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
127b718769SNathan Scott  * GNU General Public License for more details.
131da177e4SLinus Torvalds  *
147b718769SNathan Scott  * You should have received a copy of the GNU General Public License
157b718769SNathan Scott  * along with this program; if not, write the Free Software Foundation,
167b718769SNathan Scott  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
171da177e4SLinus Torvalds  */
181da177e4SLinus Torvalds #include "xfs.h"
19a844f451SNathan Scott #include "xfs_fs.h"
2070a9883cSDave Chinner #include "xfs_shared.h"
21a4fbe6abSDave Chinner #include "xfs_format.h"
22239880efSDave Chinner #include "xfs_log_format.h"
23239880efSDave Chinner #include "xfs_trans_resv.h"
24a844f451SNathan Scott #include "xfs_inum.h"
251da177e4SLinus Torvalds #include "xfs_sb.h"
26a844f451SNathan Scott #include "xfs_ag.h"
271da177e4SLinus Torvalds #include "xfs_mount.h"
281da177e4SLinus Torvalds #include "xfs_inode.h"
29a4fbe6abSDave Chinner #include "xfs_btree.h"
301da177e4SLinus Torvalds #include "xfs_ialloc.h"
31a4fbe6abSDave Chinner #include "xfs_ialloc_btree.h"
321da177e4SLinus Torvalds #include "xfs_itable.h"
331da177e4SLinus Torvalds #include "xfs_error.h"
34f2d67614SChristoph Hellwig #include "xfs_trace.h"
3533479e05SDave Chinner #include "xfs_icache.h"
36a4fbe6abSDave Chinner #include "xfs_dinode.h"
371da177e4SLinus Torvalds 
38d96f8f89SEric Sandeen STATIC int
396f1f2168SVlad Apostolov xfs_internal_inum(
406f1f2168SVlad Apostolov 	xfs_mount_t	*mp,
416f1f2168SVlad Apostolov 	xfs_ino_t	ino)
426f1f2168SVlad Apostolov {
436f1f2168SVlad Apostolov 	return (ino == mp->m_sb.sb_rbmino || ino == mp->m_sb.sb_rsumino ||
4462118709SEric Sandeen 		(xfs_sb_version_hasquota(&mp->m_sb) &&
459cad19d2SChandra Seetharaman 		 xfs_is_quota_inode(&mp->m_sb, ino)));
466f1f2168SVlad Apostolov }
476f1f2168SVlad Apostolov 
487dce11dbSChristoph Hellwig /*
497dce11dbSChristoph Hellwig  * Return stat information for one inode.
507dce11dbSChristoph Hellwig  * Return 0 if ok, else errno.
517dce11dbSChristoph Hellwig  */
527dce11dbSChristoph Hellwig int
537dce11dbSChristoph Hellwig xfs_bulkstat_one_int(
547dce11dbSChristoph Hellwig 	struct xfs_mount	*mp,		/* mount point for filesystem */
557dce11dbSChristoph Hellwig 	xfs_ino_t		ino,		/* inode to get data for */
567dce11dbSChristoph Hellwig 	void __user		*buffer,	/* buffer to place output in */
577dce11dbSChristoph Hellwig 	int			ubsize,		/* size of buffer */
587dce11dbSChristoph Hellwig 	bulkstat_one_fmt_pf	formatter,	/* formatter, copy to user */
597dce11dbSChristoph Hellwig 	int			*ubused,	/* bytes used by me */
601da177e4SLinus Torvalds 	int			*stat)		/* BULKSTAT_RV_... */
611da177e4SLinus Torvalds {
627dce11dbSChristoph Hellwig 	struct xfs_icdinode	*dic;		/* dinode core info pointer */
637dce11dbSChristoph Hellwig 	struct xfs_inode	*ip;		/* incore inode pointer */
647dce11dbSChristoph Hellwig 	struct xfs_bstat	*buf;		/* return buffer */
657dce11dbSChristoph Hellwig 	int			error = 0;	/* error value */
667dce11dbSChristoph Hellwig 
677dce11dbSChristoph Hellwig 	*stat = BULKSTAT_RV_NOTHING;
687dce11dbSChristoph Hellwig 
697dce11dbSChristoph Hellwig 	if (!buffer || xfs_internal_inum(mp, ino))
702451337dSDave Chinner 		return -EINVAL;
717dce11dbSChristoph Hellwig 
727dce11dbSChristoph Hellwig 	buf = kmem_alloc(sizeof(*buf), KM_SLEEP | KM_MAYFAIL);
737dce11dbSChristoph Hellwig 	if (!buf)
742451337dSDave Chinner 		return -ENOMEM;
751da177e4SLinus Torvalds 
76745b1f47SNathan Scott 	error = xfs_iget(mp, NULL, ino,
775132ba8fSDave Chinner 			 (XFS_IGET_DONTCACHE | XFS_IGET_UNTRUSTED),
785132ba8fSDave Chinner 			 XFS_ILOCK_SHARED, &ip);
798fe65776SJie Liu 	if (error)
807dce11dbSChristoph Hellwig 		goto out_free;
811da177e4SLinus Torvalds 
821da177e4SLinus Torvalds 	ASSERT(ip != NULL);
8392bfc6e7SChristoph Hellwig 	ASSERT(ip->i_imap.im_blkno != 0);
841da177e4SLinus Torvalds 
851da177e4SLinus Torvalds 	dic = &ip->i_d;
861da177e4SLinus Torvalds 
871da177e4SLinus Torvalds 	/* xfs_iget returns the following without needing
881da177e4SLinus Torvalds 	 * further change.
891da177e4SLinus Torvalds 	 */
901da177e4SLinus Torvalds 	buf->bs_nlink = dic->di_nlink;
916743099cSArkadiusz Mi?kiewicz 	buf->bs_projid_lo = dic->di_projid_lo;
926743099cSArkadiusz Mi?kiewicz 	buf->bs_projid_hi = dic->di_projid_hi;
931da177e4SLinus Torvalds 	buf->bs_ino = ino;
941da177e4SLinus Torvalds 	buf->bs_mode = dic->di_mode;
951da177e4SLinus Torvalds 	buf->bs_uid = dic->di_uid;
961da177e4SLinus Torvalds 	buf->bs_gid = dic->di_gid;
971da177e4SLinus Torvalds 	buf->bs_size = dic->di_size;
988a9c9980SChristoph Hellwig 	buf->bs_atime.tv_sec = dic->di_atime.t_sec;
998a9c9980SChristoph Hellwig 	buf->bs_atime.tv_nsec = dic->di_atime.t_nsec;
1008a9c9980SChristoph Hellwig 	buf->bs_mtime.tv_sec = dic->di_mtime.t_sec;
1018a9c9980SChristoph Hellwig 	buf->bs_mtime.tv_nsec = dic->di_mtime.t_nsec;
1028a9c9980SChristoph Hellwig 	buf->bs_ctime.tv_sec = dic->di_ctime.t_sec;
1038a9c9980SChristoph Hellwig 	buf->bs_ctime.tv_nsec = dic->di_ctime.t_nsec;
1041da177e4SLinus Torvalds 	buf->bs_xflags = xfs_ip2xflags(ip);
1051da177e4SLinus Torvalds 	buf->bs_extsize = dic->di_extsize << mp->m_sb.sb_blocklog;
1061da177e4SLinus Torvalds 	buf->bs_extents = dic->di_nextents;
1071da177e4SLinus Torvalds 	buf->bs_gen = dic->di_gen;
1081da177e4SLinus Torvalds 	memset(buf->bs_pad, 0, sizeof(buf->bs_pad));
1091da177e4SLinus Torvalds 	buf->bs_dmevmask = dic->di_dmevmask;
1101da177e4SLinus Torvalds 	buf->bs_dmstate = dic->di_dmstate;
1111da177e4SLinus Torvalds 	buf->bs_aextents = dic->di_anextents;
11207000ee6SDave Chinner 	buf->bs_forkoff = XFS_IFORK_BOFF(ip);
1131da177e4SLinus Torvalds 
1141da177e4SLinus Torvalds 	switch (dic->di_format) {
1151da177e4SLinus Torvalds 	case XFS_DINODE_FMT_DEV:
1161da177e4SLinus Torvalds 		buf->bs_rdev = ip->i_df.if_u2.if_rdev;
1171da177e4SLinus Torvalds 		buf->bs_blksize = BLKDEV_IOSIZE;
1181da177e4SLinus Torvalds 		buf->bs_blocks = 0;
1191da177e4SLinus Torvalds 		break;
1201da177e4SLinus Torvalds 	case XFS_DINODE_FMT_LOCAL:
1211da177e4SLinus Torvalds 	case XFS_DINODE_FMT_UUID:
1221da177e4SLinus Torvalds 		buf->bs_rdev = 0;
1231da177e4SLinus Torvalds 		buf->bs_blksize = mp->m_sb.sb_blocksize;
1241da177e4SLinus Torvalds 		buf->bs_blocks = 0;
1251da177e4SLinus Torvalds 		break;
1261da177e4SLinus Torvalds 	case XFS_DINODE_FMT_EXTENTS:
1271da177e4SLinus Torvalds 	case XFS_DINODE_FMT_BTREE:
1281da177e4SLinus Torvalds 		buf->bs_rdev = 0;
1291da177e4SLinus Torvalds 		buf->bs_blksize = mp->m_sb.sb_blocksize;
1301da177e4SLinus Torvalds 		buf->bs_blocks = dic->di_nblocks + ip->i_delayed_blks;
1311da177e4SLinus Torvalds 		break;
1321da177e4SLinus Torvalds 	}
133f2d67614SChristoph Hellwig 	xfs_iunlock(ip, XFS_ILOCK_SHARED);
134f2d67614SChristoph Hellwig 	IRELE(ip);
1357dce11dbSChristoph Hellwig 
1367dce11dbSChristoph Hellwig 	error = formatter(buffer, ubsize, ubused, buf);
1377dce11dbSChristoph Hellwig 	if (!error)
1387dce11dbSChristoph Hellwig 		*stat = BULKSTAT_RV_DIDONE;
1397dce11dbSChristoph Hellwig 
1407dce11dbSChristoph Hellwig  out_free:
1417dce11dbSChristoph Hellwig 	kmem_free(buf);
1421da177e4SLinus Torvalds 	return error;
1431da177e4SLinus Torvalds }
1441da177e4SLinus Torvalds 
14565fbaf24Ssandeen@sandeen.net /* Return 0 on success or positive error */
146faa63e95SMichal Marek STATIC int
147faa63e95SMichal Marek xfs_bulkstat_one_fmt(
148faa63e95SMichal Marek 	void			__user *ubuffer,
14965fbaf24Ssandeen@sandeen.net 	int			ubsize,
15065fbaf24Ssandeen@sandeen.net 	int			*ubused,
151faa63e95SMichal Marek 	const xfs_bstat_t	*buffer)
152faa63e95SMichal Marek {
15365fbaf24Ssandeen@sandeen.net 	if (ubsize < sizeof(*buffer))
1542451337dSDave Chinner 		return -ENOMEM;
155faa63e95SMichal Marek 	if (copy_to_user(ubuffer, buffer, sizeof(*buffer)))
1562451337dSDave Chinner 		return -EFAULT;
15765fbaf24Ssandeen@sandeen.net 	if (ubused)
15865fbaf24Ssandeen@sandeen.net 		*ubused = sizeof(*buffer);
15965fbaf24Ssandeen@sandeen.net 	return 0;
160faa63e95SMichal Marek }
161faa63e95SMichal Marek 
1622ee4fa5cSsandeen@sandeen.net int
1632ee4fa5cSsandeen@sandeen.net xfs_bulkstat_one(
1642ee4fa5cSsandeen@sandeen.net 	xfs_mount_t	*mp,		/* mount point for filesystem */
1652ee4fa5cSsandeen@sandeen.net 	xfs_ino_t	ino,		/* inode number to get data for */
1662ee4fa5cSsandeen@sandeen.net 	void		__user *buffer,	/* buffer to place output in */
1672ee4fa5cSsandeen@sandeen.net 	int		ubsize,		/* size of buffer */
1682ee4fa5cSsandeen@sandeen.net 	int		*ubused,	/* bytes used by me */
1692ee4fa5cSsandeen@sandeen.net 	int		*stat)		/* BULKSTAT_RV_... */
1702ee4fa5cSsandeen@sandeen.net {
1712ee4fa5cSsandeen@sandeen.net 	return xfs_bulkstat_one_int(mp, ino, buffer, ubsize,
1727b6259e7SDave Chinner 				    xfs_bulkstat_one_fmt, ubused, stat);
1738b56f083SNathan Scott }
1748b56f083SNathan Scott 
175*4b8fdfecSJie Liu /*
176*4b8fdfecSJie Liu  * Loop over all clusters in a chunk for a given incore inode allocation btree
177*4b8fdfecSJie Liu  * record.  Do a readahead if there are any allocated inodes in that cluster.
178*4b8fdfecSJie Liu  */
179*4b8fdfecSJie Liu STATIC void
180*4b8fdfecSJie Liu xfs_bulkstat_ichunk_ra(
181*4b8fdfecSJie Liu 	struct xfs_mount		*mp,
182*4b8fdfecSJie Liu 	xfs_agnumber_t			agno,
183*4b8fdfecSJie Liu 	struct xfs_inobt_rec_incore	*irec)
184*4b8fdfecSJie Liu {
185*4b8fdfecSJie Liu 	xfs_agblock_t			agbno;
186*4b8fdfecSJie Liu 	struct blk_plug			plug;
187*4b8fdfecSJie Liu 	int				blks_per_cluster;
188*4b8fdfecSJie Liu 	int				inodes_per_cluster;
189*4b8fdfecSJie Liu 	int				i;	/* inode chunk index */
190*4b8fdfecSJie Liu 
191*4b8fdfecSJie Liu 	agbno = XFS_AGINO_TO_AGBNO(mp, irec->ir_startino);
192*4b8fdfecSJie Liu 	blks_per_cluster = xfs_icluster_size_fsb(mp);
193*4b8fdfecSJie Liu 	inodes_per_cluster = blks_per_cluster << mp->m_sb.sb_inopblog;
194*4b8fdfecSJie Liu 
195*4b8fdfecSJie Liu 	blk_start_plug(&plug);
196*4b8fdfecSJie Liu 	for (i = 0; i < XFS_INODES_PER_CHUNK;
197*4b8fdfecSJie Liu 	     i += inodes_per_cluster, agbno += blks_per_cluster) {
198*4b8fdfecSJie Liu 		if (xfs_inobt_maskn(i, inodes_per_cluster) & ~irec->ir_free) {
199*4b8fdfecSJie Liu 			xfs_btree_reada_bufs(mp, agno, agbno, blks_per_cluster,
200*4b8fdfecSJie Liu 					     &xfs_inode_buf_ops);
201*4b8fdfecSJie Liu 		}
202*4b8fdfecSJie Liu 	}
203*4b8fdfecSJie Liu 	blk_finish_plug(&plug);
204*4b8fdfecSJie Liu }
205*4b8fdfecSJie Liu 
206cd57e594SLachlan McIlroy #define XFS_BULKSTAT_UBLEFT(ubleft)	((ubleft) >= statstruct_size)
207cd57e594SLachlan McIlroy 
2088b56f083SNathan Scott /*
2091da177e4SLinus Torvalds  * Return stat information in bulk (by-inode) for the filesystem.
2101da177e4SLinus Torvalds  */
2111da177e4SLinus Torvalds int					/* error status */
2121da177e4SLinus Torvalds xfs_bulkstat(
2131da177e4SLinus Torvalds 	xfs_mount_t		*mp,	/* mount point for filesystem */
2141da177e4SLinus Torvalds 	xfs_ino_t		*lastinop, /* last inode returned */
2151da177e4SLinus Torvalds 	int			*ubcountp, /* size of buffer/count returned */
2161da177e4SLinus Torvalds 	bulkstat_one_pf		formatter, /* func that'd fill a single buf */
2171da177e4SLinus Torvalds 	size_t			statstruct_size, /* sizeof struct filling */
2181da177e4SLinus Torvalds 	char			__user *ubuffer, /* buffer with inode stats */
219c41564b5SNathan Scott 	int			*done)	/* 1 if there are more stats to get */
2201da177e4SLinus Torvalds {
2211da177e4SLinus Torvalds 	xfs_buf_t		*agbp;	/* agi header buffer */
2221da177e4SLinus Torvalds 	xfs_agi_t		*agi;	/* agi header data */
2231da177e4SLinus Torvalds 	xfs_agino_t		agino;	/* inode # in allocation group */
2241da177e4SLinus Torvalds 	xfs_agnumber_t		agno;	/* allocation group number */
2251da177e4SLinus Torvalds 	int			chunkidx; /* current index into inode chunk */
2261da177e4SLinus Torvalds 	int			clustidx; /* current index into inode cluster */
2271da177e4SLinus Torvalds 	xfs_btree_cur_t		*cur;	/* btree cursor for ialloc btree */
2281da177e4SLinus Torvalds 	int			end_of_ag; /* set if we've seen the ag end */
2291da177e4SLinus Torvalds 	int			error;	/* error code */
2301da177e4SLinus Torvalds 	int                     fmterror;/* bulkstat formatter result */
2311da177e4SLinus Torvalds 	int			i;	/* loop index */
2321da177e4SLinus Torvalds 	int			icount;	/* count of inodes good in irbuf */
233215101c3SNathan Scott 	size_t			irbsize; /* size of irec buffer in bytes */
2341da177e4SLinus Torvalds 	xfs_ino_t		ino;	/* inode number (filesystem) */
23526275093SNathan Scott 	xfs_inobt_rec_incore_t	*irbp;	/* current irec buffer pointer */
23626275093SNathan Scott 	xfs_inobt_rec_incore_t	*irbuf;	/* start of irec buffer */
23726275093SNathan Scott 	xfs_inobt_rec_incore_t	*irbufend; /* end of good irec buffer entries */
238cd57e594SLachlan McIlroy 	xfs_ino_t		lastino; /* last inode number returned */
2391da177e4SLinus Torvalds 	int			nirbuf;	/* size of irbuf */
2401da177e4SLinus Torvalds 	int			rval;	/* return value error code */
2411da177e4SLinus Torvalds 	int			tmp;	/* result value from btree calls */
2421da177e4SLinus Torvalds 	int			ubcount; /* size of user's buffer */
2431da177e4SLinus Torvalds 	int			ubleft;	/* bytes left in user's buffer */
2441da177e4SLinus Torvalds 	char			__user *ubufp;	/* pointer into user's buffer */
2451da177e4SLinus Torvalds 	int			ubelem;	/* spaces used in user's buffer */
2461da177e4SLinus Torvalds 	int			ubused;	/* bytes used by formatter */
2471da177e4SLinus Torvalds 
2481da177e4SLinus Torvalds 	/*
2491da177e4SLinus Torvalds 	 * Get the last inode value, see if there's nothing to do.
2501da177e4SLinus Torvalds 	 */
2511da177e4SLinus Torvalds 	ino = (xfs_ino_t)*lastinop;
252cd57e594SLachlan McIlroy 	lastino = ino;
2531da177e4SLinus Torvalds 	agno = XFS_INO_TO_AGNO(mp, ino);
2541da177e4SLinus Torvalds 	agino = XFS_INO_TO_AGINO(mp, ino);
2551da177e4SLinus Torvalds 	if (agno >= mp->m_sb.sb_agcount ||
2561da177e4SLinus Torvalds 	    ino != XFS_AGINO_TO_INO(mp, agno, agino)) {
2571da177e4SLinus Torvalds 		*done = 1;
2581da177e4SLinus Torvalds 		*ubcountp = 0;
2591da177e4SLinus Torvalds 		return 0;
2601da177e4SLinus Torvalds 	}
261296dfd7fSJie Liu 
2621da177e4SLinus Torvalds 	ubcount = *ubcountp; /* statstruct's */
2631da177e4SLinus Torvalds 	ubleft = ubcount * statstruct_size; /* bytes */
2641da177e4SLinus Torvalds 	*ubcountp = ubelem = 0;
2651da177e4SLinus Torvalds 	*done = 0;
2661da177e4SLinus Torvalds 	fmterror = 0;
2671da177e4SLinus Torvalds 	ubufp = ubuffer;
268bdfb0430SChristoph Hellwig 	irbuf = kmem_zalloc_greedy(&irbsize, PAGE_SIZE, PAGE_SIZE * 4);
269bdfb0430SChristoph Hellwig 	if (!irbuf)
2702451337dSDave Chinner 		return -ENOMEM;
271bdfb0430SChristoph Hellwig 
272bb3c7d29SNathan Scott 	nirbuf = irbsize / sizeof(*irbuf);
273bb3c7d29SNathan Scott 
2741da177e4SLinus Torvalds 	/*
2751da177e4SLinus Torvalds 	 * Loop over the allocation groups, starting from the last
2761da177e4SLinus Torvalds 	 * inode returned; 0 means start of the allocation group.
2771da177e4SLinus Torvalds 	 */
2781da177e4SLinus Torvalds 	rval = 0;
279cd57e594SLachlan McIlroy 	while (XFS_BULKSTAT_UBLEFT(ubleft) && agno < mp->m_sb.sb_agcount) {
280cd57e594SLachlan McIlroy 		cond_resched();
2811da177e4SLinus Torvalds 		error = xfs_ialloc_read_agi(mp, NULL, agno, &agbp);
282d4c27348SJie Liu 		if (error)
283d4c27348SJie Liu 			break;
2841da177e4SLinus Torvalds 		agi = XFS_BUF_TO_AGI(agbp);
2851da177e4SLinus Torvalds 		/*
2861da177e4SLinus Torvalds 		 * Allocate and initialize a btree cursor for ialloc btree.
2871da177e4SLinus Torvalds 		 */
28857bd3dbeSBrian Foster 		cur = xfs_inobt_init_cursor(mp, NULL, agbp, agno,
28957bd3dbeSBrian Foster 					    XFS_BTNUM_INO);
2901da177e4SLinus Torvalds 		irbp = irbuf;
2911da177e4SLinus Torvalds 		irbufend = irbuf + nirbuf;
2921da177e4SLinus Torvalds 		end_of_ag = 0;
2931da177e4SLinus Torvalds 		/*
2941da177e4SLinus Torvalds 		 * If we're returning in the middle of an allocation group,
2951da177e4SLinus Torvalds 		 * we need to get the remainder of the chunk we're in.
2961da177e4SLinus Torvalds 		 */
2971da177e4SLinus Torvalds 		if (agino > 0) {
2982e287a73SChristoph Hellwig 			xfs_inobt_rec_incore_t r;
2992e287a73SChristoph Hellwig 
3001da177e4SLinus Torvalds 			/*
3011da177e4SLinus Torvalds 			 * Lookup the inode chunk that this inode lives in.
3021da177e4SLinus Torvalds 			 */
30321875505SChristoph Hellwig 			error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_LE,
30421875505SChristoph Hellwig 						 &tmp);
3051da177e4SLinus Torvalds 			if (!error &&	/* no I/O error */
3061da177e4SLinus Torvalds 			    tmp &&	/* lookup succeeded */
3071da177e4SLinus Torvalds 					/* got the record, should always work */
3082e287a73SChristoph Hellwig 			    !(error = xfs_inobt_get_rec(cur, &r, &i)) &&
3091da177e4SLinus Torvalds 			    i == 1 &&
3101da177e4SLinus Torvalds 					/* this is the right chunk */
3112e287a73SChristoph Hellwig 			    agino < r.ir_startino + XFS_INODES_PER_CHUNK &&
3121da177e4SLinus Torvalds 					/* lastino was not last in chunk */
3132e287a73SChristoph Hellwig 			    (chunkidx = agino - r.ir_startino + 1) <
3141da177e4SLinus Torvalds 				    XFS_INODES_PER_CHUNK &&
3151da177e4SLinus Torvalds 					/* there are some left allocated */
3169d87c319SEric Sandeen 			    xfs_inobt_maskn(chunkidx,
3172e287a73SChristoph Hellwig 				    XFS_INODES_PER_CHUNK - chunkidx) &
3182e287a73SChristoph Hellwig 				    ~r.ir_free) {
3191da177e4SLinus Torvalds 				/*
3201da177e4SLinus Torvalds 				 * Grab the chunk record.  Mark all the
3211da177e4SLinus Torvalds 				 * uninteresting inodes (because they're
3221da177e4SLinus Torvalds 				 * before our start point) free.
3231da177e4SLinus Torvalds 				 */
3241da177e4SLinus Torvalds 				for (i = 0; i < chunkidx; i++) {
3252e287a73SChristoph Hellwig 					if (XFS_INOBT_MASK(i) & ~r.ir_free)
3262e287a73SChristoph Hellwig 						r.ir_freecount++;
3271da177e4SLinus Torvalds 				}
3282e287a73SChristoph Hellwig 				r.ir_free |= xfs_inobt_maskn(0, chunkidx);
3292e287a73SChristoph Hellwig 				irbp->ir_startino = r.ir_startino;
3302e287a73SChristoph Hellwig 				irbp->ir_freecount = r.ir_freecount;
3312e287a73SChristoph Hellwig 				irbp->ir_free = r.ir_free;
3321da177e4SLinus Torvalds 				irbp++;
3332e287a73SChristoph Hellwig 				agino = r.ir_startino + XFS_INODES_PER_CHUNK;
3342e287a73SChristoph Hellwig 				icount = XFS_INODES_PER_CHUNK - r.ir_freecount;
3351da177e4SLinus Torvalds 			} else {
3361da177e4SLinus Torvalds 				/*
3371da177e4SLinus Torvalds 				 * If any of those tests failed, bump the
3381da177e4SLinus Torvalds 				 * inode number (just in case).
3391da177e4SLinus Torvalds 				 */
3401da177e4SLinus Torvalds 				agino++;
3411da177e4SLinus Torvalds 				icount = 0;
3421da177e4SLinus Torvalds 			}
3431da177e4SLinus Torvalds 			/*
3441da177e4SLinus Torvalds 			 * In any case, increment to the next record.
3451da177e4SLinus Torvalds 			 */
3461da177e4SLinus Torvalds 			if (!error)
347637aa50fSChristoph Hellwig 				error = xfs_btree_increment(cur, 0, &tmp);
3481da177e4SLinus Torvalds 		} else {
3491da177e4SLinus Torvalds 			/*
3501da177e4SLinus Torvalds 			 * Start of ag.  Lookup the first inode chunk.
3511da177e4SLinus Torvalds 			 */
35221875505SChristoph Hellwig 			error = xfs_inobt_lookup(cur, 0, XFS_LOOKUP_GE, &tmp);
3531da177e4SLinus Torvalds 			icount = 0;
3541da177e4SLinus Torvalds 		}
355d4c27348SJie Liu 		if (error)
356d4c27348SJie Liu 			break;
357d4c27348SJie Liu 
3581da177e4SLinus Torvalds 		/*
3591da177e4SLinus Torvalds 		 * Loop through inode btree records in this ag,
3601da177e4SLinus Torvalds 		 * until we run out of inodes or space in the buffer.
3611da177e4SLinus Torvalds 		 */
3621da177e4SLinus Torvalds 		while (irbp < irbufend && icount < ubcount) {
363d4c27348SJie Liu 			struct xfs_inobt_rec_incore	r;
3642e287a73SChristoph Hellwig 
3652e287a73SChristoph Hellwig 			error = xfs_inobt_get_rec(cur, &r, &i);
3662e287a73SChristoph Hellwig 			if (error || i == 0) {
3672e287a73SChristoph Hellwig 				end_of_ag = 1;
3682e287a73SChristoph Hellwig 				break;
3692e287a73SChristoph Hellwig 			}
3702e287a73SChristoph Hellwig 
3711da177e4SLinus Torvalds 			/*
3721da177e4SLinus Torvalds 			 * If this chunk has any allocated inodes, save it.
37326275093SNathan Scott 			 * Also start read-ahead now for this chunk.
3741da177e4SLinus Torvalds 			 */
3752e287a73SChristoph Hellwig 			if (r.ir_freecount < XFS_INODES_PER_CHUNK) {
376*4b8fdfecSJie Liu 				xfs_bulkstat_ichunk_ra(mp, agno, &r);
3772e287a73SChristoph Hellwig 				irbp->ir_startino = r.ir_startino;
3782e287a73SChristoph Hellwig 				irbp->ir_freecount = r.ir_freecount;
3792e287a73SChristoph Hellwig 				irbp->ir_free = r.ir_free;
3801da177e4SLinus Torvalds 				irbp++;
3812e287a73SChristoph Hellwig 				icount += XFS_INODES_PER_CHUNK - r.ir_freecount;
3821da177e4SLinus Torvalds 			}
3831da177e4SLinus Torvalds 			/*
3841da177e4SLinus Torvalds 			 * Set agino to after this chunk and bump the cursor.
3851da177e4SLinus Torvalds 			 */
3862e287a73SChristoph Hellwig 			agino = r.ir_startino + XFS_INODES_PER_CHUNK;
387637aa50fSChristoph Hellwig 			error = xfs_btree_increment(cur, 0, &tmp);
388cd57e594SLachlan McIlroy 			cond_resched();
3891da177e4SLinus Torvalds 		}
3901da177e4SLinus Torvalds 		/*
3911da177e4SLinus Torvalds 		 * Drop the btree buffers and the agi buffer.
3921da177e4SLinus Torvalds 		 * We can't hold any of the locks these represent
3931da177e4SLinus Torvalds 		 * when calling iget.
3941da177e4SLinus Torvalds 		 */
3951da177e4SLinus Torvalds 		xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
3961da177e4SLinus Torvalds 		xfs_buf_relse(agbp);
3971da177e4SLinus Torvalds 		/*
3981da177e4SLinus Torvalds 		 * Now format all the good inodes into the user's buffer.
3991da177e4SLinus Torvalds 		 */
4001da177e4SLinus Torvalds 		irbufend = irbp;
4011da177e4SLinus Torvalds 		for (irbp = irbuf;
402cd57e594SLachlan McIlroy 		     irbp < irbufend && XFS_BULKSTAT_UBLEFT(ubleft); irbp++) {
4031da177e4SLinus Torvalds 			/*
4041da177e4SLinus Torvalds 			 * Now process this chunk of inodes.
4051da177e4SLinus Torvalds 			 */
40626275093SNathan Scott 			for (agino = irbp->ir_startino, chunkidx = clustidx = 0;
407cd57e594SLachlan McIlroy 			     XFS_BULKSTAT_UBLEFT(ubleft) &&
40826275093SNathan Scott 				irbp->ir_freecount < XFS_INODES_PER_CHUNK;
4091da177e4SLinus Torvalds 			     chunkidx++, clustidx++, agino++) {
4101da177e4SLinus Torvalds 				ASSERT(chunkidx < XFS_INODES_PER_CHUNK);
4119cee4c5bSJie Liu 
412c2cba57eSLachlan McIlroy 				ino = XFS_AGINO_TO_INO(mp, agno, agino);
4131da177e4SLinus Torvalds 				/*
4141da177e4SLinus Torvalds 				 * Skip if this inode is free.
4151da177e4SLinus Torvalds 				 */
416c2cba57eSLachlan McIlroy 				if (XFS_INOBT_MASK(chunkidx) & irbp->ir_free) {
417c2cba57eSLachlan McIlroy 					lastino = ino;
4181da177e4SLinus Torvalds 					continue;
419c2cba57eSLachlan McIlroy 				}
4201da177e4SLinus Torvalds 				/*
4211da177e4SLinus Torvalds 				 * Count used inodes as free so we can tell
4221da177e4SLinus Torvalds 				 * when the chunk is used up.
4231da177e4SLinus Torvalds 				 */
42426275093SNathan Scott 				irbp->ir_freecount++;
4251da177e4SLinus Torvalds 
4261da177e4SLinus Torvalds 				/*
4271da177e4SLinus Torvalds 				 * Get the inode and fill in a single buffer.
4281da177e4SLinus Torvalds 				 */
4291da177e4SLinus Torvalds 				ubused = statstruct_size;
4307b6259e7SDave Chinner 				error = formatter(mp, ino, ubufp, ubleft,
4317dce11dbSChristoph Hellwig 						  &ubused, &fmterror);
4321da177e4SLinus Torvalds 				if (fmterror == BULKSTAT_RV_NOTHING) {
4332451337dSDave Chinner 					if (error && error != -ENOENT &&
4342451337dSDave Chinner 						error != -EINVAL) {
43522de606aSVlad Apostolov 						ubleft = 0;
43622de606aSVlad Apostolov 						rval = error;
43722de606aSVlad Apostolov 						break;
43822de606aSVlad Apostolov 					}
4396e73b418SVlad Apostolov 					lastino = ino;
4401da177e4SLinus Torvalds 					continue;
4411da177e4SLinus Torvalds 				}
4421da177e4SLinus Torvalds 				if (fmterror == BULKSTAT_RV_GIVEUP) {
4431da177e4SLinus Torvalds 					ubleft = 0;
4441da177e4SLinus Torvalds 					ASSERT(error);
4451da177e4SLinus Torvalds 					rval = error;
4461da177e4SLinus Torvalds 					break;
4471da177e4SLinus Torvalds 				}
4481da177e4SLinus Torvalds 				if (ubufp)
4491da177e4SLinus Torvalds 					ubufp += ubused;
4501da177e4SLinus Torvalds 				ubleft -= ubused;
4511da177e4SLinus Torvalds 				ubelem++;
4521da177e4SLinus Torvalds 				lastino = ino;
4531da177e4SLinus Torvalds 			}
454cd57e594SLachlan McIlroy 
455cd57e594SLachlan McIlroy 			cond_resched();
4561da177e4SLinus Torvalds 		}
4571da177e4SLinus Torvalds 		/*
4581da177e4SLinus Torvalds 		 * Set up for the next loop iteration.
4591da177e4SLinus Torvalds 		 */
460cd57e594SLachlan McIlroy 		if (XFS_BULKSTAT_UBLEFT(ubleft)) {
4611da177e4SLinus Torvalds 			if (end_of_ag) {
4621da177e4SLinus Torvalds 				agno++;
4631da177e4SLinus Torvalds 				agino = 0;
464cd57e594SLachlan McIlroy 			} else
465cd57e594SLachlan McIlroy 				agino = XFS_INO_TO_AGINO(mp, lastino);
4661da177e4SLinus Torvalds 		} else
4671da177e4SLinus Torvalds 			break;
4681da177e4SLinus Torvalds 	}
4691da177e4SLinus Torvalds 	/*
4701da177e4SLinus Torvalds 	 * Done, we're either out of filesystem or space to put the data.
4711da177e4SLinus Torvalds 	 */
472fdd3cceeSDave Chinner 	kmem_free(irbuf);
4731da177e4SLinus Torvalds 	*ubcountp = ubelem;
474cd57e594SLachlan McIlroy 	/*
475cd57e594SLachlan McIlroy 	 * Found some inodes, return them now and return the error next time.
476cd57e594SLachlan McIlroy 	 */
477cd57e594SLachlan McIlroy 	if (ubelem)
478cd57e594SLachlan McIlroy 		rval = 0;
4791da177e4SLinus Torvalds 	if (agno >= mp->m_sb.sb_agcount) {
4801da177e4SLinus Torvalds 		/*
4811da177e4SLinus Torvalds 		 * If we ran out of filesystem, mark lastino as off
4821da177e4SLinus Torvalds 		 * the end of the filesystem, so the next call
4831da177e4SLinus Torvalds 		 * will return immediately.
4841da177e4SLinus Torvalds 		 */
4851da177e4SLinus Torvalds 		*lastinop = (xfs_ino_t)XFS_AGINO_TO_INO(mp, agno, 0);
4861da177e4SLinus Torvalds 		*done = 1;
4871da177e4SLinus Torvalds 	} else
4881da177e4SLinus Torvalds 		*lastinop = (xfs_ino_t)lastino;
4891da177e4SLinus Torvalds 
4901da177e4SLinus Torvalds 	return rval;
4911da177e4SLinus Torvalds }
4921da177e4SLinus Torvalds 
493faa63e95SMichal Marek int
494faa63e95SMichal Marek xfs_inumbers_fmt(
495faa63e95SMichal Marek 	void			__user *ubuffer, /* buffer to write to */
496549fa006SJie Liu 	const struct xfs_inogrp	*buffer,	/* buffer to read from */
497faa63e95SMichal Marek 	long			count,		/* # of elements to read */
498faa63e95SMichal Marek 	long			*written)	/* # of bytes written */
499faa63e95SMichal Marek {
500faa63e95SMichal Marek 	if (copy_to_user(ubuffer, buffer, count * sizeof(*buffer)))
501faa63e95SMichal Marek 		return -EFAULT;
502faa63e95SMichal Marek 	*written = count * sizeof(*buffer);
503faa63e95SMichal Marek 	return 0;
504faa63e95SMichal Marek }
505faa63e95SMichal Marek 
5061da177e4SLinus Torvalds /*
5071da177e4SLinus Torvalds  * Return inode number table for the filesystem.
5081da177e4SLinus Torvalds  */
5091da177e4SLinus Torvalds int					/* error status */
5101da177e4SLinus Torvalds xfs_inumbers(
511549fa006SJie Liu 	struct xfs_mount	*mp,/* mount point for filesystem */
5121da177e4SLinus Torvalds 	xfs_ino_t		*lastino,/* last inode returned */
5131da177e4SLinus Torvalds 	int			*count,/* size of buffer/count returned */
514faa63e95SMichal Marek 	void			__user *ubuffer,/* buffer with inode descriptions */
515faa63e95SMichal Marek 	inumbers_fmt_pf		formatter)
5161da177e4SLinus Torvalds {
517549fa006SJie Liu 	xfs_agnumber_t		agno = XFS_INO_TO_AGNO(mp, *lastino);
518549fa006SJie Liu 	xfs_agino_t		agino = XFS_INO_TO_AGINO(mp, *lastino);
519549fa006SJie Liu 	struct xfs_btree_cur	*cur = NULL;
520c7cb51dcSJie Liu 	struct xfs_buf		*agbp = NULL;
521549fa006SJie Liu 	struct xfs_inogrp	*buffer;
5221da177e4SLinus Torvalds 	int			bcount;
523549fa006SJie Liu 	int			left = *count;
524549fa006SJie Liu 	int			bufidx = 0;
525549fa006SJie Liu 	int			error = 0;
5261da177e4SLinus Torvalds 
5271da177e4SLinus Torvalds 	*count = 0;
528549fa006SJie Liu 	if (agno >= mp->m_sb.sb_agcount ||
529549fa006SJie Liu 	    *lastino != XFS_AGINO_TO_INO(mp, agno, agino))
530549fa006SJie Liu 		return error;
531549fa006SJie Liu 
532e6a4b37fSTim Shimmin 	bcount = MIN(left, (int)(PAGE_SIZE / sizeof(*buffer)));
5331da177e4SLinus Torvalds 	buffer = kmem_alloc(bcount * sizeof(*buffer), KM_SLEEP);
534c7cb51dcSJie Liu 	do {
535549fa006SJie Liu 		struct xfs_inobt_rec_incore	r;
536549fa006SJie Liu 		int				stat;
537549fa006SJie Liu 
538c7cb51dcSJie Liu 		if (!agbp) {
5391da177e4SLinus Torvalds 			error = xfs_ialloc_read_agi(mp, NULL, agno, &agbp);
540c7cb51dcSJie Liu 			if (error)
541c7cb51dcSJie Liu 				break;
542c7cb51dcSJie Liu 
54357bd3dbeSBrian Foster 			cur = xfs_inobt_init_cursor(mp, NULL, agbp, agno,
54457bd3dbeSBrian Foster 						    XFS_BTNUM_INO);
54521875505SChristoph Hellwig 			error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_GE,
546549fa006SJie Liu 						 &stat);
547c7cb51dcSJie Liu 			if (error)
548c7cb51dcSJie Liu 				break;
549c7cb51dcSJie Liu 			if (!stat)
550c7cb51dcSJie Liu 				goto next_ag;
5511da177e4SLinus Torvalds 		}
552c7cb51dcSJie Liu 
553549fa006SJie Liu 		error = xfs_inobt_get_rec(cur, &r, &stat);
554c7cb51dcSJie Liu 		if (error)
555c7cb51dcSJie Liu 			break;
556c7cb51dcSJie Liu 		if (!stat)
557c7cb51dcSJie Liu 			goto next_ag;
558c7cb51dcSJie Liu 
5592e287a73SChristoph Hellwig 		agino = r.ir_startino + XFS_INODES_PER_CHUNK - 1;
5602e287a73SChristoph Hellwig 		buffer[bufidx].xi_startino =
5612e287a73SChristoph Hellwig 			XFS_AGINO_TO_INO(mp, agno, r.ir_startino);
5622e287a73SChristoph Hellwig 		buffer[bufidx].xi_alloccount =
5632e287a73SChristoph Hellwig 			XFS_INODES_PER_CHUNK - r.ir_freecount;
5642e287a73SChristoph Hellwig 		buffer[bufidx].xi_allocmask = ~r.ir_free;
565c7cb51dcSJie Liu 		if (++bufidx == bcount) {
566faa63e95SMichal Marek 			long	written;
567c7cb51dcSJie Liu 
568549fa006SJie Liu 			error = formatter(ubuffer, buffer, bufidx, &written);
569549fa006SJie Liu 			if (error)
5701da177e4SLinus Torvalds 				break;
571faa63e95SMichal Marek 			ubuffer += written;
5721da177e4SLinus Torvalds 			*count += bufidx;
5731da177e4SLinus Torvalds 			bufidx = 0;
5741da177e4SLinus Torvalds 		}
575c7cb51dcSJie Liu 		if (!--left)
576c7cb51dcSJie Liu 			break;
577c7cb51dcSJie Liu 
578549fa006SJie Liu 		error = xfs_btree_increment(cur, 0, &stat);
579c7cb51dcSJie Liu 		if (error)
580c7cb51dcSJie Liu 			break;
581c7cb51dcSJie Liu 		if (stat)
582c7cb51dcSJie Liu 			continue;
583c7cb51dcSJie Liu 
584c7cb51dcSJie Liu next_ag:
5851da177e4SLinus Torvalds 		xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
5861da177e4SLinus Torvalds 		cur = NULL;
5871da177e4SLinus Torvalds 		xfs_buf_relse(agbp);
5881da177e4SLinus Torvalds 		agbp = NULL;
589c7cb51dcSJie Liu 		agino = 0;
590c7cb51dcSJie Liu 	} while (++agno < mp->m_sb.sb_agcount);
591c7cb51dcSJie Liu 
5921da177e4SLinus Torvalds 	if (!error) {
5931da177e4SLinus Torvalds 		if (bufidx) {
594faa63e95SMichal Marek 			long	written;
595c7cb51dcSJie Liu 
596549fa006SJie Liu 			error = formatter(ubuffer, buffer, bufidx, &written);
597549fa006SJie Liu 			if (!error)
5981da177e4SLinus Torvalds 				*count += bufidx;
5991da177e4SLinus Torvalds 		}
6001da177e4SLinus Torvalds 		*lastino = XFS_AGINO_TO_INO(mp, agno, agino);
6011da177e4SLinus Torvalds 	}
602c7cb51dcSJie Liu 
603f0e2d93cSDenys Vlasenko 	kmem_free(buffer);
6041da177e4SLinus Torvalds 	if (cur)
6051da177e4SLinus Torvalds 		xfs_btree_del_cursor(cur, (error ? XFS_BTREE_ERROR :
6061da177e4SLinus Torvalds 					   XFS_BTREE_NOERROR));
6071da177e4SLinus Torvalds 	if (agbp)
6081da177e4SLinus Torvalds 		xfs_buf_relse(agbp);
609c7cb51dcSJie Liu 
6101da177e4SLinus Torvalds 	return error;
6111da177e4SLinus Torvalds }
612