mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
57b36a0a75
as the __builtin_expect expression, just the Boolean value. * sysdeps/generic/wordexp.c (parse_glob): int -> size_t for counter. * sysdeps/unix/sysv/linux/opensock.c (__opensock): Likewise. * resolv/res_hconf.c (arg_service_list, parse_line): Likewise. * iconvdata/tst-loading.c (main): Likewise. * catgets/tst-catgets.c (main): Likewise. * stdlib/tst-xpg-basename.c (main): Likewise. * stdlib/tst-bsearch.c (main): Likewise. * stdio-common/test-vfprintf.c (main): Likewise. * stdio-common/tst-rndseek.c (do_test): Likewise. * libio/tst_swprintf.c (main): Likewise. * libio/tst-fgetws.c (main): Likewise. * wcsmbs/tst-mbrtowc.c (check_ascii): Likewise. * time/tst-posixtz.c (main): Likewise. * time/tst-strptime.c (test_tm): Likewise. * time/tst-strptime.c (main): Likewise. * time/tst-getdate.c (main): Likewise. * posix/tst-mmap.c (main): Likewise. * posix/tst-getaddrinfo.c (do_test): Likewise. * io/tst-getcwd.c (do_test): Likewise. * resolv/tst-aton.c (main): Likewise. * inet/tst-network.c (main): Likewise. * libio/tst-fgetws.c (main): Likewise. * sysdeps/posix/sprofil.c (add_region): int -> unsigned int for I. * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_r): int -> unsigned int for PTYNO. * stdlib/msort.c (qsort): Add a cast to silence warning. * stdio-common/vfprintf.c (process_string_arg): Likewise. * libio/oldfileops.c (_IO_old_do_write): Likewise. * sysdeps/unix/sysv/linux/getcwd.c (__getcwd): Likewise. * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Likewise. * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Likewise. * argp/argp-fmtstream.c (__argp_fmtstream_printf): Likewise. * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise. * sysdeps/unix/grantpt.c (grantpt): Likewise. * libio/tst-widetext.c (main): Likewise. * libio/tst-mmap2-eofsync.c (do_test): Likewise. * rt/tst-aio.c (test_file): Likewise. * rt/tst-aio64.c (test_file): Likewise. * resolv/tst-aton.c (main): Likewise. * catgets/catgetsinfo.h (CATGETS_MAGIC): Use U suffix on the constant. * ctype/ctype.c (__ctype_tolower, __ctype_toupper): Cast to int32_t instead of uint32_t in these macros.
168 lines
4.9 KiB
C
168 lines
4.9 KiB
C
/* Copyright (C) 1998, 2000, 2001, 2002 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
Contributed by Zack Weinberg <zack@rabi.phys.columbia.edu>, 1998.
|
|
|
|
The GNU C 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.
|
|
|
|
The GNU C 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 the GNU C Library; if not, write to the Free
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
02111-1307 USA. */
|
|
|
|
#include <errno.h>
|
|
#include <paths.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/sysmacros.h>
|
|
#include <termios.h>
|
|
#include <unistd.h>
|
|
|
|
#include <stdio-common/_itoa.h>
|
|
|
|
/* Check if DEV corresponds to a master pseudo terminal device. */
|
|
#define MASTER_P(Dev) \
|
|
(major ((Dev)) == 2 \
|
|
|| (major ((Dev)) == 4 && minor ((Dev)) >= 128 && minor ((Dev)) < 192) \
|
|
|| (major ((Dev)) >= 128 && major ((Dev)) < 136))
|
|
|
|
/* Check if DEV corresponds to a master pseudo terminal device. */
|
|
#define SLAVE_P(Dev) \
|
|
(major ((Dev)) == 3 \
|
|
|| (major ((Dev)) == 4 && minor ((Dev)) >= 192 && minor ((Dev)) < 256) \
|
|
|| (major ((Dev)) >= 136 && major ((Dev)) < 144))
|
|
|
|
/* Note that major number 4 corresponds to the old BSD style pseudo
|
|
terminal devices. As of Linux 2.1.115 these are no longer
|
|
supported. They have been replaced by major numbers 2 (masters)
|
|
and 3 (slaves). */
|
|
|
|
/* Directory where we can find the slave pty nodes. */
|
|
#define _PATH_DEVPTS "/dev/pts/"
|
|
|
|
/* The are declared in getpt.c. */
|
|
extern const char __libc_ptyname1[] attribute_hidden;
|
|
extern const char __libc_ptyname2[] attribute_hidden;
|
|
|
|
/* Static buffer for `ptsname'. */
|
|
static char buffer[sizeof (_PATH_DEVPTS) + 20];
|
|
|
|
|
|
/* Return the pathname of the pseudo terminal slave assoicated with
|
|
the master FD is open on, or NULL on errors.
|
|
The returned storage is good until the next call to this function. */
|
|
char *
|
|
ptsname (int fd)
|
|
{
|
|
return __ptsname_r (fd, buffer, sizeof (buffer)) != 0 ? NULL : buffer;
|
|
}
|
|
|
|
|
|
/* Store at most BUFLEN characters of the pathname of the slave pseudo
|
|
terminal associated with the master FD is open on in BUF.
|
|
Return 0 on success, otherwise an error number. */
|
|
int
|
|
__ptsname_r (int fd, char *buf, size_t buflen)
|
|
{
|
|
int save_errno = errno;
|
|
struct stat64 st;
|
|
unsigned int ptyno;
|
|
|
|
if (buf == NULL)
|
|
{
|
|
__set_errno (EINVAL);
|
|
return EINVAL;
|
|
}
|
|
|
|
if (!__isatty (fd))
|
|
{
|
|
__set_errno (ENOTTY);
|
|
return ENOTTY;
|
|
}
|
|
|
|
#ifdef TIOCGPTN
|
|
if (__ioctl (fd, TIOCGPTN, &ptyno) == 0)
|
|
{
|
|
/* Buffer we use to print the number in. For a maximum size for
|
|
`int' of 8 bytes we never need more than 20 digits. */
|
|
char numbuf[21];
|
|
const char *devpts = _PATH_DEVPTS;
|
|
const size_t devptslen = strlen (_PATH_DEVPTS);
|
|
char *p;
|
|
|
|
numbuf[sizeof (numbuf) - 1] = '\0';
|
|
p = _itoa_word (ptyno, &numbuf[sizeof (numbuf) - 1], 10, 0);
|
|
|
|
if (buflen < devptslen + (&numbuf[sizeof (numbuf)] - p))
|
|
{
|
|
__set_errno (ERANGE);
|
|
return ERANGE;
|
|
}
|
|
|
|
memcpy (__stpcpy (buf, devpts), p, &numbuf[sizeof (numbuf)] - p);
|
|
}
|
|
else if (errno == EINVAL)
|
|
#endif
|
|
{
|
|
char *p;
|
|
|
|
if (buflen < strlen (_PATH_TTY) + 3)
|
|
{
|
|
__set_errno (ERANGE);
|
|
return ERANGE;
|
|
}
|
|
|
|
if (__fxstat64 (_STAT_VER, fd, &st) < 0)
|
|
return errno;
|
|
|
|
/* Check if FD really is a master pseudo terminal. */
|
|
if (! MASTER_P (st.st_rdev))
|
|
{
|
|
__set_errno (ENOTTY);
|
|
return ENOTTY;
|
|
}
|
|
|
|
ptyno = minor (st.st_rdev);
|
|
/* This is for the old BSD pseudo terminals. As of Linux
|
|
2.1.115 these are no longer supported. */
|
|
if (major (st.st_rdev) == 4)
|
|
ptyno -= 128;
|
|
|
|
if (ptyno / 16 >= strlen (__libc_ptyname1))
|
|
{
|
|
__set_errno (ENOTTY);
|
|
return ENOTTY;
|
|
}
|
|
|
|
p = __stpcpy (buf, _PATH_TTY);
|
|
p[0] = __libc_ptyname1[ptyno / 16];
|
|
p[1] = __libc_ptyname2[ptyno % 16];
|
|
p[2] = '\0';
|
|
}
|
|
|
|
if (__xstat64 (_STAT_VER, buf, &st) < 0)
|
|
return errno;
|
|
|
|
/* Check if the name we're about to return really corresponds to a
|
|
slave pseudo terminal. */
|
|
if (! S_ISCHR (st.st_mode) || ! SLAVE_P (st.st_rdev))
|
|
{
|
|
/* This really is a configuration problem. */
|
|
__set_errno (ENOTTY);
|
|
return ENOTTY;
|
|
}
|
|
|
|
__set_errno (save_errno);
|
|
return 0;
|
|
}
|
|
weak_alias (__ptsname_r, ptsname_r)
|