Home | History | Annotate | Line # | Download | only in aculib
dn11.c revision 1.4
      1 /*	$NetBSD: dn11.c,v 1.4 1995/10/29 00:49:53 pk Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1983, 1993
      5  *	The Regents of the University of California.  All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. All advertising materials mentioning features or use of this software
     16  *    must display the following acknowledgement:
     17  *	This product includes software developed by the University of
     18  *	California, Berkeley and its contributors.
     19  * 4. Neither the name of the University nor the names of its contributors
     20  *    may be used to endorse or promote products derived from this software
     21  *    without specific prior written permission.
     22  *
     23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33  * SUCH DAMAGE.
     34  */
     35 
     36 #ifndef lint
     37 #if 0
     38 static char sccsid[] = "@(#)dn11.c	8.1 (Berkeley) 6/6/93";
     39 #endif
     40 static char rcsid[] = "$NetBSD: dn11.c,v 1.4 1995/10/29 00:49:53 pk Exp $";
     41 #endif /* not lint */
     42 
     43 /*
     44  * Routines for dialing up on DN-11
     45  */
     46 #include "tip.h"
     47 
     48 int dn_abort();
     49 void alarmtr();
     50 static jmp_buf jmpbuf;
     51 static int child = -1, dn;
     52 
     53 dn_dialer(num, acu)
     54 	char *num, *acu;
     55 {
     56 	extern errno;
     57 	char *p, *q, phone[40];
     58 	int lt, nw, connected = 1;
     59 	register int timelim;
     60 	struct termios cntrl;
     61 
     62 	if (boolean(value(VERBOSE)))
     63 		printf("\nstarting call...");
     64 	if ((dn = open(acu, 1)) < 0) {
     65 		if (errno == EBUSY)
     66 			printf("line busy...");
     67 		else
     68 			printf("acu open error...");
     69 		return (0);
     70 	}
     71 	if (setjmp(jmpbuf)) {
     72 		kill(child, SIGKILL);
     73 		close(dn);
     74 		return (0);
     75 	}
     76 	signal(SIGALRM, alarmtr);
     77 	timelim = 5 * strlen(num);
     78 	alarm(timelim < 30 ? 30 : timelim);
     79 	if ((child = fork()) == 0) {
     80 		/*
     81 		 * ignore this stuff for aborts
     82 		 */
     83 		signal(SIGALRM, SIG_IGN);
     84 		signal(SIGINT, SIG_IGN);
     85 		signal(SIGQUIT, SIG_IGN);
     86 		sleep(2);
     87 		nw = write(dn, num, lt = strlen(num));
     88 		exit(nw != lt);
     89 	}
     90 	/*
     91 	 * open line - will return on carrier
     92 	 */
     93 	if ((FD = open(DV, 2)) < 0) {
     94 		if (errno == EIO)
     95 			printf("lost carrier...");
     96 		else
     97 			printf("dialup line open failed...");
     98 		alarm(0);
     99 		kill(child, SIGKILL);
    100 		close(dn);
    101 		return (0);
    102 	}
    103 	alarm(0);
    104 	tcgetattr(dn, &cntrl);
    105 	cntrl.c_cflag |= HUPCL;
    106 	tcsetattr(dn, TCSANOW, &cntrl);
    107 	signal(SIGALRM, SIG_DFL);
    108 	while ((nw = wait(&lt)) != child && nw != -1)
    109 		;
    110 	fflush(stdout);
    111 	close(dn);
    112 	if (lt != 0) {
    113 		close(FD);
    114 		return (0);
    115 	}
    116 	return (1);
    117 }
    118 
    119 void
    120 alarmtr()
    121 {
    122 	alarm(0);
    123 	longjmp(jmpbuf, 1);
    124 }
    125 
    126 /*
    127  * Insurance, for some reason we don't seem to be
    128  *  hanging up...
    129  */
    130 dn_disconnect()
    131 {
    132 
    133 	sleep(2);
    134 	if (FD > 0)
    135 		ioctl(FD, TIOCCDTR, 0);
    136 	close(FD);
    137 }
    138 
    139 dn_abort()
    140 {
    141 
    142 	sleep(2);
    143 	if (child > 0)
    144 		kill(child, SIGKILL);
    145 	if (dn > 0)
    146 		close(dn);
    147 	if (FD > 0)
    148 		ioctl(FD, TIOCCDTR, 0);
    149 	close(FD);
    150 }
    151