]>
Commit | Line | Data |
---|---|---|
91447636 A |
1 | /* |
2 | * Copyright (c) 2004-2005 Apple Computer, Inc. All rights reserved. | |
3 | * | |
2d21ac55 | 4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
91447636 | 5 | * |
2d21ac55 A |
6 | * This file contains Original Code and/or Modifications of Original Code |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. The rights granted to you under the License | |
10 | * may not be used to create, or enable the creation or redistribution of, | |
11 | * unlawful or unlicensed copies of an Apple operating system, or to | |
12 | * circumvent, violate, or enable the circumvention or violation of, any | |
13 | * terms of an Apple operating system software license agreement. | |
8f6c56a5 | 14 | * |
2d21ac55 A |
15 | * Please obtain a copy of the License at |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
17 | * | |
18 | * The Original Code and all software distributed under the License are | |
19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
8f6c56a5 A |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
2d21ac55 A |
22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
23 | * Please see the License for the specific language governing rights and | |
24 | * limitations under the License. | |
8f6c56a5 | 25 | * |
2d21ac55 | 26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ |
91447636 A |
27 | */ |
28 | /* | |
29 | * Copyright (c) 1996 John S. Dyson | |
30 | * All rights reserved. | |
31 | * | |
32 | * Redistribution and use in source and binary forms, with or without | |
33 | * modification, are permitted provided that the following conditions | |
34 | * are met: | |
35 | * 1. Redistributions of source code must retain the above copyright | |
36 | * notice immediately at the beginning of the file, without modification, | |
37 | * this list of conditions, and the following disclaimer. | |
38 | * 2. Redistributions in binary form must reproduce the above copyright | |
39 | * notice, this list of conditions and the following disclaimer in the | |
40 | * documentation and/or other materials provided with the distribution. | |
41 | * 3. Absolutely no warranty of function or purpose is made by the author | |
42 | * John S. Dyson. | |
43 | * 4. This work was done expressly for inclusion into FreeBSD. Other use | |
44 | * is allowed if this notation is included. | |
45 | * 5. Modifications may be freely made to this file if the above conditions | |
46 | * are met. | |
47 | * | |
48 | * $FreeBSD: src/sys/sys/pipe.h,v 1.24 2003/08/13 20:01:38 alc Exp $ | |
49 | */ | |
2d21ac55 A |
50 | /* |
51 | * NOTICE: This file was modified by SPARTA, Inc. in 2006 to introduce | |
52 | * support for mandatory and extensible security protections. This notice | |
53 | * is included in support of clause 2.2 (b) of the Apple Public License, | |
54 | * Version 2.0. | |
55 | */ | |
91447636 A |
56 | |
57 | #ifndef _SYS_PIPE_H_ | |
58 | #define _SYS_PIPE_H_ | |
59 | ||
60 | #ifdef KERNEL | |
61 | #include <libkern/locks.h> | |
62 | #endif | |
63 | #include <sys/queue.h> /* for TAILQ macros */ | |
64 | #include <sys/ev.h> | |
65 | #include <sys/cdefs.h> | |
66 | ||
67 | /* | |
68 | * Pipe buffer size, keep moderate in value, pipes take kva space. | |
69 | */ | |
70 | #ifndef PIPE_SIZE | |
71 | #define PIPE_SIZE 16384 | |
72 | #endif | |
73 | ||
74 | #ifndef BIG_PIPE_SIZE | |
75 | #define BIG_PIPE_SIZE (64*1024) | |
76 | #endif | |
77 | ||
78 | #ifndef SMALL_PIPE_SIZE | |
79 | #define SMALL_PIPE_SIZE PAGE_SIZE | |
80 | #endif | |
81 | ||
82 | /* | |
83 | * PIPE_MINDIRECT MUST be smaller than PIPE_SIZE and MUST be bigger | |
84 | * than PIPE_BUF. | |
85 | */ | |
86 | #ifndef PIPE_MINDIRECT | |
87 | #define PIPE_MINDIRECT 8192 | |
88 | #endif | |
89 | ||
90 | #define PIPENPAGES (BIG_PIPE_SIZE / PAGE_SIZE + 1) | |
91 | ||
92 | /* | |
93 | * Pipe buffer information. | |
94 | * Separate in, out, cnt are used to simplify calculations. | |
95 | * Buffered write is active when the buffer.cnt field is set. | |
96 | */ | |
97 | struct pipebuf { | |
98 | u_int cnt; /* number of chars currently in buffer */ | |
99 | u_int in; /* in pointer */ | |
100 | u_int out; /* out pointer */ | |
101 | u_int size; /* size of buffer */ | |
102 | caddr_t buffer; /* kva of buffer */ | |
103 | }; | |
104 | ||
105 | ||
106 | #ifdef PIPE_DIRECT | |
107 | /* | |
108 | * Information to support direct transfers between processes for pipes. | |
109 | */ | |
91447636 A |
110 | struct pipemapping { |
111 | vm_offset_t kva; /* kernel virtual address */ | |
112 | vm_size_t cnt; /* number of chars in buffer */ | |
113 | vm_size_t pos; /* current position of transfer */ | |
114 | int npages; /* number of pages */ | |
115 | vm_page_t ms[PIPENPAGES]; /* pages in source process */ | |
116 | }; | |
117 | #endif | |
118 | ||
119 | /* | |
120 | * Bits in pipe_state. | |
121 | */ | |
122 | #define PIPE_ASYNC 0x004 /* Async? I/O. */ | |
123 | #define PIPE_WANTR 0x008 /* Reader wants some characters. */ | |
124 | #define PIPE_WANTW 0x010 /* Writer wants space to put characters. */ | |
125 | #define PIPE_WANT 0x020 /* Pipe is wanted to be run-down. */ | |
126 | #define PIPE_SEL 0x040 /* Pipe has a select active. */ | |
127 | #define PIPE_EOF 0x080 /* Pipe is in EOF condition. */ | |
128 | #define PIPE_LOCKFL 0x100 /* Process has exclusive access to pointers/data. */ | |
129 | #define PIPE_LWANT 0x200 /* Process wants exclusive access to pointers/data. */ | |
130 | #define PIPE_DIRECTW 0x400 /* Pipe direct write active. */ | |
131 | #define PIPE_DIRECTOK 0x800 /* Direct mode ok. */ | |
b0d623f7 A |
132 | #define PIPE_KNOTE 0x1000 /* Pipe has kernel events activated */ |
133 | #define PIPE_DRAIN 0x2000 /* Waiting for I/O to drop for a close. Treated like EOF; | |
134 | only separate for easier debugging. */ | |
91447636 A |
135 | |
136 | #ifdef KERNEL | |
2d21ac55 A |
137 | |
138 | struct label; | |
139 | ||
91447636 A |
140 | /* |
141 | * Per-pipe data structure. | |
142 | * Two of these are linked together to produce bi-directional pipes. | |
143 | */ | |
144 | struct pipe { | |
145 | struct pipebuf pipe_buffer; /* data storage */ | |
146 | #ifdef PIPE_DIRECT | |
147 | struct pipemapping pipe_map; /* pipe mapping for direct I/O */ | |
148 | #endif | |
149 | struct selinfo pipe_sel; /* for compat with select */ | |
150 | pid_t pipe_pgid; /* information for async I/O */ | |
151 | struct pipe *pipe_peer; /* link with other direction */ | |
152 | u_int pipe_state; /* pipe status info */ | |
153 | int pipe_busy; /* busy flag, mostly to handle rundown sanely */ | |
91447636 A |
154 | TAILQ_HEAD(,eventqelt) pipe_evlist; |
155 | lck_mtx_t *pipe_mtxp; /* shared mutex between both pipes */ | |
2d21ac55 A |
156 | struct timespec st_atimespec; /* time of last access */ |
157 | struct timespec st_mtimespec; /* time of last data modification */ | |
158 | struct timespec st_ctimespec; /* time of last status change */ | |
159 | struct label *pipe_label; /* pipe MAC label - shared */ | |
91447636 A |
160 | }; |
161 | ||
162 | #define PIPE_MTX(pipe) ((pipe)->pipe_mtxp) | |
163 | ||
164 | #define PIPE_LOCK(pipe) lck_mtx_lock(PIPE_MTX(pipe)) | |
165 | #define PIPE_UNLOCK(pipe) lck_mtx_unlock(PIPE_MTX(pipe)) | |
166 | #define PIPE_LOCK_ASSERT(pipe, type) lck_mtx_assert(PIPE_MTX(pipe), (type)) | |
167 | ||
168 | __BEGIN_DECLS | |
2d21ac55 A |
169 | void pipeinit(void); |
170 | extern int pipe_stat(struct pipe *, void *, int); | |
91447636 A |
171 | __END_DECLS |
172 | ||
173 | #endif /* KERNEL */ | |
174 | ||
175 | #endif /* !_SYS_PIPE_H_ */ |