iputils.c 10.5 KB
Newer Older
K
Kozlov Dmitry 已提交
1 2 3 4 5
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <syslog.h>
#include <fcntl.h>
6
#include <pthread.h>
K
Kozlov Dmitry 已提交
7 8 9 10 11 12 13
#include <net/if_arp.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <string.h>
#include <errno.h>
#include <time.h>
#include <sys/uio.h>
14 15 16
//#include <linux/if_link.h>
//#include <linux/if_addr.h>
//#include <linux/rtnetlink.h>
17
#include <linux/fib_rules.h>
K
Kozlov Dmitry 已提交
18 19 20 21

#include "triton.h"
#include "log.h"

22
#include "libnetlink.h"
23
#include "iputils.h"
24 25 26

#include "memdebug.h"

K
Kozlov Dmitry 已提交
27 28 29 30 31 32
struct arg
{
	iplink_list_func func;
	void *arg;
};

33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
static pthread_key_t rth_key;
static __thread struct rtnl_handle *rth;

static void open_rth(void)
{
	rth = _malloc(sizeof(*rth));

	if (!rth)
		return;
	
	memset(rth, 0, sizeof(*rth));

	if (rtnl_open(rth, 0)) {
		log_ppp_error("radius: cannot open rtnetlink\n");
		_free(rth);
		rth = NULL;
		return;
	}

	pthread_setspecific(rth_key, rth);
}

static void free_rth(void *arg)
{
	struct rtnl_handle *rth = arg;

	rtnl_close(rth);

	_free(rth);
}

K
Kozlov Dmitry 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
static int store_nlmsg(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg)
{
	struct ifinfomsg *ifi = NLMSG_DATA(n);
	struct rtattr *tb[IFLA_MAX + 1];
	struct arg *a = arg;

	if (n->nlmsg_type != RTM_NEWLINK)
		return 0;

	if (n->nlmsg_len < NLMSG_LENGTH(sizeof(*ifi)))
		return -1;

	memset(tb, 0, sizeof(tb));
	parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), IFLA_PAYLOAD(n));

	if (tb[IFLA_IFNAME] == NULL)
		return 0;
	
	//printf("%i %s\n", ifi->ifi_index, RTA_DATA(tb[IFLA_IFNAME]));

	return a->func(ifi->ifi_index, ifi->ifi_flags, RTA_DATA(tb[IFLA_IFNAME]), a->arg);
}

int __export iplink_list(iplink_list_func func, void *arg)
{
	struct rtnl_handle rth;
	struct arg a = { .func = func, .arg = arg };

	if (rtnl_open(&rth, 0)) {
		log_emerg("iplink: cannot open rtnetlink\n");
		return -1;
	}

	if (rtnl_wilddump_request(&rth, AF_PACKET, RTM_GETLINK) < 0) {
		log_emerg("iplink: cannot send dump request\n");
		goto out_err;
	}

	if (rtnl_dump_filter(&rth, store_nlmsg, &a, NULL, NULL) < 0) {
		log_emerg("iplink: dump terminated\n");
		goto out_err;
	}

	rtnl_close(&rth);

	return 0;

out_err:
	rtnl_close(&rth);

	return -1;
}

117 118 119 120 121
int __export iplink_get_stats(int ifindex, struct rtnl_link_stats *stats)
{
	struct iplink_req {
		struct nlmsghdr n;
		struct ifinfomsg i;
122
		char buf[4096];
123 124 125 126 127 128 129 130 131 132 133
	} req;
	struct ifinfomsg *ifi;
	int len;
	struct rtattr *tb[IFLA_MAX + 1];

	if (!rth)
		open_rth();
	
	if (!rth)
		return -1;

134
	memset(&req, 0, sizeof(req) - 4096);
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
	
	req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
	req.n.nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK;
	req.n.nlmsg_type = RTM_GETLINK;
	req.i.ifi_family = AF_PACKET;
	req.i.ifi_index = ifindex;

	if (rtnl_talk(rth, &req.n, 0, 0, &req.n, NULL, NULL, 0) < 0)
		return -1;

	if (req.n.nlmsg_type != RTM_NEWLINK)
		return -1;

	ifi = NLMSG_DATA(&req.n);

	len = req.n.nlmsg_len;

	len -= NLMSG_LENGTH(sizeof(*ifi));
	if (len < 0)
		return -1;

	parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), len);
	if (tb[IFLA_STATS])
		memcpy(stats, RTA_DATA(tb[IFLA_STATS]), sizeof(*stats));
	else
		return -1;
	
	return 0;
}
164
	
D
Dmitry Kozlov 已提交
165
int __export iplink_vlan_add(const char *ifname, int ifindex, int vid)
166 167 168 169
{
	struct iplink_req {
		struct nlmsghdr n;
		struct ifinfomsg i;
170
		char buf[4096];
171 172 173 174 175 176 177 178 179
	} req;
	struct rtattr *linkinfo, *data;

	if (!rth)
		open_rth();
	
	if (!rth)
		return -1;

180
	memset(&req, 0, sizeof(req) - 4096);
181 182 183 184 185 186
	
	req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
	req.n.nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | NLM_F_CREATE | NLM_F_EXCL;
	req.n.nlmsg_type = RTM_NEWLINK;
	req.i.ifi_family = AF_UNSPEC;
	
187 188
	addattr_l(&req.n, 4096, IFLA_LINK, &ifindex, 4);
	addattr_l(&req.n, 4096, IFLA_IFNAME, ifname, strlen(ifname));
189 190
	
	linkinfo = NLMSG_TAIL(&req.n);
191 192
	addattr_l(&req.n, 4096, IFLA_LINKINFO, NULL, 0);
	addattr_l(&req.n, 4096, IFLA_INFO_KIND, "vlan", 4);
193 194

	data = NLMSG_TAIL(&req.n);
195 196
	addattr_l(&req.n, 4096, IFLA_INFO_DATA, NULL, 0);
	addattr_l(&req.n, 4096, IFLA_VLAN_ID, &vid, 2);
197 198 199 200 201 202 203 204 205 206
	data->rta_len = (void *)NLMSG_TAIL(&req.n) - (void *)data;
	
	linkinfo->rta_len = (void *)NLMSG_TAIL(&req.n) - (void *)linkinfo;

	if (rtnl_talk(rth, &req.n, 0, 0, NULL, NULL, NULL, 0) < 0)
		return -1;
	
	return 0;
}

D
Dmitry Kozlov 已提交
207
int __export iplink_vlan_del(int ifindex)
208 209 210 211
{
	struct iplink_req {
		struct nlmsghdr n;
		struct ifinfomsg i;
212
		char buf[4096];
213 214 215 216 217 218 219 220 221
	} req;
	struct rtattr *linkinfo;

	if (!rth)
		open_rth();
	
	if (!rth)
		return -1;

222
	memset(&req, 0, sizeof(req) - 4096);
223 224 225 226 227 228 229 230
	
	req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
	req.n.nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK;
	req.n.nlmsg_type = RTM_DELLINK;
	req.i.ifi_family = AF_UNSPEC;
	req.i.ifi_index = ifindex;
	
	linkinfo = NLMSG_TAIL(&req.n);
231 232
	addattr_l(&req.n, 4096, IFLA_LINKINFO, NULL, 0);
	addattr_l(&req.n, 4096, IFLA_INFO_KIND, "vlan", 4);
233 234

	/*data = NLMSG_TAIL(&req.n);
235
	addattr_l(&req.n, 4096, IFLA_VLAN_ID, &vid, 2);
236 237 238 239 240 241 242 243 244
	data->rta_len = (void *)NLMSG_TAIL(&req.n) - (void *)data;*/
	
	linkinfo->rta_len = (void *)NLMSG_TAIL(&req.n) - (void *)linkinfo;

	if (rtnl_talk(rth, &req.n, 0, 0, NULL, NULL, NULL, 0) < 0)
		return -1;
	
	return 0;
}
245

246 247 248 249 250
int __export ipaddr_add(int ifindex, in_addr_t addr, int mask)
{
	struct ipaddr_req {
		struct nlmsghdr n;
		struct ifaddrmsg i;
251
		char buf[4096];
252 253 254 255 256 257 258 259
	} req;

	if (!rth)
		open_rth();
	
	if (!rth)
		return -1;

260
	memset(&req, 0, sizeof(req) - 4096);
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
	
	req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifaddrmsg));
	req.n.nlmsg_flags = NLM_F_REQUEST | NLM_F_CREATE;
	req.n.nlmsg_type = RTM_NEWADDR;
	req.i.ifa_family = AF_INET;
	req.i.ifa_index = ifindex;
	req.i.ifa_prefixlen = mask;

	addattr32(&req.n, sizeof(req), IFA_LOCAL, addr);

	if (rtnl_talk(rth, &req.n, 0, 0, NULL, NULL, NULL, 0) < 0)
		return -1;
	
	return 0;
}

277
int __export ipaddr_del(int ifindex, in_addr_t addr, int mask)
278 279 280 281
{
	struct ipaddr_req {
		struct nlmsghdr n;
		struct ifaddrmsg i;
282
		char buf[4096];
283 284 285 286 287 288 289 290
	} req;

	if (!rth)
		open_rth();
	
	if (!rth)
		return -1;

291
	memset(&req, 0, sizeof(req) - 4096);
292 293 294 295 296 297
	
	req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifaddrmsg));
	req.n.nlmsg_flags = NLM_F_REQUEST;
	req.n.nlmsg_type = RTM_DELADDR;
	req.i.ifa_family = AF_INET;
	req.i.ifa_index = ifindex;
298
	req.i.ifa_prefixlen = mask;
299 300 301 302 303 304 305 306 307

	addattr32(&req.n, sizeof(req), IFA_LOCAL, addr);

	if (rtnl_talk(rth, &req.n, 0, 0, NULL, NULL, NULL, 0) < 0)
		return -1;
	
	return 0;
}

308
int __export iproute_add(int ifindex, in_addr_t src, in_addr_t dst, int proto)
309 310 311 312
{
	struct ipaddr_req {
		struct nlmsghdr n;
		struct rtmsg i;
313
		char buf[4096];
314 315 316 317 318 319 320 321
	} req;

	if (!rth)
		open_rth();
	
	if (!rth)
		return -1;

322
	memset(&req, 0, sizeof(req) - 4096);
323 324 325 326 327 328 329
	
	req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
	req.n.nlmsg_flags = NLM_F_REQUEST | NLM_F_CREATE;
	req.n.nlmsg_type = RTM_NEWROUTE;
	req.i.rtm_family = AF_INET;
	req.i.rtm_table = RT_TABLE_MAIN;
	req.i.rtm_scope = RT_SCOPE_LINK;
330
	req.i.rtm_protocol = proto;
331 332 333
	req.i.rtm_type = RTN_UNICAST;
	req.i.rtm_dst_len = 32;

K
Kozlov Dmitry 已提交
334 335
	if (src)
		addattr32(&req.n, sizeof(req), RTA_PREFSRC, src);
336 337 338 339 340 341 342 343 344
	addattr32(&req.n, sizeof(req), RTA_DST, dst);
	addattr32(&req.n, sizeof(req), RTA_OIF, ifindex);

	if (rtnl_talk(rth, &req.n, 0, 0, NULL, NULL, NULL, 0) < 0)
		return -1;
	
	return 0;
}

345
int __export iproute_del(int ifindex, in_addr_t dst, int proto)
346 347 348 349
{
	struct ipaddr_req {
		struct nlmsghdr n;
		struct rtmsg i;
350
		char buf[4096];
351 352 353 354 355 356 357 358
	} req;

	if (!rth)
		open_rth();
	
	if (!rth)
		return -1;

359
	memset(&req, 0, sizeof(req) - 4096);
360 361 362 363 364 365 366
	
	req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
	req.n.nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK;
	req.n.nlmsg_type = RTM_DELROUTE;
	req.i.rtm_family = AF_INET;
	req.i.rtm_table = RT_TABLE_MAIN;
	req.i.rtm_scope = RT_SCOPE_LINK;
367
	req.i.rtm_protocol = proto;
368 369 370 371 372 373 374 375 376 377 378 379
	req.i.rtm_type = RTN_UNICAST;
	req.i.rtm_dst_len = 32;

	addattr32(&req.n, sizeof(req), RTA_DST, dst);
	addattr32(&req.n, sizeof(req), RTA_OIF, ifindex);

	if (rtnl_talk(rth, &req.n, 0, 0, NULL, NULL, NULL, 0) < 0)
		return -1;
	
	return 0;
}

380
in_addr_t __export iproute_get(in_addr_t dst)
381 382
{
	struct ipaddr_req {
383 384
		struct nlmsghdr n;
		struct rtmsg r;
385
		char buf[4096];
386 387 388 389 390 391 392 393 394 395 396 397
	} req;
	struct rtmsg *r;
	struct rtattr *tb[RTA_MAX+1];
	int len;
	in_addr_t res = 0;

	if (!rth)
		open_rth();
	
	if (!rth)
		return -1;

398
	memset(&req, 0, sizeof(req) - 4096);
399 400 401 402 403 404 405 406 407 408 409 410 411
	
	req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
	req.n.nlmsg_flags = NLM_F_REQUEST;
	req.n.nlmsg_type = RTM_GETROUTE;
	req.r.rtm_family = AF_INET;
	req.r.rtm_table = 0;
	req.r.rtm_protocol = 0;
	req.r.rtm_scope = 0;
	req.r.rtm_type = 0;
	req.r.rtm_tos = 0;
	req.r.rtm_src_len = 0;
	req.r.rtm_dst_len = 32;

412
	addattr32(&req.n, 4096, RTA_DST, dst);
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444

	if (rtnl_talk(rth, &req.n, 0, 0, &req.n, NULL, NULL, 0) < 0) {
		log_error("failed to detect route to server\n");
		goto out;
	}

	r = NLMSG_DATA(&req.n);
	len = req.n.nlmsg_len;
	
	if (req.n.nlmsg_type != RTM_NEWROUTE) {
		log_error("failed to detect route to server (wrong netlink message type)");
		goto out;
	}

	len -= NLMSG_LENGTH(sizeof(*r));
	if (len < 0) {
		log_error("failed to detect route to server (wrong netlink message length)");
		goto out;
	}

	parse_rtattr(tb, RTA_MAX, RTM_RTA(r), len);
		
	if (tb[RTA_PREFSRC])
		res = *(uint32_t *)RTA_DATA(tb[RTA_PREFSRC]);
			
out:
	return res;
}

int __export iprule_add(uint32_t addr, int table)
{
	struct {
445 446
		struct nlmsghdr n;
		struct rtmsg i;
447
		char buf[4096];
448 449 450 451 452 453 454 455
	} req;

	if (!rth)
		open_rth();
	
	if (!rth)
		return -1;

456
	memset(&req, 0, sizeof(req) - 4096);
457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
	
	req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
	req.n.nlmsg_flags = NLM_F_REQUEST;
	req.n.nlmsg_type = RTM_NEWRULE;
	req.i.rtm_family = AF_INET;
	req.i.rtm_table = table < 256 ? table : RT_TABLE_UNSPEC;
	req.i.rtm_scope = RT_SCOPE_UNIVERSE;
	req.i.rtm_protocol = RTPROT_BOOT;
	req.i.rtm_type = RTN_UNICAST;
	req.i.rtm_src_len = 32;

	addattr32(&req.n, sizeof(req), FRA_SRC, addr);
	if (table >= 256)
		addattr32(&req.n, sizeof(req), FRA_TABLE, table);

	if (rtnl_talk(rth, &req.n, 0, 0, NULL, NULL, NULL, 0) < 0)
		return -1;
	
	return 0;
}

int __export iprule_del(uint32_t addr, int table)
{
	struct ipaddr_req {
		struct nlmsghdr n;
		struct rtmsg i;
483
		char buf[4096];
484 485 486 487 488 489 490 491
	} req;

	if (!rth)
		open_rth();
	
	if (!rth)
		return -1;

492
	memset(&req, 0, sizeof(req) - 4096);
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
	
	req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
	req.n.nlmsg_flags = NLM_F_REQUEST;
	req.n.nlmsg_type = RTM_DELRULE;
	req.i.rtm_family = AF_INET;
	req.i.rtm_table = table < 256 ? table : RT_TABLE_UNSPEC;
	req.i.rtm_scope = RT_SCOPE_UNIVERSE;
	req.i.rtm_protocol = RTPROT_BOOT;
	req.i.rtm_type = RTN_UNICAST;
	req.i.rtm_src_len = 32;

	addattr32(&req.n, sizeof(req), FRA_SRC, addr);
	if (table >= 256)
		addattr32(&req.n, sizeof(req), FRA_TABLE, table);

	if (rtnl_talk(rth, &req.n, 0, 0, NULL, NULL, NULL, 0) < 0)
		return -1;
	
	return 0;
}
513 514


515 516 517 518 519 520
static void init(void)
{
	pthread_key_create(&rth_key, free_rth);
}

DEFINE_INIT(100, init);