summaryrefslogtreecommitdiff
path: root/kexec/ifdown.c
blob: 3ac19c1a9d23fb2dca69f5cee955c955a5e22ecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
 * ifdown.c Find all network interfaces on the system and
 *      shut them down.
 *
 */
char *v_ifdown = "@(#)ifdown.c  1.11  02-Jun-1998  miquels@cistron.nl";

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#include <string.h>
#include <errno.h>

#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/time.h>

#include <net/if.h>
#include <netinet/in.h>

/*
 *  First, we find all shaper devices and down them. Then we
 *  down all real interfaces. This is because the comment in the
 *  shaper driver says "if you down the shaper device before the
 *  attached inerface your computer will follow".
 */
int ifdown(void)
{
	struct if_nameindex *ifa, *ifp;
	struct ifreq ifr;
	int fd, shaper;

	if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
		fprintf(stderr, "ifdown: ");
		perror("socket");
		goto error;
	}

	if ((ifa = if_nameindex()) == NULL) {
		fprintf(stderr, "ifdown: ");
		perror("if_nameindex");
		goto error;
	}

	for (shaper = 1; shaper >= 0; shaper--) {
		for (ifp = ifa; ifp->if_index; ifp++) {

			if ((strncmp(ifp->if_name, "shaper", 6) == 0)
			    != shaper) continue;
			if (strcmp(ifp->if_name, "lo") == 0)
				continue;
			if (strchr(ifp->if_name, ':') != NULL)
				continue;

			strncpy(ifr.ifr_name, ifp->if_name, IFNAMSIZ-1);
			ifr.ifr_name[IFNAMSIZ-1] = 0;
			if (ioctl(fd, SIOCGIFFLAGS, &ifr) < 0) {
				fprintf(stderr, "ifdown: shutdown ");
				perror(ifp->if_name);
				goto error;
			}
			ifr.ifr_flags &= ~(IFF_UP);
			if (ioctl(fd, SIOCSIFFLAGS, &ifr) < 0) {
				fprintf(stderr, "ifdown: shutdown ");
				perror(ifp->if_name);
				goto error;
			}

		}
	}

	close(fd);
	return 0;

error:
	close(fd);
	return -1;
}