NetBSD/lib/libc/gen/ttyname.3

196 lines
4.9 KiB
Groff
Raw Normal View History

2005-09-26 14:54:46 +04:00
.\" $NetBSD: ttyname.3,v 1.19 2005/09/26 10:54:46 wiz Exp $
.\"
.\" 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.
.\" 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.
.\"
.\" @(#)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
.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"
.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
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
.Pa /etc/ttys
(see
.Xr ttys 5 ) ,
or for pseudo-terminal devices created in ptyfs and named
.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
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.
If the terminal is a pseudo-terminal, and there is no special entry
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).
This will return a consistent and unique number for each pseudo-terminal
device without requiring one to enumerate all of them in
.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
pointer is returned and
1999-02-16 22:36:52 +03:00
.Va errno
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
.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
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.
.Sh FILES
.Bl -tag -width /etc/ttys -compact
.It Pa /dev/\(**
.It Pa /etc/ttys
.El
.Sh ERRORS
The
2005-09-26 14:54:46 +04:00
.Fn ttyname ,
2005-09-26 00:08:01 +04:00
.Fn ttyname_r ,
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
.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
a pointer to that object.
Subsequent calls to
1993-03-21 12:45:37 +03:00
.Fn ttyname
will modify the same object.