]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - libxfs/util.c
libxfs: refactor manage_zones()
[thirdparty/xfsprogs-dev.git] / libxfs / util.c
CommitLineData
959ef981 1// SPDX-License-Identifier: GPL-2.0
2bd0ea18 2/*
da23017d
NS
3 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
2bd0ea18
NS
5 */
6
9c799827 7#include "libxfs_priv.h"
7ed3b9bd 8#include "libxfs.h"
9542ae13 9#include "libxfs_io.h"
b626fb59
DC
10#include "init.h"
11#include "xfs_fs.h"
12#include "xfs_shared.h"
13#include "xfs_format.h"
14#include "xfs_log_format.h"
15#include "xfs_trans_resv.h"
16#include "xfs_mount.h"
f944d3d0 17#include "xfs_defer.h"
b626fb59
DC
18#include "xfs_inode_buf.h"
19#include "xfs_inode_fork.h"
20#include "xfs_inode.h"
21#include "xfs_trans.h"
22#include "xfs_bmap.h"
23#include "xfs_bmap_btree.h"
24#include "xfs_trans_space.h"
25#include "xfs_ialloc.h"
26#include "xfs_alloc.h"
9542ae13 27#include "xfs_bit.h"
d15188a1
DW
28#include "xfs_da_format.h"
29#include "xfs_da_btree.h"
30#include "xfs_dir2_priv.h"
2bd0ea18 31
88cd79be
DC
32/*
33 * Calculate the worst case log unit reservation for a given superblock
34 * configuration. Copied and munged from the kernel code, and assumes a
35 * worse case header usage (maximum log buffer sizes)
36 */
37int
38xfs_log_calc_unit_res(
39 struct xfs_mount *mp,
40 int unit_bytes)
41{
42 int iclog_space;
43 int iclog_header_size;
44 int iclog_size;
45 uint num_headers;
46
47 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
48 iclog_size = XLOG_MAX_RECORD_BSIZE;
49 iclog_header_size = BBTOB(iclog_size / XLOG_HEADER_CYCLE_SIZE);
50 } else {
51 iclog_size = XLOG_BIG_RECORD_BSIZE;
52 iclog_header_size = BBSIZE;
53 }
54
55 /*
56 * Permanent reservations have up to 'cnt'-1 active log operations
57 * in the log. A unit in this case is the amount of space for one
58 * of these log operations. Normal reservations have a cnt of 1
59 * and their unit amount is the total amount of space required.
60 *
61 * The following lines of code account for non-transaction data
62 * which occupy space in the on-disk log.
63 *
64 * Normal form of a transaction is:
65 * <oph><trans-hdr><start-oph><reg1-oph><reg1><reg2-oph>...<commit-oph>
66 * and then there are LR hdrs, split-recs and roundoff at end of syncs.
67 *
68 * We need to account for all the leadup data and trailer data
69 * around the transaction data.
70 * And then we need to account for the worst case in terms of using
71 * more space.
72 * The worst case will happen if:
73 * - the placement of the transaction happens to be such that the
74 * roundoff is at its maximum
75 * - the transaction data is synced before the commit record is synced
76 * i.e. <transaction-data><roundoff> | <commit-rec><roundoff>
77 * Therefore the commit record is in its own Log Record.
78 * This can happen as the commit record is called with its
79 * own region to xlog_write().
80 * This then means that in the worst case, roundoff can happen for
81 * the commit-rec as well.
82 * The commit-rec is smaller than padding in this scenario and so it is
83 * not added separately.
84 */
85
86 /* for trans header */
87 unit_bytes += sizeof(xlog_op_header_t);
88 unit_bytes += sizeof(xfs_trans_header_t);
89
90 /* for start-rec */
91 unit_bytes += sizeof(xlog_op_header_t);
92
93 /*
94 * for LR headers - the space for data in an iclog is the size minus
95 * the space used for the headers. If we use the iclog size, then we
96 * undercalculate the number of headers required.
97 *
98 * Furthermore - the addition of op headers for split-recs might
99 * increase the space required enough to require more log and op
100 * headers, so take that into account too.
101 *
102 * IMPORTANT: This reservation makes the assumption that if this
103 * transaction is the first in an iclog and hence has the LR headers
104 * accounted to it, then the remaining space in the iclog is
105 * exclusively for this transaction. i.e. if the transaction is larger
106 * than the iclog, it will be the only thing in that iclog.
107 * Fundamentally, this means we must pass the entire log vector to
108 * xlog_write to guarantee this.
109 */
110 iclog_space = iclog_size - iclog_header_size;
111 num_headers = howmany(unit_bytes, iclog_space);
112
113 /* for split-recs - ophdrs added when data split over LRs */
114 unit_bytes += sizeof(xlog_op_header_t) * num_headers;
115
116 /* add extra header reservations if we overrun */
117 while (!num_headers ||
118 howmany(unit_bytes, iclog_space) > num_headers) {
119 unit_bytes += sizeof(xlog_op_header_t);
120 num_headers++;
121 }
122 unit_bytes += iclog_header_size * num_headers;
123
124 /* for commit-rec LR header - note: padding will subsume the ophdr */
125 unit_bytes += iclog_header_size;
126
127 /* for roundoff padding for transaction data and one for commit record */
128 if (xfs_sb_version_haslogv2(&mp->m_sb) && mp->m_sb.sb_logsunit > 1) {
129 /* log su roundoff */
130 unit_bytes += 2 * mp->m_sb.sb_logsunit;
131 } else {
132 /* BB roundoff */
133 unit_bytes += 2 * BBSIZE;
134 }
135
136 return unit_bytes;
137}
138
2bd0ea18
NS
139/*
140 * Change the requested timestamp in the given inode.
5000d01d 141 *
2bd0ea18 142 * This was once shared with the kernel, but has diverged to the point
ff1f79a7 143 * where it's no longer worth the hassle of maintaining common code.
2bd0ea18
NS
144 */
145void
56b2de80
DC
146libxfs_trans_ichgtime(
147 struct xfs_trans *tp,
148 struct xfs_inode *ip,
149 int flags)
2bd0ea18 150{
5000d01d 151 struct timespec tv;
2bd0ea18
NS
152 struct timeval stv;
153
154 gettimeofday(&stv, (struct timezone *)0);
155 tv.tv_sec = stv.tv_sec;
156 tv.tv_nsec = stv.tv_usec * 1000;
1bc6cbe3
DC
157 if (flags & XFS_ICHGTIME_MOD)
158 VFS_I(ip)->i_mtime = tv;
159 if (flags & XFS_ICHGTIME_CHG)
160 VFS_I(ip)->i_ctime = tv;
41ce5f36 161 if (flags & XFS_ICHGTIME_CREATE) {
14f8b681
DW
162 ip->i_d.di_crtime.t_sec = (int32_t)tv.tv_sec;
163 ip->i_d.di_crtime.t_nsec = (int32_t)tv.tv_nsec;
41ce5f36 164 }
2bd0ea18
NS
165}
166
06b80354
DW
167STATIC uint16_t
168xfs_flags2diflags(
169 struct xfs_inode *ip,
170 unsigned int xflags)
171{
172 /* can't set PREALLOC this way, just preserve it */
173 uint16_t di_flags =
174 (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
175
176 if (xflags & FS_XFLAG_IMMUTABLE)
177 di_flags |= XFS_DIFLAG_IMMUTABLE;
178 if (xflags & FS_XFLAG_APPEND)
179 di_flags |= XFS_DIFLAG_APPEND;
180 if (xflags & FS_XFLAG_SYNC)
181 di_flags |= XFS_DIFLAG_SYNC;
182 if (xflags & FS_XFLAG_NOATIME)
183 di_flags |= XFS_DIFLAG_NOATIME;
184 if (xflags & FS_XFLAG_NODUMP)
185 di_flags |= XFS_DIFLAG_NODUMP;
186 if (xflags & FS_XFLAG_NODEFRAG)
187 di_flags |= XFS_DIFLAG_NODEFRAG;
188 if (xflags & FS_XFLAG_FILESTREAM)
189 di_flags |= XFS_DIFLAG_FILESTREAM;
190 if (S_ISDIR(VFS_I(ip)->i_mode)) {
191 if (xflags & FS_XFLAG_RTINHERIT)
192 di_flags |= XFS_DIFLAG_RTINHERIT;
193 if (xflags & FS_XFLAG_NOSYMLINKS)
194 di_flags |= XFS_DIFLAG_NOSYMLINKS;
195 if (xflags & FS_XFLAG_EXTSZINHERIT)
196 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
197 if (xflags & FS_XFLAG_PROJINHERIT)
198 di_flags |= XFS_DIFLAG_PROJINHERIT;
199 } else if (S_ISREG(VFS_I(ip)->i_mode)) {
200 if (xflags & FS_XFLAG_REALTIME)
201 di_flags |= XFS_DIFLAG_REALTIME;
202 if (xflags & FS_XFLAG_EXTSIZE)
203 di_flags |= XFS_DIFLAG_EXTSIZE;
204 }
205
206 return di_flags;
207}
208
209STATIC uint64_t
210xfs_flags2diflags2(
211 struct xfs_inode *ip,
212 unsigned int xflags)
213{
214 uint64_t di_flags2 =
215 (ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK);
216
217 if (xflags & FS_XFLAG_DAX)
218 di_flags2 |= XFS_DIFLAG2_DAX;
219 if (xflags & FS_XFLAG_COWEXTSIZE)
220 di_flags2 |= XFS_DIFLAG2_COWEXTSIZE;
221
222 return di_flags2;
223}
224
2bd0ea18 225/*
ff1f79a7 226 * Allocate an inode on disk and return a copy of its in-core version.
2bd0ea18
NS
227 * Set mode, nlink, and rdev appropriately within the inode.
228 * The uid and gid for the inode are set according to the contents of
229 * the given cred structure.
230 *
231 * This was once shared with the kernel, but has diverged to the point
ff1f79a7 232 * where it's no longer worth the hassle of maintaining common code.
2bd0ea18 233 */
00ff2b10 234static int
2bd0ea18
NS
235libxfs_ialloc(
236 xfs_trans_t *tp,
237 xfs_inode_t *pip,
238 mode_t mode,
239 nlink_t nlink,
63899e27 240 xfs_dev_t rdev,
9f064b7e
NS
241 struct cred *cr,
242 struct fsxattr *fsx,
2bd0ea18 243 xfs_buf_t **ialloc_context,
2bd0ea18
NS
244 xfs_inode_t **ipp)
245{
246 xfs_ino_t ino;
247 xfs_inode_t *ip;
248 uint flags;
249 int error;
250
251 /*
252 * Call the space management code to pick
253 * the on-disk inode to be allocated.
254 */
c1a29e92 255 error = xfs_dialloc(tp, pip ? pip->i_ino : 0, mode,
a2ceac1f 256 ialloc_context, &ino);
2bd0ea18
NS
257 if (error != 0)
258 return error;
a2ceac1f 259 if (*ialloc_context || ino == NULLFSINO) {
2bd0ea18
NS
260 *ipp = NULL;
261 return 0;
262 }
263 ASSERT(*ialloc_context == NULL);
264
e2dd0e1c
DW
265 error = libxfs_iget(tp->t_mountp, tp, ino, 0, &ip,
266 &xfs_default_ifork_ops);
2bd0ea18
NS
267 if (error != 0)
268 return error;
269 ASSERT(ip != NULL);
270
e37bf53c 271 VFS_I(ip)->i_mode = mode;
bcbe04c1 272 set_nlink(VFS_I(ip), nlink);
2bd0ea18
NS
273 ip->i_d.di_uid = cr->cr_uid;
274 ip->i_d.di_gid = cr->cr_gid;
22bc10ed 275 xfs_set_projid(&ip->i_d, pip ? 0 : fsx->fsx_projid);
41ce5f36 276 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG | XFS_ICHGTIME_MOD);
2bd0ea18
NS
277
278 /*
ff105f75
DC
279 * We only support filesystems that understand v2 format inodes. So if
280 * this is currently an old format inode, then change the inode version
281 * number now. This way we only do the conversion here rather than here
282 * and in the flush/logging code.
2bd0ea18 283 */
ff105f75 284 if (ip->i_d.di_version == 1) {
56b2de80 285 ip->i_d.di_version = 2;
22bc10ed
AM
286 /*
287 * old link count, projid_lo/hi field, pad field
288 * already zeroed
289 */
5000d01d 290 }
2bd0ea18 291
e37bf53c 292 if (pip && (VFS_I(pip)->i_mode & S_ISGID)) {
9f064b7e 293 ip->i_d.di_gid = pip->i_d.di_gid;
e37bf53c
DC
294 if ((VFS_I(pip)->i_mode & S_ISGID) && (mode & S_IFMT) == S_IFDIR)
295 VFS_I(ip)->i_mode |= S_ISGID;
9f064b7e
NS
296 }
297
2bd0ea18
NS
298 ip->i_d.di_size = 0;
299 ip->i_d.di_nextents = 0;
300 ASSERT(ip->i_d.di_nblocks == 0);
9f064b7e 301 ip->i_d.di_extsize = pip ? 0 : fsx->fsx_extsize;
2bd0ea18
NS
302 ip->i_d.di_dmevmask = 0;
303 ip->i_d.di_dmstate = 0;
06b80354 304 ip->i_d.di_flags = pip ? 0 : xfs_flags2diflags(ip, fsx->fsx_xflags);
41ce5f36
DC
305
306 if (ip->i_d.di_version == 3) {
307 ASSERT(ip->i_d.di_ino == ino);
299c0388 308 ASSERT(uuid_equal(&ip->i_d.di_uuid, &mp->m_sb.sb_meta_uuid));
9abcc5cd 309 VFS_I(ip)->i_version = 1;
06b80354
DW
310 ip->i_d.di_flags2 = pip ? 0 : xfs_flags2diflags2(ip,
311 fsx->fsx_xflags);
14f8b681
DW
312 ip->i_d.di_crtime.t_sec = (int32_t)VFS_I(ip)->i_mtime.tv_sec;
313 ip->i_d.di_crtime.t_nsec = (int32_t)VFS_I(ip)->i_mtime.tv_nsec;
06b80354 314 ip->i_d.di_cowextsize = pip ? 0 : fsx->fsx_cowextsize;
41ce5f36
DC
315 }
316
2bd0ea18 317 flags = XFS_ILOG_CORE;
322f2a29
SL
318 switch (mode & S_IFMT) {
319 case S_IFIFO:
63899e27
NS
320 case S_IFSOCK:
321 /* doesn't make sense to set an rdev for these */
322 rdev = 0;
90ec25ed 323 /* FALLTHROUGH */
322f2a29
SL
324 case S_IFCHR:
325 case S_IFBLK:
2bd0ea18 326 ip->i_d.di_format = XFS_DINODE_FMT_DEV;
2bd0ea18 327 flags |= XFS_ILOG_DEV;
551174eb 328 VFS_I(ip)->i_rdev = rdev;
2bd0ea18 329 break;
322f2a29
SL
330 case S_IFREG:
331 case S_IFDIR:
9f064b7e
NS
332 if (pip && (pip->i_d.di_flags & XFS_DIFLAG_ANY)) {
333 uint di_flags = 0;
334
335 if ((mode & S_IFMT) == S_IFDIR) {
336 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
337 di_flags |= XFS_DIFLAG_RTINHERIT;
338 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
339 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
340 ip->i_d.di_extsize = pip->i_d.di_extsize;
341 }
342 } else {
343 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT) {
344 di_flags |= XFS_DIFLAG_REALTIME;
345 }
346 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
347 di_flags |= XFS_DIFLAG_EXTSIZE;
348 ip->i_d.di_extsize = pip->i_d.di_extsize;
349 }
350 }
351 if (pip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
352 di_flags |= XFS_DIFLAG_PROJINHERIT;
353 ip->i_d.di_flags |= di_flags;
354 }
355 /* FALLTHROUGH */
322f2a29 356 case S_IFLNK:
2bd0ea18
NS
357 ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
358 ip->i_df.if_flags = XFS_IFEXTENTS;
9685aa3e 359 ip->i_df.if_bytes = 0;
b37d753d 360 ip->i_df.if_u1.if_root = NULL;
2bd0ea18
NS
361 break;
362 default:
363 ASSERT(0);
364 }
365 /* Attribute fork settings for new inode. */
366 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
367 ip->i_d.di_anextents = 0;
368
ff105f75
DC
369 /*
370 * set up the inode ops structure that the libxfs code relies on
371 */
e37bf53c 372 if (XFS_ISDIR(ip))
ff105f75
DC
373 ip->d_ops = ip->i_mount->m_dir_inode_ops;
374 else
375 ip->d_ops = ip->i_mount->m_nondir_inode_ops;
376
2bd0ea18
NS
377 /*
378 * Log the new values stuffed into the inode.
379 */
e2dd0e1c 380 xfs_trans_ijoin(tp, ip, 0);
2bd0ea18
NS
381 xfs_trans_log_inode(tp, ip, flags);
382 *ipp = ip;
383 return 0;
384}
385
2bd0ea18
NS
386/*
387 * Writes a modified inode's changes out to the inode's on disk home.
388 * Originally based on xfs_iflush_int() from xfs_inode.c in the kernel.
389 */
390int
391libxfs_iflush_int(xfs_inode_t *ip, xfs_buf_t *bp)
392{
393 xfs_inode_log_item_t *iip;
394 xfs_dinode_t *dip;
395 xfs_mount_t *mp;
396
2bd0ea18
NS
397 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
398 ip->i_d.di_nextents > ip->i_df.if_ext_max);
ff105f75 399 ASSERT(ip->i_d.di_version > 1);
2bd0ea18
NS
400
401 iip = ip->i_itemp;
402 mp = ip->i_mount;
403
404 /* set *dip = inode's place in the buffer */
92acb899 405 dip = xfs_buf_offset(bp, ip->i_imap.im_boffset);
2bd0ea18 406
2bd0ea18 407 ASSERT(ip->i_d.di_magic == XFS_DINODE_MAGIC);
e37bf53c 408 if (XFS_ISREG(ip)) {
2bd0ea18
NS
409 ASSERT( (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS) ||
410 (ip->i_d.di_format == XFS_DINODE_FMT_BTREE) );
ff0f39ea 411 } else if (XFS_ISDIR(ip)) {
2bd0ea18
NS
412 ASSERT( (ip->i_d.di_format == XFS_DINODE_FMT_EXTENTS) ||
413 (ip->i_d.di_format == XFS_DINODE_FMT_BTREE) ||
414 (ip->i_d.di_format == XFS_DINODE_FMT_LOCAL) );
415 }
416 ASSERT(ip->i_d.di_nextents+ip->i_d.di_anextents <= ip->i_d.di_nblocks);
417 ASSERT(ip->i_d.di_forkoff <= mp->m_sb.sb_inodesize);
2bd0ea18 418
41ce5f36
DC
419 /* bump the change count on v3 inodes */
420 if (ip->i_d.di_version == 3)
9abcc5cd 421 VFS_I(ip)->i_version++;
41ce5f36 422
20e882d4 423 /* Check the inline fork data before we write out. */
3d16890e 424 if (!libxfs_inode_verify_forks(ip))
d15188a1
DW
425 return -EFSCORRUPTED;
426
2bd0ea18
NS
427 /*
428 * Copy the dirty parts of the inode into the on-disk
429 * inode. We always copy out the core of the inode,
430 * because if the inode is dirty at all the core must
431 * be.
432 */
db17aebe 433 xfs_inode_to_disk(ip, dip, iip->ili_item.li_lsn);
46eca962 434
ff105f75 435 xfs_iflush_fork(ip, dip, iip, XFS_DATA_FORK);
f8149110 436 if (XFS_IFORK_Q(ip))
ff105f75 437 xfs_iflush_fork(ip, dip, iip, XFS_ATTR_FORK);
2bd0ea18 438
41ce5f36
DC
439 /* generate the checksum. */
440 xfs_dinode_calc_crc(mp, dip);
441
2bd0ea18
NS
442 return 0;
443}
444
2bd0ea18 445int
5e656dbb 446libxfs_mod_incore_sb(
19ebedcf
DC
447 struct xfs_mount *mp,
448 int field,
5e656dbb
BN
449 int64_t delta,
450 int rsvd)
2bd0ea18
NS
451{
452 long long lcounter; /* long counter for 64 bit fields */
453
454 switch (field) {
19ebedcf 455 case XFS_TRANS_SB_FDBLOCKS:
2bd0ea18
NS
456 lcounter = (long long)mp->m_sb.sb_fdblocks;
457 lcounter += delta;
458 if (lcounter < 0)
12b53197 459 return -ENOSPC;
2bd0ea18 460 mp->m_sb.sb_fdblocks = lcounter;
5e656dbb 461 return 0;
2bd0ea18
NS
462 default:
463 ASSERT(0);
12b53197 464 return -EINVAL;
2bd0ea18 465 }
2bd0ea18
NS
466}
467
2bd0ea18
NS
468/*
469 * This routine allocates disk space for the given file.
470 * Originally derived from xfs_alloc_file_space().
471 */
472int
473libxfs_alloc_file_space(
474 xfs_inode_t *ip,
475 xfs_off_t offset,
476 xfs_off_t len,
477 int alloc_type,
478 int attr_flags)
479{
480 xfs_mount_t *mp;
481 xfs_off_t count;
482 xfs_filblks_t datablocks;
483 xfs_filblks_t allocated_fsb;
484 xfs_filblks_t allocatesize_fsb;
5000d01d
SL
485 xfs_bmbt_irec_t *imapp;
486 xfs_bmbt_irec_t imaps[1];
2bd0ea18
NS
487 int reccount;
488 uint resblks;
489 xfs_fileoff_t startoffset_fsb;
490 xfs_trans_t *tp;
491 int xfs_bmapi_flags;
2bd0ea18
NS
492 int error;
493
494 if (len <= 0)
12b53197 495 return -EINVAL;
2bd0ea18
NS
496
497 count = len;
498 error = 0;
499 imapp = &imaps[0];
500 reccount = 1;
a2ceac1f 501 xfs_bmapi_flags = alloc_type ? XFS_BMAPI_PREALLOC : 0;
2bd0ea18
NS
502 mp = ip->i_mount;
503 startoffset_fsb = XFS_B_TO_FSBT(mp, offset);
504 allocatesize_fsb = XFS_B_TO_FSB(mp, count);
505
506 /* allocate file space until done or until there is an error */
507 while (allocatesize_fsb && !error) {
508 datablocks = allocatesize_fsb;
509
2bd0ea18 510 resblks = (uint)XFS_DIOSTRAT_SPACE_RES(mp, datablocks);
9074815c
CH
511 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks,
512 0, 0, &tp);
682fa9e0
ES
513 /*
514 * Check for running out of space
515 */
516 if (error) {
12b53197 517 ASSERT(error == -ENOSPC);
2bd0ea18 518 break;
682fa9e0 519 }
2bd0ea18 520 xfs_trans_ijoin(tp, ip, 0);
2bd0ea18 521
a2ceac1f 522 error = xfs_bmapi_write(tp, ip, startoffset_fsb, allocatesize_fsb,
b39f9fcb 523 xfs_bmapi_flags, 0, imapp, &reccount);
56b2de80 524
2bd0ea18 525 if (error)
682fa9e0 526 goto error0;
2bd0ea18 527
5c33baee
CH
528 /*
529 * Complete the transaction
530 */
de5a3f46 531 error = xfs_trans_commit(tp);
2bd0ea18
NS
532 if (error)
533 break;
534
535 allocated_fsb = imapp->br_blockcount;
536 if (reccount == 0)
12b53197 537 return -ENOSPC;
2bd0ea18
NS
538
539 startoffset_fsb += allocated_fsb;
540 allocatesize_fsb -= allocated_fsb;
541 }
542 return error;
682fa9e0
ES
543
544error0: /* Cancel bmap, cancel trans */
3d7434fe 545 xfs_trans_cancel(tp);
682fa9e0 546 return error;
2bd0ea18
NS
547}
548
9f064b7e
NS
549/*
550 * Wrapper around call to libxfs_ialloc. Takes care of committing and
551 * allocating a new transaction as needed.
552 *
553 * Originally there were two copies of this code - one in mkfs, the
554 * other in repair - now there is just the one.
555 */
556int
557libxfs_inode_alloc(
558 xfs_trans_t **tp,
559 xfs_inode_t *pip,
560 mode_t mode,
561 nlink_t nlink,
562 xfs_dev_t rdev,
563 struct cred *cr,
564 struct fsxattr *fsx,
565 xfs_inode_t **ipp)
566{
9f064b7e
NS
567 xfs_buf_t *ialloc_context;
568 xfs_inode_t *ip;
9f064b7e
NS
569 int error;
570
9f064b7e
NS
571 ialloc_context = (xfs_buf_t *)0;
572 error = libxfs_ialloc(*tp, pip, mode, nlink, rdev, cr, fsx,
c1a29e92 573 &ialloc_context, &ip);
a2ceac1f
DC
574 if (error) {
575 *ipp = NULL;
9f064b7e 576 return error;
a2ceac1f
DC
577 }
578 if (!ialloc_context && !ip) {
579 *ipp = NULL;
12b53197 580 return -ENOSPC;
a2ceac1f 581 }
9f064b7e 582
a2ceac1f 583 if (ialloc_context) {
48ea6cb9 584
9f064b7e 585 xfs_trans_bhold(*tp, ialloc_context);
d262295d 586
d67406c9 587 error = xfs_trans_roll(tp);
48ea6cb9 588 if (error) {
d262295d 589 fprintf(stderr, _("%s: cannot duplicate transaction: %s\n"),
48ea6cb9 590 progname, strerror(error));
9f064b7e
NS
591 exit(1);
592 }
593 xfs_trans_bjoin(*tp, ialloc_context);
594 error = libxfs_ialloc(*tp, pip, mode, nlink, rdev, cr,
c1a29e92 595 fsx, &ialloc_context, &ip);
9f064b7e 596 if (!ip)
12b53197 597 error = -ENOSPC;
9f064b7e
NS
598 if (error)
599 return error;
600 }
9f064b7e
NS
601
602 *ipp = ip;
603 return error;
604}
1552a820
NS
605
606/*
607 * Userspace versions of common diagnostic routines (varargs fun).
608 */
609void
5e656dbb 610libxfs_fs_repair_cmn_err(int level, xfs_mount_t *mp, char *fmt, ...)
1552a820
NS
611{
612 va_list ap;
613
614 va_start(ap, fmt);
615 vfprintf(stderr, fmt, ap);
616 fprintf(stderr, " This is a bug.\n");
89c4bb8e 617 fprintf(stderr, "%s version %s\n", progname, VERSION);
130093ab
DC
618 fprintf(stderr,
619 "Please capture the filesystem metadata with xfs_metadump and\n"
620 "report it to linux-xfs@vger.kernel.org\n");
1552a820
NS
621 va_end(ap);
622}
623
624void
5e656dbb 625libxfs_fs_cmn_err(int level, xfs_mount_t *mp, char *fmt, ...)
1552a820
NS
626{
627 va_list ap;
628
629 va_start(ap, fmt);
630 vfprintf(stderr, fmt, ap);
631 fputs("\n", stderr);
632 va_end(ap);
633}
634
635void
636cmn_err(int level, char *fmt, ...)
637{
638 va_list ap;
639
640 va_start(ap, fmt);
641 vfprintf(stderr, fmt, ap);
642 fputs("\n", stderr);
643 va_end(ap);
644}
99c1ec96
DC
645
646/*
647 * Warnings specifically for verifier errors. Differentiate CRC vs. invalid
648 * values, and omit the stack trace unless the error level is tuned high.
649 */
650void
651xfs_verifier_error(
7e6c95f1 652 struct xfs_buf *bp,
1e697959
DW
653 int error,
654 xfs_failaddr_t failaddr)
99c1ec96 655{
7e6c95f1
DW
656 xfs_buf_ioerror(bp, error);
657
1e697959 658 xfs_alert(NULL, "Metadata %s detected at %p, %s block 0x%llx/0x%x",
12b53197 659 bp->b_error == -EFSBADCRC ? "CRC error" : "corruption",
1e697959 660 failaddr ? failaddr : __return_address,
a3fac935 661 bp->b_ops->name, bp->b_bn, BBTOB(bp->b_length));
99c1ec96 662}
a65d8d29 663
1d3bac1f
DW
664/*
665 * Warnings for inode corruption problems. Don't bother with the stack
666 * trace unless the error level is turned up high.
667 */
668void
669xfs_inode_verifier_error(
670 struct xfs_inode *ip,
671 int error,
672 const char *name,
673 void *buf,
674 size_t bufsz,
675 xfs_failaddr_t failaddr)
676{
677 xfs_alert(NULL, "Metadata %s detected at %p, inode 0x%llx %s",
678 error == -EFSBADCRC ? "CRC error" : "corruption",
679 failaddr ? failaddr : __return_address,
680 ip->i_ino, name);
681}
682
7d77349c
BF
683/*
684 * This is called from I/O verifiers on v5 superblock filesystems. In the
685 * kernel, it validates the metadata LSN parameter against the current LSN of
686 * the active log. We don't have an active log in userspace so this kind of
687 * validation is not required. Therefore, this function always returns true in
688 * userspace.
689 *
690 * xfs_repair piggybacks off this mechanism to help track the largest metadata
691 * LSN in use on a filesystem. Keep a record of the largest LSN seen such that
692 * repair can validate it against the state of the log.
693 */
694xfs_lsn_t libxfs_max_lsn = 0;
00ff2b10 695static pthread_mutex_t libxfs_max_lsn_lock = PTHREAD_MUTEX_INITIALIZER;
7d77349c 696
a65d8d29
BF
697bool
698xfs_log_check_lsn(
699 struct xfs_mount *mp,
700 xfs_lsn_t lsn)
701{
7d77349c
BF
702 int cycle = CYCLE_LSN(lsn);
703 int block = BLOCK_LSN(lsn);
704 int max_cycle;
705 int max_block;
706
707 if (lsn == NULLCOMMITLSN)
708 return true;
709
710 pthread_mutex_lock(&libxfs_max_lsn_lock);
711
712 max_cycle = CYCLE_LSN(libxfs_max_lsn);
713 max_block = BLOCK_LSN(libxfs_max_lsn);
714
715 if ((cycle > max_cycle) ||
716 (cycle == max_cycle && block > max_block))
717 libxfs_max_lsn = lsn;
718
719 pthread_mutex_unlock(&libxfs_max_lsn_lock);
720
a65d8d29
BF
721 return true;
722}
9542ae13
DC
723
724static struct xfs_buftarg *
725xfs_find_bdev_for_inode(
726 struct xfs_inode *ip)
727{
728 struct xfs_mount *mp = ip->i_mount;
729
730 if (XFS_IS_REALTIME_INODE(ip))
731 return mp->m_rtdev_targp;
732 return mp->m_ddev_targp;
733}
734
735static xfs_daddr_t
736xfs_fsb_to_db(struct xfs_inode *ip, xfs_fsblock_t fsb)
737{
738 if (XFS_IS_REALTIME_INODE(ip))
739 return XFS_FSB_TO_BB(ip->i_mount, fsb);
740 return XFS_FSB_TO_DADDR(ip->i_mount, (fsb));
741}
742
743int
744libxfs_zero_extent(
745 struct xfs_inode *ip,
746 xfs_fsblock_t start_fsb,
747 xfs_off_t count_fsb)
748{
749 xfs_daddr_t sector = xfs_fsb_to_db(ip, start_fsb);
750 ssize_t size = XFS_FSB_TO_BB(ip->i_mount, count_fsb);
751
752 return libxfs_device_zero(xfs_find_bdev_for_inode(ip), sector, size);
753}
0b90dda6 754
c7a710b7
DW
755unsigned int
756hweight8(unsigned int w)
757{
758 unsigned int res = w - ((w >> 1) & 0x55);
759 res = (res & 0x33) + ((res >> 2) & 0x33);
760 return (res + (res >> 4)) & 0x0F;
761}
ec291989
DC
762
763unsigned int
764hweight32(unsigned int w)
765{
766 unsigned int res = w - ((w >> 1) & 0x55555555);
767 res = (res & 0x33333333) + ((res >> 2) & 0x33333333);
768 res = (res + (res >> 4)) & 0x0F0F0F0F;
769 res = res + (res >> 8);
770 return (res + (res >> 16)) & 0x000000FF;
771}
772
773unsigned int
774hweight64(__u64 w)
775{
776 return hweight32((unsigned int)w) +
777 hweight32((unsigned int)(w >> 32));
778}
779