ipv6: provide format strings for ipv6 up and ipv6 down

This commit is contained in:
Christian Dietrich 2010-04-05 15:47:56 +02:00 committed by Michael Stapelberg
parent d60fc3fa43
commit 8edce05764
3 changed files with 36 additions and 34 deletions

View File

@ -92,7 +92,8 @@ int main(int argc, char *argv[]) {
}; };
cfg_opt_t ipv6_opts[] = { cfg_opt_t ipv6_opts[] = {
CFG_STR("format", "%ip", CFGF_NONE), CFG_STR("format_up", "%ip", CFGF_NONE),
CFG_STR("format_down", "no IPv6", CFGF_NONE),
CFG_END() CFG_END()
}; };
@ -198,7 +199,7 @@ int main(int argc, char *argv[]) {
const char *current = cfg_getnstr(cfg, "order", j); const char *current = cfg_getnstr(cfg, "order", j);
CASE_SEC("ipv6") CASE_SEC("ipv6")
print_ipv6_info(cfg_getstr(sec, "format")); print_ipv6_info(cfg_getstr(sec, "format_up"), cfg_getstr(sec, "format_down"));
CASE_SEC_TITLE("wireless") CASE_SEC_TITLE("wireless")
print_wireless_info(title, cfg_getstr(sec, "format_up"), cfg_getstr(sec, "format_down")); print_wireless_info(title, cfg_getstr(sec, "format_up"), cfg_getstr(sec, "format_down"));

View File

@ -58,7 +58,7 @@ void print_seperator();
char *color(const char *colorstr); char *color(const char *colorstr);
char *endcolor() __attribute__ ((pure)); char *endcolor() __attribute__ ((pure));
void print_ipv6_info(const char *format); void print_ipv6_info(const char *format_up, const char *format_down);
void print_disk_info(const char *path, const char *format); void print_disk_info(const char *path, const char *format);
void print_battery_info(int number, const char *format, bool last_full_capacity); void print_battery_info(int number, const char *format, bool last_full_capacity);
void print_time(const char *format); void print_time(const char *format);

View File

@ -9,7 +9,7 @@
#include <string.h> #include <string.h>
#include <arpa/inet.h> #include <arpa/inet.h>
static bool print_sockname(struct addrinfo *addr) { static char * get_sockname(struct addrinfo *addr) {
static char buf[INET6_ADDRSTRLEN+1]; static char buf[INET6_ADDRSTRLEN+1];
struct sockaddr_storage local; struct sockaddr_storage local;
int ret; int ret;
@ -17,7 +17,7 @@ static bool print_sockname(struct addrinfo *addr) {
if ((fd = socket(addr->ai_family, SOCK_DGRAM, 0)) == -1) { if ((fd = socket(addr->ai_family, SOCK_DGRAM, 0)) == -1) {
perror("socket()"); perror("socket()");
return false; return NULL;
} }
/* Since the socket was created with SOCK_DGRAM, this is /* Since the socket was created with SOCK_DGRAM, this is
@ -31,7 +31,7 @@ static bool print_sockname(struct addrinfo *addr) {
* Thus, dont spam the users console but just * Thus, dont spam the users console but just
* try the next address. */ * try the next address. */
(void)close(fd); (void)close(fd);
return false; return NULL;
} }
@ -39,8 +39,7 @@ static bool print_sockname(struct addrinfo *addr) {
if (getsockname(fd, (struct sockaddr*)&local, &local_len) == -1) { if (getsockname(fd, (struct sockaddr*)&local, &local_len) == -1) {
perror("getsockname()"); perror("getsockname()");
(void)close(fd); (void)close(fd);
printf("no IPv6"); return NULL;
return true;
} }
memset(buf, 0, INET6_ADDRSTRLEN + 1); memset(buf, 0, INET6_ADDRSTRLEN + 1);
@ -49,20 +48,18 @@ static bool print_sockname(struct addrinfo *addr) {
NI_NUMERICHOST)) != 0) { NI_NUMERICHOST)) != 0) {
fprintf(stderr, "getnameinfo(): %s\n", gai_strerror(ret)); fprintf(stderr, "getnameinfo(): %s\n", gai_strerror(ret));
(void)close(fd); (void)close(fd);
printf("no IPv6"); return NULL;
return true;
} }
(void)close(fd); (void)close(fd);
printf("%s", buf); return buf;
return true;
} }
/* /*
* Returns the IPv6 address with which you have connectivity at the moment. * Returns the IPv6 address with which you have connectivity at the moment.
* * The char * is statically allocated and mustn't be freed
*/ */
static void print_ipv6_addr() { static char *get_ipv6_addr() {
struct addrinfo hints; struct addrinfo hints;
struct addrinfo *result, *resp; struct addrinfo *result, *resp;
static struct addrinfo *cached = NULL; static struct addrinfo *cached = NULL;
@ -70,8 +67,7 @@ static void print_ipv6_addr() {
/* To save dns lookups (if they are not cached locally) and creating /* To save dns lookups (if they are not cached locally) and creating
* sockets, we save the fd and keep it open. */ * sockets, we save the fd and keep it open. */
if (cached != NULL) if (cached != NULL)
if (print_sockname(cached)) return get_sockname(cached);
return;
memset(&hints, 0, sizeof(struct addrinfo)); memset(&hints, 0, sizeof(struct addrinfo));
hints.ai_family = AF_INET6; hints.ai_family = AF_INET6;
@ -83,42 +79,47 @@ static void print_ipv6_addr() {
/* We dont display the error here because most /* We dont display the error here because most
* likely, there just is no connectivity. * likely, there just is no connectivity.
* Thus, dont spam the users console. */ * Thus, dont spam the users console. */
printf("no IPv6"); return NULL;
return;
} }
for (resp = result; resp != NULL; resp = resp->ai_next) { for (resp = result; resp != NULL; resp = resp->ai_next) {
if (!print_sockname(resp)) char *addr_string = get_sockname(resp);
if (!addr_string)
continue; continue;
if ((cached = malloc(sizeof(struct addrinfo))) == NULL) if ((cached = malloc(sizeof(struct addrinfo))) == NULL)
return; return NULL;
memcpy(cached, resp, sizeof(struct addrinfo)); memcpy(cached, resp, sizeof(struct addrinfo));
if ((cached->ai_addr = malloc(resp->ai_addrlen)) == NULL) { if ((cached->ai_addr = malloc(resp->ai_addrlen)) == NULL) {
cached = NULL; cached = NULL;
return; return NULL;
} }
memcpy(cached->ai_addr, resp->ai_addr, resp->ai_addrlen); memcpy(cached->ai_addr, resp->ai_addr, resp->ai_addrlen);
freeaddrinfo(result); freeaddrinfo(result);
return; return addr_string;
} }
freeaddrinfo(result); freeaddrinfo(result);
printf("no IPv6"); return NULL;
} }
void print_ipv6_info(const char *format) { void print_ipv6_info(const char *format_up, const char *format_down) {
const char *walk; const char *walk;
char * addr_string = get_ipv6_addr();
for (walk = format; *walk != '\0'; walk++) {
if (*walk != '%') { if (addr_string == NULL) {
putchar(*walk); printf("%s", format_down);
continue; } else {
} for (walk = format_up; *walk != '\0'; walk++) {
if (*walk != '%') {
if (strncmp(walk+1, "ip", strlen("ip")) == 0) { putchar(*walk);
print_ipv6_addr(); continue;
walk += strlen("ip"); }
if (strncmp(walk+1, "ip", strlen("ip")) == 0) {
printf("%s", addr_string);
walk += strlen("ip");
}
} }
} }
} }