Define bit_SSE2 and index_SSE2.
[glibc.git] / sysdeps / unix / grantpt.c
blob260e8273f830a0e96e67cc428aef461167291ca6
1 /* Copyright (C) 1998, 2000, 2001, 2002, 2009 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, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <assert.h>
21 #include <errno.h>
22 #include <fcntl.h>
23 #include <grp.h>
24 #include <limits.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <sys/resource.h>
28 #include <sys/stat.h>
29 #include <sys/types.h>
30 #include <sys/wait.h>
31 #include <unistd.h>
33 #include "pty-private.h"
36 /* Return the result of ptsname_r in the buffer pointed to by PTS,
37 which should be of length BUF_LEN. If it is too long to fit in
38 this buffer, a sufficiently long buffer is allocated using malloc,
39 and returned in PTS. 0 is returned upon success, -1 otherwise. */
40 static int
41 pts_name (int fd, char **pts, size_t buf_len, struct stat64 *stp)
43 int rv;
44 char *buf = *pts;
46 for (;;)
48 char *new_buf;
50 if (buf_len)
52 rv = __ptsname_internal (fd, buf, buf_len, stp);
53 if (rv != 0)
55 if (rv == ENOTTY)
56 /* ptsname_r returns with ENOTTY to indicate
57 a descriptor not referring to a pty master.
58 For this condition, grantpt must return EINVAL. */
59 rv = EINVAL;
60 errno = rv; /* Not necessarily set by __ptsname_r. */
61 break;
64 if (memchr (buf, '\0', buf_len))
65 /* We succeeded and the returned name fit in the buffer. */
66 break;
68 /* Try again with a longer buffer. */
69 buf_len += buf_len; /* Double it */
71 else
72 /* No initial buffer; start out by mallocing one. */
73 buf_len = 128; /* First time guess. */
75 if (buf != *pts)
76 /* We've already malloced another buffer at least once. */
77 new_buf = (char *) realloc (buf, buf_len);
78 else
79 new_buf = (char *) malloc (buf_len);
80 if (! new_buf)
82 rv = -1;
83 __set_errno (ENOMEM);
84 break;
86 buf = new_buf;
89 if (rv == 0)
90 *pts = buf; /* Return buffer to the user. */
91 else if (buf != *pts)
92 free (buf); /* Free what we malloced when returning an error. */
94 return rv;
97 /* Change the ownership and access permission of the slave pseudo
98 terminal associated with the master pseudo terminal specified
99 by FD. */
101 grantpt (int fd)
103 int retval = -1;
104 #ifdef PATH_MAX
105 char _buf[PATH_MAX];
106 #else
107 char _buf[512];
108 #endif
109 char *buf = _buf;
110 struct stat64 st;
112 if (__builtin_expect (pts_name (fd, &buf, sizeof (_buf), &st), 0))
114 int save_errno = errno;
116 /* Check, if the file descriptor is valid. pts_name returns the
117 wrong errno number, so we cannot use that. */
118 if (__libc_fcntl (fd, F_GETFD) == -1 && errno == EBADF)
119 return -1;
121 /* If the filedescriptor is no TTY, grantpt has to set errno
122 to EINVAL. */
123 if (save_errno == ENOTTY)
124 __set_errno (EINVAL);
125 else
126 __set_errno (save_errno);
128 return -1;
131 /* Make sure that we own the device. */
132 uid_t uid = __getuid ();
133 if (st.st_uid != uid)
135 if (__chown (buf, uid, st.st_gid) < 0)
136 goto helper;
139 static int tty_gid = -1;
140 if (__builtin_expect (tty_gid == -1, 0))
142 char *grtmpbuf;
143 struct group grbuf;
144 size_t grbuflen = __sysconf (_SC_GETGR_R_SIZE_MAX);
145 struct group *p;
147 /* Get the group ID of the special `tty' group. */
148 if (grbuflen == (size_t) -1L)
149 /* `sysconf' does not support _SC_GETGR_R_SIZE_MAX.
150 Try a moderate value. */
151 grbuflen = 1024;
152 grtmpbuf = (char *) __alloca (grbuflen);
153 __getgrnam_r (TTY_GROUP, &grbuf, grtmpbuf, grbuflen, &p);
154 if (p != NULL)
155 tty_gid = p->gr_gid;
157 gid_t gid = tty_gid == -1 ? __getgid () : tty_gid;
159 /* Make sure the group of the device is that special group. */
160 if (st.st_gid != gid)
162 if (__chown (buf, uid, gid) < 0)
163 goto helper;
166 /* Make sure the permission mode is set to readable and writable by
167 the owner, and writable by the group. */
168 if ((st.st_mode & ACCESSPERMS) != (S_IRUSR|S_IWUSR|S_IWGRP))
170 if (__chmod (buf, S_IRUSR|S_IWUSR|S_IWGRP) < 0)
171 goto helper;
174 retval = 0;
175 goto cleanup;
177 /* We have to use the helper program. */
178 helper:;
180 pid_t pid = __fork ();
181 if (pid == -1)
182 goto cleanup;
183 else if (pid == 0)
185 /* Disable core dumps. */
186 struct rlimit rl = { 0, 0 };
187 __setrlimit (RLIMIT_CORE, &rl);
189 /* We pass the master pseudo terminal as file descriptor PTY_FILENO. */
190 if (fd != PTY_FILENO)
191 if (__dup2 (fd, PTY_FILENO) < 0)
192 _exit (FAIL_EBADF);
194 #ifdef CLOSE_ALL_FDS
195 CLOSE_ALL_FDS ();
196 #endif
198 execle (_PATH_PT_CHOWN, basename (_PATH_PT_CHOWN), NULL, NULL);
199 _exit (FAIL_EXEC);
201 else
203 int w;
205 if (__waitpid (pid, &w, 0) == -1)
206 goto cleanup;
207 if (!WIFEXITED (w))
208 __set_errno (ENOEXEC);
209 else
210 switch (WEXITSTATUS (w))
212 case 0:
213 retval = 0;
214 break;
215 case FAIL_EBADF:
216 __set_errno (EBADF);
217 break;
218 case FAIL_EINVAL:
219 __set_errno (EINVAL);
220 break;
221 case FAIL_EACCES:
222 __set_errno (EACCES);
223 break;
224 case FAIL_EXEC:
225 __set_errno (ENOEXEC);
226 break;
227 case FAIL_ENOMEM:
228 __set_errno (ENOMEM);
229 break;
231 default:
232 assert(! "getpt: internal error: invalid exit code from pt_chown");
236 cleanup:
237 if (buf != _buf)
238 free (buf);
240 return retval;