2005-09-26 14:54:46 +04:00
|
|
|
.\" $NetBSD: ttyname.3,v 1.19 2005/09/26 10:54:46 wiz Exp $
|
1995-02-27 08:50:11 +03:00
|
|
|
.\"
|
|
|
|
.\" Copyright (c) 1991, 1993
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
2003-08-07 20:42:00 +04:00
|
|
|
.\" 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
1995-02-27 08:50:11 +03:00
|
|
|
.\" @(#)ttyname.3 8.1 (Berkeley) 6/4/93
|
1993-03-21 12:45:37 +03:00
|
|
|
.\"
|
2005-09-26 00:08:01 +04:00
|
|
|
.Dd September 25, 2005
|
1993-03-21 12:45:37 +03:00
|
|
|
.Dt TTYNAME 3
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm ttyname ,
|
2005-09-26 00:08:01 +04:00
|
|
|
.Nm ttyname_r ,
|
1993-03-21 12:45:37 +03:00
|
|
|
.Nm isatty ,
|
|
|
|
.Nm ttyslot
|
|
|
|
.Nd get name of associated terminal (tty) from file descriptor
|
1998-02-05 21:45:17 +03:00
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libc
|
1993-03-21 12:45:37 +03:00
|
|
|
.Sh SYNOPSIS
|
2003-04-16 17:34:34 +04:00
|
|
|
.In unistd.h
|
1993-03-21 12:45:37 +03:00
|
|
|
.Ft char *
|
|
|
|
.Fn ttyname "int fd"
|
2005-09-26 00:43:54 +04:00
|
|
|
.Ft int
|
2005-09-26 00:08:01 +04:00
|
|
|
.Fn ttyname_r "int fd" "char *buf" "size_t len"
|
1993-03-21 12:45:37 +03:00
|
|
|
.Ft int
|
|
|
|
.Fn isatty "int fd"
|
2003-04-16 17:34:34 +04:00
|
|
|
.In stdlib.h
|
1993-03-21 12:45:37 +03:00
|
|
|
.Ft int
|
2001-09-16 06:30:23 +04:00
|
|
|
.Fn ttyslot
|
1993-03-21 12:45:37 +03:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
These functions operate on the system file descriptors for terminal
|
2002-10-01 20:48:34 +04:00
|
|
|
type devices.
|
|
|
|
These descriptors are not related to the standard
|
1993-03-21 12:45:37 +03:00
|
|
|
.Tn I/O
|
|
|
|
.Dv FILE
|
|
|
|
typedef, but refer to the special device files found in
|
|
|
|
.Pa /dev
|
|
|
|
and named
|
|
|
|
.Pa /dev/tty Ns Em xx
|
2005-09-26 14:54:46 +04:00
|
|
|
and for which an entry exists in the initialization file
|
2004-11-11 03:57:57 +03:00
|
|
|
.Pa /etc/ttys
|
|
|
|
(see
|
|
|
|
.Xr ttys 5 ) ,
|
|
|
|
or for pseudo-terminal devices created in ptyfs and named
|
2004-11-11 03:01:38 +03:00
|
|
|
.Pa /dev/pts/ Ns Em n .
|
1993-03-21 12:45:37 +03:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fn isatty
|
|
|
|
function
|
|
|
|
determines if the file descriptor
|
|
|
|
.Fa fd
|
2005-09-26 14:54:46 +04:00
|
|
|
refers to a valid terminal type device.
|
1993-03-21 12:45:37 +03:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fn ttyname
|
2005-09-26 14:54:46 +04:00
|
|
|
function gets the related device name of a file descriptor for
|
|
|
|
which
|
1993-03-21 12:45:37 +03:00
|
|
|
.Fn isatty
|
1998-06-06 23:50:38 +04:00
|
|
|
is true.
|
2005-09-26 00:08:01 +04:00
|
|
|
The
|
|
|
|
.Fn ttyname_r
|
|
|
|
is the reentrant version of the above, and it places the results in
|
|
|
|
.Fa buf .
|
|
|
|
If there is not enough space to place the results (indicated by
|
2005-09-26 14:54:46 +04:00
|
|
|
.Fa len ) ,
|
|
|
|
then it returns \-1 and
|
2005-09-26 00:43:54 +04:00
|
|
|
.Va errno
|
|
|
|
is set to indicate the error.
|
1993-03-21 12:45:37 +03:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fn ttyslot
|
|
|
|
function
|
|
|
|
fetches the current process' control terminal number from the
|
|
|
|
.Xr ttys 5
|
|
|
|
file entry.
|
2004-11-11 03:57:57 +03:00
|
|
|
If the terminal is a pseudo-terminal, and there is no special entry
|
2004-11-11 03:01:38 +03:00
|
|
|
in the
|
|
|
|
.Xr ttys 5
|
2005-09-26 14:54:46 +04:00
|
|
|
file for it, the slot number returned is 1 + (last slot number) +
|
|
|
|
minor(tty).
|
2004-11-11 03:57:57 +03:00
|
|
|
This will return a consistent and unique number for each pseudo-terminal
|
2004-11-11 03:01:38 +03:00
|
|
|
device without requiring one to enumerate all of them in
|
2004-11-11 03:57:57 +03:00
|
|
|
.Xr ttys 5 .
|
1993-03-21 12:45:37 +03:00
|
|
|
.Sh RETURN VALUES
|
|
|
|
The
|
|
|
|
.Fn ttyname
|
2005-09-26 14:54:46 +04:00
|
|
|
function returns the NUL-terminated name if the device is found and
|
1993-03-21 12:45:37 +03:00
|
|
|
.Fn isatty
|
2001-09-16 06:30:23 +04:00
|
|
|
is true; otherwise
|
1993-03-21 12:45:37 +03:00
|
|
|
a
|
|
|
|
.Dv NULL
|
1998-06-06 23:50:38 +04:00
|
|
|
pointer is returned and
|
1999-02-16 22:36:52 +03:00
|
|
|
.Va errno
|
1998-06-06 23:50:38 +04:00
|
|
|
is set to indicate the error.
|
|
|
|
.Pp
|
|
|
|
The
|
2005-09-26 00:43:54 +04:00
|
|
|
.Fn ttyname_r
|
2005-09-26 14:54:46 +04:00
|
|
|
functions returns 0 on success and \-1 on failure with
|
2005-09-26 00:43:54 +04:00
|
|
|
.Va errno
|
|
|
|
set to indicate the error.
|
|
|
|
.Pp
|
|
|
|
The
|
1998-06-06 23:50:38 +04:00
|
|
|
.Fn isatty
|
|
|
|
function returns 1 if
|
|
|
|
.Fa fd
|
|
|
|
is associated with a terminal device; otherwise it returns 0 and
|
1999-02-16 22:36:52 +03:00
|
|
|
.Va errno
|
1998-06-06 23:50:38 +04:00
|
|
|
is set to indicate the error.
|
1993-03-21 12:45:37 +03:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fn ttyslot
|
|
|
|
function
|
|
|
|
returns the unit number of the device file if found; otherwise
|
|
|
|
the value zero is returned.
|
2001-09-16 06:57:03 +04:00
|
|
|
.Sh FILES
|
|
|
|
.Bl -tag -width /etc/ttys -compact
|
|
|
|
.It Pa /dev/\(**
|
|
|
|
.It Pa /etc/ttys
|
|
|
|
.El
|
1998-06-06 23:50:38 +04:00
|
|
|
.Sh ERRORS
|
|
|
|
The
|
2005-09-26 14:54:46 +04:00
|
|
|
.Fn ttyname ,
|
2005-09-26 00:08:01 +04:00
|
|
|
.Fn ttyname_r ,
|
1998-06-06 23:50:38 +04:00
|
|
|
and
|
|
|
|
.Fn isatty
|
|
|
|
functions will fail if:
|
|
|
|
.Bl -tag -width Er
|
|
|
|
.It Bq Er EBADF
|
|
|
|
The
|
|
|
|
.Fa fd
|
|
|
|
argument is not a valid file descriptor.
|
|
|
|
.It Bq Er ENOTTY
|
|
|
|
The
|
|
|
|
.Fa fd
|
|
|
|
argument does not refer to a terminal device.
|
|
|
|
.El
|
2005-09-26 00:08:01 +04:00
|
|
|
The
|
|
|
|
.Fn ttyname_r
|
|
|
|
function will also fail if:
|
|
|
|
.Bl -tag -width Er
|
|
|
|
.It Bq Er ERANGE
|
|
|
|
The buffer provided is not large enough to fit the result.
|
2005-09-26 00:43:54 +04:00
|
|
|
.It Bq Er ENOENT
|
|
|
|
The terminal device is not found.
|
|
|
|
This can happen if the device node has been removed after it was opened.
|
2005-09-26 00:08:01 +04:00
|
|
|
.El
|
1993-03-21 12:45:37 +03:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr ioctl 2 ,
|
|
|
|
.Xr ttys 5
|
1997-07-15 03:19:39 +04:00
|
|
|
.Sh STANDARDS
|
|
|
|
The
|
|
|
|
.Fn ttyname
|
|
|
|
and
|
|
|
|
.Fn isatty
|
|
|
|
functions conform to
|
|
|
|
.St -p1003.1-90 .
|
1993-03-21 12:45:37 +03:00
|
|
|
.Sh HISTORY
|
|
|
|
.Fn isatty ,
|
|
|
|
.Fn ttyname ,
|
|
|
|
and
|
|
|
|
.Fn ttyslot
|
2005-09-26 14:54:46 +04:00
|
|
|
functions appeared in
|
1993-03-21 12:45:37 +03:00
|
|
|
.At v7 .
|
|
|
|
.Sh BUGS
|
|
|
|
The
|
|
|
|
.Fn ttyname
|
|
|
|
function leaves its result in an internal static object and returns
|
2002-10-01 20:48:34 +04:00
|
|
|
a pointer to that object.
|
|
|
|
Subsequent calls to
|
1993-03-21 12:45:37 +03:00
|
|
|
.Fn ttyname
|
|
|
|
will modify the same object.
|