📄 ufs_fs.h
字号:
__fs32 fs_nsect; /* sectors per track */ __fs32 fs_spc; /* sectors per cylinder *//* this comes from the disk driver partitioning */ __fs32 fs_ncyl; /* cylinders in file system *//* these fields can be computed from the others */ __fs32 fs_cpg; /* cylinders per group */ __fs32 fs_ipg; /* inodes per cylinder group */ __fs32 fs_fpg; /* blocks per group * fs_frag *//* this data must be re-computed after crashes */ struct ufs_csum fs_cstotal; /* cylinder summary information *//* these fields are cleared at mount time */ __s8 fs_fmod; /* super block modified flag */ __s8 fs_clean; /* file system is clean flag */ __s8 fs_ronly; /* mounted read-only flag */ __s8 fs_flags; /* currently unused flag */ union { struct { __s8 fs_fsmnt[UFS_MAXMNTLEN];/* name mounted on */ __fs32 fs_cgrotor; /* last cg searched */ __fs32 fs_csp[UFS_MAXCSBUFS];/*list of fs_cs info buffers */ __fs32 fs_maxcluster; __fs32 fs_cpc; /* cyl per cycle in postbl */ __fs16 fs_opostbl[16][8]; /* old rotation block list head */ } fs_u1; struct { __s8 fs_fsmnt[UFS2_MAXMNTLEN]; /* name mounted on */ __u8 fs_volname[UFS2_MAXVOLLEN]; /* volume name */ __fs64 fs_swuid; /* system-wide uid */ __fs32 fs_pad; /* due to alignment of fs_swuid */ __fs32 fs_cgrotor; /* last cg searched */ __fs32 fs_ocsp[UFS2_NOCSPTRS]; /*list of fs_cs info buffers */ __fs32 fs_contigdirs;/*# of contiguously allocated dirs */ __fs32 fs_csp; /* cg summary info buffer for fs_cs */ __fs32 fs_maxcluster; __fs32 fs_active;/* used by snapshots to track fs */ __fs32 fs_old_cpc; /* cyl per cycle in postbl */ __fs32 fs_maxbsize;/*maximum blocking factor permitted */ __fs64 fs_sparecon64[17];/*old rotation block list head */ __fs64 fs_sblockloc; /* byte offset of standard superblock */ struct ufs2_csum_total fs_cstotal;/*cylinder summary information*/ struct ufs_timeval fs_time; /* last time written */ __fs64 fs_size; /* number of blocks in fs */ __fs64 fs_dsize; /* number of data blocks in fs */ __fs64 fs_csaddr; /* blk addr of cyl grp summary area */ __fs64 fs_pendingblocks;/* blocks in process of being freed */ __fs32 fs_pendinginodes;/*inodes in process of being freed */ } fs_u2; } fs_u11; union { struct { __fs32 fs_sparecon[53];/* reserved for future constants */ __fs32 fs_reclaim; __fs32 fs_sparecon2[1]; __fs32 fs_state; /* file system state time stamp */ __fs32 fs_qbmask[2]; /* ~usb_bmask */ __fs32 fs_qfmask[2]; /* ~usb_fmask */ } fs_sun; struct { __fs32 fs_sparecon[53];/* reserved for future constants */ __fs32 fs_reclaim; __fs32 fs_sparecon2[1]; __fs32 fs_npsect; /* # sectors/track including spares */ __fs32 fs_qbmask[2]; /* ~usb_bmask */ __fs32 fs_qfmask[2]; /* ~usb_fmask */ } fs_sunx86; struct { __fs32 fs_sparecon[50];/* reserved for future constants */ __fs32 fs_contigsumsize;/* size of cluster summary array */ __fs32 fs_maxsymlinklen;/* max length of an internal symlink */ __fs32 fs_inodefmt; /* format of on-disk inodes */ __fs32 fs_maxfilesize[2]; /* max representable file size */ __fs32 fs_qbmask[2]; /* ~usb_bmask */ __fs32 fs_qfmask[2]; /* ~usb_fmask */ __fs32 fs_state; /* file system state time stamp */ } fs_44; } fs_u2; __fs32 fs_postblformat; /* format of positional layout tables */ __fs32 fs_nrpos; /* number of rotational positions */ __fs32 fs_postbloff; /* (__s16) rotation block list head */ __fs32 fs_rotbloff; /* (__u8) blocks for each rotation */ __fs32 fs_magic; /* magic number */ __u8 fs_space[1]; /* list of blocks for each rotation */};/* * Preference for optimization. */#define UFS_OPTTIME 0 /* minimize allocation time */#define UFS_OPTSPACE 1 /* minimize disk fragmentation *//* * Rotational layout table format types */#define UFS_42POSTBLFMT -1 /* 4.2BSD rotational table format */#define UFS_DYNAMICPOSTBLFMT 1 /* dynamic rotational table format *//* * Convert cylinder group to base address of its global summary info. */#define fs_cs(indx) \ s_csp[(indx) >> uspi->s_csshift][(indx) & ~uspi->s_csmask]/* * Cylinder group block for a file system. * * Writable fields in the cylinder group are protected by the associated * super block lock fs->fs_lock. */#define CG_MAGIC 0x090255#define ufs_cg_chkmagic(sb, ucg) \ (fs32_to_cpu((sb), (ucg)->cg_magic) == CG_MAGIC)/* * size of this structure is 172 B */struct ufs_cylinder_group { __fs32 cg_link; /* linked list of cyl groups */ __fs32 cg_magic; /* magic number */ __fs32 cg_time; /* time last written */ __fs32 cg_cgx; /* we are the cgx'th cylinder group */ __fs16 cg_ncyl; /* number of cyl's this cg */ __fs16 cg_niblk; /* number of inode blocks this cg */ __fs32 cg_ndblk; /* number of data blocks this cg */ struct ufs_csum cg_cs; /* cylinder summary information */ __fs32 cg_rotor; /* position of last used block */ __fs32 cg_frotor; /* position of last used frag */ __fs32 cg_irotor; /* position of last used inode */ __fs32 cg_frsum[UFS_MAXFRAG]; /* counts of available frags */ __fs32 cg_btotoff; /* (__u32) block totals per cylinder */ __fs32 cg_boff; /* (short) free block positions */ __fs32 cg_iusedoff; /* (char) used inode map */ __fs32 cg_freeoff; /* (u_char) free block map */ __fs32 cg_nextfreeoff; /* (u_char) next available space */ union { struct { __fs32 cg_clustersumoff; /* (u_int32) counts of avail clusters */ __fs32 cg_clusteroff; /* (u_int8) free cluster map */ __fs32 cg_nclusterblks; /* number of clusters this cg */ __fs32 cg_sparecon[13]; /* reserved for future use */ } cg_44; struct { __fs32 cg_clustersumoff;/* (u_int32) counts of avail clusters */ __fs32 cg_clusteroff; /* (u_int8) free cluster map */ __fs32 cg_nclusterblks;/* number of clusters this cg */ __fs32 cg_niblk; /* number of inode blocks this cg */ __fs32 cg_initediblk; /* last initialized inode */ __fs32 cg_sparecon32[3];/* reserved for future use */ __fs64 cg_time; /* time last written */ __fs64 cg_sparecon[3]; /* reserved for future use */ } cg_u2; __fs32 cg_sparecon[16]; /* reserved for future use */ } cg_u; __u8 cg_space[1]; /* space for cylinder group maps *//* actually longer */};/* * structure of an on-disk inode */struct ufs_inode { __fs16 ui_mode; /* 0x0 */ __fs16 ui_nlink; /* 0x2 */ union { struct { __fs16 ui_suid; /* 0x4 */ __fs16 ui_sgid; /* 0x6 */ } oldids; __fs32 ui_inumber; /* 0x4 lsf: inode number */ __fs32 ui_author; /* 0x4 GNU HURD: author */ } ui_u1; __fs64 ui_size; /* 0x8 */ struct ufs_timeval ui_atime; /* 0x10 access */ struct ufs_timeval ui_mtime; /* 0x18 modification */ struct ufs_timeval ui_ctime; /* 0x20 creation */ union { struct { __fs32 ui_db[UFS_NDADDR];/* 0x28 data blocks */ __fs32 ui_ib[UFS_NINDIR];/* 0x58 indirect blocks */ } ui_addr; __u8 ui_symlink[4*(UFS_NDADDR+UFS_NINDIR)];/* 0x28 fast symlink */ } ui_u2; __fs32 ui_flags; /* 0x64 immutable, append-only... */ __fs32 ui_blocks; /* 0x68 blocks in use */ __fs32 ui_gen; /* 0x6c like ext2 i_version, for NFS support */ union { struct { __fs32 ui_shadow; /* 0x70 shadow inode with security data */ __fs32 ui_uid; /* 0x74 long EFT version of uid */ __fs32 ui_gid; /* 0x78 long EFT version of gid */ __fs32 ui_oeftflag; /* 0x7c reserved */ } ui_sun; struct { __fs32 ui_uid; /* 0x70 File owner */ __fs32 ui_gid; /* 0x74 File group */ __fs32 ui_spare[2]; /* 0x78 reserved */ } ui_44; struct { __fs32 ui_uid; /* 0x70 */ __fs32 ui_gid; /* 0x74 */ __fs16 ui_modeh; /* 0x78 mode high bits */ __fs16 ui_spare; /* 0x7A unused */ __fs32 ui_trans; /* 0x7c filesystem translator */ } ui_hurd; } ui_u3;};#define UFS_NXADDR 2 /* External addresses in inode. */struct ufs2_inode { __fs16 ui_mode; /* 0: IFMT, permissions; see below. */ __fs16 ui_nlink; /* 2: File link count. */ __fs32 ui_uid; /* 4: File owner. */ __fs32 ui_gid; /* 8: File group. */ __fs32 ui_blksize; /* 12: Inode blocksize. */ __fs64 ui_size; /* 16: File byte count. */ __fs64 ui_blocks; /* 24: Bytes actually held. */ struct ufs_timeval ui_atime; /* 32: Last access time. */ struct ufs_timeval ui_mtime; /* 40: Last modified time. */ struct ufs_timeval ui_ctime; /* 48: Last inode change time. */ struct ufs_timeval ui_birthtime; /* 56: Inode creation time. */ __fs32 ui_mtimensec; /* 64: Last modified time. */ __fs32 ui_atimensec; /* 68: Last access time. */ __fs32 ui_ctimensec; /* 72: Last inode change time. */ __fs32 ui_birthnsec; /* 76: Inode creation time. */ __fs32 ui_gen; /* 80: Generation number. */ __fs32 ui_kernflags; /* 84: Kernel flags. */ __fs32 ui_flags; /* 88: Status flags (chflags). */ __fs32 ui_extsize; /* 92: External attributes block. */ __fs64 ui_extb[UFS_NXADDR];/* 96: External attributes block. */ union { struct { __fs64 ui_db[UFS_NDADDR]; /* 112: Direct disk blocks. */ __fs64 ui_ib[UFS_NINDIR];/* 208: Indirect disk blocks.*/ } ui_addr; __u8 ui_symlink[2*4*(UFS_NDADDR+UFS_NINDIR)];/* 0x28 fast symlink */ } ui_u2; __fs64 ui_spare[3]; /* 232: Reserved; currently unused */};/* FreeBSD has these in sys/stat.h *//* ui_flags that can be set by a file owner */#define UFS_UF_SETTABLE 0x0000ffff#define UFS_UF_NODUMP 0x00000001 /* do not dump */#define UFS_UF_IMMUTABLE 0x00000002 /* immutable (can't "change") */#define UFS_UF_APPEND 0x00000004 /* append-only */#define UFS_UF_OPAQUE 0x00000008 /* directory is opaque (unionfs) */#define UFS_UF_NOUNLINK 0x00000010 /* can't be removed or renamed *//* ui_flags that only root can set */#define UFS_SF_SETTABLE 0xffff0000#define UFS_SF_ARCHIVED 0x00010000 /* archived */#define UFS_SF_IMMUTABLE 0x00020000 /* immutable (can't "change") */#define UFS_SF_APPEND 0x00040000 /* append-only */#define UFS_SF_NOUNLINK 0x00100000 /* can't be removed or renamed */struct ufs_cg_private_info { struct ufs_cylinder_group ucg; __u32 c_cgx; /* number of cylidner group */ __u16 c_ncyl; /* number of cyl's this cg */ __u16 c_niblk; /* number of inode blocks this cg */ __u32 c_ndblk; /* number of data blocks this cg */ __u32 c_rotor; /* position of last used block */ __u32 c_frotor; /* position of last used frag */ __u32 c_irotor; /* position of last used inode */ __u32 c_btotoff; /* (__u32) block totals per cylinder */ __u32 c_boff; /* (short) free block positions */ __u32 c_iusedoff; /* (char) used inode map */ __u32 c_freeoff; /* (u_char) free block map */ __u32 c_nextfreeoff; /* (u_char) next available space */ __u32 c_clustersumoff;/* (u_int32) counts of avail clusters */ __u32 c_clusteroff; /* (u_int8) free cluster map */ __u32 c_nclusterblks; /* number of clusters this cg */}; /* * Sizes of this structures are: * ufs_super_block_first 512 * ufs_super_block_second 512 * ufs_super_block_third 356 */struct ufs_super_block_first { __fs32 fs_link; __fs32 fs_rlink; __fs32 fs_sblkno; __fs32 fs_cblkno; __fs32 fs_iblkno; __fs32 fs_dblkno; __fs32 fs_cgoffset; __fs32 fs_cgmask; __fs32 fs_time; __fs32 fs_size; __fs32 fs_dsize; __fs32 fs_ncg; __fs32 fs_bsize; __fs32 fs_fsize; __fs32 fs_frag; __fs32 fs_minfree; __fs32 fs_rotdelay; __fs32 fs_rps; __fs32 fs_bmask; __fs32 fs_fmask; __fs32 fs_bshift; __fs32 fs_fshift; __fs32 fs_maxcontig; __fs32 fs_maxbpg; __fs32 fs_fragshift; __fs32 fs_fsbtodb; __fs32 fs_sbsize; __fs32 fs_csmask; __fs32 fs_csshift; __fs32 fs_nindir; __fs32 fs_inopb; __fs32 fs_nspf; __fs32 fs_optim; union { struct { __fs32 fs_npsect; } fs_sun; struct { __fs32 fs_state; } fs_sunx86; } fs_u1; __fs32 fs_interleave; __fs32 fs_trackskew; __fs32 fs_id[2]; __fs32 fs_csaddr; __fs32 fs_cssize; __fs32 fs_cgsize; __fs32 fs_ntrak; __fs32 fs_nsect; __fs32 fs_spc; __fs32 fs_ncyl; __fs32 fs_cpg; __fs32 fs_ipg; __fs32 fs_fpg; struct ufs_csum fs_cstotal; __s8 fs_fmod; __s8 fs_clean; __s8 fs_ronly; __s8 fs_flags; __s8 fs_fsmnt[UFS_MAXMNTLEN - 212];};struct ufs_super_block_second { __s8 fs_fsmnt[212]; __fs32 fs_cgrotor; __fs32 fs_csp[UFS_MAXCSBUFS]; __fs32 fs_maxcluster; __fs32 fs_cpc; __fs16 fs_opostbl[82];}; struct ufs_super_block_third { __fs16 fs_opostbl[46]; union { struct { __fs32 fs_sparecon[53];/* reserved for future constants */ __fs32 fs_reclaim; __fs32 fs_sparecon2[1]; __fs32 fs_state; /* file system state time stamp */ __fs32 fs_qbmask[2]; /* ~usb_bmask */ __fs32 fs_qfmask[2]; /* ~usb_fmask */ } fs_sun; struct { __fs32 fs_sparecon[53];/* reserved for future constants */ __fs32 fs_reclaim; __fs32 fs_sparecon2[1]; __fs32 fs_npsect; /* # sectors/track including spares */ __fs32 fs_qbmask[2]; /* ~usb_bmask */ __fs32 fs_qfmask[2]; /* ~usb_fmask */ } fs_sunx86; struct { __fs32 fs_sparecon[50];/* reserved for future constants */ __fs32 fs_contigsumsize;/* size of cluster summary array */ __fs32 fs_maxsymlinklen;/* max length of an internal symlink */ __fs32 fs_inodefmt; /* format of on-disk inodes */ __fs32 fs_maxfilesize[2]; /* max representable file size */ __fs32 fs_qbmask[2]; /* ~usb_bmask */ __fs32 fs_qfmask[2]; /* ~usb_fmask */ __fs32 fs_state; /* file system state time stamp */ } fs_44; } fs_u2; __fs32 fs_postblformat; __fs32 fs_nrpos; __fs32 fs_postbloff; __fs32 fs_rotbloff; __fs32 fs_magic; __u8 fs_space[1];};#endif /* __LINUX_UFS_FS_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -