interface-ip: mask out host bits in IPv4 route targets
[project/netifd.git] / system-dummy.c
index 080e5a2464f3f305544fd5926bc28d2a75da1738..84382b3a9ad9d0f9ebb5883a1ecf0b3b24c9d4a4 100644 (file)
@@ -32,7 +32,8 @@ int system_init(void)
 
 int system_bridge_addbr(struct device *bridge, struct bridge_config *cfg)
 {
-       D(SYSTEM, "brctl addbr %s\n", bridge->ifname);
+       D(SYSTEM, "brctl addbr %s vlan_filtering=%d\n",
+         bridge->ifname, cfg->vlan_filtering);
        return 0;
 }
 
@@ -54,6 +55,36 @@ int system_bridge_delif(struct device *bridge, struct device *dev)
        return 0;
 }
 
+int system_bridge_vlan(const char *iface, uint16_t vid, int16_t vid_end, bool add, unsigned int vflags)
+{
+       D(SYSTEM, "brctl vlan %s %s %s vid=%d vid_end=%d pvid=%d untag=%d\n",
+         add ? "add" : "remove",
+         (vflags & BRVLAN_F_SELF) ? "self" : "master",
+         iface, vid, vid_end,
+         !!(vflags & BRVLAN_F_PVID),
+         !!(vflags & BRVLAN_F_UNTAGGED));
+       return 0;
+}
+
+void system_bridge_set_stp_state(struct device *dev, bool val)
+{
+}
+
+int system_bridge_vlan_check(struct device *dev, char *ifname)
+{
+       return 0;
+}
+
+int system_bonding_set_device(struct device *dev, struct bonding_config *cfg)
+{
+       return 0;
+}
+
+int system_bonding_set_port(struct device *dev, struct device *port, bool add, bool primary)
+{
+       return 0;
+}
+
 int system_link_netns_move(struct device *dev, int netns_fd, const char *target_ifname)
 {
        D(SYSTEM, "ip link set %s name %s netns %d\n", dev->ifname, target_ifname, netns_fd);
@@ -112,7 +143,9 @@ void system_if_clear_state(struct device *dev)
 
 int system_if_check(struct device *dev)
 {
-       device_set_present(dev, true);
+       if (dev->type == &simple_device_type)
+               device_set_present(dev, true);
+
        device_set_link(dev, true);
 
        return 0;
@@ -143,8 +176,14 @@ system_if_dump_stats(struct device *dev, struct blob_buf *b)
 }
 
 void
-system_if_apply_settings(struct device *dev, struct device_settings *s, unsigned int apply_mask)
+system_if_apply_settings(struct device *dev, struct device_settings *s, uint64_t apply_mask)
 {
+       apply_mask &= s->flags;
+
+       if ((apply_mask & (DEV_OPT_MACADDR | DEV_OPT_DEFAULT_MACADDR)) && !dev->external) {
+               D(SYSTEM, "ifconfig %s hw ether %s\n",
+                 dev->ifname, format_macaddr(s->macaddr));
+       }
 }
 
 static int system_address_msg(struct device *dev, struct device_addr *addr, const char *type)
@@ -296,12 +335,12 @@ time_t system_get_rtime(void)
        return 0;
 }
 
-int system_del_ip_tunnel(const char *name, struct blob_attr *attr)
+int system_del_ip_tunnel(const struct device *dev)
 {
        return 0;
 }
 
-int system_add_ip_tunnel(const char *name, struct blob_attr *attr)
+int system_add_ip_tunnel(const struct device *dev, struct blob_attr *attr)
 {
        return 0;
 }