i3status/src/print_ipv6_addr.c

145 lines
4.6 KiB
C
Raw Permalink Normal View History

// vim:ts=4:sw=4:expandtab
2019-01-23 07:56:40 +00:00
#include <config.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <stdbool.h>
#include <unistd.h>
#include <stdlib.h>
#include <netdb.h>
#include <string.h>
2012-03-25 18:55:55 +00:00
#include <yajl/yajl_gen.h>
2012-04-08 12:05:47 +00:00
#include <yajl/yajl_version.h>
#include "i3status.h"
2010-04-06 12:52:13 +00:00
static char *get_sockname(struct addrinfo *addr) {
static char buf[INET6_ADDRSTRLEN + 1];
struct sockaddr_storage local;
int ret;
int fd;
if ((fd = socket(addr->ai_family, SOCK_DGRAM, 0)) == -1) {
perror("socket()");
return NULL;
}
/* Since the socket was created with SOCK_DGRAM, this is
* actually not establishing a connection or generating
* any other network traffic. Instead, as a side-effect,
* it saves the local address with which packets would
* be sent to the destination. */
if (connect(fd, addr->ai_addr, addr->ai_addrlen) == -1) {
/* We dont display the error here because most
* likely, there just is no IPv6 connectivity.
* Thus, dont spam the users console but just
* try the next address. */
(void)close(fd);
return NULL;
}
socklen_t local_len = sizeof(struct sockaddr_storage);
if (getsockname(fd, (struct sockaddr *)&local, &local_len) == -1) {
perror("getsockname()");
(void)close(fd);
return NULL;
}
memset(buf, 0, INET6_ADDRSTRLEN + 1);
if ((ret = getnameinfo((struct sockaddr *)&local, local_len,
buf, sizeof(buf), NULL, 0,
NI_NUMERICHOST)) != 0) {
fprintf(stderr, "i3status: getnameinfo(): %s\n", gai_strerror(ret));
(void)close(fd);
return NULL;
}
(void)close(fd);
return buf;
}
/*
* Returns the IPv6 address with which you have connectivity at the moment.
* The char * is statically allocated and mustn't be freed
*/
static char *get_ipv6_addr(void) {
struct addrinfo hints;
struct addrinfo *result, *resp;
static struct addrinfo *cached = NULL;
/* To save dns lookups (if they are not cached locally) and creating
* sockets, we save the fd and keep it open. */
if (cached != NULL)
return get_sockname(cached);
memset(&hints, 0, sizeof(struct addrinfo));
hints.ai_family = AF_INET6;
hints.ai_socktype = SOCK_DGRAM;
/* We use the public IPv6 of the K root server here. It doesnt matter
* which IPv6 address we use (we dont even send any packets), as long
* as its considered global by the kernel.
* NB: We dont use a hostname since that would trigger a DNS lookup.
* By using an IPv6 address, getaddrinfo() will *not* do a DNS lookup,
* but return the address in the appropriate struct. */
if (getaddrinfo("2001:7fd::1", "domain", &hints, &result) != 0) {
/* We dont display the error here because most
* likely, there just is no connectivity.
* Thus, dont spam the users console. */
return NULL;
}
for (resp = result; resp != NULL; resp = resp->ai_next) {
char *addr_string = get_sockname(resp);
/* If we could not get our own address and there is more than
* one result for resolving k.root-servers.net, we cannot
* cache. Otherwise, no matter if we got IPv6 connectivity or
* not, we will cache the (single) result and are done. */
if (!addr_string && result->ai_next != NULL)
continue;
if ((cached = malloc(sizeof(struct addrinfo))) == NULL)
return NULL;
memcpy(cached, resp, sizeof(struct addrinfo));
if ((cached->ai_addr = malloc(resp->ai_addrlen)) == NULL) {
cached = NULL;
return NULL;
2009-07-21 18:26:53 +00:00
}
memcpy(cached->ai_addr, resp->ai_addr, resp->ai_addrlen);
freeaddrinfo(result);
return addr_string;
}
freeaddrinfo(result);
return NULL;
}
2021-11-02 19:23:33 +00:00
void print_ipv6_info(ipv6_info_ctx_t *ctx) {
char *addr_string = get_ipv6_addr();
2021-11-02 19:23:33 +00:00
char *outwalk = ctx->buf;
2010-04-06 12:52:13 +00:00
if (addr_string == NULL) {
START_COLOR("color_bad");
2021-11-02 19:23:33 +00:00
outwalk += sprintf(outwalk, "%s", ctx->format_down);
2012-07-10 13:26:08 +00:00
END_COLOR;
2021-11-02 19:23:33 +00:00
OUTPUT_FULL_TEXT(ctx->buf);
return;
}
START_COLOR("color_good");
2020-03-31 12:52:34 +00:00
placeholder_t placeholders[] = {
{.name = "%ip", .value = addr_string}};
2020-03-31 12:52:34 +00:00
const size_t num = sizeof(placeholders) / sizeof(placeholder_t);
2021-11-02 19:23:33 +00:00
char *formatted = format_placeholders(ctx->format_up, &placeholders[0], num);
OUTPUT_FORMATTED;
free(formatted);
END_COLOR;
2021-11-02 19:23:33 +00:00
OUTPUT_FULL_TEXT(ctx->buf);
}