1
0

openpty.c 838 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #include <stdlib.h>
  2. #include <fcntl.h>
  3. #include <unistd.h>
  4. #include <pty.h>
  5. #include <stdio.h>
  6. #include <pthread.h>
  7. /* Nonstandard, but vastly superior to the standard functions */
  8. int openpty(int *pm, int *ps, char *name, const struct termios *tio, const struct winsize *ws)
  9. {
  10. int m, s, n=0, cs;
  11. char buf[20];
  12. m = open("/dev/ptmx", O_RDWR|O_NOCTTY);
  13. if (m < 0) return -1;
  14. pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
  15. if (ioctl(m, TIOCSPTLCK, &n) || ioctl (m, TIOCGPTN, &n))
  16. goto fail;
  17. if (!name) name = buf;
  18. snprintf(name, sizeof buf, "/dev/pts/%d", n);
  19. if ((s = open(name, O_RDWR|O_NOCTTY)) < 0)
  20. goto fail;
  21. if (tio) tcsetattr(s, TCSANOW, tio);
  22. if (ws) ioctl(s, TIOCSWINSZ, ws);
  23. *pm = m;
  24. *ps = s;
  25. pthread_setcancelstate(cs, 0);
  26. return 0;
  27. fail:
  28. close(m);
  29. pthread_setcancelstate(cs, 0);
  30. return -1;
  31. }