1 /* Copyright (C) 1998, 2000 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 Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 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 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
26 #include <sys/resource.h>
28 #include <sys/types.h>
32 #include "pty-private.h"
35 /* Return the result of ptsname_r in the buffer pointed to by PTS,
36 which should be of length BUF_LEN. If it is too long to fit in
37 this buffer, a sufficiently long buffer is allocated using malloc,
38 and returned in PTS. 0 is returned upon success, -1 otherwise. */
40 pts_name (int fd
, char **pts
, size_t buf_len
)
51 rv
= __ptsname_r (fd
, buf
, buf_len
);
53 if (rv
!= 0 || memchr (buf
, '\0', buf_len
))
54 /* We either got an error, or we succeeded and the
55 returned name fit in the buffer. */
58 /* Try again with a longer buffer. */
59 buf_len
+= buf_len
; /* Double it */
62 /* No initial buffer; start out by mallocing one. */
63 buf_len
= 128; /* First time guess. */
66 /* We've already malloced another buffer at least once. */
67 new_buf
= realloc (buf
, buf_len
);
69 new_buf
= malloc (buf_len
);
80 *pts
= buf
; /* Return buffer to the user. */
82 free (buf
); /* Free what we malloced when returning an error. */
87 /* Change the ownership and access permission of the slave pseudo
88 terminal associated with the master pseudo terminal specified
103 size_t grbuflen
= __sysconf (_SC_GETGR_R_SIZE_MAX
);
109 if (pts_name (fd
, &buf
, sizeof (_buf
)))
112 if (__xstat64 (_STAT_VER
, buf
, &st
) < 0)
115 /* Make sure that we own the device. */
117 if (st
.st_uid
!= uid
)
119 if (__chown (buf
, uid
, st
.st_gid
) < 0)
123 /* Get the group ID of the special `tty' group. */
125 /* `sysconf' does not support _SC_GETGR_R_SIZE_MAX.
126 Try a moderate value. */
128 grtmpbuf
= (char *) __alloca (grbuflen
);
129 __getgrnam_r (TTY_GROUP
, &grbuf
, grtmpbuf
, grbuflen
, &p
);
130 gid
= p
? p
->gr_gid
: __getgid ();
132 /* Make sure the group of the device is that special group. */
133 if (st
.st_gid
!= gid
)
135 if (__chown (buf
, uid
, gid
) < 0)
139 /* Make sure the permission mode is set to readable and writable by
140 the owner, and writable by the group. */
141 if ((st
.st_mode
& ACCESSPERMS
) != (S_IRUSR
|S_IWUSR
|S_IWGRP
))
143 if (__chmod (buf
, S_IRUSR
|S_IWUSR
|S_IWGRP
) < 0)
150 /* We have to use the helper program. */
158 /* Disable core dumps. */
159 struct rlimit rl
= { 0, 0 };
160 __setrlimit (RLIMIT_CORE
, &rl
);
162 /* We pase the master pseudo terminal as file descriptor PTY_FILENO. */
163 if (fd
!= PTY_FILENO
)
164 if (__dup2 (fd
, PTY_FILENO
) < 0)
167 execle (_PATH_PT_CHOWN
, basename (_PATH_PT_CHOWN
), NULL
, NULL
);
174 if (__waitpid (pid
, &w
, 0) == -1)
177 __set_errno (ENOEXEC
);
179 switch (WEXITSTATUS(w
))
188 __set_errno (EINVAL
);
191 __set_errno (EACCES
);
194 __set_errno (ENOEXEC
);
198 assert(! "getpt: internal error: invalid exit code from pt_chown");