Path: utzoo!attcan!uunet!bbn.com!rsalz From: rsalz@uunet.uu.net (Rich Salz) Newsgroups: comp.sources.unix Subject: v15i072: Xmodem release 3.6, Part03/05 Message-ID: <949@fig.bbn.com> Date: 14 Jun 88 20:24:11 GMT Lines: 856 Approved: rsalz@uunet.UU.NET Submitted-by: Steve Grandi Posting-number: Volume 15, Issue 72 Archive-name: xmodem3.6/part03 : This is a shar archive. Extract with sh, not csh. echo x - getput.c sed -e 's/^X//' > getput.c << '!Funky!Stuff!' X/* X * Contains system routines to get and put bytes, change tty modes, etc X * Most of the routines are VERY 4.2BSD Specific!!! X */ X X#include "xmodem.h" X X/* X * X * Get a byte from the specified file. Buffer the read so we don't X * have to use a system call for each character. X * X */ Xgetbyte(fildes, ch) /* Buffered disk read */ Xint fildes; Xchar *ch; X X { X static char buf[BUFSIZ]; /* Remember buffer */ X static char *bufp = buf; /* Remember where we are in buffer */ X X if (nbchr == 0) /* Buffer exausted; read some more */ X { X if ((nbchr = read(fildes, buf, BUFSIZ)) < 0) X error("File Read Error", TRUE); X bufp = buf; /* Set pointer to start of array */ X } X if (--nbchr >= 0) X { X *ch = *bufp++; X return(0); X } X else X { X return(EOF); X } X } X X/* Count the number of newlines in a file so we know the REAL file size */ X Xlong Xcountnl(fd) Xint fd; X{ X char buf[BUFSIZ]; X char *bufp; X long nltot = 0; X int numchar; X long lseek(); X X while (numchar = read(fd, buf, BUFSIZ)) /* cycle through file */ X for (bufp=buf; numchar--; bufp++) X if (*bufp == '\n') X nltot++; X X (void) lseek (fd, 0l, 0); /* rewind file */ X if (DEBUG) X fprintf(LOGFP, "DEBUG: countnl--%ld newlines counted\n", nltot); X return (nltot); X} X X/* CRC-16 constant array... X from Usenet contribution by Mark G. Mendel, Network Systems Corp. X (ihnp4!umn-cs!hyper!mark) X*/ X X/* crctab as calculated by initcrctab() */ Xunsigned short crctab[1< 0;) { X X /* read however many chars are waiting */ X X if ((select(1, &readfd, (int *)0, (int *)0, &tmout)) == 0) X return(TIMEOUT); X X numread = read(0, inbuf, left); X left -= numread; X X if (DEBUG) X fprintf(LOGFP, "DEBUG: readbuf--read %d characters\n", numread); X X /* now process part of packet we just read */ X X for (j = 0; j < numread; j++) X { X buff[bfctr] = c = inbuf[j] & 0xff; X fileread++; X X if (CRCMODE) /* CRC */ X chksm = (chksm<>(W-B)) ^ c]; X X else /* checksum */ X chksm = ((chksm+c) & 0xff); X X if (CHECKLENGTH && fileread > filelength) /* past EOF ? */ X continue; X X if (tmode) /* text mode processing */ X { X buff[bfctr] &= 0x7f; /* nuke bit 8 */ X if (c == CR || c == 0) /* skip CRs and nulls */ X continue; X else if (c == CTRLZ) /* CP/M EOF char */ X { X recfin = TRUE; X continue; X } X else if (!recfin) /* don't increment if past EOF */ X bfctr++; X } X else if (amode) /* Apple macintosh text mode processing */ X { X buff[bfctr] &= 0x7f; /* nuke bit 8 */ X if (c == 0) /* skip nulls */ X continue; X else if (c == CR) /* translate CR to LF */ X buff[bfctr] = LF; X else if (c == CTRLZ) /* CP/M EOF char */ X { X recfin = TRUE; X continue; X } X if (!recfin) /* don't increment if past EOF */ X bfctr++; X } X else /* binary */ X bfctr++; X X } X X /* go to sleep to save uneeded system calls while kernel X is reading data from serial line; X fudge constant from 10000 to 9000 to avoid sleeping too long. X */ X if (left && !TOOBUSY) X napms( (left= filelength) X logitarg("File end from YMODEM length found in sector %s\n", X sectdisp(recvsectcnt,bufsize,1)); X *checksum = chksm; X *bufctr = bfctr; X return(0); X} X X/* send a byte to data stream */ X Xsendbyte(data) Xchar data; X { X if (DEBUG) X fprintf(LOGFP, "DEBUG: sendbyte %02xh\n", data & 0xff); X X if (write(1, &data, 1) != 1) /* write the byte (assume it goes NOW; no flushing needed) */ X error ("Write error on stream", TRUE); X return; X } X X/* send a buffer to data stream */ X Xwritebuf(buffer, nbytes) Xchar *buffer; Xint nbytes; X { X if (DEBUG) X fprintf(LOGFP, "DEBUG: writebuf (%d bytes)\n", nbytes); X X if (write(1, buffer, nbytes) != nbytes) /* write the buffer (assume no TIOCFLUSH needed) */ X error ("Write error on stream", TRUE); X return; X } X X/* X * "nap" for specified time -- VERY 4.2BSD specific X */ X Xnapms (milliseconds) Xint milliseconds; X{ X struct timeval timeout; X int readfd; X X if (milliseconds == 0) X return; X if (DEBUG) X fprintf (LOGFP, "DEBUG: napping for %d ms\n", milliseconds); X timeout.tv_sec = 0; X timeout.tv_usec = milliseconds * 1000; X readfd = 0; X X (void) select(1, &readfd, (int *)0, (int *)0, &timeout); X} X X X/* set and restore tty modes for XMODEM transfers */ X/* These routines are 4.2/v7(?) specific */ X Xstruct sgttyb ttys, ttysnew; /* for stty terminal mode calls */ Xstruct stat statbuf; /* for terminal message on/off control */ X Xint wason; /* holds status of tty read write/modes */ Xchar *tty; /* current tty name */ X X Xsetmodes() X { X char *ttyname(); X X int n; X X extern onintr(); X X sleep(2); /* let the output appear */ X if (ioctl(0,TIOCGETP,&ttys)<0) /* get tty params [V7] */ X error("Can't get TTY Parameters", TRUE); X X tty = ttyname(0); /* identify current tty */ X X ttysnew.sg_ispeed = ttys.sg_ispeed; /* copy input speed */ X ttysnew.sg_ospeed = ttys.sg_ospeed; /* copy input speed */ X ttysnew.sg_flags |= RAW; /* set for RAW Mode */ X ttysnew.sg_flags &= ~ECHO; /* set for no echoing */ X ttysnew.sg_flags &= ~TANDEM; /* turn off flow control */ X X /* set new paramters */ X if (ioctl(0,TIOCSETP,&ttysnew) < 0) X error("Can't set new TTY Parameters", TRUE); X X /* Flush characters waiting for read or write */ X n = 0; X if (ioctl(0,TIOCFLUSH,&n) < 0) X error("Can't flush terminal queue", TRUE); X X /* get tty status */ X if (stat(tty, &statbuf) < 0) X error("Can't get your TTY Status", TRUE); X X if (statbuf.st_mode & 022) /* Need to turn messages off */ X if (chmod(tty, (int)statbuf.st_mode & ~022) < 0) X error("Can't change TTY mode", TRUE); X else X wason = TRUE; X else X wason = FALSE; X X /* set up signal catcher to restore tty state if we are KILLed */ X X if (signal(SIGTERM, SIG_IGN) != SIG_IGN) X signal(SIGTERM, onintr); X } X X/* restore normal tty modes */ X Xrestoremodes(errcall) Xint errcall; X { X if (wason) X if (chmod(tty, (int)statbuf.st_mode | 022) < 0) X error("Can't change TTY mode", FALSE); X if (ioctl(0,TIOCSETP,&ttys) < 0) X { if (!errcall) X error("RESET - Can't restore normal TTY Params", FALSE); X else X printf("RESET - Can't restore normal TTY Params\n"); X } X if (signal(SIGTERM, SIG_IGN) != SIG_IGN) X signal(SIGTERM, SIG_DFL); X return; X } X X X X X/* signal catcher */ Xonintr() X { X error("Kill signal; bailing out", TRUE); X } X X/* create string with a timestamp for log file */ X Xchar *stamptime() X{ X char *asctime(); /* stuff to get timestamp */ X struct tm *localtime(), *tp; X struct timeval tv; X struct timezone tz; X X gettimeofday (&tv, &tz); /* fill in timestamp */ X tp = localtime ((time_t *)&tv.tv_sec); X return(asctime(tp)); X} X X X X/* get tty speed for time estimates */ X Xgetspeed() X { X static int speedtbl[] = {0, 50, 75, 110, 134, 150, 200, 300, 600, X 1200, 1800, 2400, 4800, 9600, 19200, 0}; X if (ioctl(0,TIOCGETP,&ttys) < 0) /* get tty structure */ X error("Can't get TTY parameters", FALSE); X X if (ttys.sg_ispeed >= 0 && ttys.sg_ispeed <= 14) X { X ttyspeed = speedtbl[ttys.sg_ispeed]; X logitarg ("Line speed = %d bits per second\n", ttyspeed); X } X else X { X ttyspeed = 1200; X logit ("Can't determine line speed; assuming 1200 bps\n"); X } X } !Funky!Stuff! echo x - getput.sysv.c sed -e 's/^X//' > getput.sysv.c << '!Funky!Stuff!' X/* X * Contains system routines to get and put bytes, change tty modes, etc X * Sys V version. UNTESTED!!!!!! X */ X X#include "xmodem.h" X X/* X * X * Get a byte from the specified file. Buffer the read so we don't X * have to use a system call for each character. X * X */ Xgetbyte(fildes, ch) /* Buffered disk read */ Xint fildes; Xchar *ch; X X { X static char buf[BUFSIZ]; /* Remember buffer */ X static char *bufp = buf; /* Remember where we are in buffer */ X X if (nbchr == 0) /* Buffer exausted; read some more */ X { X if ((nbchr = read(fildes, buf, BUFSIZ)) < 0) X error("File Read Error", TRUE); X bufp = buf; /* Set pointer to start of array */ X } X if (--nbchr >= 0) X { X *ch = *bufp++; X return(0); X } X else X { X return(EOF); X } X } X X/* Count the number of newlines in a file so we know the REAL file size */ X Xlong Xcountnl(fd) Xint fd; X{ X char buf[BUFSIZ]; X char *bufp; X long nltot = 0; X int numchar; X long lseek(); X X while (numchar = read(fd, buf, BUFSIZ)) /* cycle through file */ X for (bufp=buf; numchar--; bufp++) X if (*bufp == '\n') X nltot++; X X (void) lseek (fd, 0l, 0); /* rewind file */ X if (DEBUG) X fprintf(LOGFP, "DEBUG: countnl--%ld newlines counted\n", nltot); X return (nltot); X} X X/* CRC-16 constant array... X from Usenet contribution by Mark G. Mendel, Network Systems Corp. X (ihnp4!umn-cs!hyper!mark) X*/ X X/* crctab as calculated by initcrctab() */ Xunsigned short crctab[1< 0;) { X X /* read however many chars are waiting */ X timedout = 0; X alarm(seconds); X numread = read(0, inbuf, left); X alarm(0); X if (timedout) X return(TIMEOUT); X left -= numread; X X if (DEBUG) X fprintf(LOGFP, "DEBUG: readbuf--read %d characters\n", numread); X X /* now process part of packet we just read */ X X for (j = 0; j < numread; j++) X { X buff[bfctr] = c = inbuf[j] & 0xff; X fileread++; X X if (CRCMODE) /* CRC */ X chksm = (chksm<>(W-B)) ^ c]; X X else /* checksum */ X chksm = ((chksm+c) & 0xff); X X if (CHECKLENGTH && fileread > filelength) /* past EOF ? */ X continue; X X if (tmode) /* text mode processing */ X { X buff[bfctr] &= 0x7f; /* nuke bit 8 */ X if (c == CR || c == 0) /* skip CRs and nulls */ X continue; X else if (c == CTRLZ) /* CP/M EOF char */ X { X recfin = TRUE; X continue; X } X else if (!recfin) /* don't increment if past EOF */ X bfctr++; X } X else if (amode) /* Apple macintosh text mode processing */ X { X buff[bfctr] &= 0x7f; /* nuke bit 8 */ X if (c == 0) /* skip nulls */ X continue; X else if (c == CR) /* translate CR to LF */ X buff[bfctr] = LF; X else if (c == CTRLZ) /* CP/M EOF char */ X { X recfin = TRUE; X continue; X } X if (!recfin) /* don't increment if past EOF */ X bfctr++; X } X else /* binary */ X bfctr++; X X } X X /* go to sleep to save uneeded system calls while kernel X is reading data from serial line, fudge constant from 10 to X 9 to avoid sleeping too long X */ X if (left && !TOOBUSY) X sleep ((left= filelength) X logitarg("File end from YMODEM length found in sector %s\n", X sectdisp(recvsectcnt,bufsize,1)); X *checksum = chksm; X *bufctr = bfctr; X return(0); X} X X/* send a byte to data stream */ X Xsendbyte(data) Xchar data; X { X if (DEBUG) X fprintf(LOGFP, "DEBUG: sendbyte %02xh\n", data & 0xff); X X if (write(1, &data, 1) != 1) /* write the byte (assume it goes NOW; no flushing needed) */ X error ("Write error on stream", TRUE); X return; X } X X/* send a buffer to data stream */ X Xwritebuf(buffer, nbytes) Xchar *buffer; Xint nbytes; X { X if (DEBUG) X fprintf(LOGFP, "DEBUG: writebuf (%d bytes)\n", nbytes); X X if (write(1, buffer, nbytes) != nbytes) /* write the buffer (assume no TIOCFLUSH needed) */ X error ("Write error on stream", TRUE); X return; X } X X/* set and restore tty modes for XMODEM transfers */ X Xstruct termio ttys; Xstruct stat statbuf; /* for terminal message on/off control */ X Xint wason; /* holds status of tty read write/modes */ Xchar *tty; /* current tty name */ X X Xsetmodes() X { X char *ttyname(); X struct termio ttysnew; X X extern onintr(); X X sleep(2); /* let the output appear */ X if (ioctl(0,TCGETA,&ttys)<0) /* get tty params */ X error("Can't get TTY Parameters", TRUE); X X tty = ttyname(0); /* identify current tty */ X X if (ioctl(0,TCGETA,&ttysnew)<0) /* get tty params */ X error("Can't get TTY Parameters", TRUE); X ttysnew.c_cc[4] = 1; /* VMIN */ X ttysnew.c_cc[5] = 0; /* VTIME */ X ttysnew.c_iflag = 0; X ttysnew.c_oflag = 0; X ttysnew.c_lflag = 0; X ttysnew.c_cflag &= ~CSIZE; X ttysnew.c_cflag |= CS8; X ttysnew.c_cflag &= ~PARENB; X if (ioctl(0,TCSETA,&ttysnew)<0) /* set new paramters */ X error("Can't set new TTY Parameters", TRUE); X X if (stat(tty, &statbuf) < 0) /* get tty status */ X error("Can't get your TTY Status", TRUE); X X if (statbuf.st_mode & 022) /* Need to turn messages off */ X if (chmod(tty, (int)statbuf.st_mode & ~022) < 0) X error("Can't change TTY mode", TRUE); X else X wason = TRUE; X else X wason = FALSE; X X /* set up signal catcher to restore tty state if we are KILLed */ X X if (signal(SIGTERM, SIG_IGN) != SIG_IGN) X signal(SIGTERM, onintr); X } X X/* restore normal tty modes */ X Xrestoremodes(errcall) Xint errcall; X { X if (wason) X if (chmod(tty, (int)statbuf.st_mode | 022) < 0) X error("Can't change TTY mode", FALSE); X if (ioctl(0,TCSETA,&ttys) < 0) X { if (!errcall) X error("RESET - Can't restore normal TTY Params", FALSE); X else X printf("RESET - Can't restore normal TTY Params\n"); X } X if (signal(SIGTERM, SIG_IGN) != SIG_IGN) X signal(SIGTERM, SIG_DFL); X return; X } X X X X X/* signal catcher */ Xonintr() X { X error("Kill signal; bailing out", TRUE); X } X X/* create string with a timestamp for log file */ X Xchar *stamptime() X{ X char *asctime(); /* stuff to get timestamp */ X struct tm *localtime(), *tp; X long now; X X time(&now); X tp = localtime(&now); X return(asctime(tp)); X} X X X X/* get tty speed for time estimates */ X Xgetspeed() X { X static int speedtbl[] = {0, 50, 75, 110, 134, 150, 200, 300, 600, X 1200, 1800, 2400, 4800, 9600, 19200, 0}; X struct termio ttystemp; X X if (ioctl(0,TCGETA,&ttystemp) < 0) /* get tty structure */ X error("Can't get TTY parameters", FALSE); X if ((ttystemp.c_cflag & 017) >= 0 && (ttystemp.c_cflag & 017) <= 14) X { X ttyspeed = speedtbl[ttystemp.c_cflag & 017]; X logitarg ("Line speed = %d bits per second\n", ttyspeed); X } X else X { X ttyspeed = 1200; X logit ("Can't determine line speed; assuming 1200 bps\n"); X } X } !Funky!Stuff! exit -- Please send comp.sources.unix-related mail to rsalz@uunet.uu.net.