home *** CD-ROM | disk | FTP | other *** search
/ back2roots/padua / padua.7z / padua / uucp / pathalias_V10.lzh / main.c < prev    next >
C/C++ Source or Header  |  1992-01-23  |  4KB  |  167 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. #ifdef AMIGA
  110.         freopen("nil:", "r", stdin);
  111. #else
  112.         freopen("/dev/null", "r", stdin);
  113. #endif
  114.     else
  115.         Cfile = "[stdin]";
  116.  
  117.     if (!locname) 
  118.         locname = local();
  119.     if (*locname == 0) {
  120.         locname = "lostinspace";
  121.         fprintf(stderr, "%s: using \"%s\" for local name\n",
  122.                 Argv[0], locname);
  123.     }
  124.  
  125.     Home = addnode(locname);    /* add home node */
  126.     Home->n_cost = 0;        /* doesn't cost to get here */
  127.  
  128.     (void) yyparse();            /* read in link info */
  129.  
  130.     if (Vflag > 1)
  131.         hashanalyze();
  132.     vprintf(stderr, "%d nodes, %d links, alloc %ldk\n", 
  133.                 Ncount, Lcount, allocation());
  134.  
  135.     Cfile = "[backlinks]";    /* for tracing back links */
  136.     Lineno = 0;
  137.  
  138.     /* compute shortest path tree */
  139.     mapit();
  140.     vprintf(stderr, "allocation is %ldk after mapping\n", allocation());
  141.  
  142.     /* traverse tree and print paths */
  143.     printit();
  144.     vprintf(stderr, "allocation is %ldk after printing\n", allocation());
  145.  
  146.     wasted();    /* how much was wasted in memory allocation? */
  147.  
  148.     return 0;
  149. }
  150.  
  151. void
  152. die(s)
  153.     char *s;
  154. {
  155. #ifdef DEBUG
  156.     extern int abort();
  157.  
  158.     fprintf(stderr, "%s: %s\n", Argv[0], s);
  159.     fflush(stdout);
  160.     fflush(stderr);
  161.     abort();
  162. #else
  163.     fprintf(stderr, "%s: %s; notify the authorities\n", Argv[0], s);
  164.     exit(-1);
  165. #endif
  166. }
  167.