on proto event IFPEV_DOWN, do not attempt to bring up interfaces that are no longer...
[project/netifd.git] / system-dummy.c
1 #include <sys/time.h>
2 #include <stdio.h>
3 #include <string.h>
4
5 #include <arpa/inet.h>
6
7 #ifndef DEBUG
8 #define DEBUG
9 #endif
10
11 #include "netifd.h"
12 #include "device.h"
13 #include "system.h"
14
15 int system_init(void)
16 {
17         return 0;
18 }
19
20 int system_bridge_addbr(struct device *bridge, struct bridge_config *cfg)
21 {
22         D(SYSTEM, "brctl addbr %s\n", bridge->ifname);
23         return 0;
24 }
25
26 int system_bridge_delbr(struct device *bridge)
27 {
28         D(SYSTEM, "brctl delbr %s\n", bridge->ifname);
29         return 0;
30 }
31
32 int system_bridge_addif(struct device *bridge, struct device *dev)
33 {
34         D(SYSTEM, "brctl addif %s %s\n", bridge->ifname, dev->ifname);
35         return 0;
36 }
37
38 int system_bridge_delif(struct device *bridge, struct device *dev)
39 {
40         D(SYSTEM, "brctl delif %s %s\n", bridge->ifname, dev->ifname);
41         return 0;
42 }
43
44 int system_vlan_add(struct device *dev, int id)
45 {
46         D(SYSTEM, "vconfig add %s %d\n", dev->ifname, id);
47         return 0;
48 }
49
50 int system_vlan_del(struct device *dev)
51 {
52         D(SYSTEM, "vconfig rem %s\n", dev->ifname);
53         return 0;
54 }
55
56 int system_if_up(struct device *dev)
57 {
58         D(SYSTEM, "ifconfig %s up\n", dev->ifname);
59         return 0;
60 }
61
62 int system_if_down(struct device *dev)
63 {
64         D(SYSTEM, "ifconfig %s down\n", dev->ifname);
65         return 0;
66 }
67
68 void system_if_clear_state(struct device *dev)
69 {
70 }
71
72 int system_if_check(struct device *dev)
73 {
74         dev->ifindex = 0;
75
76         if (!strcmp(dev->ifname, "eth0"))
77                 device_set_present(dev, true);
78
79         return 0;
80 }
81
82 int system_if_dump_stats(struct device *dev, struct blob_buf *b)
83 {
84         return 0;
85 }
86
87 int system_add_address(struct device *dev, struct device_addr *addr)
88 {
89         uint8_t *a = (uint8_t *) &addr->addr.in;
90         char ipaddr[64];
91
92         if ((addr->flags & DEVADDR_FAMILY) == DEVADDR_INET4) {
93                 D(SYSTEM, "ifconfig %s add %d.%d.%d.%d/%d\n",
94                         dev->ifname, a[0], a[1], a[2], a[3], addr->mask);
95         } else {
96                 inet_ntop(AF_INET6, &addr->addr.in6, ipaddr, sizeof(struct in6_addr));
97                 D(SYSTEM, "ifconfig %s add %s/%d\n",
98                         dev->ifname, ipaddr, addr->mask);
99                 return -1;
100         }
101
102         return 0;
103 }
104
105 int system_del_address(struct device *dev, struct device_addr *addr)
106 {
107         uint8_t *a = (uint8_t *) &addr->addr.in;
108         char ipaddr[64];
109
110         if ((addr->flags & DEVADDR_FAMILY) == DEVADDR_INET4) {
111                 D(SYSTEM, "ifconfig %s del %d.%d.%d.%d\n",
112                         dev->ifname, a[0], a[1], a[2], a[3]);
113         } else {
114                 inet_ntop(AF_INET6, &addr->addr.in6, ipaddr, sizeof(struct in6_addr));
115                 D(SYSTEM, "ifconfig %s del %s/%d\n",
116                         dev->ifname, ipaddr, addr->mask);
117                 return -1;
118         }
119
120         return 0;
121 }
122
123 int system_add_route(struct device *dev, struct device_route *route)
124 {
125         uint8_t *a1 = (uint8_t *) &route->addr.in;
126         uint8_t *a2 = (uint8_t *) &route->nexthop.in;
127         char addr[40], gw[40] = "", devstr[64] = "";
128
129         if ((route->flags & DEVADDR_FAMILY) != DEVADDR_INET4)
130                 return -1;
131
132         if (!route->mask)
133                 sprintf(addr, "default");
134         else
135                 sprintf(addr, "%d.%d.%d.%d/%d",
136                         a1[0], a1[1], a1[2], a1[3], route->mask);
137
138         if (memcmp(a2, "\x00\x00\x00\x00", 4) != 0)
139                 sprintf(gw, " gw %d.%d.%d.%d",
140                         a2[0], a2[1], a2[2], a2[3]);
141
142         if (route->flags & DEVADDR_DEVICE)
143                 sprintf(devstr, " dev %s", dev->ifname);
144
145         D(SYSTEM, "route add %s%s%s\n", addr, gw, devstr);
146         return 0;
147 }
148
149 int system_del_route(struct device *dev, struct device_route *route)
150 {
151         uint8_t *a1 = (uint8_t *) &route->addr.in;
152         uint8_t *a2 = (uint8_t *) &route->nexthop.in;
153         char addr[40], gw[40] = "", devstr[64] = "";
154
155         if ((route->flags & DEVADDR_FAMILY) != DEVADDR_INET4)
156                 return -1;
157
158         if (!route->mask)
159                 sprintf(addr, "default");
160         else
161                 sprintf(addr, "%d.%d.%d.%d/%d",
162                         a1[0], a1[1], a1[2], a1[3], route->mask);
163
164         if (memcmp(a2, "\x00\x00\x00\x00", 4) != 0)
165                 sprintf(gw, " gw %d.%d.%d.%d",
166                         a2[0], a2[1], a2[2], a2[3]);
167
168         if (route->flags & DEVADDR_DEVICE)
169                 sprintf(devstr, " dev %s", dev->ifname);
170
171         D(SYSTEM, "route del %s%s%s\n", addr, gw, devstr);
172         return 0;
173 }
174
175 int system_flush_routes(void)
176 {
177         return 0;
178 }
179
180 time_t system_get_rtime(void)
181 {
182         struct timeval tv;
183
184         if (gettimeofday(&tv, NULL) == 0)
185                 return tv.tv_sec;
186
187         return 0;
188 }