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