1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
|
/*
Copyright (c) 2001 by Juliusz Chroboczek
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <termios.h>
#include <signal.h>
#include <errno.h>
#ifdef HAVE_WORKING_POLL
#ifdef HAVE_POLL_H
#include <poll.h>
#else
#include <sys/poll.h>
#endif
#undef HAVE_SELECT
#endif
#ifdef HAVE_SELECT
#if !(defined(_MINIX) || defined(__BEOS__))
#define HAVE_WORKING_SELECT 1
#endif
#endif
#ifdef HAVE_WORKING_SELECT
#if defined(HAVE_SYS_SELECT_H) && defined(HAVE_SYS_TIME_SELECT)
#include <sys/select.h>
#endif
#endif
#ifdef HAVE_PTY_H
#include <pty.h>
#endif
#ifdef HAVE_STROPTS_H
#include <stropts.h>
#endif
#ifdef HAVE_SYS_PARAM
#include <sys/param.h>
#endif
#ifdef HAVE_OPENPTY
#if defined(HAVE_UTIL_H)
#include <util.h>
#elif defined(HAVE_LIBUTIL_H)
#include <libutil.h>
#elif defined(HAVE_PTY_H)
#include <pty.h>
#endif
#endif /* HAVE_OPENPTY */
#include "sys.h"
#ifdef USE_IGNORE_RC
int ignore_unused;
#endif
#if defined(HAVE_OPENPTY)
static int opened_tty = -1;
#endif
static int saved_tio_valid = 0;
static struct termios saved_tio;
int
waitForOutput(int fd)
{
int ret = 0;
#if defined(HAVE_WORKING_POLL)
struct pollfd pfd[1];
int rc;
pfd[0].fd = fd;
pfd[0].events = POLLOUT;
pfd[0].revents = 0;
rc = poll(pfd, 1, -1);
if (rc < 0)
ret = -1;
else if (pfd[0].revents & (POLLOUT | POLLERR | POLLHUP))
ret = 1;
#elif defined(HAVE_WORKING_SELECT)
fd_set fds;
int rc;
FD_ZERO(&fds);
FD_SET(fd, &fds);
rc = select(FD_SETSIZE, NULL, &fds, NULL, NULL);
if (rc < 0)
ret = -1;
else if (FD_ISSET(fd, &fds))
ret = 1;
#else
ret = 1;
#endif
return ret;
}
int
waitForInput(int fd1, int fd2)
{
int ret = 0;
#if defined(HAVE_WORKING_POLL)
struct pollfd pfd[2];
int rc;
pfd[0].fd = fd1;
pfd[1].fd = fd2;
pfd[0].events = pfd[1].events = POLLIN;
pfd[0].revents = pfd[1].revents = 0;
rc = poll(pfd, 2, -1);
if (rc < 0) {
ret = -1;
} else {
if (pfd[0].revents & (POLLIN | POLLERR | POLLHUP))
ret |= 1;
if (pfd[1].revents & (POLLIN | POLLERR | POLLHUP))
ret |= 2;
}
#elif defined(HAVE_WORKING_SELECT)
fd_set fds;
int rc;
FD_ZERO(&fds);
FD_SET(fd1, &fds);
FD_SET(fd2, &fds);
rc = select(FD_SETSIZE, &fds, NULL, NULL, NULL);
if (rc < 0) {
ret = -1;
} else {
if (FD_ISSET(fd1, &fds))
ret |= 1;
if (FD_ISSET(fd2, &fds))
ret |= 2;
}
#else
ret = (1 | 2);
#endif
return ret;
}
int
setWindowSize(int sfd, int dfd)
{
#ifdef TIOCGWINSZ
int rc;
struct winsize ws;
rc = ioctl(sfd, TIOCGWINSZ, (char *) &ws);
if (rc < 0)
return -1;
rc = ioctl(dfd, TIOCSWINSZ, (char *) &ws);
if (rc < 0)
return -1;
#endif
return 0;
}
int
installHandler(int signum, void (*handler) (int))
{
struct sigaction sa;
sigset_t ss;
int rc;
sigemptyset(&ss);
sa.sa_handler = handler;
sa.sa_mask = ss;
sa.sa_flags = 0;
rc = sigaction(signum, &sa, NULL);
return rc;
}
int
copyTermios(int sfd, int dfd)
{
struct termios tio;
int rc;
rc = tcgetattr(sfd, &tio);
if (rc < 0)
return -1;
rc = tcsetattr(dfd, TCSAFLUSH, &tio);
if (rc < 0)
return -1;
return 0;
}
int
saveTermios(void)
{
int rc;
rc = tcgetattr(0, &saved_tio);
if (rc >= 0)
saved_tio_valid = 1;
return rc;
}
int
restoreTermios(void)
{
if (!saved_tio_valid)
return -1;
return tcsetattr(0, TCSAFLUSH, &saved_tio);
}
int
setRawTermios(void)
{
struct termios tio;
int rc;
if (!saved_tio_valid)
saveTermios();
rc = tcgetattr(0, &tio);
if (rc < 0)
return rc;
tio.c_lflag &= (unsigned) ~(ECHO | ICANON | ISIG);
tio.c_iflag &= (unsigned) ~(ICRNL | IXOFF | IXON | ISTRIP);
#ifdef ONLCR
tio.c_oflag &= (unsigned) ~ONLCR;
#endif
#ifdef OCRNL
tio.c_oflag &= (unsigned) ~OCRNL;
#endif
#ifdef ONOCR
tio.c_oflag &= (unsigned) ~ONOCR;
#endif
#ifdef VMIN
tio.c_cc[VMIN] = 0;
tio.c_cc[VTIME] = 0;
#endif
rc = tcsetattr(0, TCSAFLUSH, &tio);
if (rc < 0)
return rc;
return 0;
}
char *
my_basename(char *path)
{
char *p;
p = strrchr(path, '/');
if (!p)
p = path;
else
p++;
return p;
}
static int
fix_pty_perms(char *line)
{
int rc;
struct stat s;
rc = stat(line, &s);
if (rc < 0)
return -1;
if (s.st_uid != getuid() || s.st_gid != getgid()) {
rc = chown(line, getuid(), getgid());
if (rc < 0) {
fprintf(stderr,
"Warning: could not change ownership of tty -- "
"pty is insecure!\n");
return 0;
}
}
if ((s.st_mode & 0777) != (S_IRUSR | S_IWUSR | S_IWGRP)) {
rc = chmod(line, S_IRUSR | S_IWUSR | S_IWGRP);
if (rc < 0) {
fprintf(stderr,
"Warning: could not change permissions of tty -- "
"pty is insecure!\n");
return 0;
}
}
return 1;
}
int
allocatePty(int *pty_return, char **line_return)
{
char name[12], *line = NULL;
int pty = -1;
const char *name1 = "pqrstuvwxyzPQRST";
char buffer[80];
char *name2 = strcpy(buffer, "0123456789abcdefghijklmnopqrstuv");
const char *p1;
char *p2;
#if defined(HAVE_GRANTPT)
int rc;
#ifdef HAVE_POSIX_OPENPT
pty = posix_openpt(O_RDWR);
#else
pty = open("/dev/ptmx", O_RDWR);
#endif
if (pty < 0)
goto bsd;
rc = grantpt(pty);
if (rc < 0) {
close(pty);
goto bsd;
}
rc = unlockpt(pty);
if (rc < 0) {
close(pty);
goto bsd;
}
line = strmalloc(ptsname(pty));
if (!line) {
close(pty);
goto bsd;
}
fix_pty_perms(line);
*pty_return = pty;
*line_return = line;
return 0;
bsd:
#elif defined(HAVE_OPENPTY)
int rc;
char ttydev[80]; /* OpenBSD says at least 16 bytes */
rc = openpty(&pty, &opened_tty, ttydev, NULL, NULL);
if (rc < 0) {
close(pty);
goto bsd;
}
line = strmalloc(ttydev);
if (!line) {
close(pty);
goto bsd;
}
fix_pty_perms(line);
*pty_return = pty;
*line_return = line;
return 0;
bsd:
#endif /* HAVE_GRANTPT, etc */
strcpy(name, "/dev/pty??");
for (p1 = name1; *p1; p1++) {
name[8] = *p1;
for (p2 = name2; *p2; p2++) {
name[9] = *p2;
pty = open(name, O_RDWR);
if (pty >= 0)
goto found;
/* Systems derived from 4.4BSD differ in their pty names,
so ENOENT doesn't necessarily imply we're done. */
continue;
}
}
goto bail;
found:
if ((line = strmalloc(name)) != 0) {
line[5] = 't';
fix_pty_perms(line);
*pty_return = pty;
*line_return = line;
return 0;
}
bail:
if (pty >= 0)
close(pty);
if (line)
free(line);
return -1;
}
int
openTty(char *line)
{
int rc;
int tty = -1;
tty = open(line, O_RDWR
#if defined(TIOCSCTTY) && defined(O_NOCTTY)
/*
* Do not make this our controlling terminal, yet just in case it fails
* in some intermediate state. But do not add this flag if we haven't
* the corresponding ioctl.
*/
| O_NOCTTY
#endif
);
if (tty < 0)
goto bail;
#if defined(HAVE_OPENPTY)
if (opened_tty >= 0) {
close(opened_tty);
opened_tty = -1;
}
#endif
#ifdef TIOCSCTTY
/*
* Now that we've successfully opened the terminal, make it the controlling
* terminal. This call works only if the process does not already have a
* controlling terminal.
*
* Cygwin as of 2009/10/12 lacks this call, but has O_NOCTTY.
*/
rc = ioctl(tty, TIOCSCTTY, (char *) 0);
if (rc < 0) {
goto bail;
}
#endif
#if defined(I_PUSH) && (defined(SVR4) || defined(__SVR4))
rc = ioctl(tty, I_PUSH, "ptem");
if (rc < 0)
goto bail;
rc = ioctl(tty, I_PUSH, "ldterm");
if (rc < 0)
goto bail;
rc = ioctl(tty, I_PUSH, "ttcompat");
if (rc < 0)
goto bail;
#endif
return tty;
bail:
if (tty >= 0)
close(tty);
return -1;
}
/* Post-4.4 BSD systems have POSIX semantics (_POSIX_SAVED_IDS
or not, depending on the version). 4.3BSD and Minix do not have
saved IDs at all, so there's no issue. */
int
droppriv(void)
{
int rc;
#if defined(_POSIX_SAVED_IDS)
uid_t uid = getuid();
uid_t euid = geteuid();
gid_t gid = getgid();
gid_t egid = getegid();
if ((uid != euid || gid != egid) && euid != 0) {
errno = ENOSYS;
rc = -1;
} else {
rc = setuid(uid);
if (rc >= 0)
rc = setgid(gid);
}
#elif defined(__NetBSD__) || defined(__FreeBSD__) || defined(_MINIX)
rc = setuid(getuid());
if (rc >= 0) {
rc = setgid(getgid());
}
#else
uid_t uid = getuid();
uid_t euid = geteuid();
gid_t gid = getgid();
gid_t egid = getegid();
if (uid != euid || gid != egid) {
errno = ENOSYS;
rc = -1;
} else {
rc = 0;
}
#endif
return rc;
}
char *
strmalloc(const char *value)
{
char *result = 0;
if (value != 0) {
#ifdef HAVE_STRDUP
result = strdup(value);
#else
result = malloc(strlen(value) + 1);
if (result != 0)
strcpy(result, value);
#endif
}
return result;
}
#ifdef NO_LEAKS
void
ExitProgram(int code)
{
luit_leaks();
iso2022_leaks();
charset_leaks();
exit(code);
}
#endif
|