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/pipe.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) 1996 John S. Dyson
    3  * 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 immediately at the beginning of the file, without modification,
   10  *    this list of conditions, and the following disclaimer.
   11  * 2. Redistributions in binary form must reproduce the above copyright
   12  *    notice, this list of conditions and the following disclaimer in the
   13  *    documentation and/or other materials provided with the distribution.
   14  * 3. Absolutely no warranty of function or purpose is made by the author
   15  *    John S. Dyson.
   16  * 4. This work was done expressly for inclusion into FreeBSD.  Other use
   17  *    is allowed if this notation is included.
   18  * 5. Modifications may be freely made to this file if the above conditions
   19  *    are met.
   20  *
   21  * $FreeBSD: releng/5.2/sys/sys/pipe.h 122524 2003-11-12 03:14:31Z rwatson $
   22  */
   23 
   24 #ifndef _SYS_PIPE_H_
   25 #define _SYS_PIPE_H_
   26 
   27 #ifndef _KERNEL
   28 #include <sys/time.h>                   /* for struct timespec */
   29 #include <sys/selinfo.h>                /* for struct selinfo */
   30 #include <vm/vm.h>                      /* for vm_page_t */
   31 #include <machine/param.h>              /* for PAGE_SIZE */
   32 #endif
   33 
   34 /*
   35  * Pipe buffer size, keep moderate in value, pipes take kva space.
   36  */
   37 #ifndef PIPE_SIZE
   38 #define PIPE_SIZE       16384
   39 #endif
   40 
   41 #ifndef BIG_PIPE_SIZE
   42 #define BIG_PIPE_SIZE   (64*1024)
   43 #endif
   44 
   45 #ifndef SMALL_PIPE_SIZE
   46 #define SMALL_PIPE_SIZE PAGE_SIZE
   47 #endif
   48 
   49 /*
   50  * PIPE_MINDIRECT MUST be smaller than PIPE_SIZE and MUST be bigger
   51  * than PIPE_BUF.
   52  */
   53 #ifndef PIPE_MINDIRECT
   54 #define PIPE_MINDIRECT  8192
   55 #endif
   56 
   57 #define PIPENPAGES      (BIG_PIPE_SIZE / PAGE_SIZE + 1)
   58 
   59 /*
   60  * See sys_pipe.c for info on what these limits mean. 
   61  */
   62 extern int      maxpipekva;
   63 extern int      maxpipekvawired;
   64 
   65 /*
   66  * Pipe buffer information.
   67  * Separate in, out, cnt are used to simplify calculations.
   68  * Buffered write is active when the buffer.cnt field is set.
   69  */
   70 struct pipebuf {
   71         u_int   cnt;            /* number of chars currently in buffer */
   72         u_int   in;             /* in pointer */
   73         u_int   out;            /* out pointer */
   74         u_int   size;           /* size of buffer */
   75         caddr_t buffer;         /* kva of buffer */
   76 };
   77 
   78 /*
   79  * Information to support direct transfers between processes for pipes.
   80  */
   81 struct pipemapping {
   82         vm_offset_t     kva;            /* kernel virtual address */
   83         vm_size_t       cnt;            /* number of chars in buffer */
   84         vm_size_t       pos;            /* current position of transfer */
   85         int             npages;         /* number of pages */
   86         vm_page_t       ms[PIPENPAGES]; /* pages in source process */
   87 };
   88 
   89 /*
   90  * Bits in pipe_state.
   91  */
   92 #define PIPE_ASYNC      0x004   /* Async? I/O. */
   93 #define PIPE_WANTR      0x008   /* Reader wants some characters. */
   94 #define PIPE_WANTW      0x010   /* Writer wants space to put characters. */
   95 #define PIPE_WANT       0x020   /* Pipe is wanted to be run-down. */
   96 #define PIPE_SEL        0x040   /* Pipe has a select active. */
   97 #define PIPE_EOF        0x080   /* Pipe is in EOF condition. */
   98 #define PIPE_LOCKFL     0x100   /* Process has exclusive access to pointers/data. */
   99 #define PIPE_LWANT      0x200   /* Process wants exclusive access to pointers/data. */
  100 #define PIPE_DIRECTW    0x400   /* Pipe direct write active. */
  101 #define PIPE_DIRECTOK   0x800   /* Direct mode ok. */
  102 
  103 /*
  104  * Per-pipe data structure.
  105  * Two of these are linked together to produce bi-directional pipes.
  106  */
  107 struct pipe {
  108         struct  pipebuf pipe_buffer;    /* data storage */
  109         struct  pipemapping pipe_map;   /* pipe mapping for direct I/O */
  110         struct  selinfo pipe_sel;       /* for compat with select */
  111         struct  timespec pipe_atime;    /* time of last access */
  112         struct  timespec pipe_mtime;    /* time of last modify */
  113         struct  timespec pipe_ctime;    /* time of status change */
  114         struct  sigio *pipe_sigio;      /* information for async I/O */
  115         struct  pipe *pipe_peer;        /* link with other direction */
  116         u_int   pipe_state;             /* pipe status info */
  117         int     pipe_busy;              /* busy flag, mostly to handle rundown sanely */
  118         struct  label *pipe_label;      /* pipe MAC label - shared */
  119         struct  mtx *pipe_mtxp;         /* shared mutex between both pipes */
  120 };
  121 
  122 #define PIPE_MTX(pipe)          (pipe)->pipe_mtxp
  123 #define PIPE_LOCK(pipe)         mtx_lock(PIPE_MTX(pipe))
  124 #define PIPE_UNLOCK(pipe)       mtx_unlock(PIPE_MTX(pipe))
  125 #define PIPE_LOCK_ASSERT(pipe, type)  mtx_assert(PIPE_MTX(pipe), (type))
  126 
  127 
  128 #endif /* !_SYS_PIPE_H_ */

Cache object: f6a60d768c2ec8429e7c2654e27c2a4d


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