* Make falloc() MPSAFE. filehead (the file list) and nfiles are now
[dragonfly.git] / sys / sys / file.h
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  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)file.h      8.3 (Berkeley) 1/9/95
34  * $FreeBSD: src/sys/sys/file.h,v 1.22.2.7 2002/11/21 23:39:24 sam Exp $
35  * $DragonFly: src/sys/sys/file.h,v 1.20 2006/05/26 02:26:26 dillon Exp $
36  */
37
38 #ifndef _SYS_FILE_H_
39 #define _SYS_FILE_H_
40
41 #ifndef _SYS_TYPES_H_
42 #include <sys/types.h>
43 #endif
44 #ifndef _SYS_FCNTL_H_
45 #include <sys/fcntl.h>
46 #endif
47 #ifndef _SYS_UNISTD_H_
48 #include <sys/unistd.h>
49 #endif
50
51 #if defined(_KERNEL) || defined(_KERNEL_STRUCTURES)
52
53 #ifndef _SYS_QUEUE_H_
54 #include <sys/queue.h>
55 #endif
56 #ifndef _SYS_SPINLOCK_H_
57 #include <sys/spinlock.h>
58 #endif
59
60 struct stat;
61 struct proc;
62 struct thread;
63 struct uio;
64 struct knote;
65 struct file;
66 struct ucred;
67 struct vnode;
68 struct lwkt_port;
69 struct namecache;
70
71 struct  fileops {
72         struct lwkt_port *fo_port;
73         int (*fo_clone)         (struct file *);/* additional work after dup */
74
75         int (*fold_read)        (struct file *fp, struct uio *uio,
76                                  struct ucred *cred, int flags);
77         int (*fold_write)       (struct file *fp, struct uio *uio,
78                                  struct ucred *cred, int flags);
79         int (*fold_ioctl)       (struct file *fp, u_long com, caddr_t data,
80                                  struct ucred *cred);
81         int (*fold_poll)        (struct file *fp, int events,
82                                  struct ucred *cred);
83         int (*fold_kqfilter)    (struct file *fp, struct knote *kn);
84         int (*fold_stat)        (struct file *fp, struct stat *sb,
85                                  struct ucred *cred);
86         int (*fold_close)       (struct file *fp);
87         int (*fold_shutdown)    (struct file *fp, int how);
88 };
89
90 #define FOF_OFFSET      1       /* fo_read(), fo_write() flags */
91
92 /*
93  * Kernel descriptor table - One entry for each open kernel vnode and socket.
94  *
95  * (A) - (filehead_spin) - descriptor subsystems only (kern/kern_descrip.c)
96  * (U) - (unp_spin)      - uipc subsystems only (kern/uipc_usrreq.c)
97  * (ro)- these fields may be read without holding a spinlock as long as you
98  *       have (or know) that the reference to the fp is going to stay put.
99  * ?   - remaining fields have to be spinlocked
100  */
101 struct file {
102         LIST_ENTRY(file) f_list;/* (A) list of active files */
103         short   f_FILLER3;
104         short   f_type;         /* (ro) descriptor type */
105         u_int   f_flag;         /* see fcntl.h */
106         struct  ucred *f_cred;  /* (ro) creds associated with descriptor */
107         struct  fileops *f_ops; /* (ro) operations vector */
108         int     f_seqcount;     /*
109                                  * count of sequential accesses -- cleared
110                                  * by most seek operations.
111                                  */
112         off_t   f_nextoff;      /*
113                                  * offset of next expected read or write
114                                  */
115         off_t   f_offset;
116         void   *f_data;         /* vnode, pipe, socket, or kqueue */
117         int     f_count;        /* reference count */
118         int     f_msgcount;     /* (U) reference count from message queue */
119         struct namecache *f_ncp; /* ncp (required for directories) */
120         struct spinlock f_spin;
121 };
122
123 #define DTYPE_VNODE     1       /* file */
124 #define DTYPE_SOCKET    2       /* communications endpoint */
125 #define DTYPE_PIPE      3       /* pipe */
126 #define DTYPE_FIFO      4       /* fifo (named pipe) */
127 #define DTYPE_KQUEUE    5       /* event queue */
128 #define DTYPE_CRYPTO    6       /* crypto */
129
130 LIST_HEAD(filelist, file);
131
132 #endif
133
134 #ifdef _KERNEL
135
136 #ifdef MALLOC_DECLARE
137 MALLOC_DECLARE(M_FILE);
138 #endif
139
140 extern void fhold(struct file *fp);
141 extern int fdrop (struct file *fp);
142 extern int fp_open(const char *path, int flags, int mode, struct file **fpp);
143 extern int fp_vpopen(struct vnode *vp, int flags, struct file **fpp);
144 extern int fp_pread(struct file *fp, void *buf, size_t nbytes, off_t offset, ssize_t *res);
145 extern int fp_pwrite(struct file *fp, void *buf, size_t nbytes, off_t offset, ssize_t *res);
146 extern int fp_read(struct file *fp, void *buf, size_t nbytes, ssize_t *res, int all);
147 extern int fp_write(struct file *fp, void *buf, size_t nbytes, ssize_t *res);
148 extern int fp_stat(struct file *fp, struct stat *ub);
149 extern int fp_mmap(void *addr, size_t size, int prot, int flags, struct file *fp, off_t pos, void **resp);
150
151 extern int nofo_shutdown(struct file *fp, int how);
152
153 extern int fp_close(struct file *fp);
154 extern int fp_shutdown(struct file *fp, int how);
155
156 extern struct fileops vnode_fileops;
157 extern struct fileops specvnode_fileops;
158 extern struct fileops badfileops;
159 extern int maxfiles;            /* kernel limit on number of open files */
160 extern int maxfilesrootres;     /* descriptors reserved for root use */
161 extern int maxfilesperproc;     /* per process limit on number of open files */
162
163 #endif /* _KERNEL */
164
165 #endif /* !SYS_FILE_H */