X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fnetutl.c;h=14ed5cef0e3db05aecc79fa730fbbdaad4d91402;hp=5f627706e7deabe1d9c185ea9ef49fbc4f40de31;hb=dd611fb4f91b9b17c20c458694d2765b22814c5f;hpb=183a8edd22ba4bc682392c73ae02fc9e121eda68 diff --git a/src/netutl.c b/src/netutl.c index 5f627706..14ed5cef 100644 --- a/src/netutl.c +++ b/src/netutl.c @@ -1,6 +1,7 @@ /* netutl.c -- some supporting network utility code - Copyright (C) 1998,1999,2000 Ivo Timmermans + Copyright (C) 1998-2002 Ivo Timmermans + 2000-2002 Guus Sliepen 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 @@ -16,12 +17,12 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: netutl.c,v 1.12.4.12 2000/10/11 22:01:00 guus Exp $ + $Id: netutl.c,v 1.12.4.23 2002/02/11 10:16:18 guus Exp $ */ #include "config.h" -#include +#include #include #include #include @@ -29,53 +30,28 @@ #include #include #include +#include #include #include #include "errno.h" #include "conf.h" -#include "encr.h" #include "net.h" #include "netutl.h" #include "system.h" - -/* - free a queue and all of its elements -*/ -void destroy_queue(packet_queue_t *pq) -{ - queue_element_t *p, *q; -cp - for(p = pq->head; p != NULL; p = q) - { - q = p->next; - if(p->packet) - free(p->packet); - free(p); - } - - free(pq); -cp -} - - char *hostlookup(unsigned long addr) { char *name; struct hostent *host = NULL; struct in_addr in; - config_t const *cfg; - int lookup_hostname; + int lookup_hostname = 0; cp in.s_addr = addr; - lookup_hostname = 0; - if((cfg = get_config_val(config, resolve_dns)) != NULL) - if(cfg->data.val == stupid_true) - lookup_hostname = 1; + get_config_bool(lookup_config(config_tree, "Hostnames"), &lookup_hostname); if(lookup_hostname) host = gethostbyaddr((char *)&in, sizeof(in), AF_INET); @@ -93,42 +69,37 @@ cp } /* - Turn a string into an IP addy with netmask + Turn a string into an IP address return NULL on failure + Should support IPv6 and other stuff in the future. */ -ip_mask_t *strtoip(char *str) +ipv4_t str2address(char *str) { - ip_mask_t *ip; - int masker; - char *q, *p; + ipv4_t address; struct hostent *h; cp - p = str; - if((q = strchr(p, '/'))) - { - *q = '\0'; - q++; /* q now points to netmask part, or NULL if no mask */ - } - - if(!(h = gethostbyname(p))) - { - fprintf(stderr, _("Error looking up `%s': %s\n"), p, strerror(errno)); - return NULL; - } - - masker = 0; - if(q) + if(!(h = gethostbyname(str))) { - masker = strtol(q, &p, 10); - if(q == p || (*p)) - return NULL; + if(debug_lvl >= DEBUG_ERROR) + syslog(LOG_WARNING, _("Error looking up `%s': %s\n"), str, strerror(errno)); + + return 0; } - ip = xmalloc(sizeof(*ip)); - ip->ip = ntohl(*((ip_t*)(h->h_addr_list[0]))); - - ip->mask = masker ? ~((1 << (32 - masker)) - 1) : 0; + address = ntohl(*((ipv4_t*)(h->h_addr_list[0]))); cp - return ip; + return address; } +char *address2str(ipv4_t address) +{ + char *str; +cp + asprintf(&str, "%hu.%hu.%hu.%hu", + (unsigned short int)((address >> 24) & 255), + (unsigned short int)((address >> 16) & 255), + (unsigned short int)((address >> 8) & 255), + (unsigned short int)(address & 255)); +cp + return str; +}