sys_pipe.c revision 1.102 1 1.102 rmind /* $NetBSD: sys_pipe.c,v 1.102 2008/09/06 23:05:52 rmind Exp $ */
2 1.35 pk
3 1.35 pk /*-
4 1.95 ad * Copyright (c) 2003, 2007, 2008 The NetBSD Foundation, Inc.
5 1.35 pk * All rights reserved.
6 1.35 pk *
7 1.35 pk * This code is derived from software contributed to The NetBSD Foundation
8 1.80 ad * by Paul Kranenburg, and by Andrew Doran.
9 1.35 pk *
10 1.35 pk * Redistribution and use in source and binary forms, with or without
11 1.35 pk * modification, are permitted provided that the following conditions
12 1.35 pk * are met:
13 1.35 pk * 1. Redistributions of source code must retain the above copyright
14 1.35 pk * notice, this list of conditions and the following disclaimer.
15 1.35 pk * 2. Redistributions in binary form must reproduce the above copyright
16 1.35 pk * notice, this list of conditions and the following disclaimer in the
17 1.35 pk * documentation and/or other materials provided with the distribution.
18 1.35 pk *
19 1.35 pk * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.35 pk * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.35 pk * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.35 pk * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.35 pk * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.35 pk * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.35 pk * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.35 pk * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.35 pk * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.35 pk * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.35 pk * POSSIBILITY OF SUCH DAMAGE.
30 1.35 pk */
31 1.2 jdolecek
32 1.1 jdolecek /*
33 1.1 jdolecek * Copyright (c) 1996 John S. Dyson
34 1.1 jdolecek * All rights reserved.
35 1.1 jdolecek *
36 1.1 jdolecek * Redistribution and use in source and binary forms, with or without
37 1.1 jdolecek * modification, are permitted provided that the following conditions
38 1.1 jdolecek * are met:
39 1.1 jdolecek * 1. Redistributions of source code must retain the above copyright
40 1.1 jdolecek * notice immediately at the beginning of the file, without modification,
41 1.1 jdolecek * this list of conditions, and the following disclaimer.
42 1.1 jdolecek * 2. Redistributions in binary form must reproduce the above copyright
43 1.1 jdolecek * notice, this list of conditions and the following disclaimer in the
44 1.1 jdolecek * documentation and/or other materials provided with the distribution.
45 1.1 jdolecek * 3. Absolutely no warranty of function or purpose is made by the author
46 1.1 jdolecek * John S. Dyson.
47 1.1 jdolecek * 4. Modifications may be freely made to this file if the above conditions
48 1.1 jdolecek * are met.
49 1.1 jdolecek *
50 1.24 jdolecek * $FreeBSD: src/sys/kern/sys_pipe.c,v 1.95 2002/03/09 22:06:31 alfred Exp $
51 1.1 jdolecek */
52 1.1 jdolecek
53 1.1 jdolecek /*
54 1.1 jdolecek * This file contains a high-performance replacement for the socket-based
55 1.1 jdolecek * pipes scheme originally used in FreeBSD/4.4Lite. It does not support
56 1.1 jdolecek * all features of sockets, but does do everything that pipes normally
57 1.1 jdolecek * do.
58 1.2 jdolecek *
59 1.2 jdolecek * Adaption for NetBSD UVM, including uvm_loan() based direct write, was
60 1.2 jdolecek * written by Jaromir Dolecek.
61 1.1 jdolecek */
62 1.1 jdolecek
63 1.1 jdolecek /*
64 1.1 jdolecek * This code has two modes of operation, a small write mode and a large
65 1.1 jdolecek * write mode. The small write mode acts like conventional pipes with
66 1.1 jdolecek * a kernel buffer. If the buffer is less than PIPE_MINDIRECT, then the
67 1.1 jdolecek * "normal" pipe buffering is done. If the buffer is between PIPE_MINDIRECT
68 1.35 pk * and PIPE_SIZE in size it is mapped read-only into the kernel address space
69 1.35 pk * using the UVM page loan facility from where the receiving process can copy
70 1.35 pk * the data directly from the pages in the sending process.
71 1.1 jdolecek *
72 1.1 jdolecek * The constant PIPE_MINDIRECT is chosen to make sure that buffering will
73 1.1 jdolecek * happen for small transfers so that the system will not spend all of
74 1.1 jdolecek * its time context switching. PIPE_SIZE is constrained by the
75 1.1 jdolecek * amount of kernel virtual memory.
76 1.1 jdolecek */
77 1.19 lukem
78 1.19 lukem #include <sys/cdefs.h>
79 1.102 rmind __KERNEL_RCSID(0, "$NetBSD: sys_pipe.c,v 1.102 2008/09/06 23:05:52 rmind Exp $");
80 1.2 jdolecek
81 1.1 jdolecek #include <sys/param.h>
82 1.1 jdolecek #include <sys/systm.h>
83 1.2 jdolecek #include <sys/proc.h>
84 1.1 jdolecek #include <sys/fcntl.h>
85 1.1 jdolecek #include <sys/file.h>
86 1.1 jdolecek #include <sys/filedesc.h>
87 1.1 jdolecek #include <sys/filio.h>
88 1.24 jdolecek #include <sys/kernel.h>
89 1.1 jdolecek #include <sys/ttycom.h>
90 1.1 jdolecek #include <sys/stat.h>
91 1.1 jdolecek #include <sys/poll.h>
92 1.2 jdolecek #include <sys/signalvar.h>
93 1.2 jdolecek #include <sys/vnode.h>
94 1.2 jdolecek #include <sys/uio.h>
95 1.2 jdolecek #include <sys/select.h>
96 1.2 jdolecek #include <sys/mount.h>
97 1.2 jdolecek #include <sys/syscallargs.h>
98 1.2 jdolecek #include <sys/sysctl.h>
99 1.72 elad #include <sys/kauth.h>
100 1.90 ad #include <sys/atomic.h>
101 1.90 ad #include <sys/pipe.h>
102 1.2 jdolecek
103 1.90 ad #include <uvm/uvm.h>
104 1.1 jdolecek
105 1.17 jdolecek /*
106 1.1 jdolecek * Use this define if you want to disable *fancy* VM things. Expect an
107 1.35 pk * approx 30% decrease in transfer rate.
108 1.1 jdolecek */
109 1.1 jdolecek /* #define PIPE_NODIRECT */
110 1.1 jdolecek
111 1.1 jdolecek /*
112 1.1 jdolecek * interfaces to the outside world
113 1.1 jdolecek */
114 1.63 perry static int pipe_read(struct file *fp, off_t *offset, struct uio *uio,
115 1.72 elad kauth_cred_t cred, int flags);
116 1.63 perry static int pipe_write(struct file *fp, off_t *offset, struct uio *uio,
117 1.72 elad kauth_cred_t cred, int flags);
118 1.99 ad static int pipe_close(struct file *fp);
119 1.99 ad static int pipe_poll(struct file *fp, int events);
120 1.27 jdolecek static int pipe_kqfilter(struct file *fp, struct knote *kn);
121 1.99 ad static int pipe_stat(struct file *fp, struct stat *sb);
122 1.99 ad static int pipe_ioctl(struct file *fp, u_long cmd, void *data);
123 1.1 jdolecek
124 1.62 christos static const struct fileops pipeops = {
125 1.62 christos pipe_read, pipe_write, pipe_ioctl, fnullop_fcntl, pipe_poll,
126 1.35 pk pipe_stat, pipe_close, pipe_kqfilter
127 1.35 pk };
128 1.1 jdolecek
129 1.1 jdolecek /*
130 1.90 ad * Single mutex shared between both ends of the pipe.
131 1.90 ad */
132 1.90 ad
133 1.90 ad struct pipe_mutex {
134 1.90 ad kmutex_t pm_mutex;
135 1.90 ad u_int pm_refcnt;
136 1.90 ad };
137 1.90 ad
138 1.90 ad /*
139 1.1 jdolecek * Default pipe buffer size(s), this can be kind-of large now because pipe
140 1.1 jdolecek * space is pageable. The pipe code will try to maintain locality of
141 1.1 jdolecek * reference for performance reasons, so small amounts of outstanding I/O
142 1.1 jdolecek * will not wipe the cache.
143 1.1 jdolecek */
144 1.1 jdolecek #define MINPIPESIZE (PIPE_SIZE/3)
145 1.1 jdolecek #define MAXPIPESIZE (2*PIPE_SIZE/3)
146 1.1 jdolecek
147 1.1 jdolecek /*
148 1.1 jdolecek * Maximum amount of kva for pipes -- this is kind-of a soft limit, but
149 1.1 jdolecek * is there so that on large systems, we don't exhaust it.
150 1.1 jdolecek */
151 1.1 jdolecek #define MAXPIPEKVA (8*1024*1024)
152 1.90 ad static u_int maxpipekva = MAXPIPEKVA;
153 1.1 jdolecek
154 1.1 jdolecek /*
155 1.1 jdolecek * Limit for direct transfers, we cannot, of course limit
156 1.1 jdolecek * the amount of kva for pipes in general though.
157 1.1 jdolecek */
158 1.1 jdolecek #define LIMITPIPEKVA (16*1024*1024)
159 1.90 ad static u_int limitpipekva = LIMITPIPEKVA;
160 1.1 jdolecek
161 1.1 jdolecek /*
162 1.1 jdolecek * Limit the number of "big" pipes
163 1.1 jdolecek */
164 1.2 jdolecek #define LIMITBIGPIPES 32
165 1.90 ad static u_int maxbigpipes = LIMITBIGPIPES;
166 1.90 ad static u_int nbigpipe = 0;
167 1.1 jdolecek
168 1.2 jdolecek /*
169 1.2 jdolecek * Amount of KVA consumed by pipe buffers.
170 1.2 jdolecek */
171 1.90 ad static u_int amountpipekva = 0;
172 1.34 thorpej
173 1.34 thorpej MALLOC_DEFINE(M_PIPE, "pipe", "Pipe structures");
174 1.1 jdolecek
175 1.42 christos static void pipeclose(struct file *fp, struct pipe *pipe);
176 1.35 pk static void pipe_free_kmem(struct pipe *pipe);
177 1.90 ad static int pipe_create(struct pipe **pipep, int allockva, struct pipe_mutex *);
178 1.35 pk static int pipelock(struct pipe *pipe, int catch);
179 1.70 perry static inline void pipeunlock(struct pipe *pipe);
180 1.66 christos static void pipeselwakeup(struct pipe *pipe, struct pipe *sigp, int code);
181 1.1 jdolecek #ifndef PIPE_NODIRECT
182 1.42 christos static int pipe_direct_write(struct file *fp, struct pipe *wpipe,
183 1.42 christos struct uio *uio);
184 1.1 jdolecek #endif
185 1.35 pk static int pipespace(struct pipe *pipe, int size);
186 1.2 jdolecek
187 1.2 jdolecek #ifndef PIPE_NODIRECT
188 1.24 jdolecek static int pipe_loan_alloc(struct pipe *, int);
189 1.24 jdolecek static void pipe_loan_free(struct pipe *);
190 1.2 jdolecek #endif /* PIPE_NODIRECT */
191 1.2 jdolecek
192 1.90 ad static int pipe_mutex_ctor(void *, void *, int);
193 1.90 ad static void pipe_mutex_dtor(void *, void *);
194 1.90 ad
195 1.87 ad static pool_cache_t pipe_cache;
196 1.90 ad static pool_cache_t pipe_mutex_cache;
197 1.82 ad
198 1.82 ad void
199 1.82 ad pipe_init(void)
200 1.82 ad {
201 1.82 ad
202 1.87 ad pipe_cache = pool_cache_init(sizeof(struct pipe), 0, 0, 0, "pipepl",
203 1.87 ad NULL, IPL_NONE, NULL, NULL, NULL);
204 1.87 ad KASSERT(pipe_cache != NULL);
205 1.90 ad
206 1.100 ad pipe_mutex_cache = pool_cache_init(sizeof(struct pipe_mutex),
207 1.100 ad coherency_unit, 0, 0, "pipemtxpl", NULL, IPL_NONE, pipe_mutex_ctor,
208 1.90 ad pipe_mutex_dtor, NULL);
209 1.90 ad KASSERT(pipe_cache != NULL);
210 1.90 ad }
211 1.90 ad
212 1.90 ad static int
213 1.90 ad pipe_mutex_ctor(void *arg, void *obj, int flag)
214 1.90 ad {
215 1.90 ad struct pipe_mutex *pm = obj;
216 1.90 ad
217 1.90 ad mutex_init(&pm->pm_mutex, MUTEX_DEFAULT, IPL_NONE);
218 1.90 ad pm->pm_refcnt = 0;
219 1.90 ad
220 1.90 ad return 0;
221 1.90 ad }
222 1.90 ad
223 1.90 ad static void
224 1.90 ad pipe_mutex_dtor(void *arg, void *obj)
225 1.90 ad {
226 1.90 ad struct pipe_mutex *pm = obj;
227 1.90 ad
228 1.90 ad KASSERT(pm->pm_refcnt == 0);
229 1.90 ad
230 1.90 ad mutex_destroy(&pm->pm_mutex);
231 1.82 ad }
232 1.82 ad
233 1.1 jdolecek /*
234 1.1 jdolecek * The pipe system call for the DTYPE_PIPE type of pipes
235 1.1 jdolecek */
236 1.1 jdolecek
237 1.1 jdolecek /* ARGSUSED */
238 1.2 jdolecek int
239 1.89 dsl sys_pipe(struct lwp *l, const void *v, register_t *retval)
240 1.1 jdolecek {
241 1.1 jdolecek struct file *rf, *wf;
242 1.53 dsl struct pipe *rpipe, *wpipe;
243 1.90 ad struct pipe_mutex *mutex;
244 1.1 jdolecek int fd, error;
245 1.99 ad proc_t *p;
246 1.2 jdolecek
247 1.99 ad p = curproc;
248 1.6 jdolecek rpipe = wpipe = NULL;
249 1.90 ad mutex = pool_cache_get(pipe_mutex_cache, PR_WAITOK);
250 1.90 ad if (mutex == NULL)
251 1.90 ad return (ENOMEM);
252 1.90 ad if (pipe_create(&rpipe, 1, mutex) || pipe_create(&wpipe, 0, mutex)) {
253 1.42 christos pipeclose(NULL, rpipe);
254 1.42 christos pipeclose(NULL, wpipe);
255 1.6 jdolecek return (ENFILE);
256 1.6 jdolecek }
257 1.6 jdolecek
258 1.99 ad error = fd_allocfile(&rf, &fd);
259 1.2 jdolecek if (error)
260 1.2 jdolecek goto free2;
261 1.2 jdolecek retval[0] = fd;
262 1.2 jdolecek rf->f_flag = FREAD;
263 1.2 jdolecek rf->f_type = DTYPE_PIPE;
264 1.79 christos rf->f_data = (void *)rpipe;
265 1.2 jdolecek rf->f_ops = &pipeops;
266 1.2 jdolecek
267 1.99 ad error = fd_allocfile(&wf, &fd);
268 1.2 jdolecek if (error)
269 1.2 jdolecek goto free3;
270 1.2 jdolecek retval[1] = fd;
271 1.2 jdolecek wf->f_flag = FWRITE;
272 1.2 jdolecek wf->f_type = DTYPE_PIPE;
273 1.79 christos wf->f_data = (void *)wpipe;
274 1.2 jdolecek wf->f_ops = &pipeops;
275 1.2 jdolecek
276 1.2 jdolecek rpipe->pipe_peer = wpipe;
277 1.2 jdolecek wpipe->pipe_peer = rpipe;
278 1.1 jdolecek
279 1.99 ad fd_affix(p, rf, (int)retval[0]);
280 1.99 ad fd_affix(p, wf, (int)retval[1]);
281 1.1 jdolecek return (0);
282 1.2 jdolecek free3:
283 1.99 ad fd_abort(p, rf, (int)retval[0]);
284 1.2 jdolecek free2:
285 1.42 christos pipeclose(NULL, wpipe);
286 1.42 christos pipeclose(NULL, rpipe);
287 1.2 jdolecek
288 1.2 jdolecek return (error);
289 1.1 jdolecek }
290 1.1 jdolecek
291 1.1 jdolecek /*
292 1.1 jdolecek * Allocate kva for pipe circular buffer, the space is pageable
293 1.1 jdolecek * This routine will 'realloc' the size of a pipe safely, if it fails
294 1.1 jdolecek * it will retain the old buffer.
295 1.1 jdolecek * If it fails it will return ENOMEM.
296 1.1 jdolecek */
297 1.1 jdolecek static int
298 1.68 thorpej pipespace(struct pipe *pipe, int size)
299 1.1 jdolecek {
300 1.79 christos void *buffer;
301 1.2 jdolecek /*
302 1.35 pk * Allocate pageable virtual address space. Physical memory is
303 1.35 pk * allocated on demand.
304 1.2 jdolecek */
305 1.79 christos buffer = (void *) uvm_km_alloc(kernel_map, round_page(size), 0,
306 1.65 yamt UVM_KMF_PAGEABLE);
307 1.2 jdolecek if (buffer == NULL)
308 1.2 jdolecek return (ENOMEM);
309 1.1 jdolecek
310 1.1 jdolecek /* free old resources if we're resizing */
311 1.35 pk pipe_free_kmem(pipe);
312 1.35 pk pipe->pipe_buffer.buffer = buffer;
313 1.35 pk pipe->pipe_buffer.size = size;
314 1.35 pk pipe->pipe_buffer.in = 0;
315 1.35 pk pipe->pipe_buffer.out = 0;
316 1.35 pk pipe->pipe_buffer.cnt = 0;
317 1.90 ad atomic_add_int(&amountpipekva, pipe->pipe_buffer.size);
318 1.1 jdolecek return (0);
319 1.1 jdolecek }
320 1.1 jdolecek
321 1.1 jdolecek /*
322 1.35 pk * Initialize and allocate VM and memory for pipe.
323 1.1 jdolecek */
324 1.1 jdolecek static int
325 1.90 ad pipe_create(struct pipe **pipep, int allockva, struct pipe_mutex *mutex)
326 1.1 jdolecek {
327 1.35 pk struct pipe *pipe;
328 1.1 jdolecek int error;
329 1.1 jdolecek
330 1.87 ad pipe = *pipep = pool_cache_get(pipe_cache, PR_WAITOK);
331 1.90 ad mutex->pm_refcnt++;
332 1.1 jdolecek
333 1.63 perry /* Initialize */
334 1.35 pk memset(pipe, 0, sizeof(struct pipe));
335 1.35 pk pipe->pipe_state = PIPE_SIGNALR;
336 1.1 jdolecek
337 1.73 kardel getmicrotime(&pipe->pipe_ctime);
338 1.35 pk pipe->pipe_atime = pipe->pipe_ctime;
339 1.35 pk pipe->pipe_mtime = pipe->pipe_ctime;
340 1.90 ad pipe->pipe_lock = &mutex->pm_mutex;
341 1.97 yamt cv_init(&pipe->pipe_rcv, "piperd");
342 1.97 yamt cv_init(&pipe->pipe_wcv, "pipewr");
343 1.97 yamt cv_init(&pipe->pipe_draincv, "pipedrain");
344 1.80 ad cv_init(&pipe->pipe_lkcv, "pipelk");
345 1.86 ad selinit(&pipe->pipe_sel);
346 1.1 jdolecek
347 1.53 dsl if (allockva && (error = pipespace(pipe, PIPE_SIZE)))
348 1.53 dsl return (error);
349 1.53 dsl
350 1.1 jdolecek return (0);
351 1.1 jdolecek }
352 1.1 jdolecek
353 1.1 jdolecek
354 1.1 jdolecek /*
355 1.35 pk * Lock a pipe for I/O, blocking other access
356 1.35 pk * Called with pipe spin lock held.
357 1.35 pk * Return with pipe spin lock released on success.
358 1.1 jdolecek */
359 1.35 pk static int
360 1.68 thorpej pipelock(struct pipe *pipe, int catch)
361 1.1 jdolecek {
362 1.80 ad int error;
363 1.1 jdolecek
364 1.90 ad KASSERT(mutex_owned(pipe->pipe_lock));
365 1.35 pk
366 1.67 yamt while (pipe->pipe_state & PIPE_LOCKFL) {
367 1.67 yamt pipe->pipe_state |= PIPE_LWANT;
368 1.80 ad if (catch) {
369 1.90 ad error = cv_wait_sig(&pipe->pipe_lkcv, pipe->pipe_lock);
370 1.80 ad if (error != 0)
371 1.80 ad return error;
372 1.80 ad } else
373 1.90 ad cv_wait(&pipe->pipe_lkcv, pipe->pipe_lock);
374 1.1 jdolecek }
375 1.67 yamt
376 1.67 yamt pipe->pipe_state |= PIPE_LOCKFL;
377 1.67 yamt
378 1.67 yamt return 0;
379 1.1 jdolecek }
380 1.1 jdolecek
381 1.1 jdolecek /*
382 1.1 jdolecek * unlock a pipe I/O lock
383 1.1 jdolecek */
384 1.70 perry static inline void
385 1.68 thorpej pipeunlock(struct pipe *pipe)
386 1.1 jdolecek {
387 1.24 jdolecek
388 1.67 yamt KASSERT(pipe->pipe_state & PIPE_LOCKFL);
389 1.67 yamt
390 1.67 yamt pipe->pipe_state &= ~PIPE_LOCKFL;
391 1.67 yamt if (pipe->pipe_state & PIPE_LWANT) {
392 1.67 yamt pipe->pipe_state &= ~PIPE_LWANT;
393 1.80 ad cv_broadcast(&pipe->pipe_lkcv);
394 1.67 yamt }
395 1.1 jdolecek }
396 1.1 jdolecek
397 1.2 jdolecek /*
398 1.2 jdolecek * Select/poll wakup. This also sends SIGIO to peer connected to
399 1.2 jdolecek * 'sigpipe' side of pipe.
400 1.2 jdolecek */
401 1.35 pk static void
402 1.68 thorpej pipeselwakeup(struct pipe *selp, struct pipe *sigp, int code)
403 1.1 jdolecek {
404 1.43 jdolecek int band;
405 1.27 jdolecek
406 1.43 jdolecek switch (code) {
407 1.42 christos case POLL_IN:
408 1.43 jdolecek band = POLLIN|POLLRDNORM;
409 1.42 christos break;
410 1.42 christos case POLL_OUT:
411 1.43 jdolecek band = POLLOUT|POLLWRNORM;
412 1.42 christos break;
413 1.42 christos case POLL_HUP:
414 1.43 jdolecek band = POLLHUP;
415 1.42 christos break;
416 1.42 christos #if POLL_HUP != POLL_ERR
417 1.42 christos case POLL_ERR:
418 1.43 jdolecek band = POLLERR;
419 1.42 christos break;
420 1.42 christos #endif
421 1.42 christos default:
422 1.45 christos band = 0;
423 1.42 christos #ifdef DIAGNOSTIC
424 1.42 christos printf("bad siginfo code %d in pipe notification.\n", code);
425 1.42 christos #endif
426 1.42 christos break;
427 1.42 christos }
428 1.43 jdolecek
429 1.98 rmind selnotify(&selp->pipe_sel, band, NOTE_SUBMIT);
430 1.98 rmind
431 1.98 rmind if (sigp == NULL || (sigp->pipe_state & PIPE_ASYNC) == 0)
432 1.98 rmind return;
433 1.98 rmind
434 1.44 christos fownsignal(sigp->pipe_pgid, SIGIO, code, band, selp);
435 1.1 jdolecek }
436 1.1 jdolecek
437 1.1 jdolecek /* ARGSUSED */
438 1.2 jdolecek static int
439 1.77 yamt pipe_read(struct file *fp, off_t *offset, struct uio *uio, kauth_cred_t cred,
440 1.77 yamt int flags)
441 1.1 jdolecek {
442 1.1 jdolecek struct pipe *rpipe = (struct pipe *) fp->f_data;
443 1.35 pk struct pipebuf *bp = &rpipe->pipe_buffer;
444 1.95 ad kmutex_t *lock = rpipe->pipe_lock;
445 1.1 jdolecek int error;
446 1.2 jdolecek size_t nread = 0;
447 1.2 jdolecek size_t size;
448 1.2 jdolecek size_t ocnt;
449 1.1 jdolecek
450 1.95 ad mutex_enter(lock);
451 1.1 jdolecek ++rpipe->pipe_busy;
452 1.35 pk ocnt = bp->cnt;
453 1.28 jdolecek
454 1.35 pk again:
455 1.1 jdolecek error = pipelock(rpipe, 1);
456 1.1 jdolecek if (error)
457 1.1 jdolecek goto unlocked_error;
458 1.2 jdolecek
459 1.1 jdolecek while (uio->uio_resid) {
460 1.1 jdolecek /*
461 1.1 jdolecek * normal pipe buffer receive
462 1.1 jdolecek */
463 1.35 pk if (bp->cnt > 0) {
464 1.35 pk size = bp->size - bp->out;
465 1.35 pk if (size > bp->cnt)
466 1.35 pk size = bp->cnt;
467 1.2 jdolecek if (size > uio->uio_resid)
468 1.2 jdolecek size = uio->uio_resid;
469 1.1 jdolecek
470 1.95 ad mutex_exit(lock);
471 1.79 christos error = uiomove((char *)bp->buffer + bp->out, size, uio);
472 1.95 ad mutex_enter(lock);
473 1.1 jdolecek if (error)
474 1.1 jdolecek break;
475 1.1 jdolecek
476 1.35 pk bp->out += size;
477 1.35 pk if (bp->out >= bp->size)
478 1.35 pk bp->out = 0;
479 1.1 jdolecek
480 1.35 pk bp->cnt -= size;
481 1.1 jdolecek
482 1.1 jdolecek /*
483 1.1 jdolecek * If there is no more to read in the pipe, reset
484 1.1 jdolecek * its pointers to the beginning. This improves
485 1.1 jdolecek * cache hit stats.
486 1.1 jdolecek */
487 1.35 pk if (bp->cnt == 0) {
488 1.35 pk bp->in = 0;
489 1.35 pk bp->out = 0;
490 1.1 jdolecek }
491 1.1 jdolecek nread += size;
492 1.85 ad continue;
493 1.85 ad }
494 1.85 ad
495 1.1 jdolecek #ifndef PIPE_NODIRECT
496 1.85 ad if ((rpipe->pipe_state & PIPE_DIRECTR) != 0) {
497 1.35 pk /*
498 1.35 pk * Direct copy, bypassing a kernel buffer.
499 1.35 pk */
500 1.79 christos void * va;
501 1.35 pk
502 1.35 pk KASSERT(rpipe->pipe_state & PIPE_DIRECTW);
503 1.35 pk
504 1.35 pk size = rpipe->pipe_map.cnt;
505 1.2 jdolecek if (size > uio->uio_resid)
506 1.2 jdolecek size = uio->uio_resid;
507 1.1 jdolecek
508 1.79 christos va = (char *)rpipe->pipe_map.kva + rpipe->pipe_map.pos;
509 1.95 ad mutex_exit(lock);
510 1.1 jdolecek error = uiomove(va, size, uio);
511 1.95 ad mutex_enter(lock);
512 1.1 jdolecek if (error)
513 1.1 jdolecek break;
514 1.1 jdolecek nread += size;
515 1.1 jdolecek rpipe->pipe_map.pos += size;
516 1.1 jdolecek rpipe->pipe_map.cnt -= size;
517 1.1 jdolecek if (rpipe->pipe_map.cnt == 0) {
518 1.35 pk rpipe->pipe_state &= ~PIPE_DIRECTR;
519 1.97 yamt cv_broadcast(&rpipe->pipe_wcv);
520 1.1 jdolecek }
521 1.85 ad continue;
522 1.85 ad }
523 1.1 jdolecek #endif
524 1.85 ad /*
525 1.85 ad * Break if some data was read.
526 1.85 ad */
527 1.90 ad if (nread > 0)
528 1.85 ad break;
529 1.1 jdolecek
530 1.85 ad /*
531 1.85 ad * detect EOF condition
532 1.85 ad * read returns 0 on EOF, no need to set error
533 1.85 ad */
534 1.90 ad if (rpipe->pipe_state & PIPE_EOF)
535 1.85 ad break;
536 1.36 pk
537 1.85 ad /*
538 1.85 ad * don't block on non-blocking I/O
539 1.85 ad */
540 1.85 ad if (fp->f_flag & FNONBLOCK) {
541 1.85 ad error = EAGAIN;
542 1.85 ad break;
543 1.85 ad }
544 1.1 jdolecek
545 1.85 ad /*
546 1.85 ad * Unlock the pipe buffer for our remaining processing.
547 1.85 ad * We will either break out with an error or we will
548 1.85 ad * sleep and relock to loop.
549 1.85 ad */
550 1.85 ad pipeunlock(rpipe);
551 1.2 jdolecek
552 1.85 ad /*
553 1.85 ad * Re-check to see if more direct writes are pending.
554 1.85 ad */
555 1.85 ad if ((rpipe->pipe_state & PIPE_DIRECTR) != 0)
556 1.85 ad goto again;
557 1.1 jdolecek
558 1.85 ad /*
559 1.85 ad * We want to read more, wake up select/poll.
560 1.85 ad */
561 1.85 ad pipeselwakeup(rpipe, rpipe->pipe_peer, POLL_IN);
562 1.35 pk
563 1.85 ad /*
564 1.85 ad * If the "write-side" is blocked, wake it up now.
565 1.85 ad */
566 1.97 yamt cv_broadcast(&rpipe->pipe_wcv);
567 1.2 jdolecek
568 1.85 ad /* Now wait until the pipe is filled */
569 1.97 yamt error = cv_wait_sig(&rpipe->pipe_rcv, lock);
570 1.85 ad if (error != 0)
571 1.85 ad goto unlocked_error;
572 1.85 ad goto again;
573 1.1 jdolecek }
574 1.35 pk
575 1.35 pk if (error == 0)
576 1.73 kardel getmicrotime(&rpipe->pipe_atime);
577 1.1 jdolecek pipeunlock(rpipe);
578 1.1 jdolecek
579 1.1 jdolecek unlocked_error:
580 1.1 jdolecek --rpipe->pipe_busy;
581 1.97 yamt if (rpipe->pipe_busy == 0) {
582 1.97 yamt cv_broadcast(&rpipe->pipe_draincv);
583 1.97 yamt }
584 1.97 yamt if (bp->cnt < MINPIPESIZE) {
585 1.97 yamt cv_broadcast(&rpipe->pipe_wcv);
586 1.1 jdolecek }
587 1.1 jdolecek
588 1.2 jdolecek /*
589 1.2 jdolecek * If anything was read off the buffer, signal to the writer it's
590 1.2 jdolecek * possible to write more data. Also send signal if we are here for the
591 1.2 jdolecek * first time after last write.
592 1.2 jdolecek */
593 1.35 pk if ((bp->size - bp->cnt) >= PIPE_BUF
594 1.35 pk && (ocnt != bp->cnt || (rpipe->pipe_state & PIPE_SIGNALR))) {
595 1.66 christos pipeselwakeup(rpipe, rpipe->pipe_peer, POLL_OUT);
596 1.2 jdolecek rpipe->pipe_state &= ~PIPE_SIGNALR;
597 1.2 jdolecek }
598 1.1 jdolecek
599 1.95 ad mutex_exit(lock);
600 1.1 jdolecek return (error);
601 1.1 jdolecek }
602 1.1 jdolecek
603 1.2 jdolecek #ifndef PIPE_NODIRECT
604 1.2 jdolecek /*
605 1.2 jdolecek * Allocate structure for loan transfer.
606 1.2 jdolecek */
607 1.18 chs static int
608 1.68 thorpej pipe_loan_alloc(struct pipe *wpipe, int npages)
609 1.2 jdolecek {
610 1.18 chs vsize_t len;
611 1.18 chs
612 1.18 chs len = (vsize_t)npages << PAGE_SHIFT;
613 1.95 ad atomic_add_int(&amountpipekva, len);
614 1.65 yamt wpipe->pipe_map.kva = uvm_km_alloc(kernel_map, len, 0,
615 1.65 yamt UVM_KMF_VAONLY | UVM_KMF_WAITVA);
616 1.95 ad if (wpipe->pipe_map.kva == 0) {
617 1.95 ad atomic_add_int(&amountpipekva, -len);
618 1.2 jdolecek return (ENOMEM);
619 1.95 ad }
620 1.2 jdolecek
621 1.2 jdolecek wpipe->pipe_map.npages = npages;
622 1.102 rmind wpipe->pipe_map.pgs = kmem_alloc(npages * sizeof(struct vm_page *),
623 1.102 rmind KM_SLEEP);
624 1.2 jdolecek return (0);
625 1.2 jdolecek }
626 1.2 jdolecek
627 1.2 jdolecek /*
628 1.2 jdolecek * Free resources allocated for loan transfer.
629 1.2 jdolecek */
630 1.2 jdolecek static void
631 1.68 thorpej pipe_loan_free(struct pipe *wpipe)
632 1.2 jdolecek {
633 1.18 chs vsize_t len;
634 1.18 chs
635 1.18 chs len = (vsize_t)wpipe->pipe_map.npages << PAGE_SHIFT;
636 1.65 yamt uvm_km_free(kernel_map, wpipe->pipe_map.kva, len, UVM_KMF_VAONLY);
637 1.22 thorpej wpipe->pipe_map.kva = 0;
638 1.90 ad atomic_add_int(&amountpipekva, -len);
639 1.102 rmind kmem_free(wpipe->pipe_map.pgs,
640 1.102 rmind wpipe->pipe_map.npages * sizeof(struct vm_page *));
641 1.18 chs wpipe->pipe_map.pgs = NULL;
642 1.2 jdolecek }
643 1.2 jdolecek
644 1.2 jdolecek /*
645 1.2 jdolecek * NetBSD direct write, using uvm_loan() mechanism.
646 1.2 jdolecek * This implements the pipe buffer write mechanism. Note that only
647 1.2 jdolecek * a direct write OR a normal pipe write can be pending at any given time.
648 1.2 jdolecek * If there are any characters in the pipe buffer, the direct write will
649 1.2 jdolecek * be deferred until the receiving process grabs all of the bytes from
650 1.2 jdolecek * the pipe buffer. Then the direct mapping write is set-up.
651 1.35 pk *
652 1.35 pk * Called with the long-term pipe lock held.
653 1.2 jdolecek */
654 1.18 chs static int
655 1.77 yamt pipe_direct_write(struct file *fp, struct pipe *wpipe, struct uio *uio)
656 1.2 jdolecek {
657 1.5 jdolecek int error, npages, j;
658 1.18 chs struct vm_page **pgs;
659 1.2 jdolecek vaddr_t bbase, kva, base, bend;
660 1.2 jdolecek vsize_t blen, bcnt;
661 1.5 jdolecek voff_t bpos;
662 1.95 ad kmutex_t *lock = wpipe->pipe_lock;
663 1.5 jdolecek
664 1.90 ad KASSERT(mutex_owned(wpipe->pipe_lock));
665 1.35 pk KASSERT(wpipe->pipe_map.cnt == 0);
666 1.2 jdolecek
667 1.95 ad mutex_exit(lock);
668 1.90 ad
669 1.2 jdolecek /*
670 1.14 jdolecek * Handle first PIPE_CHUNK_SIZE bytes of buffer. Deal with buffers
671 1.14 jdolecek * not aligned to PAGE_SIZE.
672 1.5 jdolecek */
673 1.14 jdolecek bbase = (vaddr_t)uio->uio_iov->iov_base;
674 1.5 jdolecek base = trunc_page(bbase);
675 1.14 jdolecek bend = round_page(bbase + uio->uio_iov->iov_len);
676 1.5 jdolecek blen = bend - base;
677 1.5 jdolecek bpos = bbase - base;
678 1.5 jdolecek
679 1.5 jdolecek if (blen > PIPE_DIRECT_CHUNK) {
680 1.5 jdolecek blen = PIPE_DIRECT_CHUNK;
681 1.5 jdolecek bend = base + blen;
682 1.5 jdolecek bcnt = PIPE_DIRECT_CHUNK - bpos;
683 1.18 chs } else {
684 1.14 jdolecek bcnt = uio->uio_iov->iov_len;
685 1.18 chs }
686 1.18 chs npages = blen >> PAGE_SHIFT;
687 1.5 jdolecek
688 1.5 jdolecek /*
689 1.5 jdolecek * Free the old kva if we need more pages than we have
690 1.5 jdolecek * allocated.
691 1.2 jdolecek */
692 1.35 pk if (wpipe->pipe_map.kva != 0 && npages > wpipe->pipe_map.npages)
693 1.5 jdolecek pipe_loan_free(wpipe);
694 1.2 jdolecek
695 1.5 jdolecek /* Allocate new kva. */
696 1.22 thorpej if (wpipe->pipe_map.kva == 0) {
697 1.18 chs error = pipe_loan_alloc(wpipe, npages);
698 1.90 ad if (error) {
699 1.95 ad mutex_enter(lock);
700 1.35 pk return (error);
701 1.90 ad }
702 1.18 chs }
703 1.18 chs
704 1.5 jdolecek /* Loan the write buffer memory from writer process */
705 1.18 chs pgs = wpipe->pipe_map.pgs;
706 1.71 yamt error = uvm_loan(&uio->uio_vmspace->vm_map, base, blen,
707 1.35 pk pgs, UVM_LOAN_TOPAGE);
708 1.18 chs if (error) {
709 1.35 pk pipe_loan_free(wpipe);
710 1.95 ad mutex_enter(lock);
711 1.61 yamt return (ENOMEM); /* so that caller fallback to ordinary write */
712 1.18 chs }
713 1.18 chs
714 1.5 jdolecek /* Enter the loaned pages to kva */
715 1.5 jdolecek kva = wpipe->pipe_map.kva;
716 1.18 chs for (j = 0; j < npages; j++, kva += PAGE_SIZE) {
717 1.18 chs pmap_kenter_pa(kva, VM_PAGE_TO_PHYS(pgs[j]), VM_PROT_READ);
718 1.18 chs }
719 1.12 jdolecek pmap_update(pmap_kernel());
720 1.2 jdolecek
721 1.35 pk /* Now we can put the pipe in direct write mode */
722 1.35 pk wpipe->pipe_map.pos = bpos;
723 1.35 pk wpipe->pipe_map.cnt = bcnt;
724 1.35 pk
725 1.35 pk /*
726 1.85 ad * But before we can let someone do a direct read, we
727 1.85 ad * have to wait until the pipe is drained. Release the
728 1.85 ad * pipe lock while we wait.
729 1.35 pk */
730 1.95 ad mutex_enter(lock);
731 1.85 ad wpipe->pipe_state |= PIPE_DIRECTW;
732 1.35 pk pipeunlock(wpipe);
733 1.35 pk
734 1.35 pk while (error == 0 && wpipe->pipe_buffer.cnt > 0) {
735 1.97 yamt cv_broadcast(&wpipe->pipe_rcv);
736 1.97 yamt error = cv_wait_sig(&wpipe->pipe_wcv, lock);
737 1.35 pk if (error == 0 && wpipe->pipe_state & PIPE_EOF)
738 1.5 jdolecek error = EPIPE;
739 1.35 pk }
740 1.35 pk
741 1.35 pk /* Pipe is drained; next read will off the direct buffer */
742 1.35 pk wpipe->pipe_state |= PIPE_DIRECTR;
743 1.35 pk
744 1.35 pk /* Wait until the reader is done */
745 1.35 pk while (error == 0 && (wpipe->pipe_state & PIPE_DIRECTR)) {
746 1.97 yamt cv_broadcast(&wpipe->pipe_rcv);
747 1.66 christos pipeselwakeup(wpipe, wpipe, POLL_IN);
748 1.97 yamt error = cv_wait_sig(&wpipe->pipe_wcv, lock);
749 1.35 pk if (error == 0 && wpipe->pipe_state & PIPE_EOF)
750 1.35 pk error = EPIPE;
751 1.5 jdolecek }
752 1.5 jdolecek
753 1.35 pk /* Take pipe out of direct write mode */
754 1.35 pk wpipe->pipe_state &= ~(PIPE_DIRECTW | PIPE_DIRECTR);
755 1.2 jdolecek
756 1.35 pk /* Acquire the pipe lock and cleanup */
757 1.35 pk (void)pipelock(wpipe, 0);
758 1.95 ad mutex_exit(lock);
759 1.85 ad
760 1.21 chs if (pgs != NULL) {
761 1.21 chs pmap_kremove(wpipe->pipe_map.kva, blen);
762 1.96 chris pmap_update(pmap_kernel());
763 1.18 chs uvm_unloan(pgs, npages, UVM_LOAN_TOPAGE);
764 1.21 chs }
765 1.5 jdolecek if (error || amountpipekva > maxpipekva)
766 1.5 jdolecek pipe_loan_free(wpipe);
767 1.5 jdolecek
768 1.95 ad mutex_enter(lock);
769 1.15 jdolecek if (error) {
770 1.66 christos pipeselwakeup(wpipe, wpipe, POLL_ERR);
771 1.2 jdolecek
772 1.5 jdolecek /*
773 1.15 jdolecek * If nothing was read from what we offered, return error
774 1.18 chs * straight on. Otherwise update uio resid first. Caller
775 1.15 jdolecek * will deal with the error condition, returning short
776 1.15 jdolecek * write, error, or restarting the write(2) as appropriate.
777 1.5 jdolecek */
778 1.15 jdolecek if (wpipe->pipe_map.cnt == bcnt) {
779 1.35 pk wpipe->pipe_map.cnt = 0;
780 1.97 yamt cv_broadcast(&wpipe->pipe_wcv);
781 1.15 jdolecek return (error);
782 1.2 jdolecek }
783 1.2 jdolecek
784 1.15 jdolecek bcnt -= wpipe->pipe_map.cnt;
785 1.5 jdolecek }
786 1.2 jdolecek
787 1.18 chs uio->uio_resid -= bcnt;
788 1.8 jdolecek /* uio_offset not updated, not set/used for write(2) */
789 1.18 chs uio->uio_iov->iov_base = (char *)uio->uio_iov->iov_base + bcnt;
790 1.14 jdolecek uio->uio_iov->iov_len -= bcnt;
791 1.14 jdolecek if (uio->uio_iov->iov_len == 0) {
792 1.14 jdolecek uio->uio_iov++;
793 1.14 jdolecek uio->uio_iovcnt--;
794 1.14 jdolecek }
795 1.2 jdolecek
796 1.35 pk wpipe->pipe_map.cnt = 0;
797 1.15 jdolecek return (error);
798 1.2 jdolecek }
799 1.2 jdolecek #endif /* !PIPE_NODIRECT */
800 1.2 jdolecek
801 1.2 jdolecek static int
802 1.77 yamt pipe_write(struct file *fp, off_t *offset, struct uio *uio, kauth_cred_t cred,
803 1.77 yamt int flags)
804 1.1 jdolecek {
805 1.1 jdolecek struct pipe *wpipe, *rpipe;
806 1.35 pk struct pipebuf *bp;
807 1.95 ad kmutex_t *lock;
808 1.35 pk int error;
809 1.1 jdolecek
810 1.35 pk /* We want to write to our peer */
811 1.1 jdolecek rpipe = (struct pipe *) fp->f_data;
812 1.95 ad lock = rpipe->pipe_lock;
813 1.90 ad error = 0;
814 1.35 pk
815 1.95 ad mutex_enter(lock);
816 1.1 jdolecek wpipe = rpipe->pipe_peer;
817 1.1 jdolecek
818 1.1 jdolecek /*
819 1.35 pk * Detect loss of pipe read side, issue SIGPIPE if lost.
820 1.1 jdolecek */
821 1.95 ad if (wpipe == NULL || (wpipe->pipe_state & PIPE_EOF) != 0) {
822 1.95 ad mutex_exit(lock);
823 1.90 ad return EPIPE;
824 1.24 jdolecek }
825 1.1 jdolecek ++wpipe->pipe_busy;
826 1.1 jdolecek
827 1.35 pk /* Aquire the long-term pipe lock */
828 1.95 ad if ((error = pipelock(wpipe, 1)) != 0) {
829 1.35 pk --wpipe->pipe_busy;
830 1.93 yamt if (wpipe->pipe_busy == 0) {
831 1.97 yamt cv_broadcast(&wpipe->pipe_draincv);
832 1.35 pk }
833 1.95 ad mutex_exit(lock);
834 1.35 pk return (error);
835 1.35 pk }
836 1.35 pk
837 1.35 pk bp = &wpipe->pipe_buffer;
838 1.35 pk
839 1.1 jdolecek /*
840 1.35 pk * If it is advantageous to resize the pipe buffer, do so.
841 1.1 jdolecek */
842 1.1 jdolecek if ((uio->uio_resid > PIPE_SIZE) &&
843 1.35 pk (nbigpipe < maxbigpipes) &&
844 1.2 jdolecek #ifndef PIPE_NODIRECT
845 1.35 pk (wpipe->pipe_state & PIPE_DIRECTW) == 0 &&
846 1.2 jdolecek #endif
847 1.35 pk (bp->size <= PIPE_SIZE) && (bp->cnt == 0)) {
848 1.1 jdolecek
849 1.35 pk if (pipespace(wpipe, BIG_PIPE_SIZE) == 0)
850 1.90 ad atomic_inc_uint(&nbigpipe);
851 1.24 jdolecek }
852 1.1 jdolecek
853 1.1 jdolecek while (uio->uio_resid) {
854 1.26 thorpej size_t space;
855 1.1 jdolecek
856 1.1 jdolecek #ifndef PIPE_NODIRECT
857 1.1 jdolecek /*
858 1.35 pk * Pipe buffered writes cannot be coincidental with
859 1.35 pk * direct writes. Also, only one direct write can be
860 1.35 pk * in progress at any one time. We wait until the currently
861 1.35 pk * executing direct write is completed before continuing.
862 1.35 pk *
863 1.35 pk * We break out if a signal occurs or the reader goes away.
864 1.35 pk */
865 1.35 pk while (error == 0 && wpipe->pipe_state & PIPE_DIRECTW) {
866 1.97 yamt cv_broadcast(&wpipe->pipe_rcv);
867 1.35 pk pipeunlock(wpipe);
868 1.97 yamt error = cv_wait_sig(&wpipe->pipe_wcv, lock);
869 1.35 pk (void)pipelock(wpipe, 0);
870 1.35 pk if (wpipe->pipe_state & PIPE_EOF)
871 1.35 pk error = EPIPE;
872 1.35 pk }
873 1.35 pk if (error)
874 1.35 pk break;
875 1.35 pk
876 1.35 pk /*
877 1.1 jdolecek * If the transfer is large, we can gain performance if
878 1.1 jdolecek * we do process-to-process copies directly.
879 1.1 jdolecek * If the write is non-blocking, we don't use the
880 1.1 jdolecek * direct write mechanism.
881 1.1 jdolecek *
882 1.1 jdolecek * The direct write mechanism will detect the reader going
883 1.1 jdolecek * away on us.
884 1.1 jdolecek */
885 1.14 jdolecek if ((uio->uio_iov->iov_len >= PIPE_MINDIRECT) &&
886 1.1 jdolecek (fp->f_flag & FNONBLOCK) == 0 &&
887 1.2 jdolecek (wpipe->pipe_map.kva || (amountpipekva < limitpipekva))) {
888 1.42 christos error = pipe_direct_write(fp, wpipe, uio);
889 1.5 jdolecek
890 1.5 jdolecek /*
891 1.49 wiz * Break out if error occurred, unless it's ENOMEM.
892 1.14 jdolecek * ENOMEM means we failed to allocate some resources
893 1.14 jdolecek * for direct write, so we just fallback to ordinary
894 1.14 jdolecek * write. If the direct write was successful,
895 1.14 jdolecek * process rest of data via ordinary write.
896 1.5 jdolecek */
897 1.35 pk if (error == 0)
898 1.14 jdolecek continue;
899 1.14 jdolecek
900 1.5 jdolecek if (error != ENOMEM)
901 1.1 jdolecek break;
902 1.1 jdolecek }
903 1.2 jdolecek #endif /* PIPE_NODIRECT */
904 1.1 jdolecek
905 1.35 pk space = bp->size - bp->cnt;
906 1.1 jdolecek
907 1.1 jdolecek /* Writes of size <= PIPE_BUF must be atomic. */
908 1.14 jdolecek if ((space < uio->uio_resid) && (uio->uio_resid <= PIPE_BUF))
909 1.1 jdolecek space = 0;
910 1.1 jdolecek
911 1.16 mycroft if (space > 0) {
912 1.2 jdolecek int size; /* Transfer size */
913 1.2 jdolecek int segsize; /* first segment to transfer */
914 1.2 jdolecek
915 1.2 jdolecek /*
916 1.2 jdolecek * Transfer size is minimum of uio transfer
917 1.2 jdolecek * and free space in pipe buffer.
918 1.2 jdolecek */
919 1.2 jdolecek if (space > uio->uio_resid)
920 1.2 jdolecek size = uio->uio_resid;
921 1.2 jdolecek else
922 1.2 jdolecek size = space;
923 1.2 jdolecek /*
924 1.63 perry * First segment to transfer is minimum of
925 1.2 jdolecek * transfer size and contiguous space in
926 1.2 jdolecek * pipe buffer. If first segment to transfer
927 1.2 jdolecek * is less than the transfer size, we've got
928 1.2 jdolecek * a wraparound in the buffer.
929 1.2 jdolecek */
930 1.35 pk segsize = bp->size - bp->in;
931 1.2 jdolecek if (segsize > size)
932 1.2 jdolecek segsize = size;
933 1.18 chs
934 1.2 jdolecek /* Transfer first segment */
935 1.95 ad mutex_exit(lock);
936 1.79 christos error = uiomove((char *)bp->buffer + bp->in, segsize,
937 1.79 christos uio);
938 1.18 chs
939 1.2 jdolecek if (error == 0 && segsize < size) {
940 1.63 perry /*
941 1.2 jdolecek * Transfer remaining part now, to
942 1.2 jdolecek * support atomic writes. Wraparound
943 1.2 jdolecek * happened.
944 1.2 jdolecek */
945 1.2 jdolecek #ifdef DEBUG
946 1.35 pk if (bp->in + segsize != bp->size)
947 1.2 jdolecek panic("Expected pipe buffer wraparound disappeared");
948 1.2 jdolecek #endif
949 1.18 chs
950 1.79 christos error = uiomove(bp->buffer,
951 1.79 christos size - segsize, uio);
952 1.2 jdolecek }
953 1.95 ad mutex_enter(lock);
954 1.35 pk if (error)
955 1.35 pk break;
956 1.35 pk
957 1.35 pk bp->in += size;
958 1.35 pk if (bp->in >= bp->size) {
959 1.2 jdolecek #ifdef DEBUG
960 1.35 pk if (bp->in != size - segsize + bp->size)
961 1.35 pk panic("Expected wraparound bad");
962 1.2 jdolecek #endif
963 1.35 pk bp->in = size - segsize;
964 1.35 pk }
965 1.18 chs
966 1.35 pk bp->cnt += size;
967 1.2 jdolecek #ifdef DEBUG
968 1.35 pk if (bp->cnt > bp->size)
969 1.35 pk panic("Pipe buffer overflow");
970 1.2 jdolecek #endif
971 1.1 jdolecek } else {
972 1.1 jdolecek /*
973 1.1 jdolecek * If the "read-side" has been blocked, wake it up now.
974 1.1 jdolecek */
975 1.97 yamt cv_broadcast(&wpipe->pipe_rcv);
976 1.1 jdolecek
977 1.1 jdolecek /*
978 1.1 jdolecek * don't block on non-blocking I/O
979 1.1 jdolecek */
980 1.1 jdolecek if (fp->f_flag & FNONBLOCK) {
981 1.1 jdolecek error = EAGAIN;
982 1.1 jdolecek break;
983 1.1 jdolecek }
984 1.1 jdolecek
985 1.1 jdolecek /*
986 1.1 jdolecek * We have no more space and have something to offer,
987 1.1 jdolecek * wake up select/poll.
988 1.1 jdolecek */
989 1.35 pk if (bp->cnt)
990 1.66 christos pipeselwakeup(wpipe, wpipe, POLL_OUT);
991 1.1 jdolecek
992 1.35 pk pipeunlock(wpipe);
993 1.97 yamt error = cv_wait_sig(&wpipe->pipe_wcv, lock);
994 1.35 pk (void)pipelock(wpipe, 0);
995 1.1 jdolecek if (error != 0)
996 1.1 jdolecek break;
997 1.1 jdolecek /*
998 1.1 jdolecek * If read side wants to go away, we just issue a signal
999 1.1 jdolecek * to ourselves.
1000 1.1 jdolecek */
1001 1.1 jdolecek if (wpipe->pipe_state & PIPE_EOF) {
1002 1.1 jdolecek error = EPIPE;
1003 1.1 jdolecek break;
1004 1.18 chs }
1005 1.1 jdolecek }
1006 1.1 jdolecek }
1007 1.1 jdolecek
1008 1.1 jdolecek --wpipe->pipe_busy;
1009 1.97 yamt if (wpipe->pipe_busy == 0) {
1010 1.97 yamt cv_broadcast(&wpipe->pipe_draincv);
1011 1.97 yamt }
1012 1.97 yamt if (bp->cnt > 0) {
1013 1.97 yamt cv_broadcast(&wpipe->pipe_rcv);
1014 1.1 jdolecek }
1015 1.1 jdolecek
1016 1.1 jdolecek /*
1017 1.1 jdolecek * Don't return EPIPE if I/O was successful
1018 1.1 jdolecek */
1019 1.35 pk if (error == EPIPE && bp->cnt == 0 && uio->uio_resid == 0)
1020 1.1 jdolecek error = 0;
1021 1.1 jdolecek
1022 1.1 jdolecek if (error == 0)
1023 1.73 kardel getmicrotime(&wpipe->pipe_mtime);
1024 1.1 jdolecek
1025 1.1 jdolecek /*
1026 1.2 jdolecek * We have something to offer, wake up select/poll.
1027 1.2 jdolecek * wpipe->pipe_map.cnt is always 0 in this point (direct write
1028 1.14 jdolecek * is only done synchronously), so check only wpipe->pipe_buffer.cnt
1029 1.1 jdolecek */
1030 1.35 pk if (bp->cnt)
1031 1.66 christos pipeselwakeup(wpipe, wpipe, POLL_OUT);
1032 1.1 jdolecek
1033 1.2 jdolecek /*
1034 1.2 jdolecek * Arrange for next read(2) to do a signal.
1035 1.2 jdolecek */
1036 1.2 jdolecek wpipe->pipe_state |= PIPE_SIGNALR;
1037 1.2 jdolecek
1038 1.35 pk pipeunlock(wpipe);
1039 1.95 ad mutex_exit(lock);
1040 1.1 jdolecek return (error);
1041 1.1 jdolecek }
1042 1.1 jdolecek
1043 1.1 jdolecek /*
1044 1.1 jdolecek * we implement a very minimal set of ioctls for compatibility with sockets.
1045 1.1 jdolecek */
1046 1.1 jdolecek int
1047 1.99 ad pipe_ioctl(struct file *fp, u_long cmd, void *data)
1048 1.1 jdolecek {
1049 1.99 ad struct pipe *pipe = fp->f_data;
1050 1.95 ad kmutex_t *lock = pipe->pipe_lock;
1051 1.1 jdolecek
1052 1.1 jdolecek switch (cmd) {
1053 1.1 jdolecek
1054 1.1 jdolecek case FIONBIO:
1055 1.1 jdolecek return (0);
1056 1.1 jdolecek
1057 1.1 jdolecek case FIOASYNC:
1058 1.95 ad mutex_enter(lock);
1059 1.1 jdolecek if (*(int *)data) {
1060 1.35 pk pipe->pipe_state |= PIPE_ASYNC;
1061 1.1 jdolecek } else {
1062 1.35 pk pipe->pipe_state &= ~PIPE_ASYNC;
1063 1.1 jdolecek }
1064 1.95 ad mutex_exit(lock);
1065 1.1 jdolecek return (0);
1066 1.1 jdolecek
1067 1.1 jdolecek case FIONREAD:
1068 1.95 ad mutex_enter(lock);
1069 1.2 jdolecek #ifndef PIPE_NODIRECT
1070 1.35 pk if (pipe->pipe_state & PIPE_DIRECTW)
1071 1.35 pk *(int *)data = pipe->pipe_map.cnt;
1072 1.1 jdolecek else
1073 1.2 jdolecek #endif
1074 1.35 pk *(int *)data = pipe->pipe_buffer.cnt;
1075 1.95 ad mutex_exit(lock);
1076 1.1 jdolecek return (0);
1077 1.1 jdolecek
1078 1.59 wrstuden case FIONWRITE:
1079 1.59 wrstuden /* Look at other side */
1080 1.59 wrstuden pipe = pipe->pipe_peer;
1081 1.95 ad mutex_enter(lock);
1082 1.59 wrstuden #ifndef PIPE_NODIRECT
1083 1.59 wrstuden if (pipe->pipe_state & PIPE_DIRECTW)
1084 1.59 wrstuden *(int *)data = pipe->pipe_map.cnt;
1085 1.59 wrstuden else
1086 1.59 wrstuden #endif
1087 1.59 wrstuden *(int *)data = pipe->pipe_buffer.cnt;
1088 1.95 ad mutex_exit(lock);
1089 1.59 wrstuden return (0);
1090 1.59 wrstuden
1091 1.59 wrstuden case FIONSPACE:
1092 1.59 wrstuden /* Look at other side */
1093 1.59 wrstuden pipe = pipe->pipe_peer;
1094 1.95 ad mutex_enter(lock);
1095 1.59 wrstuden #ifndef PIPE_NODIRECT
1096 1.59 wrstuden /*
1097 1.59 wrstuden * If we're in direct-mode, we don't really have a
1098 1.59 wrstuden * send queue, and any other write will block. Thus
1099 1.59 wrstuden * zero seems like the best answer.
1100 1.59 wrstuden */
1101 1.59 wrstuden if (pipe->pipe_state & PIPE_DIRECTW)
1102 1.59 wrstuden *(int *)data = 0;
1103 1.59 wrstuden else
1104 1.59 wrstuden #endif
1105 1.59 wrstuden *(int *)data = pipe->pipe_buffer.size -
1106 1.82 ad pipe->pipe_buffer.cnt;
1107 1.95 ad mutex_exit(lock);
1108 1.59 wrstuden return (0);
1109 1.59 wrstuden
1110 1.2 jdolecek case TIOCSPGRP:
1111 1.43 jdolecek case FIOSETOWN:
1112 1.99 ad return fsetown(&pipe->pipe_pgid, cmd, data);
1113 1.2 jdolecek
1114 1.2 jdolecek case TIOCGPGRP:
1115 1.43 jdolecek case FIOGETOWN:
1116 1.99 ad return fgetown(pipe->pipe_pgid, cmd, data);
1117 1.1 jdolecek
1118 1.1 jdolecek }
1119 1.25 atatat return (EPASSTHROUGH);
1120 1.1 jdolecek }
1121 1.1 jdolecek
1122 1.1 jdolecek int
1123 1.99 ad pipe_poll(struct file *fp, int events)
1124 1.1 jdolecek {
1125 1.99 ad struct pipe *rpipe = fp->f_data;
1126 1.1 jdolecek struct pipe *wpipe;
1127 1.35 pk int eof = 0;
1128 1.1 jdolecek int revents = 0;
1129 1.1 jdolecek
1130 1.90 ad mutex_enter(rpipe->pipe_lock);
1131 1.1 jdolecek wpipe = rpipe->pipe_peer;
1132 1.35 pk
1133 1.1 jdolecek if (events & (POLLIN | POLLRDNORM))
1134 1.2 jdolecek if ((rpipe->pipe_buffer.cnt > 0) ||
1135 1.2 jdolecek #ifndef PIPE_NODIRECT
1136 1.35 pk (rpipe->pipe_state & PIPE_DIRECTR) ||
1137 1.2 jdolecek #endif
1138 1.1 jdolecek (rpipe->pipe_state & PIPE_EOF))
1139 1.1 jdolecek revents |= events & (POLLIN | POLLRDNORM);
1140 1.1 jdolecek
1141 1.35 pk eof |= (rpipe->pipe_state & PIPE_EOF);
1142 1.35 pk
1143 1.35 pk if (wpipe == NULL)
1144 1.35 pk revents |= events & (POLLOUT | POLLWRNORM);
1145 1.35 pk else {
1146 1.35 pk if (events & (POLLOUT | POLLWRNORM))
1147 1.35 pk if ((wpipe->pipe_state & PIPE_EOF) || (
1148 1.2 jdolecek #ifndef PIPE_NODIRECT
1149 1.35 pk (wpipe->pipe_state & PIPE_DIRECTW) == 0 &&
1150 1.2 jdolecek #endif
1151 1.35 pk (wpipe->pipe_buffer.size - wpipe->pipe_buffer.cnt) >= PIPE_BUF))
1152 1.35 pk revents |= events & (POLLOUT | POLLWRNORM);
1153 1.1 jdolecek
1154 1.35 pk eof |= (wpipe->pipe_state & PIPE_EOF);
1155 1.35 pk }
1156 1.35 pk
1157 1.35 pk if (wpipe == NULL || eof)
1158 1.1 jdolecek revents |= POLLHUP;
1159 1.1 jdolecek
1160 1.1 jdolecek if (revents == 0) {
1161 1.35 pk if (events & (POLLIN | POLLRDNORM))
1162 1.99 ad selrecord(curlwp, &rpipe->pipe_sel);
1163 1.1 jdolecek
1164 1.35 pk if (events & (POLLOUT | POLLWRNORM))
1165 1.99 ad selrecord(curlwp, &wpipe->pipe_sel);
1166 1.1 jdolecek }
1167 1.90 ad mutex_exit(rpipe->pipe_lock);
1168 1.1 jdolecek
1169 1.1 jdolecek return (revents);
1170 1.1 jdolecek }
1171 1.1 jdolecek
1172 1.1 jdolecek static int
1173 1.99 ad pipe_stat(struct file *fp, struct stat *ub)
1174 1.1 jdolecek {
1175 1.99 ad struct pipe *pipe = fp->f_data;
1176 1.1 jdolecek
1177 1.79 christos memset((void *)ub, 0, sizeof(*ub));
1178 1.32 jdolecek ub->st_mode = S_IFIFO | S_IRUSR | S_IWUSR;
1179 1.1 jdolecek ub->st_blksize = pipe->pipe_buffer.size;
1180 1.64 christos if (ub->st_blksize == 0 && pipe->pipe_peer)
1181 1.64 christos ub->st_blksize = pipe->pipe_peer->pipe_buffer.size;
1182 1.1 jdolecek ub->st_size = pipe->pipe_buffer.cnt;
1183 1.2 jdolecek ub->st_blocks = (ub->st_size) ? 1 : 0;
1184 1.60 atatat TIMEVAL_TO_TIMESPEC(&pipe->pipe_atime, &ub->st_atimespec);
1185 1.2 jdolecek TIMEVAL_TO_TIMESPEC(&pipe->pipe_mtime, &ub->st_mtimespec);
1186 1.2 jdolecek TIMEVAL_TO_TIMESPEC(&pipe->pipe_ctime, &ub->st_ctimespec);
1187 1.72 elad ub->st_uid = kauth_cred_geteuid(fp->f_cred);
1188 1.72 elad ub->st_gid = kauth_cred_getegid(fp->f_cred);
1189 1.82 ad
1190 1.1 jdolecek /*
1191 1.1 jdolecek * Left as 0: st_dev, st_ino, st_nlink, st_rdev, st_flags, st_gen.
1192 1.1 jdolecek * XXX (st_dev, st_ino) should be unique.
1193 1.1 jdolecek */
1194 1.1 jdolecek return (0);
1195 1.1 jdolecek }
1196 1.1 jdolecek
1197 1.1 jdolecek /* ARGSUSED */
1198 1.1 jdolecek static int
1199 1.99 ad pipe_close(struct file *fp)
1200 1.1 jdolecek {
1201 1.99 ad struct pipe *pipe = fp->f_data;
1202 1.1 jdolecek
1203 1.1 jdolecek fp->f_data = NULL;
1204 1.42 christos pipeclose(fp, pipe);
1205 1.1 jdolecek return (0);
1206 1.1 jdolecek }
1207 1.1 jdolecek
1208 1.1 jdolecek static void
1209 1.68 thorpej pipe_free_kmem(struct pipe *pipe)
1210 1.1 jdolecek {
1211 1.1 jdolecek
1212 1.35 pk if (pipe->pipe_buffer.buffer != NULL) {
1213 1.35 pk if (pipe->pipe_buffer.size > PIPE_SIZE)
1214 1.90 ad atomic_dec_uint(&nbigpipe);
1215 1.2 jdolecek uvm_km_free(kernel_map,
1216 1.35 pk (vaddr_t)pipe->pipe_buffer.buffer,
1217 1.65 yamt pipe->pipe_buffer.size, UVM_KMF_PAGEABLE);
1218 1.95 ad atomic_add_int(&amountpipekva, -pipe->pipe_buffer.size);
1219 1.35 pk pipe->pipe_buffer.buffer = NULL;
1220 1.1 jdolecek }
1221 1.1 jdolecek #ifndef PIPE_NODIRECT
1222 1.35 pk if (pipe->pipe_map.kva != 0) {
1223 1.35 pk pipe_loan_free(pipe);
1224 1.35 pk pipe->pipe_map.cnt = 0;
1225 1.35 pk pipe->pipe_map.kva = 0;
1226 1.35 pk pipe->pipe_map.pos = 0;
1227 1.35 pk pipe->pipe_map.npages = 0;
1228 1.1 jdolecek }
1229 1.2 jdolecek #endif /* !PIPE_NODIRECT */
1230 1.1 jdolecek }
1231 1.1 jdolecek
1232 1.1 jdolecek /*
1233 1.1 jdolecek * shutdown the pipe
1234 1.1 jdolecek */
1235 1.1 jdolecek static void
1236 1.77 yamt pipeclose(struct file *fp, struct pipe *pipe)
1237 1.1 jdolecek {
1238 1.90 ad struct pipe_mutex *mutex;
1239 1.95 ad kmutex_t *lock;
1240 1.1 jdolecek struct pipe *ppipe;
1241 1.90 ad u_int refcnt;
1242 1.1 jdolecek
1243 1.35 pk if (pipe == NULL)
1244 1.2 jdolecek return;
1245 1.99 ad
1246 1.99 ad KASSERT(cv_is_valid(&pipe->pipe_rcv));
1247 1.99 ad KASSERT(cv_is_valid(&pipe->pipe_wcv));
1248 1.99 ad KASSERT(cv_is_valid(&pipe->pipe_draincv));
1249 1.99 ad KASSERT(cv_is_valid(&pipe->pipe_lkcv));
1250 1.99 ad
1251 1.95 ad lock = pipe->pipe_lock;
1252 1.95 ad mutex_enter(lock);
1253 1.66 christos pipeselwakeup(pipe, pipe, POLL_HUP);
1254 1.1 jdolecek
1255 1.2 jdolecek /*
1256 1.2 jdolecek * If the other side is blocked, wake it up saying that
1257 1.2 jdolecek * we want to close it down.
1258 1.2 jdolecek */
1259 1.66 christos pipe->pipe_state |= PIPE_EOF;
1260 1.82 ad if (pipe->pipe_busy) {
1261 1.82 ad while (pipe->pipe_busy) {
1262 1.97 yamt cv_broadcast(&pipe->pipe_wcv);
1263 1.97 yamt cv_wait_sig(&pipe->pipe_draincv, lock);
1264 1.82 ad }
1265 1.2 jdolecek }
1266 1.1 jdolecek
1267 1.2 jdolecek /*
1268 1.2 jdolecek * Disconnect from peer
1269 1.2 jdolecek */
1270 1.35 pk if ((ppipe = pipe->pipe_peer) != NULL) {
1271 1.66 christos pipeselwakeup(ppipe, ppipe, POLL_HUP);
1272 1.2 jdolecek ppipe->pipe_state |= PIPE_EOF;
1273 1.97 yamt cv_broadcast(&ppipe->pipe_rcv);
1274 1.2 jdolecek ppipe->pipe_peer = NULL;
1275 1.1 jdolecek }
1276 1.35 pk
1277 1.67 yamt KASSERT((pipe->pipe_state & PIPE_LOCKFL) == 0);
1278 1.67 yamt
1279 1.95 ad mutex = (struct pipe_mutex *)lock;
1280 1.90 ad refcnt = --(mutex->pm_refcnt);
1281 1.90 ad KASSERT(refcnt == 0 || refcnt == 1);
1282 1.95 ad mutex_exit(lock);
1283 1.35 pk
1284 1.2 jdolecek /*
1285 1.2 jdolecek * free resources
1286 1.2 jdolecek */
1287 1.35 pk pipe_free_kmem(pipe);
1288 1.97 yamt cv_destroy(&pipe->pipe_rcv);
1289 1.97 yamt cv_destroy(&pipe->pipe_wcv);
1290 1.97 yamt cv_destroy(&pipe->pipe_draincv);
1291 1.80 ad cv_destroy(&pipe->pipe_lkcv);
1292 1.86 ad seldestroy(&pipe->pipe_sel);
1293 1.87 ad pool_cache_put(pipe_cache, pipe);
1294 1.90 ad if (refcnt == 0)
1295 1.90 ad pool_cache_put(pipe_mutex_cache, mutex);
1296 1.1 jdolecek }
1297 1.1 jdolecek
1298 1.27 jdolecek static void
1299 1.27 jdolecek filt_pipedetach(struct knote *kn)
1300 1.1 jdolecek {
1301 1.92 ad struct pipe *pipe;
1302 1.92 ad kmutex_t *lock;
1303 1.92 ad
1304 1.99 ad pipe = ((file_t *)kn->kn_obj)->f_data;
1305 1.92 ad lock = pipe->pipe_lock;
1306 1.1 jdolecek
1307 1.92 ad mutex_enter(lock);
1308 1.82 ad
1309 1.27 jdolecek switch(kn->kn_filter) {
1310 1.1 jdolecek case EVFILT_WRITE:
1311 1.27 jdolecek /* need the peer structure, not our own */
1312 1.35 pk pipe = pipe->pipe_peer;
1313 1.27 jdolecek
1314 1.27 jdolecek /* if reader end already closed, just return */
1315 1.82 ad if (pipe == NULL) {
1316 1.92 ad mutex_exit(lock);
1317 1.27 jdolecek return;
1318 1.82 ad }
1319 1.27 jdolecek
1320 1.1 jdolecek break;
1321 1.1 jdolecek default:
1322 1.27 jdolecek /* nothing to do */
1323 1.29 kristerw break;
1324 1.1 jdolecek }
1325 1.24 jdolecek
1326 1.27 jdolecek #ifdef DIAGNOSTIC
1327 1.35 pk if (kn->kn_hook != pipe)
1328 1.27 jdolecek panic("filt_pipedetach: inconsistent knote");
1329 1.27 jdolecek #endif
1330 1.1 jdolecek
1331 1.35 pk SLIST_REMOVE(&pipe->pipe_sel.sel_klist, kn, knote, kn_selnext);
1332 1.92 ad mutex_exit(lock);
1333 1.1 jdolecek }
1334 1.1 jdolecek
1335 1.1 jdolecek /*ARGSUSED*/
1336 1.1 jdolecek static int
1337 1.1 jdolecek filt_piperead(struct knote *kn, long hint)
1338 1.1 jdolecek {
1339 1.99 ad struct pipe *rpipe = ((file_t *)kn->kn_obj)->f_data;
1340 1.82 ad struct pipe *wpipe;
1341 1.82 ad
1342 1.83 ad if ((hint & NOTE_SUBMIT) == 0) {
1343 1.90 ad mutex_enter(rpipe->pipe_lock);
1344 1.83 ad }
1345 1.82 ad wpipe = rpipe->pipe_peer;
1346 1.83 ad kn->kn_data = rpipe->pipe_buffer.cnt;
1347 1.1 jdolecek
1348 1.1 jdolecek if ((kn->kn_data == 0) && (rpipe->pipe_state & PIPE_DIRECTW))
1349 1.1 jdolecek kn->kn_data = rpipe->pipe_map.cnt;
1350 1.1 jdolecek
1351 1.1 jdolecek if ((rpipe->pipe_state & PIPE_EOF) ||
1352 1.1 jdolecek (wpipe == NULL) || (wpipe->pipe_state & PIPE_EOF)) {
1353 1.24 jdolecek kn->kn_flags |= EV_EOF;
1354 1.83 ad if ((hint & NOTE_SUBMIT) == 0) {
1355 1.90 ad mutex_exit(rpipe->pipe_lock);
1356 1.83 ad }
1357 1.1 jdolecek return (1);
1358 1.1 jdolecek }
1359 1.83 ad
1360 1.83 ad if ((hint & NOTE_SUBMIT) == 0) {
1361 1.90 ad mutex_exit(rpipe->pipe_lock);
1362 1.83 ad }
1363 1.1 jdolecek return (kn->kn_data > 0);
1364 1.1 jdolecek }
1365 1.1 jdolecek
1366 1.1 jdolecek /*ARGSUSED*/
1367 1.1 jdolecek static int
1368 1.1 jdolecek filt_pipewrite(struct knote *kn, long hint)
1369 1.1 jdolecek {
1370 1.99 ad struct pipe *rpipe = ((file_t *)kn->kn_obj)->f_data;
1371 1.82 ad struct pipe *wpipe;
1372 1.82 ad
1373 1.83 ad if ((hint & NOTE_SUBMIT) == 0) {
1374 1.90 ad mutex_enter(rpipe->pipe_lock);
1375 1.83 ad }
1376 1.82 ad wpipe = rpipe->pipe_peer;
1377 1.1 jdolecek
1378 1.1 jdolecek if ((wpipe == NULL) || (wpipe->pipe_state & PIPE_EOF)) {
1379 1.1 jdolecek kn->kn_data = 0;
1380 1.63 perry kn->kn_flags |= EV_EOF;
1381 1.83 ad if ((hint & NOTE_SUBMIT) == 0) {
1382 1.90 ad mutex_exit(rpipe->pipe_lock);
1383 1.83 ad }
1384 1.1 jdolecek return (1);
1385 1.1 jdolecek }
1386 1.1 jdolecek kn->kn_data = wpipe->pipe_buffer.size - wpipe->pipe_buffer.cnt;
1387 1.1 jdolecek if (wpipe->pipe_state & PIPE_DIRECTW)
1388 1.1 jdolecek kn->kn_data = 0;
1389 1.1 jdolecek
1390 1.83 ad if ((hint & NOTE_SUBMIT) == 0) {
1391 1.90 ad mutex_exit(rpipe->pipe_lock);
1392 1.83 ad }
1393 1.1 jdolecek return (kn->kn_data >= PIPE_BUF);
1394 1.1 jdolecek }
1395 1.27 jdolecek
1396 1.27 jdolecek static const struct filterops pipe_rfiltops =
1397 1.27 jdolecek { 1, NULL, filt_pipedetach, filt_piperead };
1398 1.27 jdolecek static const struct filterops pipe_wfiltops =
1399 1.27 jdolecek { 1, NULL, filt_pipedetach, filt_pipewrite };
1400 1.27 jdolecek
1401 1.27 jdolecek /*ARGSUSED*/
1402 1.27 jdolecek static int
1403 1.77 yamt pipe_kqfilter(struct file *fp, struct knote *kn)
1404 1.27 jdolecek {
1405 1.35 pk struct pipe *pipe;
1406 1.92 ad kmutex_t *lock;
1407 1.27 jdolecek
1408 1.99 ad pipe = ((file_t *)kn->kn_obj)->f_data;
1409 1.92 ad lock = pipe->pipe_lock;
1410 1.92 ad
1411 1.92 ad mutex_enter(lock);
1412 1.82 ad
1413 1.27 jdolecek switch (kn->kn_filter) {
1414 1.27 jdolecek case EVFILT_READ:
1415 1.27 jdolecek kn->kn_fop = &pipe_rfiltops;
1416 1.27 jdolecek break;
1417 1.27 jdolecek case EVFILT_WRITE:
1418 1.27 jdolecek kn->kn_fop = &pipe_wfiltops;
1419 1.35 pk pipe = pipe->pipe_peer;
1420 1.35 pk if (pipe == NULL) {
1421 1.27 jdolecek /* other end of pipe has been closed */
1422 1.92 ad mutex_exit(lock);
1423 1.27 jdolecek return (EBADF);
1424 1.27 jdolecek }
1425 1.27 jdolecek break;
1426 1.27 jdolecek default:
1427 1.92 ad mutex_exit(lock);
1428 1.88 pooka return (EINVAL);
1429 1.27 jdolecek }
1430 1.82 ad
1431 1.35 pk kn->kn_hook = pipe;
1432 1.35 pk SLIST_INSERT_HEAD(&pipe->pipe_sel.sel_klist, kn, kn_selnext);
1433 1.92 ad mutex_exit(lock);
1434 1.82 ad
1435 1.27 jdolecek return (0);
1436 1.27 jdolecek }
1437 1.2 jdolecek
1438 1.2 jdolecek /*
1439 1.2 jdolecek * Handle pipe sysctls.
1440 1.2 jdolecek */
1441 1.47 atatat SYSCTL_SETUP(sysctl_kern_pipe_setup, "sysctl kern.pipe subtree setup")
1442 1.47 atatat {
1443 1.47 atatat
1444 1.54 atatat sysctl_createv(clog, 0, NULL, NULL,
1445 1.54 atatat CTLFLAG_PERMANENT,
1446 1.47 atatat CTLTYPE_NODE, "kern", NULL,
1447 1.47 atatat NULL, 0, NULL, 0,
1448 1.47 atatat CTL_KERN, CTL_EOL);
1449 1.54 atatat sysctl_createv(clog, 0, NULL, NULL,
1450 1.54 atatat CTLFLAG_PERMANENT,
1451 1.56 atatat CTLTYPE_NODE, "pipe",
1452 1.56 atatat SYSCTL_DESCR("Pipe settings"),
1453 1.47 atatat NULL, 0, NULL, 0,
1454 1.47 atatat CTL_KERN, KERN_PIPE, CTL_EOL);
1455 1.47 atatat
1456 1.54 atatat sysctl_createv(clog, 0, NULL, NULL,
1457 1.54 atatat CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1458 1.56 atatat CTLTYPE_INT, "maxkvasz",
1459 1.56 atatat SYSCTL_DESCR("Maximum amount of kernel memory to be "
1460 1.56 atatat "used for pipes"),
1461 1.47 atatat NULL, 0, &maxpipekva, 0,
1462 1.47 atatat CTL_KERN, KERN_PIPE, KERN_PIPE_MAXKVASZ, CTL_EOL);
1463 1.54 atatat sysctl_createv(clog, 0, NULL, NULL,
1464 1.54 atatat CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1465 1.56 atatat CTLTYPE_INT, "maxloankvasz",
1466 1.56 atatat SYSCTL_DESCR("Limit for direct transfers via page loan"),
1467 1.47 atatat NULL, 0, &limitpipekva, 0,
1468 1.47 atatat CTL_KERN, KERN_PIPE, KERN_PIPE_LIMITKVA, CTL_EOL);
1469 1.54 atatat sysctl_createv(clog, 0, NULL, NULL,
1470 1.54 atatat CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
1471 1.56 atatat CTLTYPE_INT, "maxbigpipes",
1472 1.56 atatat SYSCTL_DESCR("Maximum number of \"big\" pipes"),
1473 1.47 atatat NULL, 0, &maxbigpipes, 0,
1474 1.47 atatat CTL_KERN, KERN_PIPE, KERN_PIPE_MAXBIGPIPES, CTL_EOL);
1475 1.54 atatat sysctl_createv(clog, 0, NULL, NULL,
1476 1.54 atatat CTLFLAG_PERMANENT,
1477 1.56 atatat CTLTYPE_INT, "nbigpipes",
1478 1.56 atatat SYSCTL_DESCR("Number of \"big\" pipes"),
1479 1.47 atatat NULL, 0, &nbigpipe, 0,
1480 1.47 atatat CTL_KERN, KERN_PIPE, KERN_PIPE_NBIGPIPES, CTL_EOL);
1481 1.54 atatat sysctl_createv(clog, 0, NULL, NULL,
1482 1.54 atatat CTLFLAG_PERMANENT,
1483 1.56 atatat CTLTYPE_INT, "kvasize",
1484 1.56 atatat SYSCTL_DESCR("Amount of kernel memory consumed by pipe "
1485 1.56 atatat "buffers"),
1486 1.47 atatat NULL, 0, &amountpipekva, 0,
1487 1.47 atatat CTL_KERN, KERN_PIPE, KERN_PIPE_KVASIZE, CTL_EOL);
1488 1.2 jdolecek }
1489