2 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * 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.
14 * 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
20 #include "xfs_types.h"
24 #include "xfs_trans.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_mount.h"
30 #include "xfs_bmap_btree.h"
31 #include "xfs_alloc_btree.h"
32 #include "xfs_ialloc_btree.h"
33 #include "xfs_dir2_sf.h"
34 #include "xfs_attr_sf.h"
35 #include "xfs_dinode.h"
36 #include "xfs_inode.h"
37 #include "xfs_ialloc.h"
38 #include "xfs_itable.h"
39 #include "xfs_error.h"
40 #include "xfs_btree.h"
43 xfs_bulkstat_one_iget(
44 xfs_mount_t
*mp
, /* mount point for filesystem */
45 xfs_ino_t ino
, /* inode number to get data for */
46 xfs_daddr_t bno
, /* starting bno of inode cluster */
47 xfs_bstat_t
*buf
, /* return buffer */
48 int *stat
) /* BULKSTAT_RV_... */
50 xfs_dinode_core_t
*dic
; /* dinode core info pointer */
51 xfs_inode_t
*ip
; /* incore inode pointer */
55 error
= xfs_iget(mp
, NULL
, ino
, 0, XFS_ILOCK_SHARED
, &ip
, bno
);
57 *stat
= BULKSTAT_RV_NOTHING
;
62 ASSERT(ip
->i_blkno
!= (xfs_daddr_t
)0);
63 if (ip
->i_d
.di_mode
== 0) {
64 *stat
= BULKSTAT_RV_NOTHING
;
65 error
= XFS_ERROR(ENOENT
);
72 /* xfs_iget returns the following without needing
75 buf
->bs_nlink
= dic
->di_nlink
;
76 buf
->bs_projid
= dic
->di_projid
;
78 buf
->bs_mode
= dic
->di_mode
;
79 buf
->bs_uid
= dic
->di_uid
;
80 buf
->bs_gid
= dic
->di_gid
;
81 buf
->bs_size
= dic
->di_size
;
82 vn_atime_to_bstime(vp
, &buf
->bs_atime
);
83 buf
->bs_mtime
.tv_sec
= dic
->di_mtime
.t_sec
;
84 buf
->bs_mtime
.tv_nsec
= dic
->di_mtime
.t_nsec
;
85 buf
->bs_ctime
.tv_sec
= dic
->di_ctime
.t_sec
;
86 buf
->bs_ctime
.tv_nsec
= dic
->di_ctime
.t_nsec
;
87 buf
->bs_xflags
= xfs_ip2xflags(ip
);
88 buf
->bs_extsize
= dic
->di_extsize
<< mp
->m_sb
.sb_blocklog
;
89 buf
->bs_extents
= dic
->di_nextents
;
90 buf
->bs_gen
= dic
->di_gen
;
91 memset(buf
->bs_pad
, 0, sizeof(buf
->bs_pad
));
92 buf
->bs_dmevmask
= dic
->di_dmevmask
;
93 buf
->bs_dmstate
= dic
->di_dmstate
;
94 buf
->bs_aextents
= dic
->di_anextents
;
96 switch (dic
->di_format
) {
97 case XFS_DINODE_FMT_DEV
:
98 buf
->bs_rdev
= ip
->i_df
.if_u2
.if_rdev
;
99 buf
->bs_blksize
= BLKDEV_IOSIZE
;
102 case XFS_DINODE_FMT_LOCAL
:
103 case XFS_DINODE_FMT_UUID
:
105 buf
->bs_blksize
= mp
->m_sb
.sb_blocksize
;
108 case XFS_DINODE_FMT_EXTENTS
:
109 case XFS_DINODE_FMT_BTREE
:
111 buf
->bs_blksize
= mp
->m_sb
.sb_blocksize
;
112 buf
->bs_blocks
= dic
->di_nblocks
+ ip
->i_delayed_blks
;
117 xfs_iput(ip
, XFS_ILOCK_SHARED
);
122 xfs_bulkstat_one_dinode(
123 xfs_mount_t
*mp
, /* mount point for filesystem */
124 xfs_ino_t ino
, /* inode number to get data for */
125 xfs_dinode_t
*dip
, /* dinode inode pointer */
126 xfs_bstat_t
*buf
) /* return buffer */
128 xfs_dinode_core_t
*dic
; /* dinode core info pointer */
133 * The inode format changed when we moved the link count and
134 * made it 32 bits long. If this is an old format inode,
135 * convert it in memory to look like a new one. If it gets
136 * flushed to disk we will convert back before flushing or
137 * logging it. We zero out the new projid field and the old link
138 * count field. We'll handle clearing the pad field (the remains
139 * of the old uuid field) when we actually convert the inode to
140 * the new format. We don't change the version number so that we
141 * can distinguish this from a real new format inode.
143 if (INT_GET(dic
->di_version
, ARCH_CONVERT
) == XFS_DINODE_VERSION_1
) {
144 buf
->bs_nlink
= INT_GET(dic
->di_onlink
, ARCH_CONVERT
);
147 buf
->bs_nlink
= INT_GET(dic
->di_nlink
, ARCH_CONVERT
);
148 buf
->bs_projid
= INT_GET(dic
->di_projid
, ARCH_CONVERT
);
152 buf
->bs_mode
= INT_GET(dic
->di_mode
, ARCH_CONVERT
);
153 buf
->bs_uid
= INT_GET(dic
->di_uid
, ARCH_CONVERT
);
154 buf
->bs_gid
= INT_GET(dic
->di_gid
, ARCH_CONVERT
);
155 buf
->bs_size
= INT_GET(dic
->di_size
, ARCH_CONVERT
);
156 buf
->bs_atime
.tv_sec
= INT_GET(dic
->di_atime
.t_sec
, ARCH_CONVERT
);
157 buf
->bs_atime
.tv_nsec
= INT_GET(dic
->di_atime
.t_nsec
, ARCH_CONVERT
);
158 buf
->bs_mtime
.tv_sec
= INT_GET(dic
->di_mtime
.t_sec
, ARCH_CONVERT
);
159 buf
->bs_mtime
.tv_nsec
= INT_GET(dic
->di_mtime
.t_nsec
, ARCH_CONVERT
);
160 buf
->bs_ctime
.tv_sec
= INT_GET(dic
->di_ctime
.t_sec
, ARCH_CONVERT
);
161 buf
->bs_ctime
.tv_nsec
= INT_GET(dic
->di_ctime
.t_nsec
, ARCH_CONVERT
);
162 buf
->bs_xflags
= xfs_dic2xflags(dic
);
163 buf
->bs_extsize
= INT_GET(dic
->di_extsize
, ARCH_CONVERT
) << mp
->m_sb
.sb_blocklog
;
164 buf
->bs_extents
= INT_GET(dic
->di_nextents
, ARCH_CONVERT
);
165 buf
->bs_gen
= INT_GET(dic
->di_gen
, ARCH_CONVERT
);
166 memset(buf
->bs_pad
, 0, sizeof(buf
->bs_pad
));
167 buf
->bs_dmevmask
= INT_GET(dic
->di_dmevmask
, ARCH_CONVERT
);
168 buf
->bs_dmstate
= INT_GET(dic
->di_dmstate
, ARCH_CONVERT
);
169 buf
->bs_aextents
= INT_GET(dic
->di_anextents
, ARCH_CONVERT
);
171 switch (INT_GET(dic
->di_format
, ARCH_CONVERT
)) {
172 case XFS_DINODE_FMT_DEV
:
173 buf
->bs_rdev
= INT_GET(dip
->di_u
.di_dev
, ARCH_CONVERT
);
174 buf
->bs_blksize
= BLKDEV_IOSIZE
;
177 case XFS_DINODE_FMT_LOCAL
:
178 case XFS_DINODE_FMT_UUID
:
180 buf
->bs_blksize
= mp
->m_sb
.sb_blocksize
;
183 case XFS_DINODE_FMT_EXTENTS
:
184 case XFS_DINODE_FMT_BTREE
:
186 buf
->bs_blksize
= mp
->m_sb
.sb_blocksize
;
187 buf
->bs_blocks
= INT_GET(dic
->di_nblocks
, ARCH_CONVERT
);
195 * Return stat information for one inode.
196 * Return 0 if ok, else errno.
198 int /* error status */
200 xfs_mount_t
*mp
, /* mount point for filesystem */
201 xfs_ino_t ino
, /* inode number to get data for */
202 void __user
*buffer
, /* buffer to place output in */
203 int ubsize
, /* size of buffer */
204 void *private_data
, /* my private data */
205 xfs_daddr_t bno
, /* starting bno of inode cluster */
206 int *ubused
, /* bytes used by me */
207 void *dibuff
, /* on-disk inode buffer */
208 int *stat
) /* BULKSTAT_RV_... */
210 xfs_bstat_t
*buf
; /* return buffer */
211 int error
= 0; /* error value */
212 xfs_dinode_t
*dip
; /* dinode inode pointer */
214 dip
= (xfs_dinode_t
*)dibuff
;
216 if (!buffer
|| ino
== mp
->m_sb
.sb_rbmino
|| ino
== mp
->m_sb
.sb_rsumino
||
217 (XFS_SB_VERSION_HASQUOTA(&mp
->m_sb
) &&
218 (ino
== mp
->m_sb
.sb_uquotino
|| ino
== mp
->m_sb
.sb_gquotino
))) {
219 *stat
= BULKSTAT_RV_NOTHING
;
220 return XFS_ERROR(EINVAL
);
222 if (ubsize
< sizeof(*buf
)) {
223 *stat
= BULKSTAT_RV_NOTHING
;
224 return XFS_ERROR(ENOMEM
);
227 buf
= kmem_alloc(sizeof(*buf
), KM_SLEEP
);
230 /* We're not being passed a pointer to a dinode. This happens
231 * if BULKSTAT_FG_IGET is selected. Do the iget.
233 error
= xfs_bulkstat_one_iget(mp
, ino
, bno
, buf
, stat
);
237 xfs_bulkstat_one_dinode(mp
, ino
, dip
, buf
);
240 if (copy_to_user(buffer
, buf
, sizeof(*buf
))) {
241 *stat
= BULKSTAT_RV_NOTHING
;
246 *stat
= BULKSTAT_RV_DIDONE
;
248 *ubused
= sizeof(*buf
);
251 kmem_free(buf
, sizeof(*buf
));
256 * Return stat information in bulk (by-inode) for the filesystem.
258 int /* error status */
260 xfs_mount_t
*mp
, /* mount point for filesystem */
261 xfs_ino_t
*lastinop
, /* last inode returned */
262 int *ubcountp
, /* size of buffer/count returned */
263 bulkstat_one_pf formatter
, /* func that'd fill a single buf */
264 void *private_data
,/* private data for formatter */
265 size_t statstruct_size
, /* sizeof struct filling */
266 char __user
*ubuffer
, /* buffer with inode stats */
267 int flags
, /* defined in xfs_itable.h */
268 int *done
) /* 1 if there are more stats to get */
270 xfs_agblock_t agbno
=0;/* allocation group block number */
271 xfs_buf_t
*agbp
; /* agi header buffer */
272 xfs_agi_t
*agi
; /* agi header data */
273 xfs_agino_t agino
; /* inode # in allocation group */
274 xfs_agnumber_t agno
; /* allocation group number */
275 xfs_daddr_t bno
; /* inode cluster start daddr */
276 int chunkidx
; /* current index into inode chunk */
277 int clustidx
; /* current index into inode cluster */
278 xfs_btree_cur_t
*cur
; /* btree cursor for ialloc btree */
279 int end_of_ag
; /* set if we've seen the ag end */
280 int error
; /* error code */
281 int fmterror
;/* bulkstat formatter result */
282 __int32_t gcnt
; /* current btree rec's count */
283 xfs_inofree_t gfree
; /* current btree rec's free mask */
284 xfs_agino_t gino
; /* current btree rec's start inode */
285 int i
; /* loop index */
286 int icount
; /* count of inodes good in irbuf */
287 xfs_ino_t ino
; /* inode number (filesystem) */
288 xfs_inobt_rec_t
*irbp
; /* current irec buffer pointer */
289 xfs_inobt_rec_t
*irbuf
; /* start of irec buffer */
290 xfs_inobt_rec_t
*irbufend
; /* end of good irec buffer entries */
291 xfs_ino_t lastino
=0; /* last inode number returned */
292 int nbcluster
; /* # of blocks in a cluster */
293 int nicluster
; /* # of inodes in a cluster */
294 int nimask
; /* mask for inode clusters */
295 int nirbuf
; /* size of irbuf */
296 int rval
; /* return value error code */
297 int tmp
; /* result value from btree calls */
298 int ubcount
; /* size of user's buffer */
299 int ubleft
; /* bytes left in user's buffer */
300 char __user
*ubufp
; /* pointer into user's buffer */
301 int ubelem
; /* spaces used in user's buffer */
302 int ubused
; /* bytes used by formatter */
303 xfs_buf_t
*bp
; /* ptr to on-disk inode cluster buf */
304 xfs_dinode_t
*dip
; /* ptr into bp for specific inode */
305 xfs_inode_t
*ip
; /* ptr to in-core inode struct */
308 * Get the last inode value, see if there's nothing to do.
310 ino
= (xfs_ino_t
)*lastinop
;
312 agno
= XFS_INO_TO_AGNO(mp
, ino
);
313 agino
= XFS_INO_TO_AGINO(mp
, ino
);
314 if (agno
>= mp
->m_sb
.sb_agcount
||
315 ino
!= XFS_AGINO_TO_INO(mp
, agno
, agino
)) {
320 ubcount
= *ubcountp
; /* statstruct's */
321 ubleft
= ubcount
* statstruct_size
; /* bytes */
322 *ubcountp
= ubelem
= 0;
326 nicluster
= mp
->m_sb
.sb_blocksize
>= XFS_INODE_CLUSTER_SIZE(mp
) ?
327 mp
->m_sb
.sb_inopblock
:
328 (XFS_INODE_CLUSTER_SIZE(mp
) >> mp
->m_sb
.sb_inodelog
);
329 nimask
= ~(nicluster
- 1);
330 nbcluster
= nicluster
>> mp
->m_sb
.sb_inopblog
;
332 * Allocate a page-sized buffer for inode btree records.
333 * We could try allocating something smaller, but for normal
334 * calls we'll always (potentially) need the whole page.
336 irbuf
= kmem_alloc(NBPC
, KM_SLEEP
);
337 nirbuf
= NBPC
/ sizeof(*irbuf
);
339 * Loop over the allocation groups, starting from the last
340 * inode returned; 0 means start of the allocation group.
343 while (ubleft
>= statstruct_size
&& agno
< mp
->m_sb
.sb_agcount
) {
345 down_read(&mp
->m_peraglock
);
346 error
= xfs_ialloc_read_agi(mp
, NULL
, agno
, &agbp
);
347 up_read(&mp
->m_peraglock
);
350 * Skip this allocation group and go to the next one.
356 agi
= XFS_BUF_TO_AGI(agbp
);
358 * Allocate and initialize a btree cursor for ialloc btree.
360 cur
= xfs_btree_init_cursor(mp
, NULL
, agbp
, agno
, XFS_BTNUM_INO
,
361 (xfs_inode_t
*)0, 0);
363 irbufend
= irbuf
+ nirbuf
;
366 * If we're returning in the middle of an allocation group,
367 * we need to get the remainder of the chunk we're in.
371 * Lookup the inode chunk that this inode lives in.
373 error
= xfs_inobt_lookup_le(cur
, agino
, 0, 0, &tmp
);
374 if (!error
&& /* no I/O error */
375 tmp
&& /* lookup succeeded */
376 /* got the record, should always work */
377 !(error
= xfs_inobt_get_rec(cur
, &gino
, &gcnt
,
380 /* this is the right chunk */
381 agino
< gino
+ XFS_INODES_PER_CHUNK
&&
382 /* lastino was not last in chunk */
383 (chunkidx
= agino
- gino
+ 1) <
384 XFS_INODES_PER_CHUNK
&&
385 /* there are some left allocated */
386 XFS_INOBT_MASKN(chunkidx
,
387 XFS_INODES_PER_CHUNK
- chunkidx
) & ~gfree
) {
389 * Grab the chunk record. Mark all the
390 * uninteresting inodes (because they're
391 * before our start point) free.
393 for (i
= 0; i
< chunkidx
; i
++) {
394 if (XFS_INOBT_MASK(i
) & ~gfree
)
397 gfree
|= XFS_INOBT_MASKN(0, chunkidx
);
398 INT_SET(irbp
->ir_startino
, ARCH_CONVERT
, gino
);
399 INT_SET(irbp
->ir_freecount
, ARCH_CONVERT
, gcnt
);
400 INT_SET(irbp
->ir_free
, ARCH_CONVERT
, gfree
);
402 agino
= gino
+ XFS_INODES_PER_CHUNK
;
403 icount
= XFS_INODES_PER_CHUNK
- gcnt
;
406 * If any of those tests failed, bump the
407 * inode number (just in case).
413 * In any case, increment to the next record.
416 error
= xfs_inobt_increment(cur
, 0, &tmp
);
419 * Start of ag. Lookup the first inode chunk.
421 error
= xfs_inobt_lookup_ge(cur
, 0, 0, 0, &tmp
);
425 * Loop through inode btree records in this ag,
426 * until we run out of inodes or space in the buffer.
428 while (irbp
< irbufend
&& icount
< ubcount
) {
430 * Loop as long as we're unable to read the
434 agino
+= XFS_INODES_PER_CHUNK
;
435 if (XFS_AGINO_TO_AGBNO(mp
, agino
) >=
436 be32_to_cpu(agi
->agi_length
))
438 error
= xfs_inobt_lookup_ge(cur
, agino
, 0, 0,
442 * If ran off the end of the ag either with an error,
443 * or the normal way, set end and stop collecting.
446 (error
= xfs_inobt_get_rec(cur
, &gino
, &gcnt
,
453 * If this chunk has any allocated inodes, save it.
455 if (gcnt
< XFS_INODES_PER_CHUNK
) {
456 INT_SET(irbp
->ir_startino
, ARCH_CONVERT
, gino
);
457 INT_SET(irbp
->ir_freecount
, ARCH_CONVERT
, gcnt
);
458 INT_SET(irbp
->ir_free
, ARCH_CONVERT
, gfree
);
460 icount
+= XFS_INODES_PER_CHUNK
- gcnt
;
463 * Set agino to after this chunk and bump the cursor.
465 agino
= gino
+ XFS_INODES_PER_CHUNK
;
466 error
= xfs_inobt_increment(cur
, 0, &tmp
);
469 * Drop the btree buffers and the agi buffer.
470 * We can't hold any of the locks these represent
473 xfs_btree_del_cursor(cur
, XFS_BTREE_NOERROR
);
476 * Now format all the good inodes into the user's buffer.
480 irbp
< irbufend
&& ubleft
>= statstruct_size
; irbp
++) {
482 * Read-ahead the next chunk's worth of inodes.
484 if (&irbp
[1] < irbufend
) {
486 * Loop over all clusters in the next chunk.
487 * Do a readahead if there are any allocated
488 * inodes in that cluster.
490 for (agbno
= XFS_AGINO_TO_AGBNO(mp
,
491 INT_GET(irbp
[1].ir_startino
, ARCH_CONVERT
)),
493 chunkidx
< XFS_INODES_PER_CHUNK
;
494 chunkidx
+= nicluster
,
495 agbno
+= nbcluster
) {
496 if (XFS_INOBT_MASKN(chunkidx
,
498 ~(INT_GET(irbp
[1].ir_free
, ARCH_CONVERT
)))
499 xfs_btree_reada_bufs(mp
, agno
,
504 * Now process this chunk of inodes.
506 for (agino
= INT_GET(irbp
->ir_startino
, ARCH_CONVERT
), chunkidx
= 0, clustidx
= 0;
508 INT_GET(irbp
->ir_freecount
, ARCH_CONVERT
) < XFS_INODES_PER_CHUNK
;
509 chunkidx
++, clustidx
++, agino
++) {
510 ASSERT(chunkidx
< XFS_INODES_PER_CHUNK
);
512 * Recompute agbno if this is the
513 * first inode of the cluster.
515 * Careful with clustidx. There can be
516 * multple clusters per chunk, a single
517 * cluster per chunk or a cluster that has
518 * inodes represented from several different
519 * chunks (if blocksize is large).
521 * Because of this, the starting clustidx is
522 * initialized to zero in this loop but must
523 * later be reset after reading in the cluster
526 if ((chunkidx
& (nicluster
- 1)) == 0) {
527 agbno
= XFS_AGINO_TO_AGBNO(mp
,
528 INT_GET(irbp
->ir_startino
, ARCH_CONVERT
)) +
529 ((chunkidx
& nimask
) >>
530 mp
->m_sb
.sb_inopblog
);
532 if (flags
& BULKSTAT_FG_QUICK
) {
533 ino
= XFS_AGINO_TO_INO(mp
, agno
,
535 bno
= XFS_AGB_TO_DADDR(mp
, agno
,
539 * Get the inode cluster buffer
541 ASSERT(xfs_inode_zone
!= NULL
);
542 ip
= kmem_zone_zalloc(xfs_inode_zone
,
548 error
= xfs_itobp(mp
, NULL
, ip
,
552 clustidx
= ip
->i_boffset
/ mp
->m_sb
.sb_inodesize
;
553 kmem_zone_free(xfs_inode_zone
, ip
);
554 if (XFS_TEST_ERROR(error
!= 0,
555 mp
, XFS_ERRTAG_BULKSTAT_READ_CHUNK
,
556 XFS_RANDOM_BULKSTAT_READ_CHUNK
)) {
565 * Skip if this inode is free.
567 if (XFS_INOBT_MASK(chunkidx
) & INT_GET(irbp
->ir_free
, ARCH_CONVERT
))
570 * Count used inodes as free so we can tell
571 * when the chunk is used up.
573 INT_MOD(irbp
->ir_freecount
, ARCH_CONVERT
, +1);
574 ino
= XFS_AGINO_TO_INO(mp
, agno
, agino
);
575 bno
= XFS_AGB_TO_DADDR(mp
, agno
, agbno
);
576 if (flags
& BULKSTAT_FG_QUICK
) {
577 dip
= (xfs_dinode_t
*)xfs_buf_offset(bp
,
578 (clustidx
<< mp
->m_sb
.sb_inodelog
));
580 if (INT_GET(dip
->di_core
.di_magic
, ARCH_CONVERT
)
582 || !XFS_DINODE_GOOD_VERSION(
583 INT_GET(dip
->di_core
.di_version
, ARCH_CONVERT
)))
588 * Get the inode and fill in a single buffer.
589 * BULKSTAT_FG_QUICK uses dip to fill it in.
590 * BULKSTAT_FG_IGET uses igets.
591 * See: xfs_bulkstat_one & xfs_dm_bulkstat_one.
592 * This is also used to count inodes/blks, etc
593 * in xfs_qm_quotacheck.
595 ubused
= statstruct_size
;
596 error
= formatter(mp
, ino
, ubufp
,
597 ubleft
, private_data
,
598 bno
, &ubused
, dip
, &fmterror
);
599 if (fmterror
== BULKSTAT_RV_NOTHING
) {
604 if (fmterror
== BULKSTAT_RV_GIVEUP
) {
622 * Set up for the next loop iteration.
629 agino
= XFS_INO_TO_AGINO(mp
, lastino
);
634 * Done, we're either out of filesystem or space to put the data.
636 kmem_free(irbuf
, NBPC
);
638 if (agno
>= mp
->m_sb
.sb_agcount
) {
640 * If we ran out of filesystem, mark lastino as off
641 * the end of the filesystem, so the next call
642 * will return immediately.
644 *lastinop
= (xfs_ino_t
)XFS_AGINO_TO_INO(mp
, agno
, 0);
647 *lastinop
= (xfs_ino_t
)lastino
;
653 * Return stat information in bulk (by-inode) for the filesystem.
654 * Special case for non-sequential one inode bulkstat.
656 int /* error status */
658 xfs_mount_t
*mp
, /* mount point for filesystem */
659 xfs_ino_t
*lastinop
, /* inode to return */
660 char __user
*buffer
, /* buffer with inode stats */
661 int *done
) /* 1 if there are more stats to get */
663 int count
; /* count value for bulkstat call */
664 int error
; /* return value */
665 xfs_ino_t ino
; /* filesystem inode number */
666 int res
; /* result from bs1 */
669 * note that requesting valid inode numbers which are not allocated
670 * to inodes will most likely cause xfs_itobp to generate warning
671 * messages about bad magic numbers. This is ok. The fact that
672 * the inode isn't actually an inode is handled by the
673 * error check below. Done this way to make the usual case faster
674 * at the expense of the error case.
677 ino
= (xfs_ino_t
)*lastinop
;
678 error
= xfs_bulkstat_one(mp
, ino
, buffer
, sizeof(xfs_bstat_t
),
679 NULL
, 0, NULL
, NULL
, &res
);
682 * Special case way failed, do it the "long" way
683 * to see if that works.
687 if (xfs_bulkstat(mp
, lastinop
, &count
, xfs_bulkstat_one
,
688 NULL
, sizeof(xfs_bstat_t
), buffer
,
689 BULKSTAT_FG_IGET
, done
))
691 if (count
== 0 || (xfs_ino_t
)*lastinop
!= ino
)
692 return error
== EFSCORRUPTED
?
693 XFS_ERROR(EINVAL
) : error
;
702 * Return inode number table for the filesystem.
704 int /* error status */
706 xfs_mount_t
*mp
, /* mount point for filesystem */
707 xfs_ino_t
*lastino
, /* last inode returned */
708 int *count
, /* size of buffer/count returned */
709 xfs_inogrp_t __user
*ubuffer
)/* buffer with inode descriptions */
715 xfs_inogrp_t
*buffer
;
717 xfs_btree_cur_t
*cur
;
727 ino
= (xfs_ino_t
)*lastino
;
728 agno
= XFS_INO_TO_AGNO(mp
, ino
);
729 agino
= XFS_INO_TO_AGINO(mp
, ino
);
732 bcount
= MIN(left
, (int)(NBPP
/ sizeof(*buffer
)));
733 buffer
= kmem_alloc(bcount
* sizeof(*buffer
), KM_SLEEP
);
737 while (left
> 0 && agno
< mp
->m_sb
.sb_agcount
) {
739 down_read(&mp
->m_peraglock
);
740 error
= xfs_ialloc_read_agi(mp
, NULL
, agno
, &agbp
);
741 up_read(&mp
->m_peraglock
);
744 * If we can't read the AGI of this ag,
745 * then just skip to the next one.
753 cur
= xfs_btree_init_cursor(mp
, NULL
, agbp
, agno
,
754 XFS_BTNUM_INO
, (xfs_inode_t
*)0, 0);
755 error
= xfs_inobt_lookup_ge(cur
, agino
, 0, 0, &tmp
);
757 xfs_btree_del_cursor(cur
, XFS_BTREE_ERROR
);
762 * Move up the the last inode in the current
763 * chunk. The lookup_ge will always get
764 * us the first inode in the next chunk.
766 agino
+= XFS_INODES_PER_CHUNK
- 1;
770 if ((error
= xfs_inobt_get_rec(cur
, &gino
, &gcnt
, &gfree
,
775 xfs_btree_del_cursor(cur
, XFS_BTREE_NOERROR
);
781 agino
= gino
+ XFS_INODES_PER_CHUNK
- 1;
782 buffer
[bufidx
].xi_startino
= XFS_AGINO_TO_INO(mp
, agno
, gino
);
783 buffer
[bufidx
].xi_alloccount
= XFS_INODES_PER_CHUNK
- gcnt
;
784 buffer
[bufidx
].xi_allocmask
= ~gfree
;
787 if (bufidx
== bcount
) {
788 if (copy_to_user(ubuffer
, buffer
,
789 bufidx
* sizeof(*buffer
))) {
790 error
= XFS_ERROR(EFAULT
);
798 error
= xfs_inobt_increment(cur
, 0, &tmp
);
800 xfs_btree_del_cursor(cur
, XFS_BTREE_ERROR
);
805 * The agino value has already been bumped.
806 * Just try to skip up to it.
808 agino
+= XFS_INODES_PER_CHUNK
;
815 if (copy_to_user(ubuffer
, buffer
,
816 bufidx
* sizeof(*buffer
)))
817 error
= XFS_ERROR(EFAULT
);
821 *lastino
= XFS_AGINO_TO_INO(mp
, agno
, agino
);
823 kmem_free(buffer
, bcount
* sizeof(*buffer
));
825 xfs_btree_del_cursor(cur
, (error
? XFS_BTREE_ERROR
: