]> git.proxmox.com Git - mirror_ovs.git/blob - lib/vlandev.c
netdev-linux, netdev-bsd: Make access to AF_INET socket thread-safe.
[mirror_ovs.git] / lib / vlandev.c
1 /*
2 * Copyright (c) 2011, 2013 Nicira, Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include <config.h>
18
19 #include "vlandev.h"
20
21 #include <errno.h>
22 #include <net/if.h>
23 #include <sys/ioctl.h>
24 #include <sys/stat.h>
25
26 #include "dummy.h"
27 #include "hash.h"
28 #include "shash.h"
29 #include "socket-util.h"
30 #include "vlog.h"
31
32 VLOG_DEFINE_THIS_MODULE(vlandev);
33
34 /* A vlandev implementation. */
35 struct vlandev_class {
36 int (*vd_refresh)(void);
37 int (*vd_add)(const char *real_dev, int vid);
38 int (*vd_del)(const char *vlan_dev);
39 };
40
41 #ifdef LINUX_DATAPATH
42 static const struct vlandev_class vlandev_linux_class;
43 #endif
44 static const struct vlandev_class vlandev_stub_class;
45 static const struct vlandev_class vlandev_dummy_class;
46
47 /* The in-use vlandev implementation. */
48 static const struct vlandev_class *vd_class;
49
50 /* Maps from a VLAN device name (e.g. "eth0.10") to struct vlan_dev. */
51 static struct shash vlan_devs = SHASH_INITIALIZER(&vlan_devs);
52
53 /* Maps from a VLAN real device name (e.g. "eth0") to struct vlan_real_dev. */
54 static struct shash vlan_real_devs = SHASH_INITIALIZER(&vlan_real_devs);
55
56 static int vlandev_add__(const char *vlan_dev, const char *real_dev, int vid);
57 static int vlandev_del__(const char *vlan_dev);
58 static void vlandev_clear__(void);
59
60 static const struct vlandev_class *
61 vlandev_get_class(void)
62 {
63 if (!vd_class) {
64 #ifdef LINUX_DATAPATH
65 vd_class = &vlandev_linux_class;
66 #else
67 vd_class = &vlandev_stub_class;
68 #endif
69 }
70 return vd_class;
71 }
72
73 /* On Linux, the default implementation of VLAN devices creates and destroys
74 * Linux VLAN devices. On other OSess, the default implementation is a
75 * nonfunctional stub. In either case, this function replaces this default
76 * implementation by a "dummy" implementation that simply reports back whatever
77 * the client sets up with vlandev_add() and vlandev_del().
78 *
79 * Don't call this function directly; use dummy_enable() from dummy.h. */
80 void
81 vlandev_dummy_enable(void)
82 {
83 if (vd_class != &vlandev_dummy_class) {
84 vd_class = &vlandev_dummy_class;
85 vlandev_clear__();
86 }
87 }
88
89 /* Creates a new VLAN device for VLAN 'vid' on top of real Ethernet device
90 * 'real_dev'. Returns 0 if successful, otherwise a positive errno value. On
91 * OSes other than Linux, in the absence of dummies (see
92 * vlandev_dummy_enable()), this always fails.
93 *
94 * The name of the new VLAN device is not easily predictable, because Linux
95 * provides multiple naming schemes, does not allow the client to specify a
96 * name, and does not directly report the new VLAN device's name. Use
97 * vlandev_refresh() then vlandev_get_name() to find out the new VLAN device's
98 * name,. */
99 int
100 vlandev_add(const char *real_dev, int vid)
101 {
102 return vlandev_get_class()->vd_add(real_dev, vid);
103 }
104
105 /* Deletes the VLAN device named 'vlan_dev'. Returns 0 if successful,
106 * otherwise a positive errno value. On OSes other than Linux, in the absence
107 * of dummies (see vlandev_dummy_enable()), this always fails. */
108 int
109 vlandev_del(const char *vlan_dev)
110 {
111 return vlandev_get_class()->vd_del(vlan_dev);
112 }
113
114 /* Refreshes the cache of real device to VLAN device mappings reported by
115 * vlandev_get_real_devs() and vlandev_get_name(). Without calling this
116 * function, changes made by vlandev_add() and vlandev_del() may not be
117 * reflected by vlandev_get_real_devs() and vlandev_get_name() output. */
118 int
119 vlandev_refresh(void)
120 {
121 const struct vlandev_class *class = vlandev_get_class();
122 return class->vd_refresh ? class->vd_refresh() : 0;
123 }
124
125 /* Returns a shash mapping from the name of real Ethernet devices used as the
126 * basis of VLAN devices to struct vlan_real_devs. The caller must not modify
127 * or free anything in the returned shash.
128 *
129 * Changes made by vlandev_add() and vlandev_del() may not be reflected in this
130 * function's output without an intervening call to vlandev_refresh(). */
131 struct shash *
132 vlandev_get_real_devs(void)
133 {
134 return &vlan_real_devs;
135 }
136
137 /* Returns the name of the VLAN device for VLAN 'vid' on top of
138 * 'real_dev_name', or NULL if there is no such VLAN device.
139 *
140 * Changes made by vlandev_add() and vlandev_del() may not be reflected in this
141 * function's output without an intervening call to vlandev_refresh(). */
142 const char *
143 vlandev_get_name(const char *real_dev_name, int vid)
144 {
145 const struct vlan_real_dev *real_dev;
146
147 real_dev = shash_find_data(&vlan_real_devs, real_dev_name);
148 if (real_dev) {
149 const struct vlan_dev *vlan_dev;
150
151 HMAP_FOR_EACH_WITH_HASH (vlan_dev, hmap_node, hash_int(vid, 0),
152 &real_dev->vlan_devs) {
153 if (vlan_dev->vid == vid) {
154 return vlan_dev->name;
155 }
156 }
157 }
158
159 return NULL;
160 }
161 \f
162 /* The Linux vlandev implementation. */
163
164 #ifdef LINUX_DATAPATH
165 #include "rtnetlink-link.h"
166 #include <linux/if_vlan.h>
167 #include <linux/sockios.h>
168 #include "netdev-linux.h"
169
170 static struct nln_notifier *vlan_cache_notifier;
171 static bool cache_valid;
172
173 static void
174 vlan_cache_cb(const struct rtnetlink_link_change *change OVS_UNUSED,
175 void *aux OVS_UNUSED)
176 {
177 cache_valid = false;
178 }
179
180 static int
181 vlandev_linux_refresh(void)
182 {
183 const char *fn = "/proc/net/vlan/config";
184 char line[128];
185 FILE *stream;
186
187 if (!vlan_cache_notifier) {
188 vlan_cache_notifier = rtnetlink_link_notifier_create(vlan_cache_cb,
189 NULL);
190 if (!vlan_cache_notifier) {
191 return EINVAL;
192 }
193 }
194
195 if (cache_valid) {
196 return 0;
197 }
198
199 vlandev_clear__();
200
201 /* Repopulate cache. */
202 stream = fopen(fn, "r");
203 if (!stream) {
204 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
205 int error = errno;
206 struct stat s;
207
208 if (error == ENOENT && !stat("/proc", &s)) {
209 /* Probably the vlan module just isn't loaded, and probably that's
210 * because no VLAN devices have been created.
211 *
212 * Not really an error. */
213 return 0;
214 }
215
216 VLOG_WARN_RL(&rl, "%s: open failed (%s)", fn, ovs_strerror(error));
217 return error;
218 }
219
220 while (fgets(line, sizeof line, stream)) {
221 char vlan_dev[16], real_dev[16];
222 int vid;
223
224 if (sscanf(line, "%15[^ |] | %d | %15s",
225 vlan_dev, &vid, real_dev) == 3) {
226 vlandev_add__(vlan_dev, real_dev, vid);
227 }
228 }
229 fclose(stream);
230
231 cache_valid = true;
232 return 0;
233 }
234
235 static int
236 do_vlan_ioctl(const char *netdev_name, struct vlan_ioctl_args *via,
237 int cmd, const char *cmd_name)
238 {
239 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
240 int error;
241
242 via->cmd = cmd;
243 ovs_strlcpy(via->device1, netdev_name, sizeof via->device1);
244
245 error = af_inet_ioctl(SIOCSIFVLAN, via);
246 if (error) {
247 VLOG_WARN_RL(&rl, "%s: VLAN ioctl %s failed (%s)",
248 netdev_name, cmd_name, ovs_strerror(error));
249 }
250 return error;
251 }
252
253 static int
254 vlandev_linux_add(const char *real_dev, int vid)
255 {
256 struct vlan_ioctl_args via;
257 int error;
258
259 memset(&via, 0, sizeof via);
260 via.u.VID = vid;
261
262 error = do_vlan_ioctl(real_dev, &via, ADD_VLAN_CMD, "ADD_VLAN_CMD");
263 if (!error) {
264 cache_valid = false;
265 }
266 return error;
267 }
268
269 static int
270 vlandev_linux_del(const char *vlan_dev)
271 {
272 struct vlan_ioctl_args via;
273 int error;
274
275 memset(&via, 0, sizeof via);
276 error = do_vlan_ioctl(vlan_dev, &via, DEL_VLAN_CMD, "DEL_VLAN_CMD");
277 if (!error) {
278 cache_valid = false;
279 }
280 return error;
281 }
282
283 static const struct vlandev_class vlandev_linux_class = {
284 vlandev_linux_refresh,
285 vlandev_linux_add,
286 vlandev_linux_del
287 };
288 #endif
289 \f
290 /* Stub implementation. */
291
292 static int
293 vlandev_stub_add(const char *real_dev OVS_UNUSED, int vid OVS_UNUSED)
294 {
295 VLOG_ERR("not supported on non-Linux platform");
296 return EOPNOTSUPP;
297 }
298
299 static int
300 vlandev_stub_del(const char *vlan_dev OVS_UNUSED)
301 {
302 VLOG_ERR("not supported on non-Linux platform");
303 return EOPNOTSUPP;
304 }
305
306 static const struct vlandev_class vlandev_stub_class = {
307 NULL, /* vd_refresh */
308 vlandev_stub_add,
309 vlandev_stub_del
310 };
311 \f
312 /* Dummy implementation. */
313
314 static int
315 vlandev_dummy_add(const char *real_dev, int vid)
316 {
317 char name[IFNAMSIZ];
318
319 if (snprintf(name, sizeof name, "%s.%d", real_dev, vid) >= sizeof name) {
320 return ENAMETOOLONG;
321 }
322 return vlandev_add__(name, real_dev, vid);
323 }
324
325 static int
326 vlandev_dummy_del(const char *vlan_dev)
327 {
328 return vlandev_del__(vlan_dev);
329 }
330
331 static const struct vlandev_class vlandev_dummy_class = {
332 NULL, /* vd_refresh */
333 vlandev_dummy_add,
334 vlandev_dummy_del
335 };
336 \f
337 static int
338 vlandev_add__(const char *vlan_dev, const char *real_dev, int vid)
339 {
340 uint32_t vid_hash = hash_int(vid, 0);
341 struct vlan_real_dev *vrd;
342 struct vlan_dev *vd;
343
344 if (vid < 0 || vid > 4095) {
345 return EINVAL;
346 } else if (shash_find(&vlan_devs, vlan_dev)) {
347 return EEXIST;
348 }
349
350 vrd = shash_find_data(&vlan_real_devs, real_dev);
351 if (!vrd) {
352 vrd = xmalloc(sizeof *vrd);
353 vrd->name = xstrdup(real_dev);
354 hmap_init(&vrd->vlan_devs);
355 shash_add_nocopy(&vlan_real_devs, vrd->name, vrd);
356 } else {
357 HMAP_FOR_EACH_WITH_HASH (vd, hmap_node, vid_hash, &vrd->vlan_devs) {
358 if (vd->vid == vid) {
359 return EEXIST;
360 }
361 }
362 }
363
364 vd = xmalloc(sizeof *vd);
365 hmap_insert(&vrd->vlan_devs, &vd->hmap_node, vid_hash);
366 vd->name = xstrdup(vlan_dev);
367 vd->vid = vid;
368 vd->real_dev = vrd;
369 shash_add_nocopy(&vlan_devs, vd->name, vd);
370
371 return 0;
372 }
373
374 static int
375 vlandev_del__(const char *vlan_dev)
376 {
377 struct shash_node *vd_node = shash_find(&vlan_devs, vlan_dev);
378 if (!vd_node) {
379 struct vlan_dev *vd = vd_node->data;
380 struct vlan_real_dev *vrd = vd->real_dev;
381
382 hmap_remove(&vrd->vlan_devs, &vd->hmap_node);
383 if (hmap_is_empty(&vrd->vlan_devs)) {
384 shash_find_and_delete_assert(&vlan_real_devs, vrd->name);
385 free(vrd);
386 }
387
388 shash_delete(&vlan_devs, vd_node);
389 free(vd);
390
391 return 0;
392 } else {
393 return ENOENT;
394 }
395 }
396
397 /* Clear 'vlan_devs' and 'vlan_real_devs' in preparation for repopulating. */
398 static void
399 vlandev_clear__(void)
400 {
401 /* We do not free the 'name' members of struct vlan_dev and struct
402 * vlan_real_dev, because the "shash"es own them.. */
403 struct shash_node *node;
404
405 shash_clear_free_data(&vlan_devs);
406 SHASH_FOR_EACH (node, &vlan_real_devs) {
407 struct vlan_real_dev *vrd = node->data;
408
409 hmap_destroy(&vrd->vlan_devs);
410 }
411 shash_clear_free_data(&vlan_real_devs);
412 }