blob: 2c27f56d730410ae99f664b25db21b0d113b4c88 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/fifo.c
3 *
4 * written by Paul H. Hargrove
5 *
6 * Fixes:
7 * 10-06-1999, AV: fixed OOM handling in fifo_open(), moved
8 * initialization there, switched to external
9 * allocation of pipe_inode_info.
10 */
11
12#include <linux/mm.h>
13#include <linux/slab.h>
14#include <linux/smp_lock.h>
15#include <linux/fs.h>
16#include <linux/pipe_fs_i.h>
17
Ingo Molnar3a326a22006-04-10 15:18:35 +020018static void wait_for_partner(struct inode* inode, unsigned int *cnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070019{
20 int cur = *cnt;
Ingo Molnar3a326a22006-04-10 15:18:35 +020021
22 while (cur == *cnt) {
23 pipe_wait(inode->i_pipe);
24 if (signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 break;
26 }
27}
28
29static void wake_up_partner(struct inode* inode)
30{
Ingo Molnar9aeedfc2006-04-11 13:53:10 +020031 wake_up_interruptible(&inode->i_pipe->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032}
33
34static int fifo_open(struct inode *inode, struct file *filp)
35{
36 int ret;
37
Ingo Molnar9aeedfc2006-04-11 13:53:10 +020038 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 if (!inode->i_pipe) {
40 ret = -ENOMEM;
Ingo Molnar3a326a22006-04-10 15:18:35 +020041 inode->i_pipe = alloc_pipe_info(inode);
42 if (!inode->i_pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 goto err_nocleanup;
44 }
45 filp->f_version = 0;
46
47 /* We can only do regular read/write on fifos */
48 filp->f_mode &= (FMODE_READ | FMODE_WRITE);
49
50 switch (filp->f_mode) {
51 case 1:
52 /*
53 * O_RDONLY
54 * POSIX.1 says that O_NONBLOCK means return with the FIFO
55 * opened, even when there is no process writing the FIFO.
56 */
57 filp->f_op = &read_fifo_fops;
Ingo Molnar9aeedfc2006-04-11 13:53:10 +020058 inode->i_pipe->r_counter++;
59 if (inode->i_pipe->readers++ == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 wake_up_partner(inode);
61
Ingo Molnar9aeedfc2006-04-11 13:53:10 +020062 if (!inode->i_pipe->writers) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 if ((filp->f_flags & O_NONBLOCK)) {
64 /* suppress POLLHUP until we have
65 * seen a writer */
Ingo Molnar9aeedfc2006-04-11 13:53:10 +020066 filp->f_version = inode->i_pipe->w_counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 } else
68 {
Ingo Molnar9aeedfc2006-04-11 13:53:10 +020069 wait_for_partner(inode, &inode->i_pipe->w_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 if(signal_pending(current))
71 goto err_rd;
72 }
73 }
74 break;
75
76 case 2:
77 /*
78 * O_WRONLY
79 * POSIX.1 says that O_NONBLOCK means return -1 with
80 * errno=ENXIO when there is no process reading the FIFO.
81 */
82 ret = -ENXIO;
Ingo Molnar9aeedfc2006-04-11 13:53:10 +020083 if ((filp->f_flags & O_NONBLOCK) && !inode->i_pipe->readers)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 goto err;
85
86 filp->f_op = &write_fifo_fops;
Ingo Molnar9aeedfc2006-04-11 13:53:10 +020087 inode->i_pipe->w_counter++;
88 if (!inode->i_pipe->writers++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 wake_up_partner(inode);
90
Ingo Molnar9aeedfc2006-04-11 13:53:10 +020091 if (!inode->i_pipe->readers) {
92 wait_for_partner(inode, &inode->i_pipe->r_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 if (signal_pending(current))
94 goto err_wr;
95 }
96 break;
97
98 case 3:
99 /*
100 * O_RDWR
101 * POSIX.1 leaves this case "undefined" when O_NONBLOCK is set.
102 * This implementation will NEVER block on a O_RDWR open, since
103 * the process can at least talk to itself.
104 */
105 filp->f_op = &rdwr_fifo_fops;
106
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200107 inode->i_pipe->readers++;
108 inode->i_pipe->writers++;
109 inode->i_pipe->r_counter++;
110 inode->i_pipe->w_counter++;
111 if (inode->i_pipe->readers == 1 || inode->i_pipe->writers == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 wake_up_partner(inode);
113 break;
114
115 default:
116 ret = -EINVAL;
117 goto err;
118 }
119
120 /* Ok! */
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200121 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return 0;
123
124err_rd:
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200125 if (!--inode->i_pipe->readers)
126 wake_up_interruptible(&inode->i_pipe->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 ret = -ERESTARTSYS;
128 goto err;
129
130err_wr:
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200131 if (!--inode->i_pipe->writers)
132 wake_up_interruptible(&inode->i_pipe->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 ret = -ERESTARTSYS;
134 goto err;
135
136err:
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200137 if (!inode->i_pipe->readers && !inode->i_pipe->writers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 free_pipe_info(inode);
139
140err_nocleanup:
Ingo Molnar9aeedfc2006-04-11 13:53:10 +0200141 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 return ret;
143}
144
145/*
146 * Dummy default file-operations: the only thing this does
147 * is contain the open that then fills in the correct operations
148 * depending on the access mode of the file...
149 */
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800150const struct file_operations def_fifo_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 .open = fifo_open, /* will set read or write pipe_fops */
152};