diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2002-08-23 15:22:52 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2002-08-23 15:22:52 +0000 |
commit | 68e101263a82667655683dd46bc6c302d88352e8 (patch) | |
tree | 4aec9d5d5e5ea8c7b4e8ff2cdfae2c756c6ed227 /share/man/man9 | |
parent | b7401f2f3dfd4097c71494ed417562845ed7bf4a (diff) |
Document various file descriptor access functoins in the kernel.
Diffstat (limited to 'share/man/man9')
-rw-r--r-- | share/man/man9/Makefile | 6 | ||||
-rw-r--r-- | share/man/man9/file.9 | 118 |
2 files changed, 122 insertions, 2 deletions
diff --git a/share/man/man9/Makefile b/share/man/man9/Makefile index 32dba34a086..513cfc0f4c9 100644 --- a/share/man/man9/Makefile +++ b/share/man/man9/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.54 2002/08/16 17:51:44 jason Exp $ +# $OpenBSD: Makefile,v 1.55 2002/08/23 15:22:51 art Exp $ # $NetBSD: Makefile,v 1.4 1996/01/09 03:23:01 thorpej Exp $ # Makefile for section 9 (kernel function and variable) manual pages. @@ -6,7 +6,7 @@ MAN= altq.9 audio.9 boot.9 bus_dma.9 bus_space.9 copy.9 crypto.9 ctxsw.9 \ disk.9 disklabel.9 \ dohooks.9 dopowerhooks.9 doshutdownhooks.9 dostartuphooks.9 \ - extattr.9 \ + extattr.9 file.9 \ fetch.9 fork1.9 extent.9 getdevvp.9 getnewvnode.9 hash.9 hashinit.9 \ hardclock.9 hook_establish.9 hz.9 hzto.9 intro.9 inittodr.9 log.9 \ kthread.9 lock.9 malloc.9 mbuf.9 mbuf_tags.9 md5.9 microtime.9 \ @@ -86,6 +86,8 @@ MLINKS+=extent.9 extent_create.9 extent.9 extent_destroy.9 \ extent.9 extent_free.9 extent.9 extent_print.9 MLINKS+=fetch.9 fubyte.9 fetch.9 fuibyte.9 fetch.9 fusword.9 \ fetch.9 fuswintr.9 fetch.9 fuword.9 fetch.9 fuiword.9 +MLINKS+=file.9 falloc.9 file.9 fdrelease.9 file.9 FREF.9 file.9 FRELE.9 \ + file.9 fd_getfile.9 file.9 getvnode.9 file.9 getsock.9 MLINKS+=hook_establish.9 hook_disestablish.9 MLINKS+=hz.9 tick.9 hz.9 tickadj.9 hz.9 stathz.9 hz.9 profhz.9 MLINKS+=kthread.9 kthread_create.9 kthread.9 kthread_exit.9 \ diff --git a/share/man/man9/file.9 b/share/man/man9/file.9 new file mode 100644 index 00000000000..e382e25f0a8 --- /dev/null +++ b/share/man/man9/file.9 @@ -0,0 +1,118 @@ +.\" $OpenBSD: file.9,v 1.1 2002/08/23 15:22:51 art Exp $ +.\" +.\" Copyright (c) 2002 Artur Grabowski <art@openbsd.org> +.\" All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. The name of the author may not be used to endorse or promote products +.\" derived from this software without specific prior written permission +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, +.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +.\" +.Dd August 23, 2002 +.Dt FILE 9 +.Os +.Sh NAME +.Nm vnode +.Nd an overview of file descriptor handling +.Sh SYNOPSIS +.Fd #include <sys/file.h> +.Fd #include <sys/filedesc.h> +.Ft int +.Fn falloc "struct proc *p" "struct file **fesultfp" "int *resultfd" +.Ft int +.Fn fdrelease "struct proc *p" "int fd" +.Ft void +.Fn FREF "struct file *fp" +.Ft void +.Fn FRELE "struct file *fp" +.Ft struct file * +.Fn fd_getfile "struct filedesc *fdp" "int fd" +.Ft int +.Fn getvnode "struct filedesc *fdp" "int fd" "struct file **fpp" +.Ft int +.Fn getsock "struct filedesc *fdp" "int fd" "struct file **fpp" +.Sh DESCRIPTION +These functions provide the interface for the UNIX file descriptors. +File descriptors can be used to access vnodes (see +.Xr vnode 9 ), +sockets (see +.Xr socket 2 ), +pipes (see +.Xr pipe 2 ), +kqueues (see +.Xr kqueue 2 ), +and various special purpose communication endpoints. +.Sh +A new file descriptor is allocated with the function +.Fn falloc +and +freed with +.Fn fdrelease . +.Fn falloc +and +.Fn fdrelease +deal with allocating and freeing slots in the file descriptor table +expanding the table when necessary and intializing the descriptor. +It's possible to do those things in smaller steps, but it's not +recommended to make complicated kernel APIs that require it. +.Pp +The files are extracted from the file descriptor table using the +functions +.Fn fd_getfile , +.Fn getvnode +and +.Fn getsock . +.Fn fd_getfile +performs all necessary checks to see if the file descriptor number is +within the range of file descriptor table, and if the descriptor is +valid. +.Fn getsock +and +.Fn getvnode +are special cases that besides doing +.Fn fd_getfile +also check if the descriptor is a vnode or socket and return the proper +errno on error. +.Sh CONCURRENT ACCESS +Since multiple processes can share the same file descriptor table +it's important that the file is not freed in one process while some +other process is still accessing it. +To solve that problem a special use count is kept with the functions +.Fn FREF +and +.Fn FRELE . +In most cases +.Fn FREF +should be used on a file after it has been extracted +from the file descriptor table and +.Fn FRELE +should be called when the file won't be used anymore. +There are cases when this isn't necessary, but since +.Fn FREF +and +.Fn FRELE +are cheap to use, there is no reason to risk introducing bugs by +not using them. +.Sh SEE ALSO +.Xr vnode 9 +.Sh CODE REFERENCES +The majority of those functions are implmeneted in +.Pa sys/kern/kern_descrip.c . +The function prototypes and the macros are located in +.Pa sys/sys/file.h +and +.Pa sys/sys/filedesc.h . |