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 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241
|
/*
* libslack - https://libslack.org
*
* Copyright (C) 1999-2004, 2010, 2020-2023 raf <raf@raf.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <https://www.gnu.org/licenses/>.
*
* 20230824 raf <raf@raf.org>
*/
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
* All rights reserved
* Allocating a pseudo-terminal, and making it the controlling tty.
*
* As far as I am concerned, the code I have written for this software
* can be used freely for any purpose. Any derived versions of this
* software must be clearly marked as such, and if the derived work is
* incompatible with the protocol description in the RFC file, it must be
* called by a name other than "ssh" or "Secure Shell".
*/
/*
* 20010930 raf <raf@raf.org>
* Librarified the code (no calls to fatal(), return errors instead)
* Made pty device name truncation an error (rather than ignoring it)
* Made it thread safe on some systems (use ttyname_r/ptsname_r)
* Added a manpage (perldoc -F pseudo.c)
* Made pty_allocate() more like openpty() but safe (called it pty_open())
* Added safe version of forkpty() (called it pty_fork())
*
* 20100612 raf <raf@raf.org>
* pty_open: pty_user_fd often has ECHO on by default these days so turn it off
*
* 20201111 raf <raf@raf.org>
* pty_make_controlling_tty(): Removed vhangup() which caused problems when
* it succeeded (i.e. when run as root). It broke test code that used pty_fork().
* Replaced racist pty jargon in code and documentation with descriptive terms.
*/
/*
=head1 NAME
I<libslack(pseudo)> - pseudo terminal module
=head1 SYNOPSIS
#include <slack/std.h>
#include <slack/pseudo.h>
int pty_open(int *pty_user_fd, int *pty_process_fd, char *pty_device_name, size_t pty_device_name_size, const struct termios *pty_device_termios, const struct winsize *pty_device_winsize);
int pty_release(const char *pty_device_name);
int pty_set_owner(const char *pty_device_name, uid_t uid);
int pty_make_controlling_tty(int *pty_process_fd, const char *pty_device_name);
int pty_change_window_size(int pty_user_fd, int row, int col, int xpixel, int ypixel);
pid_t pty_fork(int *pty_user_fd, char *pty_device_name, size_t pty_device_name_size, const struct termios *pty_device_termios, const struct winsize *pty_device_winsize);
=head1 DESCRIPTION
This module provides functions for opening pseudo terminals, changing their
ownership, making them the controlling terminal, changing their window size
and forking a new process whose standard input, output, and error are
attached to a pseudo terminal which is made the controlling terminal.
=over 4
=cut
*/
#ifndef _BSD_SOURCE
#define _BSD_SOURCE /* For strlcpy() on OpenBSD-4.7 */
#endif
#ifndef _DEFAULT_SOURCE
#define _DEFAULT_SOURCE /* New name for _BSD_SOURCE */
#endif
#ifndef __BSD_VISIBLE
#define __BSD_VISIBLE 1 /* For strlcpy() on FreeBSD-8.0 */
#endif
#ifndef _GNU_SOURCE
#define _GNU_SOURCE /* For ptsname_r() on Linux */
#endif
#ifndef _NETBSD_SOURCE
#define _NETBSD_SOURCE /* For strlcpy() and so <utmpx.h> (included by <util.h>) isn't broken on NetBSD-5.0.2 */
#endif
#include "config.h"
#include "std.h"
#include <fcntl.h>
#include <grp.h>
#include <pwd.h>
#ifdef HAVE_PTY_H
#include <pty.h>
#endif
#ifdef HAVE_UTIL_H
#include <util.h>
#endif
#ifdef HAVE_LIBUTIL_H
#include <libutil.h>
#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include "pseudo.h"
#ifndef HAVE_STRLCPY
#include "str.h"
#endif
#ifndef TEST
/* Pty allocated with _getpty gets broken if we do I_PUSH:es to it */
#if defined(HAVE__GETPTY) || defined(HAVE_OPENPTY)
#undef HAVE_DEV_PTMX
#endif
#ifdef HAVE_PTY_H
#include <pty.h>
#endif
#if defined(HAVE_DEV_PTMX) && defined(HAVE_SYS_STROPTS_H)
#include <sys/stropts.h>
#endif
#if 0
/*
** Don't use vhangup(). It is only available on Linux anyway
** and it requires root privileges (CAP_SYS_TTY_CONFIG).
** And, when it works, it causes some coproc module tests
** that use pty_fork() to fail when run as root (but only
** since we started turning off echo mode on pty_user_fd).
** And it doesn't make sense to virtually hangup the terminal
** as soon as we've made it our controlling terminal. I don't
** understand what the point ever was. The documentation for
** vhangup() says that it arranges for other users to have a
** "clean" terminal at login time without explaining what that
** means. I doubt that it's relevant here.
*/
#if defined(HAVE_VHANGUP) && !defined(HAVE_DEV_PTMX)
#define USE_VHANGUP
#endif
#endif
#ifndef O_NOCTTY
#define O_NOCTTY 0
#endif
#ifndef PATH_TTY
#define PATH_TTY "/dev/tty"
#endif
#define set_errno(errnum) (errno = (errnum), -1)
/*
=item C<int pty_open(int *pty_user_fd, int *pty_process_fd, char *pty_device_name, size_t pty_device_name_size, const struct termios *pty_device_termios, const struct winsize *pty_device_winsize)>
A safe version of I<openpty(3)>. Allocates and opens a pseudo terminal. The
new file descriptor for the user (or controlling process) side of the pseudo
terminal is stored in C<*pty_user_fd>. The new file descriptor for the
process side of the pseudo terminal is stored in C<*pty_process_fd>. The
device name of the process side of the pseudo terminal is stored in the
buffer pointed to by C<pty_device_name> which must be able to hold at least
C<64> characters. C<pty_device_name_size> is the size of the buffer pointed
to by C<pty_device_name>. No more than C<pty_device_name_size> bytes will be
written into the buffer pointed to by C<pty_device_name>, including the
terminating C<nul> byte. If C<pty_device_termios> is not null, it is passed
to I<tcsetattr(3)> with the command C<TCSANOW> to set the terminal
attributes of the device on the process side of the pseudo terminal. If
C<pty_device_winsize> is not null, it is passed to I<ioctl(2)> with the
command C<TIOCSWINSZ> to set the window size of the device on the process
side of the pseudo terminal. On success, returns C<0>. On error, returns
C<-1> with C<errno> set appropriately.
=cut
*/
static int groupname2gid(const char *groupname)
{
FILE *group = fopen("/etc/group", "r");
char line[BUFSIZ], *gid;
int ret = -1;
while (fgets(line, BUFSIZ, group))
{
if (!strncmp(line, "tty:", 4))
{
if ((gid = strchr(line + 4, ':')))
ret = atoi(gid + 1);
break;
}
}
fclose(group);
return ret;
}
static int uid2gid(uid_t uid)
{
FILE *passwd = fopen("/etc/passwd", "r");
char line[BUFSIZ], *ptr;
int ret = -1;
while (fgets(line, BUFSIZ, passwd))
{
if ((ptr = strchr(line, ':')) && (ptr = strchr(ptr + 1, ':')) &&
atoi(ptr + 1) == (int)uid && (ptr = strchr(ptr + 1, ':')))
{
ret = atoi(ptr + 1);
break;
}
}
fclose(passwd);
return ret;
}
int pty_open(int *pty_user_fd, int *pty_process_fd, char *pty_device_name, size_t pty_device_name_size, const struct termios *pty_device_termios, const struct winsize *pty_device_winsize)
{
struct termios pty_user_termios[1];
#if defined(HAVE_OPENPTY) || defined(BSD4_4)
/* openpty(3) exists in OSF/1 and some other os'es */
#ifdef HAVE_TTYNAME_R
char buf[64], *name = buf;
int err;
#else
char *name;
#endif
if (!pty_user_fd || !pty_process_fd || !pty_device_name || pty_device_name_size < 64)
return set_errno(EINVAL);
/* Open both pty descriptors, set ownership and permissions */
if (openpty(pty_user_fd, pty_process_fd, NULL, NULL, NULL) == -1)
return -1;
/* Retrieve the device name of the process side of the pty */
#ifdef HAVE_TTYNAME_R
if ((err = ttyname_r(*pty_process_fd, buf, 64)))
{
close(*pty_user_fd);
close(*pty_process_fd);
return set_errno(err);
}
#else
if (!(name = ttyname(*pty_process_fd)))
{
close(*pty_user_fd);
close(*pty_process_fd);
return set_errno(ENOTTY);
}
#endif
/* Return it to the caller */
if (strlcpy(pty_device_name, name, pty_device_name_size) >= pty_device_name_size)
{
close(*pty_user_fd);
close(*pty_process_fd);
return set_errno(ENOSPC);
}
#else /* HAVE_OPENPTY */
#ifdef HAVE__GETPTY
/*
* _getpty(3) exists in SGI Irix 4.x, 5.x & 6.x -- it generates more
* pty's automagically when needed
*/
char *name;
if (!pty_user_fd || !pty_process_fd || !pty_device_name || pty_device_name_size < 64)
return set_errno(EINVAL);
/* Open the pty user file descriptor and get the pty's device name */
if (!(name = _getpty(pty_user_fd, O_RDWR, 0622, 0)))
return -1;
/* Return it to the caller */
if (strlcpy(pty_device_name, name, pty_device_name_size) >= pty_device_name_size)
{
close(*pty_user_fd);
return set_errno(ENOSPC);
}
/* Open the pty process file descriptor */
if ((*pty_process_fd = open(pty_device_name, O_RDWR | O_NOCTTY)) == -1)
{
close(*pty_user_fd);
return -1;
}
#else /* HAVE__GETPTY */
#if defined(HAVE_DEV_PTMX)
/*
* This code is used e.g. on Solaris 2.x. (Note that Solaris 2.3
* also has bsd-style ptys, but they simply do not work.)
*/
#ifdef HAVE_PTSNAME_R
char buf[64], *name = buf;
int err;
#else
char *name;
#endif
if (!pty_user_fd || !pty_process_fd || !pty_device_name || pty_device_name_size < 64)
return set_errno(EINVAL);
/* Open the pty user file descriptor */
if ((*pty_user_fd = open("/dev/ptmx", O_RDWR | O_NOCTTY)) == -1)
return -1;
/* Set pty device ownership and permissions to the real uid of the process */
if (grantpt(*pty_user_fd) == -1)
{
close(*pty_user_fd);
return -1;
}
/* Unlock the pty device so it can be opened */
if (unlockpt(*pty_user_fd) == -1)
{
close(*pty_user_fd);
return -1;
}
/* Retrieve the device name of the process side of the pty */
#ifdef HAVE_PTSNAME_R
if ((err = ptsname_r(*pty_user_fd, buf, 64)))
{
close(*pty_user_fd);
return set_errno(err);
}
#else
if (!(name = ptsname(*pty_user_fd)))
{
close(*pty_user_fd);
return set_errno(ENOTTY);
}
#endif
/* Return it to the caller */
if (strlcpy(pty_device_name, name, pty_device_name_size) >= pty_device_name_size)
{
close(*pty_user_fd);
return set_errno(ENOSPC);
}
/* Open the pty process file descriptor */
if ((*pty_process_fd = open(pty_device_name, O_RDWR | O_NOCTTY)) == -1)
{
close(*pty_user_fd);
return -1;
}
/* Turn the pty process file descriptor into a terminal */
#ifndef HAVE_CYGWIN
/*
* Push the appropriate streams modules, as described in Solaris pts(7).
* HP-UX pts(7) doesn't have ttcompat module.
*/
if (ioctl(*pty_process_fd, I_PUSH, "ptem") == -1)
{
close(*pty_user_fd);
close(*pty_process_fd);
return -1;
}
if (ioctl(*pty_process_fd, I_PUSH, "ldterm") == -1)
{
close(*pty_user_fd);
close(*pty_process_fd);
return -1;
}
#ifndef __hpux
if (ioctl(*pty_process_fd, I_PUSH, "ttcompat") == -1)
{
close(*pty_user_fd);
close(*pty_process_fd);
return -1;
}
#endif
#endif
#else /* HAVE_DEV_PTMX */
#ifdef HAVE_DEV_PTS_AND_PTC
/* AIX-style pty code */
#ifdef HAVE_TTYNAME_R
char buf[64], *name = buf;
int err;
#else
char *name;
#endif
if (!pty_user_fd || !pty_process_fd || !pty_device_name || pty_device_name_size < 64)
return set_errno(EINVAL);
/* Open the pty user file descriptor */
if ((*pty_user_fd = open("/dev/ptc", O_RDWR | O_NOCTTY)) == -1)
return -1;
/* Retrieve the device name of the process side of the pty */
#ifdef HAVE_TTYNAME_R
if ((err = ttyname_r(*pty_user_fd, buf, 64)))
{
close(*pty_user_fd);
return set_errno(err);
}
#else
if (!(name = ttyname(*pty_user_fd)))
{
close(*pty_user_fd);
return set_errno(ENOTTY);
}
#endif
/* Return it to the caller */
if (strlcpy(pty_device_name, name, pty_device_name_size) >= pty_device_name_size)
{
close(*pty_user_fd);
return set_errno(ENOSPC);
}
/* Open the pty process file descriptor */
if ((*pty_process_fd = open(name, O_RDWR | O_NOCTTY)) == -1)
{
close(*pty_user_fd);
return -1;
}
#else /* HAVE_DEV_PTS_AND_PTC */
/* BSD-style pty code */
const char * const ptymajors = "pqrstuvwxyzabcdefghijklmnoABCDEFGHIJKLMNOPQRSTUVWXYZ";
const char * const ptyminors = "0123456789abcdef";
int num_minors = strlen(ptyminors);
int num_ptys = strlen(ptymajors) * num_minors;
char buf[64];
int found = 0;
int i;
/* Identify the first available pty user device */
for (i = 0; !found && i < num_ptys; i++)
{
snprintf(buf, sizeof buf, "/dev/pty%c%c", ptymajors[i / num_minors], ptyminors[i % num_minors]);
snprintf(pty_device_name, pty_device_name_size, "/dev/tty%c%c", ptymajors[i / num_minors], ptyminors[i % num_minors]);
/* Open the pty user file descriptor */
if ((*pty_user_fd = open(buf, O_RDWR | O_NOCTTY)) == -1)
{
/* Try SCO style naming */
snprintf(buf, sizeof buf, "/dev/ptyp%d", i);
snprintf(pty_device_name, pty_device_name_size, "/dev/ttyp%d", i);
if ((*pty_user_fd = open(buf, O_RDWR | O_NOCTTY)) == -1)
continue;
}
/* Set pty device ownership and permissions to the real uid of the process */
pty_set_owner(pty_device_name, getuid());
/* Open the pty process file descriptor */
if ((*pty_process_fd = open(pty_device_name, O_RDWR | O_NOCTTY)) == -1)
{
close(*pty_user_fd);
return -1;
}
found = 1;
}
if (!found)
return set_errno(ENOENT);
}
#endif /* HAVE_DEV_PTS_AND_PTC */
#endif /* HAVE_DEV_PTMX */
#endif /* HAVE__GETPTY */
#endif /* HAVE_OPENPTY */
/* The pty user terminal may have echo on. Turn it off. */
/* But this returns EINVAL on Solaris-10 so let it fail. */
/* Turning echo off causes some coproc module tests to fail
** on Linux after coproc_pty_open() is called. We write to
** it and then call read_timeout() and nothing happens.
** But I'd expect /bin/cat to write what it has read.
** The terminal echo shouldn't be required. And anyway,
** shouldn't the process end be doing the echo? And the tests
** only fail when run as root. What's going on here?
** Calling vhangup() in pty_make_controlling_tty() was
** causing the problem, but only when we turn off echo.
** Without vhangup(), it's fine.
*/
if (tcgetattr(*pty_user_fd, pty_user_termios) != -1)
{
if (pty_user_termios->c_lflag & ECHO)
{
pty_user_termios->c_lflag &= ~ECHO;
if (tcsetattr(*pty_user_fd, TCSANOW, pty_user_termios) == -1)
{
close(*pty_user_fd);
close(*pty_process_fd);
return -1;
}
}
}
/* Set the pty process file descriptor's terminal attributes if requested */
if (pty_device_termios && tcsetattr(*pty_process_fd, TCSANOW, pty_device_termios) == -1)
{
close(*pty_user_fd);
close(*pty_process_fd);
return -1;
}
/* Set the pty process file descriptor's window size if required */
if (pty_device_winsize && ioctl(*pty_process_fd, TIOCSWINSZ, pty_device_winsize) == -1)
{
close(*pty_user_fd);
close(*pty_process_fd);
return -1;
}
return 0;
}
/*
=item C<int pty_release(const char *pty_device_name)>
Releases the pseudo terminal device whose name is in C<pty_device_name>. Its
ownership is returned to I<root>, and its permissions are set to
C<rw-rw-rw->. Note that only I<root> can execute this function successfully
on most systems. On success, returns C<0>. On error, returns C<-1> with
C<errno> set appropriately.
=cut
*/
int pty_release(const char *pty_device_name)
{
if (!pty_device_name)
return set_errno(EINVAL);
if (chown(pty_device_name, (uid_t)0, (gid_t)0) == -1)
return -1;
if (chmod(pty_device_name, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH) == -1)
return -1;
return 0;
}
/*
=item C<int pty_set_owner(const char *pty_device_name, uid_t uid)>
Changes the ownership of the pseudo terminal device referred to by
C<pty_device_name> to the user id, C<uid>. Group ownership of the device
will be changed to the C<tty> group if it exists. Otherwise, it will be
changed to the given user's primary group. The device's permissions will be
set to C<rw--w---->. Note that only I<root> can execute this function
successfully on most systems. Also note that the ownership of the device is
automatically set to the real uid of the process by I<pty_open(3)> and
I<pty_fork(3)>. The permissions are also set automatically by these
functions. So I<pty_set_owner(3)> is only needed when the device needs to be
owned by some user other than the real user. On success, returns C<0>. On
error, returns C<-1> with C<errno> set appropriately.
=cut
*/
int pty_set_owner(const char *pty_device_name, uid_t uid)
{
mode_t mode = S_IRUSR | S_IWUSR | S_IWGRP;
struct stat status[1];
int gid;
if (stat(pty_device_name, status) == -1)
return -1;
if ((gid = groupname2gid("tty")) == -1)
{
gid = uid2gid(uid);
mode |= S_IWOTH;
}
if (status->st_uid != uid || status->st_gid != gid)
if (chown(pty_device_name, uid, gid) == -1)
if (errno != EROFS || status->st_uid != uid)
return -1;
if ((status->st_mode & (S_IRWXU | S_IRWXG | S_IRWXO)) != mode)
if (chmod(pty_device_name, mode) == -1)
if (errno != EROFS || (status->st_mode & (S_IRGRP | S_IROTH)))
return -1;
return 0;
}
/*
=item C<int pty_make_controlling_tty(int *pty_process_fd, const char *pty_device_name)>
Makes the pseudo terminal's process file descriptor the controlling
terminal. C<*pty_process_fd> contains the file descriptor for the process
side of a pseudo terminal. The file descriptor of the resulting controlling
terminal will be stored in C<*pty_process_fd>. C<pty_device_name> is the
device name of the process side of the pseudo terminal. On success, returns
C<0>. On error, returns C<-1> with C<errno> set appropriately.
=cut
*/
int pty_make_controlling_tty(int *pty_process_fd, const char *pty_device_name)
{
int fd;
#ifdef USE_VHANGUP
void (*old)(int);
#endif /* USE_VHANGUP */
if (!pty_process_fd || *pty_process_fd < 0 || !pty_device_name)
return set_errno(EINVAL);
/* First disconnect from the old controlling tty */
#ifdef TIOCNOTTY
if ((fd = open(PATH_TTY, O_RDWR | O_NOCTTY)) >= 0)
{
ioctl(fd, TIOCNOTTY, NULL);
close(fd);
}
#endif /* TIOCNOTTY */
setsid();
/*
* Verify that we are successfully disconnected from the controlling
* tty.
*/
#if 0
if ((fd = open(PATH_TTY, O_RDWR | O_NOCTTY)) >= 0)
{
close(fd);
return set_errno(ENXIO);
}
#endif
/* Make it our controlling tty */
#ifdef TIOCSCTTY
if (ioctl(*pty_process_fd, TIOCSCTTY, NULL) == -1)
return -1;
#endif /* TIOCSCTTY */
#ifdef HAVE_NEWS4
setpgrp(0, 0);
#endif /* HAVE_NEWS4 */
#ifdef USE_VHANGUP
old = signal(SIGHUP, SIG_IGN);
vhangup();
signal(SIGHUP, old);
#endif /* USE_VHANGUP */
/* Why do this? */
if ((fd = open(pty_device_name, O_RDWR)) >= 0)
{
#ifdef USE_VHANGUP
close(*pty_process_fd);
*pty_process_fd = fd;
#else /* USE_VHANGUP */
close(fd);
#endif /* USE_VHANGUP */
}
/* Verify that we now have a controlling tty */
if ((fd = open(PATH_TTY, O_RDWR)) == -1)
return -1;
close(fd);
return 0;
}
/*
=item C<int pty_change_window_size(int pty_user_fd, int row, int col, int xpixel, int ypixel)>
Changes the window size associated with the pseudo terminal referred to by
C<pty_user_fd>. The C<row>, C<col>, C<xpixel>, and C<ypixel> parameters
specify the new window size. On success, returns C<0>. On error, returns
C<-1> with C<errno> set appropriately.
=cut
*/
int pty_change_window_size(int pty_user_fd, int row, int col, int xpixel, int ypixel)
{
struct winsize win;
if (pty_user_fd < 0 || row < 0 || col < 0 || xpixel < 0 || ypixel < 0)
return set_errno(EINVAL);
win.ws_row = row;
win.ws_col = col;
win.ws_xpixel = xpixel;
win.ws_ypixel = ypixel;
return ioctl(pty_user_fd, TIOCSWINSZ, &win);
}
/*
=item C<pid_t pty_fork(int *pty_user_fd, char *pty_device_name, size_t pty_device_name_size, const struct termios *pty_device_termios, const struct winsize *pty_device_winsize)>
A safe version of I<forkpty(3)>. Creates a pseudo terminal, and then calls
I<fork(2)>. In the parent process, the process side of the pseudo terminal
is closed. In the child process, the user side of the pseudo terminal is
closed, and the process side is made the controlling terminal. It is
duplicated onto standard input, output, and error, and is then closed. The
user (or controlling process) side of the pseudo terminal is stored in
C<*pty_user_fd> for the parent process. The device name of the process side
of the pseudo terminal is stored in the buffer pointed to by
C<pty_device_name> which must be able to hold at least C<64> bytes.
C<pty_device_name_size> is the size of the buffer pointed to by
C<pty_device_name>. No more than C<pty_device_name_size> bytes will be
written to C<pty_device_name>, including the terminating C<nul> byte. If
C<pty_device_termios> is not null, it is passed to I<tcsetattr(3)> with the
command C<TCSANOW> to set the terminal attributes of the process side of the
pseudo terminal device. If C<pty_device_winsize> is not null, it is passed
to I<ioctl(2)> with the command C<TIOCSWINSZ> to set the window size of the
process side of the pseudo terminal device. On success, returns C<0> to the
child process and returns the process id of the child process to the parent
process. On error, returns C<-1> with C<errno> set appropriately.
=cut
*/
pid_t pty_fork(int *pty_user_fd, char *pty_device_name, size_t pty_device_name_size, const struct termios *pty_device_termios, const struct winsize *pty_device_winsize)
{
int pty_process_fd;
pid_t pid;
/*
** Note: we don't use forkpty() because it closes the pty user side file
** descriptor in the child process before making the process side of the
** pseudo terminal the controlling terminal of the child process and
** this can prevent the pty process side file descriptor from becoming
** the controlling terminal (but I have no idea why).
*/
if (pty_open(pty_user_fd, &pty_process_fd, pty_device_name, pty_device_name_size, pty_device_termios, pty_device_winsize) == -1)
return -1;
switch (pid = fork())
{
case -1:
pty_release(pty_device_name);
close(pty_process_fd);
close(*pty_user_fd);
return -1;
case 0:
{
/* Make the process side of the pty our controlling tty */
if (pty_make_controlling_tty(&pty_process_fd, pty_device_name) == -1)
_exit(EXIT_FAILURE);
/* Redirect stdin, stdout and stderr from the pseudo tty */
if (pty_process_fd != STDIN_FILENO && dup2(pty_process_fd, STDIN_FILENO) == -1)
_exit(EXIT_FAILURE);
if (pty_process_fd != STDOUT_FILENO && dup2(pty_process_fd, STDOUT_FILENO) == -1)
_exit(EXIT_FAILURE);
if (pty_process_fd != STDERR_FILENO && dup2(pty_process_fd, STDERR_FILENO) == -1)
_exit(EXIT_FAILURE);
/* Close the extra descriptor for the pseudo tty */
if (pty_process_fd != STDIN_FILENO && pty_process_fd != STDOUT_FILENO && pty_process_fd != STDERR_FILENO)
close(pty_process_fd);
/* Close the user side of the pseudo tty in the child */
close(*pty_user_fd);
return 0;
}
default:
{
/* Close the process side of the pseudo tty in the parent */
close(pty_process_fd);
return pid;
}
}
}
/*
=back
=head1 ERRORS
Additional errors may be generated and returned from the underlying system
calls. See their manual pages.
=over 4
=item C<EINVAL>
Invalid arguments were passed to one of the functions.
=item C<ENOTTY>
I<openpty(3)> or I<open("/dev/ptc")> returned a pty process file descriptor
for which I<ttyname(3)> failed to return the pty device name.
I<open("/dev/ptmx")> returned a pty user file descriptor for which
I<ptsname(3)> failed to return the pty device name.
=item C<ENOENT>
The old I<BSD>-style pty device search failed to locate an available pseudo
terminal.
=item C<ENOSPC>
The device name of the process side of the pseudo terminal was too large to
fit in the C<pty_device_name> buffer passed to I<pty_open(3)> or I<pty_fork(3)>.
=item C<ENXIO>
I<pty_make_controlling_tty(3)> failed to disconnect from the controlling
terminal.
=back
=head1 MT-Level
I<MT-Safe> if and only if I<ttyname_r(3)> or I<ptsname_r(3)> are available
when needed. On systems that have I<openpty(3)> or C<"/dev/ptc">,
I<ttyname_r(3)> is required, otherwise the unsafe I<ttyname(3)> will be
used. On systems that have C<"/dev/ptmx">, I<ptsname_r(3)> is required,
otherwise the unsafe I<ptsname(3)> will be used. On systems that have
I<_getpty(2)>, I<pty_open(3)> is unsafe because I<_getpty(2)> is unsafe. In
short, it's I<MT-Safe> under I<Linux>, Unsafe under I<Solaris> and
I<OpenBSD>.
=head1 EXAMPLE
A very simple pty program:
#include <slack/std.h>
#include <slack/pseudo.h>
#include <slack/sig.h>
#include <sys/select.h>
#include <sys/wait.h>
struct termios stdin_termios;
struct winsize stdin_winsize;
int havewin = 0;
char pty_device_name[64];
int pty_user_fd;
pid_t pid;
int tty_raw(int fd)
{
struct termios attr[1];
if (tcgetattr(fd, attr) == -1)
return -1;
attr->c_lflag &= ~(ECHO | ICANON | IEXTEN | ISIG);
attr->c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON);
attr->c_cflag &= ~(CSIZE | PARENB);
attr->c_cflag |= (CS8);
attr->c_oflag &= ~(OPOST);
attr->c_cc[VMIN] = 1;
attr->c_cc[VTIME] = 0;
return tcsetattr(fd, TCSANOW, attr);
}
void restore_stdin(void)
{
if (tcsetattr(STDIN_FILENO, TCSANOW, &stdin_termios) == -1)
errorsys("failed to restore stdin terminal attributes");
}
void winch(int signo)
{
struct winsize winsize;
if (ioctl(STDIN_FILENO, TIOCGWINSZ, &winsize) != -1)
ioctl(pty_user_fd, TIOCSWINSZ, &winsize);
}
int main(int ac, char **av)
{
if (ac == 1)
{
fprintf(stderr, "usage: pty command [arg...]\n");
return EXIT_FAILURE;
}
if (isatty(STDIN_FILENO))
havewin = ioctl(STDIN_FILENO, TIOCGWINSZ, &stdin_winsize) != -1;
switch (pid = pty_fork(&pty_user_fd, pty_device_name, sizeof pty_device_name, NULL, havewin ? &stdin_winsize : NULL))
{
case -1:
fprintf(stderr, "pty: pty_fork() failed (%s)\n", strerror(errno));
pty_release(pty_device_name);
return EXIT_FAILURE;
case 0:
execvp(av[1], av + 1);
return EXIT_FAILURE;
default:
{
int in_fd = STDIN_FILENO;
int status;
if (isatty(STDIN_FILENO))
{
if (tcgetattr(STDIN_FILENO, &stdin_termios) != -1)
atexit((void (*)(void))restore_stdin);
tty_raw(STDIN_FILENO);
signal_set_handler(SIGWINCH, 0, winch);
}
while (pty_user_fd != -1)
{
fd_set readfds[1];
int maxfd;
char buf[BUFSIZ];
ssize_t bytes;
int n;
FD_ZERO(readfds);
if (in_fd != -1)
FD_SET(in_fd, readfds);
if (pty_user_fd != -1)
FD_SET(pty_user_fd, readfds);
maxfd = (pty_user_fd > in_fd) ? pty_user_fd : in_fd;
signal_handle_all();
if ((n = select(maxfd + 1, readfds, NULL, NULL, NULL)) == -1 && errno != EINTR)
break;
if (n == -1 && errno == EINTR)
continue;
if (in_fd != -1 && FD_ISSET(in_fd, readfds))
{
if ((bytes = read(in_fd, buf, BUFSIZ)) > 0)
{
if (pty_user_fd != -1 && write(pty_user_fd, buf, bytes) == -1)
break;
}
else if (n == -1 && errno == EINTR)
{
continue;
}
else
{
in_fd = -1;
continue;
}
}
if (pty_user_fd != -1 && FD_ISSET(pty_user_fd, readfds))
{
if ((bytes = read(pty_user_fd, buf, BUFSIZ)) > 0)
{
if (write(STDOUT_FILENO, buf, bytes) == -1)
break;
}
else if (n == -1 && errno == EINTR)
{
continue;
}
else
{
close(pty_user_fd);
pty_user_fd = -1;
continue;
}
}
}
if (waitpid(pid, &status, 0) == -1)
{
fprintf(stderr, "pty: waitpid(%d) failed (%s)\n", (int)pid, strerror(errno));
pty_release(pty_device_name);
return EXIT_FAILURE;
}
}
}
pty_release(pty_device_name);
if (pty_user_fd != -1)
close(pty_user_fd);
return EXIT_SUCCESS;
}
=head1 SEE ALSO
I<libslack(3)>,
I<openpty(3)>,
I<forkpty(3)>
I<open(2)>,
I<close(2)>,
I<grantpt(3)>,
I<unlockpt(3)>,
I<ioctl(2)>,
I<ttyname(3)>,
I<ttyname_r(3)>,
I<ptsname(3)>,
I<ptsname_r(3)>,
I<setpgrp(2)>,
I<vhangup(2)>,
I<setsid(2)>,
I<_getpty(2)>,
I<chown(2)>,
I<chmod(2)>,
I<tcsetattr(3)>,
I<setpgrp(2)>,
I<fork(2)>,
I<dup2(2)>
=head1 AUTHOR
1995 Tatu Ylonen <ylo@cs.hut.fi>
2001-2023 raf <raf@raf.org>
=cut
*/
#endif
#ifdef TEST
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <pwd.h>
#include <sys/types.h>
#include <sys/wait.h>
int main(int ac, char **av)
{
int errors = 0;
char pty_device_name[64];
int pty_user_fd, pty_process_fd;
uid_t euid = geteuid();
pid_t pid;
printf("Testing: %s\n", "pseudo");
/* Test pty_open() */
if (pty_open(&pty_user_fd, &pty_process_fd, pty_device_name, sizeof pty_device_name, NULL, NULL) == -1)
++errors, printf("Test1: pty_open() failed (%s)\n", strerror(errno));
else
{
/* Test pty_set_owner() if root */
if (euid == 0 && pty_set_owner(pty_device_name, getuid()) == -1)
++errors, printf("Test2: pty_set_owner() failed (%s)\n", strerror(errno));
/* Test pty_make_controlling_tty() and pty_change_window_size() */
switch (pid = fork())
{
case -1:
++errors, printf("Test3: failed to perform test: fork() failed (%s)\n", strerror(errno));
break;
case 0:
{
errors = 0;
close(pty_user_fd);
if (pty_make_controlling_tty(&pty_process_fd, pty_device_name) == -1)
++errors, printf("Test4: pty_make_controlling_tty() failed (%s)\n", strerror(errno));
if (pty_change_window_size(pty_process_fd, 80, 24, 800, 240) == -1)
++errors, printf("Test5: pty_change_window_size() failed (%s)\n", strerror(errno));
exit(errors);
}
default:
{
int status;
if (waitpid(pid, &status, 0) == -1)
++errors, printf("Test6: failed to evaluate test: waitpid() failed (%s)\n", strerror(errno));
else if (WIFSIGNALED(status))
++errors, printf("Test6: failed to evaluate test: child process received signal %d\n", WTERMSIG(status));
else
errors += (WEXITSTATUS(status) != EXIT_SUCCESS);
break;
}
}
/* Test pty_release() if root */
if (euid == 0 && pty_release(pty_device_name) == -1)
++errors, printf("Test7: pty_release() failed (%s)\n", strerror(errno));
}
/* Test pty_fork() */
switch (pid = pty_fork(&pty_user_fd, pty_device_name, sizeof pty_device_name, NULL, NULL))
{
case -1:
++errors, printf("Test8: pty_fork() failed (%s)\n", strerror(errno));
break;
case 0:
exit(isatty(STDIN_FILENO) ? EXIT_SUCCESS : EXIT_FAILURE);
break; /* unreached */
default:
{
int status;
if (waitpid(pid, &status, 0) == -1)
++errors, printf("Test9: failed to evaluate test: waitpid() failed (%s)\n", strerror(errno));
else if (WIFSIGNALED(status))
++errors, printf("Test9: failed to evaluate test: child process received signal %d\n", WTERMSIG(status));
else if (WEXITSTATUS(status) != EXIT_SUCCESS)
++errors, printf("Test9: pty_fork() failed to result in a tty for child\n");
if (euid == 0 && pty_release(pty_device_name) == -1)
++errors, printf("Test10: pty_release() failed (%s)\n", strerror(errno));
break;
}
}
if (errors)
printf("%d/10 tests failed\n", errors);
else
printf("All tests passed\n");
if (euid)
{
printf("\n");
printf(" Note: Can't test pty_set_owner() or pty_release()\n");
printf(" On some systems (e.g. Linux) these aren't needed anyway.\n");
printf(" Audit the code and rerun the test as root (or setuid root)\n");
}
return (errors == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}
#endif
/* vi:set ts=4 sw=4: */
|