posix_openpt: Support for OpenBSD.
[gnulib.git] / lib / posix_openpt.c
1 /* Open the master side of a pseudo-terminal.
2    Copyright (C) 2010-2011 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 #include <config.h>
18
19 /* Specification.  */
20 #include <stdlib.h>
21
22 #include <errno.h>
23 #include <fcntl.h>
24 #if defined __OpenBSD__
25 # include <sys/ioctl.h>
26 # include <sys/tty.h>
27 #endif
28
29 int
30 posix_openpt (int flags)
31 {
32   int master;
33
34 #ifdef _AIX /* AIX */
35
36   master = open ("/dev/ptc", flags);
37
38 #elif (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__ /* mingw */
39
40   /* Mingw lacks pseudo-terminals altogether.  */
41   master = -1;
42   errno = ENOSYS;
43
44 #elif defined __OpenBSD__
45
46   /* On OpenBSD, master and slave of a pseudo-terminal are allocated together,
47      by opening /dev/ptm and applying the PTMGET ioctl to it.  */
48   int fd;
49   struct ptmget data;
50
51   fd = open (PATH_PTMDEV, O_RDWR);
52   if (fd >= 0)
53     {
54       if (ioctl (fd, PTMGET, &data) >= 0)
55         {
56           master = data.cfd;
57           close (data.sfd);
58           close (fd);
59         }
60       else
61         {
62           int saved_errno = errno;
63           close (fd);
64           errno = saved_errno;
65           master = -1;
66         }
67     }
68   else
69     master = -1;
70
71 #else /* MacOS X, Minix, HP-UX, IRIX, OSF/1, Solaris 9, Cygwin 1.5 */
72
73   /* Most systems that lack posix_openpt() have /dev/ptmx.  */
74   master = open ("/dev/ptmx", flags);
75
76 #endif
77
78   return master;
79 }