4 * written by Paul H. Hargrove
7 * 10-06-1999, AV: fixed OOM handling in fifo_open(), moved
8 * initialization there, switched to external
9 * allocation of pipe_inode_info.
14 #include <linux/sched.h>
15 #include <linux/pipe_fs_i.h>
17 static int wait_for_partner(struct inode
* inode
, unsigned int *cnt
)
22 pipe_wait(inode
->i_pipe
);
23 if (signal_pending(current
))
26 return cur
== *cnt
? -ERESTARTSYS
: 0;
29 static void wake_up_partner(struct inode
* inode
)
31 wake_up_interruptible(&inode
->i_pipe
->wait
);
34 static int fifo_open(struct inode
*inode
, struct file
*filp
)
36 struct pipe_inode_info
*pipe
;
39 mutex_lock(&inode
->i_mutex
);
43 pipe
= alloc_pipe_info(inode
);
50 /* We can only do regular read/write on fifos */
51 filp
->f_mode
&= (FMODE_READ
| FMODE_WRITE
);
53 switch (filp
->f_mode
) {
57 * POSIX.1 says that O_NONBLOCK means return with the FIFO
58 * opened, even when there is no process writing the FIFO.
60 filp
->f_op
= &read_pipefifo_fops
;
62 if (pipe
->readers
++ == 0)
63 wake_up_partner(inode
);
66 if ((filp
->f_flags
& O_NONBLOCK
)) {
67 /* suppress POLLHUP until we have
69 filp
->f_version
= pipe
->w_counter
;
71 if (wait_for_partner(inode
, &pipe
->w_counter
))
80 * POSIX.1 says that O_NONBLOCK means return -1 with
81 * errno=ENXIO when there is no process reading the FIFO.
84 if ((filp
->f_flags
& O_NONBLOCK
) && !pipe
->readers
)
87 filp
->f_op
= &write_pipefifo_fops
;
90 wake_up_partner(inode
);
93 if (wait_for_partner(inode
, &pipe
->r_counter
))
98 case FMODE_READ
| FMODE_WRITE
:
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.
105 filp
->f_op
= &rdwr_pipefifo_fops
;
111 if (pipe
->readers
== 1 || pipe
->writers
== 1)
112 wake_up_partner(inode
);
121 mutex_unlock(&inode
->i_mutex
);
125 if (!--pipe
->readers
)
126 wake_up_interruptible(&pipe
->wait
);
131 if (!--pipe
->writers
)
132 wake_up_interruptible(&pipe
->wait
);
137 if (!pipe
->readers
&& !pipe
->writers
)
138 free_pipe_info(inode
);
141 mutex_unlock(&inode
->i_mutex
);
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...
150 const struct file_operations def_fifo_fops
= {
151 .open
= fifo_open
, /* will set read_ or write_pipefifo_fops */
152 .llseek
= noop_llseek
,