source: MondoRescue/branches/stable/mindi-busybox/networking/libiproute/iptunnel.c@ 1842

Last change on this file since 1842 was 1842, checked in by Bruno Cornec, 16 years ago
  • Fix lack of /etc/raidtab at restore rime in the right place
  • Adds support for nls_utf8 and pata_serverworks Patches from Dirk Husung (husung_at_tu-harburg.de)
  • Add efibootmgr to deplist.txt in order to be able to modify EFI menu at restore time on ia64
  • Usage of the new testver param of pb 0.8.12 to deliver 2.2.5 packages in a test dir.
  • Update pbcl files for upcoming delivery of 2.2.5
  • Fix an issue on parted output (K instead of KB) in parted2fdisk at restore time
  • Adds support for alb/aft types of bonding on Intel cards (Mark Pinkerton <Mark.Pinkerton_at_emageon.com>)
  • Escape variables in a perl script like mindi-bkphw
  • Better Proliant support at restore time now.
  • Fix a label bug where the variable label should also be re-initialized at each loop
  • start-nfs should NOT do exit => kernel panix as init exits
  • some other fixes for init on denymods
  • Adds boot options denymods (for udev) and forcemods (if not udev)
  • kqemu is denied. Probably should also be done for kvm stuff
  • Fix again the bug on modules link at root of the initrd. Hopefully for good.
  • Wait more around the USB CD emulated by iLO as it takes up to 5 seconds to come up
  • Attempt to fix udev support for RHEL 5.1
  • Better support for automatic iLO Virtual Media with udev
  • Some VMWare support improvements (however, it seems that VMWare support won't be possible anytime soon)
  • during init at restore time, copy all static evices availble for udev, as some distro implementation are no

t yet supported correctly for udev. Not very elegant, but should solve our current issues

  • Fedora 8 now supported as a build target for pb
  • svn.log removed.
  • dependencies reviewd for rhel_3
  • Attempt to fix the lack of modules loaded at restore time - especially fs device drivers
  • removes bkphw dir before potential creation
  • render mount command more vebose at restore time
  • Should fix #217
  • Increase BOOT_SIZE and EXTRA_SIZE to support features such as HW recovery
  • Handles udev.files files which could be symlinks
  • Improve udev support for distro with compressed modules (mdv e.g.)
  • Fix modules.dep copy
  • /sbin/pam_console_apply is needed by mdv udev conf
  • Adds support for nohw boot option to avoid re-setuping the HW conf
  • Improved support for Proliant on cpqacuxe
  • RstHW should be called after driver initialization
  • For debian/ubuntu mindi dpends on mindi-busybox
  • Update mindi-busybox pbcl for correct debian changelog generation, and up2date infos
  • Should fix #215
  • Fix #214 (Thanks to xdelaruelle)
  • Fix again svn.log not used anymore with new pb version
  • Adaptation of build process to upcoming 0.8.12 version of pb
  • Remove MONOTONIC clock to continue to support 2.4 kernels (RHEL 3 e.g. or ESX)
  • Attempt to solve ia64 BMC access through the serial port
  • parted2fdisk binary no more generated
  • do not require perl modules (strict.pm) at restore time
  • try to avoid modprobe messages at restore time
  • on ia64 now use the perl script parted2fdisk at retore time also
  • Also modprobe modules for udev after decompressing the additional ones
  • replace gzip -v9 by gzip -c9. Fix a bug at least on ia64
  • For all modules supported, create symlinks under the mountpoint and extract dev files as some are not automat ically created at the moment
  • Support /vmfs/volumes for ESX
  • Finally do not use vdf for ESX. Only creates issues.
  • Avoids continuing hw support if no product name found
  • Improves ia64 support for bootable image build
  • Fix a potential problem with ramdisk_blocksize param
  • MAKEDEV should also be included in deplist.txt
  • More fixes for udev support for Debian
  • Do not mount /boot if it's already mounted - avoids ESX hang
  • Fix NICs renumbering on Debian at least
  • Udev startup improvement to support iLO + NFS so modprobing all modules seems required as of now
  • Update to version 1.7.3 of busybox for pb
  • Load USB earlier in order to support KBD such as with iLO
  • Do busybox ldd first in order to create a potential /lib64 link correctly and then use it later in the image
  • Use variable DF in mindi to be able to support the ESX vdf
  • Fix mindi for Debian x86_64 where /lib64 is a link
  • Fix issue at restore time for ext2fs params not reused (Fix from Klaus Ade Johnstad <klaus_at_skolelinux.no>)
  • Do not copy udev files if they do not exist In udev case do not insert modules at all (udev should do it alone) May avoid the issue with rhel4.5 kernel ? To be tested
  • Update dependencies for rpm base build as well
  • And also perl is a debian/ubuntu dep
  • Better debian/ubuntu dependecies requirements (mtools)
  • Fix modes on mindi-bkphw (Thanks Phil Walker phil.walker_at_hp.com)
  • Complete rev [1771] for upper case RESTORE cli with syslinux as well
  • Update mindi-busybox to 1.7.3
  • Use RESTORE consistently across mondo to restore without interaction (report from Takeshi Shoji t.shoji_at_tripodw.jp)

(merge -r1769:1841 $SVN_M/branches/2.2.5)

File size: 13.8 KB
RevLine 
[1770]1/* vi: set sw=4 ts=4: */
[821]2/*
3 * iptunnel.c "ip tunnel"
4 *
5 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
6 *
7 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
8 *
9 *
10 * Changes:
11 *
12 * Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses
13 * Rani Assaf <rani@magic.metawire.com> 980930: do not allow key for ipip/sit
14 * Phil Karn <karn@ka9q.ampr.org> 990408: "pmtudisc" flag
15 */
16
17#include <netinet/ip.h>
18#include <net/if.h>
19#include <net/if_arp.h>
20#include <asm/types.h>
21#ifndef __constant_htons
22#define __constant_htons htons
23#endif
24#include <linux/if_tunnel.h>
25
[1770]26#include "ip_common.h" /* #include "libbb.h" is inside */
[821]27#include "rt_names.h"
28#include "utils.h"
29
30
[1770]31/* Dies on error */
[821]32static int do_ioctl_get_ifindex(char *dev)
33{
34 struct ifreq ifr;
35 int fd;
36
[1770]37 strncpy(ifr.ifr_name, dev, sizeof(ifr.ifr_name));
38 fd = xsocket(AF_INET, SOCK_DGRAM, 0);
39 xioctl(fd, SIOCGIFINDEX, &ifr);
[821]40 close(fd);
41 return ifr.ifr_ifindex;
42}
43
44static int do_ioctl_get_iftype(char *dev)
45{
46 struct ifreq ifr;
47 int fd;
[1770]48 int err;
[821]49
[1770]50 strncpy(ifr.ifr_name, dev, sizeof(ifr.ifr_name));
51 fd = xsocket(AF_INET, SOCK_DGRAM, 0);
52 err = ioctl_or_warn(fd, SIOCGIFHWADDR, &ifr);
[821]53 close(fd);
[1770]54 return err ? -1 : ifr.ifr_addr.sa_family;
[821]55}
56
57static char *do_ioctl_get_ifname(int idx)
58{
[1770]59 struct ifreq ifr;
[821]60 int fd;
[1770]61 int err;
[821]62
63 ifr.ifr_ifindex = idx;
[1770]64 fd = xsocket(AF_INET, SOCK_DGRAM, 0);
65 err = ioctl_or_warn(fd, SIOCGIFNAME, &ifr);
[821]66 close(fd);
[1770]67 return err ? NULL : xstrndup(ifr.ifr_name, sizeof(ifr.ifr_name));
[821]68}
69
[1770]70static int do_get_ioctl(const char *basedev, struct ip_tunnel_parm *p)
[821]71{
72 struct ifreq ifr;
73 int fd;
74 int err;
75
[1770]76 strncpy(ifr.ifr_name, basedev, sizeof(ifr.ifr_name));
[821]77 ifr.ifr_ifru.ifru_data = (void*)p;
[1770]78 fd = xsocket(AF_INET, SOCK_DGRAM, 0);
79 err = ioctl_or_warn(fd, SIOCGETTUNNEL, &ifr);
[821]80 close(fd);
81 return err;
82}
83
[1770]84/* Dies on error, otherwise returns 0 */
85static int do_add_ioctl(int cmd, const char *basedev, struct ip_tunnel_parm *p)
[821]86{
87 struct ifreq ifr;
88 int fd;
89
90 if (cmd == SIOCCHGTUNNEL && p->name[0]) {
[1770]91 strncpy(ifr.ifr_name, p->name, sizeof(ifr.ifr_name));
[821]92 } else {
[1770]93 strncpy(ifr.ifr_name, basedev, sizeof(ifr.ifr_name));
[821]94 }
95 ifr.ifr_ifru.ifru_data = (void*)p;
[1770]96 fd = xsocket(AF_INET, SOCK_DGRAM, 0);
97#if ENABLE_IOCTL_HEX2STR_ERROR
98 /* #define magic will turn ioctl# into string */
99 if (cmd == SIOCCHGTUNNEL)
100 xioctl(fd, SIOCCHGTUNNEL, &ifr);
101 else
102 xioctl(fd, SIOCADDTUNNEL, &ifr);
103#else
104 xioctl(fd, cmd, &ifr);
105#endif
[821]106 close(fd);
[1770]107 return 0;
[821]108}
109
[1770]110/* Dies on error, otherwise returns 0 */
111static int do_del_ioctl(const char *basedev, struct ip_tunnel_parm *p)
[821]112{
113 struct ifreq ifr;
114 int fd;
115
116 if (p->name[0]) {
[1770]117 strncpy(ifr.ifr_name, p->name, sizeof(ifr.ifr_name));
[821]118 } else {
[1770]119 strncpy(ifr.ifr_name, basedev, sizeof(ifr.ifr_name));
[821]120 }
121 ifr.ifr_ifru.ifru_data = (void*)p;
[1770]122 fd = xsocket(AF_INET, SOCK_DGRAM, 0);
123 xioctl(fd, SIOCDELTUNNEL, &ifr);
[821]124 close(fd);
[1770]125 return 0;
[821]126}
127
[1770]128/* Dies on error */
129static void parse_args(int argc, char **argv, int cmd, struct ip_tunnel_parm *p)
[821]130{
[1770]131 static const char keywords[] ALIGN1 =
132 "mode\0""ipip\0""ip/ip\0""gre\0""gre/ip\0""sit\0""ipv6/ip\0"
133 "key\0""ikey\0""okey\0""seq\0""iseq\0""oseq\0"
134 "csum\0""icsum\0""ocsum\0""nopmtudisc\0""pmtudisc\0"
135 "remote\0""any\0""local\0""dev\0"
136 "ttl\0""inherit\0""tos\0""dsfield\0"
137 "name\0";
138 enum {
139 ARG_mode, ARG_ipip, ARG_ip_ip, ARG_gre, ARG_gre_ip, ARG_sit, ARG_ip6_ip,
140 ARG_key, ARG_ikey, ARG_okey, ARG_seq, ARG_iseq, ARG_oseq,
141 ARG_csum, ARG_icsum, ARG_ocsum, ARG_nopmtudisc, ARG_pmtudisc,
142 ARG_remote, ARG_any, ARG_local, ARG_dev,
143 ARG_ttl, ARG_inherit, ARG_tos, ARG_dsfield,
144 ARG_name
145 };
[821]146 int count = 0;
147 char medium[IFNAMSIZ];
[1770]148 int key;
149
[821]150 memset(p, 0, sizeof(*p));
151 memset(&medium, 0, sizeof(medium));
152
153 p->iph.version = 4;
154 p->iph.ihl = 5;
155#ifndef IP_DF
[1770]156#define IP_DF 0x4000 /* Flag: "Don't Fragment" */
[821]157#endif
158 p->iph.frag_off = htons(IP_DF);
159
160 while (argc > 0) {
[1770]161 key = index_in_strings(keywords, *argv);
162 if (key == ARG_mode) {
[821]163 NEXT_ARG();
[1770]164 key = index_in_strings(keywords, *argv);
165 if (key == ARG_ipip ||
166 key == ARG_ip_ip) {
[821]167 if (p->iph.protocol && p->iph.protocol != IPPROTO_IPIP) {
[1770]168 bb_error_msg_and_die("you managed to ask for more than one tunnel mode");
[821]169 }
170 p->iph.protocol = IPPROTO_IPIP;
[1770]171 } else if (key == ARG_gre ||
172 key == ARG_gre_ip) {
[821]173 if (p->iph.protocol && p->iph.protocol != IPPROTO_GRE) {
[1770]174 bb_error_msg_and_die("you managed to ask for more than one tunnel mode");
[821]175 }
176 p->iph.protocol = IPPROTO_GRE;
[1770]177 } else if (key == ARG_sit ||
178 key == ARG_ip6_ip) {
[821]179 if (p->iph.protocol && p->iph.protocol != IPPROTO_IPV6) {
[1770]180 bb_error_msg_and_die("you managed to ask for more than one tunnel mode");
[821]181 }
182 p->iph.protocol = IPPROTO_IPV6;
183 } else {
[1770]184 bb_error_msg_and_die("cannot guess tunnel mode");
[821]185 }
[1770]186 } else if (key == ARG_key) {
[821]187 unsigned uval;
188 NEXT_ARG();
189 p->i_flags |= GRE_KEY;
190 p->o_flags |= GRE_KEY;
191 if (strchr(*argv, '.'))
192 p->i_key = p->o_key = get_addr32(*argv);
193 else {
194 if (get_unsigned(&uval, *argv, 0)<0) {
[1770]195 bb_error_msg_and_die("invalid value of \"key\"");
[821]196 }
197 p->i_key = p->o_key = htonl(uval);
198 }
[1770]199 } else if (key == ARG_ikey) {
[821]200 unsigned uval;
201 NEXT_ARG();
202 p->i_flags |= GRE_KEY;
203 if (strchr(*argv, '.'))
204 p->o_key = get_addr32(*argv);
205 else {
206 if (get_unsigned(&uval, *argv, 0)<0) {
[1770]207 bb_error_msg_and_die("invalid value of \"ikey\"");
[821]208 }
209 p->i_key = htonl(uval);
210 }
[1770]211 } else if (key == ARG_okey) {
[821]212 unsigned uval;
213 NEXT_ARG();
214 p->o_flags |= GRE_KEY;
215 if (strchr(*argv, '.'))
216 p->o_key = get_addr32(*argv);
217 else {
218 if (get_unsigned(&uval, *argv, 0)<0) {
[1770]219 bb_error_msg_and_die("invalid value of \"okey\"");
[821]220 }
221 p->o_key = htonl(uval);
222 }
[1770]223 } else if (key == ARG_seq) {
[821]224 p->i_flags |= GRE_SEQ;
225 p->o_flags |= GRE_SEQ;
[1770]226 } else if (key == ARG_iseq) {
[821]227 p->i_flags |= GRE_SEQ;
[1770]228 } else if (key == ARG_oseq) {
[821]229 p->o_flags |= GRE_SEQ;
[1770]230 } else if (key == ARG_csum) {
[821]231 p->i_flags |= GRE_CSUM;
232 p->o_flags |= GRE_CSUM;
[1770]233 } else if (key == ARG_icsum) {
[821]234 p->i_flags |= GRE_CSUM;
[1770]235 } else if (key == ARG_ocsum) {
[821]236 p->o_flags |= GRE_CSUM;
[1770]237 } else if (key == ARG_nopmtudisc) {
[821]238 p->iph.frag_off = 0;
[1770]239 } else if (key == ARG_pmtudisc) {
[821]240 p->iph.frag_off = htons(IP_DF);
[1770]241 } else if (key == ARG_remote) {
[821]242 NEXT_ARG();
[1770]243 key = index_in_strings(keywords, *argv);
[1842]244 if (key != ARG_any)
[821]245 p->iph.daddr = get_addr32(*argv);
[1770]246 } else if (key == ARG_local) {
[821]247 NEXT_ARG();
[1770]248 key = index_in_strings(keywords, *argv);
[1842]249 if (key != ARG_any)
[821]250 p->iph.saddr = get_addr32(*argv);
[1770]251 } else if (key == ARG_dev) {
[821]252 NEXT_ARG();
253 strncpy(medium, *argv, IFNAMSIZ-1);
[1770]254 } else if (key == ARG_ttl) {
[821]255 unsigned uval;
256 NEXT_ARG();
[1770]257 key = index_in_strings(keywords, *argv);
258 if (key != ARG_inherit) {
[821]259 if (get_unsigned(&uval, *argv, 0))
260 invarg(*argv, "TTL");
261 if (uval > 255)
262 invarg(*argv, "TTL must be <=255");
263 p->iph.ttl = uval;
264 }
[1770]265 } else if (key == ARG_tos ||
266 key == ARG_dsfield) {
267 uint32_t uval;
[821]268 NEXT_ARG();
[1770]269 key = index_in_strings(keywords, *argv);
270 if (key != ARG_inherit) {
[821]271 if (rtnl_dsfield_a2n(&uval, *argv))
272 invarg(*argv, "TOS");
273 p->iph.tos = uval;
274 } else
275 p->iph.tos = 1;
276 } else {
[1770]277 if (key == ARG_name) {
[821]278 NEXT_ARG();
279 }
280 if (p->name[0])
281 duparg2("name", *argv);
282 strncpy(p->name, *argv, IFNAMSIZ);
283 if (cmd == SIOCCHGTUNNEL && count == 0) {
284 struct ip_tunnel_parm old_p;
285 memset(&old_p, 0, sizeof(old_p));
286 if (do_get_ioctl(*argv, &old_p))
[1770]287 exit(1);
[821]288 *p = old_p;
289 }
290 }
291 count++;
[1770]292 argc--;
293 argv++;
[821]294 }
295
296 if (p->iph.protocol == 0) {
297 if (memcmp(p->name, "gre", 3) == 0)
298 p->iph.protocol = IPPROTO_GRE;
299 else if (memcmp(p->name, "ipip", 4) == 0)
300 p->iph.protocol = IPPROTO_IPIP;
301 else if (memcmp(p->name, "sit", 3) == 0)
302 p->iph.protocol = IPPROTO_IPV6;
303 }
304
305 if (p->iph.protocol == IPPROTO_IPIP || p->iph.protocol == IPPROTO_IPV6) {
306 if ((p->i_flags & GRE_KEY) || (p->o_flags & GRE_KEY)) {
[1770]307 bb_error_msg_and_die("keys are not allowed with ipip and sit");
[821]308 }
309 }
310
311 if (medium[0]) {
312 p->link = do_ioctl_get_ifindex(medium);
313 }
314
315 if (p->i_key == 0 && IN_MULTICAST(ntohl(p->iph.daddr))) {
316 p->i_key = p->iph.daddr;
317 p->i_flags |= GRE_KEY;
318 }
319 if (p->o_key == 0 && IN_MULTICAST(ntohl(p->iph.daddr))) {
320 p->o_key = p->iph.daddr;
321 p->o_flags |= GRE_KEY;
322 }
323 if (IN_MULTICAST(ntohl(p->iph.daddr)) && !p->iph.saddr) {
[1770]324 bb_error_msg_and_die("broadcast tunnel requires a source address");
[821]325 }
326}
327
328
[1770]329/* Return value becomes exitcode. It's okay to not return at all */
[821]330static int do_add(int cmd, int argc, char **argv)
331{
332 struct ip_tunnel_parm p;
333
[1770]334 parse_args(argc, argv, cmd, &p);
[821]335
336 if (p.iph.ttl && p.iph.frag_off == 0) {
[1770]337 bb_error_msg_and_die("ttl != 0 and noptmudisc are incompatible");
[821]338 }
339
340 switch (p.iph.protocol) {
341 case IPPROTO_IPIP:
342 return do_add_ioctl(cmd, "tunl0", &p);
343 case IPPROTO_GRE:
344 return do_add_ioctl(cmd, "gre0", &p);
345 case IPPROTO_IPV6:
346 return do_add_ioctl(cmd, "sit0", &p);
347 default:
[1770]348 bb_error_msg_and_die("cannot determine tunnel mode (ipip, gre or sit)");
[821]349 }
350}
351
[1770]352/* Return value becomes exitcode. It's okay to not return at all */
[821]353static int do_del(int argc, char **argv)
354{
355 struct ip_tunnel_parm p;
356
[1770]357 parse_args(argc, argv, SIOCDELTUNNEL, &p);
[821]358
359 switch (p.iph.protocol) {
360 case IPPROTO_IPIP:
361 return do_del_ioctl("tunl0", &p);
362 case IPPROTO_GRE:
363 return do_del_ioctl("gre0", &p);
364 case IPPROTO_IPV6:
365 return do_del_ioctl("sit0", &p);
366 default:
367 return do_del_ioctl(p.name, &p);
368 }
369}
370
371static void print_tunnel(struct ip_tunnel_parm *p)
372{
373 char s1[256];
374 char s2[256];
375 char s3[64];
376 char s4[64];
377
378 format_host(AF_INET, 4, &p->iph.daddr, s1, sizeof(s1));
379 format_host(AF_INET, 4, &p->iph.saddr, s2, sizeof(s2));
380 inet_ntop(AF_INET, &p->i_key, s3, sizeof(s3));
381 inet_ntop(AF_INET, &p->o_key, s4, sizeof(s4));
382
383 printf("%s: %s/ip remote %s local %s ",
384 p->name,
385 p->iph.protocol == IPPROTO_IPIP ? "ip" :
386 (p->iph.protocol == IPPROTO_GRE ? "gre" :
387 (p->iph.protocol == IPPROTO_IPV6 ? "ipv6" : "unknown")),
388 p->iph.daddr ? s1 : "any", p->iph.saddr ? s2 : "any");
389 if (p->link) {
390 char *n = do_ioctl_get_ifname(p->link);
[1770]391 if (n) {
[821]392 printf(" dev %s ", n);
[1770]393 free(n);
394 }
[821]395 }
396 if (p->iph.ttl)
397 printf(" ttl %d ", p->iph.ttl);
398 else
399 printf(" ttl inherit ");
400 if (p->iph.tos) {
401 SPRINT_BUF(b1);
402 printf(" tos");
[1770]403 if (p->iph.tos & 1)
[821]404 printf(" inherit");
[1770]405 if (p->iph.tos & ~1)
406 printf("%c%s ", p->iph.tos & 1 ? '/' : ' ',
407 rtnl_dsfield_n2a(p->iph.tos & ~1, b1, sizeof(b1)));
[821]408 }
[1770]409 if (!(p->iph.frag_off & htons(IP_DF)))
[821]410 printf(" nopmtudisc");
411
[1770]412 if ((p->i_flags & GRE_KEY) && (p->o_flags & GRE_KEY) && p->o_key == p->i_key)
[821]413 printf(" key %s", s3);
[1770]414 else if ((p->i_flags | p->o_flags) & GRE_KEY) {
415 if (p->i_flags & GRE_KEY)
[821]416 printf(" ikey %s ", s3);
[1770]417 if (p->o_flags & GRE_KEY)
[821]418 printf(" okey %s ", s4);
419 }
420
[1770]421 if (p->i_flags & GRE_SEQ)
422 printf("%c Drop packets out of sequence.\n", _SL_);
423 if (p->i_flags & GRE_CSUM)
424 printf("%c Checksum in received packet is required.", _SL_);
425 if (p->o_flags & GRE_SEQ)
426 printf("%c Sequence packets on output.", _SL_);
427 if (p->o_flags & GRE_CSUM)
428 printf("%c Checksum output packets.", _SL_);
[821]429}
430
[1770]431static void do_tunnels_list(struct ip_tunnel_parm *p)
[821]432{
433 char name[IFNAMSIZ];
[1770]434 unsigned long rx_bytes, rx_packets, rx_errs, rx_drops,
435 rx_fifo, rx_frame,
436 tx_bytes, tx_packets, tx_errs, tx_drops,
437 tx_fifo, tx_colls, tx_carrier, rx_multi;
[821]438 int type;
439 struct ip_tunnel_parm p1;
[1770]440 char buf[512];
441 FILE *fp = fopen_or_warn("/proc/net/dev", "r");
[821]442
443 if (fp == NULL) {
[1770]444 return;
[821]445 }
446
447 fgets(buf, sizeof(buf), fp);
448 fgets(buf, sizeof(buf), fp);
449
450 while (fgets(buf, sizeof(buf), fp) != NULL) {
451 char *ptr;
[1770]452
453 /*buf[sizeof(buf) - 1] = 0; - fgets is safe anyway */
454 ptr = strchr(buf, ':');
455 if (ptr == NULL ||
[821]456 (*ptr++ = 0, sscanf(buf, "%s", name) != 1)) {
[1770]457 bb_error_msg("wrong format of /proc/net/dev");
458 return;
[821]459 }
460 if (sscanf(ptr, "%lu%lu%lu%lu%lu%lu%lu%*d%lu%lu%lu%lu%lu%lu%lu",
461 &rx_bytes, &rx_packets, &rx_errs, &rx_drops,
462 &rx_fifo, &rx_frame, &rx_multi,
463 &tx_bytes, &tx_packets, &tx_errs, &tx_drops,
464 &tx_fifo, &tx_colls, &tx_carrier) != 14)
465 continue;
466 if (p->name[0] && strcmp(p->name, name))
467 continue;
468 type = do_ioctl_get_iftype(name);
469 if (type == -1) {
[1770]470 bb_error_msg("cannot get type of [%s]", name);
[821]471 continue;
472 }
473 if (type != ARPHRD_TUNNEL && type != ARPHRD_IPGRE && type != ARPHRD_SIT)
474 continue;
475 memset(&p1, 0, sizeof(p1));
476 if (do_get_ioctl(name, &p1))
477 continue;
478 if ((p->link && p1.link != p->link) ||
479 (p->name[0] && strcmp(p1.name, p->name)) ||
480 (p->iph.daddr && p1.iph.daddr != p->iph.daddr) ||
481 (p->iph.saddr && p1.iph.saddr != p->iph.saddr) ||
482 (p->i_key && p1.i_key != p->i_key))
483 continue;
484 print_tunnel(&p1);
[1770]485 puts("");
[821]486 }
487}
488
[1770]489/* Return value becomes exitcode. It's okay to not return at all */
[821]490static int do_show(int argc, char **argv)
491{
492 int err;
493 struct ip_tunnel_parm p;
494
[1770]495 parse_args(argc, argv, SIOCGETTUNNEL, &p);
[821]496
497 switch (p.iph.protocol) {
498 case IPPROTO_IPIP:
499 err = do_get_ioctl(p.name[0] ? p.name : "tunl0", &p);
500 break;
501 case IPPROTO_GRE:
502 err = do_get_ioctl(p.name[0] ? p.name : "gre0", &p);
503 break;
504 case IPPROTO_IPV6:
505 err = do_get_ioctl(p.name[0] ? p.name : "sit0", &p);
506 break;
507 default:
508 do_tunnels_list(&p);
509 return 0;
510 }
511 if (err)
512 return -1;
513
514 print_tunnel(&p);
[1770]515 puts("");
[821]516 return 0;
517}
518
[1770]519/* Return value becomes exitcode. It's okay to not return at all */
[821]520int do_iptunnel(int argc, char **argv)
521{
[1770]522 static const char keywords[] ALIGN1 =
523 "add\0""change\0""delete\0""show\0""list\0""lst\0";
524 enum { ARG_add = 0, ARG_change, ARG_del, ARG_show, ARG_list, ARG_lst };
525 int key;
[821]526
[1770]527 if (argc) {
528 key = index_in_substrings(keywords, *argv);
529 if (key < 0)
530 bb_error_msg_and_die(bb_msg_invalid_arg, *argv, applet_name);
531 --argc;
532 ++argv;
533 if (key == ARG_add)
534 return do_add(SIOCADDTUNNEL, argc, argv);
535 if (key == ARG_change)
536 return do_add(SIOCCHGTUNNEL, argc, argv);
537 if (key == ARG_del)
538 return do_del(argc, argv);
539 }
540 return do_show(argc, argv);
[821]541}
Note: See TracBrowser for help on using the repository browser.