home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / TELECOM / palias10.lzh / BNU / PALIAS / main.c < prev    next >
C/C++ Source or Header  |  1993-06-07  |  4KB  |  163 lines

  1. /* pathalias -- by steve bellovin, as told to peter honeyman */
  2. #ifndef lint
  3. static char    *sccsid = "@(#)main.c    9.6 91/05/23";
  4. #endif
  5.  
  6. #define MAIN    /* for sccsid in header files */
  7.  
  8. #include "def.h"
  9.  
  10. /* exports */
  11. char *Cfile;    /* current input file */
  12. char *Graphout;    /* file for dumping edges (-g option) */
  13. char *Linkout;    /* file for dumping shortest path tree */
  14. char **Argv;    /* external copy of argv (for input files) */
  15. node *Home;    /* node for local host */
  16. int Cflag;    /* print costs (-c option) */
  17. int Dflag;    /* penalize routes beyond domains (-D option) */
  18. int Iflag;    /* ignore case (-i option) */
  19. int Tflag;    /* trace links (-t option) */
  20. int Vflag;    /* verbose (-v option) */
  21. int Fflag;    /* print cost of first hop */
  22. int InetFlag;    /* local host is w/in scope of DNS (-I flag) */
  23. int Lineno = 1;    /* line number within current input file */
  24. int Argc;    /* external copy of argc (for input files) */
  25. extern void die();
  26. extern int tracelink();
  27.  
  28. /* imports */
  29. extern char *optarg;
  30. extern int optind;
  31. extern long Lcount, Ncount;
  32. extern long allocation();
  33. extern void wasted(), mapit(), hashanalyze(), deadlink();
  34. extern char *local();
  35. extern node *addnode();
  36. extern int getopt(), yyparse();
  37. extern void printit();
  38.  
  39. #define USAGE "usage: %s [-vciDfI] [-l localname] [-d deadlink] [-t tracelink] [-g edgeout] [-s treeout] [-a avoid] [files ...]\n"
  40.  
  41. main(argc, argv) 
  42.     register int argc; 
  43.     register char **argv;
  44. {    char *locname = 0, *bang;
  45.     register int c;
  46.     int errflg = 0;
  47.  
  48.     setbuf(stderr, (char *) 0);
  49.     (void) allocation();    /* initialize data space monitoring */
  50.     Cfile = "[deadlinks]";    /* for tracing dead links */
  51.     Argv = argv;
  52.     Argc = argc;
  53.  
  54.     while ((c = getopt(argc, argv, "cd:Dfg:iIl:s:t:v")) != EOF)
  55.         switch(c) {
  56.         case 'c':    /* print cost info */
  57.             Cflag++;
  58.             break;
  59.         case 'd':    /* dead host or link */
  60.             if ((bang = index(optarg, '!')) != 0) {
  61.                 *bang++ = 0;
  62.                 deadlink(addnode(optarg), addnode(bang));
  63.             } else
  64.                 deadlink(addnode(optarg), (node *) 0);
  65.             break;
  66.         case 'D':    /* penalize routes beyond domains */
  67.             Dflag++;
  68.             break;
  69.         case 'f':    /* print cost of first hop */
  70.             Cflag++;
  71.             Fflag++;
  72.             break;
  73.         case 'g':    /* graph output file */
  74.             Graphout = optarg;
  75.             break;
  76.         case 'i':    /* ignore case */
  77.             Iflag++;
  78.             break;
  79.         case 'I':    /* Internet connected */
  80.             InetFlag++;
  81.             break;
  82.         case 'l':    /* local name */
  83.             locname = optarg;
  84.             break;
  85.         case 's':    /* show shortest path tree */
  86.             Linkout = optarg;
  87.             break;
  88.         case 't':    /* trace this link */
  89.             if (tracelink(optarg) < 0) {
  90.                 fprintf(stderr, "%s: can trace only %d links\n", Argv[0], NTRACE);
  91.                 exit(1);
  92.             }
  93.             Tflag = 1;
  94.             break;
  95.         case 'v':    /* verbose stderr, mixed blessing */
  96.             Vflag++;
  97.             break;
  98.         default:
  99.             errflg++;
  100.         }
  101.  
  102.     if (errflg) {
  103.         fprintf(stderr, USAGE, Argv[0]);
  104.         exit(1);
  105.     }
  106.     argv += optind;        /* kludge for yywrap() */
  107.  
  108.     if (*argv)
  109.         freopen(DEVNULL, "r", stdin);
  110.     else
  111.         Cfile = "[stdin]";
  112.  
  113.     if (!locname) 
  114.         locname = local();
  115.     if (*locname == 0) {
  116.         locname = "lostinspace";
  117.         fprintf(stderr, "%s: using \"%s\" for local name\n",
  118.                 Argv[0], locname);
  119.     }
  120.  
  121.     Home = addnode(locname);    /* add home node */
  122.     Home->n_cost = 0;        /* doesn't cost to get here */
  123.  
  124.     (void) yyparse();            /* read in link info */
  125.  
  126.     if (Vflag > 1)
  127.         hashanalyze();
  128.     vprintf(stderr, "%d nodes, %d links, alloc %ldk\n", 
  129.                 Ncount, Lcount, allocation());
  130.  
  131.     Cfile = "[backlinks]";    /* for tracing back links */
  132.     Lineno = 0;
  133.  
  134.     /* compute shortest path tree */
  135.     mapit();
  136.     vprintf(stderr, "allocation is %ldk after mapping\n", allocation());
  137.  
  138.     /* traverse tree and print paths */
  139.     printit();
  140.     vprintf(stderr, "allocation is %ldk after printing\n", allocation());
  141.  
  142.     wasted();    /* how much was wasted in memory allocation? */
  143.  
  144.     return 0;
  145. }
  146.  
  147. void
  148. die(s)
  149.     char *s;
  150. {
  151. #ifdef DEBUG
  152.     extern int abort();
  153.  
  154.     fprintf(stderr, "%s: %s\n", Argv[0], s);
  155.     fflush(stdout);
  156.     fflush(stderr);
  157.     abort();
  158. #else
  159.     fprintf(stderr, "%s: %s; notify the authorities\n", Argv[0], s);
  160.     exit(-1);
  161. #endif
  162. }
  163.