]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - libxfs/init.c
Fix check & repair of filesystems w/ realtime vols
[thirdparty/xfsprogs-dev.git] / libxfs / init.c
CommitLineData
2bd0ea18 1/*
7eb6693f 2 * Copyright (c) 2000-2004 Silicon Graphics, Inc. All Rights Reserved.
2bd0ea18
NS
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 *
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
5000d01d 14 * or the like. Any license provided herein, whether implied or
2bd0ea18
NS
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
22 *
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
25 *
26 * http://www.sgi.com
27 *
28 * For further information regarding this notice, see:
29 *
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
31 */
32
1d7e80ee 33#include <xfs/libxfs.h>
2bd0ea18 34#include <sys/stat.h>
9440d84d 35#include "init.h"
29e62271 36
2bd0ea18
NS
37#define findrawpath(x) x
38#define findblockpath(x) x
39
40char *progname = "libxfs"; /* default, changed by each tool */
41
42/*
43 * dev_map - map open devices to fd.
44 */
45#define MAX_DEVS 10 /* arbitary maximum */
46int nextfakedev = -1; /* device number to give to next fake device */
47static struct dev_to_fd {
9440d84d
NS
48 dev_t dev;
49 int fd;
2bd0ea18
NS
50} dev_map[MAX_DEVS]={{0}};
51
2bd0ea18
NS
52/*
53 * Checks whether a given device has a mounted, writable
54 * filesystem, returns 1 if it does & fatal (just warns
55 * if not fatal, but allows us to proceed).
5000d01d 56 *
2bd0ea18
NS
57 * Useful to tools which will produce uncertain results
58 * if the filesystem is active - repair, check, logprint.
59 */
60static int
61check_isactive(char *name, char *block, int fatal)
62{
9440d84d 63 struct stat64 st;
2bd0ea18 64
fc8202ba 65 if (stat64(block, &st) < 0)
9440d84d 66 return 0;
fc8202ba 67 if ((st.st_mode & S_IFMT) != S_IFBLK)
9440d84d 68 return 0;
93d9f139 69 if (platform_check_ismounted(name, block, &st, 0) == 0)
9440d84d 70 return 0;
93d9f139 71 return platform_check_iswritable(name, block, &st, fatal);
2bd0ea18
NS
72}
73
5000d01d 74/* libxfs_device_to_fd:
2bd0ea18
NS
75 * lookup a device number in the device map
76 * return the associated fd
77 */
78int
79libxfs_device_to_fd(dev_t device)
80{
9440d84d 81 int d;
5000d01d 82
9440d84d 83 for (d = 0; d < MAX_DEVS; d++)
5000d01d 84 if (dev_map[d].dev == device)
2bd0ea18 85 return dev_map[d].fd;
5000d01d 86
9440d84d
NS
87 fprintf(stderr, _("%s: %s: device %lld is not open\n"),
88 progname, __FUNCTION__, (long long)device);
2bd0ea18
NS
89 exit(1);
90}
91
92/* libxfs_device_open:
93 * open a device and return its device number
94 */
95dev_t
7eb6693f 96libxfs_device_open(char *path, int creat, int xflags, int setblksize)
2bd0ea18 97{
2bd0ea18 98 dev_t dev;
7eb6693f
NS
99 int fd, d, flags;
100 int readonly, excl;
101 struct stat64 statb;
102
103 readonly = (xflags & LIBXFS_ISREADONLY);
104 excl = (xflags & LIBXFS_EXCLUSIVELY) && !creat;
2bd0ea18 105
7eb6693f
NS
106 flags = (readonly ? O_RDONLY : O_RDWR) | \
107 (creat ? (O_CREAT|O_TRUNC) : 0) | \
108 (excl ? O_EXCL : 0);
109 if ((fd = open(path, flags, 0666)) < 0) {
9440d84d 110 fprintf(stderr, _("%s: cannot open %s: %s\n"),
2bd0ea18
NS
111 progname, path, strerror(errno));
112 exit(1);
113 }
114
7eb6693f 115 if (fstat64(fd, &statb) < 0) {
9440d84d 116 fprintf(stderr, _("%s: cannot stat %s: %s\n"),
2bd0ea18
NS
117 progname, path, strerror(errno));
118 exit(1);
119 }
a33a9e62 120
c5907b96 121 if (!readonly && setblksize && (statb.st_mode & S_IFMT) == S_IFBLK) {
93d9f139 122 platform_set_blocksize(fd, path, 512);
2bd0ea18
NS
123 }
124
a33a9e62
NS
125 /*
126 * Get the device number from the stat buf - unless
2bd0ea18 127 * we're not opening a real device, in which case
a33a9e62 128 * choose a new fake device number.
2bd0ea18 129 */
32181a02 130 dev = (statb.st_rdev) ? (statb.st_rdev) : (nextfakedev--);
2bd0ea18 131
32181a02 132 for (d = 0; d < MAX_DEVS; d++)
2bd0ea18 133 if (dev_map[d].dev == dev) {
9440d84d 134 fprintf(stderr, _("%s: device %lld is already open\n"),
5b64e00a 135 progname, (long long)dev);
2bd0ea18
NS
136 exit(1);
137 }
138
32181a02 139 for (d = 0; d < MAX_DEVS; d++)
2bd0ea18 140 if (!dev_map[d].dev) {
32181a02
NS
141 dev_map[d].dev = dev;
142 dev_map[d].fd = fd;
5000d01d 143
2bd0ea18
NS
144 return dev;
145 }
146
9440d84d
NS
147 fprintf(stderr, _("%s: %s: too many open devices\n"),
148 progname, __FUNCTION__);
2bd0ea18
NS
149 exit(1);
150}
151
152void
153libxfs_device_close(dev_t dev)
154{
5000d01d 155 int d;
2bd0ea18 156
32181a02 157 for (d = 0; d < MAX_DEVS; d++)
2bd0ea18 158 if (dev_map[d].dev == dev) {
32181a02 159 int fd;
5000d01d 160
32181a02
NS
161 fd = dev_map[d].fd;
162 dev_map[d].dev = dev_map[d].fd = 0;
5000d01d 163
2bd0ea18 164 fsync(fd);
93d9f139 165 platform_flush_device(fd);
2bd0ea18 166 close(fd);
5000d01d 167
2bd0ea18
NS
168 return;
169 }
170
9440d84d
NS
171 fprintf(stderr, _("%s: %s: device %lld is not open\n"),
172 progname, __FUNCTION__, (long long)dev);
2bd0ea18
NS
173 exit(1);
174}
175
74668075
NS
176static int
177check_open(char *path, int flags, char **rawfile, char **blockfile)
178{
c781939c
RC
179 int readonly = (flags & LIBXFS_ISREADONLY);
180 int inactive = (flags & LIBXFS_ISINACTIVE);
181 int dangerously = (flags & LIBXFS_DANGEROUSLY);
182 struct stat64 stbuf;
183
184 if (stat64(path, &stbuf) < 0) {
185 perror(path);
186 return 0;
187 }
188 if (!(*rawfile = findrawpath(path))) {
189 fprintf(stderr, _("%s: "
190 "can't find a character device matching %s\n"),
191 progname, path);
192 return 0;
193 }
194 if (!(*blockfile = findblockpath(path))) {
195 fprintf(stderr, _("%s: "
196 "can't find a block device matching %s\n"),
197 progname, path);
198 return 0;
199 }
200 if (!readonly && !inactive && platform_check_ismounted(path, *blockfile, NULL, 1))
201 return 0;
202
203 if (inactive && check_isactive(path, *blockfile, ((readonly|dangerously)?1:0)))
204 return 0;
205
206 return 1;
207}
208
2bd0ea18
NS
209/*
210 * libxfs initialization.
211 * Caller gets a 0 on failure (and we print a message), 1 on success.
212 */
213int
214libxfs_init(libxfs_init_t *a)
215{
216 char *blockfile;
217 char curdir[MAXPATHLEN];
218 char *dname;
219 char dpath[25];
220 int fd;
221 char *logname;
222 char logpath[25];
223 int needcd;
224 char *rawfile;
225 char *rtname;
226 char rtpath[25];
227 int rval = 0;
c781939c 228 int flags;
2bd0ea18
NS
229
230 dpath[0] = logpath[0] = rtpath[0] = '\0';
231 dname = a->dname;
232 logname = a->logname;
233 rtname = a->rtname;
2bd0ea18 234 a->dfd = a->logfd = a->rtfd = -1;
74668075
NS
235 a->ddev = a->logdev = a->rtdev = 0;
236 a->dbsize = a->lbsize = a->rtbsize = 0;
2bd0ea18
NS
237 a->dsize = a->logBBsize = a->logBBstart = a->rtsize = 0;
238
239 (void)getcwd(curdir,MAXPATHLEN);
240 needcd = 0;
241 fd = -1;
c781939c
RC
242 flags = a->isreadonly;
243
2bd0ea18 244 if (a->volname) {
c781939c 245 if(!check_open(a->volname,flags,&rawfile,&blockfile))
2bd0ea18
NS
246 goto done;
247 needcd = 1;
248 fd = open(rawfile, O_RDONLY);
249#ifdef HAVE_VOLUME_MANAGER
250 xlv_getdev_t getdev;
251 if (ioctl(fd, DIOCGETVOLDEV, &getdev) < 0)
252#else
253 if (1)
254#endif
255 {
256 if (a->notvolok) {
257 dname = a->dname = a->volname;
258 a->volname = NULL;
259 goto voldone;
260 }
9440d84d
NS
261 fprintf(stderr, _("%s: "
262 "%s is not a volume device name\n"),
2bd0ea18
NS
263 progname, a->volname);
264 if (a->notvolmsg)
265 fprintf(stderr, a->notvolmsg, a->volname);
266 goto done;
267 }
268#ifdef HAVE_VOLUME_MANAGER
269 if (getdev.data_subvol_dev && dname) {
9440d84d
NS
270 fprintf(stderr, _("%s: "
271 "%s has a data subvolume, cannot specify %s\n"),
2bd0ea18
NS
272 progname, a->volname, dname);
273 goto done;
274 }
275 if (getdev.log_subvol_dev && logname) {
9440d84d
NS
276 fprintf(stderr, _("%s: "
277 "%s has a log subvolume, cannot specify %s\n"),
2bd0ea18
NS
278 progname, a->volname, logname);
279 goto done;
280 }
281 if (getdev.rt_subvol_dev && rtname) {
9440d84d
NS
282 fprintf(stderr, _("%s: %s has a realtime subvolume, "
283 "cannot specify %s\n"),
2bd0ea18
NS
284 progname, a->volname, rtname);
285 goto done;
286 }
287 if (!dname && getdev.data_subvol_dev) {
288 strcpy(dpath, "/tmp/libxfsdXXXXXX");
289 (void)mktemp(dpath);
290 if (mknod(dpath, S_IFCHR | 0600,
291 getdev.data_subvol_dev) < 0) {
9440d84d 292 fprintf(stderr, _("%s: mknod failed: %s\n"),
2bd0ea18
NS
293 progname, strerror(errno));
294 goto done;
295 }
296 dname = dpath;
297 }
298 if (!logname && getdev.log_subvol_dev) {
299 strcpy(logpath, "/tmp/libxfslXXXXXX");
300 (void)mktemp(logpath);
301 if (mknod(logpath, S_IFCHR | 0600,
302 getdev.log_subvol_dev) < 0) {
9440d84d 303 fprintf(stderr, _("%s: mknod failed: %s\n"),
2bd0ea18
NS
304 progname, strerror(errno));
305 goto done;
306 }
307 logname = logpath;
308 }
309 if (!rtname && getdev.rt_subvol_dev) {
310 strcpy(rtpath, "/tmp/libxfsrXXXXXX");
311 (void)mktemp(rtpath);
312 if (mknod(rtpath, S_IFCHR | 0600,
313 getdev.rt_subvol_dev) < 0) {
9440d84d 314 fprintf(stderr, _("%s: mknod failed: %s\n"),
2bd0ea18
NS
315 progname, strerror(errno));
316 goto done;
317 }
318 rtname = rtpath;
319 }
320#endif
321 }
322voldone:
323 if (dname) {
324 if (dname[0] != '/' && needcd)
325 chdir(curdir);
326 if (a->disfile) {
7eb6693f 327 a->ddev= libxfs_device_open(dname, a->dcreat, flags,
c5907b96 328 a->setblksize);
2bd0ea18
NS
329 a->dfd = libxfs_device_to_fd(a->ddev);
330 } else {
f02037ce 331 if (!check_open(dname, flags, &rawfile, &blockfile))
2bd0ea18
NS
332 goto done;
333 a->ddev = libxfs_device_open(rawfile,
7eb6693f 334 a->dcreat, flags, a->setblksize);
2bd0ea18 335 a->dfd = libxfs_device_to_fd(a->ddev);
f02037ce
NS
336 platform_findsizes(rawfile, a->dfd,
337 &a->dsize, &a->dbsize);
2bd0ea18
NS
338 }
339 needcd = 1;
340 } else
341 a->dsize = 0;
342 if (logname) {
343 if (logname[0] != '/' && needcd)
344 chdir(curdir);
345 if (a->lisfile) {
346 a->logdev = libxfs_device_open(logname,
7eb6693f 347 a->lcreat, flags, a->setblksize);
2bd0ea18
NS
348 a->logfd = libxfs_device_to_fd(a->logdev);
349 } else {
f02037ce 350 if (!check_open(logname, flags, &rawfile, &blockfile))
2bd0ea18
NS
351 goto done;
352 a->logdev = libxfs_device_open(rawfile,
7eb6693f 353 a->lcreat, flags, a->setblksize);
2bd0ea18 354 a->logfd = libxfs_device_to_fd(a->logdev);
f02037ce
NS
355 platform_findsizes(rawfile, a->logfd,
356 &a->logBBsize, &a->lbsize);
2bd0ea18
NS
357 }
358 needcd = 1;
359 } else
360 a->logBBsize = 0;
361 if (rtname) {
362 if (rtname[0] != '/' && needcd)
363 chdir(curdir);
364 if (a->risfile) {
365 a->rtdev = libxfs_device_open(rtname,
7eb6693f 366 a->rcreat, flags, a->setblksize);
2bd0ea18
NS
367 a->rtfd = libxfs_device_to_fd(a->rtdev);
368 } else {
f02037ce 369 if (!check_open(rtname, flags, &rawfile, &blockfile))
2bd0ea18
NS
370 goto done;
371 a->rtdev = libxfs_device_open(rawfile,
7eb6693f 372 a->rcreat, flags, a->setblksize);
2bd0ea18 373 a->rtfd = libxfs_device_to_fd(a->rtdev);
f02037ce
NS
374 platform_findsizes(rawfile, a->rtfd,
375 &a->rtsize, &a->rtbsize);
2bd0ea18
NS
376 }
377 needcd = 1;
378 } else
379 a->rtsize = 0;
380 if (a->dsize < 0) {
9440d84d 381 fprintf(stderr, _("%s: can't get size for data subvolume\n"),
2bd0ea18
NS
382 progname);
383 goto done;
384 }
385 if (a->logBBsize < 0) {
9440d84d 386 fprintf(stderr, _("%s: can't get size for log subvolume\n"),
2bd0ea18
NS
387 progname);
388 goto done;
389 }
390 if (a->rtsize < 0) {
9440d84d 391 fprintf(stderr, _("%s: can't get size for realtime subvolume\n"),
2bd0ea18
NS
392 progname);
393 goto done;
394 }
395 if (needcd)
396 chdir(curdir);
397 rval = 1;
398done:
399 if (dpath[0])
400 unlink(dpath);
401 if (logpath[0])
402 unlink(logpath);
403 if (rtpath[0])
404 unlink(rtpath);
405 if (fd >= 0)
406 close(fd);
407 if (!rval && a->ddev)
408 libxfs_device_close(a->ddev);
409 if (!rval && a->logdev)
410 libxfs_device_close(a->logdev);
411 if (!rval && a->rtdev)
412 libxfs_device_close(a->rtdev);
413 return rval;
414}
415
416
417/*
418 * Initialize/destroy all of the zone allocators we use.
419 */
420static void
421manage_zones(int release)
422{
423 extern xfs_zone_t *xfs_ili_zone;
424 extern xfs_zone_t *xfs_inode_zone;
425 extern xfs_zone_t *xfs_ifork_zone;
426 extern xfs_zone_t *xfs_dabuf_zone;
427 extern xfs_zone_t *xfs_buf_item_zone;
428 extern xfs_zone_t *xfs_da_state_zone;
429 extern xfs_zone_t *xfs_btree_cur_zone;
430 extern xfs_zone_t *xfs_bmap_free_item_zone;
431 extern void xfs_dir_startup();
432
433 if (release) { /* free zone allocation */
434 libxfs_free(xfs_inode_zone);
435 libxfs_free(xfs_ifork_zone);
436 libxfs_free(xfs_dabuf_zone);
437 libxfs_free(xfs_buf_item_zone);
438 libxfs_free(xfs_da_state_zone);
439 libxfs_free(xfs_btree_cur_zone);
440 libxfs_free(xfs_bmap_free_item_zone);
441 return;
442 }
443 /* otherwise initialise zone allocation */
444 xfs_inode_zone = libxfs_zone_init(sizeof(xfs_inode_t), "xfs_inode");
445 xfs_ifork_zone = libxfs_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
446 xfs_dabuf_zone = libxfs_zone_init(sizeof(xfs_dabuf_t), "xfs_dabuf");
447 xfs_ili_zone = libxfs_zone_init(
448 sizeof(xfs_inode_log_item_t), "xfs_inode_log_item");
449 xfs_buf_item_zone = libxfs_zone_init(
450 sizeof(xfs_buf_log_item_t), "xfs_buf_log_item");
451 xfs_da_state_zone = libxfs_zone_init(
452 sizeof(xfs_da_state_t), "xfs_da_state");
453 xfs_btree_cur_zone = libxfs_zone_init(
454 sizeof(xfs_btree_cur_t), "xfs_btree_cur");
455 xfs_bmap_free_item_zone = libxfs_zone_init(
456 sizeof(xfs_bmap_free_item_t), "xfs_bmap_free_item");
457 xfs_dir_startup();
458}
459
460/*
461 * Get the bitmap and summary inodes into the mount structure
462 * at mount time.
463 */
464static int
465rtmount_inodes(xfs_mount_t *mp)
466{
467 int error;
468 xfs_sb_t *sbp;
469
470 sbp = &mp->m_sb;
471 if (sbp->sb_rbmino == NULLFSINO)
472 return 0;
473 error = libxfs_iread(mp, NULL, sbp->sb_rbmino, &mp->m_rbmip, 0);
474 if (error) {
9440d84d
NS
475 fprintf(stderr,
476 _("%s: cannot read realtime bitmap inode (%d)\n"),
2bd0ea18
NS
477 progname, error);
478 return error;
479 }
480 ASSERT(mp->m_rbmip != NULL);
481 ASSERT(sbp->sb_rsumino != NULLFSINO);
482 error = libxfs_iread(mp, NULL, sbp->sb_rsumino, &mp->m_rsumip, 0);
483 if (error) {
9440d84d
NS
484 fprintf(stderr,
485 _("%s: cannot read realtime summary inode (%d)\n"),
2bd0ea18
NS
486 progname, error);
487 return error;
488 }
489 ASSERT(mp->m_rsumip != NULL);
490 return 0;
491}
492
b391b7cd
NS
493/*
494 * Initialize realtime fields in the mount structure.
495 */
496static int
497rtmount_init(
498 xfs_mount_t *mp) /* file system mount structure */
499{
500 xfs_buf_t *bp; /* buffer for last block of subvolume */
501 xfs_daddr_t d; /* address of last block of subvolume */
502 xfs_sb_t *sbp; /* filesystem superblock copy in mount */
503
504 sbp = &mp->m_sb;
505 if (sbp->sb_rblocks == 0)
506 return 0;
38c82117 507 if (mp->m_rtdev == 0) {
9440d84d 508 fprintf(stderr, _("%s: filesystem has a realtime subvolume\n"),
b391b7cd
NS
509 progname);
510 return -1;
511 }
512 mp->m_rsumlevels = sbp->sb_rextslog + 1;
513 mp->m_rsumsize =
514 (uint)sizeof(xfs_suminfo_t) * mp->m_rsumlevels *
515 sbp->sb_rbmblocks;
516 mp->m_rsumsize = roundup(mp->m_rsumsize, sbp->sb_blocksize);
517 mp->m_rbmip = mp->m_rsumip = NULL;
518 /*
519 * Check that the realtime section is an ok size.
520 */
521 d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_rblocks);
522 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_rblocks) {
9440d84d
NS
523 fprintf(stderr, _("%s: realtime init - %llu != %llu\n"),
524 progname, (unsigned long long) XFS_BB_TO_FSB(mp, d),
b391b7cd
NS
525 (unsigned long long) mp->m_sb.sb_rblocks);
526 return -1;
527 }
9440d84d
NS
528 bp = libxfs_readbuf(mp->m_rtdev,
529 d - XFS_FSB_TO_BB(mp, 1), XFS_FSB_TO_BB(mp, 1), 0);
b391b7cd 530 if (bp == NULL) {
9440d84d
NS
531 fprintf(stderr, _("%s: realtime size check failed\n"),
532 progname);
b391b7cd
NS
533 return -1;
534 }
535 libxfs_putbuf(bp);
536 return 0;
537}
538
34317449 539#define XFS_MOUNT_32BITINODES 0x1
2b288ccf 540#define XFS_MOUNT_32BITINOOPT 0x2
2bd0ea18
NS
541/*
542 * Mount structure initialization, provides a filled-in xfs_mount_t
543 * such that the numerous XFS_* macros can be used. If dev is zero,
544 * no IO will be performed (no size checks, read root inodes).
545 */
546xfs_mount_t *
547libxfs_mount(
548 xfs_mount_t *mp,
549 xfs_sb_t *sb,
550 dev_t dev,
551 dev_t logdev,
552 dev_t rtdev,
4ca431fc 553 int flags)
2bd0ea18
NS
554{
555 xfs_daddr_t d;
556 xfs_buf_t *bp;
557 xfs_sb_t *sbp;
558 size_t size;
559 int error;
560
561 mp->m_dev = dev;
562 mp->m_rtdev = rtdev;
563 mp->m_logdev = logdev;
2b288ccf 564 mp->m_flags = (XFS_MOUNT_32BITINODES|XFS_MOUNT_32BITINOOPT);
2bd0ea18
NS
565 mp->m_sb = *sb;
566 sbp = &(mp->m_sb);
567 manage_zones(0);
568
569 libxfs_mount_common(mp, sb);
570
571 libxfs_alloc_compute_maxlevels(mp);
572 libxfs_bmap_compute_maxlevels(mp, XFS_DATA_FORK);
573 libxfs_bmap_compute_maxlevels(mp, XFS_ATTR_FORK);
574 libxfs_ialloc_compute_maxlevels(mp);
575
576 if (sbp->sb_imax_pct) {
577 /* Make sure the maximum inode count is a multiple of the
578 * units we allocate inodes in.
579 */
580 mp->m_maxicount = (sbp->sb_dblocks * sbp->sb_imax_pct) / 100;
581 mp->m_maxicount = ((mp->m_maxicount / mp->m_ialloc_blks) *
582 mp->m_ialloc_blks) << sbp->sb_inopblog;
583 } else
584 mp->m_maxicount = 0;
585
586 mp->m_inode_cluster_size = XFS_INODE_BIG_CLUSTER_SIZE;
587
949c0f10
NS
588 /*
589 * Set whether we're using stripe alignment.
590 */
591 if (XFS_SB_VERSION_HASDALIGN(&mp->m_sb)) {
592 mp->m_dalign = sbp->sb_unit;
593 mp->m_swidth = sbp->sb_width;
594 }
595
2bd0ea18
NS
596 /*
597 * Set whether we're using inode alignment.
598 */
599 if (XFS_SB_VERSION_HASALIGN(&mp->m_sb) &&
600 mp->m_sb.sb_inoalignmt >=
601 XFS_B_TO_FSBT(mp, mp->m_inode_cluster_size))
602 mp->m_inoalign_mask = mp->m_sb.sb_inoalignmt - 1;
603 else
604 mp->m_inoalign_mask = 0;
605 /*
606 * If we are using stripe alignment, check whether
607 * the stripe unit is a multiple of the inode alignment
608 */
609 if ( mp->m_dalign
610 && mp->m_inoalign_mask && !(mp->m_dalign & mp->m_inoalign_mask))
611 mp->m_sinoalign = mp->m_dalign;
612 else
613 mp->m_sinoalign = 0;
614
615 /*
616 * Check that the data (and log if separate) are an ok size.
617 */
9440d84d 618 d = (xfs_daddr_t) XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks);
2bd0ea18 619 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_dblocks) {
9440d84d 620 fprintf(stderr, _("%s: size check failed\n"), progname);
4ca431fc
NS
621 if (!(flags & LIBXFS_MOUNT_DEBUGGER))
622 return NULL;
2bd0ea18
NS
623 }
624
625 /* Initialize the appropriate directory manager */
626 if (XFS_SB_VERSION_HASDIRV2(sbp))
627 libxfs_dir2_mount(mp);
628 else
629 libxfs_dir_mount(mp);
630
631 /* Initialize the precomputed transaction reservations values */
632 libxfs_trans_init(mp);
633
634 if (dev == 0) /* maxtrres, we have no device so leave now */
635 return mp;
636
9440d84d 637 bp = libxfs_readbuf(mp->m_dev,
4ca431fc
NS
638 d - XFS_FSS_TO_BB(mp, 1), XFS_FSS_TO_BB(mp, 1),
639 !(flags & LIBXFS_MOUNT_DEBUGGER));
9440d84d
NS
640 if (!bp) {
641 fprintf(stderr, _("%s: data size check failed\n"), progname);
4ca431fc
NS
642 if (!(flags & LIBXFS_MOUNT_DEBUGGER))
643 return NULL;
2bd0ea18
NS
644 }
645 libxfs_putbuf(bp);
646
647 if (mp->m_logdev && mp->m_logdev != mp->m_dev) {
9440d84d 648 d = (xfs_daddr_t) XFS_FSB_TO_BB(mp, mp->m_sb.sb_logblocks);
2bd0ea18 649 if ( (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_logblocks) ||
9440d84d
NS
650 (!(bp = libxfs_readbuf(mp->m_logdev,
651 d - XFS_FSB_TO_BB(mp, 1),
4ca431fc
NS
652 XFS_FSB_TO_BB(mp, 1),
653 !(flags & LIBXFS_MOUNT_DEBUGGER)))) ) {
9440d84d 654 fprintf(stderr, _("%s: log size checks failed\n"),
2bd0ea18 655 progname);
4ca431fc
NS
656 if (!(flags & LIBXFS_MOUNT_DEBUGGER))
657 return NULL;
2bd0ea18
NS
658 }
659 libxfs_putbuf(bp);
660 }
661
662 /* Initialize realtime fields in the mount structure */
74668075 663 if (!(flags & LIBXFS_MOUNT_DEBUGGER) && rtmount_init(mp)) {
9440d84d
NS
664 fprintf(stderr, _("%s: realtime device init failed\n"),
665 progname);
4ca431fc 666 return NULL;
2bd0ea18
NS
667 }
668
669 /* Allocate and initialize the per-ag data */
670 size = sbp->sb_agcount * sizeof(xfs_perag_t);
8ebd0722 671 if (size && (mp->m_perag = calloc(size, 1)) == NULL) {
9440d84d 672 fprintf(stderr, _("%s: failed to alloc %ld bytes: %s\n"),
5b64e00a 673 progname, (long)size, strerror(errno));
2bd0ea18
NS
674 exit(1);
675 }
676
a33a9e62
NS
677 libxfs_initialize_perag(mp, sbp->sb_agcount);
678
2bd0ea18
NS
679 /*
680 * mkfs calls mount before the root inode is allocated.
681 */
4ca431fc 682 if ((flags & LIBXFS_MOUNT_ROOTINOS) && sbp->sb_rootino != NULLFSINO) {
2bd0ea18
NS
683 error = libxfs_iread(mp, NULL, sbp->sb_rootino,
684 &mp->m_rootip, 0);
685 if (error) {
9440d84d 686 fprintf(stderr, _("%s: cannot read root inode (%d)\n"),
2bd0ea18 687 progname, error);
4ca431fc
NS
688 if (!(flags & LIBXFS_MOUNT_DEBUGGER))
689 return NULL;
2bd0ea18
NS
690 }
691 ASSERT(mp->m_rootip != NULL);
692 }
74668075
NS
693 if ((flags & LIBXFS_MOUNT_ROOTINOS) &&
694 !(flags & LIBXFS_MOUNT_DEBUGGER) &&
695 rtmount_inodes(mp))
696 return NULL;
2bd0ea18
NS
697 return mp;
698}
699
700/*
9440d84d 701 * Release any resource obtained during a mount.
2bd0ea18
NS
702 */
703void
704libxfs_umount(xfs_mount_t *mp)
705{
706 manage_zones(1);
fceb0d99
ES
707 if (mp->m_perag) {
708 int agno;
709 for (agno = 0; agno < mp->m_maxagi; agno++) {
710 if (mp->m_perag[agno].pagb_list)
711 free(mp->m_perag[agno].pagb_list);
712 }
713 free(mp->m_perag);
714 }
2bd0ea18 715}