packaging: install license for rpm package instead of license package
[profile/mobile/platform/kernel/linux-3.10-sc7730.git] / fs / pipe.c
1 /*
2  *  linux/fs/pipe.c
3  *
4  *  Copyright (C) 1991, 1992, 1999  Linus Torvalds
5  */
6
7 #include <linux/mm.h>
8 #include <linux/file.h>
9 #include <linux/poll.h>
10 #include <linux/slab.h>
11 #include <linux/module.h>
12 #include <linux/init.h>
13 #include <linux/fs.h>
14 #include <linux/log2.h>
15 #include <linux/mount.h>
16 #include <linux/magic.h>
17 #include <linux/pipe_fs_i.h>
18 #include <linux/uio.h>
19 #include <linux/highmem.h>
20 #include <linux/pagemap.h>
21 #include <linux/audit.h>
22 #include <linux/syscalls.h>
23 #include <linux/fcntl.h>
24 #include <linux/aio.h>
25
26 #include <asm/uaccess.h>
27 #include <asm/ioctls.h>
28
29 #include "internal.h"
30
31 /*
32  * The max size that a non-root user is allowed to grow the pipe. Can
33  * be set by root in /proc/sys/fs/pipe-max-size
34  */
35 unsigned int pipe_max_size = 1048576;
36
37 /*
38  * Minimum pipe size, as required by POSIX
39  */
40 unsigned int pipe_min_size = PAGE_SIZE;
41
42 /*
43  * We use a start+len construction, which provides full use of the 
44  * allocated memory.
45  * -- Florian Coosmann (FGC)
46  * 
47  * Reads with count = 0 should always return 0.
48  * -- Julian Bradfield 1999-06-07.
49  *
50  * FIFOs and Pipes now generate SIGIO for both readers and writers.
51  * -- Jeremy Elson <jelson@circlemud.org> 2001-08-16
52  *
53  * pipe_read & write cleanup
54  * -- Manfred Spraul <manfred@colorfullife.com> 2002-05-09
55  */
56
57 static void pipe_lock_nested(struct pipe_inode_info *pipe, int subclass)
58 {
59         if (pipe->files)
60                 mutex_lock_nested(&pipe->mutex, subclass);
61 }
62
63 void pipe_lock(struct pipe_inode_info *pipe)
64 {
65         /*
66          * pipe_lock() nests non-pipe inode locks (for writing to a file)
67          */
68         pipe_lock_nested(pipe, I_MUTEX_PARENT);
69 }
70 EXPORT_SYMBOL(pipe_lock);
71
72 void pipe_unlock(struct pipe_inode_info *pipe)
73 {
74         if (pipe->files)
75                 mutex_unlock(&pipe->mutex);
76 }
77 EXPORT_SYMBOL(pipe_unlock);
78
79 static inline void __pipe_lock(struct pipe_inode_info *pipe)
80 {
81         mutex_lock_nested(&pipe->mutex, I_MUTEX_PARENT);
82 }
83
84 static inline void __pipe_unlock(struct pipe_inode_info *pipe)
85 {
86         mutex_unlock(&pipe->mutex);
87 }
88
89 void pipe_double_lock(struct pipe_inode_info *pipe1,
90                       struct pipe_inode_info *pipe2)
91 {
92         BUG_ON(pipe1 == pipe2);
93
94         if (pipe1 < pipe2) {
95                 pipe_lock_nested(pipe1, I_MUTEX_PARENT);
96                 pipe_lock_nested(pipe2, I_MUTEX_CHILD);
97         } else {
98                 pipe_lock_nested(pipe2, I_MUTEX_PARENT);
99                 pipe_lock_nested(pipe1, I_MUTEX_CHILD);
100         }
101 }
102
103 /* Drop the inode semaphore and wait for a pipe event, atomically */
104 void pipe_wait(struct pipe_inode_info *pipe)
105 {
106         DEFINE_WAIT(wait);
107
108         /*
109          * Pipes are system-local resources, so sleeping on them
110          * is considered a noninteractive wait:
111          */
112         prepare_to_wait(&pipe->wait, &wait, TASK_INTERRUPTIBLE);
113         pipe_unlock(pipe);
114         schedule();
115         finish_wait(&pipe->wait, &wait);
116         pipe_lock(pipe);
117 }
118
119 static int
120 pipe_iov_copy_from_user(void *addr, int *offset, struct iovec *iov,
121                         size_t *remaining, int atomic)
122 {
123         unsigned long copy;
124
125         while (*remaining > 0) {
126                 while (!iov->iov_len)
127                         iov++;
128                 copy = min_t(unsigned long, *remaining, iov->iov_len);
129
130                 if (atomic) {
131                         if (__copy_from_user_inatomic(addr + *offset,
132                                                       iov->iov_base, copy))
133                                 return -EFAULT;
134                 } else {
135                         if (copy_from_user(addr + *offset,
136                                            iov->iov_base, copy))
137                                 return -EFAULT;
138                 }
139                 *offset += copy;
140                 *remaining -= copy;
141                 iov->iov_base += copy;
142                 iov->iov_len -= copy;
143         }
144         return 0;
145 }
146
147 static int
148 pipe_iov_copy_to_user(struct iovec *iov, void *addr, int *offset,
149                       size_t *remaining, int atomic)
150 {
151         unsigned long copy;
152
153         while (*remaining > 0) {
154                 while (!iov->iov_len)
155                         iov++;
156                 copy = min_t(unsigned long, *remaining, iov->iov_len);
157
158                 if (atomic) {
159                         if (__copy_to_user_inatomic(iov->iov_base,
160                                                     addr + *offset, copy))
161                                 return -EFAULT;
162                 } else {
163                         if (copy_to_user(iov->iov_base,
164                                          addr + *offset, copy))
165                                 return -EFAULT;
166                 }
167                 *offset += copy;
168                 *remaining -= copy;
169                 iov->iov_base += copy;
170                 iov->iov_len -= copy;
171         }
172         return 0;
173 }
174
175 /*
176  * Attempt to pre-fault in the user memory, so we can use atomic copies.
177  * Returns the number of bytes not faulted in.
178  */
179 static int iov_fault_in_pages_write(struct iovec *iov, unsigned long len)
180 {
181         while (!iov->iov_len)
182                 iov++;
183
184         while (len > 0) {
185                 unsigned long this_len;
186
187                 this_len = min_t(unsigned long, len, iov->iov_len);
188                 if (fault_in_pages_writeable(iov->iov_base, this_len))
189                         break;
190
191                 len -= this_len;
192                 iov++;
193         }
194
195         return len;
196 }
197
198 /*
199  * Pre-fault in the user memory, so we can use atomic copies.
200  */
201 static void iov_fault_in_pages_read(struct iovec *iov, unsigned long len)
202 {
203         while (!iov->iov_len)
204                 iov++;
205
206         while (len > 0) {
207                 unsigned long this_len;
208
209                 this_len = min_t(unsigned long, len, iov->iov_len);
210                 fault_in_pages_readable(iov->iov_base, this_len);
211                 len -= this_len;
212                 iov++;
213         }
214 }
215
216 static void anon_pipe_buf_release(struct pipe_inode_info *pipe,
217                                   struct pipe_buffer *buf)
218 {
219         struct page *page = buf->page;
220
221         /*
222          * If nobody else uses this page, and we don't already have a
223          * temporary page, let's keep track of it as a one-deep
224          * allocation cache. (Otherwise just release our reference to it)
225          */
226         if (page_count(page) == 1 && !pipe->tmp_page)
227                 pipe->tmp_page = page;
228         else
229                 page_cache_release(page);
230 }
231
232 /**
233  * generic_pipe_buf_map - virtually map a pipe buffer
234  * @pipe:       the pipe that the buffer belongs to
235  * @buf:        the buffer that should be mapped
236  * @atomic:     whether to use an atomic map
237  *
238  * Description:
239  *      This function returns a kernel virtual address mapping for the
240  *      pipe_buffer passed in @buf. If @atomic is set, an atomic map is provided
241  *      and the caller has to be careful not to fault before calling
242  *      the unmap function.
243  *
244  *      Note that this function calls kmap_atomic() if @atomic != 0.
245  */
246 void *generic_pipe_buf_map(struct pipe_inode_info *pipe,
247                            struct pipe_buffer *buf, int atomic)
248 {
249         if (atomic) {
250                 buf->flags |= PIPE_BUF_FLAG_ATOMIC;
251                 return kmap_atomic(buf->page);
252         }
253
254         return kmap(buf->page);
255 }
256 EXPORT_SYMBOL(generic_pipe_buf_map);
257
258 /**
259  * generic_pipe_buf_unmap - unmap a previously mapped pipe buffer
260  * @pipe:       the pipe that the buffer belongs to
261  * @buf:        the buffer that should be unmapped
262  * @map_data:   the data that the mapping function returned
263  *
264  * Description:
265  *      This function undoes the mapping that ->map() provided.
266  */
267 void generic_pipe_buf_unmap(struct pipe_inode_info *pipe,
268                             struct pipe_buffer *buf, void *map_data)
269 {
270         if (buf->flags & PIPE_BUF_FLAG_ATOMIC) {
271                 buf->flags &= ~PIPE_BUF_FLAG_ATOMIC;
272                 kunmap_atomic(map_data);
273         } else
274                 kunmap(buf->page);
275 }
276 EXPORT_SYMBOL(generic_pipe_buf_unmap);
277
278 /**
279  * generic_pipe_buf_steal - attempt to take ownership of a &pipe_buffer
280  * @pipe:       the pipe that the buffer belongs to
281  * @buf:        the buffer to attempt to steal
282  *
283  * Description:
284  *      This function attempts to steal the &struct page attached to
285  *      @buf. If successful, this function returns 0 and returns with
286  *      the page locked. The caller may then reuse the page for whatever
287  *      he wishes; the typical use is insertion into a different file
288  *      page cache.
289  */
290 int generic_pipe_buf_steal(struct pipe_inode_info *pipe,
291                            struct pipe_buffer *buf)
292 {
293         struct page *page = buf->page;
294
295         /*
296          * A reference of one is golden, that means that the owner of this
297          * page is the only one holding a reference to it. lock the page
298          * and return OK.
299          */
300         if (page_count(page) == 1) {
301                 lock_page(page);
302                 return 0;
303         }
304
305         return 1;
306 }
307 EXPORT_SYMBOL(generic_pipe_buf_steal);
308
309 /**
310  * generic_pipe_buf_get - get a reference to a &struct pipe_buffer
311  * @pipe:       the pipe that the buffer belongs to
312  * @buf:        the buffer to get a reference to
313  *
314  * Description:
315  *      This function grabs an extra reference to @buf. It's used in
316  *      in the tee() system call, when we duplicate the buffers in one
317  *      pipe into another.
318  */
319 void generic_pipe_buf_get(struct pipe_inode_info *pipe, struct pipe_buffer *buf)
320 {
321         page_cache_get(buf->page);
322 }
323 EXPORT_SYMBOL(generic_pipe_buf_get);
324
325 /**
326  * generic_pipe_buf_confirm - verify contents of the pipe buffer
327  * @info:       the pipe that the buffer belongs to
328  * @buf:        the buffer to confirm
329  *
330  * Description:
331  *      This function does nothing, because the generic pipe code uses
332  *      pages that are always good when inserted into the pipe.
333  */
334 int generic_pipe_buf_confirm(struct pipe_inode_info *info,
335                              struct pipe_buffer *buf)
336 {
337         return 0;
338 }
339 EXPORT_SYMBOL(generic_pipe_buf_confirm);
340
341 /**
342  * generic_pipe_buf_release - put a reference to a &struct pipe_buffer
343  * @pipe:       the pipe that the buffer belongs to
344  * @buf:        the buffer to put a reference to
345  *
346  * Description:
347  *      This function releases a reference to @buf.
348  */
349 void generic_pipe_buf_release(struct pipe_inode_info *pipe,
350                               struct pipe_buffer *buf)
351 {
352         page_cache_release(buf->page);
353 }
354 EXPORT_SYMBOL(generic_pipe_buf_release);
355
356 static const struct pipe_buf_operations anon_pipe_buf_ops = {
357         .can_merge = 1,
358         .map = generic_pipe_buf_map,
359         .unmap = generic_pipe_buf_unmap,
360         .confirm = generic_pipe_buf_confirm,
361         .release = anon_pipe_buf_release,
362         .steal = generic_pipe_buf_steal,
363         .get = generic_pipe_buf_get,
364 };
365
366 static const struct pipe_buf_operations packet_pipe_buf_ops = {
367         .can_merge = 0,
368         .map = generic_pipe_buf_map,
369         .unmap = generic_pipe_buf_unmap,
370         .confirm = generic_pipe_buf_confirm,
371         .release = anon_pipe_buf_release,
372         .steal = generic_pipe_buf_steal,
373         .get = generic_pipe_buf_get,
374 };
375
376 static ssize_t
377 pipe_read(struct kiocb *iocb, const struct iovec *_iov,
378            unsigned long nr_segs, loff_t pos)
379 {
380         struct file *filp = iocb->ki_filp;
381         struct pipe_inode_info *pipe = filp->private_data;
382         int do_wakeup;
383         ssize_t ret;
384         struct iovec *iov = (struct iovec *)_iov;
385         size_t total_len;
386
387         total_len = iov_length(iov, nr_segs);
388         /* Null read succeeds. */
389         if (unlikely(total_len == 0))
390                 return 0;
391
392         do_wakeup = 0;
393         ret = 0;
394         __pipe_lock(pipe);
395         for (;;) {
396                 int bufs = pipe->nrbufs;
397                 if (bufs) {
398                         int curbuf = pipe->curbuf;
399                         struct pipe_buffer *buf = pipe->bufs + curbuf;
400                         const struct pipe_buf_operations *ops = buf->ops;
401                         void *addr;
402                         size_t chars = buf->len, remaining;
403                         int error, atomic;
404
405                         if (chars > total_len)
406                                 chars = total_len;
407
408                         error = ops->confirm(pipe, buf);
409                         if (error) {
410                                 if (!ret)
411                                         ret = error;
412                                 break;
413                         }
414
415                         atomic = !iov_fault_in_pages_write(iov, chars);
416                         remaining = chars;
417 redo:
418                         addr = ops->map(pipe, buf, atomic);
419                         error = pipe_iov_copy_to_user(iov, addr, &buf->offset,
420                                                       &remaining, atomic);
421                         ops->unmap(pipe, buf, addr);
422                         if (unlikely(error)) {
423                                 /*
424                                  * Just retry with the slow path if we failed.
425                                  */
426                                 if (atomic) {
427                                         atomic = 0;
428                                         goto redo;
429                                 }
430                                 if (!ret)
431                                         ret = error;
432                                 break;
433                         }
434                         ret += chars;
435                         buf->len -= chars;
436
437                         /* Was it a packet buffer? Clean up and exit */
438                         if (buf->flags & PIPE_BUF_FLAG_PACKET) {
439                                 total_len = chars;
440                                 buf->len = 0;
441                         }
442
443                         if (!buf->len) {
444                                 buf->ops = NULL;
445                                 ops->release(pipe, buf);
446                                 curbuf = (curbuf + 1) & (pipe->buffers - 1);
447                                 pipe->curbuf = curbuf;
448                                 pipe->nrbufs = --bufs;
449                                 do_wakeup = 1;
450                         }
451                         total_len -= chars;
452                         if (!total_len)
453                                 break;  /* common path: read succeeded */
454                 }
455                 if (bufs)       /* More to do? */
456                         continue;
457                 if (!pipe->writers)
458                         break;
459                 if (!pipe->waiting_writers) {
460                         /* syscall merging: Usually we must not sleep
461                          * if O_NONBLOCK is set, or if we got some data.
462                          * But if a writer sleeps in kernel space, then
463                          * we can wait for that data without violating POSIX.
464                          */
465                         if (ret)
466                                 break;
467                         if (filp->f_flags & O_NONBLOCK) {
468                                 ret = -EAGAIN;
469                                 break;
470                         }
471                 }
472                 if (signal_pending(current)) {
473                         if (!ret)
474                                 ret = -ERESTARTSYS;
475                         break;
476                 }
477                 if (do_wakeup) {
478                         wake_up_interruptible_sync_poll(&pipe->wait, POLLOUT | POLLWRNORM);
479                         kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
480                 }
481                 pipe_wait(pipe);
482         }
483         __pipe_unlock(pipe);
484
485         /* Signal writers asynchronously that there is more room. */
486         if (do_wakeup) {
487                 wake_up_interruptible_sync_poll(&pipe->wait, POLLOUT | POLLWRNORM);
488                 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
489         }
490         if (ret > 0)
491                 file_accessed(filp);
492         return ret;
493 }
494
495 static inline int is_packetized(struct file *file)
496 {
497         return (file->f_flags & O_DIRECT) != 0;
498 }
499
500 static ssize_t
501 pipe_write(struct kiocb *iocb, const struct iovec *_iov,
502             unsigned long nr_segs, loff_t ppos)
503 {
504         struct file *filp = iocb->ki_filp;
505         struct pipe_inode_info *pipe = filp->private_data;
506         ssize_t ret;
507         int do_wakeup;
508         struct iovec *iov = (struct iovec *)_iov;
509         size_t total_len;
510         ssize_t chars;
511
512         total_len = iov_length(iov, nr_segs);
513         /* Null write succeeds. */
514         if (unlikely(total_len == 0))
515                 return 0;
516
517         do_wakeup = 0;
518         ret = 0;
519         __pipe_lock(pipe);
520
521         if (!pipe->readers) {
522                 send_sig(SIGPIPE, current, 0);
523                 ret = -EPIPE;
524                 goto out;
525         }
526
527         /* We try to merge small writes */
528         chars = total_len & (PAGE_SIZE-1); /* size of the last buffer */
529         if (pipe->nrbufs && chars != 0) {
530                 int lastbuf = (pipe->curbuf + pipe->nrbufs - 1) &
531                                                         (pipe->buffers - 1);
532                 struct pipe_buffer *buf = pipe->bufs + lastbuf;
533                 const struct pipe_buf_operations *ops = buf->ops;
534                 int offset = buf->offset + buf->len;
535
536                 if (ops->can_merge && offset + chars <= PAGE_SIZE) {
537                         int error, atomic = 1;
538                         void *addr;
539                         size_t remaining = chars;
540
541                         error = ops->confirm(pipe, buf);
542                         if (error)
543                                 goto out;
544
545                         iov_fault_in_pages_read(iov, chars);
546 redo1:
547                         addr = ops->map(pipe, buf, atomic);
548                         error = pipe_iov_copy_from_user(addr, &offset, iov,
549                                                         &remaining, atomic);
550                         ops->unmap(pipe, buf, addr);
551                         ret = error;
552                         do_wakeup = 1;
553                         if (error) {
554                                 if (atomic) {
555                                         atomic = 0;
556                                         goto redo1;
557                                 }
558                                 goto out;
559                         }
560                         buf->len += chars;
561                         total_len -= chars;
562                         ret = chars;
563                         if (!total_len)
564                                 goto out;
565                 }
566         }
567
568         for (;;) {
569                 int bufs;
570
571                 if (!pipe->readers) {
572                         send_sig(SIGPIPE, current, 0);
573                         if (!ret)
574                                 ret = -EPIPE;
575                         break;
576                 }
577                 bufs = pipe->nrbufs;
578                 if (bufs < pipe->buffers) {
579                         int newbuf = (pipe->curbuf + bufs) & (pipe->buffers-1);
580                         struct pipe_buffer *buf = pipe->bufs + newbuf;
581                         struct page *page = pipe->tmp_page;
582                         char *src;
583                         int error, atomic = 1;
584                         int offset = 0;
585                         size_t remaining;
586
587                         if (!page) {
588                                 #ifndef CONFIG_SPRD_PAGERECORDER
589                                         page = alloc_page(GFP_HIGHUSER);
590                                 #else
591                                         page = alloc_page_nopagedebug(GFP_HIGHUSER);
592                                 #endif
593                                 if (unlikely(!page)) {
594                                         ret = ret ? : -ENOMEM;
595                                         break;
596                                 }
597                                 pipe->tmp_page = page;
598                         }
599                         /* Always wake up, even if the copy fails. Otherwise
600                          * we lock up (O_NONBLOCK-)readers that sleep due to
601                          * syscall merging.
602                          * FIXME! Is this really true?
603                          */
604                         do_wakeup = 1;
605                         chars = PAGE_SIZE;
606                         if (chars > total_len)
607                                 chars = total_len;
608
609                         iov_fault_in_pages_read(iov, chars);
610                         remaining = chars;
611 redo2:
612                         if (atomic)
613                                 src = kmap_atomic(page);
614                         else
615                                 src = kmap(page);
616
617                         error = pipe_iov_copy_from_user(src, &offset, iov,
618                                                         &remaining, atomic);
619                         if (atomic)
620                                 kunmap_atomic(src);
621                         else
622                                 kunmap(page);
623
624                         if (unlikely(error)) {
625                                 if (atomic) {
626                                         atomic = 0;
627                                         goto redo2;
628                                 }
629                                 if (!ret)
630                                         ret = error;
631                                 break;
632                         }
633                         ret += chars;
634
635                         /* Insert it into the buffer array */
636                         buf->page = page;
637                         buf->ops = &anon_pipe_buf_ops;
638                         buf->offset = 0;
639                         buf->len = chars;
640                         buf->flags = 0;
641                         if (is_packetized(filp)) {
642                                 buf->ops = &packet_pipe_buf_ops;
643                                 buf->flags = PIPE_BUF_FLAG_PACKET;
644                         }
645                         pipe->nrbufs = ++bufs;
646                         pipe->tmp_page = NULL;
647
648                         total_len -= chars;
649                         if (!total_len)
650                                 break;
651                 }
652                 if (bufs < pipe->buffers)
653                         continue;
654                 if (filp->f_flags & O_NONBLOCK) {
655                         if (!ret)
656                                 ret = -EAGAIN;
657                         break;
658                 }
659                 if (signal_pending(current)) {
660                         if (!ret)
661                                 ret = -ERESTARTSYS;
662                         break;
663                 }
664                 if (do_wakeup) {
665                         wake_up_interruptible_sync_poll(&pipe->wait, POLLIN | POLLRDNORM);
666                         kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
667                         do_wakeup = 0;
668                 }
669                 pipe->waiting_writers++;
670                 pipe_wait(pipe);
671                 pipe->waiting_writers--;
672         }
673 out:
674         __pipe_unlock(pipe);
675         if (do_wakeup) {
676                 wake_up_interruptible_sync_poll(&pipe->wait, POLLIN | POLLRDNORM);
677                 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
678         }
679         if (ret > 0) {
680                 int err = file_update_time(filp);
681                 if (err)
682                         ret = err;
683         }
684         return ret;
685 }
686
687 static long pipe_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
688 {
689         struct pipe_inode_info *pipe = filp->private_data;
690         int count, buf, nrbufs;
691
692         switch (cmd) {
693                 case FIONREAD:
694                         __pipe_lock(pipe);
695                         count = 0;
696                         buf = pipe->curbuf;
697                         nrbufs = pipe->nrbufs;
698                         while (--nrbufs >= 0) {
699                                 count += pipe->bufs[buf].len;
700                                 buf = (buf+1) & (pipe->buffers - 1);
701                         }
702                         __pipe_unlock(pipe);
703
704                         return put_user(count, (int __user *)arg);
705                 default:
706                         return -ENOIOCTLCMD;
707         }
708 }
709
710 /* No kernel lock held - fine */
711 static unsigned int
712 pipe_poll(struct file *filp, poll_table *wait)
713 {
714         unsigned int mask;
715         struct pipe_inode_info *pipe = filp->private_data;
716         int nrbufs;
717
718         poll_wait(filp, &pipe->wait, wait);
719
720         /* Reading only -- no need for acquiring the semaphore.  */
721         nrbufs = pipe->nrbufs;
722         mask = 0;
723         if (filp->f_mode & FMODE_READ) {
724                 mask = (nrbufs > 0) ? POLLIN | POLLRDNORM : 0;
725                 if (!pipe->writers && filp->f_version != pipe->w_counter)
726                         mask |= POLLHUP;
727         }
728
729         if (filp->f_mode & FMODE_WRITE) {
730                 mask |= (nrbufs < pipe->buffers) ? POLLOUT | POLLWRNORM : 0;
731                 /*
732                  * Most Unices do not set POLLERR for FIFOs but on Linux they
733                  * behave exactly like pipes for poll().
734                  */
735                 if (!pipe->readers)
736                         mask |= POLLERR;
737         }
738
739         return mask;
740 }
741
742 static void put_pipe_info(struct inode *inode, struct pipe_inode_info *pipe)
743 {
744         int kill = 0;
745
746         spin_lock(&inode->i_lock);
747         if (!--pipe->files) {
748                 inode->i_pipe = NULL;
749                 kill = 1;
750         }
751         spin_unlock(&inode->i_lock);
752
753         if (kill)
754                 free_pipe_info(pipe);
755 }
756
757 static int
758 pipe_release(struct inode *inode, struct file *file)
759 {
760         struct pipe_inode_info *pipe = file->private_data;
761
762         __pipe_lock(pipe);
763         if (file->f_mode & FMODE_READ)
764                 pipe->readers--;
765         if (file->f_mode & FMODE_WRITE)
766                 pipe->writers--;
767
768         if (pipe->readers || pipe->writers) {
769                 wake_up_interruptible_sync_poll(&pipe->wait, POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM | POLLERR | POLLHUP);
770                 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
771                 kill_fasync(&pipe->fasync_writers, SIGIO, POLL_OUT);
772         }
773         __pipe_unlock(pipe);
774
775         put_pipe_info(inode, pipe);
776         return 0;
777 }
778
779 static int
780 pipe_fasync(int fd, struct file *filp, int on)
781 {
782         struct pipe_inode_info *pipe = filp->private_data;
783         int retval = 0;
784
785         __pipe_lock(pipe);
786         if (filp->f_mode & FMODE_READ)
787                 retval = fasync_helper(fd, filp, on, &pipe->fasync_readers);
788         if ((filp->f_mode & FMODE_WRITE) && retval >= 0) {
789                 retval = fasync_helper(fd, filp, on, &pipe->fasync_writers);
790                 if (retval < 0 && (filp->f_mode & FMODE_READ))
791                         /* this can happen only if on == T */
792                         fasync_helper(-1, filp, 0, &pipe->fasync_readers);
793         }
794         __pipe_unlock(pipe);
795         return retval;
796 }
797
798 struct pipe_inode_info *alloc_pipe_info(void)
799 {
800         struct pipe_inode_info *pipe;
801
802         pipe = kzalloc(sizeof(struct pipe_inode_info), GFP_KERNEL);
803         if (pipe) {
804                 pipe->bufs = kzalloc(sizeof(struct pipe_buffer) * PIPE_DEF_BUFFERS, GFP_KERNEL);
805                 if (pipe->bufs) {
806                         init_waitqueue_head(&pipe->wait);
807                         pipe->r_counter = pipe->w_counter = 1;
808                         pipe->buffers = PIPE_DEF_BUFFERS;
809                         mutex_init(&pipe->mutex);
810                         return pipe;
811                 }
812                 kfree(pipe);
813         }
814
815         return NULL;
816 }
817
818 void free_pipe_info(struct pipe_inode_info *pipe)
819 {
820         int i;
821
822         for (i = 0; i < pipe->buffers; i++) {
823                 struct pipe_buffer *buf = pipe->bufs + i;
824                 if (buf->ops)
825                         buf->ops->release(pipe, buf);
826         }
827         if (pipe->tmp_page)
828                 __free_page(pipe->tmp_page);
829         kfree(pipe->bufs);
830         kfree(pipe);
831 }
832
833 static struct vfsmount *pipe_mnt __read_mostly;
834
835 /*
836  * pipefs_dname() is called from d_path().
837  */
838 static char *pipefs_dname(struct dentry *dentry, char *buffer, int buflen)
839 {
840         return dynamic_dname(dentry, buffer, buflen, "pipe:[%lu]",
841                                 dentry->d_inode->i_ino);
842 }
843
844 static const struct dentry_operations pipefs_dentry_operations = {
845         .d_dname        = pipefs_dname,
846 };
847
848 static struct inode * get_pipe_inode(void)
849 {
850         struct inode *inode = new_inode_pseudo(pipe_mnt->mnt_sb);
851         struct pipe_inode_info *pipe;
852
853         if (!inode)
854                 goto fail_inode;
855
856         inode->i_ino = get_next_ino();
857
858         pipe = alloc_pipe_info();
859         if (!pipe)
860                 goto fail_iput;
861
862         inode->i_pipe = pipe;
863         pipe->files = 2;
864         pipe->readers = pipe->writers = 1;
865         inode->i_fop = &pipefifo_fops;
866
867         /*
868          * Mark the inode dirty from the very beginning,
869          * that way it will never be moved to the dirty
870          * list because "mark_inode_dirty()" will think
871          * that it already _is_ on the dirty list.
872          */
873         inode->i_state = I_DIRTY;
874         inode->i_mode = S_IFIFO | S_IRUSR | S_IWUSR;
875         inode->i_uid = current_fsuid();
876         inode->i_gid = current_fsgid();
877         inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
878
879         return inode;
880
881 fail_iput:
882         iput(inode);
883
884 fail_inode:
885         return NULL;
886 }
887
888 int create_pipe_files(struct file **res, int flags)
889 {
890         int err;
891         struct inode *inode = get_pipe_inode();
892         struct file *f;
893         struct path path;
894         static struct qstr name = { .name = "" };
895
896         if (!inode)
897                 return -ENFILE;
898
899         err = -ENOMEM;
900         path.dentry = d_alloc_pseudo(pipe_mnt->mnt_sb, &name);
901         if (!path.dentry)
902                 goto err_inode;
903         path.mnt = mntget(pipe_mnt);
904
905         d_instantiate(path.dentry, inode);
906
907         err = -ENFILE;
908         f = alloc_file(&path, FMODE_WRITE, &pipefifo_fops);
909         if (IS_ERR(f))
910                 goto err_dentry;
911
912         f->f_flags = O_WRONLY | (flags & (O_NONBLOCK | O_DIRECT));
913         f->private_data = inode->i_pipe;
914
915         res[0] = alloc_file(&path, FMODE_READ, &pipefifo_fops);
916         if (IS_ERR(res[0]))
917                 goto err_file;
918
919         path_get(&path);
920         res[0]->private_data = inode->i_pipe;
921         res[0]->f_flags = O_RDONLY | (flags & O_NONBLOCK);
922         res[1] = f;
923         return 0;
924
925 err_file:
926         put_filp(f);
927 err_dentry:
928         free_pipe_info(inode->i_pipe);
929         path_put(&path);
930         return err;
931
932 err_inode:
933         free_pipe_info(inode->i_pipe);
934         iput(inode);
935         return err;
936 }
937
938 static int __do_pipe_flags(int *fd, struct file **files, int flags)
939 {
940         int error;
941         int fdw, fdr;
942
943         if (flags & ~(O_CLOEXEC | O_NONBLOCK | O_DIRECT))
944                 return -EINVAL;
945
946         error = create_pipe_files(files, flags);
947         if (error)
948                 return error;
949
950         error = get_unused_fd_flags(flags);
951         if (error < 0)
952                 goto err_read_pipe;
953         fdr = error;
954
955         error = get_unused_fd_flags(flags);
956         if (error < 0)
957                 goto err_fdr;
958         fdw = error;
959
960         audit_fd_pair(fdr, fdw);
961         fd[0] = fdr;
962         fd[1] = fdw;
963         return 0;
964
965  err_fdr:
966         put_unused_fd(fdr);
967  err_read_pipe:
968         fput(files[0]);
969         fput(files[1]);
970         return error;
971 }
972
973 int do_pipe_flags(int *fd, int flags)
974 {
975         struct file *files[2];
976         int error = __do_pipe_flags(fd, files, flags);
977         if (!error) {
978                 fd_install(fd[0], files[0]);
979                 fd_install(fd[1], files[1]);
980         }
981         return error;
982 }
983
984 /*
985  * sys_pipe() is the normal C calling standard for creating
986  * a pipe. It's not the way Unix traditionally does this, though.
987  */
988 SYSCALL_DEFINE2(pipe2, int __user *, fildes, int, flags)
989 {
990         struct file *files[2];
991         int fd[2];
992         int error;
993
994         error = __do_pipe_flags(fd, files, flags);
995         if (!error) {
996                 if (unlikely(copy_to_user(fildes, fd, sizeof(fd)))) {
997                         fput(files[0]);
998                         fput(files[1]);
999                         put_unused_fd(fd[0]);
1000                         put_unused_fd(fd[1]);
1001                         error = -EFAULT;
1002                 } else {
1003                         fd_install(fd[0], files[0]);
1004                         fd_install(fd[1], files[1]);
1005                 }
1006         }
1007         return error;
1008 }
1009
1010 SYSCALL_DEFINE1(pipe, int __user *, fildes)
1011 {
1012         return sys_pipe2(fildes, 0);
1013 }
1014
1015 static int wait_for_partner(struct pipe_inode_info *pipe, unsigned int *cnt)
1016 {
1017         int cur = *cnt; 
1018
1019         while (cur == *cnt) {
1020                 pipe_wait(pipe);
1021                 if (signal_pending(current))
1022                         break;
1023         }
1024         return cur == *cnt ? -ERESTARTSYS : 0;
1025 }
1026
1027 static void wake_up_partner(struct pipe_inode_info *pipe)
1028 {
1029         wake_up_interruptible(&pipe->wait);
1030 }
1031
1032 static int fifo_open(struct inode *inode, struct file *filp)
1033 {
1034         struct pipe_inode_info *pipe;
1035         bool is_pipe = inode->i_sb->s_magic == PIPEFS_MAGIC;
1036         int ret;
1037
1038         filp->f_version = 0;
1039
1040         spin_lock(&inode->i_lock);
1041         if (inode->i_pipe) {
1042                 pipe = inode->i_pipe;
1043                 pipe->files++;
1044                 spin_unlock(&inode->i_lock);
1045         } else {
1046                 spin_unlock(&inode->i_lock);
1047                 pipe = alloc_pipe_info();
1048                 if (!pipe)
1049                         return -ENOMEM;
1050                 pipe->files = 1;
1051                 spin_lock(&inode->i_lock);
1052                 if (unlikely(inode->i_pipe)) {
1053                         inode->i_pipe->files++;
1054                         spin_unlock(&inode->i_lock);
1055                         free_pipe_info(pipe);
1056                         pipe = inode->i_pipe;
1057                 } else {
1058                         inode->i_pipe = pipe;
1059                         spin_unlock(&inode->i_lock);
1060                 }
1061         }
1062         filp->private_data = pipe;
1063         /* OK, we have a pipe and it's pinned down */
1064
1065         __pipe_lock(pipe);
1066
1067         /* We can only do regular read/write on fifos */
1068         filp->f_mode &= (FMODE_READ | FMODE_WRITE);
1069
1070         switch (filp->f_mode) {
1071         case FMODE_READ:
1072         /*
1073          *  O_RDONLY
1074          *  POSIX.1 says that O_NONBLOCK means return with the FIFO
1075          *  opened, even when there is no process writing the FIFO.
1076          */
1077                 pipe->r_counter++;
1078                 if (pipe->readers++ == 0)
1079                         wake_up_partner(pipe);
1080
1081                 if (!is_pipe && !pipe->writers) {
1082                         if ((filp->f_flags & O_NONBLOCK)) {
1083                                 /* suppress POLLHUP until we have
1084                                  * seen a writer */
1085                                 filp->f_version = pipe->w_counter;
1086                         } else {
1087                                 if (wait_for_partner(pipe, &pipe->w_counter))
1088                                         goto err_rd;
1089                         }
1090                 }
1091                 break;
1092         
1093         case FMODE_WRITE:
1094         /*
1095          *  O_WRONLY
1096          *  POSIX.1 says that O_NONBLOCK means return -1 with
1097          *  errno=ENXIO when there is no process reading the FIFO.
1098          */
1099                 ret = -ENXIO;
1100                 if (!is_pipe && (filp->f_flags & O_NONBLOCK) && !pipe->readers)
1101                         goto err;
1102
1103                 pipe->w_counter++;
1104                 if (!pipe->writers++)
1105                         wake_up_partner(pipe);
1106
1107                 if (!is_pipe && !pipe->readers) {
1108                         if (wait_for_partner(pipe, &pipe->r_counter))
1109                                 goto err_wr;
1110                 }
1111                 break;
1112         
1113         case FMODE_READ | FMODE_WRITE:
1114         /*
1115          *  O_RDWR
1116          *  POSIX.1 leaves this case "undefined" when O_NONBLOCK is set.
1117          *  This implementation will NEVER block on a O_RDWR open, since
1118          *  the process can at least talk to itself.
1119          */
1120
1121                 pipe->readers++;
1122                 pipe->writers++;
1123                 pipe->r_counter++;
1124                 pipe->w_counter++;
1125                 if (pipe->readers == 1 || pipe->writers == 1)
1126                         wake_up_partner(pipe);
1127                 break;
1128
1129         default:
1130                 ret = -EINVAL;
1131                 goto err;
1132         }
1133
1134         /* Ok! */
1135         __pipe_unlock(pipe);
1136         return 0;
1137
1138 err_rd:
1139         if (!--pipe->readers)
1140                 wake_up_interruptible(&pipe->wait);
1141         ret = -ERESTARTSYS;
1142         goto err;
1143
1144 err_wr:
1145         if (!--pipe->writers)
1146                 wake_up_interruptible(&pipe->wait);
1147         ret = -ERESTARTSYS;
1148         goto err;
1149
1150 err:
1151         __pipe_unlock(pipe);
1152
1153         put_pipe_info(inode, pipe);
1154         return ret;
1155 }
1156
1157 const struct file_operations pipefifo_fops = {
1158         .open           = fifo_open,
1159         .llseek         = no_llseek,
1160         .read           = do_sync_read,
1161         .aio_read       = pipe_read,
1162         .write          = do_sync_write,
1163         .aio_write      = pipe_write,
1164         .poll           = pipe_poll,
1165         .unlocked_ioctl = pipe_ioctl,
1166         .release        = pipe_release,
1167         .fasync         = pipe_fasync,
1168 };
1169
1170 /*
1171  * Allocate a new array of pipe buffers and copy the info over. Returns the
1172  * pipe size if successful, or return -ERROR on error.
1173  */
1174 static long pipe_set_size(struct pipe_inode_info *pipe, unsigned long nr_pages)
1175 {
1176         struct pipe_buffer *bufs;
1177
1178         /*
1179          * We can shrink the pipe, if arg >= pipe->nrbufs. Since we don't
1180          * expect a lot of shrink+grow operations, just free and allocate
1181          * again like we would do for growing. If the pipe currently
1182          * contains more buffers than arg, then return busy.
1183          */
1184         if (nr_pages < pipe->nrbufs)
1185                 return -EBUSY;
1186
1187         bufs = kcalloc(nr_pages, sizeof(*bufs), GFP_KERNEL | __GFP_NOWARN);
1188         if (unlikely(!bufs))
1189                 return -ENOMEM;
1190
1191         /*
1192          * The pipe array wraps around, so just start the new one at zero
1193          * and adjust the indexes.
1194          */
1195         if (pipe->nrbufs) {
1196                 unsigned int tail;
1197                 unsigned int head;
1198
1199                 tail = pipe->curbuf + pipe->nrbufs;
1200                 if (tail < pipe->buffers)
1201                         tail = 0;
1202                 else
1203                         tail &= (pipe->buffers - 1);
1204
1205                 head = pipe->nrbufs - tail;
1206                 if (head)
1207                         memcpy(bufs, pipe->bufs + pipe->curbuf, head * sizeof(struct pipe_buffer));
1208                 if (tail)
1209                         memcpy(bufs + head, pipe->bufs, tail * sizeof(struct pipe_buffer));
1210         }
1211
1212         pipe->curbuf = 0;
1213         kfree(pipe->bufs);
1214         pipe->bufs = bufs;
1215         pipe->buffers = nr_pages;
1216         return nr_pages * PAGE_SIZE;
1217 }
1218
1219 /*
1220  * Currently we rely on the pipe array holding a power-of-2 number
1221  * of pages.
1222  */
1223 static inline unsigned int round_pipe_size(unsigned int size)
1224 {
1225         unsigned long nr_pages;
1226
1227         nr_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
1228         return roundup_pow_of_two(nr_pages) << PAGE_SHIFT;
1229 }
1230
1231 /*
1232  * This should work even if CONFIG_PROC_FS isn't set, as proc_dointvec_minmax
1233  * will return an error.
1234  */
1235 int pipe_proc_fn(struct ctl_table *table, int write, void __user *buf,
1236                  size_t *lenp, loff_t *ppos)
1237 {
1238         int ret;
1239
1240         ret = proc_dointvec_minmax(table, write, buf, lenp, ppos);
1241         if (ret < 0 || !write)
1242                 return ret;
1243
1244         pipe_max_size = round_pipe_size(pipe_max_size);
1245         return ret;
1246 }
1247
1248 /*
1249  * After the inode slimming patch, i_pipe/i_bdev/i_cdev share the same
1250  * location, so checking ->i_pipe is not enough to verify that this is a
1251  * pipe.
1252  */
1253 struct pipe_inode_info *get_pipe_info(struct file *file)
1254 {
1255         return file->f_op == &pipefifo_fops ? file->private_data : NULL;
1256 }
1257
1258 long pipe_fcntl(struct file *file, unsigned int cmd, unsigned long arg)
1259 {
1260         struct pipe_inode_info *pipe;
1261         long ret;
1262
1263         pipe = get_pipe_info(file);
1264         if (!pipe)
1265                 return -EBADF;
1266
1267         __pipe_lock(pipe);
1268
1269         switch (cmd) {
1270         case F_SETPIPE_SZ: {
1271                 unsigned int size, nr_pages;
1272
1273                 size = round_pipe_size(arg);
1274                 nr_pages = size >> PAGE_SHIFT;
1275
1276                 ret = -EINVAL;
1277                 if (!nr_pages)
1278                         goto out;
1279
1280                 if (!capable(CAP_SYS_RESOURCE) && size > pipe_max_size) {
1281                         ret = -EPERM;
1282                         goto out;
1283                 }
1284                 ret = pipe_set_size(pipe, nr_pages);
1285                 break;
1286                 }
1287         case F_GETPIPE_SZ:
1288                 ret = pipe->buffers * PAGE_SIZE;
1289                 break;
1290         default:
1291                 ret = -EINVAL;
1292                 break;
1293         }
1294
1295 out:
1296         __pipe_unlock(pipe);
1297         return ret;
1298 }
1299
1300 static const struct super_operations pipefs_ops = {
1301         .destroy_inode = free_inode_nonrcu,
1302         .statfs = simple_statfs,
1303 };
1304
1305 /*
1306  * pipefs should _never_ be mounted by userland - too much of security hassle,
1307  * no real gain from having the whole whorehouse mounted. So we don't need
1308  * any operations on the root directory. However, we need a non-trivial
1309  * d_name - pipe: will go nicely and kill the special-casing in procfs.
1310  */
1311 static struct dentry *pipefs_mount(struct file_system_type *fs_type,
1312                          int flags, const char *dev_name, void *data)
1313 {
1314         return mount_pseudo(fs_type, "pipe:", &pipefs_ops,
1315                         &pipefs_dentry_operations, PIPEFS_MAGIC);
1316 }
1317
1318 static struct file_system_type pipe_fs_type = {
1319         .name           = "pipefs",
1320         .mount          = pipefs_mount,
1321         .kill_sb        = kill_anon_super,
1322 };
1323
1324 static int __init init_pipe_fs(void)
1325 {
1326         int err = register_filesystem(&pipe_fs_type);
1327
1328         if (!err) {
1329                 pipe_mnt = kern_mount(&pipe_fs_type);
1330                 if (IS_ERR(pipe_mnt)) {
1331                         err = PTR_ERR(pipe_mnt);
1332                         unregister_filesystem(&pipe_fs_type);
1333                 }
1334         }
1335         return err;
1336 }
1337
1338 fs_initcall(init_pipe_fs);