]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/ufs_fs.h
[PATCH] ufs: fsync implementation
[net-next-2.6.git] / include / linux / ufs_fs.h
CommitLineData
1da177e4
LT
1/*
2 * linux/include/linux/ufs_fs.h
3 *
4 * Copyright (C) 1996
5 * Adrian Rodriguez (adrian@franklins-tower.rutgers.edu)
6 * Laboratory for Computer Science Research Computing Facility
7 * Rutgers, The State University of New Jersey
8 *
9 * Clean swab support by Fare <fare@tunes.org>
10 * just hope no one is using NNUUXXI on __?64 structure elements
11 * 64-bit clean thanks to Maciej W. Rozycki <macro@ds2.pg.gda.pl>
12 *
13 * 4.4BSD (FreeBSD) support added on February 1st 1998 by
14 * Niels Kristian Bech Jensen <nkbj@image.dk> partially based
15 * on code by Martin von Loewis <martin@mira.isdn.cs.tu-berlin.de>.
16 *
17 * NeXTstep support added on February 5th 1998 by
18 * Niels Kristian Bech Jensen <nkbj@image.dk>.
19 *
20 * Write support by Daniel Pirkl <daniel.pirkl@email.cz>
21 *
22 * HP/UX hfs filesystem support added by
23 * Martin K. Petersen <mkp@mkp.net>, August 1999
24 *
25 * UFS2 (of FreeBSD 5.x) support added by
26 * Niraj Kumar <niraj17@iitbombay.org> , Jan 2004
27 *
28 */
29
30#ifndef __LINUX_UFS_FS_H
31#define __LINUX_UFS_FS_H
32
33#include <linux/types.h>
34#include <linux/kernel.h>
1da177e4
LT
35#include <linux/stat.h>
36#include <linux/fs.h>
37
38#ifndef __KERNEL__
39typedef __u64 __fs64;
40typedef __u32 __fs32;
41typedef __u16 __fs16;
42#else
43typedef __u64 __bitwise __fs64;
44typedef __u32 __bitwise __fs32;
45typedef __u16 __bitwise __fs16;
46#endif
47
48#include <linux/ufs_fs_i.h>
49#include <linux/ufs_fs_sb.h>
50
51#define UFS_BBLOCK 0
52#define UFS_BBSIZE 8192
53#define UFS_SBLOCK 8192
54#define UFS_SBSIZE 8192
55
56#define UFS_SECTOR_SIZE 512
57#define UFS_SECTOR_BITS 9
58#define UFS_MAGIC 0x00011954
59#define UFS2_MAGIC 0x19540119
60#define UFS_CIGAM 0x54190100 /* byteswapped MAGIC */
61
62/* Copied from FreeBSD */
63/*
64 * Each disk drive contains some number of filesystems.
65 * A filesystem consists of a number of cylinder groups.
66 * Each cylinder group has inodes and data.
67 *
68 * A filesystem is described by its super-block, which in turn
69 * describes the cylinder groups. The super-block is critical
70 * data and is replicated in each cylinder group to protect against
71 * catastrophic loss. This is done at `newfs' time and the critical
72 * super-block data does not change, so the copies need not be
73 * referenced further unless disaster strikes.
74 *
75 * For filesystem fs, the offsets of the various blocks of interest
76 * are given in the super block as:
77 * [fs->fs_sblkno] Super-block
78 * [fs->fs_cblkno] Cylinder group block
79 * [fs->fs_iblkno] Inode blocks
80 * [fs->fs_dblkno] Data blocks
81 * The beginning of cylinder group cg in fs, is given by
82 * the ``cgbase(fs, cg)'' macro.
83 *
84 * Depending on the architecture and the media, the superblock may
85 * reside in any one of four places. For tiny media where every block
86 * counts, it is placed at the very front of the partition. Historically,
87 * UFS1 placed it 8K from the front to leave room for the disk label and
88 * a small bootstrap. For UFS2 it got moved to 64K from the front to leave
89 * room for the disk label and a bigger bootstrap, and for really piggy
90 * systems we check at 256K from the front if the first three fail. In
91 * all cases the size of the superblock will be SBLOCKSIZE. All values are
92 * given in byte-offset form, so they do not imply a sector size. The
93 * SBLOCKSEARCH specifies the order in which the locations should be searched.
94 */
95#define SBLOCK_FLOPPY 0
96#define SBLOCK_UFS1 8192
97#define SBLOCK_UFS2 65536
98#define SBLOCK_PIGGY 262144
99#define SBLOCKSIZE 8192
100#define SBLOCKSEARCH \
101 { SBLOCK_UFS2, SBLOCK_UFS1, SBLOCK_FLOPPY, SBLOCK_PIGGY, -1 }
102
103
104/* HP specific MAGIC values */
105
106#define UFS_MAGIC_LFN 0x00095014 /* fs supports filenames > 14 chars */
107#define UFS_CIGAM_LFN 0x14500900 /* srahc 41 < semanelif stroppus sf */
108
109#define UFS_MAGIC_SEC 0x00612195 /* B1 security fs */
110#define UFS_CIGAM_SEC 0x95216100
111
112#define UFS_MAGIC_FEA 0x00195612 /* fs_featurebits supported */
113#define UFS_CIGAM_FEA 0x12561900
114
115#define UFS_MAGIC_4GB 0x05231994 /* fs > 4 GB && fs_featurebits */
116#define UFS_CIGAM_4GB 0x94192305
117
118/* Seems somebody at HP goofed here. B1 and lfs are both 0x2 !?! */
119#define UFS_FSF_LFN 0x00000001 /* long file names */
120#define UFS_FSF_B1 0x00000002 /* B1 security */
121#define UFS_FSF_LFS 0x00000002 /* large files */
122#define UFS_FSF_LUID 0x00000004 /* large UIDs */
123
124/* End of HP stuff */
125
126
127#define UFS_BSIZE 8192
128#define UFS_MINBSIZE 4096
129#define UFS_FSIZE 1024
130#define UFS_MAXFRAG (UFS_BSIZE / UFS_FSIZE)
131
132#define UFS_NDADDR 12
133#define UFS_NINDIR 3
134
135#define UFS_IND_BLOCK (UFS_NDADDR + 0)
136#define UFS_DIND_BLOCK (UFS_NDADDR + 1)
137#define UFS_TIND_BLOCK (UFS_NDADDR + 2)
138
139#define UFS_NDIR_FRAGMENT (UFS_NDADDR << uspi->s_fpbshift)
140#define UFS_IND_FRAGMENT (UFS_IND_BLOCK << uspi->s_fpbshift)
141#define UFS_DIND_FRAGMENT (UFS_DIND_BLOCK << uspi->s_fpbshift)
142#define UFS_TIND_FRAGMENT (UFS_TIND_BLOCK << uspi->s_fpbshift)
143
144#define UFS_ROOTINO 2
145#define UFS_FIRST_INO (UFS_ROOTINO + 1)
146
147#define UFS_USEEFT ((__u16)65535)
148
149#define UFS_FSOK 0x7c269d38
9d923a06
AS
150#define UFS_FSACTIVE ((__s8)0x00)
151#define UFS_FSCLEAN ((__s8)0x01)
152#define UFS_FSSTABLE ((__s8)0x02)
153#define UFS_FSOSF1 ((__s8)0x03) /* is this correct for DEC OSF/1? */
154#define UFS_FSBAD ((__s8)0xff)
1da177e4
LT
155
156/* From here to next blank line, s_flags for ufs_sb_info */
157/* directory entry encoding */
158#define UFS_DE_MASK 0x00000010 /* mask for the following */
159#define UFS_DE_OLD 0x00000000
160#define UFS_DE_44BSD 0x00000010
161/* uid encoding */
162#define UFS_UID_MASK 0x00000060 /* mask for the following */
163#define UFS_UID_OLD 0x00000000
164#define UFS_UID_44BSD 0x00000020
165#define UFS_UID_EFT 0x00000040
166/* superblock state encoding */
167#define UFS_ST_MASK 0x00000700 /* mask for the following */
168#define UFS_ST_OLD 0x00000000
169#define UFS_ST_44BSD 0x00000100
170#define UFS_ST_SUN 0x00000200
171#define UFS_ST_SUNx86 0x00000400
172/*cylinder group encoding */
173#define UFS_CG_MASK 0x00003000 /* mask for the following */
174#define UFS_CG_OLD 0x00000000
175#define UFS_CG_44BSD 0x00002000
176#define UFS_CG_SUN 0x00001000
177/* filesystem type encoding */
178#define UFS_TYPE_MASK 0x00010000 /* mask for the following */
179#define UFS_TYPE_UFS1 0x00000000
180#define UFS_TYPE_UFS2 0x00010000
181
182
183/* fs_inodefmt options */
184#define UFS_42INODEFMT -1
185#define UFS_44INODEFMT 2
186
187/* mount options */
188#define UFS_MOUNT_ONERROR 0x0000000F
189#define UFS_MOUNT_ONERROR_PANIC 0x00000001
190#define UFS_MOUNT_ONERROR_LOCK 0x00000002
191#define UFS_MOUNT_ONERROR_UMOUNT 0x00000004
192#define UFS_MOUNT_ONERROR_REPAIR 0x00000008
193
194#define UFS_MOUNT_UFSTYPE 0x0000FFF0
195#define UFS_MOUNT_UFSTYPE_OLD 0x00000010
196#define UFS_MOUNT_UFSTYPE_44BSD 0x00000020
197#define UFS_MOUNT_UFSTYPE_SUN 0x00000040
198#define UFS_MOUNT_UFSTYPE_NEXTSTEP 0x00000080
199#define UFS_MOUNT_UFSTYPE_NEXTSTEP_CD 0x00000100
200#define UFS_MOUNT_UFSTYPE_OPENSTEP 0x00000200
201#define UFS_MOUNT_UFSTYPE_SUNx86 0x00000400
202#define UFS_MOUNT_UFSTYPE_HP 0x00000800
203#define UFS_MOUNT_UFSTYPE_UFS2 0x00001000
204
205#define ufs_clear_opt(o,opt) o &= ~UFS_MOUNT_##opt
206#define ufs_set_opt(o,opt) o |= UFS_MOUNT_##opt
207#define ufs_test_opt(o,opt) ((o) & UFS_MOUNT_##opt)
208
209/*
210 * MINFREE gives the minimum acceptable percentage of file system
211 * blocks which may be free. If the freelist drops below this level
212 * only the superuser may continue to allocate blocks. This may
213 * be set to 0 if no reserve of free blocks is deemed necessary,
214 * however throughput drops by fifty percent if the file system
215 * is run at between 95% and 100% full; thus the minimum default
216 * value of fs_minfree is 5%. However, to get good clustering
217 * performance, 10% is a better choice. hence we use 10% as our
218 * default value. With 10% free space, fragmentation is not a
219 * problem, so we choose to optimize for time.
220 */
221#define UFS_MINFREE 5
222#define UFS_DEFAULTOPT UFS_OPTTIME
abf5d15f
ED
223
224/*
225 * Debug code
226 */
227#ifdef CONFIG_UFS_DEBUG
228# define UFSD(f, a...) { \
229 printk ("UFSD (%s, %d): %s:", \
230 __FILE__, __LINE__, __FUNCTION__); \
231 printk (f, ## a); \
232 }
233#else
234# define UFSD(f, a...) /**/
235#endif
1da177e4
LT
236
237/*
238 * Turn file system block numbers into disk block addresses.
239 * This maps file system blocks to device size blocks.
240 */
241#define ufs_fsbtodb(uspi, b) ((b) << (uspi)->s_fsbtodb)
242#define ufs_dbtofsb(uspi, b) ((b) >> (uspi)->s_fsbtodb)
243
244/*
245 * Cylinder group macros to locate things in cylinder groups.
246 * They calc file system addresses of cylinder group data structures.
247 */
248#define ufs_cgbase(c) (uspi->s_fpg * (c))
249#define ufs_cgstart(c) ((uspi)->fs_magic == UFS2_MAGIC ? ufs_cgbase(c) : \
250 (ufs_cgbase(c) + uspi->s_cgoffset * ((c) & ~uspi->s_cgmask)))
251#define ufs_cgsblock(c) (ufs_cgstart(c) + uspi->s_sblkno) /* super blk */
252#define ufs_cgcmin(c) (ufs_cgstart(c) + uspi->s_cblkno) /* cg block */
253#define ufs_cgimin(c) (ufs_cgstart(c) + uspi->s_iblkno) /* inode blk */
254#define ufs_cgdmin(c) (ufs_cgstart(c) + uspi->s_dblkno) /* 1st data */
255
256/*
257 * Macros for handling inode numbers:
258 * inode number to file system block offset.
259 * inode number to cylinder group number.
260 * inode number to file system block address.
261 */
262#define ufs_inotocg(x) ((x) / uspi->s_ipg)
263#define ufs_inotocgoff(x) ((x) % uspi->s_ipg)
264#define ufs_inotofsba(x) (ufs_cgimin(ufs_inotocg(x)) + ufs_inotocgoff(x) / uspi->s_inopf)
265#define ufs_inotofsbo(x) ((x) % uspi->s_inopf)
266
267/*
268 * Give cylinder group number for a file system block.
269 * Give cylinder group block number for a file system block.
270 */
271#define ufs_dtog(d) ((d) / uspi->s_fpg)
272#define ufs_dtogd(d) ((d) % uspi->s_fpg)
273
274/*
275 * Compute the cylinder and rotational position of a cyl block addr.
276 */
277#define ufs_cbtocylno(bno) \
278 ((bno) * uspi->s_nspf / uspi->s_spc)
279#define ufs_cbtorpos(bno) \
280 ((((bno) * uspi->s_nspf % uspi->s_spc / uspi->s_nsect \
281 * uspi->s_trackskew + (bno) * uspi->s_nspf % uspi->s_spc \
282 % uspi->s_nsect * uspi->s_interleave) % uspi->s_nsect \
283 * uspi->s_nrpos) / uspi->s_npsect)
284
285/*
286 * The following macros optimize certain frequently calculated
287 * quantities by using shifts and masks in place of divisions
288 * modulos and multiplications.
289 */
290#define ufs_blkoff(loc) ((loc) & uspi->s_qbmask)
291#define ufs_fragoff(loc) ((loc) & uspi->s_qfmask)
292#define ufs_lblktosize(blk) ((blk) << uspi->s_bshift)
293#define ufs_lblkno(loc) ((loc) >> uspi->s_bshift)
294#define ufs_numfrags(loc) ((loc) >> uspi->s_fshift)
295#define ufs_blkroundup(size) (((size) + uspi->s_qbmask) & uspi->s_bmask)
296#define ufs_fragroundup(size) (((size) + uspi->s_qfmask) & uspi->s_fmask)
297#define ufs_fragstoblks(frags) ((frags) >> uspi->s_fpbshift)
298#define ufs_blkstofrags(blks) ((blks) << uspi->s_fpbshift)
299#define ufs_fragnum(fsb) ((fsb) & uspi->s_fpbmask)
300#define ufs_blknum(fsb) ((fsb) & ~uspi->s_fpbmask)
301
302#define UFS_MAXNAMLEN 255
303#define UFS_MAXMNTLEN 512
304#define UFS2_MAXMNTLEN 468
305#define UFS2_MAXVOLLEN 32
306/* #define UFS_MAXCSBUFS 31 */
307#define UFS_LINK_MAX 32000
308/*
309#define UFS2_NOCSPTRS ((128 / sizeof(void *)) - 4)
310*/
311#define UFS2_NOCSPTRS 28
312
313/*
314 * UFS_DIR_PAD defines the directory entries boundaries
315 * (must be a multiple of 4)
316 */
317#define UFS_DIR_PAD 4
318#define UFS_DIR_ROUND (UFS_DIR_PAD - 1)
319#define UFS_DIR_REC_LEN(name_len) (((name_len) + 1 + 8 + UFS_DIR_ROUND) & ~UFS_DIR_ROUND)
320
321struct ufs_timeval {
322 __fs32 tv_sec;
323 __fs32 tv_usec;
324};
325
326struct ufs_dir_entry {
327 __fs32 d_ino; /* inode number of this entry */
328 __fs16 d_reclen; /* length of this entry */
329 union {
330 __fs16 d_namlen; /* actual length of d_name */
331 struct {
332 __u8 d_type; /* file type */
333 __u8 d_namlen; /* length of string in d_name */
334 } d_44;
335 } d_u;
336 __u8 d_name[UFS_MAXNAMLEN + 1]; /* file name */
337};
338
339struct ufs_csum {
340 __fs32 cs_ndir; /* number of directories */
341 __fs32 cs_nbfree; /* number of free blocks */
342 __fs32 cs_nifree; /* number of free inodes */
343 __fs32 cs_nffree; /* number of free frags */
344};
345struct ufs2_csum_total {
346 __fs64 cs_ndir; /* number of directories */
347 __fs64 cs_nbfree; /* number of free blocks */
348 __fs64 cs_nifree; /* number of free inodes */
349 __fs64 cs_nffree; /* number of free frags */
350 __fs64 cs_numclusters; /* number of free clusters */
351 __fs64 cs_spare[3]; /* future expansion */
352};
353
647b7e87 354#if 0
1da177e4
LT
355/*
356 * This is the actual superblock, as it is laid out on the disk.
647b7e87
ED
357 * Do NOT use this structure, because of sizeof(ufs_super_block) > 512 and
358 * it may occupy several blocks, use
359 * struct ufs_super_block_(first,second,third) instead.
1da177e4
LT
360 */
361struct ufs_super_block {
362 __fs32 fs_link; /* UNUSED */
363 __fs32 fs_rlink; /* UNUSED */
364 __fs32 fs_sblkno; /* addr of super-block in filesys */
365 __fs32 fs_cblkno; /* offset of cyl-block in filesys */
366 __fs32 fs_iblkno; /* offset of inode-blocks in filesys */
367 __fs32 fs_dblkno; /* offset of first data after cg */
368 __fs32 fs_cgoffset; /* cylinder group offset in cylinder */
369 __fs32 fs_cgmask; /* used to calc mod fs_ntrak */
370 __fs32 fs_time; /* last time written -- time_t */
371 __fs32 fs_size; /* number of blocks in fs */
372 __fs32 fs_dsize; /* number of data blocks in fs */
373 __fs32 fs_ncg; /* number of cylinder groups */
374 __fs32 fs_bsize; /* size of basic blocks in fs */
375 __fs32 fs_fsize; /* size of frag blocks in fs */
376 __fs32 fs_frag; /* number of frags in a block in fs */
377/* these are configuration parameters */
378 __fs32 fs_minfree; /* minimum percentage of free blocks */
379 __fs32 fs_rotdelay; /* num of ms for optimal next block */
380 __fs32 fs_rps; /* disk revolutions per second */
381/* these fields can be computed from the others */
382 __fs32 fs_bmask; /* ``blkoff'' calc of blk offsets */
383 __fs32 fs_fmask; /* ``fragoff'' calc of frag offsets */
384 __fs32 fs_bshift; /* ``lblkno'' calc of logical blkno */
385 __fs32 fs_fshift; /* ``numfrags'' calc number of frags */
386/* these are configuration parameters */
387 __fs32 fs_maxcontig; /* max number of contiguous blks */
388 __fs32 fs_maxbpg; /* max number of blks per cyl group */
389/* these fields can be computed from the others */
390 __fs32 fs_fragshift; /* block to frag shift */
391 __fs32 fs_fsbtodb; /* fsbtodb and dbtofsb shift constant */
392 __fs32 fs_sbsize; /* actual size of super block */
393 __fs32 fs_csmask; /* csum block offset */
394 __fs32 fs_csshift; /* csum block number */
395 __fs32 fs_nindir; /* value of NINDIR */
396 __fs32 fs_inopb; /* value of INOPB */
397 __fs32 fs_nspf; /* value of NSPF */
398/* yet another configuration parameter */
399 __fs32 fs_optim; /* optimization preference, see below */
400/* these fields are derived from the hardware */
401 union {
402 struct {
403 __fs32 fs_npsect; /* # sectors/track including spares */
404 } fs_sun;
405 struct {
406 __fs32 fs_state; /* file system state time stamp */
407 } fs_sunx86;
408 } fs_u1;
409 __fs32 fs_interleave; /* hardware sector interleave */
410 __fs32 fs_trackskew; /* sector 0 skew, per track */
411/* a unique id for this filesystem (currently unused and unmaintained) */
412/* In 4.3 Tahoe this space is used by fs_headswitch and fs_trkseek */
413/* Neither of those fields is used in the Tahoe code right now but */
414/* there could be problems if they are. */
415 __fs32 fs_id[2]; /* file system id */
416/* sizes determined by number of cylinder groups and their sizes */
417 __fs32 fs_csaddr; /* blk addr of cyl grp summary area */
418 __fs32 fs_cssize; /* size of cyl grp summary area */
419 __fs32 fs_cgsize; /* cylinder group size */
420/* these fields are derived from the hardware */
421 __fs32 fs_ntrak; /* tracks per cylinder */
422 __fs32 fs_nsect; /* sectors per track */
423 __fs32 fs_spc; /* sectors per cylinder */
424/* this comes from the disk driver partitioning */
425 __fs32 fs_ncyl; /* cylinders in file system */
426/* these fields can be computed from the others */
427 __fs32 fs_cpg; /* cylinders per group */
428 __fs32 fs_ipg; /* inodes per cylinder group */
429 __fs32 fs_fpg; /* blocks per group * fs_frag */
430/* this data must be re-computed after crashes */
431 struct ufs_csum fs_cstotal; /* cylinder summary information */
432/* these fields are cleared at mount time */
433 __s8 fs_fmod; /* super block modified flag */
434 __s8 fs_clean; /* file system is clean flag */
435 __s8 fs_ronly; /* mounted read-only flag */
436 __s8 fs_flags; /* currently unused flag */
437 union {
438 struct {
439 __s8 fs_fsmnt[UFS_MAXMNTLEN];/* name mounted on */
440 __fs32 fs_cgrotor; /* last cg searched */
441 __fs32 fs_csp[UFS_MAXCSBUFS];/*list of fs_cs info buffers */
442 __fs32 fs_maxcluster;
443 __fs32 fs_cpc; /* cyl per cycle in postbl */
444 __fs16 fs_opostbl[16][8]; /* old rotation block list head */
445 } fs_u1;
446 struct {
447 __s8 fs_fsmnt[UFS2_MAXMNTLEN]; /* name mounted on */
448 __u8 fs_volname[UFS2_MAXVOLLEN]; /* volume name */
449 __fs64 fs_swuid; /* system-wide uid */
450 __fs32 fs_pad; /* due to alignment of fs_swuid */
451 __fs32 fs_cgrotor; /* last cg searched */
452 __fs32 fs_ocsp[UFS2_NOCSPTRS]; /*list of fs_cs info buffers */
453 __fs32 fs_contigdirs;/*# of contiguously allocated dirs */
454 __fs32 fs_csp; /* cg summary info buffer for fs_cs */
455 __fs32 fs_maxcluster;
456 __fs32 fs_active;/* used by snapshots to track fs */
457 __fs32 fs_old_cpc; /* cyl per cycle in postbl */
458 __fs32 fs_maxbsize;/*maximum blocking factor permitted */
459 __fs64 fs_sparecon64[17];/*old rotation block list head */
460 __fs64 fs_sblockloc; /* byte offset of standard superblock */
461 struct ufs2_csum_total fs_cstotal;/*cylinder summary information*/
462 struct ufs_timeval fs_time; /* last time written */
463 __fs64 fs_size; /* number of blocks in fs */
464 __fs64 fs_dsize; /* number of data blocks in fs */
465 __fs64 fs_csaddr; /* blk addr of cyl grp summary area */
466 __fs64 fs_pendingblocks;/* blocks in process of being freed */
467 __fs32 fs_pendinginodes;/*inodes in process of being freed */
468 } fs_u2;
469 } fs_u11;
470 union {
471 struct {
472 __fs32 fs_sparecon[53];/* reserved for future constants */
473 __fs32 fs_reclaim;
474 __fs32 fs_sparecon2[1];
475 __fs32 fs_state; /* file system state time stamp */
476 __fs32 fs_qbmask[2]; /* ~usb_bmask */
477 __fs32 fs_qfmask[2]; /* ~usb_fmask */
478 } fs_sun;
479 struct {
480 __fs32 fs_sparecon[53];/* reserved for future constants */
481 __fs32 fs_reclaim;
482 __fs32 fs_sparecon2[1];
483 __fs32 fs_npsect; /* # sectors/track including spares */
484 __fs32 fs_qbmask[2]; /* ~usb_bmask */
485 __fs32 fs_qfmask[2]; /* ~usb_fmask */
486 } fs_sunx86;
487 struct {
488 __fs32 fs_sparecon[50];/* reserved for future constants */
489 __fs32 fs_contigsumsize;/* size of cluster summary array */
490 __fs32 fs_maxsymlinklen;/* max length of an internal symlink */
491 __fs32 fs_inodefmt; /* format of on-disk inodes */
492 __fs32 fs_maxfilesize[2]; /* max representable file size */
493 __fs32 fs_qbmask[2]; /* ~usb_bmask */
494 __fs32 fs_qfmask[2]; /* ~usb_fmask */
495 __fs32 fs_state; /* file system state time stamp */
496 } fs_44;
497 } fs_u2;
498 __fs32 fs_postblformat; /* format of positional layout tables */
499 __fs32 fs_nrpos; /* number of rotational positions */
500 __fs32 fs_postbloff; /* (__s16) rotation block list head */
501 __fs32 fs_rotbloff; /* (__u8) blocks for each rotation */
502 __fs32 fs_magic; /* magic number */
503 __u8 fs_space[1]; /* list of blocks for each rotation */
504};
647b7e87 505#endif/*struct ufs_super_block*/
1da177e4
LT
506
507/*
508 * Preference for optimization.
509 */
510#define UFS_OPTTIME 0 /* minimize allocation time */
511#define UFS_OPTSPACE 1 /* minimize disk fragmentation */
512
513/*
514 * Rotational layout table format types
515 */
516#define UFS_42POSTBLFMT -1 /* 4.2BSD rotational table format */
517#define UFS_DYNAMICPOSTBLFMT 1 /* dynamic rotational table format */
518
519/*
520 * Convert cylinder group to base address of its global summary info.
521 */
e295cfcb 522#define fs_cs(indx) s_csp[(indx)]
1da177e4
LT
523
524/*
525 * Cylinder group block for a file system.
526 *
527 * Writable fields in the cylinder group are protected by the associated
528 * super block lock fs->fs_lock.
529 */
530#define CG_MAGIC 0x090255
531#define ufs_cg_chkmagic(sb, ucg) \
532 (fs32_to_cpu((sb), (ucg)->cg_magic) == CG_MAGIC)
533
534/*
535 * size of this structure is 172 B
536 */
537struct ufs_cylinder_group {
538 __fs32 cg_link; /* linked list of cyl groups */
539 __fs32 cg_magic; /* magic number */
540 __fs32 cg_time; /* time last written */
541 __fs32 cg_cgx; /* we are the cgx'th cylinder group */
542 __fs16 cg_ncyl; /* number of cyl's this cg */
543 __fs16 cg_niblk; /* number of inode blocks this cg */
544 __fs32 cg_ndblk; /* number of data blocks this cg */
545 struct ufs_csum cg_cs; /* cylinder summary information */
546 __fs32 cg_rotor; /* position of last used block */
547 __fs32 cg_frotor; /* position of last used frag */
548 __fs32 cg_irotor; /* position of last used inode */
549 __fs32 cg_frsum[UFS_MAXFRAG]; /* counts of available frags */
550 __fs32 cg_btotoff; /* (__u32) block totals per cylinder */
551 __fs32 cg_boff; /* (short) free block positions */
552 __fs32 cg_iusedoff; /* (char) used inode map */
553 __fs32 cg_freeoff; /* (u_char) free block map */
554 __fs32 cg_nextfreeoff; /* (u_char) next available space */
555 union {
556 struct {
557 __fs32 cg_clustersumoff; /* (u_int32) counts of avail clusters */
558 __fs32 cg_clusteroff; /* (u_int8) free cluster map */
559 __fs32 cg_nclusterblks; /* number of clusters this cg */
560 __fs32 cg_sparecon[13]; /* reserved for future use */
561 } cg_44;
562 struct {
563 __fs32 cg_clustersumoff;/* (u_int32) counts of avail clusters */
564 __fs32 cg_clusteroff; /* (u_int8) free cluster map */
565 __fs32 cg_nclusterblks;/* number of clusters this cg */
566 __fs32 cg_niblk; /* number of inode blocks this cg */
567 __fs32 cg_initediblk; /* last initialized inode */
568 __fs32 cg_sparecon32[3];/* reserved for future use */
569 __fs64 cg_time; /* time last written */
570 __fs64 cg_sparecon[3]; /* reserved for future use */
571 } cg_u2;
572 __fs32 cg_sparecon[16]; /* reserved for future use */
573 } cg_u;
574 __u8 cg_space[1]; /* space for cylinder group maps */
575/* actually longer */
576};
577
578/*
579 * structure of an on-disk inode
580 */
581struct ufs_inode {
582 __fs16 ui_mode; /* 0x0 */
583 __fs16 ui_nlink; /* 0x2 */
584 union {
585 struct {
586 __fs16 ui_suid; /* 0x4 */
587 __fs16 ui_sgid; /* 0x6 */
588 } oldids;
589 __fs32 ui_inumber; /* 0x4 lsf: inode number */
590 __fs32 ui_author; /* 0x4 GNU HURD: author */
591 } ui_u1;
592 __fs64 ui_size; /* 0x8 */
593 struct ufs_timeval ui_atime; /* 0x10 access */
594 struct ufs_timeval ui_mtime; /* 0x18 modification */
595 struct ufs_timeval ui_ctime; /* 0x20 creation */
596 union {
597 struct {
598 __fs32 ui_db[UFS_NDADDR];/* 0x28 data blocks */
599 __fs32 ui_ib[UFS_NINDIR];/* 0x58 indirect blocks */
600 } ui_addr;
601 __u8 ui_symlink[4*(UFS_NDADDR+UFS_NINDIR)];/* 0x28 fast symlink */
602 } ui_u2;
603 __fs32 ui_flags; /* 0x64 immutable, append-only... */
604 __fs32 ui_blocks; /* 0x68 blocks in use */
605 __fs32 ui_gen; /* 0x6c like ext2 i_version, for NFS support */
606 union {
607 struct {
608 __fs32 ui_shadow; /* 0x70 shadow inode with security data */
609 __fs32 ui_uid; /* 0x74 long EFT version of uid */
610 __fs32 ui_gid; /* 0x78 long EFT version of gid */
611 __fs32 ui_oeftflag; /* 0x7c reserved */
612 } ui_sun;
613 struct {
614 __fs32 ui_uid; /* 0x70 File owner */
615 __fs32 ui_gid; /* 0x74 File group */
616 __fs32 ui_spare[2]; /* 0x78 reserved */
617 } ui_44;
618 struct {
619 __fs32 ui_uid; /* 0x70 */
620 __fs32 ui_gid; /* 0x74 */
621 __fs16 ui_modeh; /* 0x78 mode high bits */
622 __fs16 ui_spare; /* 0x7A unused */
623 __fs32 ui_trans; /* 0x7c filesystem translator */
624 } ui_hurd;
625 } ui_u3;
626};
627
628#define UFS_NXADDR 2 /* External addresses in inode. */
629struct ufs2_inode {
630 __fs16 ui_mode; /* 0: IFMT, permissions; see below. */
631 __fs16 ui_nlink; /* 2: File link count. */
632 __fs32 ui_uid; /* 4: File owner. */
633 __fs32 ui_gid; /* 8: File group. */
634 __fs32 ui_blksize; /* 12: Inode blocksize. */
635 __fs64 ui_size; /* 16: File byte count. */
636 __fs64 ui_blocks; /* 24: Bytes actually held. */
637 struct ufs_timeval ui_atime; /* 32: Last access time. */
638 struct ufs_timeval ui_mtime; /* 40: Last modified time. */
639 struct ufs_timeval ui_ctime; /* 48: Last inode change time. */
640 struct ufs_timeval ui_birthtime; /* 56: Inode creation time. */
641 __fs32 ui_mtimensec; /* 64: Last modified time. */
642 __fs32 ui_atimensec; /* 68: Last access time. */
643 __fs32 ui_ctimensec; /* 72: Last inode change time. */
644 __fs32 ui_birthnsec; /* 76: Inode creation time. */
645 __fs32 ui_gen; /* 80: Generation number. */
646 __fs32 ui_kernflags; /* 84: Kernel flags. */
647 __fs32 ui_flags; /* 88: Status flags (chflags). */
648 __fs32 ui_extsize; /* 92: External attributes block. */
649 __fs64 ui_extb[UFS_NXADDR];/* 96: External attributes block. */
650 union {
651 struct {
652 __fs64 ui_db[UFS_NDADDR]; /* 112: Direct disk blocks. */
653 __fs64 ui_ib[UFS_NINDIR];/* 208: Indirect disk blocks.*/
654 } ui_addr;
655 __u8 ui_symlink[2*4*(UFS_NDADDR+UFS_NINDIR)];/* 0x28 fast symlink */
656 } ui_u2;
657 __fs64 ui_spare[3]; /* 232: Reserved; currently unused */
658};
659
660
661/* FreeBSD has these in sys/stat.h */
662/* ui_flags that can be set by a file owner */
663#define UFS_UF_SETTABLE 0x0000ffff
664#define UFS_UF_NODUMP 0x00000001 /* do not dump */
665#define UFS_UF_IMMUTABLE 0x00000002 /* immutable (can't "change") */
666#define UFS_UF_APPEND 0x00000004 /* append-only */
667#define UFS_UF_OPAQUE 0x00000008 /* directory is opaque (unionfs) */
668#define UFS_UF_NOUNLINK 0x00000010 /* can't be removed or renamed */
669/* ui_flags that only root can set */
670#define UFS_SF_SETTABLE 0xffff0000
671#define UFS_SF_ARCHIVED 0x00010000 /* archived */
672#define UFS_SF_IMMUTABLE 0x00020000 /* immutable (can't "change") */
673#define UFS_SF_APPEND 0x00040000 /* append-only */
674#define UFS_SF_NOUNLINK 0x00100000 /* can't be removed or renamed */
675
676/*
677 * This structure is used for reading disk structures larger
678 * than the size of fragment.
679 */
680struct ufs_buffer_head {
681 __u64 fragment; /* first fragment */
682 __u64 count; /* number of fragments */
683 struct buffer_head * bh[UFS_MAXFRAG]; /* buffers */
684};
685
686struct ufs_cg_private_info {
9695ef16 687 struct ufs_buffer_head c_ubh;
1da177e4
LT
688 __u32 c_cgx; /* number of cylidner group */
689 __u16 c_ncyl; /* number of cyl's this cg */
690 __u16 c_niblk; /* number of inode blocks this cg */
691 __u32 c_ndblk; /* number of data blocks this cg */
692 __u32 c_rotor; /* position of last used block */
693 __u32 c_frotor; /* position of last used frag */
694 __u32 c_irotor; /* position of last used inode */
695 __u32 c_btotoff; /* (__u32) block totals per cylinder */
696 __u32 c_boff; /* (short) free block positions */
697 __u32 c_iusedoff; /* (char) used inode map */
698 __u32 c_freeoff; /* (u_char) free block map */
699 __u32 c_nextfreeoff; /* (u_char) next available space */
700 __u32 c_clustersumoff;/* (u_int32) counts of avail clusters */
701 __u32 c_clusteroff; /* (u_int8) free cluster map */
702 __u32 c_nclusterblks; /* number of clusters this cg */
703};
704
705struct ufs_sb_private_info {
706 struct ufs_buffer_head s_ubh; /* buffer containing super block */
707 __u32 s_sblkno; /* offset of super-blocks in filesys */
708 __u32 s_cblkno; /* offset of cg-block in filesys */
709 __u32 s_iblkno; /* offset of inode-blocks in filesys */
710 __u32 s_dblkno; /* offset of first data after cg */
711 __u32 s_cgoffset; /* cylinder group offset in cylinder */
712 __u32 s_cgmask; /* used to calc mod fs_ntrak */
713 __u32 s_size; /* number of blocks (fragments) in fs */
714 __u32 s_dsize; /* number of data blocks in fs */
715 __u64 s_u2_size; /* ufs2: number of blocks (fragments) in fs */
716 __u64 s_u2_dsize; /*ufs2: number of data blocks in fs */
717 __u32 s_ncg; /* number of cylinder groups */
718 __u32 s_bsize; /* size of basic blocks */
719 __u32 s_fsize; /* size of fragments */
720 __u32 s_fpb; /* fragments per block */
721 __u32 s_minfree; /* minimum percentage of free blocks */
722 __u32 s_bmask; /* `blkoff'' calc of blk offsets */
723 __u32 s_fmask; /* s_fsize mask */
724 __u32 s_bshift; /* `lblkno'' calc of logical blkno */
725 __u32 s_fshift; /* s_fsize shift */
726 __u32 s_fpbshift; /* fragments per block shift */
727 __u32 s_fsbtodb; /* fsbtodb and dbtofsb shift constant */
728 __u32 s_sbsize; /* actual size of super block */
729 __u32 s_csmask; /* csum block offset */
730 __u32 s_csshift; /* csum block number */
731 __u32 s_nindir; /* value of NINDIR */
732 __u32 s_inopb; /* value of INOPB */
733 __u32 s_nspf; /* value of NSPF */
734 __u32 s_npsect; /* # sectors/track including spares */
735 __u32 s_interleave; /* hardware sector interleave */
736 __u32 s_trackskew; /* sector 0 skew, per track */
737 __u32 s_csaddr; /* blk addr of cyl grp summary area */
738 __u32 s_cssize; /* size of cyl grp summary area */
739 __u32 s_cgsize; /* cylinder group size */
740 __u32 s_ntrak; /* tracks per cylinder */
741 __u32 s_nsect; /* sectors per track */
742 __u32 s_spc; /* sectors per cylinder */
743 __u32 s_ipg; /* inodes per cylinder group */
744 __u32 s_fpg; /* fragments per group */
745 __u32 s_cpc; /* cyl per cycle in postbl */
746 __s32 s_contigsumsize;/* size of cluster summary array, 44bsd */
747 __s64 s_qbmask; /* ~usb_bmask */
748 __s64 s_qfmask; /* ~usb_fmask */
749 __s32 s_postblformat; /* format of positional layout tables */
750 __s32 s_nrpos; /* number of rotational positions */
751 __s32 s_postbloff; /* (__s16) rotation block list head */
752 __s32 s_rotbloff; /* (__u8) blocks for each rotation */
753
754 __u32 s_fpbmask; /* fragments per block mask */
755 __u32 s_apb; /* address per block */
756 __u32 s_2apb; /* address per block^2 */
757 __u32 s_3apb; /* address per block^3 */
758 __u32 s_apbmask; /* address per block mask */
759 __u32 s_apbshift; /* address per block shift */
760 __u32 s_2apbshift; /* address per block shift * 2 */
761 __u32 s_3apbshift; /* address per block shift * 3 */
762 __u32 s_nspfshift; /* number of sector per fragment shift */
763 __u32 s_nspb; /* number of sector per block */
764 __u32 s_inopf; /* inodes per fragment */
765 __u32 s_sbbase; /* offset of NeXTstep superblock */
766 __u32 s_bpf; /* bits per fragment */
767 __u32 s_bpfshift; /* bits per fragment shift*/
768 __u32 s_bpfmask; /* bits per fragment mask */
769
770 __u32 s_maxsymlinklen;/* upper limit on fast symlinks' size */
771 __s32 fs_magic; /* filesystem magic */
772};
773
774/*
775 * Sizes of this structures are:
776 * ufs_super_block_first 512
777 * ufs_super_block_second 512
778 * ufs_super_block_third 356
779 */
780struct ufs_super_block_first {
781 __fs32 fs_link;
782 __fs32 fs_rlink;
783 __fs32 fs_sblkno;
784 __fs32 fs_cblkno;
785 __fs32 fs_iblkno;
786 __fs32 fs_dblkno;
787 __fs32 fs_cgoffset;
788 __fs32 fs_cgmask;
789 __fs32 fs_time;
790 __fs32 fs_size;
791 __fs32 fs_dsize;
792 __fs32 fs_ncg;
793 __fs32 fs_bsize;
794 __fs32 fs_fsize;
795 __fs32 fs_frag;
796 __fs32 fs_minfree;
797 __fs32 fs_rotdelay;
798 __fs32 fs_rps;
799 __fs32 fs_bmask;
800 __fs32 fs_fmask;
801 __fs32 fs_bshift;
802 __fs32 fs_fshift;
803 __fs32 fs_maxcontig;
804 __fs32 fs_maxbpg;
805 __fs32 fs_fragshift;
806 __fs32 fs_fsbtodb;
807 __fs32 fs_sbsize;
808 __fs32 fs_csmask;
809 __fs32 fs_csshift;
810 __fs32 fs_nindir;
811 __fs32 fs_inopb;
812 __fs32 fs_nspf;
813 __fs32 fs_optim;
814 union {
815 struct {
816 __fs32 fs_npsect;
817 } fs_sun;
818 struct {
819 __fs32 fs_state;
820 } fs_sunx86;
821 } fs_u1;
822 __fs32 fs_interleave;
823 __fs32 fs_trackskew;
824 __fs32 fs_id[2];
825 __fs32 fs_csaddr;
826 __fs32 fs_cssize;
827 __fs32 fs_cgsize;
828 __fs32 fs_ntrak;
829 __fs32 fs_nsect;
830 __fs32 fs_spc;
831 __fs32 fs_ncyl;
832 __fs32 fs_cpg;
833 __fs32 fs_ipg;
834 __fs32 fs_fpg;
835 struct ufs_csum fs_cstotal;
836 __s8 fs_fmod;
837 __s8 fs_clean;
838 __s8 fs_ronly;
839 __s8 fs_flags;
840 __s8 fs_fsmnt[UFS_MAXMNTLEN - 212];
841
842};
843
844struct ufs_super_block_second {
647b7e87
ED
845 union {
846 struct {
847 __s8 fs_fsmnt[212];
848 __fs32 fs_cgrotor;
849 __fs32 fs_csp[UFS_MAXCSBUFS];
850 __fs32 fs_maxcluster;
851 __fs32 fs_cpc;
852 __fs16 fs_opostbl[82];
853 } fs_u1;
854 struct {
855 __s8 fs_fsmnt[UFS2_MAXMNTLEN - UFS_MAXMNTLEN + 212];
856 __u8 fs_volname[UFS2_MAXVOLLEN];
857 __fs64 fs_swuid;
858 __fs32 fs_pad;
859 __fs32 fs_cgrotor;
860 __fs32 fs_ocsp[UFS2_NOCSPTRS];
861 __fs32 fs_contigdirs;
862 __fs32 fs_csp;
863 __fs32 fs_maxcluster;
864 __fs32 fs_active;
865 __fs32 fs_old_cpc;
866 __fs32 fs_maxbsize;
867 __fs64 fs_sparecon64[17];
868 __fs64 fs_sblockloc;
869 __fs64 cs_ndir;
870 __fs64 cs_nbfree;
871 } fs_u2;
872 } fs_un;
873};
1da177e4
LT
874
875struct ufs_super_block_third {
647b7e87
ED
876 union {
877 struct {
878 __fs16 fs_opostbl[46];
879 } fs_u1;
880 struct {
881 __fs64 cs_nifree; /* number of free inodes */
882 __fs64 cs_nffree; /* number of free frags */
883 __fs64 cs_numclusters; /* number of free clusters */
884 __fs64 cs_spare[3]; /* future expansion */
885 struct ufs_timeval fs_time; /* last time written */
886 __fs64 fs_size; /* number of blocks in fs */
887 __fs64 fs_dsize; /* number of data blocks in fs */
888 __fs64 fs_csaddr; /* blk addr of cyl grp summary area */
889 __fs64 fs_pendingblocks;/* blocks in process of being freed */
890 __fs32 fs_pendinginodes;/*inodes in process of being freed */
891 } fs_u2;
892 } fs_un1;
1da177e4
LT
893 union {
894 struct {
895 __fs32 fs_sparecon[53];/* reserved for future constants */
896 __fs32 fs_reclaim;
897 __fs32 fs_sparecon2[1];
898 __fs32 fs_state; /* file system state time stamp */
899 __fs32 fs_qbmask[2]; /* ~usb_bmask */
900 __fs32 fs_qfmask[2]; /* ~usb_fmask */
901 } fs_sun;
902 struct {
903 __fs32 fs_sparecon[53];/* reserved for future constants */
904 __fs32 fs_reclaim;
905 __fs32 fs_sparecon2[1];
906 __fs32 fs_npsect; /* # sectors/track including spares */
907 __fs32 fs_qbmask[2]; /* ~usb_bmask */
908 __fs32 fs_qfmask[2]; /* ~usb_fmask */
909 } fs_sunx86;
910 struct {
911 __fs32 fs_sparecon[50];/* reserved for future constants */
912 __fs32 fs_contigsumsize;/* size of cluster summary array */
913 __fs32 fs_maxsymlinklen;/* max length of an internal symlink */
914 __fs32 fs_inodefmt; /* format of on-disk inodes */
915 __fs32 fs_maxfilesize[2]; /* max representable file size */
916 __fs32 fs_qbmask[2]; /* ~usb_bmask */
917 __fs32 fs_qfmask[2]; /* ~usb_fmask */
918 __fs32 fs_state; /* file system state time stamp */
919 } fs_44;
647b7e87 920 } fs_un2;
1da177e4
LT
921 __fs32 fs_postblformat;
922 __fs32 fs_nrpos;
923 __fs32 fs_postbloff;
924 __fs32 fs_rotbloff;
925 __fs32 fs_magic;
926 __u8 fs_space[1];
927};
928
929#ifdef __KERNEL__
930
931/* balloc.c */
932extern void ufs_free_fragments (struct inode *, unsigned, unsigned);
933extern void ufs_free_blocks (struct inode *, unsigned, unsigned);
6ef4d6bf
ED
934extern unsigned ufs_new_fragments(struct inode *, __fs32 *, unsigned, unsigned,
935 unsigned, int *, struct page *);
1da177e4
LT
936
937/* cylinder.c */
938extern struct ufs_cg_private_info * ufs_load_cylinder (struct super_block *, unsigned);
939extern void ufs_put_cylinder (struct super_block *, unsigned);
940
941/* dir.c */
942extern struct inode_operations ufs_dir_inode_operations;
943extern int ufs_add_link (struct dentry *, struct inode *);
944extern ino_t ufs_inode_by_name(struct inode *, struct dentry *);
945extern int ufs_make_empty(struct inode *, struct inode *);
b71034e5
ED
946extern struct ufs_dir_entry *ufs_find_entry(struct inode *, struct dentry *, struct page **);
947extern int ufs_delete_entry(struct inode *, struct ufs_dir_entry *, struct page *);
1da177e4 948extern int ufs_empty_dir (struct inode *);
b71034e5
ED
949extern struct ufs_dir_entry *ufs_dotdot(struct inode *, struct page **);
950extern void ufs_set_link(struct inode *dir, struct ufs_dir_entry *de,
951 struct page *page, struct inode *inode);
1da177e4
LT
952
953/* file.c */
954extern struct inode_operations ufs_file_inode_operations;
4b6f5d20 955extern const struct file_operations ufs_file_operations;
1da177e4
LT
956
957extern struct address_space_operations ufs_aops;
958
959/* ialloc.c */
960extern void ufs_free_inode (struct inode *inode);
961extern struct inode * ufs_new_inode (struct inode *, int);
962
963/* inode.c */
964extern u64 ufs_frag_map (struct inode *, sector_t);
965extern void ufs_read_inode (struct inode *);
966extern void ufs_put_inode (struct inode *);
967extern int ufs_write_inode (struct inode *, int);
968extern int ufs_sync_inode (struct inode *);
969extern void ufs_delete_inode (struct inode *);
970extern struct buffer_head * ufs_getfrag (struct inode *, unsigned, int, int *);
971extern struct buffer_head * ufs_bread (struct inode *, unsigned, int, int *);
09114eb8 972extern int ufs_getfrag_block (struct inode *inode, sector_t fragment, struct buffer_head *bh_result, int create);
1da177e4
LT
973
974/* namei.c */
4b6f5d20 975extern const struct file_operations ufs_dir_operations;
1da177e4
LT
976
977/* super.c */
978extern void ufs_warning (struct super_block *, const char *, const char *, ...) __attribute__ ((format (printf, 3, 4)));
979extern void ufs_error (struct super_block *, const char *, const char *, ...) __attribute__ ((format (printf, 3, 4)));
980extern void ufs_panic (struct super_block *, const char *, const char *, ...) __attribute__ ((format (printf, 3, 4)));
981
982/* symlink.c */
983extern struct inode_operations ufs_fast_symlink_inode_operations;
984
985/* truncate.c */
986extern void ufs_truncate (struct inode *);
987
988static inline struct ufs_sb_info *UFS_SB(struct super_block *sb)
989{
990 return sb->s_fs_info;
991}
992
993static inline struct ufs_inode_info *UFS_I(struct inode *inode)
994{
995 return container_of(inode, struct ufs_inode_info, vfs_inode);
996}
997
998#endif /* __KERNEL__ */
999
1000#endif /* __LINUX_UFS_FS_H */