mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-08-09 08:00:51 +00:00
openpty: improve implementation and handling of platforms without it
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
This commit is contained in:
parent
6d3b68510a
commit
35eb5cdcb3
@ -663,7 +663,7 @@ fi
|
|||||||
AC_CHECK_LIB(pthread, main)
|
AC_CHECK_LIB(pthread, main)
|
||||||
AC_CHECK_FUNCS(statvfs)
|
AC_CHECK_FUNCS(statvfs)
|
||||||
AC_CHECK_LIB(util, openpty)
|
AC_CHECK_LIB(util, openpty)
|
||||||
AC_CHECK_FUNCS([openpty hasmntopt setmntent endmntent utmpxname])
|
AC_CHECK_FUNCS([hasmntopt setmntent endmntent utmpxname])
|
||||||
AC_CHECK_FUNCS([getgrgid_r],
|
AC_CHECK_FUNCS([getgrgid_r],
|
||||||
AM_CONDITIONAL(HAVE_GETGRGID_R, true)
|
AM_CONDITIONAL(HAVE_GETGRGID_R, true)
|
||||||
AC_DEFINE(HAVE_GETGRGID_R,1,[Have getgrgid_r]),
|
AC_DEFINE(HAVE_GETGRGID_R,1,[Have getgrgid_r]),
|
||||||
@ -684,6 +684,10 @@ AC_CHECK_FUNCS([keyctl],
|
|||||||
AM_CONDITIONAL(HAVE_KEYCTL, true)
|
AM_CONDITIONAL(HAVE_KEYCTL, true)
|
||||||
AC_DEFINE(HAVE_KEYCTL,1,[Have keyctl]),
|
AC_DEFINE(HAVE_KEYCTL,1,[Have keyctl]),
|
||||||
AM_CONDITIONAL(HAVE_KEYCTL, false))
|
AM_CONDITIONAL(HAVE_KEYCTL, false))
|
||||||
|
AC_CHECK_FUNCS([openpty],
|
||||||
|
AM_CONDITIONAL(HAVE_OPENPTY, true)
|
||||||
|
AC_DEFINE(HAVE_OPENPTY,1,[Have openpty]),
|
||||||
|
AM_CONDITIONAL(HAVE_OPENPTY, false))
|
||||||
AC_CHECK_FUNCS([prlimit],
|
AC_CHECK_FUNCS([prlimit],
|
||||||
AM_CONDITIONAL(HAVE_PRLIMIT, true)
|
AM_CONDITIONAL(HAVE_PRLIMIT, true)
|
||||||
AC_DEFINE(HAVE_PRLIMIT,1,[Have prlimit]),
|
AC_DEFINE(HAVE_PRLIMIT,1,[Have prlimit]),
|
||||||
|
@ -1,76 +1,136 @@
|
|||||||
/*
|
/* SPDX-License-Identifier: LGPL-2.1+ */
|
||||||
* openpty: glibc implementation
|
|
||||||
*
|
|
||||||
* Copyright (C) 1998, 1999, 2004 Free Software Foundation, Inc.
|
|
||||||
*
|
|
||||||
* Authors:
|
|
||||||
* Zack Weinberg <zack@rabi.phys.columbia.edu>, 1998.
|
|
||||||
*
|
|
||||||
* This library is free software; you can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
|
||||||
* License as published by the Free Software Foundation; either
|
|
||||||
* version 2.1 of the License, or (at your option) any later version.
|
|
||||||
|
|
||||||
* This library is distributed in the hope that it will be useful,
|
#define _GNU_SOURCE
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
|
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
|
||||||
* License along with this library; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define _XOPEN_SOURCE /* See feature_test_macros(7) */
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <sys/ioctl.h>
|
||||||
|
#include <sys/types.h>
|
||||||
#include <termios.h>
|
#include <termios.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <sys/types.h>
|
|
||||||
#include <sys/ioctl.h>
|
|
||||||
|
|
||||||
#define _PATH_DEVPTMX "/dev/ptmx"
|
#ifdef HAVE_PTY_H
|
||||||
|
#include <pty.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
int openpty (int *aptx, int *apty, char *name, struct termios *termp,
|
static int pts_name(int fd, char **pts, size_t buf_len)
|
||||||
struct winsize *winp)
|
|
||||||
{
|
{
|
||||||
char buf[PATH_MAX];
|
int rv;
|
||||||
int ptx, pty;
|
char *buf = *pts;
|
||||||
|
|
||||||
ptx = open(_PATH_DEVPTMX, O_RDWR);
|
for (;;) {
|
||||||
if (ptx == -1)
|
char *new_buf;
|
||||||
return -1;
|
|
||||||
|
|
||||||
if (grantpt(ptx))
|
if (buf_len) {
|
||||||
goto fail;
|
rv = ptsname_r(fd, buf, buf_len);
|
||||||
|
|
||||||
if (unlockpt(ptx))
|
if (rv != 0 || memchr(buf, '\0', buf_len))
|
||||||
goto fail;
|
/* We either got an error, or we succeeded and the
|
||||||
|
returned name fit in the buffer. */
|
||||||
|
break;
|
||||||
|
|
||||||
if (ptyname_r(ptx, buf, sizeof buf))
|
/* Try again with a longer buffer. */
|
||||||
goto fail;
|
buf_len += buf_len; /* Double it */
|
||||||
|
} else
|
||||||
|
/* No initial buffer; start out by mallocing one. */
|
||||||
|
buf_len = 128; /* First time guess. */
|
||||||
|
|
||||||
pty = open(buf, O_RDWR | O_NOCTTY);
|
if (buf != *pts)
|
||||||
if (pty == -1)
|
/* We've already malloced another buffer at least once. */
|
||||||
goto fail;
|
new_buf = realloc(buf, buf_len);
|
||||||
|
else
|
||||||
|
new_buf = malloc(buf_len);
|
||||||
|
if (!new_buf) {
|
||||||
|
rv = -1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
buf = new_buf;
|
||||||
|
}
|
||||||
|
|
||||||
/* XXX Should we ignore errors here? */
|
if (rv == 0)
|
||||||
if (termp)
|
*pts = buf; /* Return buffer to the user. */
|
||||||
tcsetattr(pty, TCSAFLUSH, termp);
|
else if (buf != *pts)
|
||||||
if (winp)
|
free(buf); /* Free what we malloced when returning an error. */
|
||||||
ioctl(pty, TIOCSWINSZ, winp);
|
|
||||||
|
|
||||||
*aptx = ptx;
|
return rv;
|
||||||
*apty = pty;
|
}
|
||||||
if (name != NULL)
|
|
||||||
strcpy(name, buf);
|
int __unlockpt(int fd)
|
||||||
|
{
|
||||||
return 0;
|
#ifdef TIOCSPTLCK
|
||||||
|
int unlock = 0;
|
||||||
fail:
|
|
||||||
close(ptx);
|
if (ioctl(fd, TIOCSPTLCK, &unlock)) {
|
||||||
return -1;
|
if (errno != EINVAL)
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int openpty(int *ptx, int *pty, char *name, const struct termios *termp,
|
||||||
|
const struct winsize *winp)
|
||||||
|
{
|
||||||
|
char _buf[PATH_MAX];
|
||||||
|
char *buf = _buf;
|
||||||
|
int ptx_fd, ret = -1, pty_fd = -1;
|
||||||
|
|
||||||
|
*buf = '\0';
|
||||||
|
|
||||||
|
ptx_fd = open("/dev/ptmx", O_RDWR | O_NOCTTY);
|
||||||
|
if (ptx_fd == -1)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
if (__unlockpt(ptx_fd))
|
||||||
|
goto on_error;
|
||||||
|
|
||||||
|
#ifdef TIOCGPTPEER
|
||||||
|
/* Try to allocate pty_fd solely based on ptx_fd first. */
|
||||||
|
pty_fd = ioctl(ptx_fd, TIOCGPTPEER, O_RDWR | O_NOCTTY);
|
||||||
|
#endif
|
||||||
|
if (pty_fd == -1) {
|
||||||
|
/* Fallback to path-based pty_fd allocation in case kernel doesn't
|
||||||
|
* support TIOCGPTPEER.
|
||||||
|
*/
|
||||||
|
if (pts_name(ptx_fd, &buf, sizeof(_buf)))
|
||||||
|
goto on_error;
|
||||||
|
|
||||||
|
pty_fd = open(buf, O_RDWR | O_NOCTTY);
|
||||||
|
if (pty_fd == -1)
|
||||||
|
goto on_error;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (termp)
|
||||||
|
tcsetattr(pty_fd, TCSAFLUSH, termp);
|
||||||
|
#ifdef TIOCSWINSZ
|
||||||
|
if (winp)
|
||||||
|
ioctl(pty_fd, TIOCSWINSZ, winp);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
*ptx = ptx_fd;
|
||||||
|
*pty = pty_fd;
|
||||||
|
if (name != NULL) {
|
||||||
|
if (*buf == '\0')
|
||||||
|
if (pts_name(ptx_fd, &buf, sizeof(_buf)))
|
||||||
|
goto on_error;
|
||||||
|
|
||||||
|
strcpy(name, buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = 0;
|
||||||
|
|
||||||
|
on_error:
|
||||||
|
if (ret == -1) {
|
||||||
|
close(ptx_fd);
|
||||||
|
|
||||||
|
if (pty_fd != -1)
|
||||||
|
close(pty_fd);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (buf != _buf)
|
||||||
|
free(buf);
|
||||||
|
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -1,25 +1,4 @@
|
|||||||
/*
|
/* SPDX-License-Identifier: LGPL-2.1+ */
|
||||||
* openpty: glibc implementation
|
|
||||||
*
|
|
||||||
* Copyright (C) 1998, 1999, 2004 Free Software Foundation, Inc.
|
|
||||||
*
|
|
||||||
* Authors:
|
|
||||||
* Zack Weinberg <zack@rabi.phys.columbia.edu>, 1998.
|
|
||||||
*
|
|
||||||
* This library is free software; you can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
|
||||||
* License as published by the Free Software Foundation; either
|
|
||||||
* version 2.1 of the License, or (at your option) any later version.
|
|
||||||
|
|
||||||
* This library 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
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
|
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
|
||||||
* License along with this library; if not, write to the Free Software
|
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _OPENPTY_H
|
#ifndef _OPENPTY_H
|
||||||
#define _OPENPTY_H
|
#define _OPENPTY_H
|
||||||
@ -32,8 +11,7 @@
|
|||||||
* attributes according to @__termp and @__winp and return handles for both
|
* attributes according to @__termp and @__winp and return handles for both
|
||||||
* ends in @__aptx and @__apts.
|
* ends in @__aptx and @__apts.
|
||||||
*/
|
*/
|
||||||
extern int openpty (int *__aptx, int *__apts, char *__name,
|
extern int openpty(int *ptx, int *pty, char *name, const struct termios *termp,
|
||||||
const struct termios *__termp,
|
const struct winsize *winp);
|
||||||
const struct winsize *__winp);
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -54,8 +54,11 @@ noinst_HEADERS = api_extensions.h \
|
|||||||
|
|
||||||
if IS_BIONIC
|
if IS_BIONIC
|
||||||
noinst_HEADERS += ../include/fexecve.h \
|
noinst_HEADERS += ../include/fexecve.h \
|
||||||
../include/lxcmntent.h \
|
../include/lxcmntent.h
|
||||||
../include/openpty.h
|
endif
|
||||||
|
|
||||||
|
if !HAVE_OPENPTY
|
||||||
|
noinst_HEADERS += ../include/openpty.h
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if !HAVE_PRLIMIT
|
if !HAVE_PRLIMIT
|
||||||
@ -156,8 +159,11 @@ liblxc_la_SOURCES = af_unix.c af_unix.h \
|
|||||||
|
|
||||||
if IS_BIONIC
|
if IS_BIONIC
|
||||||
liblxc_la_SOURCES += ../include/fexecve.c ../include/fexecve.h \
|
liblxc_la_SOURCES += ../include/fexecve.c ../include/fexecve.h \
|
||||||
../include/lxcmntent.c ../include/lxcmntent.h \
|
../include/lxcmntent.c ../include/lxcmntent.h
|
||||||
../include/openpty.c ../include/openpty.h
|
endif
|
||||||
|
|
||||||
|
if !HAVE_OPENPTY
|
||||||
|
liblxc_la_SOURCES += ../include/openpty.c ../include/openpty.h
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if !HAVE_GETGRGID_R
|
if !HAVE_GETGRGID_R
|
||||||
|
@ -69,7 +69,7 @@
|
|||||||
#include <sys/statvfs.h>
|
#include <sys/statvfs.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if HAVE_PTY_H
|
#if HAVE_OPENPTY
|
||||||
#include <pty.h>
|
#include <pty.h>
|
||||||
#else
|
#else
|
||||||
#include <../include/openpty.h>
|
#include <../include/openpty.h>
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
#include "terminal.h"
|
#include "terminal.h"
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
|
|
||||||
#if HAVE_PTY_H
|
#if HAVE_OPENPTY
|
||||||
#include <pty.h>
|
#include <pty.h>
|
||||||
#else
|
#else
|
||||||
#include <../include/openpty.h>
|
#include <../include/openpty.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user