Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / unix / sysv / linux / getpt.c
blobcea2fa6f3b57f642c21613b098c45c5c4ed83017
1 /* Copyright (C) 1998-2014 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Zack Weinberg <zack@rabi.phys.columbia.edu>, 1998.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library 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 GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <errno.h>
20 #include <fcntl.h>
21 #include <stdlib.h>
22 #include <unistd.h>
23 #include <paths.h>
24 #include <sys/statfs.h>
26 #include "linux_fsinfo.h"
28 /* Path to the master pseudo terminal cloning device. */
29 #define _PATH_DEVPTMX _PATH_DEV "ptmx"
30 /* Directory containing the UNIX98 pseudo terminals. */
31 #define _PATH_DEVPTS _PATH_DEV "pts"
33 /* Prototype for function that opens BSD-style master pseudo-terminals. */
34 int __bsd_getpt (void);
36 /* Open a master pseudo terminal and return its file descriptor. */
37 int
38 __posix_openpt (oflag)
39 int oflag;
41 static int have_no_dev_ptmx;
42 int fd;
44 if (!have_no_dev_ptmx)
46 fd = __open (_PATH_DEVPTMX, oflag);
47 if (fd != -1)
49 struct statfs fsbuf;
50 static int devpts_mounted;
52 /* Check that the /dev/pts filesystem is mounted
53 or if /dev is a devfs filesystem (this implies /dev/pts). */
54 if (devpts_mounted
55 || (__statfs (_PATH_DEVPTS, &fsbuf) == 0
56 && fsbuf.f_type == DEVPTS_SUPER_MAGIC)
57 || (__statfs (_PATH_DEV, &fsbuf) == 0
58 && fsbuf.f_type == DEVFS_SUPER_MAGIC))
60 /* Everything is ok. */
61 devpts_mounted = 1;
62 return fd;
65 /* If /dev/pts is not mounted then the UNIX98 pseudo terminals
66 are not usable. */
67 __close (fd);
68 have_no_dev_ptmx = 1;
69 __set_errno (ENOENT);
71 else
73 if (errno == ENOENT || errno == ENODEV)
74 have_no_dev_ptmx = 1;
75 else
76 return -1;
79 else
80 __set_errno (ENOENT);
82 return -1;
84 weak_alias (__posix_openpt, posix_openpt)
87 int
88 __getpt (void)
90 int fd = __posix_openpt (O_RDWR);
91 if (fd == -1)
92 fd = __bsd_getpt ();
93 return fd;
97 #define PTYNAME1 "pqrstuvwxyzabcde";
98 #define PTYNAME2 "0123456789abcdef";
100 #define __getpt __bsd_getpt
101 #define HAVE_POSIX_OPENPT
102 #include <sysdeps/unix/bsd/getpt.c>