blob: 83d7827793e499b1b9207f092bbd60ae4987a042 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
25#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_dir2.h"
28#include "xfs_dmapi.h"
29#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_dinode.h"
36#include "xfs_inode.h"
37#include "xfs_ialloc.h"
38#include "xfs_itable.h"
39#include "xfs_error.h"
Nathan Scotta844f452005-11-02 14:38:42 +110040#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Eric Sandeend96f8f82009-07-02 00:09:33 -050042STATIC int
Vlad Apostolov6f1f2162006-09-28 11:06:15 +100043xfs_internal_inum(
44 xfs_mount_t *mp,
45 xfs_ino_t ino)
46{
47 return (ino == mp->m_sb.sb_rbmino || ino == mp->m_sb.sb_rsumino ||
Eric Sandeen62118702008-03-06 13:44:28 +110048 (xfs_sb_version_hasquota(&mp->m_sb) &&
Vlad Apostolov6f1f2162006-09-28 11:06:15 +100049 (ino == mp->m_sb.sb_uquotino || ino == mp->m_sb.sb_gquotino)));
50}
51
Christoph Hellwig7dce11d2010-06-23 18:11:11 +100052/*
53 * Return stat information for one inode.
54 * Return 0 if ok, else errno.
55 */
56int
57xfs_bulkstat_one_int(
58 struct xfs_mount *mp, /* mount point for filesystem */
59 xfs_ino_t ino, /* inode to get data for */
60 void __user *buffer, /* buffer to place output in */
61 int ubsize, /* size of buffer */
62 bulkstat_one_fmt_pf formatter, /* formatter, copy to user */
63 xfs_daddr_t bno, /* starting bno of cluster */
64 int *ubused, /* bytes used by me */
65 int *stat) /* BULKSTAT_RV_... */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Christoph Hellwig7dce11d2010-06-23 18:11:11 +100067 struct xfs_icdinode *dic; /* dinode core info pointer */
68 struct xfs_inode *ip; /* incore inode pointer */
69 struct inode *inode;
70 struct xfs_bstat *buf; /* return buffer */
71 int error = 0; /* error value */
72
73 *stat = BULKSTAT_RV_NOTHING;
74
75 if (!buffer || xfs_internal_inum(mp, ino))
76 return XFS_ERROR(EINVAL);
77
78 buf = kmem_alloc(sizeof(*buf), KM_SLEEP | KM_MAYFAIL);
79 if (!buf)
80 return XFS_ERROR(ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Nathan Scott745b1f472006-09-28 11:02:23 +100082 error = xfs_iget(mp, NULL, ino,
83 XFS_IGET_BULKSTAT, XFS_ILOCK_SHARED, &ip, bno);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (error) {
85 *stat = BULKSTAT_RV_NOTHING;
Christoph Hellwig7dce11d2010-06-23 18:11:11 +100086 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 }
88
89 ASSERT(ip != NULL);
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +110090 ASSERT(ip->i_imap.im_blkno != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 dic = &ip->i_d;
Christoph Hellwigf9581b12009-10-06 20:29:26 +000093 inode = VFS_I(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 /* xfs_iget returns the following without needing
96 * further change.
97 */
98 buf->bs_nlink = dic->di_nlink;
99 buf->bs_projid = dic->di_projid;
100 buf->bs_ino = ino;
101 buf->bs_mode = dic->di_mode;
102 buf->bs_uid = dic->di_uid;
103 buf->bs_gid = dic->di_gid;
104 buf->bs_size = dic->di_size;
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000105
Christoph Hellwig8fab4512009-03-16 08:24:46 +0100106 /*
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000107 * We need to read the timestamps from the Linux inode because
108 * the VFS keeps writing directly into the inode structure instead
109 * of telling us about the updates.
Christoph Hellwig8fab4512009-03-16 08:24:46 +0100110 */
Christoph Hellwigf9581b12009-10-06 20:29:26 +0000111 buf->bs_atime.tv_sec = inode->i_atime.tv_sec;
112 buf->bs_atime.tv_nsec = inode->i_atime.tv_nsec;
113 buf->bs_mtime.tv_sec = inode->i_mtime.tv_sec;
114 buf->bs_mtime.tv_nsec = inode->i_mtime.tv_nsec;
115 buf->bs_ctime.tv_sec = inode->i_ctime.tv_sec;
116 buf->bs_ctime.tv_nsec = inode->i_ctime.tv_nsec;
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 buf->bs_xflags = xfs_ip2xflags(ip);
119 buf->bs_extsize = dic->di_extsize << mp->m_sb.sb_blocklog;
120 buf->bs_extents = dic->di_nextents;
121 buf->bs_gen = dic->di_gen;
122 memset(buf->bs_pad, 0, sizeof(buf->bs_pad));
123 buf->bs_dmevmask = dic->di_dmevmask;
124 buf->bs_dmstate = dic->di_dmstate;
125 buf->bs_aextents = dic->di_anextents;
Dave Chinner07000ee2010-03-05 04:41:14 +0000126 buf->bs_forkoff = XFS_IFORK_BOFF(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 switch (dic->di_format) {
129 case XFS_DINODE_FMT_DEV:
130 buf->bs_rdev = ip->i_df.if_u2.if_rdev;
131 buf->bs_blksize = BLKDEV_IOSIZE;
132 buf->bs_blocks = 0;
133 break;
134 case XFS_DINODE_FMT_LOCAL:
135 case XFS_DINODE_FMT_UUID:
136 buf->bs_rdev = 0;
137 buf->bs_blksize = mp->m_sb.sb_blocksize;
138 buf->bs_blocks = 0;
139 break;
140 case XFS_DINODE_FMT_EXTENTS:
141 case XFS_DINODE_FMT_BTREE:
142 buf->bs_rdev = 0;
143 buf->bs_blksize = mp->m_sb.sb_blocksize;
144 buf->bs_blocks = dic->di_nblocks + ip->i_delayed_blks;
145 break;
146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 xfs_iput(ip, XFS_ILOCK_SHARED);
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000148
149 error = formatter(buffer, ubsize, ubused, buf);
150
151 if (!error)
152 *stat = BULKSTAT_RV_DIDONE;
153
154 out_free:
155 kmem_free(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return error;
157}
158
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600159/* Return 0 on success or positive error */
Michal Marekfaa63e92007-07-11 11:10:19 +1000160STATIC int
161xfs_bulkstat_one_fmt(
162 void __user *ubuffer,
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600163 int ubsize,
164 int *ubused,
Michal Marekfaa63e92007-07-11 11:10:19 +1000165 const xfs_bstat_t *buffer)
166{
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600167 if (ubsize < sizeof(*buffer))
168 return XFS_ERROR(ENOMEM);
Michal Marekfaa63e92007-07-11 11:10:19 +1000169 if (copy_to_user(ubuffer, buffer, sizeof(*buffer)))
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600170 return XFS_ERROR(EFAULT);
171 if (ubused)
172 *ubused = sizeof(*buffer);
173 return 0;
Michal Marekfaa63e92007-07-11 11:10:19 +1000174}
175
sandeen@sandeen.net2ee4fa52008-11-25 21:20:11 -0600176int
177xfs_bulkstat_one(
178 xfs_mount_t *mp, /* mount point for filesystem */
179 xfs_ino_t ino, /* inode number to get data for */
180 void __user *buffer, /* buffer to place output in */
181 int ubsize, /* size of buffer */
sandeen@sandeen.net2ee4fa52008-11-25 21:20:11 -0600182 xfs_daddr_t bno, /* starting bno of inode cluster */
183 int *ubused, /* bytes used by me */
sandeen@sandeen.net2ee4fa52008-11-25 21:20:11 -0600184 int *stat) /* BULKSTAT_RV_... */
185{
186 return xfs_bulkstat_one_int(mp, ino, buffer, ubsize,
187 xfs_bulkstat_one_fmt, bno,
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000188 ubused, stat);
Nathan Scott8b56f082006-09-28 11:01:46 +1000189}
190
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100191#define XFS_BULKSTAT_UBLEFT(ubleft) ((ubleft) >= statstruct_size)
192
Nathan Scott8b56f082006-09-28 11:01:46 +1000193/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 * Return stat information in bulk (by-inode) for the filesystem.
195 */
196int /* error status */
197xfs_bulkstat(
198 xfs_mount_t *mp, /* mount point for filesystem */
199 xfs_ino_t *lastinop, /* last inode returned */
200 int *ubcountp, /* size of buffer/count returned */
201 bulkstat_one_pf formatter, /* func that'd fill a single buf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 size_t statstruct_size, /* sizeof struct filling */
203 char __user *ubuffer, /* buffer with inode stats */
Nathan Scottc41564b2006-03-29 08:55:14 +1000204 int *done) /* 1 if there are more stats to get */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 xfs_agblock_t agbno=0;/* allocation group block number */
207 xfs_buf_t *agbp; /* agi header buffer */
208 xfs_agi_t *agi; /* agi header data */
209 xfs_agino_t agino; /* inode # in allocation group */
210 xfs_agnumber_t agno; /* allocation group number */
211 xfs_daddr_t bno; /* inode cluster start daddr */
212 int chunkidx; /* current index into inode chunk */
213 int clustidx; /* current index into inode cluster */
214 xfs_btree_cur_t *cur; /* btree cursor for ialloc btree */
215 int end_of_ag; /* set if we've seen the ag end */
216 int error; /* error code */
217 int fmterror;/* bulkstat formatter result */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 int i; /* loop index */
219 int icount; /* count of inodes good in irbuf */
Nathan Scott215101c2006-09-28 11:04:43 +1000220 size_t irbsize; /* size of irec buffer in bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 xfs_ino_t ino; /* inode number (filesystem) */
Nathan Scott262750932006-09-28 11:02:03 +1000222 xfs_inobt_rec_incore_t *irbp; /* current irec buffer pointer */
223 xfs_inobt_rec_incore_t *irbuf; /* start of irec buffer */
224 xfs_inobt_rec_incore_t *irbufend; /* end of good irec buffer entries */
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100225 xfs_ino_t lastino; /* last inode number returned */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 int nbcluster; /* # of blocks in a cluster */
227 int nicluster; /* # of inodes in a cluster */
228 int nimask; /* mask for inode clusters */
229 int nirbuf; /* size of irbuf */
230 int rval; /* return value error code */
231 int tmp; /* result value from btree calls */
232 int ubcount; /* size of user's buffer */
233 int ubleft; /* bytes left in user's buffer */
234 char __user *ubufp; /* pointer into user's buffer */
235 int ubelem; /* spaces used in user's buffer */
236 int ubused; /* bytes used by formatter */
237 xfs_buf_t *bp; /* ptr to on-disk inode cluster buf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 /*
240 * Get the last inode value, see if there's nothing to do.
241 */
242 ino = (xfs_ino_t)*lastinop;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100243 lastino = ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 agno = XFS_INO_TO_AGNO(mp, ino);
245 agino = XFS_INO_TO_AGINO(mp, ino);
246 if (agno >= mp->m_sb.sb_agcount ||
247 ino != XFS_AGINO_TO_INO(mp, agno, agino)) {
248 *done = 1;
249 *ubcountp = 0;
250 return 0;
251 }
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100252 if (!ubcountp || *ubcountp <= 0) {
253 return EINVAL;
254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 ubcount = *ubcountp; /* statstruct's */
256 ubleft = ubcount * statstruct_size; /* bytes */
257 *ubcountp = ubelem = 0;
258 *done = 0;
259 fmterror = 0;
260 ubufp = ubuffer;
261 nicluster = mp->m_sb.sb_blocksize >= XFS_INODE_CLUSTER_SIZE(mp) ?
262 mp->m_sb.sb_inopblock :
263 (XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog);
264 nimask = ~(nicluster - 1);
265 nbcluster = nicluster >> mp->m_sb.sb_inopblog;
Christoph Hellwigbdfb0432010-01-20 21:55:30 +0000266 irbuf = kmem_zalloc_greedy(&irbsize, PAGE_SIZE, PAGE_SIZE * 4);
267 if (!irbuf)
268 return ENOMEM;
269
Nathan Scottbb3c7d22006-09-28 11:02:09 +1000270 nirbuf = irbsize / sizeof(*irbuf);
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 /*
273 * Loop over the allocation groups, starting from the last
274 * inode returned; 0 means start of the allocation group.
275 */
276 rval = 0;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100277 while (XFS_BULKSTAT_UBLEFT(ubleft) && agno < mp->m_sb.sb_agcount) {
278 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 bp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 error = xfs_ialloc_read_agi(mp, NULL, agno, &agbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (error) {
282 /*
283 * Skip this allocation group and go to the next one.
284 */
285 agno++;
286 agino = 0;
287 continue;
288 }
289 agi = XFS_BUF_TO_AGI(agbp);
290 /*
291 * Allocate and initialize a btree cursor for ialloc btree.
292 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100293 cur = xfs_inobt_init_cursor(mp, NULL, agbp, agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 irbp = irbuf;
295 irbufend = irbuf + nirbuf;
296 end_of_ag = 0;
297 /*
298 * If we're returning in the middle of an allocation group,
299 * we need to get the remainder of the chunk we're in.
300 */
301 if (agino > 0) {
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300302 xfs_inobt_rec_incore_t r;
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /*
305 * Lookup the inode chunk that this inode lives in.
306 */
Christoph Hellwig21875502009-08-31 20:58:21 -0300307 error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_LE,
308 &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 if (!error && /* no I/O error */
310 tmp && /* lookup succeeded */
311 /* got the record, should always work */
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300312 !(error = xfs_inobt_get_rec(cur, &r, &i)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 i == 1 &&
314 /* this is the right chunk */
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300315 agino < r.ir_startino + XFS_INODES_PER_CHUNK &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 /* lastino was not last in chunk */
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300317 (chunkidx = agino - r.ir_startino + 1) <
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 XFS_INODES_PER_CHUNK &&
319 /* there are some left allocated */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600320 xfs_inobt_maskn(chunkidx,
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300321 XFS_INODES_PER_CHUNK - chunkidx) &
322 ~r.ir_free) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 /*
324 * Grab the chunk record. Mark all the
325 * uninteresting inodes (because they're
326 * before our start point) free.
327 */
328 for (i = 0; i < chunkidx; i++) {
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300329 if (XFS_INOBT_MASK(i) & ~r.ir_free)
330 r.ir_freecount++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300332 r.ir_free |= xfs_inobt_maskn(0, chunkidx);
333 irbp->ir_startino = r.ir_startino;
334 irbp->ir_freecount = r.ir_freecount;
335 irbp->ir_free = r.ir_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 irbp++;
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300337 agino = r.ir_startino + XFS_INODES_PER_CHUNK;
338 icount = XFS_INODES_PER_CHUNK - r.ir_freecount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 } else {
340 /*
341 * If any of those tests failed, bump the
342 * inode number (just in case).
343 */
344 agino++;
345 icount = 0;
346 }
347 /*
348 * In any case, increment to the next record.
349 */
350 if (!error)
Christoph Hellwig637aa502008-10-30 16:55:45 +1100351 error = xfs_btree_increment(cur, 0, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 } else {
353 /*
354 * Start of ag. Lookup the first inode chunk.
355 */
Christoph Hellwig21875502009-08-31 20:58:21 -0300356 error = xfs_inobt_lookup(cur, 0, XFS_LOOKUP_GE, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 icount = 0;
358 }
359 /*
360 * Loop through inode btree records in this ag,
361 * until we run out of inodes or space in the buffer.
362 */
363 while (irbp < irbufend && icount < ubcount) {
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300364 xfs_inobt_rec_incore_t r;
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 /*
367 * Loop as long as we're unable to read the
368 * inode btree.
369 */
370 while (error) {
371 agino += XFS_INODES_PER_CHUNK;
372 if (XFS_AGINO_TO_AGBNO(mp, agino) >=
Christoph Hellwig16259e72005-11-02 15:11:25 +1100373 be32_to_cpu(agi->agi_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 break;
Christoph Hellwig21875502009-08-31 20:58:21 -0300375 error = xfs_inobt_lookup(cur, agino,
376 XFS_LOOKUP_GE, &tmp);
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100377 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
379 /*
380 * If ran off the end of the ag either with an error,
381 * or the normal way, set end and stop collecting.
382 */
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300383 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 end_of_ag = 1;
385 break;
386 }
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300387
388 error = xfs_inobt_get_rec(cur, &r, &i);
389 if (error || i == 0) {
390 end_of_ag = 1;
391 break;
392 }
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 /*
395 * If this chunk has any allocated inodes, save it.
Nathan Scott262750932006-09-28 11:02:03 +1000396 * Also start read-ahead now for this chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 */
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300398 if (r.ir_freecount < XFS_INODES_PER_CHUNK) {
Nathan Scott262750932006-09-28 11:02:03 +1000399 /*
400 * Loop over all clusters in the next chunk.
401 * Do a readahead if there are any allocated
402 * inodes in that cluster.
403 */
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300404 agbno = XFS_AGINO_TO_AGBNO(mp, r.ir_startino);
405 for (chunkidx = 0;
Nathan Scott262750932006-09-28 11:02:03 +1000406 chunkidx < XFS_INODES_PER_CHUNK;
407 chunkidx += nicluster,
408 agbno += nbcluster) {
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300409 if (xfs_inobt_maskn(chunkidx, nicluster)
410 & ~r.ir_free)
Nathan Scott262750932006-09-28 11:02:03 +1000411 xfs_btree_reada_bufs(mp, agno,
412 agbno, nbcluster);
413 }
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300414 irbp->ir_startino = r.ir_startino;
415 irbp->ir_freecount = r.ir_freecount;
416 irbp->ir_free = r.ir_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 irbp++;
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300418 icount += XFS_INODES_PER_CHUNK - r.ir_freecount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420 /*
421 * Set agino to after this chunk and bump the cursor.
422 */
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300423 agino = r.ir_startino + XFS_INODES_PER_CHUNK;
Christoph Hellwig637aa502008-10-30 16:55:45 +1100424 error = xfs_btree_increment(cur, 0, &tmp);
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100425 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427 /*
428 * Drop the btree buffers and the agi buffer.
429 * We can't hold any of the locks these represent
430 * when calling iget.
431 */
432 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
433 xfs_buf_relse(agbp);
434 /*
435 * Now format all the good inodes into the user's buffer.
436 */
437 irbufend = irbp;
438 for (irbp = irbuf;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100439 irbp < irbufend && XFS_BULKSTAT_UBLEFT(ubleft); irbp++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * Now process this chunk of inodes.
442 */
Nathan Scott262750932006-09-28 11:02:03 +1000443 for (agino = irbp->ir_startino, chunkidx = clustidx = 0;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100444 XFS_BULKSTAT_UBLEFT(ubleft) &&
Nathan Scott262750932006-09-28 11:02:03 +1000445 irbp->ir_freecount < XFS_INODES_PER_CHUNK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 chunkidx++, clustidx++, agino++) {
447 ASSERT(chunkidx < XFS_INODES_PER_CHUNK);
448 /*
449 * Recompute agbno if this is the
450 * first inode of the cluster.
451 *
452 * Careful with clustidx. There can be
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200453 * multiple clusters per chunk, a single
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 * cluster per chunk or a cluster that has
455 * inodes represented from several different
456 * chunks (if blocksize is large).
457 *
458 * Because of this, the starting clustidx is
459 * initialized to zero in this loop but must
460 * later be reset after reading in the cluster
461 * buffer.
462 */
463 if ((chunkidx & (nicluster - 1)) == 0) {
464 agbno = XFS_AGINO_TO_AGBNO(mp,
Nathan Scott262750932006-09-28 11:02:03 +1000465 irbp->ir_startino) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 ((chunkidx & nimask) >>
467 mp->m_sb.sb_inopblog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
Lachlan McIlroyc2cba572007-10-12 11:12:20 +1000469 ino = XFS_AGINO_TO_INO(mp, agno, agino);
470 bno = XFS_AGB_TO_DADDR(mp, agno, agbno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 /*
472 * Skip if this inode is free.
473 */
Lachlan McIlroyc2cba572007-10-12 11:12:20 +1000474 if (XFS_INOBT_MASK(chunkidx) & irbp->ir_free) {
475 lastino = ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 continue;
Lachlan McIlroyc2cba572007-10-12 11:12:20 +1000477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 /*
479 * Count used inodes as free so we can tell
480 * when the chunk is used up.
481 */
Nathan Scott262750932006-09-28 11:02:03 +1000482 irbp->ir_freecount++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 /*
485 * Get the inode and fill in a single buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 */
487 ubused = statstruct_size;
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000488 error = formatter(mp, ino, ubufp, ubleft, bno,
489 &ubused, &fmterror);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (fmterror == BULKSTAT_RV_NOTHING) {
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100491 if (error && error != ENOENT &&
492 error != EINVAL) {
Vlad Apostolove132f542006-09-28 11:04:31 +1000493 ubleft = 0;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100494 rval = error;
495 break;
496 }
497 lastino = ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 continue;
499 }
500 if (fmterror == BULKSTAT_RV_GIVEUP) {
501 ubleft = 0;
502 ASSERT(error);
503 rval = error;
504 break;
505 }
506 if (ubufp)
507 ubufp += ubused;
508 ubleft -= ubused;
509 ubelem++;
510 lastino = ino;
511 }
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100512
513 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515
516 if (bp)
517 xfs_buf_relse(bp);
518
519 /*
520 * Set up for the next loop iteration.
521 */
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100522 if (XFS_BULKSTAT_UBLEFT(ubleft)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 if (end_of_ag) {
524 agno++;
525 agino = 0;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100526 } else
527 agino = XFS_INO_TO_AGINO(mp, lastino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 } else
529 break;
530 }
531 /*
532 * Done, we're either out of filesystem or space to put the data.
533 */
Christoph Hellwigbdfb0432010-01-20 21:55:30 +0000534 kmem_free_large(irbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 *ubcountp = ubelem;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100536 /*
537 * Found some inodes, return them now and return the error next time.
538 */
539 if (ubelem)
540 rval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (agno >= mp->m_sb.sb_agcount) {
542 /*
543 * If we ran out of filesystem, mark lastino as off
544 * the end of the filesystem, so the next call
545 * will return immediately.
546 */
547 *lastinop = (xfs_ino_t)XFS_AGINO_TO_INO(mp, agno, 0);
548 *done = 1;
549 } else
550 *lastinop = (xfs_ino_t)lastino;
551
552 return rval;
553}
554
555/*
556 * Return stat information in bulk (by-inode) for the filesystem.
557 * Special case for non-sequential one inode bulkstat.
558 */
559int /* error status */
560xfs_bulkstat_single(
561 xfs_mount_t *mp, /* mount point for filesystem */
562 xfs_ino_t *lastinop, /* inode to return */
563 char __user *buffer, /* buffer with inode stats */
Nathan Scottc41564b2006-03-29 08:55:14 +1000564 int *done) /* 1 if there are more stats to get */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
566 int count; /* count value for bulkstat call */
567 int error; /* return value */
568 xfs_ino_t ino; /* filesystem inode number */
569 int res; /* result from bs1 */
570
571 /*
572 * note that requesting valid inode numbers which are not allocated
573 * to inodes will most likely cause xfs_itobp to generate warning
574 * messages about bad magic numbers. This is ok. The fact that
575 * the inode isn't actually an inode is handled by the
576 * error check below. Done this way to make the usual case faster
577 * at the expense of the error case.
578 */
579
580 ino = (xfs_ino_t)*lastinop;
581 error = xfs_bulkstat_one(mp, ino, buffer, sizeof(xfs_bstat_t),
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000582 0, NULL, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (error) {
584 /*
585 * Special case way failed, do it the "long" way
586 * to see if that works.
587 */
588 (*lastinop)--;
589 count = 1;
590 if (xfs_bulkstat(mp, lastinop, &count, xfs_bulkstat_one,
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000591 sizeof(xfs_bstat_t), buffer, done))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return error;
593 if (count == 0 || (xfs_ino_t)*lastinop != ino)
594 return error == EFSCORRUPTED ?
595 XFS_ERROR(EINVAL) : error;
596 else
597 return 0;
598 }
599 *done = 0;
600 return 0;
601}
602
Michal Marekfaa63e92007-07-11 11:10:19 +1000603int
604xfs_inumbers_fmt(
605 void __user *ubuffer, /* buffer to write to */
606 const xfs_inogrp_t *buffer, /* buffer to read from */
607 long count, /* # of elements to read */
608 long *written) /* # of bytes written */
609{
610 if (copy_to_user(ubuffer, buffer, count * sizeof(*buffer)))
611 return -EFAULT;
612 *written = count * sizeof(*buffer);
613 return 0;
614}
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616/*
617 * Return inode number table for the filesystem.
618 */
619int /* error status */
620xfs_inumbers(
621 xfs_mount_t *mp, /* mount point for filesystem */
622 xfs_ino_t *lastino, /* last inode returned */
623 int *count, /* size of buffer/count returned */
Michal Marekfaa63e92007-07-11 11:10:19 +1000624 void __user *ubuffer,/* buffer with inode descriptions */
625 inumbers_fmt_pf formatter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 xfs_buf_t *agbp;
628 xfs_agino_t agino;
629 xfs_agnumber_t agno;
630 int bcount;
631 xfs_inogrp_t *buffer;
632 int bufidx;
633 xfs_btree_cur_t *cur;
634 int error;
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300635 xfs_inobt_rec_incore_t r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 int i;
637 xfs_ino_t ino;
638 int left;
639 int tmp;
640
641 ino = (xfs_ino_t)*lastino;
642 agno = XFS_INO_TO_AGNO(mp, ino);
643 agino = XFS_INO_TO_AGINO(mp, ino);
644 left = *count;
645 *count = 0;
Tim Shimmine6a4b372007-11-23 16:30:42 +1100646 bcount = MIN(left, (int)(PAGE_SIZE / sizeof(*buffer)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 buffer = kmem_alloc(bcount * sizeof(*buffer), KM_SLEEP);
648 error = bufidx = 0;
649 cur = NULL;
650 agbp = NULL;
651 while (left > 0 && agno < mp->m_sb.sb_agcount) {
652 if (agbp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 error = xfs_ialloc_read_agi(mp, NULL, agno, &agbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (error) {
655 /*
656 * If we can't read the AGI of this ag,
657 * then just skip to the next one.
658 */
659 ASSERT(cur == NULL);
660 agbp = NULL;
661 agno++;
662 agino = 0;
663 continue;
664 }
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100665 cur = xfs_inobt_init_cursor(mp, NULL, agbp, agno);
Christoph Hellwig21875502009-08-31 20:58:21 -0300666 error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_GE,
667 &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (error) {
669 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
670 cur = NULL;
671 xfs_buf_relse(agbp);
672 agbp = NULL;
673 /*
Michael Opdenacker59c51592007-05-09 08:57:56 +0200674 * Move up the last inode in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 * chunk. The lookup_ge will always get
676 * us the first inode in the next chunk.
677 */
678 agino += XFS_INODES_PER_CHUNK - 1;
679 continue;
680 }
681 }
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300682 error = xfs_inobt_get_rec(cur, &r, &i);
683 if (error || i == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 xfs_buf_relse(agbp);
685 agbp = NULL;
686 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
687 cur = NULL;
688 agno++;
689 agino = 0;
690 continue;
691 }
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300692 agino = r.ir_startino + XFS_INODES_PER_CHUNK - 1;
693 buffer[bufidx].xi_startino =
694 XFS_AGINO_TO_INO(mp, agno, r.ir_startino);
695 buffer[bufidx].xi_alloccount =
696 XFS_INODES_PER_CHUNK - r.ir_freecount;
697 buffer[bufidx].xi_allocmask = ~r.ir_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 bufidx++;
699 left--;
700 if (bufidx == bcount) {
Michal Marekfaa63e92007-07-11 11:10:19 +1000701 long written;
702 if (formatter(ubuffer, buffer, bufidx, &written)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 error = XFS_ERROR(EFAULT);
704 break;
705 }
Michal Marekfaa63e92007-07-11 11:10:19 +1000706 ubuffer += written;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 *count += bufidx;
708 bufidx = 0;
709 }
710 if (left) {
Christoph Hellwig637aa502008-10-30 16:55:45 +1100711 error = xfs_btree_increment(cur, 0, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (error) {
713 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
714 cur = NULL;
715 xfs_buf_relse(agbp);
716 agbp = NULL;
717 /*
718 * The agino value has already been bumped.
719 * Just try to skip up to it.
720 */
721 agino += XFS_INODES_PER_CHUNK;
722 continue;
723 }
724 }
725 }
726 if (!error) {
727 if (bufidx) {
Michal Marekfaa63e92007-07-11 11:10:19 +1000728 long written;
729 if (formatter(ubuffer, buffer, bufidx, &written))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 error = XFS_ERROR(EFAULT);
731 else
732 *count += bufidx;
733 }
734 *lastino = XFS_AGINO_TO_INO(mp, agno, agino);
735 }
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000736 kmem_free(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (cur)
738 xfs_btree_del_cursor(cur, (error ? XFS_BTREE_ERROR :
739 XFS_BTREE_NOERROR));
740 if (agbp)
741 xfs_buf_relse(agbp);
742 return error;
743}