xref: /freebsd/usr.sbin/ppp/prompt.h (revision b3e7694832e81d7a904a10f525f8797b753bf0d3)
185b542cfSBrian Somers /*-
2*4d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
31de7b4b8SPedro F. Giffuni  *
485b542cfSBrian Somers  * Copyright (c) 1998 Brian Somers <brian@Awfulhak.org>
585b542cfSBrian Somers  * All rights reserved.
685b542cfSBrian Somers  *
785b542cfSBrian Somers  * Redistribution and use in source and binary forms, with or without
885b542cfSBrian Somers  * modification, are permitted provided that the following conditions
985b542cfSBrian Somers  * are met:
1085b542cfSBrian Somers  * 1. Redistributions of source code must retain the above copyright
1185b542cfSBrian Somers  *    notice, this list of conditions and the following disclaimer.
1285b542cfSBrian Somers  * 2. Redistributions in binary form must reproduce the above copyright
1385b542cfSBrian Somers  *    notice, this list of conditions and the following disclaimer in the
1485b542cfSBrian Somers  *    documentation and/or other materials provided with the distribution.
1585b542cfSBrian Somers  *
1685b542cfSBrian Somers  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1785b542cfSBrian Somers  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1885b542cfSBrian Somers  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1985b542cfSBrian Somers  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
2085b542cfSBrian Somers  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2185b542cfSBrian Somers  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2285b542cfSBrian Somers  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2385b542cfSBrian Somers  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2485b542cfSBrian Somers  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2585b542cfSBrian Somers  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2685b542cfSBrian Somers  * SUCH DAMAGE.
2785b542cfSBrian Somers  */
2885b542cfSBrian Somers 
29b6217683SBrian Somers #define LOCAL_AUTH	0x01
30b6217683SBrian Somers #define LOCAL_NO_AUTH	0x02
31b6217683SBrian Somers #define LOCAL_DENY	0x03
32b6217683SBrian Somers #define LOCAL_CX	0x04	/* OR'd value - require a context */
33b6217683SBrian Somers #define LOCAL_CX_OPT	0x08	/* OR'd value - optional context */
34b6217683SBrian Somers 
35b6217683SBrian Somers struct server;
362764b86aSBrian Somers struct datalink;
37b6217683SBrian Somers struct bundle;
382764b86aSBrian Somers struct cmdargs;
39b6217683SBrian Somers 
4085b542cfSBrian Somers struct prompt {
41f013f33eSBrian Somers   struct fdescriptor desc;
4285b542cfSBrian Somers   int fd_in, fd_out;
431b35f8f7SBrian Somers   struct datalink *TermMode;	/* The modem we're talking directly to */
4485b542cfSBrian Somers   FILE *Term;			/* sits on top of fd_out */
45b6217683SBrian Somers   u_char auth;			/* Local Authorized status */
46b6217683SBrian Somers   struct server *owner;         /* who created me */
47b6217683SBrian Somers   struct bundle *bundle;	/* who I'm controlling */
48b6217683SBrian Somers   unsigned nonewline : 1;	/* need a newline before our prompt ? */
49b6217683SBrian Somers   unsigned needprompt : 1;	/* Show a prompt at the next UpdateSet() */
50f91ad6b0SBrian Somers   unsigned active : 1;		/* Is the prompt active (^Z) */
51d93d3a9cSBrian Somers   unsigned readtilde : 1;	/* We've read a ``~'' from fd_in */
52b6217683SBrian Somers 
53565e35e5SBrian Somers   struct {
54565e35e5SBrian Somers     const char *type;		/* Type of connection */
55565e35e5SBrian Somers     char from[40];		/* Source of connection */
56565e35e5SBrian Somers   } src;
57b6217683SBrian Somers 
580f2f3eb3SBrian Somers   struct prompt *next;		/* Maintained in log.c */
59b6217683SBrian Somers   u_long logmask;		/* Maintained in log.c */
6085b542cfSBrian Somers 
6185b542cfSBrian Somers   struct termios oldtio;	/* Original tty mode */
6285b542cfSBrian Somers   struct termios comtio;	/* Command level tty mode */
6385b542cfSBrian Somers };
6485b542cfSBrian Somers 
6585b542cfSBrian Somers #define descriptor2prompt(d) \
6685b542cfSBrian Somers   ((d)->type == PROMPT_DESCRIPTOR ? (struct prompt *)(d) : NULL)
6785b542cfSBrian Somers 
68b6217683SBrian Somers #define PROMPT_STD (-1)
69b6217683SBrian Somers extern struct prompt *prompt_Create(struct server *, struct bundle *, int);
70b6217683SBrian Somers extern void prompt_Destroy(struct prompt *, int);
71b6217683SBrian Somers extern void prompt_Required(struct prompt *);
72fe3125a0SBrian Somers #ifdef __GNUC__
73fe3125a0SBrian Somers extern void prompt_Printf(struct prompt *, const char *, ...)
74fe3125a0SBrian Somers                           __attribute__ ((format (printf, 2, 3)));
75fe3125a0SBrian Somers #else
7685b542cfSBrian Somers extern void prompt_Printf(struct prompt *, const char *, ...);
77fe3125a0SBrian Somers #endif
780c50e528SKris Kennaway #ifdef __GNUC__
796eafd353SBrian Somers extern void prompt_vPrintf(struct prompt *, const char *, va_list)
800c50e528SKris Kennaway 			   __attribute__ ((format (printf, 2, 0)));
810c50e528SKris Kennaway #else
826eafd353SBrian Somers extern void prompt_vPrintf(struct prompt *, const char *, va_list);
830c50e528SKris Kennaway #endif
8485b542cfSBrian Somers #define PROMPT_DONT_WANT_INT 1
8585b542cfSBrian Somers #define PROMPT_WANT_INT 0
86565e35e5SBrian Somers extern void prompt_TtyInit(struct prompt *);
8785b542cfSBrian Somers extern void prompt_TtyCommandMode(struct prompt *);
881b35f8f7SBrian Somers extern void prompt_TtyTermMode(struct prompt *, struct datalink *);
8985b542cfSBrian Somers extern void prompt_TtyOldMode(struct prompt *);
9085b542cfSBrian Somers extern pid_t prompt_pgrp(struct prompt *);
91b6217683SBrian Somers extern int PasswdCommand(struct cmdargs const *);
92f91ad6b0SBrian Somers extern void prompt_Suspend(struct prompt *);
93f91ad6b0SBrian Somers extern void prompt_Continue(struct prompt *);
94b6217683SBrian Somers #define prompt_IsTermMode(p, dl) ((p)->TermMode == (dl) ? 1 : 0)
95b6217683SBrian Somers #define prompt_IsController(p) (!(p) || (p)->owner ? 0 : 1)
96b6217683SBrian Somers #define prompt_Required(p) ((p)->needprompt = 1)
97