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