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.
13 #include <linux/slab.h>
14 #include <linux/smp_lock.h>
16 #include <linux/pipe_fs_i.h>
18 static void wait_for_partner(struct inode
* inode
, unsigned int* cnt
)
23 if(signal_pending(current
))
28 static void wake_up_partner(struct inode
* inode
)
30 wake_up_interruptible(PIPE_WAIT(*inode
));
33 static int fifo_open(struct inode
*inode
, struct file
*filp
)
37 mutex_lock(PIPE_MUTEX(*inode
));
45 /* We can only do regular read/write on fifos */
46 filp
->f_mode
&= (FMODE_READ
| FMODE_WRITE
);
48 switch (filp
->f_mode
) {
52 * POSIX.1 says that O_NONBLOCK means return with the FIFO
53 * opened, even when there is no process writing the FIFO.
55 filp
->f_op
= &read_fifo_fops
;
56 PIPE_RCOUNTER(*inode
)++;
57 if (PIPE_READERS(*inode
)++ == 0)
58 wake_up_partner(inode
);
60 if (!PIPE_WRITERS(*inode
)) {
61 if ((filp
->f_flags
& O_NONBLOCK
)) {
62 /* suppress POLLHUP until we have
64 filp
->f_version
= PIPE_WCOUNTER(*inode
);
67 wait_for_partner(inode
, &PIPE_WCOUNTER(*inode
));
68 if(signal_pending(current
))
77 * POSIX.1 says that O_NONBLOCK means return -1 with
78 * errno=ENXIO when there is no process reading the FIFO.
81 if ((filp
->f_flags
& O_NONBLOCK
) && !PIPE_READERS(*inode
))
84 filp
->f_op
= &write_fifo_fops
;
85 PIPE_WCOUNTER(*inode
)++;
86 if (!PIPE_WRITERS(*inode
)++)
87 wake_up_partner(inode
);
89 if (!PIPE_READERS(*inode
)) {
90 wait_for_partner(inode
, &PIPE_RCOUNTER(*inode
));
91 if (signal_pending(current
))
99 * POSIX.1 leaves this case "undefined" when O_NONBLOCK is set.
100 * This implementation will NEVER block on a O_RDWR open, since
101 * the process can at least talk to itself.
103 filp
->f_op
= &rdwr_fifo_fops
;
105 PIPE_READERS(*inode
)++;
106 PIPE_WRITERS(*inode
)++;
107 PIPE_RCOUNTER(*inode
)++;
108 PIPE_WCOUNTER(*inode
)++;
109 if (PIPE_READERS(*inode
) == 1 || PIPE_WRITERS(*inode
) == 1)
110 wake_up_partner(inode
);
119 mutex_unlock(PIPE_MUTEX(*inode
));
123 if (!--PIPE_READERS(*inode
))
124 wake_up_interruptible(PIPE_WAIT(*inode
));
129 if (!--PIPE_WRITERS(*inode
))
130 wake_up_interruptible(PIPE_WAIT(*inode
));
135 if (!PIPE_READERS(*inode
) && !PIPE_WRITERS(*inode
))
136 free_pipe_info(inode
);
139 mutex_unlock(PIPE_MUTEX(*inode
));
144 * Dummy default file-operations: the only thing this does
145 * is contain the open that then fills in the correct operations
146 * depending on the access mode of the file...
148 struct file_operations def_fifo_fops
= {
149 .open
= fifo_open
, /* will set read or write pipe_fops */