xref: /freebsd/include/ttyent.h (revision 5a1d14419a5b620430949a46cb6ee63148a43cb9)
12321c474SPedro F. Giffuni /*-
22321c474SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
32321c474SPedro F. Giffuni  *
459deaec5SRodney W. Grimes  * Copyright (c) 1989, 1993
559deaec5SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
659deaec5SRodney W. Grimes  *
759deaec5SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
859deaec5SRodney W. Grimes  * modification, are permitted provided that the following conditions
959deaec5SRodney W. Grimes  * are met:
1059deaec5SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
1159deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
1259deaec5SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
1359deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
1459deaec5SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15f2556687SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
1659deaec5SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
1759deaec5SRodney W. Grimes  *    without specific prior written permission.
1859deaec5SRodney W. Grimes  *
1959deaec5SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2059deaec5SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2159deaec5SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2259deaec5SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2359deaec5SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2459deaec5SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2559deaec5SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2659deaec5SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2759deaec5SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2859deaec5SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2959deaec5SRodney W. Grimes  * SUCH DAMAGE.
3059deaec5SRodney W. Grimes  */
3159deaec5SRodney W. Grimes 
3259deaec5SRodney W. Grimes #ifndef	_TTYENT_H_
3359deaec5SRodney W. Grimes #define	_TTYENT_H_
3459deaec5SRodney W. Grimes 
3559deaec5SRodney W. Grimes #define	_PATH_TTYS	"/etc/ttys"
3659deaec5SRodney W. Grimes 
3759deaec5SRodney W. Grimes #define	_TTYS_OFF	"off"
3859deaec5SRodney W. Grimes #define	_TTYS_ON	"on"
3908942298SNathan Whitehorn #define	_TTYS_ONIFCONSOLE "onifconsole"
4037b58350SWarner Losh #define	_TTYS_ONIFEXISTS "onifexists"
4159deaec5SRodney W. Grimes #define	_TTYS_SECURE	"secure"
42a60c8a80SDavid Nugent #define	_TTYS_INSECURE	"insecure"
4359deaec5SRodney W. Grimes #define	_TTYS_WINDOW	"window"
444ae89ecdSDavid Nugent #define	_TTYS_GROUP	"group"
454ae89ecdSDavid Nugent #define	_TTYS_NOGROUP	"none"
4654065f6bSDavid Nugent #define	_TTYS_DIALUP	"dialup"
4754065f6bSDavid Nugent #define	_TTYS_NETWORK	"network"
4859deaec5SRodney W. Grimes 
4959deaec5SRodney W. Grimes struct ttyent {
5059deaec5SRodney W. Grimes 	char	*ty_name;	/* terminal device name */
5159deaec5SRodney W. Grimes 	char	*ty_getty;	/* command to execute, usually getty */
5259deaec5SRodney W. Grimes 	char	*ty_type;	/* terminal type for termcap */
5359deaec5SRodney W. Grimes #define	TTY_ON		0x01	/* enable logins (start ty_getty program) */
5459deaec5SRodney W. Grimes #define	TTY_SECURE	0x02	/* allow uid of 0 to login */
5554065f6bSDavid Nugent #define	TTY_DIALUP	0x04	/* is a dialup tty */
5654065f6bSDavid Nugent #define	TTY_NETWORK	0x08	/* is a network tty */
57*1cde387cSEdward Tomasz Napierala #define	TTY_IFEXISTS	0x10	/* configured as "onifexists" */
58*1cde387cSEdward Tomasz Napierala #define	TTY_IFCONSOLE	0x20	/* configured as "onifconsole" */
5959deaec5SRodney W. Grimes 	int	ty_status;	/* status flags */
6059deaec5SRodney W. Grimes 	char 	*ty_window;	/* command to start up window manager */
6159deaec5SRodney W. Grimes 	char	*ty_comment;	/* comment field */
624ae89ecdSDavid Nugent 	char	*ty_group;	/* tty group */
6359deaec5SRodney W. Grimes };
6459deaec5SRodney W. Grimes 
6559deaec5SRodney W. Grimes #include <sys/cdefs.h>
6659deaec5SRodney W. Grimes 
6759deaec5SRodney W. Grimes __BEGIN_DECLS
68bb28f3c2SWarner Losh struct ttyent *getttyent(void);
69bb28f3c2SWarner Losh struct ttyent *getttynam(const char *);
70bb28f3c2SWarner Losh int setttyent(void);
71bb28f3c2SWarner Losh int endttyent(void);
72bb28f3c2SWarner Losh int isdialuptty(const char *);
73bb28f3c2SWarner Losh int isnettty(const char *);
7459deaec5SRodney W. Grimes __END_DECLS
7559deaec5SRodney W. Grimes 
7659deaec5SRodney W. Grimes #endif /* !_TTYENT_H_ */
77