1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
/*
mtr -- a network diagnostic tool
Copyright (C) 1997,1998 Matt Kimball
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <config.h>
#include <netdb.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "mtr-curses.h"
#include "getopt.h"
#include "display.h"
#include "dns.h"
#include "report.h"
#include "net.h"
int DisplayMode;
int Interactive = 1;
int PrintVersion = 0;
int PrintHelp = 0;
int MaxPing = 16;
float WaitTime = 1.0;
char *Hostname = NULL;
void parse_arg(int argc, char **argv) {
int opt;
static struct option long_options[] = {
{ "version", 0, 0, 'v' },
{ "help", 0, 0, 'h' },
{ "report", 0, 0, 'r' },
{ "report-cycles", 1, 0, 'c' },
{ "curses", 0, 0, 't' },
{ "gtk", 0, 0, 'g' },
{ "interval", 1, 0, 'i' },
{ 0, 0, 0, 0 }
};
opt = 0;
while(1) {
opt = getopt_long(argc, argv, "hvrc:tli:", long_options, NULL);
if(opt == -1)
break;
switch(opt) {
case 'v':
PrintVersion = 1;
break;
case 'h':
PrintHelp = 1;
break;
case 'r':
DisplayMode = DisplayReport;
break;
case 'c':
MaxPing = atoi(optarg);
break;
case 't':
DisplayMode = DisplayCurses;
break;
case 'g':
DisplayMode = DisplayGTK;
break;
case 'i':
WaitTime = atof(optarg);
if (WaitTime <= 0.0) {
fprintf (stderr, "mtr: wait time must be positive\n");
exit (-1);
}
break;
}
}
if(DisplayMode == DisplayReport)
Interactive = 0;
if(optind != argc - 1)
return;
Hostname = argv[optind];
}
int main(int argc, char **argv) {
int traddr;
struct hostent *host;
/* Get the raw sockets first thing, so we can drop to user euid immediately */
if(net_preopen() != 0) {
printf("mtr: Unable to get raw socket. (Executable not suid?)\n");
exit(0);
}
/* Now drop to user permissions */
if(seteuid(getuid())) {
printf("mtr: Unable to drop permissions.\n");
exit(0);
}
/* Double check, just in case */
if(geteuid() != getuid()) {
printf("mtr: Unable to drop permissions.\n");
exit(0);
}
display_detect(&argc, &argv);
parse_arg(argc, argv);
if(PrintVersion) {
printf("mtr " VERSION "\n");
exit(0);
}
if(Hostname == NULL || PrintHelp) {
printf("usage: %s [-hvrctli] [--help] [--version] [--report]\n"
"\t\t[--report-cycles=COUNT] [--curses] [--gtk]\n"
"\t\t[--interval=SECONDS] HOSTNAME\n", argv[0]);
exit(0);
}
host = gethostbyname(Hostname);
if(host == NULL) {
#ifndef NO_HERROR
herror("mtr");
#else
printf("mtr: error looking up \"%s\"\n", Hostname);
#endif
exit(0);
}
traddr = *(int *)host->h_addr;
if(net_open(traddr) != 0) {
printf("mtr: Unable to get raw socket. (Executable not suid?)\n");
exit(0);
}
display_open();
dns_open();
display_loop();
net_end_transit();
display_close();
net_close();
return 0;
}
|