2 info.c -- Show information about a node, subnet or address
3 Copyright (C) 2012 Guus Sliepen <guus@tinc-vpn.org>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include "control_common.h"
29 void logger(int level, int priority, const char *format, ...) {
32 vfprintf(stderr, format, ap);
36 static char *strip_weight(char *netstr) {
37 int len = strlen(netstr);
38 if(len >= 3 && !strcmp(netstr + len - 3, "#10"))
43 static int info_node(int fd, const char *item) {
44 // Check the list of nodes
45 sendline(fd, "%d %d %s", CONTROL, REQ_DUMP_NODES, item);
58 int code, req, cipher, digest, maclength, compression, distance;
59 short int pmtu, minmtu, maxmtu;
63 while(recvline(fd, line, sizeof line)) {
64 int n = sscanf(line, "%d %d %s at %s port %s cipher %d digest %d maclength %d compression %d options %x status %04x nexthop %s via %s distance %d pmtu %hd (min %hd max %hd)", &code, &req, node, host, port, &cipher, &digest, &maclength, &compression, &options, (unsigned *)&status, nexthop, via, &distance, &pmtu, &minmtu, &maxmtu);
71 n = sscanf(line, "%d %d %s at %s cipher %d digest %d maclength %d compression %d options %x status %04x nexthop %s via %s distance %d pmtu %hd (min %hd max %hd)", &code, &req, node, host, &cipher, &digest, &maclength, &compression, &options, (unsigned *)&status, nexthop, via, &distance, &pmtu, &minmtu, &maxmtu);
74 fprintf(stderr, "Unable to parse node dump from tincd.\n");
79 if(!strcmp(node, item)) {
86 fprintf(stderr, "Unknown node %s.\n", item);
90 while(recvline(fd, line, sizeof line)) {
91 if(sscanf(line, "%d %d %s", &code, &req, node) == 2)
95 printf("Node: %s\n", item);
97 printf("Address: %s port %s\n", host, port);
104 printf(" reachable");
109 if(options & OPTION_INDIRECT)
111 if(options & OPTION_TCPONLY)
113 if(options & OPTION_PMTU_DISCOVERY)
114 printf(" pmtu_discovery");
115 if(options & OPTION_CLAMP_MSS)
116 printf(" clamp_mss");
118 printf("Protocol: %d.%d\n", PROT_MAJOR, OPTION_VERSION(options));
119 printf("Reachability: ");
121 printf("can reach itself\n");
122 else if(!status.reachable)
123 printf("unreachable\n");
124 else if(strcmp(via, item))
125 printf("indirectly via %s\n", via);
126 else if(!status.validkey)
129 printf("directly with UDP\nPMTU: %d\n", pmtu);
130 else if(!strcmp(nexthop, item))
131 printf("directly with TCP\n");
133 printf("none, forwarded via %s\n", nexthop);
137 sendline(fd, "%d %d %s", CONTROL, REQ_DUMP_EDGES, item);
138 while(recvline(fd, line, sizeof line)) {
139 int n = sscanf(line, "%d %d %s to %s", &code, &req, from, to);
143 fprintf(stderr, "Unable to parse edge dump from tincd.\n%s\n", line);
146 if(!strcmp(from, item))
153 sendline(fd, "%d %d %s", CONTROL, REQ_DUMP_SUBNETS, item);
154 while(recvline(fd, line, sizeof line)) {
155 int n = sscanf(line, "%d %d %s owner %s", &code, &req, subnet, from);
159 fprintf(stderr, "Unable to parse subnet dump from tincd.\n");
162 if(!strcmp(from, item))
163 printf(" %s", strip_weight(subnet));
170 static int info_subnet(int fd, const char *item) {
171 subnet_t subnet, find;
173 if(!str2net(&find, item)) {
174 fprintf(stderr, "Could not parse subnet or address '%s'.\n", item);
178 bool address = !strchr(item, '/');
179 bool weight = strchr(item, '#');
188 sendline(fd, "%d %d %s", CONTROL, REQ_DUMP_SUBNETS, item);
189 while(recvline(fd, line, sizeof line)) {
190 int n = sscanf(line, "%d %d %s owner %s", &code, &req, netstr, owner);
194 if(n != 4 || !str2net(&subnet, netstr)) {
195 fprintf(stderr, "Unable to parse subnet dump from tincd.\n");
199 if(find.type != subnet.type)
203 if(find.weight != subnet.weight)
207 if(find.type == SUBNET_IPV4) {
209 if(maskcmp(&find.net.ipv4.address, &subnet.net.ipv4.address, subnet.net.ipv4.prefixlength))
212 if(find.net.ipv4.prefixlength != subnet.net.ipv4.prefixlength)
214 if(memcmp(&find.net.ipv4.address, &subnet.net.ipv4.address, sizeof subnet.net.ipv4))
217 } else if(find.type == SUBNET_IPV6) {
219 if(maskcmp(&find.net.ipv6.address, &subnet.net.ipv6.address, subnet.net.ipv6.prefixlength))
222 if(find.net.ipv6.prefixlength != subnet.net.ipv6.prefixlength)
224 if(memcmp(&find.net.ipv6.address, &subnet.net.ipv6.address, sizeof subnet.net.ipv6))
227 } if(find.type == SUBNET_MAC) {
228 if(memcmp(&find.net.mac.address, &subnet.net.mac.address, sizeof subnet.net.mac))
233 printf("Subnet: %s\n", strip_weight(netstr));
234 printf("Owner: %s\n", owner);
239 fprintf(stderr, "Unknown address %s.\n", item);
241 fprintf(stderr, "Unknown subnet %s.\n", item);
248 int info(int fd, const char *item) {
250 return info_node(fd, item);
251 if(strchr(item, '.') || strchr(item, ':'))
252 return info_subnet(fd, item);
254 fprintf(stderr, "Argument is not a node name, subnet or address.\n");