prompt.c revision 45264
1/*-
2 * Copyright (c) 1998 Brian Somers <brian@Awfulhak.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 *	$Id: prompt.c,v 1.13 1999/01/28 01:56:34 brian Exp $
27 */
28
29#include <sys/param.h>
30#include <netinet/in.h>
31#include <netinet/in_systm.h>
32#include <netinet/ip.h>
33#include <sys/un.h>
34
35#include <errno.h>
36#include <stdarg.h>
37#include <stdio.h>
38#include <stdlib.h>
39#include <string.h>
40#include <sys/fcntl.h>
41#include <termios.h>
42#include <unistd.h>
43
44#include "defs.h"
45#include "timer.h"
46#include "command.h"
47#include "log.h"
48#include "descriptor.h"
49#include "prompt.h"
50#include "fsm.h"
51#include "lcp.h"
52#include "auth.h"
53#include "iplist.h"
54#include "throughput.h"
55#include "slcompress.h"
56#include "mbuf.h"
57#include "lqr.h"
58#include "hdlc.h"
59#include "ipcp.h"
60#include "filter.h"
61#include "async.h"
62#include "ccp.h"
63#include "link.h"
64#include "physical.h"
65#include "mp.h"
66#ifndef NORADIUS
67#include "radius.h"
68#endif
69#include "bundle.h"
70#include "chat.h"
71#include "chap.h"
72#include "cbcp.h"
73#include "datalink.h"
74#include "server.h"
75#include "main.h"
76
77static void
78prompt_Display(struct prompt *p)
79{
80  /* XXX: See Index2Nam() - should we only figure this out once ? */
81  static char shostname[MAXHOSTNAMELEN];
82  const char *pconnect, *pauth;
83
84  if (p->TermMode || !p->needprompt)
85    return;
86
87  p->needprompt = 0;
88
89  if (p->nonewline)
90    p->nonewline = 0;
91  else
92    fprintf(p->Term, "\n");
93
94  if (p->auth == LOCAL_AUTH)
95    pauth = " ON ";
96  else
97    pauth = " on ";
98
99  if (p->bundle->ncp.ipcp.fsm.state == ST_OPENED)
100    pconnect = "PPP";
101  else if (bundle_Phase(p->bundle) == PHASE_NETWORK)
102    pconnect = "PPp";
103  else if (bundle_Phase(p->bundle) == PHASE_AUTHENTICATE)
104    pconnect = "Ppp";
105  else
106    pconnect = "ppp";
107
108  if (*shostname == '\0') {
109    char *dot;
110
111    if (gethostname(shostname, sizeof shostname))
112      strcpy(shostname, "localhost");
113    else if ((dot = strchr(shostname, '.')))
114      *dot = '\0';
115  }
116
117  fprintf(p->Term, "%s%s%s> ", pconnect, pauth, shostname);
118  fflush(p->Term);
119}
120
121static int
122prompt_UpdateSet(struct descriptor *d, fd_set *r, fd_set *w, fd_set *e, int *n)
123{
124  struct prompt *p = descriptor2prompt(d);
125  int sets;
126
127  sets = 0;
128
129  if (!p->active)
130    return sets;
131
132  if (p->fd_in >= 0) {
133    if (r) {
134      FD_SET(p->fd_in, r);
135      log_Printf(LogTIMER, "prompt %s: fdset(r) %d\n", p->src.from, p->fd_in);
136      sets++;
137    }
138    if (e) {
139      FD_SET(p->fd_in, e);
140      log_Printf(LogTIMER, "prompt %s: fdset(e) %d\n", p->src.from, p->fd_in);
141      sets++;
142    }
143    if (sets && *n < p->fd_in + 1)
144      *n = p->fd_in + 1;
145  }
146
147  prompt_Display(p);
148
149  return sets;
150}
151
152static int
153prompt_IsSet(struct descriptor *d, const fd_set *fdset)
154{
155  struct prompt *p = descriptor2prompt(d);
156  return p->fd_in >= 0 && FD_ISSET(p->fd_in, fdset);
157}
158
159
160static void
161prompt_ShowHelp(struct prompt *p)
162{
163  prompt_Printf(p, "The following commands are available:\n");
164  prompt_Printf(p, " ~p\tEnter Packet mode\n");
165  prompt_Printf(p, " ~t\tShow timers\n");
166  prompt_Printf(p, " ~m\tShow memory map\n");
167  prompt_Printf(p, " ~.\tTerminate program\n");
168  prompt_Printf(p, " ~?\tThis help\n");
169}
170
171static void
172prompt_Read(struct descriptor *d, struct bundle *bundle, const fd_set *fdset)
173{
174  struct prompt *p = descriptor2prompt(d);
175  int n;
176  char ch;
177  char linebuff[LINE_LEN];
178
179  if (p->TermMode == NULL) {
180    n = read(p->fd_in, linebuff, sizeof linebuff - 1);
181    if (n > 0) {
182      if (linebuff[n-1] == '\n')
183        linebuff[--n] = '\0';
184      else
185        linebuff[n] = '\0';
186      p->nonewline = 1;		/* Maybe command_Decode does a prompt */
187      prompt_Required(p);
188      if (n)
189        command_Decode(bundle, linebuff, n, p, p->src.from);
190    } else if (n <= 0) {
191      log_Printf(LogPHASE, "%s: Client connection closed.\n", p->src.from);
192      if (!p->owner)
193        Cleanup(EX_NORMAL);
194      prompt_Destroy(p, 0);
195    }
196    return;
197  }
198
199  switch (p->TermMode->state) {
200    case DATALINK_CLOSED:
201      prompt_Printf(p, "Link lost, terminal mode.\n");
202      prompt_TtyCommandMode(p);
203      p->nonewline = 0;
204      prompt_Required(p);
205      return;
206
207    case DATALINK_READY:
208      break;
209
210    case DATALINK_OPEN:
211      prompt_Printf(p, "\nPacket mode detected.\n");
212      prompt_TtyCommandMode(p);
213      p->nonewline = 0;
214      /* We'll get a prompt because of our status change */
215      /* Fall through */
216
217    default:
218      /* Wait 'till we're in a state we care about */
219      return;
220  }
221
222  /*
223   * We are in terminal mode, decode special sequences
224   */
225  n = read(p->fd_in, &ch, 1);
226  log_Printf(LogDEBUG, "Got %d bytes (reading from the terminal)\n", n);
227
228  if (n > 0) {
229    switch (p->readtilde) {
230    case 0:
231      if (ch == '~')
232        p->readtilde = 1;
233      else
234	if (physical_Write(p->TermMode->physical, &ch, n) < 0) {
235	  log_Printf(LogWARN, "error writing to modem: %s\n", strerror(errno));
236          prompt_TtyCommandMode(p);
237        }
238      break;
239    case 1:
240      switch (ch) {
241      case '?':
242	prompt_ShowHelp(p);
243	break;
244      case 'p':
245        datalink_Up(p->TermMode, 0, 1);
246        prompt_Printf(p, "\nPacket mode.\n");
247	prompt_TtyCommandMode(p);
248        break;
249      case '.':
250	prompt_TtyCommandMode(p);
251        p->nonewline = 0;
252        prompt_Required(p);
253	break;
254      case 't':
255	timer_Show(0, p);
256	break;
257      case 'm':
258        {
259          struct cmdargs arg;
260
261          arg.cmdtab = NULL;
262          arg.cmd = NULL;
263          arg.argc = 0;
264          arg.argn = 0;
265          arg.argv = NULL;
266          arg.bundle = bundle;
267          arg.cx = p->TermMode;
268          arg.prompt = p;
269
270	  mbuf_Show(&arg);
271        }
272	break;
273      default:
274	if (physical_Write(p->TermMode->physical, &ch, n) < 0) {
275	  log_Printf(LogWARN, "error writing to modem: %s\n", strerror(errno));
276          prompt_TtyCommandMode(p);
277        }
278	break;
279      }
280      p->readtilde = 0;
281      break;
282    }
283  }
284}
285
286static int
287prompt_Write(struct descriptor *d, struct bundle *bundle, const fd_set *fdset)
288{
289  /* We never want to write here ! */
290  log_Printf(LogALERT, "prompt_Write: Internal error: Bad call !\n");
291  return 0;
292}
293
294struct prompt *
295prompt_Create(struct server *s, struct bundle *bundle, int fd)
296{
297  struct prompt *p = (struct prompt *)malloc(sizeof(struct prompt));
298
299  if (p != NULL) {
300    p->desc.type = PROMPT_DESCRIPTOR;
301    p->desc.UpdateSet = prompt_UpdateSet;
302    p->desc.IsSet = prompt_IsSet;
303    p->desc.Read = prompt_Read;
304    p->desc.Write = prompt_Write;
305
306    if (fd == PROMPT_STD) {
307      char *tty = ttyname(STDIN_FILENO);
308
309      if (!tty) {
310        free(p);
311        return NULL;
312      }
313      p->fd_in = STDIN_FILENO;
314      p->fd_out = STDOUT_FILENO;
315      p->Term = stdout;
316      p->owner = NULL;
317      p->auth = LOCAL_AUTH;
318      p->src.type = "Controller";
319      strncpy(p->src.from, tty, sizeof p->src.from - 1);
320      p->src.from[sizeof p->src.from - 1] = '\0';
321      tcgetattr(p->fd_in, &p->oldtio);	/* Save original tty mode */
322    } else {
323      p->fd_in = p->fd_out = fd;
324      p->Term = fdopen(fd, "a+");
325      p->owner = s;
326      p->auth = *s->passwd ? LOCAL_NO_AUTH : LOCAL_AUTH;
327      p->src.type = "unknown";
328      *p->src.from = '\0';
329    }
330    p->TermMode = NULL;
331    p->nonewline = 1;
332    p->needprompt = 1;
333    p->readtilde = 0;
334    p->bundle = bundle;
335    log_RegisterPrompt(p);
336  }
337
338  return p;
339}
340
341void
342prompt_Destroy(struct prompt *p, int verbose)
343{
344  if (p) {
345    if (p->Term != stdout) {
346      fclose(p->Term);
347      close(p->fd_in);
348      if (p->fd_out != p->fd_in)
349        close(p->fd_out);
350      if (verbose)
351        log_Printf(LogPHASE, "%s: Client connection dropped.\n", p->src.from);
352    } else
353      prompt_TtyOldMode(p);
354
355    log_UnRegisterPrompt(p);
356    free(p);
357  }
358}
359
360void
361prompt_Printf(struct prompt *p, const char *fmt,...)
362{
363  if (p && p->active) {
364    va_list ap;
365
366    va_start(ap, fmt);
367    prompt_vPrintf(p, fmt, ap);
368    va_end(ap);
369  }
370}
371
372void
373prompt_vPrintf(struct prompt *p, const char *fmt, va_list ap)
374{
375  if (p && p->active) {
376    char nfmt[LINE_LEN];
377    const char *pfmt;
378
379    if (p->TermMode) {
380      /* Stuff '\r' in front of '\n' 'cos we're in raw mode */
381      int len = strlen(fmt);
382
383      if (len && len < sizeof nfmt - 1 && fmt[len-1] == '\n' &&
384          (len == 1 || fmt[len-2] != '\r')) {
385        strcpy(nfmt, fmt);
386        strcpy(nfmt + len - 1, "\r\n");
387        pfmt = nfmt;
388      } else
389        pfmt = fmt;
390    } else
391      pfmt = fmt;
392    vfprintf(p->Term, pfmt, ap);
393    fflush(p->Term);
394    p->nonewline = 1;
395  }
396}
397
398void
399prompt_TtyInit(struct prompt *p)
400{
401  int stat, fd = p ? p->fd_in : STDIN_FILENO;
402  struct termios newtio;
403
404  stat = fcntl(fd, F_GETFL, 0);
405  if (stat > 0) {
406    stat |= O_NONBLOCK;
407    fcntl(fd, F_SETFL, stat);
408  }
409
410  if (p)
411    newtio = p->oldtio;
412  else
413    tcgetattr(fd, &newtio);
414
415  newtio.c_lflag &= ~(ECHO | ISIG | ICANON);
416  newtio.c_iflag = 0;
417  newtio.c_oflag &= ~OPOST;
418  if (!p)
419    newtio.c_cc[VINTR] = _POSIX_VDISABLE;
420  newtio.c_cc[VMIN] = 1;
421  newtio.c_cc[VTIME] = 0;
422  newtio.c_cflag |= CS8;
423  tcsetattr(fd, TCSANOW, &newtio);
424  if (p)
425    p->comtio = newtio;
426}
427
428/*
429 *  Set tty into command mode. We allow canonical input and echo processing.
430 */
431void
432prompt_TtyCommandMode(struct prompt *p)
433{
434  struct termios newtio;
435  int stat;
436
437  tcgetattr(p->fd_in, &newtio);
438  newtio.c_lflag |= (ECHO | ISIG | ICANON);
439  newtio.c_iflag = p->oldtio.c_iflag;
440  newtio.c_oflag |= OPOST;
441  tcsetattr(p->fd_in, TCSADRAIN, &newtio);
442
443  stat = fcntl(p->fd_in, F_GETFL, 0);
444  if (stat > 0) {
445    stat |= O_NONBLOCK;
446    fcntl(p->fd_in, F_SETFL, stat);
447  }
448
449  p->TermMode = NULL;
450}
451
452/*
453 * Set tty into terminal mode which is used while we invoke term command.
454 */
455void
456prompt_TtyTermMode(struct prompt *p, struct datalink *dl)
457{
458  int stat;
459
460  if (p->Term == stdout)
461    tcsetattr(p->fd_in, TCSADRAIN, &p->comtio);
462
463  stat = fcntl(p->fd_in, F_GETFL, 0);
464  if (stat > 0) {
465    stat &= ~O_NONBLOCK;
466    fcntl(p->fd_in, F_SETFL, stat);
467  }
468  p->TermMode = dl;
469}
470
471void
472prompt_TtyOldMode(struct prompt *p)
473{
474  int stat;
475
476  stat = fcntl(p->fd_in, F_GETFL, 0);
477  if (stat > 0) {
478    stat &= ~O_NONBLOCK;
479    fcntl(p->fd_in, F_SETFL, stat);
480  }
481
482  if (p->Term == stdout)
483    tcsetattr(p->fd_in, TCSADRAIN, &p->oldtio);
484}
485
486pid_t
487prompt_pgrp(struct prompt *p)
488{
489  return tcgetpgrp(p->fd_in);
490}
491
492int
493PasswdCommand(struct cmdargs const *arg)
494{
495  const char *pass;
496
497  if (!arg->prompt) {
498    log_Printf(LogWARN, "passwd: Cannot specify without a prompt\n");
499    return 0;
500  }
501
502  if (arg->prompt->owner == NULL) {
503    log_Printf(LogWARN, "passwd: Not required\n");
504    return 0;
505  }
506
507  if (arg->argc == arg->argn)
508    pass = "";
509  else if (arg->argc > arg->argn+1)
510    return -1;
511  else
512    pass = arg->argv[arg->argn];
513
514  if (!strcmp(arg->prompt->owner->passwd, pass))
515    arg->prompt->auth = LOCAL_AUTH;
516  else
517    arg->prompt->auth = LOCAL_NO_AUTH;
518
519  return 0;
520}
521
522static struct pppTimer bgtimer;
523
524static void
525prompt_TimedContinue(void *v)
526{
527  prompt_Continue((struct prompt *)v);
528}
529
530void
531prompt_Continue(struct prompt *p)
532{
533  timer_Stop(&bgtimer);
534  if (getpgrp() == prompt_pgrp(p)) {
535    prompt_TtyCommandMode(p);
536    p->nonewline = 1;
537    prompt_Required(p);
538    log_ActivatePrompt(p);
539  } else if (!p->owner) {
540    bgtimer.func = prompt_TimedContinue;
541    bgtimer.name = "prompt bg";
542    bgtimer.load = SECTICKS;
543    bgtimer.arg = p;
544    timer_Start(&bgtimer);
545  }
546}
547
548void
549prompt_Suspend(struct prompt *p)
550{
551  if (getpgrp() == prompt_pgrp(p)) {
552    prompt_TtyOldMode(p);
553    log_DeactivatePrompt(p);
554  }
555}
556