Change copyright notice from GPLv2+ to GPLv3+.
[gnulib.git] / lib / isapipe.c
1 /* Test whether a file descriptor is a pipe.
2
3    Copyright (C) 2006 Free Software Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 /* Written by Paul Eggert.  */
19
20 #include <config.h>
21
22 #include "isapipe.h"
23
24 #include <errno.h>
25 #include <stdbool.h>
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #include <unistd.h>
29
30 /* The maximum link count for pipes; (nlink_t) -1 if not known.  */
31 #ifndef PIPE_LINK_COUNT_MAX
32 # define PIPE_LINK_COUNT_MAX ((nlink_t) (-1))
33 #endif
34
35 /* Return 1 if FD is a pipe, 0 if not, -1 (setting errno) on error.
36
37    Test fairly strictly whether FD is a pipe.  lseek and checking for
38    ESPIPE does not suffice, since many non-pipe files cause lseek to
39    fail with errno == ESPIPE.  */
40
41 int
42 isapipe (int fd)
43 {
44   nlink_t pipe_link_count_max = PIPE_LINK_COUNT_MAX;
45   bool check_for_fifo = (HAVE_FIFO_PIPES == 1);
46   struct stat st;
47   int fstat_result = fstat (fd, &st);
48
49   if (fstat_result != 0)
50     return fstat_result;
51
52   /* We want something that succeeds only for pipes, but on
53      POSIX-conforming hosts S_ISFIFO succeeds for both FIFOs and pipes
54      and we know of no portable, reliable way to distinguish them in
55      general.  However, in practice pipes always have a link count <=
56      PIPE_LINK_COUNT_MAX (unless someone attaches them to the file
57      system name space using fattach, in which case they're not really
58      pipes any more), so test for that as well.
59
60      On Darwin 7.7, pipes are sockets, so check for those instead.  */
61
62   if (! ((HAVE_FIFO_PIPES == 0 || HAVE_FIFO_PIPES == 1)
63          && PIPE_LINK_COUNT_MAX != (nlink_t) -1)
64       && (S_ISFIFO (st.st_mode) | S_ISSOCK (st.st_mode)))
65     {
66       int fd_pair[2];
67       int pipe_result = pipe (fd_pair);
68       if (pipe_result != 0)
69         return pipe_result;
70       else
71         {
72           struct stat pipe_st;
73           int fstat_pipe_result = fstat (fd_pair[0], &pipe_st);
74           int fstat_pipe_errno = errno;
75           close (fd_pair[0]);
76           close (fd_pair[1]);
77           if (fstat_pipe_result != 0)
78             {
79               errno = fstat_pipe_errno;
80               return fstat_pipe_result;
81             }
82           check_for_fifo = (S_ISFIFO (pipe_st.st_mode) != 0);
83           pipe_link_count_max = pipe_st.st_nlink;
84         }
85     }
86
87   return
88     (st.st_nlink <= pipe_link_count_max
89      && (check_for_fifo ? S_ISFIFO (st.st_mode) : S_ISSOCK (st.st_mode)));
90 }