Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1 | /* 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 Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | /* BB_AUDIT SUSv3 N/A */ |
| 11 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 12 | //usage:#define vconfig_trivial_usage |
| 13 | //usage: "COMMAND [OPTIONS]" |
| 14 | //usage:#define vconfig_full_usage "\n\n" |
| 15 | //usage: "Create and remove virtual ethernet devices\n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 16 | //usage: "\n add [interface-name] [vlan_id]" |
| 17 | //usage: "\n rem [vlan-name]" |
| 18 | //usage: "\n set_flag [interface-name] [flag-num] [0 | 1]" |
| 19 | //usage: "\n set_egress_map [vlan-name] [skb_priority] [vlan_qos]" |
| 20 | //usage: "\n set_ingress_map [vlan-name] [skb_priority] [vlan_qos]" |
| 21 | //usage: "\n set_name_type [name-type]" |
| 22 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 23 | #include "libbb.h" |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 24 | #include <net/if.h> |
Eric Andersen | 853c494 | 2003-01-23 05:59:32 +0000 | [diff] [blame] | 25 | |
Eric Andersen | b8d2cd4 | 2003-12-19 10:40:56 +0000 | [diff] [blame] | 26 | /* Stuff from linux/if_vlan.h, kernel version 2.4.23 */ |
| 27 | enum vlan_ioctl_cmds { |
| 28 | ADD_VLAN_CMD, |
| 29 | DEL_VLAN_CMD, |
| 30 | SET_VLAN_INGRESS_PRIORITY_CMD, |
| 31 | SET_VLAN_EGRESS_PRIORITY_CMD, |
| 32 | GET_VLAN_INGRESS_PRIORITY_CMD, |
| 33 | GET_VLAN_EGRESS_PRIORITY_CMD, |
| 34 | SET_VLAN_NAME_TYPE_CMD, |
| 35 | SET_VLAN_FLAG_CMD |
| 36 | }; |
| 37 | enum vlan_name_types { |
| 38 | VLAN_NAME_TYPE_PLUS_VID, /* Name will look like: vlan0005 */ |
| 39 | VLAN_NAME_TYPE_RAW_PLUS_VID, /* name will look like: eth1.0005 */ |
| 40 | VLAN_NAME_TYPE_PLUS_VID_NO_PAD, /* Name will look like: vlan5 */ |
| 41 | VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD, /* Name will look like: eth0.5 */ |
| 42 | VLAN_NAME_TYPE_HIGHEST |
| 43 | }; |
| 44 | |
| 45 | struct vlan_ioctl_args { |
| 46 | int cmd; /* Should be one of the vlan_ioctl_cmds enum above. */ |
| 47 | char device1[24]; |
| 48 | |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 49 | union { |
Eric Andersen | b8d2cd4 | 2003-12-19 10:40:56 +0000 | [diff] [blame] | 50 | char device2[24]; |
| 51 | int VID; |
| 52 | unsigned int skb_priority; |
| 53 | unsigned int name_type; |
| 54 | unsigned int bind_type; |
| 55 | unsigned int flag; /* Matches vlan_dev_info flags */ |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 56 | } u; |
Eric Andersen | b8d2cd4 | 2003-12-19 10:40:56 +0000 | [diff] [blame] | 57 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 58 | short vlan_qos; |
Eric Andersen | b8d2cd4 | 2003-12-19 10:40:56 +0000 | [diff] [blame] | 59 | }; |
| 60 | |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 61 | #define VLAN_GROUP_ARRAY_LEN 4096 |
| 62 | #define SIOCSIFVLAN 0x8983 /* Set 802.1Q VLAN options */ |
Eric Andersen | 853c494 | 2003-01-23 05:59:32 +0000 | [diff] [blame] | 63 | |
Denis Vlasenko | c5045fd | 2008-12-02 20:38:36 +0000 | [diff] [blame] | 64 | /* On entry, table points to the length of the current string |
| 65 | * plus NUL terminator plus data length for the subsequent entry. |
| 66 | * The return value is the last data entry for the matching string. */ |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 67 | static const char *xfind_str(const char *table, const char *str) |
| 68 | { |
| 69 | while (strcasecmp(str, table+1) != 0) { |
Denis Vlasenko | c5045fd | 2008-12-02 20:38:36 +0000 | [diff] [blame] | 70 | table += table[0]; |
| 71 | if (!*table) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 72 | bb_show_usage(); |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 73 | } |
| 74 | } |
| 75 | return table - 1; |
| 76 | } |
Eric Andersen | 853c494 | 2003-01-23 05:59:32 +0000 | [diff] [blame] | 77 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 78 | static const char cmds[] ALIGN1 = { |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 79 | 4, ADD_VLAN_CMD, 7, |
| 80 | 'a', 'd', 'd', 0, |
| 81 | 3, DEL_VLAN_CMD, 7, |
| 82 | 'r', 'e', 'm', 0, |
| 83 | 3, SET_VLAN_NAME_TYPE_CMD, 17, |
| 84 | 's', 'e', 't', '_', |
| 85 | 'n', 'a', 'm', 'e', '_', |
| 86 | 't', 'y', 'p', 'e', 0, |
Denis Vlasenko | 3038ac9 | 2006-09-30 19:37:25 +0000 | [diff] [blame] | 87 | 5, SET_VLAN_FLAG_CMD, 12, |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 88 | 's', 'e', 't', '_', |
| 89 | 'f', 'l', 'a', 'g', 0, |
| 90 | 5, SET_VLAN_EGRESS_PRIORITY_CMD, 18, |
| 91 | 's', 'e', 't', '_', |
| 92 | 'e', 'g', 'r', 'e', 's', 's', '_', |
| 93 | 'm', 'a', 'p', 0, |
| 94 | 5, SET_VLAN_INGRESS_PRIORITY_CMD, 16, |
| 95 | 's', 'e', 't', '_', |
| 96 | 'i', 'n', 'g', 'r', 'e', 's', 's', '_', |
| 97 | 'm', 'a', 'p', 0, |
| 98 | }; |
Eric Andersen | 853c494 | 2003-01-23 05:59:32 +0000 | [diff] [blame] | 99 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 100 | static const char name_types[] ALIGN1 = { |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 101 | VLAN_NAME_TYPE_PLUS_VID, 16, |
| 102 | 'V', 'L', 'A', 'N', |
| 103 | '_', 'P', 'L', 'U', 'S', '_', 'V', 'I', 'D', |
| 104 | 0, |
| 105 | VLAN_NAME_TYPE_PLUS_VID_NO_PAD, 22, |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 106 | 'V', 'L', 'A', 'N', |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 107 | '_', 'P', 'L', 'U', 'S', '_', 'V', 'I', 'D', |
| 108 | '_', 'N', 'O', '_', 'P', 'A', 'D', 0, |
| 109 | VLAN_NAME_TYPE_RAW_PLUS_VID, 15, |
| 110 | 'D', 'E', 'V', |
| 111 | '_', 'P', 'L', 'U', 'S', '_', 'V', 'I', 'D', |
| 112 | 0, |
| 113 | VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD, 20, |
| 114 | 'D', 'E', 'V', |
| 115 | '_', 'P', 'L', 'U', 'S', '_', 'V', 'I', 'D', |
| 116 | '_', 'N', 'O', '_', 'P', 'A', 'D', 0, |
| 117 | }; |
Eric Andersen | 853c494 | 2003-01-23 05:59:32 +0000 | [diff] [blame] | 118 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 119 | static const char conf_file_name[] ALIGN1 = "/proc/net/vlan/config"; |
Eric Andersen | 853c494 | 2003-01-23 05:59:32 +0000 | [diff] [blame] | 120 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 121 | int vconfig_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 122 | int vconfig_main(int argc, char **argv) |
| 123 | { |
| 124 | struct vlan_ioctl_args ifr; |
| 125 | const char *p; |
| 126 | int fd; |
Eric Andersen | 853c494 | 2003-01-23 05:59:32 +0000 | [diff] [blame] | 127 | |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 128 | if (argc < 3) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 129 | bb_show_usage(); |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 130 | } |
Eric Andersen | 853c494 | 2003-01-23 05:59:32 +0000 | [diff] [blame] | 131 | |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 132 | /* Don't bother closing the filedes. It will be closed on cleanup. */ |
Bernhard Reutner-Fischer | c2cb0f3 | 2006-04-13 12:45:04 +0000 | [diff] [blame] | 133 | /* Will die if 802.1q is not present */ |
Bernhard Reutner-Fischer | 64d7e93 | 2006-09-11 16:01:40 +0000 | [diff] [blame] | 134 | xopen(conf_file_name, O_RDONLY); |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 135 | |
Denis Vlasenko | c5045fd | 2008-12-02 20:38:36 +0000 | [diff] [blame] | 136 | memset(&ifr, 0, sizeof(ifr)); |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 137 | |
| 138 | ++argv; |
| 139 | p = xfind_str(cmds+2, *argv); |
| 140 | ifr.cmd = *p; |
| 141 | if (argc != p[-1]) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 142 | bb_show_usage(); |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | if (ifr.cmd == SET_VLAN_NAME_TYPE_CMD) { /* set_name_type */ |
| 146 | ifr.u.name_type = *xfind_str(name_types+1, argv[1]); |
| 147 | } else { |
Denis Vlasenko | 360d966 | 2008-12-02 18:18:50 +0000 | [diff] [blame] | 148 | strncpy_IFNAMSIZ(ifr.device1, argv[1]); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 149 | p = argv[2]; |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 150 | |
| 151 | /* I suppose one could try to combine some of the function calls below, |
| 152 | * since ifr.u.flag, ifr.u.VID, and ifr.u.skb_priority are all same-sized |
| 153 | * (unsigned) int members of a unions. But because of the range checking, |
| 154 | * doing so wouldn't save that much space and would also make maintainence |
| 155 | * more of a pain. */ |
| 156 | if (ifr.cmd == SET_VLAN_FLAG_CMD) { /* set_flag */ |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 157 | ifr.u.flag = xatoul_range(p, 0, 1); |
Denis Vlasenko | 3038ac9 | 2006-09-30 19:37:25 +0000 | [diff] [blame] | 158 | /* DM: in order to set reorder header, qos must be set */ |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 159 | ifr.vlan_qos = xatoul_range(argv[3], 0, 7); |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 160 | } else if (ifr.cmd == ADD_VLAN_CMD) { /* add */ |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 161 | ifr.u.VID = xatoul_range(p, 0, VLAN_GROUP_ARRAY_LEN-1); |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 162 | } else if (ifr.cmd != DEL_VLAN_CMD) { /* set_{egress|ingress}_map */ |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 163 | ifr.u.skb_priority = xatou(p); |
| 164 | ifr.vlan_qos = xatoul_range(argv[3], 0, 7); |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 165 | } |
| 166 | } |
| 167 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 168 | fd = xsocket(AF_INET, SOCK_STREAM, 0); |
Denis Vlasenko | fb79a2e | 2007-07-14 22:07:14 +0000 | [diff] [blame] | 169 | ioctl_or_perror_and_die(fd, SIOCSIFVLAN, &ifr, |
| 170 | "ioctl error for %s", *argv); |
Glenn L McGrath | b4f3d7f | 2003-02-08 23:11:19 +0000 | [diff] [blame] | 171 | |
| 172 | return 0; |
| 173 | } |