blob: efbb5a1dc6c9c0f93eeb038c4c0b760761b6e280 [file] [log] [blame]
Manuel Novoa III cad53642003-03-19 09:13:01 +00001/* vi: set sw=4 ts=4: */
2/*
3 * vconfig implementation for busybox
4 *
5 * Copyright (C) 2001 Manuel Novoa III <mjn3@codepoet.org>
6 *
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Manuel Novoa III cad53642003-03-19 09:13:01 +00008 */
9
10/* BB_AUDIT SUSv3 N/A */
11
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +000012#include "busybox.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +000013#include <net/if.h>
Eric Andersen853c4942003-01-23 05:59:32 +000014
Eric Andersenb8d2cd42003-12-19 10:40:56 +000015/* Stuff from linux/if_vlan.h, kernel version 2.4.23 */
16enum vlan_ioctl_cmds {
17 ADD_VLAN_CMD,
18 DEL_VLAN_CMD,
19 SET_VLAN_INGRESS_PRIORITY_CMD,
20 SET_VLAN_EGRESS_PRIORITY_CMD,
21 GET_VLAN_INGRESS_PRIORITY_CMD,
22 GET_VLAN_EGRESS_PRIORITY_CMD,
23 SET_VLAN_NAME_TYPE_CMD,
24 SET_VLAN_FLAG_CMD
25};
26enum vlan_name_types {
27 VLAN_NAME_TYPE_PLUS_VID, /* Name will look like: vlan0005 */
28 VLAN_NAME_TYPE_RAW_PLUS_VID, /* name will look like: eth1.0005 */
29 VLAN_NAME_TYPE_PLUS_VID_NO_PAD, /* Name will look like: vlan5 */
30 VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD, /* Name will look like: eth0.5 */
31 VLAN_NAME_TYPE_HIGHEST
32};
33
34struct vlan_ioctl_args {
35 int cmd; /* Should be one of the vlan_ioctl_cmds enum above. */
36 char device1[24];
37
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000038 union {
Eric Andersenb8d2cd42003-12-19 10:40:56 +000039 char device2[24];
40 int VID;
41 unsigned int skb_priority;
42 unsigned int name_type;
43 unsigned int bind_type;
44 unsigned int flag; /* Matches vlan_dev_info flags */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000045 } u;
Eric Andersenb8d2cd42003-12-19 10:40:56 +000046
Eric Andersenc7bda1c2004-03-15 08:29:22 +000047 short vlan_qos;
Eric Andersenb8d2cd42003-12-19 10:40:56 +000048};
49
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +000050#define VLAN_GROUP_ARRAY_LEN 4096
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000051#define SIOCSIFVLAN 0x8983 /* Set 802.1Q VLAN options */
Eric Andersen853c4942003-01-23 05:59:32 +000052
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +000053/* On entry, table points to the length of the current string plus
Manuel Novoa III cad53642003-03-19 09:13:01 +000054 * nul terminator plus data length for the subsequent entry. The
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +000055 * return value is the last data entry for the matching string. */
56static const char *xfind_str(const char *table, const char *str)
57{
58 while (strcasecmp(str, table+1) != 0) {
59 if (!*(table += table[0])) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000060 bb_show_usage();
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +000061 }
62 }
63 return table - 1;
64}
Eric Andersen853c4942003-01-23 05:59:32 +000065
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +000066static const char cmds[] = {
67 4, ADD_VLAN_CMD, 7,
68 'a', 'd', 'd', 0,
69 3, DEL_VLAN_CMD, 7,
70 'r', 'e', 'm', 0,
71 3, SET_VLAN_NAME_TYPE_CMD, 17,
72 's', 'e', 't', '_',
73 'n', 'a', 'm', 'e', '_',
74 't', 'y', 'p', 'e', 0,
75 4, SET_VLAN_FLAG_CMD, 12,
76 's', 'e', 't', '_',
77 'f', 'l', 'a', 'g', 0,
78 5, SET_VLAN_EGRESS_PRIORITY_CMD, 18,
79 's', 'e', 't', '_',
80 'e', 'g', 'r', 'e', 's', 's', '_',
81 'm', 'a', 'p', 0,
82 5, SET_VLAN_INGRESS_PRIORITY_CMD, 16,
83 's', 'e', 't', '_',
84 'i', 'n', 'g', 'r', 'e', 's', 's', '_',
85 'm', 'a', 'p', 0,
86};
Eric Andersen853c4942003-01-23 05:59:32 +000087
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +000088static const char name_types[] = {
89 VLAN_NAME_TYPE_PLUS_VID, 16,
90 'V', 'L', 'A', 'N',
91 '_', 'P', 'L', 'U', 'S', '_', 'V', 'I', 'D',
92 0,
93 VLAN_NAME_TYPE_PLUS_VID_NO_PAD, 22,
Eric Andersenc7bda1c2004-03-15 08:29:22 +000094 'V', 'L', 'A', 'N',
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +000095 '_', 'P', 'L', 'U', 'S', '_', 'V', 'I', 'D',
96 '_', 'N', 'O', '_', 'P', 'A', 'D', 0,
97 VLAN_NAME_TYPE_RAW_PLUS_VID, 15,
98 'D', 'E', 'V',
99 '_', 'P', 'L', 'U', 'S', '_', 'V', 'I', 'D',
100 0,
101 VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD, 20,
102 'D', 'E', 'V',
103 '_', 'P', 'L', 'U', 'S', '_', 'V', 'I', 'D',
104 '_', 'N', 'O', '_', 'P', 'A', 'D', 0,
105};
Eric Andersen853c4942003-01-23 05:59:32 +0000106
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000107static const char conf_file_name[] = "/proc/net/vlan/config";
Eric Andersen853c4942003-01-23 05:59:32 +0000108
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000109int vconfig_main(int argc, char **argv)
110{
111 struct vlan_ioctl_args ifr;
112 const char *p;
113 int fd;
Eric Andersen853c4942003-01-23 05:59:32 +0000114
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000115 if (argc < 3) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000116 bb_show_usage();
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000117 }
Eric Andersen853c4942003-01-23 05:59:32 +0000118
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000119 /* Don't bother closing the filedes. It will be closed on cleanup. */
Bernhard Reutner-Fischerc2cb0f32006-04-13 12:45:04 +0000120 /* Will die if 802.1q is not present */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000121 xopen3(conf_file_name, O_RDONLY, 0);
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000122
123 memset(&ifr, 0, sizeof(struct vlan_ioctl_args));
124
125 ++argv;
126 p = xfind_str(cmds+2, *argv);
127 ifr.cmd = *p;
128 if (argc != p[-1]) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000129 bb_show_usage();
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000130 }
131
132 if (ifr.cmd == SET_VLAN_NAME_TYPE_CMD) { /* set_name_type */
133 ifr.u.name_type = *xfind_str(name_types+1, argv[1]);
134 } else {
135 if (strlen(argv[1]) >= IF_NAMESIZE) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000136 bb_error_msg_and_die("if_name >= %d chars", IF_NAMESIZE);
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000137 }
138 strcpy(ifr.device1, argv[1]);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000139 p = argv[2];
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000140
141 /* I suppose one could try to combine some of the function calls below,
142 * since ifr.u.flag, ifr.u.VID, and ifr.u.skb_priority are all same-sized
143 * (unsigned) int members of a unions. But because of the range checking,
144 * doing so wouldn't save that much space and would also make maintainence
145 * more of a pain. */
146 if (ifr.cmd == SET_VLAN_FLAG_CMD) { /* set_flag */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000147 ifr.u.flag = bb_xgetularg10_bnd(p, 0, 1);
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000148 } else if (ifr.cmd == ADD_VLAN_CMD) { /* add */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000149 ifr.u.VID = bb_xgetularg10_bnd(p, 0, VLAN_GROUP_ARRAY_LEN-1);
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000150 } else if (ifr.cmd != DEL_VLAN_CMD) { /* set_{egress|ingress}_map */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000151 ifr.u.skb_priority = bb_xgetularg10_bnd(p, 0, ULONG_MAX);
152 ifr.vlan_qos = bb_xgetularg10_bnd(argv[3], 0, 7);
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000153 }
154 }
155
Rob Landleyd921b2e2006-08-03 15:41:12 +0000156 fd = xsocket(AF_INET, SOCK_STREAM, 0);
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +0000157 if (ioctl(fd, SIOCSIFVLAN, &ifr) < 0) {
158 bb_perror_msg_and_die("ioctl error for %s", *argv);
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000159 }
160
161 return 0;
162}
163