ufs_fs.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:21k
源码类别:

嵌入式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.  */
  26. #ifndef __LINUX_UFS_FS_H
  27. #define __LINUX_UFS_FS_H
  28. #include <linux/types.h>
  29. #include <linux/kernel.h>
  30. #include <linux/time.h>
  31. #include <linux/stat.h>
  32. #define UFS_BBLOCK 0
  33. #define UFS_BBSIZE 8192
  34. #define UFS_SBLOCK 8192
  35. #define UFS_SBSIZE 8192
  36. #define UFS_SECTOR_SIZE 512
  37. #define UFS_SECTOR_BITS 9
  38. #define UFS_MAGIC 0x00011954
  39. #define UFS_CIGAM 0x54190100 /* byteswapped MAGIC */
  40. /* HP specific MAGIC values */
  41. #define UFS_MAGIC_LFN   0x00095014 /* fs supports filenames > 14 chars */
  42. #define UFS_CIGAM_LFN   0x14500900 /* srahc 41 < semanelif stroppus sf */
  43. #define UFS_MAGIC_SEC   0x00612195 /* B1 security fs */
  44. #define UFS_CIGAM_SEC   0x95216100
  45. #define UFS_MAGIC_FEA   0x00195612 /* fs_featurebits supported */
  46. #define UFS_CIGAM_FEA   0x12561900
  47. #define UFS_MAGIC_4GB   0x05231994 /* fs > 4 GB && fs_featurebits */
  48. #define UFS_CIGAM_4GB   0x94192305
  49. /* Seems somebody at HP goofed here. B1 and lfs are both 0x2 !?! */
  50. #define UFS_FSF_LFN     0x00000001 /* long file names */
  51. #define UFS_FSF_B1      0x00000002 /* B1 security */
  52. #define UFS_FSF_LFS     0x00000002 /* large files */
  53. #define UFS_FSF_LUID    0x00000004 /* large UIDs */
  54. /* End of HP stuff */
  55. #define UFS_BSIZE 8192
  56. #define UFS_MINBSIZE 4096
  57. #define UFS_FSIZE 1024
  58. #define UFS_MAXFRAG (UFS_BSIZE / UFS_FSIZE)
  59. #define UFS_NDADDR 12
  60. #define UFS_NINDIR 3
  61. #define UFS_IND_BLOCK (UFS_NDADDR + 0)
  62. #define UFS_DIND_BLOCK (UFS_NDADDR + 1)
  63. #define UFS_TIND_BLOCK (UFS_NDADDR + 2)
  64. #define UFS_NDIR_FRAGMENT (UFS_NDADDR << uspi->s_fpbshift)
  65. #define UFS_IND_FRAGMENT (UFS_IND_BLOCK << uspi->s_fpbshift)
  66. #define UFS_DIND_FRAGMENT (UFS_DIND_BLOCK << uspi->s_fpbshift)
  67. #define UFS_TIND_FRAGMENT (UFS_TIND_BLOCK << uspi->s_fpbshift)
  68. #define UFS_ROOTINO 2
  69. #define UFS_FIRST_INO (UFS_ROOTINO + 1)
  70. #define UFS_USEEFT  ((__u16)65535)
  71. #define UFS_FSOK      0x7c269d38
  72. #define UFS_FSACTIVE  ((char)0x00)
  73. #define UFS_FSCLEAN   ((char)0x01)
  74. #define UFS_FSSTABLE  ((char)0x02)
  75. #define UFS_FSOSF1    ((char)0x03) /* is this correct for DEC OSF/1? */
  76. #define UFS_FSBAD     ((char)0xff)
  77. /* From here to next blank line, s_flags for ufs_sb_info */
  78. /* directory entry encoding */
  79. #define UFS_DE_MASK 0x00000010 /* mask for the following */
  80. #define UFS_DE_OLD 0x00000000
  81. #define UFS_DE_44BSD 0x00000010
  82. /* uid encoding */
  83. #define UFS_UID_MASK 0x00000060 /* mask for the following */
  84. #define UFS_UID_OLD 0x00000000
  85. #define UFS_UID_44BSD 0x00000020
  86. #define UFS_UID_EFT 0x00000040
  87. /* superblock state encoding */
  88. #define UFS_ST_MASK 0x00000700 /* mask for the following */
  89. #define UFS_ST_OLD 0x00000000
  90. #define UFS_ST_44BSD 0x00000100
  91. #define UFS_ST_SUN 0x00000200
  92. #define UFS_ST_SUNx86 0x00000400
  93. /*cylinder group encoding */
  94. #define UFS_CG_MASK 0x00003000 /* mask for the following */
  95. #define UFS_CG_OLD 0x00000000
  96. #define UFS_CG_44BSD 0x00002000
  97. #define UFS_CG_SUN 0x00001000
  98. /* fs_inodefmt options */
  99. #define UFS_42INODEFMT -1
  100. #define UFS_44INODEFMT 2
  101. /* mount options */
  102. #define UFS_MOUNT_ONERROR 0x0000000F
  103. #define UFS_MOUNT_ONERROR_PANIC 0x00000001
  104. #define UFS_MOUNT_ONERROR_LOCK 0x00000002
  105. #define UFS_MOUNT_ONERROR_UMOUNT 0x00000004
  106. #define UFS_MOUNT_ONERROR_REPAIR 0x00000008
  107. #define UFS_MOUNT_UFSTYPE 0x00000FF0
  108. #define UFS_MOUNT_UFSTYPE_OLD 0x00000010
  109. #define UFS_MOUNT_UFSTYPE_44BSD 0x00000020
  110. #define UFS_MOUNT_UFSTYPE_SUN 0x00000040
  111. #define UFS_MOUNT_UFSTYPE_NEXTSTEP 0x00000080
  112. #define UFS_MOUNT_UFSTYPE_NEXTSTEP_CD 0x00000100
  113. #define UFS_MOUNT_UFSTYPE_OPENSTEP 0x00000200
  114. #define UFS_MOUNT_UFSTYPE_SUNx86 0x00000400
  115. #define UFS_MOUNT_UFSTYPE_HP         0x00000800
  116. #define ufs_clear_opt(o,opt) o &= ~UFS_MOUNT_##opt
  117. #define ufs_set_opt(o,opt) o |= UFS_MOUNT_##opt
  118. #define ufs_test_opt(o,opt) ((o) & UFS_MOUNT_##opt)
  119. /*
  120.  * MINFREE gives the minimum acceptable percentage of file system
  121.  * blocks which may be free. If the freelist drops below this level
  122.  * only the superuser may continue to allocate blocks. This may
  123.  * be set to 0 if no reserve of free blocks is deemed necessary,
  124.  * however throughput drops by fifty percent if the file system
  125.  * is run at between 95% and 100% full; thus the minimum default
  126.  * value of fs_minfree is 5%. However, to get good clustering
  127.  * performance, 10% is a better choice. hence we use 10% as our
  128.  * default value. With 10% free space, fragmentation is not a
  129.  * problem, so we choose to optimize for time.
  130.  */
  131. #define UFS_MINFREE         5
  132. #define UFS_DEFAULTOPT      UFS_OPTTIME
  133.             
  134. /*
  135.  * Turn file system block numbers into disk block addresses.
  136.  * This maps file system blocks to device size blocks.
  137.  */
  138. #define ufs_fsbtodb(uspi, b) ((b) << (uspi)->s_fsbtodb)
  139. #define ufs_dbtofsb(uspi, b) ((b) >> (uspi)->s_fsbtodb)
  140. /*
  141.  * Cylinder group macros to locate things in cylinder groups.
  142.  * They calc file system addresses of cylinder group data structures.
  143.  */
  144. #define ufs_cgbase(c) (uspi->s_fpg * (c))
  145. #define ufs_cgstart(c) (ufs_cgbase(c)  + uspi->s_cgoffset * ((c) & ~uspi->s_cgmask))
  146. #define ufs_cgsblock(c) (ufs_cgstart(c) + uspi->s_sblkno) /* super blk */
  147. #define ufs_cgcmin(c) (ufs_cgstart(c) + uspi->s_cblkno) /* cg block */
  148. #define ufs_cgimin(c) (ufs_cgstart(c) + uspi->s_iblkno) /* inode blk */
  149. #define ufs_cgdmin(c) (ufs_cgstart(c) + uspi->s_dblkno) /* 1st data */
  150. /*
  151.  * Macros for handling inode numbers:
  152.  *     inode number to file system block offset.
  153.  *     inode number to cylinder group number.
  154.  *     inode number to file system block address.
  155.  */
  156. #define ufs_inotocg(x) ((x) / uspi->s_ipg)
  157. #define ufs_inotocgoff(x) ((x) % uspi->s_ipg)
  158. #define ufs_inotofsba(x) (ufs_cgimin(ufs_inotocg(x)) + ufs_inotocgoff(x) / uspi->s_inopf)
  159. #define ufs_inotofsbo(x) ((x) % uspi->s_inopf)
  160. /*
  161.  * Give cylinder group number for a file system block.
  162.  * Give cylinder group block number for a file system block.
  163.  */
  164. #define ufs_dtog(d) ((d) / uspi->s_fpg)
  165. #define ufs_dtogd(d) ((d) % uspi->s_fpg)
  166. /*
  167.  * Compute the cylinder and rotational position of a cyl block addr.
  168.  */
  169. #define ufs_cbtocylno(bno) 
  170. ((bno) * uspi->s_nspf / uspi->s_spc)
  171. #define ufs_cbtorpos(bno) 
  172. ((((bno) * uspi->s_nspf % uspi->s_spc / uspi->s_nsect 
  173. * uspi->s_trackskew + (bno) * uspi->s_nspf % uspi->s_spc 
  174. % uspi->s_nsect * uspi->s_interleave) % uspi->s_nsect 
  175. * uspi->s_nrpos) / uspi->s_npsect)
  176. /*
  177.  * The following macros optimize certain frequently calculated
  178.  * quantities by using shifts and masks in place of divisions
  179.  * modulos and multiplications.
  180.  */
  181. #define ufs_blkoff(loc) ((loc) & uspi->s_qbmask)
  182. #define ufs_fragoff(loc) ((loc) & uspi->s_qfmask)
  183. #define ufs_lblktosize(blk) ((blk) << uspi->s_bshift)
  184. #define ufs_lblkno(loc) ((loc) >> uspi->s_bshift)
  185. #define ufs_numfrags(loc) ((loc) >> uspi->s_fshift)
  186. #define ufs_blkroundup(size) (((size) + uspi->s_qbmask) & uspi->s_bmask)
  187. #define ufs_fragroundup(size) (((size) + uspi->s_qfmask) & uspi->s_fmask)
  188. #define ufs_fragstoblks(frags) ((frags) >> uspi->s_fpbshift)
  189. #define ufs_blkstofrags(blks) ((blks) << uspi->s_fpbshift)
  190. #define ufs_fragnum(fsb) ((fsb) & uspi->s_fpbmask)
  191. #define ufs_blknum(fsb) ((fsb) & ~uspi->s_fpbmask)
  192. #define UFS_MAXNAMLEN 255
  193. #define UFS_MAXMNTLEN 512
  194. #define UFS_MAXCSBUFS 31
  195. #define UFS_LINK_MAX 32000
  196. /*
  197.  * UFS_DIR_PAD defines the directory entries boundaries
  198.  * (must be a multiple of 4)
  199.  */
  200. #define UFS_DIR_PAD 4
  201. #define UFS_DIR_ROUND (UFS_DIR_PAD - 1)
  202. #define UFS_DIR_REC_LEN(name_len) (((name_len) + 1 + 8 + UFS_DIR_ROUND) & ~UFS_DIR_ROUND)
  203. struct ufs_timeval {
  204. __s32 tv_sec;
  205. __s32 tv_usec;
  206. };
  207. struct ufs_dir_entry {
  208. __u32  d_ino; /* inode number of this entry */
  209. __u16  d_reclen; /* length of this entry */
  210. union {
  211. __u16 d_namlen; /* actual length of d_name */
  212. struct {
  213. __u8 d_type; /* file type */
  214. __u8 d_namlen; /* length of string in d_name */
  215. } d_44;
  216. } d_u;
  217. __u8 d_name[UFS_MAXNAMLEN + 1]; /* file name */
  218. };
  219. struct ufs_csum {
  220. __u32 cs_ndir; /* number of directories */
  221. __u32 cs_nbfree; /* number of free blocks */
  222. __u32 cs_nifree; /* number of free inodes */
  223. __u32 cs_nffree; /* number of free frags */
  224. };
  225. /*
  226.  * This is the actual superblock, as it is laid out on the disk.
  227.  */
  228. struct ufs_super_block {
  229. __u32 fs_link; /* UNUSED */
  230. __u32 fs_rlink; /* UNUSED */
  231. __u32 fs_sblkno; /* addr of super-block in filesys */
  232. __u32 fs_cblkno; /* offset of cyl-block in filesys */
  233. __u32 fs_iblkno; /* offset of inode-blocks in filesys */
  234. __u32 fs_dblkno; /* offset of first data after cg */
  235. __u32 fs_cgoffset; /* cylinder group offset in cylinder */
  236. __u32 fs_cgmask; /* used to calc mod fs_ntrak */
  237. __u32 fs_time; /* last time written -- time_t */
  238. __u32 fs_size; /* number of blocks in fs */
  239. __u32 fs_dsize; /* number of data blocks in fs */
  240. __u32 fs_ncg; /* number of cylinder groups */
  241. __u32 fs_bsize; /* size of basic blocks in fs */
  242. __u32 fs_fsize; /* size of frag blocks in fs */
  243. __u32 fs_frag; /* number of frags in a block in fs */
  244. /* these are configuration parameters */
  245. __u32 fs_minfree; /* minimum percentage of free blocks */
  246. __u32 fs_rotdelay; /* num of ms for optimal next block */
  247. __u32 fs_rps; /* disk revolutions per second */
  248. /* these fields can be computed from the others */
  249. __u32 fs_bmask; /* ``blkoff'' calc of blk offsets */
  250. __u32 fs_fmask; /* ``fragoff'' calc of frag offsets */
  251. __u32 fs_bshift; /* ``lblkno'' calc of logical blkno */
  252. __u32 fs_fshift; /* ``numfrags'' calc number of frags */
  253. /* these are configuration parameters */
  254. __u32 fs_maxcontig; /* max number of contiguous blks */
  255. __u32 fs_maxbpg; /* max number of blks per cyl group */
  256. /* these fields can be computed from the others */
  257. __u32 fs_fragshift; /* block to frag shift */
  258. __u32 fs_fsbtodb; /* fsbtodb and dbtofsb shift constant */
  259. __u32 fs_sbsize; /* actual size of super block */
  260. __u32 fs_csmask; /* csum block offset */
  261. __u32 fs_csshift; /* csum block number */
  262. __u32 fs_nindir; /* value of NINDIR */
  263. __u32 fs_inopb; /* value of INOPB */
  264. __u32 fs_nspf; /* value of NSPF */
  265. /* yet another configuration parameter */
  266. __u32 fs_optim; /* optimization preference, see below */
  267. /* these fields are derived from the hardware */
  268. union {
  269. struct {
  270. __u32 fs_npsect; /* # sectors/track including spares */
  271. } fs_sun;
  272. struct {
  273. __s32 fs_state; /* file system state time stamp */
  274. } fs_sunx86;
  275. } fs_u1;
  276. __u32 fs_interleave; /* hardware sector interleave */
  277. __u32 fs_trackskew; /* sector 0 skew, per track */
  278. /* a unique id for this filesystem (currently unused and unmaintained) */
  279. /* In 4.3 Tahoe this space is used by fs_headswitch and fs_trkseek */
  280. /* Neither of those fields is used in the Tahoe code right now but */
  281. /* there could be problems if they are.                            */
  282. __u32 fs_id[2]; /* file system id */
  283. /* sizes determined by number of cylinder groups and their sizes */
  284. __u32 fs_csaddr; /* blk addr of cyl grp summary area */
  285. __u32 fs_cssize; /* size of cyl grp summary area */
  286. __u32 fs_cgsize; /* cylinder group size */
  287. /* these fields are derived from the hardware */
  288. __u32 fs_ntrak; /* tracks per cylinder */
  289. __u32 fs_nsect; /* sectors per track */
  290. __u32 fs_spc; /* sectors per cylinder */
  291. /* this comes from the disk driver partitioning */
  292. __u32 fs_ncyl; /* cylinders in file system */
  293. /* these fields can be computed from the others */
  294. __u32 fs_cpg; /* cylinders per group */
  295. __u32 fs_ipg; /* inodes per group */
  296. __u32 fs_fpg; /* blocks per group * fs_frag */
  297. /* this data must be re-computed after crashes */
  298. struct ufs_csum fs_cstotal; /* cylinder summary information */
  299. /* these fields are cleared at mount time */
  300. __s8 fs_fmod; /* super block modified flag */
  301. __s8 fs_clean; /* file system is clean flag */
  302. __s8 fs_ronly; /* mounted read-only flag */
  303. __s8 fs_flags; /* currently unused flag */
  304. __s8 fs_fsmnt[UFS_MAXMNTLEN]; /* name mounted on */
  305. /* these fields retain the current block allocation info */
  306. __u32 fs_cgrotor; /* last cg searched */
  307. __u32 fs_csp[UFS_MAXCSBUFS]; /* list of fs_cs info buffers */
  308. __u32 fs_maxcluster;
  309. __u32 fs_cpc; /* cyl per cycle in postbl */
  310. __u16 fs_opostbl[16][8]; /* old rotation block list head */
  311. union {
  312. struct {
  313. __s32 fs_sparecon[53];/* reserved for future constants */
  314. __s32 fs_reclaim;
  315. __s32 fs_sparecon2[1];
  316. __s32 fs_state; /* file system state time stamp */
  317. __u32 fs_qbmask[2]; /* ~usb_bmask */
  318. __u32 fs_qfmask[2]; /* ~usb_fmask */
  319. } fs_sun;
  320. struct {
  321. __s32 fs_sparecon[53];/* reserved for future constants */
  322. __s32 fs_reclaim;
  323. __s32 fs_sparecon2[1];
  324. __u32 fs_npsect; /* # sectors/track including spares */
  325. __u32 fs_qbmask[2]; /* ~usb_bmask */
  326. __u32 fs_qfmask[2]; /* ~usb_fmask */
  327. } fs_sunx86;
  328. struct {
  329. __s32 fs_sparecon[50];/* reserved for future constants */
  330. __s32 fs_contigsumsize;/* size of cluster summary array */
  331. __s32 fs_maxsymlinklen;/* max length of an internal symlink */
  332. __s32 fs_inodefmt; /* format of on-disk inodes */
  333. __u32 fs_maxfilesize[2]; /* max representable file size */
  334. __u32 fs_qbmask[2]; /* ~usb_bmask */
  335. __u32 fs_qfmask[2]; /* ~usb_fmask */
  336. __s32 fs_state; /* file system state time stamp */
  337. } fs_44;
  338. } fs_u2;
  339. __s32 fs_postblformat; /* format of positional layout tables */
  340. __s32 fs_nrpos; /* number of rotational positions */
  341. __s32 fs_postbloff; /* (__s16) rotation block list head */
  342. __s32 fs_rotbloff; /* (__u8) blocks for each rotation */
  343. __s32 fs_magic; /* magic number */
  344. __u8 fs_space[1]; /* list of blocks for each rotation */
  345. };
  346. /*
  347.  * Preference for optimization.
  348.  */
  349. #define UFS_OPTTIME 0 /* minimize allocation time */
  350. #define UFS_OPTSPACE 1 /* minimize disk fragmentation */
  351. /*
  352.  * Rotational layout table format types
  353.  */
  354. #define UFS_42POSTBLFMT -1 /* 4.2BSD rotational table format */
  355. #define UFS_DYNAMICPOSTBLFMT 1 /* dynamic rotational table format */
  356. /*
  357.  * Convert cylinder group to base address of its global summary info.
  358.  */
  359. #define fs_cs(indx) 
  360. u.ufs_sb.s_csp[(indx) >> uspi->s_csshift][(indx) & ~uspi->s_csmask]
  361. /*
  362.  * Cylinder group block for a file system.
  363.  *
  364.  * Writable fields in the cylinder group are protected by the associated
  365.  * super block lock fs->fs_lock.
  366.  */
  367. #define CG_MAGIC 0x090255
  368. #define ufs_cg_chkmagic(sb, ucg) 
  369. (fs32_to_cpu((sb), (ucg)->cg_magic) == CG_MAGIC)
  370. /*
  371.  * size of this structure is 172 B
  372.  */
  373. struct ufs_cylinder_group {
  374. __u32 cg_link; /* linked list of cyl groups */
  375. __u32 cg_magic; /* magic number */
  376. __u32 cg_time; /* time last written */
  377. __u32 cg_cgx; /* we are the cgx'th cylinder group */
  378. __u16 cg_ncyl; /* number of cyl's this cg */
  379. __u16 cg_niblk; /* number of inode blocks this cg */
  380. __u32 cg_ndblk; /* number of data blocks this cg */
  381. struct ufs_csum cg_cs; /* cylinder summary information */
  382. __u32 cg_rotor; /* position of last used block */
  383. __u32 cg_frotor; /* position of last used frag */
  384. __u32 cg_irotor; /* position of last used inode */
  385. __u32 cg_frsum[UFS_MAXFRAG]; /* counts of available frags */
  386. __u32 cg_btotoff; /* (__u32) block totals per cylinder */
  387. __u32 cg_boff; /* (short) free block positions */
  388. __u32 cg_iusedoff; /* (char) used inode map */
  389. __u32 cg_freeoff; /* (u_char) free block map */
  390. __u32 cg_nextfreeoff; /* (u_char) next available space */
  391. union {
  392. struct {
  393. __u32 cg_clustersumoff; /* (u_int32) counts of avail clusters */
  394. __u32 cg_clusteroff; /* (u_int8) free cluster map */
  395. __u32 cg_nclusterblks; /* number of clusters this cg */
  396. __u32 cg_sparecon[13]; /* reserved for future use */
  397. } cg_44;
  398. __u32 cg_sparecon[16]; /* reserved for future use */
  399. } cg_u;
  400. __u8 cg_space[1]; /* space for cylinder group maps */
  401. /* actually longer */
  402. };
  403. /*
  404.  * structure of an on-disk inode
  405.  */
  406. struct ufs_inode {
  407. __u16 ui_mode; /*  0x0 */
  408. __u16 ui_nlink; /*  0x2 */
  409. union {
  410. struct {
  411. __u16 ui_suid; /*  0x4 */
  412. __u16 ui_sgid; /*  0x6 */
  413. } oldids;
  414. __u32 ui_inumber; /*  0x4 lsf: inode number */
  415. __u32 ui_author; /*  0x4 GNU HURD: author */
  416. } ui_u1;
  417. __u64 ui_size; /*  0x8 */
  418. struct ufs_timeval ui_atime; /* 0x10 access */
  419. struct ufs_timeval ui_mtime; /* 0x18 modification */
  420. struct ufs_timeval ui_ctime; /* 0x20 creation */
  421. union {
  422. struct {
  423. __u32 ui_db[UFS_NDADDR];/* 0x28 data blocks */
  424. __u32 ui_ib[UFS_NINDIR];/* 0x58 indirect blocks */
  425. } ui_addr;
  426. __u8 ui_symlink[4*(UFS_NDADDR+UFS_NINDIR)];/* 0x28 fast symlink */
  427. } ui_u2;
  428. __u32 ui_flags; /* 0x64 immutable, append-only... */
  429. __u32 ui_blocks; /* 0x68 blocks in use */
  430. __u32 ui_gen; /* 0x6c like ext2 i_version, for NFS support */
  431. union {
  432. struct {
  433. __u32 ui_shadow; /* 0x70 shadow inode with security data */
  434. __u32 ui_uid; /* 0x74 long EFT version of uid */
  435. __u32 ui_gid; /* 0x78 long EFT version of gid */
  436. __u32 ui_oeftflag; /* 0x7c reserved */
  437. } ui_sun;
  438. struct {
  439. __u32 ui_uid; /* 0x70 File owner */
  440. __u32 ui_gid; /* 0x74 File group */
  441. __s32 ui_spare[2]; /* 0x78 reserved */
  442. } ui_44;
  443. struct {
  444. __u32 ui_uid; /* 0x70 */
  445. __u32 ui_gid; /* 0x74 */
  446. __u16 ui_modeh; /* 0x78 mode high bits */
  447. __u16 ui_spare; /* 0x7A unused */
  448. __u32 ui_trans; /* 0x7c filesystem translator */
  449. } ui_hurd;
  450. } ui_u3;
  451. };
  452. /* FreeBSD has these in sys/stat.h */
  453. /* ui_flags that can be set by a file owner */
  454. #define UFS_UF_SETTABLE   0x0000ffff
  455. #define UFS_UF_NODUMP     0x00000001  /* do not dump */
  456. #define UFS_UF_IMMUTABLE  0x00000002  /* immutable (can't "change") */
  457. #define UFS_UF_APPEND     0x00000004  /* append-only */
  458. #define UFS_UF_OPAQUE     0x00000008  /* directory is opaque (unionfs) */
  459. #define UFS_UF_NOUNLINK   0x00000010  /* can't be removed or renamed */
  460. /* ui_flags that only root can set */
  461. #define UFS_SF_SETTABLE   0xffff0000
  462. #define UFS_SF_ARCHIVED   0x00010000  /* archived */
  463. #define UFS_SF_IMMUTABLE  0x00020000  /* immutable (can't "change") */
  464. #define UFS_SF_APPEND     0x00040000  /* append-only */
  465. #define UFS_SF_NOUNLINK   0x00100000  /* can't be removed or renamed */
  466. #ifdef __KERNEL__
  467. /* balloc.c */
  468. extern void ufs_free_fragments (struct inode *, unsigned, unsigned);
  469. extern void ufs_free_blocks (struct inode *, unsigned, unsigned);
  470. extern unsigned ufs_new_fragments (struct inode *, u32 *, unsigned, unsigned, unsigned, int *);
  471. /* cylinder.c */
  472. extern struct ufs_cg_private_info * ufs_load_cylinder (struct super_block *, unsigned);
  473. extern void ufs_put_cylinder (struct super_block *, unsigned);
  474. /* dir.c */
  475. extern struct inode_operations ufs_dir_inode_operations;
  476. extern int ufs_check_dir_entry (const char *, struct inode *, struct ufs_dir_entry *, struct buffer_head *, unsigned long);
  477. extern int ufs_add_link (struct dentry *, struct inode *);
  478. extern ino_t ufs_inode_by_name(struct inode *, struct dentry *);
  479. extern int ufs_make_empty(struct inode *, struct inode *);
  480. extern struct ufs_dir_entry * ufs_find_entry (struct dentry *, struct buffer_head **);
  481. extern int ufs_delete_entry (struct inode *, struct ufs_dir_entry *, struct buffer_head *);
  482. extern int ufs_empty_dir (struct inode *);
  483. extern struct ufs_dir_entry * ufs_dotdot (struct inode *, struct buffer_head **);
  484. extern void ufs_set_link(struct inode *, struct ufs_dir_entry *, struct buffer_head *, struct inode *);
  485. /* file.c */
  486. extern struct inode_operations ufs_file_inode_operations;
  487. extern struct file_operations ufs_file_operations;
  488. extern struct address_space_operations ufs_aops;
  489. /* ialloc.c */
  490. extern void ufs_free_inode (struct inode *inode);
  491. extern struct inode * ufs_new_inode (const struct inode *, int);
  492. /* inode.c */
  493. extern int ufs_frag_map (struct inode *, int);
  494. extern void ufs_read_inode (struct inode *);
  495. extern void ufs_put_inode (struct inode *);
  496. extern void ufs_write_inode (struct inode *, int);
  497. extern int ufs_sync_inode (struct inode *);
  498. extern void ufs_delete_inode (struct inode *);
  499. extern struct buffer_head * ufs_getfrag (struct inode *, unsigned, int, int *);
  500. extern struct buffer_head * ufs_bread (struct inode *, unsigned, int, int *);
  501. /* namei.c */
  502. extern struct file_operations ufs_dir_operations;
  503.         
  504. /* super.c */
  505. extern struct file_system_type ufs_fs_type;
  506. extern void ufs_warning (struct super_block *, const char *, const char *, ...) __attribute__ ((format (printf, 3, 4)));
  507. extern void ufs_error (struct super_block *, const char *, const char *, ...) __attribute__ ((format (printf, 3, 4)));
  508. extern void ufs_panic (struct super_block *, const char *, const char *, ...) __attribute__ ((format (printf, 3, 4)));
  509. extern void ufs_write_super (struct super_block *);
  510. /* symlink.c */
  511. extern struct inode_operations ufs_fast_symlink_inode_operations;
  512. /* truncate.c */
  513. extern void ufs_truncate (struct inode *);
  514. #endif /* __KERNEL__ */
  515. #endif /* __LINUX_UFS_FS_H */