2010-05-04 10:41:27 +04:00
|
|
|
.\" $NetBSD: ttyaction.3,v 1.15 2010/05/04 06:41:27 jruoho Exp $
|
1996-11-14 20:53:07 +03:00
|
|
|
.\"
|
|
|
|
.\" Copyright (c) 1996 The NetBSD Foundation, Inc.
|
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
.\" by Gordon W. Ross.
|
|
|
|
.\"
|
|
|
|
.\" 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.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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
|
1997-07-31 04:01:15 +04:00
|
|
|
.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
1996-11-14 20:53:07 +03:00
|
|
|
.\" 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.
|
|
|
|
.\"
|
2010-05-04 10:41:27 +04:00
|
|
|
.Dd May 4, 2010
|
1996-11-14 20:53:07 +03:00
|
|
|
.Dt TTYACTION 3
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm ttyaction
|
|
|
|
.Nd ttyaction utility function
|
1998-02-05 21:45:17 +03:00
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libutil
|
1996-11-14 20:53:07 +03:00
|
|
|
.Sh SYNOPSIS
|
2003-04-16 17:34:34 +04:00
|
|
|
.In util.h
|
1997-12-04 09:00:19 +03:00
|
|
|
.Ft int
|
1996-11-14 20:53:07 +03:00
|
|
|
.Fn ttyaction "char *ttyname" "char *action" "char *username"
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Fn ttyaction
|
|
|
|
function is used by
|
1998-08-29 21:31:55 +04:00
|
|
|
.Xr login 1 ,
|
|
|
|
.Xr getty 8 ,
|
|
|
|
.Xr telnetd 8
|
1996-11-14 20:53:07 +03:00
|
|
|
and
|
1998-08-29 21:31:55 +04:00
|
|
|
.Xr rlogind 8
|
1996-11-14 20:53:07 +03:00
|
|
|
to execute site-specific commands
|
|
|
|
when a login session begins and ends.
|
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fn ttyaction
|
|
|
|
function scans the
|
|
|
|
.Pa /etc/ttyaction
|
|
|
|
file for any records that match the current
|
|
|
|
.Fa ttyname
|
|
|
|
and
|
|
|
|
.Fa action
|
2002-10-01 23:36:30 +04:00
|
|
|
parameters, and for each matching record,
|
|
|
|
runs the shell command shown in that record.
|
|
|
|
The record format is described in
|
1996-11-14 20:53:07 +03:00
|
|
|
.Xr ttyaction 5 .
|
|
|
|
The parameter
|
|
|
|
.Fa username
|
|
|
|
is the name of the new owner of the
|
|
|
|
.Fa ttyname
|
2002-10-01 23:36:30 +04:00
|
|
|
device.
|
|
|
|
Note that the
|
1996-11-14 22:16:01 +03:00
|
|
|
.Fa ttyname
|
|
|
|
parameter may be passed as a fully qualified pathname, and the
|
|
|
|
.Fn ttyaction
|
|
|
|
function will skip the leading "/dev/" part of the string.
|
1996-11-18 02:09:55 +03:00
|
|
|
(This is a convenience for login and getty.)
|
1996-11-14 20:53:07 +03:00
|
|
|
.Sh RETURN VALUES
|
|
|
|
.Fn ttyaction
|
|
|
|
returns the status of the last command it executed,
|
|
|
|
or zero if no matching commands were found.
|
|
|
|
.Sh FILES
|
|
|
|
.Bl -tag -width /etc/ttyaction -compact
|
|
|
|
.It Pa /dev/\(**
|
1996-11-16 23:50:12 +03:00
|
|
|
.It Pa /etc/ttyaction
|
1996-11-14 20:53:07 +03:00
|
|
|
.El
|
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr ttyaction 5
|
|
|
|
.Sh AUTHORS
|
2003-02-14 19:29:11 +03:00
|
|
|
.An Gordon W. Ross
|
|
|
|
.Aq gwr@NetBSD.org ,
|
|
|
|
.An Chris G. Demetriou
|
|
|
|
.Aq cgd@NetBSD.org ,
|
|
|
|
.An Ty Sarna
|
2009-10-23 03:08:03 +04:00
|
|
|
.Aq tsarna@NetBSD.org .
|
1996-11-14 20:53:07 +03:00
|
|
|
.Sh BUGS
|
|
|
|
There should be some
|
|
|
|
.Em other
|
|
|
|
mechanism to allow selection of different access control policies
|
2002-10-01 23:36:30 +04:00
|
|
|
on a per-line basis.
|
|
|
|
It has been suggested that the same
|
2010-05-04 10:41:27 +04:00
|
|
|
.Fn ttyaction
|
1996-11-14 20:53:07 +03:00
|
|
|
mechanism should also be used for determining access control, but
|
|
|
|
it was decided (after much discussion) that
|
2010-05-04 10:41:27 +04:00
|
|
|
.Fn ttyaction
|
1996-11-14 20:53:07 +03:00
|
|
|
should only describe actions to be performed
|
|
|
|
.Em after
|
|
|
|
the system has decided to change the ownership of some tty.
|
|
|
|
Access control policies will be handled by a separate mechanism.
|