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/sys/file.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  * Copyright (c) 1982, 1986, 1989, 1993
    3  *      The Regents of the University of California.  All rights reserved.
    4  *
    5  * Redistribution and use in source and binary forms, with or without
    6  * modification, are permitted provided that the following conditions
    7  * are met:
    8  * 1. Redistributions of source code must retain the above copyright
    9  *    notice, this list of conditions and the following disclaimer.
   10  * 2. Redistributions in binary form must reproduce the above copyright
   11  *    notice, this list of conditions and the following disclaimer in the
   12  *    documentation and/or other materials provided with the distribution.
   13  * 4. Neither the name of the University nor the names of its contributors
   14  *    may be used to endorse or promote products derived from this software
   15  *    without specific prior written permission.
   16  *
   17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
   18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
   21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   27  * SUCH DAMAGE.
   28  *
   29  *      @(#)file.h      8.3 (Berkeley) 1/9/95
   30  * $FreeBSD: releng/6.2/sys/sys/file.h 164286 2006-11-14 20:42:41Z cvs2svn $
   31  */
   32 
   33 #ifndef _SYS_FILE_H_
   34 #define _SYS_FILE_H_
   35 
   36 #ifndef _KERNEL
   37 #include <sys/types.h> /* XXX */
   38 #include <sys/fcntl.h>
   39 #include <sys/unistd.h>
   40 #else
   41 #include <sys/queue.h>
   42 #include <sys/_lock.h>
   43 #include <sys/_mutex.h>
   44 
   45 struct stat;
   46 struct thread;
   47 struct uio;
   48 struct knote;
   49 struct vnode;
   50 struct socket;
   51 
   52 
   53 #endif /* _KERNEL */
   54 
   55 #define DTYPE_VNODE     1       /* file */
   56 #define DTYPE_SOCKET    2       /* communications endpoint */
   57 #define DTYPE_PIPE      3       /* pipe */
   58 #define DTYPE_FIFO      4       /* fifo (named pipe) */
   59 #define DTYPE_KQUEUE    5       /* event queue */
   60 #define DTYPE_CRYPTO    6       /* crypto */
   61 
   62 #ifdef _KERNEL
   63 
   64 struct file;
   65 struct ucred;
   66 
   67 typedef int fo_rdwr_t(struct file *fp, struct uio *uio,
   68                     struct ucred *active_cred, int flags,
   69                     struct thread *td);
   70 #define FOF_OFFSET      1       /* Use the offset in uio argument */
   71 typedef int fo_ioctl_t(struct file *fp, u_long com, void *data,
   72                     struct ucred *active_cred, struct thread *td);
   73 typedef int fo_poll_t(struct file *fp, int events,
   74                     struct ucred *active_cred, struct thread *td);
   75 typedef int fo_kqfilter_t(struct file *fp, struct knote *kn);
   76 typedef int fo_stat_t(struct file *fp, struct stat *sb,
   77                     struct ucred *active_cred, struct thread *td);
   78 typedef int fo_close_t(struct file *fp, struct thread *td);
   79 typedef int fo_flags_t;
   80 
   81 struct fileops {
   82         fo_rdwr_t       *fo_read;
   83         fo_rdwr_t       *fo_write;
   84         fo_ioctl_t      *fo_ioctl;
   85         fo_poll_t       *fo_poll;
   86         fo_kqfilter_t   *fo_kqfilter;
   87         fo_stat_t       *fo_stat;
   88         fo_close_t      *fo_close;
   89         fo_flags_t      fo_flags;       /* DFLAG_* below */
   90 };
   91 
   92 #define DFLAG_PASSABLE  0x01    /* may be passed via unix sockets. */
   93 #define DFLAG_SEEKABLE  0x02    /* seekable / nonsequential */
   94 
   95 /*
   96  * Kernel descriptor table.
   97  * One entry for each open kernel vnode and socket.
   98  *
   99  * Below is the list of locks that protects members in struct file.
  100  *
  101  * (fl) filelist_lock
  102  * (f)  f_mtx in struct file
  103  * none not locked
  104  */
  105 
  106 struct file {
  107         LIST_ENTRY(file) f_list;/* (fl) list of active files */
  108         short   f_type;         /* descriptor type */
  109         void    *f_data;        /* file descriptor specific data */
  110         u_int   f_flag;         /* see fcntl.h */
  111         struct mtx      *f_mtxp;        /* mutex to protect data */
  112         struct fileops *f_ops;  /* File operations */
  113         struct  ucred *f_cred;  /* credentials associated with descriptor */
  114         int     f_count;        /* (f) reference count */
  115         struct vnode *f_vnode;  /* NULL or applicable vnode */
  116 
  117         /* DFLAG_SEEKABLE specific fields */
  118         off_t   f_offset;
  119         short     f_vnread_flags; /* 
  120                                    * (f) home grown sleep lock for f_offset
  121                                    * Used only for shared vnode locking in
  122                                    * vnread()
  123                                    */
  124 #define  FOFFSET_LOCKED       0x1
  125 #define  FOFFSET_LOCK_WAITING 0x2                
  126         /* DTYPE_SOCKET specific fields */
  127         short   f_gcflag;       /* used by thread doing fd garbage collection */
  128 #define FMARK           0x1     /* mark during gc() */
  129 #define FDEFER          0x2     /* defer for next gc pass */
  130         int     f_msgcount;     /* (f) references from message queue */
  131 
  132         /* DTYPE_VNODE specific fields */
  133         int     f_seqcount;     /*
  134                                  * count of sequential accesses -- cleared
  135                                  * by most seek operations.
  136                                  */
  137         off_t   f_nextoff;      /*
  138                                  * offset of next expected read or write
  139                                  */
  140         void    *f_label;       /* Place-holder for struct label pointer. */
  141 };
  142 
  143 #endif /* _KERNEL */
  144 
  145 /*
  146  * Userland version of struct file, for sysctl
  147  */
  148 struct xfile {
  149         size_t  xf_size;        /* size of struct xfile */
  150         pid_t   xf_pid;         /* owning process */
  151         uid_t   xf_uid;         /* effective uid of owning process */
  152         int     xf_fd;          /* descriptor number */
  153         void    *xf_file;       /* address of struct file */
  154         short   xf_type;        /* descriptor type */
  155         int     xf_count;       /* reference count */
  156         int     xf_msgcount;    /* references from message queue */
  157         off_t   xf_offset;      /* file offset */
  158         void    *xf_data;       /* file descriptor specific data */
  159         void    *xf_vnode;      /* vnode pointer */
  160         u_int   xf_flag;        /* flags (see fcntl.h) */
  161 };
  162 
  163 #ifdef _KERNEL
  164 
  165 #ifdef MALLOC_DECLARE
  166 MALLOC_DECLARE(M_FILE);
  167 #endif
  168 
  169 LIST_HEAD(filelist, file);
  170 extern struct filelist filehead; /* (fl) head of list of open files */
  171 extern struct fileops vnops;
  172 extern struct fileops badfileops;
  173 extern struct fileops socketops;
  174 extern int maxfiles;            /* kernel limit on number of open files */
  175 extern int maxfilesperproc;     /* per process limit on number of open files */
  176 extern int openfiles;           /* (fl) actual number of open files */
  177 extern struct sx filelist_lock; /* sx to protect filelist and openfiles */
  178 
  179 int fget(struct thread *td, int fd, struct file **fpp);
  180 int fget_read(struct thread *td, int fd, struct file **fpp);
  181 int fget_write(struct thread *td, int fd, struct file **fpp);
  182 int fdrop(struct file *fp, struct thread *td);
  183 
  184 /*
  185  * The socket operations are used a couple of places.
  186  * XXX: This is wrong, they should go through the operations vector for
  187  * XXX: sockets instead of going directly for the individual functions. /phk
  188  */
  189 fo_rdwr_t       soo_read;
  190 fo_rdwr_t       soo_write;
  191 fo_ioctl_t      soo_ioctl;
  192 fo_poll_t       soo_poll;
  193 fo_kqfilter_t   soo_kqfilter;
  194 fo_stat_t       soo_stat;
  195 fo_close_t      soo_close;
  196 
  197 /* Lock a file. */
  198 #define FILE_LOCK(f)    mtx_lock((f)->f_mtxp)
  199 #define FILE_UNLOCK(f)  mtx_unlock((f)->f_mtxp)
  200 #define FILE_LOCKED(f)  mtx_owned((f)->f_mtxp)
  201 #define FILE_LOCK_ASSERT(f, type) mtx_assert((f)->f_mtxp, (type))
  202 
  203 int fgetvp(struct thread *td, int fd, struct vnode **vpp);
  204 int fgetvp_read(struct thread *td, int fd, struct vnode **vpp);
  205 int fgetvp_write(struct thread *td, int fd, struct vnode **vpp);
  206 
  207 int fgetsock(struct thread *td, int fd, struct socket **spp, u_int *fflagp);
  208 void fputsock(struct socket *sp);
  209 
  210 #define fhold_locked(fp)                                                \
  211         do {                                                            \
  212                 FILE_LOCK_ASSERT(fp, MA_OWNED);                         \
  213                 (fp)->f_count++;                                        \
  214         } while (0)
  215 
  216 #define fhold(fp)                                                       \
  217         do {                                                            \
  218                 FILE_LOCK(fp);                                          \
  219                 (fp)->f_count++;                                        \
  220                 FILE_UNLOCK(fp);                                        \
  221         } while (0)
  222 
  223 static __inline fo_rdwr_t       fo_read;
  224 static __inline fo_rdwr_t       fo_write;
  225 static __inline fo_ioctl_t      fo_ioctl;
  226 static __inline fo_poll_t       fo_poll;
  227 static __inline fo_kqfilter_t   fo_kqfilter;
  228 static __inline fo_stat_t       fo_stat;
  229 static __inline fo_close_t      fo_close;
  230 
  231 static __inline int
  232 fo_read(fp, uio, active_cred, flags, td)
  233         struct file *fp;
  234         struct uio *uio;
  235         struct ucred *active_cred;
  236         int flags;
  237         struct thread *td;
  238 {
  239 
  240         return ((*fp->f_ops->fo_read)(fp, uio, active_cred, flags, td));
  241 }
  242 
  243 static __inline int
  244 fo_write(fp, uio, active_cred, flags, td)
  245         struct file *fp;
  246         struct uio *uio;
  247         struct ucred *active_cred;
  248         int flags;
  249         struct thread *td;
  250 {
  251 
  252         return ((*fp->f_ops->fo_write)(fp, uio, active_cred, flags, td));
  253 }
  254 
  255 static __inline int
  256 fo_ioctl(fp, com, data, active_cred, td)
  257         struct file *fp;
  258         u_long com;
  259         void *data;
  260         struct ucred *active_cred;
  261         struct thread *td;
  262 {
  263 
  264         return ((*fp->f_ops->fo_ioctl)(fp, com, data, active_cred, td));
  265 }
  266 
  267 static __inline int
  268 fo_poll(fp, events, active_cred, td)
  269         struct file *fp;
  270         int events;
  271         struct ucred *active_cred;
  272         struct thread *td;
  273 {
  274 
  275         return ((*fp->f_ops->fo_poll)(fp, events, active_cred, td));
  276 }
  277 
  278 static __inline int
  279 fo_stat(fp, sb, active_cred, td)
  280         struct file *fp;
  281         struct stat *sb;
  282         struct ucred *active_cred;
  283         struct thread *td;
  284 {
  285 
  286         return ((*fp->f_ops->fo_stat)(fp, sb, active_cred, td));
  287 }
  288 
  289 static __inline int
  290 fo_close(fp, td)
  291         struct file *fp;
  292         struct thread *td;
  293 {
  294 
  295         return ((*fp->f_ops->fo_close)(fp, td));
  296 }
  297 
  298 static __inline int
  299 fo_kqfilter(fp, kn)
  300         struct file *fp;
  301         struct knote *kn;
  302 {
  303 
  304         return ((*fp->f_ops->fo_kqfilter)(fp, kn));
  305 }
  306 
  307 #endif /* _KERNEL */
  308 
  309 #endif /* !SYS_FILE_H */

Cache object: cca8eef98cf59ad31d0ab8f3f9210062


[ 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.