blob: 7e54992bcae90a7dba507dbe88dc8e2621a3b16a [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"
Dave Chinner70a9883c2013-10-23 10:36:05 +110020#include "xfs_shared.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110021#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#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_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_inode.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110029#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_ialloc.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110031#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_itable.h"
33#include "xfs_error.h"
Christoph Hellwigf2d67612010-06-24 11:52:50 +100034#include "xfs_trace.h"
Dave Chinner33479e02012-10-08 21:56:11 +110035#include "xfs_icache.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110036#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Eric Sandeend96f8f82009-07-02 00:09:33 -050038STATIC int
Vlad Apostolov6f1f2162006-09-28 11:06:15 +100039xfs_internal_inum(
40 xfs_mount_t *mp,
41 xfs_ino_t ino)
42{
43 return (ino == mp->m_sb.sb_rbmino || ino == mp->m_sb.sb_rsumino ||
Eric Sandeen62118702008-03-06 13:44:28 +110044 (xfs_sb_version_hasquota(&mp->m_sb) &&
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -050045 xfs_is_quota_inode(&mp->m_sb, ino)));
Vlad Apostolov6f1f2162006-09-28 11:06:15 +100046}
47
Christoph Hellwig7dce11d2010-06-23 18:11:11 +100048/*
49 * Return stat information for one inode.
50 * Return 0 if ok, else errno.
51 */
52int
53xfs_bulkstat_one_int(
54 struct xfs_mount *mp, /* mount point for filesystem */
55 xfs_ino_t ino, /* inode to get data for */
56 void __user *buffer, /* buffer to place output in */
57 int ubsize, /* size of buffer */
58 bulkstat_one_fmt_pf formatter, /* formatter, copy to user */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +100059 int *ubused, /* bytes used by me */
60 int *stat) /* BULKSTAT_RV_... */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Christoph Hellwig7dce11d2010-06-23 18:11:11 +100062 struct xfs_icdinode *dic; /* dinode core info pointer */
63 struct xfs_inode *ip; /* incore inode pointer */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +100064 struct xfs_bstat *buf; /* return buffer */
65 int error = 0; /* error value */
66
67 *stat = BULKSTAT_RV_NOTHING;
68
69 if (!buffer || xfs_internal_inum(mp, ino))
Dave Chinner24513372014-06-25 14:58:08 +100070 return -EINVAL;
Christoph Hellwig7dce11d2010-06-23 18:11:11 +100071
72 buf = kmem_alloc(sizeof(*buf), KM_SLEEP | KM_MAYFAIL);
73 if (!buf)
Dave Chinner24513372014-06-25 14:58:08 +100074 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Nathan Scott745b1f472006-09-28 11:02:23 +100076 error = xfs_iget(mp, NULL, ino,
Dave Chinner5132ba82012-03-22 05:15:10 +000077 (XFS_IGET_DONTCACHE | XFS_IGET_UNTRUSTED),
78 XFS_ILOCK_SHARED, &ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 if (error) {
80 *stat = BULKSTAT_RV_NOTHING;
Christoph Hellwig7dce11d2010-06-23 18:11:11 +100081 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 }
83
84 ASSERT(ip != NULL);
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +110085 ASSERT(ip->i_imap.im_blkno != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 dic = &ip->i_d;
88
89 /* xfs_iget returns the following without needing
90 * further change.
91 */
92 buf->bs_nlink = dic->di_nlink;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +000093 buf->bs_projid_lo = dic->di_projid_lo;
94 buf->bs_projid_hi = dic->di_projid_hi;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 buf->bs_ino = ino;
96 buf->bs_mode = dic->di_mode;
97 buf->bs_uid = dic->di_uid;
98 buf->bs_gid = dic->di_gid;
99 buf->bs_size = dic->di_size;
Christoph Hellwig8a9c9982012-02-29 09:53:52 +0000100 buf->bs_atime.tv_sec = dic->di_atime.t_sec;
101 buf->bs_atime.tv_nsec = dic->di_atime.t_nsec;
102 buf->bs_mtime.tv_sec = dic->di_mtime.t_sec;
103 buf->bs_mtime.tv_nsec = dic->di_mtime.t_nsec;
104 buf->bs_ctime.tv_sec = dic->di_ctime.t_sec;
105 buf->bs_ctime.tv_nsec = dic->di_ctime.t_nsec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 buf->bs_xflags = xfs_ip2xflags(ip);
107 buf->bs_extsize = dic->di_extsize << mp->m_sb.sb_blocklog;
108 buf->bs_extents = dic->di_nextents;
109 buf->bs_gen = dic->di_gen;
110 memset(buf->bs_pad, 0, sizeof(buf->bs_pad));
111 buf->bs_dmevmask = dic->di_dmevmask;
112 buf->bs_dmstate = dic->di_dmstate;
113 buf->bs_aextents = dic->di_anextents;
Dave Chinner07000ee2010-03-05 04:41:14 +0000114 buf->bs_forkoff = XFS_IFORK_BOFF(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 switch (dic->di_format) {
117 case XFS_DINODE_FMT_DEV:
118 buf->bs_rdev = ip->i_df.if_u2.if_rdev;
119 buf->bs_blksize = BLKDEV_IOSIZE;
120 buf->bs_blocks = 0;
121 break;
122 case XFS_DINODE_FMT_LOCAL:
123 case XFS_DINODE_FMT_UUID:
124 buf->bs_rdev = 0;
125 buf->bs_blksize = mp->m_sb.sb_blocksize;
126 buf->bs_blocks = 0;
127 break;
128 case XFS_DINODE_FMT_EXTENTS:
129 case XFS_DINODE_FMT_BTREE:
130 buf->bs_rdev = 0;
131 buf->bs_blksize = mp->m_sb.sb_blocksize;
132 buf->bs_blocks = dic->di_nblocks + ip->i_delayed_blks;
133 break;
134 }
Christoph Hellwigf2d67612010-06-24 11:52:50 +1000135 xfs_iunlock(ip, XFS_ILOCK_SHARED);
136 IRELE(ip);
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000137
138 error = formatter(buffer, ubsize, ubused, buf);
139
140 if (!error)
141 *stat = BULKSTAT_RV_DIDONE;
142
143 out_free:
144 kmem_free(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return error;
146}
147
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600148/* Return 0 on success or positive error */
Michal Marekfaa63e92007-07-11 11:10:19 +1000149STATIC int
150xfs_bulkstat_one_fmt(
151 void __user *ubuffer,
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600152 int ubsize,
153 int *ubused,
Michal Marekfaa63e92007-07-11 11:10:19 +1000154 const xfs_bstat_t *buffer)
155{
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600156 if (ubsize < sizeof(*buffer))
Dave Chinner24513372014-06-25 14:58:08 +1000157 return -ENOMEM;
Michal Marekfaa63e92007-07-11 11:10:19 +1000158 if (copy_to_user(ubuffer, buffer, sizeof(*buffer)))
Dave Chinner24513372014-06-25 14:58:08 +1000159 return -EFAULT;
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600160 if (ubused)
161 *ubused = sizeof(*buffer);
162 return 0;
Michal Marekfaa63e92007-07-11 11:10:19 +1000163}
164
sandeen@sandeen.net2ee4fa52008-11-25 21:20:11 -0600165int
166xfs_bulkstat_one(
167 xfs_mount_t *mp, /* mount point for filesystem */
168 xfs_ino_t ino, /* inode number to get data for */
169 void __user *buffer, /* buffer to place output in */
170 int ubsize, /* size of buffer */
sandeen@sandeen.net2ee4fa52008-11-25 21:20:11 -0600171 int *ubused, /* bytes used by me */
sandeen@sandeen.net2ee4fa52008-11-25 21:20:11 -0600172 int *stat) /* BULKSTAT_RV_... */
173{
174 return xfs_bulkstat_one_int(mp, ino, buffer, ubsize,
Dave Chinner7b6259e2010-06-24 11:35:17 +1000175 xfs_bulkstat_one_fmt, ubused, stat);
Nathan Scott8b56f082006-09-28 11:01:46 +1000176}
177
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100178#define XFS_BULKSTAT_UBLEFT(ubleft) ((ubleft) >= statstruct_size)
179
Nathan Scott8b56f082006-09-28 11:01:46 +1000180/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 * Return stat information in bulk (by-inode) for the filesystem.
182 */
183int /* error status */
184xfs_bulkstat(
185 xfs_mount_t *mp, /* mount point for filesystem */
186 xfs_ino_t *lastinop, /* last inode returned */
187 int *ubcountp, /* size of buffer/count returned */
188 bulkstat_one_pf formatter, /* func that'd fill a single buf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 size_t statstruct_size, /* sizeof struct filling */
190 char __user *ubuffer, /* buffer with inode stats */
Nathan Scottc41564b2006-03-29 08:55:14 +1000191 int *done) /* 1 if there are more stats to get */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 xfs_agblock_t agbno=0;/* allocation group block number */
194 xfs_buf_t *agbp; /* agi header buffer */
195 xfs_agi_t *agi; /* agi header data */
196 xfs_agino_t agino; /* inode # in allocation group */
197 xfs_agnumber_t agno; /* allocation group number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 int chunkidx; /* current index into inode chunk */
199 int clustidx; /* current index into inode cluster */
200 xfs_btree_cur_t *cur; /* btree cursor for ialloc btree */
201 int end_of_ag; /* set if we've seen the ag end */
202 int error; /* error code */
203 int fmterror;/* bulkstat formatter result */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 int i; /* loop index */
205 int icount; /* count of inodes good in irbuf */
Nathan Scott215101c2006-09-28 11:04:43 +1000206 size_t irbsize; /* size of irec buffer in bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 xfs_ino_t ino; /* inode number (filesystem) */
Nathan Scott262750932006-09-28 11:02:03 +1000208 xfs_inobt_rec_incore_t *irbp; /* current irec buffer pointer */
209 xfs_inobt_rec_incore_t *irbuf; /* start of irec buffer */
210 xfs_inobt_rec_incore_t *irbufend; /* end of good irec buffer entries */
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100211 xfs_ino_t lastino; /* last inode number returned */
Jie Liua2ba07b2013-12-13 15:51:48 +1100212 int blks_per_cluster; /* # of blocks per cluster */
213 int inodes_per_cluster;/* # of inodes per cluster */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 int nirbuf; /* size of irbuf */
215 int rval; /* return value error code */
216 int tmp; /* result value from btree calls */
217 int ubcount; /* size of user's buffer */
218 int ubleft; /* bytes left in user's buffer */
219 char __user *ubufp; /* pointer into user's buffer */
220 int ubelem; /* spaces used in user's buffer */
221 int ubused; /* bytes used by formatter */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 /*
224 * Get the last inode value, see if there's nothing to do.
225 */
226 ino = (xfs_ino_t)*lastinop;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100227 lastino = ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 agno = XFS_INO_TO_AGNO(mp, ino);
229 agino = XFS_INO_TO_AGINO(mp, ino);
230 if (agno >= mp->m_sb.sb_agcount ||
231 ino != XFS_AGINO_TO_INO(mp, agno, agino)) {
232 *done = 1;
233 *ubcountp = 0;
234 return 0;
235 }
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100236 if (!ubcountp || *ubcountp <= 0) {
Dave Chinner24513372014-06-25 14:58:08 +1000237 return -EINVAL;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 ubcount = *ubcountp; /* statstruct's */
240 ubleft = ubcount * statstruct_size; /* bytes */
241 *ubcountp = ubelem = 0;
242 *done = 0;
243 fmterror = 0;
244 ubufp = ubuffer;
Jie Liua2ba07b2013-12-13 15:51:48 +1100245 blks_per_cluster = xfs_icluster_size_fsb(mp);
246 inodes_per_cluster = blks_per_cluster << mp->m_sb.sb_inopblog;
Christoph Hellwigbdfb0432010-01-20 21:55:30 +0000247 irbuf = kmem_zalloc_greedy(&irbsize, PAGE_SIZE, PAGE_SIZE * 4);
248 if (!irbuf)
Dave Chinner24513372014-06-25 14:58:08 +1000249 return -ENOMEM;
Christoph Hellwigbdfb0432010-01-20 21:55:30 +0000250
Nathan Scottbb3c7d22006-09-28 11:02:09 +1000251 nirbuf = irbsize / sizeof(*irbuf);
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 /*
254 * Loop over the allocation groups, starting from the last
255 * inode returned; 0 means start of the allocation group.
256 */
257 rval = 0;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100258 while (XFS_BULKSTAT_UBLEFT(ubleft) && agno < mp->m_sb.sb_agcount) {
259 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 error = xfs_ialloc_read_agi(mp, NULL, agno, &agbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (error) {
262 /*
263 * Skip this allocation group and go to the next one.
264 */
265 agno++;
266 agino = 0;
267 continue;
268 }
269 agi = XFS_BUF_TO_AGI(agbp);
270 /*
271 * Allocate and initialize a btree cursor for ialloc btree.
272 */
Brian Foster57bd3db2014-04-24 16:00:50 +1000273 cur = xfs_inobt_init_cursor(mp, NULL, agbp, agno,
274 XFS_BTNUM_INO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 irbp = irbuf;
276 irbufend = irbuf + nirbuf;
277 end_of_ag = 0;
278 /*
279 * If we're returning in the middle of an allocation group,
280 * we need to get the remainder of the chunk we're in.
281 */
282 if (agino > 0) {
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300283 xfs_inobt_rec_incore_t r;
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 /*
286 * Lookup the inode chunk that this inode lives in.
287 */
Christoph Hellwig21875502009-08-31 20:58:21 -0300288 error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_LE,
289 &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 if (!error && /* no I/O error */
291 tmp && /* lookup succeeded */
292 /* got the record, should always work */
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300293 !(error = xfs_inobt_get_rec(cur, &r, &i)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 i == 1 &&
295 /* this is the right chunk */
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300296 agino < r.ir_startino + XFS_INODES_PER_CHUNK &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 /* lastino was not last in chunk */
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300298 (chunkidx = agino - r.ir_startino + 1) <
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 XFS_INODES_PER_CHUNK &&
300 /* there are some left allocated */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600301 xfs_inobt_maskn(chunkidx,
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300302 XFS_INODES_PER_CHUNK - chunkidx) &
303 ~r.ir_free) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /*
305 * Grab the chunk record. Mark all the
306 * uninteresting inodes (because they're
307 * before our start point) free.
308 */
309 for (i = 0; i < chunkidx; i++) {
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300310 if (XFS_INOBT_MASK(i) & ~r.ir_free)
311 r.ir_freecount++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300313 r.ir_free |= xfs_inobt_maskn(0, chunkidx);
314 irbp->ir_startino = r.ir_startino;
315 irbp->ir_freecount = r.ir_freecount;
316 irbp->ir_free = r.ir_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 irbp++;
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300318 agino = r.ir_startino + XFS_INODES_PER_CHUNK;
319 icount = XFS_INODES_PER_CHUNK - r.ir_freecount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 } else {
321 /*
322 * If any of those tests failed, bump the
323 * inode number (just in case).
324 */
325 agino++;
326 icount = 0;
327 }
328 /*
329 * In any case, increment to the next record.
330 */
331 if (!error)
Christoph Hellwig637aa502008-10-30 16:55:45 +1100332 error = xfs_btree_increment(cur, 0, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 } else {
334 /*
335 * Start of ag. Lookup the first inode chunk.
336 */
Christoph Hellwig21875502009-08-31 20:58:21 -0300337 error = xfs_inobt_lookup(cur, 0, XFS_LOOKUP_GE, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 icount = 0;
339 }
340 /*
341 * Loop through inode btree records in this ag,
342 * until we run out of inodes or space in the buffer.
343 */
344 while (irbp < irbufend && icount < ubcount) {
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300345 xfs_inobt_rec_incore_t r;
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 /*
348 * Loop as long as we're unable to read the
349 * inode btree.
350 */
351 while (error) {
352 agino += XFS_INODES_PER_CHUNK;
353 if (XFS_AGINO_TO_AGBNO(mp, agino) >=
Christoph Hellwig16259e72005-11-02 15:11:25 +1100354 be32_to_cpu(agi->agi_length))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 break;
Christoph Hellwig21875502009-08-31 20:58:21 -0300356 error = xfs_inobt_lookup(cur, agino,
357 XFS_LOOKUP_GE, &tmp);
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100358 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
360 /*
361 * If ran off the end of the ag either with an error,
362 * or the normal way, set end and stop collecting.
363 */
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300364 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 end_of_ag = 1;
366 break;
367 }
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300368
369 error = xfs_inobt_get_rec(cur, &r, &i);
370 if (error || i == 0) {
371 end_of_ag = 1;
372 break;
373 }
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 /*
376 * If this chunk has any allocated inodes, save it.
Nathan Scott262750932006-09-28 11:02:03 +1000377 * Also start read-ahead now for this chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 */
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300379 if (r.ir_freecount < XFS_INODES_PER_CHUNK) {
Dave Chinnercbb28642013-06-27 16:04:46 +1000380 struct blk_plug plug;
Nathan Scott262750932006-09-28 11:02:03 +1000381 /*
382 * Loop over all clusters in the next chunk.
383 * Do a readahead if there are any allocated
384 * inodes in that cluster.
385 */
Dave Chinnercbb28642013-06-27 16:04:46 +1000386 blk_start_plug(&plug);
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300387 agbno = XFS_AGINO_TO_AGBNO(mp, r.ir_startino);
388 for (chunkidx = 0;
Nathan Scott262750932006-09-28 11:02:03 +1000389 chunkidx < XFS_INODES_PER_CHUNK;
Jie Liua2ba07b2013-12-13 15:51:48 +1100390 chunkidx += inodes_per_cluster,
391 agbno += blks_per_cluster) {
392 if (xfs_inobt_maskn(chunkidx,
393 inodes_per_cluster) & ~r.ir_free)
Nathan Scott262750932006-09-28 11:02:03 +1000394 xfs_btree_reada_bufs(mp, agno,
Jie Liua2ba07b2013-12-13 15:51:48 +1100395 agbno, blks_per_cluster,
Dave Chinner1813dd62012-11-14 17:54:40 +1100396 &xfs_inode_buf_ops);
Nathan Scott262750932006-09-28 11:02:03 +1000397 }
Dave Chinnercbb28642013-06-27 16:04:46 +1000398 blk_finish_plug(&plug);
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300399 irbp->ir_startino = r.ir_startino;
400 irbp->ir_freecount = r.ir_freecount;
401 irbp->ir_free = r.ir_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 irbp++;
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300403 icount += XFS_INODES_PER_CHUNK - r.ir_freecount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405 /*
406 * Set agino to after this chunk and bump the cursor.
407 */
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300408 agino = r.ir_startino + XFS_INODES_PER_CHUNK;
Christoph Hellwig637aa502008-10-30 16:55:45 +1100409 error = xfs_btree_increment(cur, 0, &tmp);
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100410 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412 /*
413 * Drop the btree buffers and the agi buffer.
414 * We can't hold any of the locks these represent
415 * when calling iget.
416 */
417 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
418 xfs_buf_relse(agbp);
419 /*
420 * Now format all the good inodes into the user's buffer.
421 */
422 irbufend = irbp;
423 for (irbp = irbuf;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100424 irbp < irbufend && XFS_BULKSTAT_UBLEFT(ubleft); irbp++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 * Now process this chunk of inodes.
427 */
Nathan Scott262750932006-09-28 11:02:03 +1000428 for (agino = irbp->ir_startino, chunkidx = clustidx = 0;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100429 XFS_BULKSTAT_UBLEFT(ubleft) &&
Nathan Scott262750932006-09-28 11:02:03 +1000430 irbp->ir_freecount < XFS_INODES_PER_CHUNK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 chunkidx++, clustidx++, agino++) {
432 ASSERT(chunkidx < XFS_INODES_PER_CHUNK);
Jie Liu9cee4c52013-07-01 21:51:32 +0800433
Lachlan McIlroyc2cba572007-10-12 11:12:20 +1000434 ino = XFS_AGINO_TO_INO(mp, agno, agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 /*
436 * Skip if this inode is free.
437 */
Lachlan McIlroyc2cba572007-10-12 11:12:20 +1000438 if (XFS_INOBT_MASK(chunkidx) & irbp->ir_free) {
439 lastino = ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 continue;
Lachlan McIlroyc2cba572007-10-12 11:12:20 +1000441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 /*
443 * Count used inodes as free so we can tell
444 * when the chunk is used up.
445 */
Nathan Scott262750932006-09-28 11:02:03 +1000446 irbp->ir_freecount++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 /*
449 * Get the inode and fill in a single buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 */
451 ubused = statstruct_size;
Dave Chinner7b6259e2010-06-24 11:35:17 +1000452 error = formatter(mp, ino, ubufp, ubleft,
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000453 &ubused, &fmterror);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 if (fmterror == BULKSTAT_RV_NOTHING) {
Dave Chinner24513372014-06-25 14:58:08 +1000455 if (error && error != -ENOENT &&
456 error != -EINVAL) {
Vlad Apostolove132f542006-09-28 11:04:31 +1000457 ubleft = 0;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100458 rval = error;
459 break;
460 }
461 lastino = ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 continue;
463 }
464 if (fmterror == BULKSTAT_RV_GIVEUP) {
465 ubleft = 0;
466 ASSERT(error);
467 rval = error;
468 break;
469 }
470 if (ubufp)
471 ubufp += ubused;
472 ubleft -= ubused;
473 ubelem++;
474 lastino = ino;
475 }
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100476
477 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 /*
480 * Set up for the next loop iteration.
481 */
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100482 if (XFS_BULKSTAT_UBLEFT(ubleft)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (end_of_ag) {
484 agno++;
485 agino = 0;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100486 } else
487 agino = XFS_INO_TO_AGINO(mp, lastino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 } else
489 break;
490 }
491 /*
492 * Done, we're either out of filesystem or space to put the data.
493 */
Dave Chinnerfdd3cce2013-09-02 20:53:00 +1000494 kmem_free(irbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 *ubcountp = ubelem;
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100496 /*
497 * Found some inodes, return them now and return the error next time.
498 */
499 if (ubelem)
500 rval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (agno >= mp->m_sb.sb_agcount) {
502 /*
503 * If we ran out of filesystem, mark lastino as off
504 * the end of the filesystem, so the next call
505 * will return immediately.
506 */
507 *lastinop = (xfs_ino_t)XFS_AGINO_TO_INO(mp, agno, 0);
508 *done = 1;
509 } else
510 *lastinop = (xfs_ino_t)lastino;
511
512 return rval;
513}
514
515/*
516 * Return stat information in bulk (by-inode) for the filesystem.
517 * Special case for non-sequential one inode bulkstat.
518 */
519int /* error status */
520xfs_bulkstat_single(
521 xfs_mount_t *mp, /* mount point for filesystem */
522 xfs_ino_t *lastinop, /* inode to return */
523 char __user *buffer, /* buffer with inode stats */
Nathan Scottc41564b2006-03-29 08:55:14 +1000524 int *done) /* 1 if there are more stats to get */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
526 int count; /* count value for bulkstat call */
527 int error; /* return value */
528 xfs_ino_t ino; /* filesystem inode number */
529 int res; /* result from bs1 */
530
531 /*
532 * note that requesting valid inode numbers which are not allocated
Christoph Hellwig475ee412012-07-03 12:21:22 -0400533 * to inodes will most likely cause xfs_imap_to_bp to generate warning
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 * messages about bad magic numbers. This is ok. The fact that
535 * the inode isn't actually an inode is handled by the
536 * error check below. Done this way to make the usual case faster
537 * at the expense of the error case.
538 */
539
Dave Chinnera30b0362013-09-02 20:49:36 +1000540 ino = *lastinop;
541 error = xfs_bulkstat_one(mp, ino, buffer, sizeof(xfs_bstat_t),
542 NULL, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (error) {
544 /*
545 * Special case way failed, do it the "long" way
546 * to see if that works.
547 */
548 (*lastinop)--;
549 count = 1;
550 if (xfs_bulkstat(mp, lastinop, &count, xfs_bulkstat_one,
Christoph Hellwig7dce11d2010-06-23 18:11:11 +1000551 sizeof(xfs_bstat_t), buffer, done))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return error;
553 if (count == 0 || (xfs_ino_t)*lastinop != ino)
Dave Chinner24513372014-06-25 14:58:08 +1000554 return error == -EFSCORRUPTED ?
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000555 EINVAL : error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 else
557 return 0;
558 }
559 *done = 0;
560 return 0;
561}
562
Michal Marekfaa63e92007-07-11 11:10:19 +1000563int
564xfs_inumbers_fmt(
565 void __user *ubuffer, /* buffer to write to */
566 const xfs_inogrp_t *buffer, /* buffer to read from */
567 long count, /* # of elements to read */
568 long *written) /* # of bytes written */
569{
570 if (copy_to_user(ubuffer, buffer, count * sizeof(*buffer)))
571 return -EFAULT;
572 *written = count * sizeof(*buffer);
573 return 0;
574}
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576/*
577 * Return inode number table for the filesystem.
578 */
579int /* error status */
580xfs_inumbers(
581 xfs_mount_t *mp, /* mount point for filesystem */
582 xfs_ino_t *lastino, /* last inode returned */
583 int *count, /* size of buffer/count returned */
Michal Marekfaa63e92007-07-11 11:10:19 +1000584 void __user *ubuffer,/* buffer with inode descriptions */
585 inumbers_fmt_pf formatter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
587 xfs_buf_t *agbp;
588 xfs_agino_t agino;
589 xfs_agnumber_t agno;
590 int bcount;
591 xfs_inogrp_t *buffer;
592 int bufidx;
593 xfs_btree_cur_t *cur;
594 int error;
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300595 xfs_inobt_rec_incore_t r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 int i;
597 xfs_ino_t ino;
598 int left;
599 int tmp;
600
601 ino = (xfs_ino_t)*lastino;
602 agno = XFS_INO_TO_AGNO(mp, ino);
603 agino = XFS_INO_TO_AGINO(mp, ino);
604 left = *count;
605 *count = 0;
Tim Shimmine6a4b372007-11-23 16:30:42 +1100606 bcount = MIN(left, (int)(PAGE_SIZE / sizeof(*buffer)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 buffer = kmem_alloc(bcount * sizeof(*buffer), KM_SLEEP);
608 error = bufidx = 0;
609 cur = NULL;
610 agbp = NULL;
611 while (left > 0 && agno < mp->m_sb.sb_agcount) {
612 if (agbp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 error = xfs_ialloc_read_agi(mp, NULL, agno, &agbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (error) {
615 /*
616 * If we can't read the AGI of this ag,
617 * then just skip to the next one.
618 */
619 ASSERT(cur == NULL);
620 agbp = NULL;
621 agno++;
622 agino = 0;
623 continue;
624 }
Brian Foster57bd3db2014-04-24 16:00:50 +1000625 cur = xfs_inobt_init_cursor(mp, NULL, agbp, agno,
626 XFS_BTNUM_INO);
Christoph Hellwig21875502009-08-31 20:58:21 -0300627 error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_GE,
628 &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (error) {
630 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
631 cur = NULL;
632 xfs_buf_relse(agbp);
633 agbp = NULL;
634 /*
Michael Opdenacker59c51592007-05-09 08:57:56 +0200635 * Move up the last inode in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 * chunk. The lookup_ge will always get
637 * us the first inode in the next chunk.
638 */
639 agino += XFS_INODES_PER_CHUNK - 1;
640 continue;
641 }
642 }
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300643 error = xfs_inobt_get_rec(cur, &r, &i);
644 if (error || i == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 xfs_buf_relse(agbp);
646 agbp = NULL;
647 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
648 cur = NULL;
649 agno++;
650 agino = 0;
651 continue;
652 }
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300653 agino = r.ir_startino + XFS_INODES_PER_CHUNK - 1;
654 buffer[bufidx].xi_startino =
655 XFS_AGINO_TO_INO(mp, agno, r.ir_startino);
656 buffer[bufidx].xi_alloccount =
657 XFS_INODES_PER_CHUNK - r.ir_freecount;
658 buffer[bufidx].xi_allocmask = ~r.ir_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 bufidx++;
660 left--;
661 if (bufidx == bcount) {
Michal Marekfaa63e92007-07-11 11:10:19 +1000662 long written;
663 if (formatter(ubuffer, buffer, bufidx, &written)) {
Dave Chinner24513372014-06-25 14:58:08 +1000664 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 break;
666 }
Michal Marekfaa63e92007-07-11 11:10:19 +1000667 ubuffer += written;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 *count += bufidx;
669 bufidx = 0;
670 }
671 if (left) {
Christoph Hellwig637aa502008-10-30 16:55:45 +1100672 error = xfs_btree_increment(cur, 0, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (error) {
674 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
675 cur = NULL;
676 xfs_buf_relse(agbp);
677 agbp = NULL;
678 /*
679 * The agino value has already been bumped.
680 * Just try to skip up to it.
681 */
682 agino += XFS_INODES_PER_CHUNK;
683 continue;
684 }
685 }
686 }
687 if (!error) {
688 if (bufidx) {
Michal Marekfaa63e92007-07-11 11:10:19 +1000689 long written;
690 if (formatter(ubuffer, buffer, bufidx, &written))
Dave Chinner24513372014-06-25 14:58:08 +1000691 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 else
693 *count += bufidx;
694 }
695 *lastino = XFS_AGINO_TO_INO(mp, agno, agino);
696 }
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000697 kmem_free(buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if (cur)
699 xfs_btree_del_cursor(cur, (error ? XFS_BTREE_ERROR :
700 XFS_BTREE_NOERROR));
701 if (agbp)
702 xfs_buf_relse(agbp);
703 return error;
704}