The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/fs/ext2fs/inode.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * SPDX-License-Identifier: BSD-3-Clause
    3  *
    4  * Copyright (c) 1982, 1989, 1993
    5  *      The Regents of the University of California.  All rights reserved.
    6  * (c) UNIX System Laboratories, Inc.
    7  * All or some portions of this file are derived from material licensed
    8  * to the University of California by American Telephone and Telegraph
    9  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
   10  * the permission of UNIX System Laboratories, Inc.
   11  *
   12  * Redistribution and use in source and binary forms, with or without
   13  * modification, are permitted provided that the following conditions
   14  * are met:
   15  * 1. Redistributions of source code must retain the above copyright
   16  *    notice, this list of conditions and the following disclaimer.
   17  * 2. Redistributions in binary form must reproduce the above copyright
   18  *    notice, this list of conditions and the following disclaimer in the
   19  *    documentation and/or other materials provided with the distribution.
   20  * 3. Neither the name of the University nor the names of its contributors
   21  *    may be used to endorse or promote products derived from this software
   22  *    without specific prior written permission.
   23  *
   24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
   25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
   28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   34  * SUCH DAMAGE.
   35  *
   36  *      @(#)inode.h     8.9 (Berkeley) 5/14/95
   37  * $FreeBSD$
   38  */
   39 
   40 #ifndef _FS_EXT2FS_INODE_H_
   41 #define _FS_EXT2FS_INODE_H_
   42 
   43 #include <sys/param.h>
   44 #include <sys/lock.h>
   45 #include <sys/mutex.h>
   46 #include <sys/queue.h>
   47 #include <sys/buf.h>
   48 
   49 #include <fs/ext2fs/ext2_extents.h>
   50 
   51 /*
   52  * This must agree with the definition in <ufs/ufs/dir.h>.
   53  */
   54 #define doff_t          int32_t
   55 
   56 #define EXT2_NDADDR     12              /* Direct addresses in inode. */
   57 #define EXT2_NIADDR     3               /* Indirect addresses in inode. */
   58 
   59 /*
   60  * The size of physical and logical block numbers in EXT2FS.
   61  */
   62 typedef uint32_t e2fs_daddr_t;
   63 typedef int64_t e2fs_lbn_t;
   64 typedef int64_t e4fs_daddr_t;
   65 typedef int64_t ext_time_t;
   66 
   67 /*
   68  * The inode is used to describe each active (or recently active) file in the
   69  * EXT2FS filesystem. It is composed of two types of information. The first
   70  * part is the information that is needed only while the file is active (such
   71  * as the identity of the file and linkage to speed its lookup). The second
   72  * part is the permanent meta-data associated with the file which is read in
   73  * from the permanent dinode from long term storage when the file becomes
   74  * active, and is put back when the file is no longer being used.
   75  */
   76 struct inode {
   77         struct  vnode  *i_vnode;/* Vnode associated with this inode. */
   78         struct  ext2mount *i_ump;
   79         uint32_t i_flag;        /* flags, see below */
   80         ino_t     i_number;     /* The identity of the inode. */
   81 
   82         struct  m_ext2fs *i_e2fs;       /* EXT2FS */
   83         u_quad_t i_modrev;      /* Revision level for NFS lease. */
   84         /*
   85          * Side effects; used during directory lookup.
   86          */
   87         int32_t  i_count;       /* Size of free slot in directory. */
   88         doff_t   i_endoff;      /* End of useful stuff in directory. */
   89         doff_t   i_diroff;      /* Offset in dir, where we found last entry. */
   90         doff_t   i_offset;      /* Offset of free space in directory. */
   91 
   92         uint32_t i_block_group;
   93         uint32_t i_next_alloc_block;
   94         uint32_t i_next_alloc_goal;
   95 
   96         /* Fields from struct dinode in UFS. */
   97         uint16_t        i_mode;         /* IFMT, permissions; see below. */
   98         int32_t         i_nlink;        /* File link count. */
   99         uint32_t        i_uid;          /* File owner. */
  100         uint32_t        i_gid;          /* File group. */
  101         uint64_t        i_size;         /* File byte count. */
  102         uint64_t        i_blocks;       /* Blocks actually held. */
  103         ext_time_t      i_atime;        /* Last access time. */
  104         ext_time_t      i_mtime;        /* Last modified time. */
  105         ext_time_t      i_ctime;        /* Last inode change time. */
  106         ext_time_t      i_birthtime;    /* Inode creation time. */
  107         int32_t         i_mtimensec;    /* Last modified time. */
  108         int32_t         i_atimensec;    /* Last access time. */
  109         int32_t         i_ctimensec;    /* Last inode change time. */
  110         int32_t         i_birthnsec;    /* Inode creation time. */
  111         uint32_t        i_gen;          /* Generation number. */
  112         uint64_t        i_facl;         /* EA block number. */
  113         uint32_t        i_flags;        /* Status flags (chflags). */
  114         dev_t           i_rdev;         /* Major/minor inode values. */
  115         union {
  116                 struct {
  117                         uint32_t i_db[EXT2_NDADDR]; /* Direct disk blocks. */
  118                         uint32_t i_ib[EXT2_NIADDR]; /* Indirect disk blocks. */
  119                 };
  120                 uint32_t i_data[EXT2_NDADDR + EXT2_NIADDR];
  121         };
  122 
  123         struct ext4_extent_cache i_ext_cache; /* cache for ext4 extent */
  124 
  125         struct vn_clusterw i_clusterw;  /* Buffer clustering information */
  126 };
  127 
  128 /*
  129  * The di_db fields may be overlaid with other information for
  130  * file types that do not have associated disk storage. Block
  131  * and character devices overlay the first data block with their
  132  * dev_t value. Short symbolic links place their path in the
  133  * di_db area.
  134  */
  135 #define i_shortlink     i_db
  136 
  137 /* File permissions. */
  138 #define IEXEC           0000100         /* Executable. */
  139 #define IWRITE          0000200         /* Writeable. */
  140 #define IREAD           0000400         /* Readable. */
  141 #define ISVTX           0001000         /* Sticky bit. */
  142 #define ISGID           0002000         /* Set-gid. */
  143 #define ISUID           0004000         /* Set-uid. */
  144 
  145 /* File types. */
  146 #define IFMT            0170000         /* Mask of file type. */
  147 #define IFIFO           0010000         /* Named pipe (fifo). */
  148 #define IFCHR           0020000         /* Character device. */
  149 #define IFDIR           0040000         /* Directory file. */
  150 #define IFBLK           0060000         /* Block device. */
  151 #define IFREG           0100000         /* Regular file. */
  152 #define IFLNK           0120000         /* Symbolic link. */
  153 #define IFSOCK          0140000         /* UNIX domain socket. */
  154 #define IFWHT           0160000         /* Whiteout. */
  155 
  156 /* These flags are kept in i_flag. */
  157 #define IN_ACCESS       0x0001          /* Access time update request. */
  158 #define IN_CHANGE       0x0002          /* Inode change time update request. */
  159 #define IN_UPDATE       0x0004          /* Modification time update request. */
  160 #define IN_MODIFIED     0x0008          /* Inode has been modified. */
  161 #define IN_RENAME       0x0010          /* Inode is being renamed. */
  162 #define IN_HASHED       0x0020          /* Inode is on hash list */
  163 #define IN_LAZYMOD      0x0040          /* Modified, but don't write yet. */
  164 #define IN_SPACECOUNTED 0x0080          /* Blocks to be freed in free count. */
  165 #define IN_LAZYACCESS   0x0100          /* Process IN_ACCESS after the
  166                                             suspension finished */
  167 
  168 /*
  169  * These are translation flags for some attributes that Ext4
  170  * passes as inode flags but that we cannot pass directly.
  171  */
  172 #define IN_E3INDEX      0x010000
  173 #define IN_E4EXTENTS    0x020000
  174 
  175 #define i_devvp i_ump->um_devvp
  176 
  177 #ifdef _KERNEL
  178 /*
  179  * Structure used to pass around logical block paths generated by
  180  * ext2_getlbns and used by truncate and bmap code.
  181  */
  182 struct indir {
  183         e2fs_lbn_t in_lbn;              /* Logical block number. */
  184         int     in_off;                 /* Offset in buffer. */
  185 };
  186 
  187 /* Convert between inode pointers and vnode pointers. */
  188 #define VTOI(vp)        ((struct inode *)(vp)->v_data)
  189 #define ITOV(ip)        ((ip)->i_vnode)
  190 
  191 /* This overlays the fid structure (see mount.h). */
  192 struct ufid {
  193         uint16_t ufid_len;              /* Length of structure. */
  194         uint16_t ufid_pad;              /* Force 32-bit alignment. */
  195         ino_t   ufid_ino;               /* File number (ino). */
  196         uint32_t ufid_gen;              /* Generation number. */
  197 };
  198 #endif  /* _KERNEL */
  199 
  200 #endif  /* !_FS_EXT2FS_INODE_H_ */

Cache object: 123ac63a5bacccbaf9b3b744c7197d32


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.