vlan_init.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826
  1. /*
  2. * hostapd / VLAN initialization
  3. * Copyright 2003, Instant802 Networks, Inc.
  4. * Copyright 2005-2006, Devicescape Software, Inc.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * Alternatively, this software may be distributed under the terms of BSD
  11. * license.
  12. *
  13. * See README and COPYING for more details.
  14. */
  15. #include "includes.h"
  16. #include "common.h"
  17. #include "hostapd.h"
  18. #include "driver_i.h"
  19. #include "vlan_init.h"
  20. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  21. #include <net/if.h>
  22. #include <sys/ioctl.h>
  23. #include <linux/sockios.h>
  24. #include <linux/if_vlan.h>
  25. #include <linux/if_bridge.h>
  26. #include "drivers/priv_netlink.h"
  27. #include "eloop.h"
  28. struct full_dynamic_vlan {
  29. int s; /* socket on which to listen for new/removed interfaces. */
  30. };
  31. static int ifconfig_helper(const char *if_name, int up)
  32. {
  33. int fd;
  34. struct ifreq ifr;
  35. if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
  36. perror("socket[AF_INET,SOCK_STREAM]");
  37. return -1;
  38. }
  39. os_memset(&ifr, 0, sizeof(ifr));
  40. os_strlcpy(ifr.ifr_name, if_name, IFNAMSIZ);
  41. if (ioctl(fd, SIOCGIFFLAGS, &ifr) != 0) {
  42. perror("ioctl[SIOCGIFFLAGS]");
  43. close(fd);
  44. return -1;
  45. }
  46. if (up)
  47. ifr.ifr_flags |= IFF_UP;
  48. else
  49. ifr.ifr_flags &= ~IFF_UP;
  50. if (ioctl(fd, SIOCSIFFLAGS, &ifr) != 0) {
  51. perror("ioctl[SIOCSIFFLAGS]");
  52. close(fd);
  53. return -1;
  54. }
  55. close(fd);
  56. return 0;
  57. }
  58. static int ifconfig_up(const char *if_name)
  59. {
  60. return ifconfig_helper(if_name, 1);
  61. }
  62. static int ifconfig_down(const char *if_name)
  63. {
  64. return ifconfig_helper(if_name, 0);
  65. }
  66. /*
  67. * These are only available in recent linux headers (without the leading
  68. * underscore).
  69. */
  70. #define _GET_VLAN_REALDEV_NAME_CMD 8
  71. #define _GET_VLAN_VID_CMD 9
  72. /* This value should be 256 ONLY. If it is something else, then hostapd
  73. * might crash!, as this value has been hard-coded in 2.4.x kernel
  74. * bridging code.
  75. */
  76. #define MAX_BR_PORTS 256
  77. static int br_delif(const char *br_name, const char *if_name)
  78. {
  79. int fd;
  80. struct ifreq ifr;
  81. unsigned long args[2];
  82. int if_index;
  83. if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
  84. perror("socket[AF_INET,SOCK_STREAM]");
  85. return -1;
  86. }
  87. if_index = if_nametoindex(if_name);
  88. if (if_index == 0) {
  89. printf("Failure determining interface index for '%s'\n",
  90. if_name);
  91. close(fd);
  92. return -1;
  93. }
  94. args[0] = BRCTL_DEL_IF;
  95. args[1] = if_index;
  96. os_strlcpy(ifr.ifr_name, br_name, sizeof(ifr.ifr_name));
  97. ifr.ifr_data = (__caddr_t) args;
  98. if (ioctl(fd, SIOCDEVPRIVATE, &ifr) < 0 && errno != EINVAL) {
  99. /* No error if interface already removed. */
  100. perror("ioctl[SIOCDEVPRIVATE,BRCTL_DEL_IF]");
  101. close(fd);
  102. return -1;
  103. }
  104. close(fd);
  105. return 0;
  106. }
  107. /*
  108. Add interface 'if_name' to the bridge 'br_name'
  109. returns -1 on error
  110. returns 1 if the interface is already part of the bridge
  111. returns 0 otherwise
  112. */
  113. static int br_addif(const char *br_name, const char *if_name)
  114. {
  115. int fd;
  116. struct ifreq ifr;
  117. unsigned long args[2];
  118. int if_index;
  119. if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
  120. perror("socket[AF_INET,SOCK_STREAM]");
  121. return -1;
  122. }
  123. if_index = if_nametoindex(if_name);
  124. if (if_index == 0) {
  125. printf("Failure determining interface index for '%s'\n",
  126. if_name);
  127. close(fd);
  128. return -1;
  129. }
  130. args[0] = BRCTL_ADD_IF;
  131. args[1] = if_index;
  132. os_strlcpy(ifr.ifr_name, br_name, sizeof(ifr.ifr_name));
  133. ifr.ifr_data = (__caddr_t) args;
  134. if (ioctl(fd, SIOCDEVPRIVATE, &ifr) < 0) {
  135. if (errno == EBUSY) {
  136. /* The interface is already added. */
  137. close(fd);
  138. return 1;
  139. }
  140. perror("ioctl[SIOCDEVPRIVATE,BRCTL_ADD_IF]");
  141. close(fd);
  142. return -1;
  143. }
  144. close(fd);
  145. return 0;
  146. }
  147. static int br_delbr(const char *br_name)
  148. {
  149. int fd;
  150. unsigned long arg[2];
  151. if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
  152. perror("socket[AF_INET,SOCK_STREAM]");
  153. return -1;
  154. }
  155. arg[0] = BRCTL_DEL_BRIDGE;
  156. arg[1] = (unsigned long) br_name;
  157. if (ioctl(fd, SIOCGIFBR, arg) < 0 && errno != ENXIO) {
  158. /* No error if bridge already removed. */
  159. perror("ioctl[BRCTL_DEL_BRIDGE]");
  160. close(fd);
  161. return -1;
  162. }
  163. close(fd);
  164. return 0;
  165. }
  166. /*
  167. Add a bridge with the name 'br_name'.
  168. returns -1 on error
  169. returns 1 if the bridge already exists
  170. returns 0 otherwise
  171. */
  172. static int br_addbr(const char *br_name)
  173. {
  174. int fd;
  175. unsigned long arg[2];
  176. if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
  177. perror("socket[AF_INET,SOCK_STREAM]");
  178. return -1;
  179. }
  180. arg[0] = BRCTL_ADD_BRIDGE;
  181. arg[1] = (unsigned long) br_name;
  182. if (ioctl(fd, SIOCGIFBR, arg) < 0) {
  183. if (errno == EEXIST) {
  184. /* The bridge is already added. */
  185. close(fd);
  186. return 1;
  187. } else {
  188. perror("ioctl[BRCTL_ADD_BRIDGE]");
  189. close(fd);
  190. return -1;
  191. }
  192. }
  193. close(fd);
  194. return 0;
  195. }
  196. static int br_getnumports(const char *br_name)
  197. {
  198. int fd;
  199. int i;
  200. int port_cnt = 0;
  201. unsigned long arg[4];
  202. int ifindices[MAX_BR_PORTS];
  203. struct ifreq ifr;
  204. if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
  205. perror("socket[AF_INET,SOCK_STREAM]");
  206. return -1;
  207. }
  208. arg[0] = BRCTL_GET_PORT_LIST;
  209. arg[1] = (unsigned long) ifindices;
  210. arg[2] = MAX_BR_PORTS;
  211. arg[3] = 0;
  212. os_memset(ifindices, 0, sizeof(ifindices));
  213. os_strlcpy(ifr.ifr_name, br_name, sizeof(ifr.ifr_name));
  214. ifr.ifr_data = (__caddr_t) arg;
  215. if (ioctl(fd, SIOCDEVPRIVATE, &ifr) < 0) {
  216. perror("ioctl[SIOCDEVPRIVATE,BRCTL_GET_PORT_LIST]");
  217. close(fd);
  218. return -1;
  219. }
  220. for (i = 1; i < MAX_BR_PORTS; i++) {
  221. if (ifindices[i] > 0) {
  222. port_cnt++;
  223. }
  224. }
  225. close(fd);
  226. return port_cnt;
  227. }
  228. static int vlan_rem(const char *if_name)
  229. {
  230. int fd;
  231. struct vlan_ioctl_args if_request;
  232. if ((os_strlen(if_name) + 1) > sizeof(if_request.device1)) {
  233. fprintf(stderr, "Interface name to long.\n");
  234. return -1;
  235. }
  236. if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
  237. perror("socket[AF_INET,SOCK_STREAM]");
  238. return -1;
  239. }
  240. os_memset(&if_request, 0, sizeof(if_request));
  241. os_strlcpy(if_request.device1, if_name, sizeof(if_request.device1));
  242. if_request.cmd = DEL_VLAN_CMD;
  243. if (ioctl(fd, SIOCSIFVLAN, &if_request) < 0) {
  244. perror("ioctl[SIOCSIFVLAN,DEL_VLAN_CMD]");
  245. close(fd);
  246. return -1;
  247. }
  248. close(fd);
  249. return 0;
  250. }
  251. /*
  252. Add a vlan interface with VLAN ID 'vid' and tagged interface
  253. 'if_name'.
  254. returns -1 on error
  255. returns 1 if the interface already exists
  256. returns 0 otherwise
  257. */
  258. static int vlan_add(const char *if_name, int vid)
  259. {
  260. int fd;
  261. struct vlan_ioctl_args if_request;
  262. ifconfig_up(if_name);
  263. if ((os_strlen(if_name) + 1) > sizeof(if_request.device1)) {
  264. fprintf(stderr, "Interface name to long.\n");
  265. return -1;
  266. }
  267. if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
  268. perror("socket[AF_INET,SOCK_STREAM]");
  269. return -1;
  270. }
  271. os_memset(&if_request, 0, sizeof(if_request));
  272. /* Determine if a suitable vlan device already exists. */
  273. os_snprintf(if_request.device1, sizeof(if_request.device1), "vlan%d",
  274. vid);
  275. if_request.cmd = _GET_VLAN_VID_CMD;
  276. if (ioctl(fd, SIOCSIFVLAN, &if_request) == 0) {
  277. if (if_request.u.VID == vid) {
  278. if_request.cmd = _GET_VLAN_REALDEV_NAME_CMD;
  279. if (ioctl(fd, SIOCSIFVLAN, &if_request) == 0 &&
  280. os_strncmp(if_request.u.device2, if_name,
  281. sizeof(if_request.u.device2)) == 0) {
  282. close(fd);
  283. return 1;
  284. }
  285. }
  286. }
  287. /* A suitable vlan device does not already exist, add one. */
  288. os_memset(&if_request, 0, sizeof(if_request));
  289. os_strlcpy(if_request.device1, if_name, sizeof(if_request.device1));
  290. if_request.u.VID = vid;
  291. if_request.cmd = ADD_VLAN_CMD;
  292. if (ioctl(fd, SIOCSIFVLAN, &if_request) < 0) {
  293. perror("ioctl[SIOCSIFVLAN,ADD_VLAN_CMD]");
  294. close(fd);
  295. return -1;
  296. }
  297. close(fd);
  298. return 0;
  299. }
  300. static int vlan_set_name_type(unsigned int name_type)
  301. {
  302. int fd;
  303. struct vlan_ioctl_args if_request;
  304. if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
  305. perror("socket[AF_INET,SOCK_STREAM]");
  306. return -1;
  307. }
  308. os_memset(&if_request, 0, sizeof(if_request));
  309. if_request.u.name_type = name_type;
  310. if_request.cmd = SET_VLAN_NAME_TYPE_CMD;
  311. if (ioctl(fd, SIOCSIFVLAN, &if_request) < 0) {
  312. perror("ioctl[SIOCSIFVLAN,SET_VLAN_NAME_TYPE_CMD]");
  313. close(fd);
  314. return -1;
  315. }
  316. close(fd);
  317. return 0;
  318. }
  319. static void vlan_newlink(char *ifname, struct hostapd_data *hapd)
  320. {
  321. char vlan_ifname[IFNAMSIZ];
  322. char br_name[IFNAMSIZ];
  323. struct hostapd_vlan *vlan = hapd->conf->vlan;
  324. char *tagged_interface = hapd->conf->ssid.vlan_tagged_interface;
  325. while (vlan) {
  326. if (os_strcmp(ifname, vlan->ifname) == 0) {
  327. os_snprintf(br_name, sizeof(br_name), "brvlan%d",
  328. vlan->vlan_id);
  329. if (!br_addbr(br_name))
  330. vlan->clean |= DVLAN_CLEAN_BR;
  331. ifconfig_up(br_name);
  332. if (tagged_interface) {
  333. if (!vlan_add(tagged_interface, vlan->vlan_id))
  334. vlan->clean |= DVLAN_CLEAN_VLAN;
  335. os_snprintf(vlan_ifname, sizeof(vlan_ifname),
  336. "vlan%d", vlan->vlan_id);
  337. if (!br_addif(br_name, vlan_ifname))
  338. vlan->clean |= DVLAN_CLEAN_VLAN_PORT;
  339. ifconfig_up(vlan_ifname);
  340. }
  341. if (!br_addif(br_name, ifname))
  342. vlan->clean |= DVLAN_CLEAN_WLAN_PORT;
  343. ifconfig_up(ifname);
  344. break;
  345. }
  346. vlan = vlan->next;
  347. }
  348. }
  349. static void vlan_dellink(char *ifname, struct hostapd_data *hapd)
  350. {
  351. char vlan_ifname[IFNAMSIZ];
  352. char br_name[IFNAMSIZ];
  353. struct hostapd_vlan *first, *prev, *vlan = hapd->conf->vlan;
  354. char *tagged_interface = hapd->conf->ssid.vlan_tagged_interface;
  355. int numports;
  356. first = prev = vlan;
  357. while (vlan) {
  358. if (os_strcmp(ifname, vlan->ifname) == 0) {
  359. os_snprintf(br_name, sizeof(br_name), "brvlan%d",
  360. vlan->vlan_id);
  361. if (tagged_interface) {
  362. os_snprintf(vlan_ifname, sizeof(vlan_ifname),
  363. "vlan%d", vlan->vlan_id);
  364. numports = br_getnumports(br_name);
  365. if (numports == 1) {
  366. br_delif(br_name, vlan_ifname);
  367. vlan_rem(vlan_ifname);
  368. ifconfig_down(br_name);
  369. br_delbr(br_name);
  370. }
  371. }
  372. if (vlan == first) {
  373. hapd->conf->vlan = vlan->next;
  374. } else {
  375. prev->next = vlan->next;
  376. }
  377. os_free(vlan);
  378. break;
  379. }
  380. prev = vlan;
  381. vlan = vlan->next;
  382. }
  383. }
  384. static void
  385. vlan_read_ifnames(struct nlmsghdr *h, size_t len, int del,
  386. struct hostapd_data *hapd)
  387. {
  388. struct ifinfomsg *ifi;
  389. int attrlen, nlmsg_len, rta_len;
  390. struct rtattr *attr;
  391. if (len < sizeof(*ifi))
  392. return;
  393. ifi = NLMSG_DATA(h);
  394. nlmsg_len = NLMSG_ALIGN(sizeof(struct ifinfomsg));
  395. attrlen = h->nlmsg_len - nlmsg_len;
  396. if (attrlen < 0)
  397. return;
  398. attr = (struct rtattr *) (((char *) ifi) + nlmsg_len);
  399. rta_len = RTA_ALIGN(sizeof(struct rtattr));
  400. while (RTA_OK(attr, attrlen)) {
  401. char ifname[IFNAMSIZ + 1];
  402. if (attr->rta_type == IFLA_IFNAME) {
  403. int n = attr->rta_len - rta_len;
  404. if (n < 0)
  405. break;
  406. os_memset(ifname, 0, sizeof(ifname));
  407. if ((size_t) n > sizeof(ifname))
  408. n = sizeof(ifname);
  409. os_memcpy(ifname, ((char *) attr) + rta_len, n);
  410. if (del)
  411. vlan_dellink(ifname, hapd);
  412. else
  413. vlan_newlink(ifname, hapd);
  414. }
  415. attr = RTA_NEXT(attr, attrlen);
  416. }
  417. }
  418. static void vlan_event_receive(int sock, void *eloop_ctx, void *sock_ctx)
  419. {
  420. char buf[8192];
  421. int left;
  422. struct sockaddr_nl from;
  423. socklen_t fromlen;
  424. struct nlmsghdr *h;
  425. struct hostapd_data *hapd = eloop_ctx;
  426. fromlen = sizeof(from);
  427. left = recvfrom(sock, buf, sizeof(buf), MSG_DONTWAIT,
  428. (struct sockaddr *) &from, &fromlen);
  429. if (left < 0) {
  430. if (errno != EINTR && errno != EAGAIN)
  431. perror("recvfrom(netlink)");
  432. return;
  433. }
  434. h = (struct nlmsghdr *) buf;
  435. while (left >= (int) sizeof(*h)) {
  436. int len, plen;
  437. len = h->nlmsg_len;
  438. plen = len - sizeof(*h);
  439. if (len > left || plen < 0) {
  440. printf("Malformed netlink message: "
  441. "len=%d left=%d plen=%d", len, left, plen);
  442. break;
  443. }
  444. switch (h->nlmsg_type) {
  445. case RTM_NEWLINK:
  446. vlan_read_ifnames(h, plen, 0, hapd);
  447. break;
  448. case RTM_DELLINK:
  449. vlan_read_ifnames(h, plen, 1, hapd);
  450. break;
  451. }
  452. len = NLMSG_ALIGN(len);
  453. left -= len;
  454. h = (struct nlmsghdr *) ((char *) h + len);
  455. }
  456. if (left > 0) {
  457. printf("%d extra bytes in the end of netlink message",
  458. left);
  459. }
  460. }
  461. static struct full_dynamic_vlan *
  462. full_dynamic_vlan_init(struct hostapd_data *hapd)
  463. {
  464. struct sockaddr_nl local;
  465. struct full_dynamic_vlan *priv;
  466. priv = os_zalloc(sizeof(*priv));
  467. if (priv == NULL)
  468. return NULL;
  469. vlan_set_name_type(VLAN_NAME_TYPE_PLUS_VID_NO_PAD);
  470. priv->s = socket(PF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
  471. if (priv->s < 0) {
  472. perror("socket(PF_NETLINK,SOCK_RAW,NETLINK_ROUTE)");
  473. os_free(priv);
  474. return NULL;
  475. }
  476. os_memset(&local, 0, sizeof(local));
  477. local.nl_family = AF_NETLINK;
  478. local.nl_groups = RTMGRP_LINK;
  479. if (bind(priv->s, (struct sockaddr *) &local, sizeof(local)) < 0) {
  480. perror("bind(netlink)");
  481. close(priv->s);
  482. os_free(priv);
  483. return NULL;
  484. }
  485. if (eloop_register_read_sock(priv->s, vlan_event_receive, hapd, NULL))
  486. {
  487. close(priv->s);
  488. os_free(priv);
  489. return NULL;
  490. }
  491. return priv;
  492. }
  493. static void full_dynamic_vlan_deinit(struct full_dynamic_vlan *priv)
  494. {
  495. if (priv == NULL)
  496. return;
  497. eloop_unregister_read_sock(priv->s);
  498. close(priv->s);
  499. os_free(priv);
  500. }
  501. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  502. int vlan_setup_encryption_dyn(struct hostapd_data *hapd,
  503. struct hostapd_ssid *mssid, const char *dyn_vlan)
  504. {
  505. int i;
  506. if (dyn_vlan == NULL)
  507. return 0;
  508. /* Static WEP keys are set here; IEEE 802.1X and WPA uses their own
  509. * functions for setting up dynamic broadcast keys. */
  510. for (i = 0; i < 4; i++) {
  511. if (mssid->wep.key[i] &&
  512. hostapd_set_key(dyn_vlan, hapd, WPA_ALG_WEP, NULL, i,
  513. i == mssid->wep.idx, NULL, 0,
  514. mssid->wep.key[i], mssid->wep.len[i])) {
  515. printf("VLAN: Could not set WEP encryption for "
  516. "dynamic VLAN.\n");
  517. return -1;
  518. }
  519. }
  520. return 0;
  521. }
  522. static int vlan_dynamic_add(struct hostapd_data *hapd,
  523. struct hostapd_vlan *vlan)
  524. {
  525. while (vlan) {
  526. if (vlan->vlan_id != VLAN_ID_WILDCARD &&
  527. hostapd_if_add(hapd, HOSTAPD_IF_VLAN, vlan->ifname, NULL))
  528. {
  529. if (errno != EEXIST) {
  530. printf("Could not add VLAN iface: %s: %s\n",
  531. vlan->ifname, strerror(errno));
  532. return -1;
  533. }
  534. }
  535. vlan = vlan->next;
  536. }
  537. return 0;
  538. }
  539. static void vlan_dynamic_remove(struct hostapd_data *hapd,
  540. struct hostapd_vlan *vlan)
  541. {
  542. struct hostapd_vlan *next;
  543. while (vlan) {
  544. next = vlan->next;
  545. if (vlan->vlan_id != VLAN_ID_WILDCARD &&
  546. hostapd_if_remove(hapd, HOSTAPD_IF_VLAN, vlan->ifname,
  547. NULL)) {
  548. printf("Could not remove VLAN iface: %s: %s\n",
  549. vlan->ifname, strerror(errno));
  550. }
  551. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  552. if (vlan->clean)
  553. vlan_dellink(vlan->ifname, hapd);
  554. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  555. vlan = next;
  556. }
  557. }
  558. int vlan_init(struct hostapd_data *hapd)
  559. {
  560. if (vlan_dynamic_add(hapd, hapd->conf->vlan))
  561. return -1;
  562. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  563. hapd->full_dynamic_vlan = full_dynamic_vlan_init(hapd);
  564. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  565. return 0;
  566. }
  567. void vlan_deinit(struct hostapd_data *hapd)
  568. {
  569. vlan_dynamic_remove(hapd, hapd->conf->vlan);
  570. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  571. full_dynamic_vlan_deinit(hapd->full_dynamic_vlan);
  572. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  573. }
  574. int vlan_reconfig(struct hostapd_data *hapd, struct hostapd_config *oldconf,
  575. struct hostapd_bss_config *oldbss)
  576. {
  577. vlan_dynamic_remove(hapd, oldbss->vlan);
  578. if (vlan_dynamic_add(hapd, hapd->conf->vlan))
  579. return -1;
  580. return 0;
  581. }
  582. struct hostapd_vlan * vlan_add_dynamic(struct hostapd_data *hapd,
  583. struct hostapd_vlan *vlan,
  584. int vlan_id)
  585. {
  586. struct hostapd_vlan *n;
  587. char *ifname, *pos;
  588. if (vlan == NULL || vlan_id <= 0 || vlan_id > MAX_VLAN_ID ||
  589. vlan->vlan_id != VLAN_ID_WILDCARD)
  590. return NULL;
  591. ifname = os_strdup(vlan->ifname);
  592. if (ifname == NULL)
  593. return NULL;
  594. pos = os_strchr(ifname, '#');
  595. if (pos == NULL) {
  596. os_free(ifname);
  597. return NULL;
  598. }
  599. *pos++ = '\0';
  600. n = os_zalloc(sizeof(*n));
  601. if (n == NULL) {
  602. os_free(ifname);
  603. return NULL;
  604. }
  605. n->vlan_id = vlan_id;
  606. n->dynamic_vlan = 1;
  607. os_snprintf(n->ifname, sizeof(n->ifname), "%s%d%s", ifname, vlan_id,
  608. pos);
  609. os_free(ifname);
  610. if (hostapd_if_add(hapd, HOSTAPD_IF_VLAN, n->ifname, NULL)) {
  611. os_free(n);
  612. return NULL;
  613. }
  614. n->next = hapd->conf->vlan;
  615. hapd->conf->vlan = n;
  616. return n;
  617. }
  618. int vlan_remove_dynamic(struct hostapd_data *hapd, int vlan_id)
  619. {
  620. struct hostapd_vlan *vlan;
  621. if (vlan_id <= 0 || vlan_id > MAX_VLAN_ID)
  622. return 1;
  623. vlan = hapd->conf->vlan;
  624. while (vlan) {
  625. if (vlan->vlan_id == vlan_id && vlan->dynamic_vlan > 0) {
  626. vlan->dynamic_vlan--;
  627. break;
  628. }
  629. vlan = vlan->next;
  630. }
  631. if (vlan == NULL)
  632. return 1;
  633. if (vlan->dynamic_vlan == 0)
  634. hostapd_if_remove(hapd, HOSTAPD_IF_VLAN, vlan->ifname, NULL);
  635. return 0;
  636. }