blob: 8548c8c3b14375bcf424886b4af32566460eb24a [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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Manuel Novoa III cad53642003-03-19 09:13:01 +00008 */
Denys Vlasenko47367e12016-11-23 09:05:14 +01009//config:config VCONFIG
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020010//config: bool "vconfig (2.5 kb)"
Denys Vlasenko47367e12016-11-23 09:05:14 +010011//config: default y
12//config: select PLATFORM_LINUX
13//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020014//config: Creates, removes, and configures VLAN interfaces
Denys Vlasenko47367e12016-11-23 09:05:14 +010015
Denys Vlasenkoa4d4ab02017-08-09 18:52:19 +020016//applet:IF_VCONFIG(APPLET_NOEXEC(vconfig, vconfig, BB_DIR_SBIN, BB_SUID_DROP, vconfig))
Denys Vlasenko47367e12016-11-23 09:05:14 +010017
18//kbuild:lib-$(CONFIG_VCONFIG) += vconfig.o
19
Pere Orga5bc8c002011-04-11 03:29:49 +020020//usage:#define vconfig_trivial_usage
21//usage: "COMMAND [OPTIONS]"
22//usage:#define vconfig_full_usage "\n\n"
23//usage: "Create and remove virtual ethernet devices\n"
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +010024//usage: "\n add IFACE VLAN_ID"
25//usage: "\n rem VLAN_NAME"
26//usage: "\n set_flag IFACE 0|1 VLAN_QOS"
27//usage: "\n set_egress_map VLAN_NAME SKB_PRIO VLAN_QOS"
28//usage: "\n set_ingress_map VLAN_NAME SKB_PRIO VLAN_QOS"
29//usage: "\n set_name_type NAME_TYPE"
Pere Orga5bc8c002011-04-11 03:29:49 +020030
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000031#include "libbb.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +000032#include <net/if.h>
Eric Andersen853c4942003-01-23 05:59:32 +000033
Denys Vlasenko0c4dbd42017-09-18 16:28:43 +020034/* BB_AUDIT SUSv3 N/A */
35
Eric Andersenb8d2cd42003-12-19 10:40:56 +000036/* Stuff from linux/if_vlan.h, kernel version 2.4.23 */
37enum vlan_ioctl_cmds {
38 ADD_VLAN_CMD,
39 DEL_VLAN_CMD,
40 SET_VLAN_INGRESS_PRIORITY_CMD,
41 SET_VLAN_EGRESS_PRIORITY_CMD,
42 GET_VLAN_INGRESS_PRIORITY_CMD,
43 GET_VLAN_EGRESS_PRIORITY_CMD,
44 SET_VLAN_NAME_TYPE_CMD,
45 SET_VLAN_FLAG_CMD
46};
47enum vlan_name_types {
48 VLAN_NAME_TYPE_PLUS_VID, /* Name will look like: vlan0005 */
49 VLAN_NAME_TYPE_RAW_PLUS_VID, /* name will look like: eth1.0005 */
50 VLAN_NAME_TYPE_PLUS_VID_NO_PAD, /* Name will look like: vlan5 */
51 VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD, /* Name will look like: eth0.5 */
52 VLAN_NAME_TYPE_HIGHEST
53};
54
55struct vlan_ioctl_args {
56 int cmd; /* Should be one of the vlan_ioctl_cmds enum above. */
57 char device1[24];
58
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000059 union {
Eric Andersenb8d2cd42003-12-19 10:40:56 +000060 char device2[24];
61 int VID;
62 unsigned int skb_priority;
63 unsigned int name_type;
64 unsigned int bind_type;
65 unsigned int flag; /* Matches vlan_dev_info flags */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000066 } u;
Eric Andersenb8d2cd42003-12-19 10:40:56 +000067
Eric Andersenc7bda1c2004-03-15 08:29:22 +000068 short vlan_qos;
Eric Andersenb8d2cd42003-12-19 10:40:56 +000069};
70
Denys Vlasenkofb132e42010-10-29 11:46:52 +020071#define VLAN_GROUP_ARRAY_LEN 4096
72#define SIOCSIFVLAN 0x8983 /* Set 802.1Q VLAN options */
Eric Andersen853c4942003-01-23 05:59:32 +000073
Denis Vlasenkoc5045fd2008-12-02 20:38:36 +000074/* On entry, table points to the length of the current string
75 * plus NUL terminator plus data length for the subsequent entry.
76 * The return value is the last data entry for the matching string. */
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +000077static const char *xfind_str(const char *table, const char *str)
78{
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +010079 while (strcasecmp(str, table + 1) != 0) {
80 if (!table[0])
Manuel Novoa III cad53642003-03-19 09:13:01 +000081 bb_show_usage();
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +010082 table += table[0];
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +000083 }
84 return table - 1;
85}
Eric Andersen853c4942003-01-23 05:59:32 +000086
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000087static const char cmds[] ALIGN1 = {
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +000088 4, ADD_VLAN_CMD, 7,
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +010089 'a','d','d',0,
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +000090 3, DEL_VLAN_CMD, 7,
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +010091 'r','e','m',0,
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +000092 3, SET_VLAN_NAME_TYPE_CMD, 17,
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +010093 's','e','t','_','n','a','m','e','_','t','y','p','e',0,
Denis Vlasenko3038ac92006-09-30 19:37:25 +000094 5, SET_VLAN_FLAG_CMD, 12,
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +010095 's','e','t','_','f','l','a','g',0,
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +000096 5, SET_VLAN_EGRESS_PRIORITY_CMD, 18,
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +010097 's','e','t','_','e','g','r','e','s','s','_','m','a','p',0,
98 5, SET_VLAN_INGRESS_PRIORITY_CMD, 0,
99 's','e','t','_','i','n','g','r','e','s','s','_','m','a','p',0,
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000100};
Eric Andersen853c4942003-01-23 05:59:32 +0000101
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000102static const char name_types[] ALIGN1 = {
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000103 VLAN_NAME_TYPE_PLUS_VID, 16,
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +0100104 'V','L','A','N','_','P','L','U','S','_','V','I','D',0,
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000105 VLAN_NAME_TYPE_PLUS_VID_NO_PAD, 22,
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +0100106 'V','L','A','N','_','P','L','U','S','_','V','I','D','_','N','O','_','P','A','D',0,
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000107 VLAN_NAME_TYPE_RAW_PLUS_VID, 15,
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +0100108 'D','E','V','_','P','L','U','S','_','V','I','D',0,
109 VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD, 0,
110 'D','E','V','_','P','L','U','S','_','V','I','D','_','N','O','_','P','A','D',0,
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000111};
Eric Andersen853c4942003-01-23 05:59:32 +0000112
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000113int vconfig_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000114int vconfig_main(int argc, char **argv)
115{
116 struct vlan_ioctl_args ifr;
117 const char *p;
118 int fd;
Eric Andersen853c4942003-01-23 05:59:32 +0000119
Denis Vlasenkoc5045fd2008-12-02 20:38:36 +0000120 memset(&ifr, 0, sizeof(ifr));
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000121
122 ++argv;
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +0100123 if (!argv[0])
Manuel Novoa III cad53642003-03-19 09:13:01 +0000124 bb_show_usage();
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +0100125 p = xfind_str(cmds + 2, argv[0]);
126 ifr.cmd = *p;
127 if (argc != p[-1])
128 bb_show_usage();
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000129
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +0100130 if (ifr.cmd == SET_VLAN_NAME_TYPE_CMD) {
131 /* set_name_type */
132 ifr.u.name_type = *xfind_str(name_types + 1, argv[1]);
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000133 } else {
Denis Vlasenko360d9662008-12-02 18:18:50 +0000134 strncpy_IFNAMSIZ(ifr.device1, argv[1]);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000135 p = argv[2];
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000136
137 /* I suppose one could try to combine some of the function calls below,
138 * since ifr.u.flag, ifr.u.VID, and ifr.u.skb_priority are all same-sized
139 * (unsigned) int members of a unions. But because of the range checking,
Denys Vlasenko10ad6222017-04-17 16:13:32 +0200140 * doing so wouldn't save that much space and would also make maintenance
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +0100141 * more of a pain.
142 */
143 if (ifr.cmd == SET_VLAN_FLAG_CMD) {
144 /* set_flag */
145 ifr.u.flag = xatou_range(p, 0, 1);
Denis Vlasenko3038ac92006-09-30 19:37:25 +0000146 /* DM: in order to set reorder header, qos must be set */
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +0100147 ifr.vlan_qos = xatou_range(argv[3], 0, 7);
148 } else if (ifr.cmd == ADD_VLAN_CMD) {
149 /* add */
150 ifr.u.VID = xatou_range(p, 0, VLAN_GROUP_ARRAY_LEN - 1);
151 } else if (ifr.cmd != DEL_VLAN_CMD) {
152 /* set_{egress|ingress}_map */
Denis Vlasenko13858992006-10-08 12:49:22 +0000153 ifr.u.skb_priority = xatou(p);
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +0100154 ifr.vlan_qos = xatou_range(argv[3], 0, 7);
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000155 }
156 }
157
Rob Landleyd921b2e2006-08-03 15:41:12 +0000158 fd = xsocket(AF_INET, SOCK_STREAM, 0);
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000159 ioctl_or_perror_and_die(fd, SIOCSIFVLAN, &ifr,
Denys Vlasenkofdd0b3b2012-01-16 04:00:37 +0100160 "ioctl error for %s", argv[0]);
Glenn L McGrathb4f3d7f2003-02-08 23:11:19 +0000161
162 return 0;
163}