2 * netifd - network interface daemon
3 * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2
7 * as published by the Free Software Foundation
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
23 struct device_user dep
;
25 device_state_cb set_state
;
29 static void free_vlan_if(struct device
*iface
)
31 struct vlan_device
*vldev
;
33 vldev
= container_of(iface
, struct vlan_device
, dev
);
34 device_remove_user(&vldev
->dep
);
35 device_cleanup(&vldev
->dev
);
39 static int vlan_set_device_state(struct device
*dev
, bool up
)
41 struct vlan_device
*vldev
;
44 vldev
= container_of(dev
, struct vlan_device
, dev
);
46 vldev
->set_state(dev
, false);
48 device_release(&vldev
->dep
);
52 ret
= device_claim(&vldev
->dep
);
56 system_vlan_add(vldev
->dep
.dev
, vldev
->id
);
57 ret
= vldev
->set_state(dev
, true);
59 device_release(&vldev
->dep
);
64 static void vlan_dev_set_name(struct vlan_device
*vldev
, struct device
*dev
)
68 vldev
->dev
.hidden
= dev
->hidden
;
69 snprintf(name
, IFNAMSIZ
, "%s.%d", dev
->ifname
, vldev
->id
);
70 device_set_ifname(&vldev
->dev
, name
);
73 static void vlan_dev_cb(struct device_user
*dep
, enum device_event ev
)
75 struct vlan_device
*vldev
;
76 bool new_state
= false;
78 vldev
= container_of(dep
, struct vlan_device
, dep
);
82 case DEV_EVENT_REMOVE
:
83 device_set_present(&vldev
->dev
, new_state
);
85 case DEV_EVENT_UPDATE_IFNAME
:
86 vlan_dev_set_name(vldev
, dep
->dev
);
88 case DEV_EVENT_TOPO_CHANGE
:
89 /* Propagate topo changes */
90 device_broadcast_event(&vldev
->dev
, DEV_EVENT_TOPO_CHANGE
);
97 static struct device
*get_vlan_device(struct device
*dev
, int id
, bool create
)
99 static struct device_type vlan_type
= {
101 .config_params
= &device_attr_list
,
102 .free
= free_vlan_if
,
104 struct vlan_device
*vldev
;
105 struct device_user
*dep
;
107 /* look for an existing interface before creating a new one */
108 list_for_each_entry(dep
, &dev
->users
.list
, list
.list
) {
109 if (dep
->cb
!= vlan_dev_cb
)
112 vldev
= container_of(dep
, struct vlan_device
, dep
);
122 D(DEVICE
, "Create vlan device '%s.%d'\n", dev
->ifname
, id
);
124 vldev
= calloc(1, sizeof(*vldev
));
130 device_init(&vldev
->dev
, &vlan_type
, NULL
);
132 vlan_dev_set_name(vldev
, dev
);
133 vldev
->dev
.default_config
= true;
135 vldev
->set_state
= vldev
->dev
.set_state
;
136 vldev
->dev
.set_state
= vlan_set_device_state
;
138 vldev
->dep
.cb
= vlan_dev_cb
;
139 device_add_user(&vldev
->dep
, dev
);
144 static char *split_vlan(char *s
)
157 struct device
*get_vlan_device_chain(const char *ifname
, bool create
)
159 struct device
*dev
= NULL
;
160 char *buf
, *s
, *next
, *err
= NULL
;
163 buf
= strdup(ifname
);
168 dev
= device_get(buf
, create
);
173 next
= split_vlan(s
);
174 id
= strtoul(s
, &err
, 10);
178 dev
= get_vlan_device(dev
, id
, create
);