/*-1* SPDX-License-Identifier: BSD-3-Clause2*3* Copyright (c) 1982, 1989, 19934* The Regents of the University of California. All rights reserved.5* (c) UNIX System Laboratories, Inc.6* All or some portions of this file are derived from material licensed7* to the University of California by American Telephone and Telegraph8* Co. or Unix System Laboratories, Inc. and are reproduced herein with9* the permission of UNIX System Laboratories, Inc.10*11* Redistribution and use in source and binary forms, with or without12* modification, are permitted provided that the following conditions13* are met:14* 1. Redistributions of source code must retain the above copyright15* notice, this list of conditions and the following disclaimer.16* 2. Redistributions in binary form must reproduce the above copyright17* notice, this list of conditions and the following disclaimer in the18* documentation and/or other materials provided with the distribution.19* 3. Neither the name of the University nor the names of its contributors20* may be used to endorse or promote products derived from this software21* without specific prior written permission.22*23* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND24* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE25* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE26* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE27* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL28* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS29* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)30* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT31* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY32* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF33* SUCH DAMAGE.34*/3536#ifndef _FS_EXT2FS_INODE_H_37#define _FS_EXT2FS_INODE_H_3839#include <sys/param.h>40#include <sys/lock.h>41#include <sys/mutex.h>42#include <sys/queue.h>43#include <sys/buf.h>4445#include <fs/ext2fs/ext2_extents.h>4647/*48* This must agree with the definition in <ufs/ufs/dir.h>.49*/50#define doff_t int32_t5152#define EXT2_NDADDR 12 /* Direct addresses in inode. */53#define EXT2_NIADDR 3 /* Indirect addresses in inode. */5455/*56* The size of physical and logical block numbers in EXT2FS.57*/58typedef uint32_t e2fs_daddr_t;59typedef int64_t e2fs_lbn_t;60typedef int64_t e4fs_daddr_t;61typedef int64_t ext_time_t;6263/*64* The inode is used to describe each active (or recently active) file in the65* EXT2FS filesystem. It is composed of two types of information. The first66* part is the information that is needed only while the file is active (such67* as the identity of the file and linkage to speed its lookup). The second68* part is the permanent meta-data associated with the file which is read in69* from the permanent dinode from long term storage when the file becomes70* active, and is put back when the file is no longer being used.71*/72struct inode {73struct vnode *i_vnode;/* Vnode associated with this inode. */74struct ext2mount *i_ump;75uint32_t i_flag; /* flags, see below */76ino_t i_number; /* The identity of the inode. */7778struct m_ext2fs *i_e2fs; /* EXT2FS */79u_quad_t i_modrev; /* Revision level for NFS lease. */80/*81* Side effects; used during directory lookup.82*/83int32_t i_count; /* Size of free slot in directory. */84doff_t i_endoff; /* End of useful stuff in directory. */85doff_t i_diroff; /* Offset in dir, where we found last entry. */86doff_t i_offset; /* Offset of free space in directory. */8788uint32_t i_block_group;89uint32_t i_next_alloc_block;90uint32_t i_next_alloc_goal;9192/* Fields from struct dinode in UFS. */93uint16_t i_mode; /* IFMT, permissions; see below. */94int32_t i_nlink; /* File link count. */95uint32_t i_uid; /* File owner. */96uint32_t i_gid; /* File group. */97uint64_t i_size; /* File byte count. */98uint64_t i_blocks; /* Blocks actually held. */99ext_time_t i_atime; /* Last access time. */100ext_time_t i_mtime; /* Last modified time. */101ext_time_t i_ctime; /* Last inode change time. */102ext_time_t i_birthtime; /* Inode creation time. */103int32_t i_mtimensec; /* Last modified time. */104int32_t i_atimensec; /* Last access time. */105int32_t i_ctimensec; /* Last inode change time. */106int32_t i_birthnsec; /* Inode creation time. */107uint32_t i_gen; /* Generation number. */108uint64_t i_facl; /* EA block number. */109uint32_t i_flags; /* Status flags (chflags). */110dev_t i_rdev; /* Major/minor inode values. */111union {112struct {113uint32_t i_db[EXT2_NDADDR]; /* Direct disk blocks. */114uint32_t i_ib[EXT2_NIADDR]; /* Indirect disk blocks. */115};116uint32_t i_data[EXT2_NDADDR + EXT2_NIADDR];117};118119struct ext4_extent_cache i_ext_cache; /* cache for ext4 extent */120121struct vn_clusterw i_clusterw; /* Buffer clustering information */122};123124/*125* The di_db fields may be overlaid with other information for126* file types that do not have associated disk storage. Block127* and character devices overlay the first data block with their128* dev_t value. Short symbolic links place their path in the129* di_db area.130*/131#define i_shortlink i_db132133/* File permissions. */134#define IEXEC 0000100 /* Executable. */135#define IWRITE 0000200 /* Writeable. */136#define IREAD 0000400 /* Readable. */137#define ISVTX 0001000 /* Sticky bit. */138#define ISGID 0002000 /* Set-gid. */139#define ISUID 0004000 /* Set-uid. */140141/* File types. */142#define IFMT 0170000 /* Mask of file type. */143#define IFIFO 0010000 /* Named pipe (fifo). */144#define IFCHR 0020000 /* Character device. */145#define IFDIR 0040000 /* Directory file. */146#define IFBLK 0060000 /* Block device. */147#define IFREG 0100000 /* Regular file. */148#define IFLNK 0120000 /* Symbolic link. */149#define IFSOCK 0140000 /* UNIX domain socket. */150#define IFWHT 0160000 /* Whiteout. */151152/* These flags are kept in i_flag. */153#define IN_ACCESS 0x0001 /* Access time update request. */154#define IN_CHANGE 0x0002 /* Inode change time update request. */155#define IN_UPDATE 0x0004 /* Modification time update request. */156#define IN_MODIFIED 0x0008 /* Inode has been modified. */157#define IN_RENAME 0x0010 /* Inode is being renamed. */158#define IN_HASHED 0x0020 /* Inode is on hash list */159#define IN_LAZYMOD 0x0040 /* Modified, but don't write yet. */160#define IN_SPACECOUNTED 0x0080 /* Blocks to be freed in free count. */161#define IN_LAZYACCESS 0x0100 /* Process IN_ACCESS after the162suspension finished */163164/*165* These are translation flags for some attributes that Ext4166* passes as inode flags but that we cannot pass directly.167*/168#define IN_E3INDEX 0x010000169#define IN_E4EXTENTS 0x020000170171#define i_devvp i_ump->um_devvp172173#ifdef _KERNEL174/*175* Structure used to pass around logical block paths generated by176* ext2_getlbns and used by truncate and bmap code.177*/178struct indir {179e2fs_lbn_t in_lbn; /* Logical block number. */180int in_off; /* Offset in buffer. */181};182183/* Convert between inode pointers and vnode pointers. */184#define VTOI(vp) ((struct inode *)(vp)->v_data)185#define ITOV(ip) ((ip)->i_vnode)186187/* This overlays the fid structure (see mount.h). */188struct ufid {189uint16_t ufid_len; /* Length of structure. */190uint16_t ufid_pad; /* Force 32-bit alignment. */191uint32_t ufid_gen; /* Generation number. */192ino_t ufid_ino; /* File number (ino). */193};194#endif /* _KERNEL */195196#endif /* !_FS_EXT2FS_INODE_H_ */197198199