/* * Copyright (c) 1997, 2000 Hellmuth Michaelis. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * *--------------------------------------------------------------------------- * * main.c - isdndecode main program file * ------------------------------------- * * $Id: main.c,v 1.13 2000/02/21 15:17:17 hm Exp $ * * $FreeBSD: src/usr.sbin/i4b/isdndecode/main.c,v 1.8.2.1 2001/08/01 17:45:05 obrien Exp $ * $DragonFly: src/usr.sbin/i4b/isdndecode/main.c,v 1.3 2003/11/16 15:17:35 eirikn Exp $ * * last edit-date: [Mon Feb 21 16:19:30 2000] * *---------------------------------------------------------------------------*/ #include "decode.h" unsigned char buf[BSIZE]; FILE *Fout = NULL; FILE *BP = NULL; int outflag = 1; int header = 1; int print_q921 = 1; int unit = 0; int dchan = 0; int bchan = 0; int traceon = 0; int analyze = 0; int Rx = RxUDEF; int Tx = TxUDEF; int f; int Bopt = 0; int Popt = 0; int bpopt = 0; int info = 0; int xflag = 0; int enable_trace = TRACE_D_RX | TRACE_D_TX; static char outfilename[1024]; static char BPfilename[1024]; static void dumpbuf( int n, unsigned char *buf, i4b_trace_hdr_t *hdr); static int switch_driver( int value, int rx, int tx ); static void usage( void ); static void exit_hdl( void ); static void reopenfiles( int ); /*---------------------------------------------------------------------------* * usage intructions *---------------------------------------------------------------------------*/ void usage(void) { fprintf(stderr,"\n"); fprintf(stderr,"isdndecode - isdn4bsd package ISDN decoder for passive cards (%d.%d.%d)\n", VERSION, REL, STEP); fprintf(stderr,"usage: isdntrace -a -b -d -f -h -i -l -n -o -p -r -u \n"); fprintf(stderr," -x -B -P -R -T \n"); fprintf(stderr," -a analyzer mode ................................... (default off)\n"); fprintf(stderr," -b switch B channel trace on ....................... (default off)\n"); fprintf(stderr," -d switch D channel trace off ....................... (default on)\n"); fprintf(stderr," -f write output to file filename ........... (default %s0)\n", DECODE_FILE_NAME); fprintf(stderr," -h don't print header for each message ............. (default off)\n"); fprintf(stderr," -i print I.430 (layer 1) INFO signals .............. (default off)\n"); fprintf(stderr," -l don't decode low layer Q.921 messages ........... (default off)\n"); fprintf(stderr," -o don't write output to a file .................... (default off)\n"); fprintf(stderr," -p specify filename for -B and -P ........ (default %s0)\n", BIN_FILE_NAME); fprintf(stderr," -u specify controller unit number ............... (default unit 0)\n"); fprintf(stderr," -x print packets with unknown protocoldiscriminator (default off)\n"); fprintf(stderr," -B write binary trace data to file filename ........ (default off)\n"); fprintf(stderr," -P playback from binary trace data file ............ (default off)\n"); fprintf(stderr," -R analyze Rx controller unit number (for -a) ... (default unit %d)\n", RxUDEF); fprintf(stderr," -T analyze Tx controller unit number (for -a) ... (default unit %d)\n", TxUDEF); fprintf(stderr,"\n"); exit(1); } /*---------------------------------------------------------------------------* * main *---------------------------------------------------------------------------*/ int main(int argc, char *argv[]) { extern int optind; extern int opterr; extern char *optarg; char devicename[80]; char headerbuf[256]; int n; int c; char *b; char *outfile = DECODE_FILE_NAME; char *binfile = BIN_FILE_NAME; int outfileset = 0; time_t tm; i4b_trace_hdr_t *ithp = NULL; int l; b = &buf[sizeof(i4b_trace_hdr_t)]; while( (c = getopt(argc, argv, "abdf:hiln:op:u:xBPR:T:")) != -1) { switch(c) { case 'a': analyze = 1; break; case 'b': enable_trace |= (TRACE_B_RX | TRACE_B_TX); break; case 'd': enable_trace &= (~(TRACE_D_TX | TRACE_D_RX)); break; case 'o': outflag = 0; break; case 'f': outfile = optarg; outfileset = 1; break; case 'h': header = 0; break; case 'i': enable_trace |= TRACE_I; info = 1; break; case 'l': print_q921 = 0; break; case 'p': binfile = optarg; bpopt = 1; break; case 'u': unit = atoi(optarg); if(unit < 0 || unit >= MAX_CONTROLLERS) usage(); break; case 'x': xflag = 1; break; case 'B': Bopt = 1; break; case 'P': Popt = 1; break; case 'R': Rx = atoi(optarg); if(Rx < 0 || Rx >= MAX_CONTROLLERS) usage(); break; case 'T': Tx = atoi(optarg); if(Tx < 0 || Tx >= MAX_CONTROLLERS) usage(); break; case '?': default: usage(); break; } } if(enable_trace == 0) usage(); if(Bopt && Popt) usage(); atexit(exit_hdl); if(Bopt) { if(bpopt) sprintf(BPfilename, "%s", binfile); else sprintf(BPfilename, "%s%d", BIN_FILE_NAME, unit); if((BP = fopen(BPfilename, "r")) != NULL) { char buffer[1024]; fclose(BP); sprintf(buffer, "%s%s", BPfilename, DECODE_FILE_NAME_BAK); rename(BPfilename, buffer); } if((BP = fopen(BPfilename, "w")) == NULL) { char buffer[80]; sprintf(buffer, "Error opening file [%s]", BPfilename); perror(buffer); exit(1); } if((setvbuf(BP, NULL, _IONBF, 0)) != 0) { char buffer[80]; sprintf(buffer, "Error setting file [%s] to unbuffered", BPfilename); perror(buffer); exit(1); } } if(Popt) { if(bpopt) sprintf(BPfilename, "%s", binfile); else sprintf(BPfilename, "%s%d", BIN_FILE_NAME, unit); if((BP = fopen(BPfilename, "r")) == NULL) { char buffer[80]; sprintf(buffer, "Error opening file [%s]", BPfilename); perror(buffer); exit(1); } } else { sprintf(devicename, "%s%d", I4BTRC_DEVICE, unit); if((f = open(devicename, O_RDWR)) < 0) { char buffer[80]; sprintf(buffer, "Error opening trace device [%s]", devicename); perror(buffer); exit(1); } } if(outflag) { if(outfileset == 0) sprintf(outfilename, "%s%d", DECODE_FILE_NAME, unit); else strcpy(outfilename, outfile); if((Fout = fopen(outfilename, "r")) != NULL) { char buffer[1024]; fclose(Fout); sprintf(buffer, "%s%s", outfilename, DECODE_FILE_NAME_BAK); rename(outfilename, buffer); } if((Fout = fopen(outfilename, "w")) == NULL) { char buffer[80]; sprintf(buffer, "Error opening file [%s]", outfilename); perror(buffer); exit(1); } if((setvbuf(Fout, NULL, _IONBF, 0)) != 0) { char buffer[80]; sprintf(buffer, "Error setting file [%s] to unbuffered", outfile); perror(buffer); exit(1); } } if((setvbuf(stdout, NULL, _IOLBF, 0)) != 0) { char buffer[80]; sprintf(buffer, "Error setting stdout to line-buffered"); perror(buffer); exit(1); } if(!Popt) { if((switch_driver(enable_trace, Rx, Tx)) == -1) exit(1); else traceon = 1; } signal(SIGHUP, SIG_IGN); /* ignore hangup signal */ signal(SIGUSR1, reopenfiles); /* rotate logfile(s) */ time(&tm); if(analyze) { sprintf(headerbuf, "\n==== isdnanalyze controller rx #%d - tx #%d ==== started %s", Rx, Tx, ctime(&tm)); } else { sprintf(headerbuf, "\n=========== isdntrace controller #%d =========== started %s", unit, ctime(&tm)); } printf("%s", headerbuf); if(outflag) fprintf(Fout, "%s", headerbuf); for (;;) { if(Popt == 0) { n = read(f, buf, BSIZE); if(Bopt) { if((fwrite(buf, 1, n, BP)) != n) { char buffer[80]; sprintf(buffer, "Error writing file [%s]", BPfilename); perror(buffer); exit(1); } } n -= sizeof(i4b_trace_hdr_t); } else { if((fread(buf, 1, sizeof(i4b_trace_hdr_t), BP)) != sizeof(i4b_trace_hdr_t)) { if(feof(BP)) { printf("\nEnd of playback input file reached.\n"); exit(0); } else { char buffer[80]; sprintf(buffer, "Error reading hdr from file [%s]", BPfilename); perror(buffer); exit(1); } } ithp = (i4b_trace_hdr_t *)buf; l = ithp->length - sizeof(i4b_trace_hdr_t); if((n = fread(buf+sizeof(i4b_trace_hdr_t), 1, l , BP)) != l) { char buffer[80]; sprintf(buffer, "Error reading data from file [%s]", BPfilename); perror(buffer); exit(1); } } if(n > 0) { dumpbuf(n, b, (i4b_trace_hdr_t *)buf); } } } /*---------------------------------------------------------------------------* * format header into static buffer, return buffer address *---------------------------------------------------------------------------*/ char * fmt_hdr(i4b_trace_hdr_t *hdr, int frm_len) { struct tm *s; static char hbuf[256]; int i = 0; s = localtime((time_t *)&(hdr->time.tv_sec)); if(hdr->type == TRC_CH_I) /* Layer 1 INFO's */ { sprintf(hbuf,"\n-- %s - unit:%d ---------------- time:%2.2d.%2.2d %2.2d:%2.2d:%2.2d.%06u ", ((hdr->dir) ? "NT->TE" : "TE->NT"), hdr->unit, s->tm_mday, s->tm_mon + 1, s->tm_hour, s->tm_min, s->tm_sec, (u_int32_t)hdr->time.tv_usec); } else { if(hdr->trunc > 0) { sprintf(hbuf,"\n-- %s - unit:%d - frame:%6.6u - time:%2.2d.%2.2d %2.2d:%2.2d:%2.2d.%06u - length:%d (%d) ", ((hdr->dir) ? "NT->TE" : "TE->NT"), hdr->unit, hdr->count, s->tm_mday, s->tm_mon + 1, s->tm_hour, s->tm_min, s->tm_sec, (u_int32_t)hdr->time.tv_usec, frm_len, hdr->trunc); } else { sprintf(hbuf,"\n-- %s - unit:%d - frame:%6.6u - time:%2.2d.%2.2d %2.2d:%2.2d:%2.2d.%06u - length:%d ", ((hdr->dir) ? "NT->TE" : "TE->NT"), hdr->unit, hdr->count, s->tm_mday, s->tm_mon + 1, s->tm_hour, s->tm_min, s->tm_sec, (u_int32_t)hdr->time.tv_usec, frm_len); } } for(i=strlen(hbuf); i <= NCOLS;) hbuf[i++] = '-'; hbuf[i++] = '\n'; hbuf[i] = '\0'; return(hbuf); } /*---------------------------------------------------------------------------* * decode protocol and output to file(s) *---------------------------------------------------------------------------*/ static void dumpbuf(int n, unsigned char *buf, i4b_trace_hdr_t *hdr) { static char l1buf[128]; static unsigned char l2buf[32000]; static unsigned char l3buf[32000]; int cnt; int nsave = n; char *pbuf; int i, j; l1buf[0] = '\0'; l2buf[0] = '\0'; l3buf[0] = '\0'; switch(hdr->type) { case TRC_CH_I: /* Layer 1 INFO's */ if(enable_trace & TRACE_I) layer1(l1buf, buf); break; case TRC_CH_D: /* D-channel data */ cnt = layer2(l2buf, buf, hdr->dir, print_q921); if(print_q921 == 0) l2buf[0] = '\0'; n -= cnt; buf += cnt; if(n) { if((*buf != 0x08) && (xflag == 0)) { l2buf[0] = '\0'; l3buf[0] = '\0'; break; } layer3(l3buf, n, cnt, buf); } break; default: /* B-channel data */ pbuf = &l2buf[0]; for (i = 0; i < n; i += 16) { sprintf((pbuf+strlen(pbuf)),"B%d:%.3x ", hdr->type, i); for (j = 0; j < 16; j++) if (i + j < n) sprintf((pbuf+strlen(pbuf)),"%02x ", buf[i + j]); else sprintf((pbuf+strlen(pbuf))," "); sprintf((pbuf+strlen(pbuf))," "); for (j = 0; j < 16 && i + j < n; j++) if (isprint(buf[i + j])) sprintf((pbuf+strlen(pbuf)),"%c", buf[i + j]); else sprintf((pbuf+strlen(pbuf)),"."); sprintf((pbuf+strlen(pbuf)),"\n"); } break; } if(header && ((l1buf[0] != '\0' || l2buf[0] != '\0') || (l3buf[0] != 0))) { char *p; p = fmt_hdr(hdr, nsave); printf("%s", p); if(outflag) fprintf(Fout, "%s", p); } if(l1buf[0] != '\0') { printf("%s", l1buf); if(outflag) fprintf(Fout, "%s", l1buf); } if(l2buf[0] != '\0') { printf("%s", l2buf); if(outflag) fprintf(Fout, "%s", l2buf); } if(l3buf[0] != '\0') { printf("%s", l3buf); if(outflag) fprintf(Fout, "%s", l3buf); } } /*---------------------------------------------------------------------------* * exit handler function to be called at program exit *---------------------------------------------------------------------------*/ void exit_hdl(void) { if(traceon) switch_driver(TRACE_OFF, Rx, Tx); } /*---------------------------------------------------------------------------* * switch driver debugging output on/off *---------------------------------------------------------------------------*/ static int switch_driver(int value, int rx, int tx) { char buffer[80]; int v = value; if(analyze == 0) { if(ioctl(f, I4B_TRC_SET, &v) < 0) { sprintf(buffer, "Error ioctl I4B_TRC_SET, val = %d", v); perror(buffer); return(-1); } } else { if(value == TRACE_OFF) { if(ioctl(f, I4B_TRC_RESETA, &v) < 0) { sprintf(buffer, "Error ioctl I4B_TRC_RESETA - "); perror(buffer); return(-1); } } else { i4b_trace_setupa_t tsa; tsa.rxunit = rx; tsa.rxflags = value; tsa.txunit = tx; tsa.txflags = value; if(ioctl(f, I4B_TRC_SETA, &tsa) < 0) { sprintf(buffer, "Error ioctl I4B_TRC_SETA, val = %d", v); perror(buffer); return(-1); } } } return(0); } /*---------------------------------------------------------------------------* * reopen files to support rotating logfile(s) on SIGUSR1 * * based on an idea from Ripley (ripley@nostromo.in-berlin.de) * * close file and reopen it for append. this will be a nop * if the previously opened file hasn't moved but will open * a new one otherwise, thus enabling a rotation... * *---------------------------------------------------------------------------*/ static void reopenfiles(int dummy) { if(outflag) { fclose(Fout); if((Fout = fopen(outfilename, "a")) == NULL) { char buffer[80]; sprintf(buffer, "Error re-opening file [%s]", outfilename); perror(buffer); exit(1); } if((setvbuf(Fout, NULL, _IONBF, 0)) != 0) { char buffer[80]; sprintf(buffer, "Error re-setting file [%s] to unbuffered", outfilename); perror(buffer); exit(1); } } if(Bopt) { fclose(BP); if((BP = fopen(BPfilename, "a")) == NULL) { char buffer[80]; sprintf(buffer, "Error re-opening file [%s]", BPfilename); perror(buffer); exit(1); } if((setvbuf(BP, NULL, _IONBF, 0)) != 0) { char buffer[80]; sprintf(buffer, "Error re-setting file [%s] to unbuffered", BPfilename); perror(buffer); exit(1); } } } /*---------------------------------------------------------------------------* * decode extension bit *---------------------------------------------------------------------------*/ void extension(int layer, char *buffer, int cnt, unsigned char value, unsigned char mask) { sprintline(layer, buffer, cnt, value, mask, "Extension Bit = %c (%s)", (value & mask) ? '1' : '0', (value & mask) ? "no extension, final octet" : "with extension, octet follows"); } /*---------------------------------------------------------------------------* * print bits as 0/1 available for mask *---------------------------------------------------------------------------*/ static char * print_bits(unsigned char val, unsigned char mask) { static char buffer[10]; int i = 0; int length = 8; while(length--) { if(mask & 0x80) { if(val & 0x80) buffer[i++] = '1'; else buffer[i++] = '0'; } else { buffer[i++] = '-'; } val = val << 1; mask = mask << 1; } buffer[i] = '\0'; return(buffer); } /*---------------------------------------------------------------------------* * print one decoded output line *---------------------------------------------------------------------------*/ void sprintline(int layer, char *buffer, int oct_count, int oct_val, int oct_mask, const char *fmt, ...) { char lbuffer[256]; static int lastcount = -1; char *ptr; va_list ap; va_start(ap, fmt); if(oct_count != lastcount) { lastcount = oct_count; sprintf(lbuffer, "L%d %2d %02X %s ", layer, oct_count, oct_val, print_bits(oct_val, oct_mask)); } else { sprintf(lbuffer, " %s ", print_bits(oct_val, oct_mask)); } vsprintf(lbuffer+strlen(lbuffer), fmt, ap); va_end(ap); sprintf(lbuffer+strlen(lbuffer), "\n"); if((ptr = rindex(lbuffer, '(')) != NULL) { char *s = lbuffer; char *b = buffer; int len = strlen(lbuffer); int i; for(s = lbuffer; s < ptr; *b++ = *s++) ; for(i = 0;(i+len) <= NCOLS; *b++ = ' ', i++) ; for(; *s; *b++ = *s++) ; *b = '\0'; } else { strcpy(buffer, lbuffer); } } /* EOF */