Line data Source code
1 : // SPDX-License-Identifier: GPL-2.0-or-later
2 : /*
3 : * Copyright (C) 2022-2023 Oracle. All Rights Reserved.
4 : * Author: Darrick J. Wong <djwong@kernel.org>
5 : */
6 : #include "xfs.h"
7 : #include "xfs_fs.h"
8 : #include "xfs_shared.h"
9 : #include "xfs_format.h"
10 : #include "xfs_log_format.h"
11 : #include "xfs_trans_resv.h"
12 : #include "xfs_mount.h"
13 : #include "xfs_inode.h"
14 : #include "xfs_dir2.h"
15 : #include "xfs_dir2_priv.h"
16 : #include "xfs_trace.h"
17 : #include "xfs_bmap.h"
18 : #include "xfs_trans.h"
19 : #include "xfs_error.h"
20 : #include "scrub/scrub.h"
21 : #include "scrub/readdir.h"
22 :
23 : /* Call a function for every entry in a shortform directory. */
24 : STATIC int
25 1034593582 : xchk_dir_walk_sf(
26 : struct xfs_scrub *sc,
27 : struct xfs_inode *dp,
28 : xchk_dirent_fn dirent_fn,
29 : void *priv)
30 : {
31 1034593582 : struct xfs_name name = {
32 : .name = ".",
33 : .len = 1,
34 : .type = XFS_DIR3_FT_DIR,
35 : };
36 1034593582 : struct xfs_mount *mp = dp->i_mount;
37 1034593582 : struct xfs_da_geometry *geo = mp->m_dir_geo;
38 1034593582 : struct xfs_dir2_sf_entry *sfep;
39 1034593582 : struct xfs_dir2_sf_hdr *sfp;
40 1034593582 : xfs_ino_t ino;
41 1034593582 : xfs_dir2_dataptr_t dapos;
42 1034593582 : unsigned int i;
43 1034593582 : int error;
44 :
45 1034593582 : ASSERT(dp->i_df.if_bytes == dp->i_disk_size);
46 1034593582 : ASSERT(dp->i_df.if_u1.if_data != NULL);
47 :
48 1034593582 : sfp = (struct xfs_dir2_sf_hdr *)dp->i_df.if_u1.if_data;
49 :
50 : /* dot entry */
51 1034593582 : dapos = xfs_dir2_db_off_to_dataptr(geo, geo->datablk,
52 1034593582 : geo->data_entry_offset);
53 :
54 1034593582 : error = dirent_fn(sc, dp, dapos, &name, dp->i_ino, priv);
55 1034864828 : if (error)
56 : return error;
57 :
58 : /* dotdot entry */
59 1034385374 : dapos = xfs_dir2_db_off_to_dataptr(geo, geo->datablk,
60 1034385374 : geo->data_entry_offset +
61 : xfs_dir2_data_entsize(mp, sizeof(".") - 1));
62 1034385374 : ino = xfs_dir2_sf_get_parent_ino(sfp);
63 1033869783 : name.name = "..";
64 1033869783 : name.len = 2;
65 :
66 1033869783 : error = dirent_fn(sc, dp, dapos, &name, ino, priv);
67 1033813737 : if (error)
68 : return error;
69 :
70 : /* iterate everything else */
71 1033813737 : sfep = xfs_dir2_sf_firstentry(sfp);
72 4556360364 : for (i = 0; i < sfp->count; i++) {
73 3521343098 : dapos = xfs_dir2_db_off_to_dataptr(geo, geo->datablk,
74 : xfs_dir2_sf_get_offset(sfep));
75 3521343098 : ino = xfs_dir2_sf_get_ino(mp, sfp, sfep);
76 3519155221 : name.name = sfep->name;
77 3519155221 : name.len = sfep->namelen;
78 3519155221 : name.type = xfs_dir2_sf_get_ftype(mp, sfep);
79 :
80 3522403620 : error = dirent_fn(sc, dp, dapos, &name, ino, priv);
81 3522745484 : if (error)
82 24 : return error;
83 :
84 3522745460 : sfep = xfs_dir2_sf_nextentry(mp, sfp, sfep);
85 : }
86 :
87 : return 0;
88 : }
89 :
90 : /* Call a function for every entry in a block directory. */
91 : STATIC int
92 14333306 : xchk_dir_walk_block(
93 : struct xfs_scrub *sc,
94 : struct xfs_inode *dp,
95 : xchk_dirent_fn dirent_fn,
96 : void *priv)
97 : {
98 14333306 : struct xfs_mount *mp = dp->i_mount;
99 14333306 : struct xfs_da_geometry *geo = mp->m_dir_geo;
100 14333306 : struct xfs_buf *bp;
101 14333306 : unsigned int off, next_off, end;
102 14333306 : int error;
103 :
104 14333306 : error = xfs_dir3_block_read(sc->tp, dp, dp->i_ino, &bp);
105 14333054 : if (error)
106 : return error;
107 :
108 : /* Walk each directory entry. */
109 14333100 : end = xfs_dir3_data_end_offset(geo, bp->b_addr);
110 360300856 : for (off = geo->data_entry_offset; off < end; off = next_off) {
111 345967514 : struct xfs_name name = { };
112 345967514 : struct xfs_dir2_data_unused *dup = bp->b_addr + off;
113 345967514 : struct xfs_dir2_data_entry *dep = bp->b_addr + off;
114 345967514 : xfs_ino_t ino;
115 345967514 : xfs_dir2_dataptr_t dapos;
116 :
117 : /* Skip an empty entry. */
118 345967514 : if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
119 74419567 : next_off = off + be16_to_cpu(dup->length);
120 74419567 : continue;
121 : }
122 :
123 : /* Otherwise, find the next entry and report it. */
124 271547947 : next_off = off + xfs_dir2_data_entsize(mp, dep->namelen);
125 271547947 : if (next_off > end)
126 : break;
127 :
128 271547947 : dapos = xfs_dir2_db_off_to_dataptr(geo, geo->datablk, off);
129 271547947 : ino = be64_to_cpu(dep->inumber);
130 271547947 : name.name = dep->name;
131 271547947 : name.len = dep->namelen;
132 271547947 : name.type = xfs_dir2_data_get_ftype(mp, dep);
133 :
134 271545425 : error = dirent_fn(sc, dp, dapos, &name, ino, priv);
135 271548272 : if (error)
136 : break;
137 : }
138 :
139 14333342 : xfs_trans_brelse(sc->tp, bp);
140 14333342 : return error;
141 : }
142 :
143 : /* Read a leaf-format directory buffer. */
144 : STATIC int
145 6558236 : xchk_read_leaf_dir_buf(
146 : struct xfs_trans *tp,
147 : struct xfs_inode *dp,
148 : struct xfs_da_geometry *geo,
149 : xfs_dir2_off_t *curoff,
150 : struct xfs_buf **bpp)
151 : {
152 6558236 : struct xfs_iext_cursor icur;
153 6558236 : struct xfs_bmbt_irec map;
154 6558236 : struct xfs_ifork *ifp = xfs_ifork_ptr(dp, XFS_DATA_FORK);
155 6558236 : xfs_dablk_t last_da;
156 6558236 : xfs_dablk_t map_off;
157 6558236 : xfs_dir2_off_t new_off;
158 :
159 6558236 : *bpp = NULL;
160 :
161 : /*
162 : * Look for mapped directory blocks at or above the current offset.
163 : * Truncate down to the nearest directory block to start the scanning
164 : * operation.
165 : */
166 6558236 : last_da = xfs_dir2_byte_to_da(geo, XFS_DIR2_LEAF_OFFSET);
167 6558236 : map_off = xfs_dir2_db_to_da(geo, xfs_dir2_byte_to_db(geo, *curoff));
168 :
169 6558236 : if (!xfs_iext_lookup_extent(dp, ifp, map_off, &icur, &map))
170 : return 0;
171 6558197 : if (map.br_startoff >= last_da)
172 : return 0;
173 6329608 : xfs_trim_extent(&map, map_off, last_da - map_off);
174 :
175 : /* Read the directory block of that first mapping. */
176 6329627 : new_off = xfs_dir2_da_to_byte(geo, map.br_startoff);
177 6329627 : if (new_off > *curoff)
178 5762 : *curoff = new_off;
179 :
180 6329627 : return xfs_dir3_data_read(tp, dp, dp->i_ino, map.br_startoff, 0, bpp);
181 : }
182 :
183 : /* Call a function for every entry in a leaf directory. */
184 : STATIC int
185 228609 : xchk_dir_walk_leaf(
186 : struct xfs_scrub *sc,
187 : struct xfs_inode *dp,
188 : xchk_dirent_fn dirent_fn,
189 : void *priv)
190 : {
191 228609 : struct xfs_mount *mp = dp->i_mount;
192 228609 : struct xfs_da_geometry *geo = mp->m_dir_geo;
193 228609 : struct xfs_buf *bp = NULL;
194 228609 : xfs_dir2_off_t curoff = 0;
195 228609 : unsigned int offset = 0;
196 228609 : int error;
197 :
198 : /* Iterate every directory offset in this directory. */
199 1211351974 : while (curoff < XFS_DIR2_LEAF_OFFSET) {
200 1211351974 : struct xfs_name name = { };
201 1211351974 : struct xfs_dir2_data_unused *dup;
202 1211351974 : struct xfs_dir2_data_entry *dep;
203 1211351974 : xfs_ino_t ino;
204 1211351974 : unsigned int length;
205 1211351974 : xfs_dir2_dataptr_t dapos;
206 :
207 : /*
208 : * If we have no buffer, or we're off the end of the
209 : * current buffer, need to get another one.
210 : */
211 1211351974 : if (!bp || offset >= geo->blksize) {
212 6557832 : if (bp) {
213 6329225 : xfs_trans_brelse(sc->tp, bp);
214 6329620 : bp = NULL;
215 : }
216 :
217 6558227 : error = xchk_read_leaf_dir_buf(sc->tp, dp, geo, &curoff,
218 : &bp);
219 6557848 : if (error || !bp)
220 : break;
221 :
222 : /*
223 : * Find our position in the block.
224 : */
225 6329240 : offset = geo->data_entry_offset;
226 6329240 : curoff += geo->data_entry_offset;
227 : }
228 :
229 : /* Skip an empty entry. */
230 1211123382 : dup = bp->b_addr + offset;
231 1211123382 : if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
232 51629927 : length = be16_to_cpu(dup->length);
233 51629927 : offset += length;
234 51629927 : curoff += length;
235 51629927 : continue;
236 : }
237 :
238 : /* Otherwise, find the next entry and report it. */
239 1159493455 : dep = bp->b_addr + offset;
240 1159493455 : length = xfs_dir2_data_entsize(mp, dep->namelen);
241 :
242 1159493455 : dapos = xfs_dir2_byte_to_dataptr(curoff) & 0x7fffffff;
243 1159493455 : ino = be64_to_cpu(dep->inumber);
244 1159493455 : name.name = dep->name;
245 1159493455 : name.len = dep->namelen;
246 1159493455 : name.type = xfs_dir2_data_get_ftype(mp, dep);
247 :
248 1159339725 : error = dirent_fn(sc, dp, dapos, &name, ino, priv);
249 1159493439 : if (error)
250 : break;
251 :
252 : /* Advance to the next entry. */
253 1159493438 : offset += length;
254 1159493438 : curoff += length;
255 : }
256 :
257 228609 : if (bp)
258 1 : xfs_trans_brelse(sc->tp, bp);
259 228609 : return error;
260 : }
261 :
262 : /*
263 : * Call a function for every entry in a directory.
264 : *
265 : * Callers must hold the ILOCK. File types are XFS_DIR3_FT_*.
266 : */
267 : int
268 1049562853 : xchk_dir_walk(
269 : struct xfs_scrub *sc,
270 : struct xfs_inode *dp,
271 : xchk_dirent_fn dirent_fn,
272 : void *priv)
273 : {
274 1049562853 : struct xfs_da_args args = {
275 : .dp = dp,
276 1049562853 : .geo = dp->i_mount->m_dir_geo,
277 1049562853 : .trans = sc->tp,
278 1049562853 : .owner = dp->i_ino,
279 : };
280 1049562853 : bool isblock;
281 1049562853 : int error;
282 :
283 2099125706 : if (xfs_is_shutdown(dp->i_mount))
284 : return -EIO;
285 :
286 1049562853 : ASSERT(S_ISDIR(VFS_I(dp)->i_mode));
287 1049562853 : ASSERT(xfs_isilocked(dp, XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
288 :
289 1049547365 : if (dp->i_df.if_format == XFS_DINODE_FMT_LOCAL)
290 1034985424 : return xchk_dir_walk_sf(sc, dp, dirent_fn, priv);
291 :
292 : /* dir2 functions require that the data fork is loaded */
293 14561941 : error = xfs_iread_extents(sc->tp, dp, XFS_DATA_FORK);
294 14561981 : if (error)
295 : return error;
296 :
297 14561956 : error = xfs_dir2_isblock(&args, &isblock);
298 14562024 : if (error)
299 : return error;
300 :
301 14562024 : if (isblock)
302 14333416 : return xchk_dir_walk_block(sc, dp, dirent_fn, priv);
303 :
304 228608 : return xchk_dir_walk_leaf(sc, dp, dirent_fn, priv);
305 : }
306 :
307 : /*
308 : * Look up the inode number for an exact name in a directory.
309 : *
310 : * Callers must hold the ILOCK. File types are XFS_DIR3_FT_*. Names are not
311 : * checked for correctness.
312 : */
313 : int
314 180560715 : xchk_dir_lookup(
315 : struct xfs_scrub *sc,
316 : struct xfs_inode *dp,
317 : const struct xfs_name *name,
318 : xfs_ino_t *ino)
319 : {
320 361135249 : struct xfs_da_args args = {
321 : .dp = dp,
322 180560715 : .geo = dp->i_mount->m_dir_geo,
323 180574534 : .trans = sc->tp,
324 180560715 : .name = name->name,
325 180560715 : .namelen = name->len,
326 180560715 : .filetype = name->type,
327 180560715 : .hashval = xfs_dir2_hashname(dp->i_mount, name),
328 : .whichfork = XFS_DATA_FORK,
329 : .op_flags = XFS_DA_OP_OKNOENT,
330 180574534 : .owner = dp->i_ino,
331 : };
332 180574534 : bool isblock, isleaf;
333 180574534 : int error;
334 :
335 361149068 : if (xfs_is_shutdown(dp->i_mount))
336 : return -EIO;
337 :
338 : /*
339 : * A temporary directory's block headers are written with the owner
340 : * set to sc->ip, so we must switch the owner here for the lookup.
341 : */
342 180574534 : if (dp == sc->tempip)
343 236439 : args.owner = sc->ip->i_ino;
344 :
345 180574534 : ASSERT(S_ISDIR(VFS_I(dp)->i_mode));
346 180574534 : ASSERT(xfs_isilocked(dp, XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
347 :
348 180578235 : if (dp->i_df.if_format == XFS_DINODE_FMT_LOCAL) {
349 113461288 : error = xfs_dir2_sf_lookup(&args);
350 113454596 : goto out_check_rval;
351 : }
352 :
353 : /* dir2 functions require that the data fork is loaded */
354 67116947 : error = xfs_iread_extents(sc->tp, dp, XFS_DATA_FORK);
355 67117365 : if (error)
356 : return error;
357 :
358 67117370 : error = xfs_dir2_isblock(&args, &isblock);
359 67118082 : if (error)
360 : return error;
361 :
362 67118082 : if (isblock) {
363 6955735 : error = xfs_dir2_block_lookup(&args);
364 6955320 : goto out_check_rval;
365 : }
366 :
367 60162347 : error = xfs_dir2_isleaf(&args, &isleaf);
368 60162036 : if (error)
369 : return error;
370 :
371 60162036 : if (isleaf) {
372 1413782 : error = xfs_dir2_leaf_lookup(&args);
373 1413782 : goto out_check_rval;
374 : }
375 :
376 58748254 : error = xfs_dir2_node_lookup(&args);
377 :
378 180571179 : out_check_rval:
379 180571179 : if (error == -EEXIST)
380 : error = 0;
381 236440 : if (!error)
382 180334739 : *ino = args.inumber;
383 : return error;
384 : }
|