X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=jam.c;h=d37145026186593a840d1b7e4c059d153e25c87f;hb=31c9810dec15b54a8a25ecf64fbf731fc04888fb;hp=9f9a10dbe7de611899f8fc9ce9bbe7c93d7ab3e9;hpb=48a032d12f3b81c0b2785dab7d61807cfaaf8b71;p=jam diff --git a/jam.c b/jam.c index 9f9a10d..d371450 100644 --- a/jam.c +++ b/jam.c @@ -1,19 +1,83 @@ #include +#include #include #include +#include #include #include #include #include +unsigned short port = 2007; + +struct in_addr *destinations = NULL; +unsigned num_destinations = 0; +unsigned room_destinations = 0; + +struct in_addr *sources = NULL; +unsigned num_sources = 0; +unsigned room_sources = 0; + const static struct option longopts[] = { - { "destination-file", required_argument, NULL, 'd' }, + { "source-list", required_argument, NULL, 's' }, + { "destination-list", required_argument, NULL, 'd' }, + { "port", required_argument, NULL, 'p' }, { NULL, 0, NULL, 0 } }; -void read_destination_list(char *filename) +void read_ip_list(char *filename, struct in_addr **addr_list, unsigned *num, unsigned *room) { - + char buf[256]; + FILE *in = fopen(filename, "r"); + if (in == NULL) { + perror(filename); + exit(1); + } + + for ( ;; ) { + char *ptr; + struct in_addr addr; + struct hostent *he; + + if (fgets(buf, 256, in) == NULL) + break; + + ptr = strchr(buf, '\n'); + if (ptr != NULL) + *ptr = 0; + + ptr = strchr(buf, '\r'); + if (ptr != NULL) + *ptr = 0; + + ptr = buf + strspn(buf, " \t"); + + if (ptr[0] == '#' || ptr[0] == 0) + continue; + + he = gethostbyname(ptr); + if (he == NULL) { + perror(ptr); + exit(1); + } + + // just pick the first for now + memcpy(&addr.s_addr, he->h_addr_list[0], sizeof(addr.s_addr)); + + if (*num >= *room) { + if (*room == 0) { + *room = 16; + } else { + *room <<= 1; + } + *addr_list = (struct in_addr *)realloc(*addr_list, *room * sizeof(struct in_addr)); + } + + (*addr_list)[*num] = addr; + ++*num; + } + + fclose(in); } void parse_options(int argc, char **argv) @@ -21,10 +85,16 @@ void parse_options(int argc, char **argv) int option_index = 0; for ( ;; ) { - int c = getopt_long(argc, argv, "d:", longopts, &option_index); + int c = getopt_long(argc, argv, "s:d:p:", longopts, &option_index); switch (c) { + case 's': + read_ip_list(optarg, &sources, &num_sources, &room_sources); + break; case 'd': - read_destination_list(optarg); + read_ip_list(optarg, &destinations, &num_destinations, &room_destinations); + break; + case 'p': + port = atoi(optarg); break; case -1: return; // end of argument list @@ -99,7 +169,12 @@ int main(int argc, char **argv) int server_sock; parse_options(argc, argv); - server_sock = get_server_socket(2007); + + if (destinations == NULL || sources == NULL) { + fprintf(stderr, "Missing or empty source or destination host list. Aborting.\n"); + } + + server_sock = get_server_socket(port); // FIXME: fire off sender workers here