ufs_fs.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:34k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

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