diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-27 04:22:02 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-27 04:22:02 +0200 |
commit | 77cc2c5738d780b97b56af49510ed64d61ad2e2d (patch) | |
tree | cbb8bd5787da4cfb0fca2710e35bd649d77b1371 | |
parent | a73b87e9343df2a6f14e328a977e7b70eb3ed707 (diff) | |
download | busybox-w32-77cc2c5738d780b97b56af49510ed64d61ad2e2d.tar.gz busybox-w32-77cc2c5738d780b97b56af49510ed64d61ad2e2d.tar.bz2 busybox-w32-77cc2c5738d780b97b56af49510ed64d61ad2e2d.zip |
nc: introduce CONFIG_NC_110_COMPAT option.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | include/usage.src.h | 78 | ||||
-rw-r--r-- | networking/Config.src | 23 | ||||
-rw-r--r-- | networking/nc.c | 89 | ||||
-rw-r--r-- | networking/nc_bloaty.c | 40 |
4 files changed, 122 insertions, 108 deletions
diff --git a/include/usage.src.h b/include/usage.src.h index f84bb93c7..6d17ab571 100644 --- a/include/usage.src.h +++ b/include/usage.src.h | |||
@@ -2954,84 +2954,6 @@ INSERT | |||
2954 | " or\n" \ | 2954 | " or\n" \ |
2955 | "$ nameif -c /etc/my_mactab_file\n" \ | 2955 | "$ nameif -c /etc/my_mactab_file\n" \ |
2956 | 2956 | ||
2957 | #if !ENABLE_DESKTOP | ||
2958 | |||
2959 | #if ENABLE_NC_SERVER || ENABLE_NC_EXTRA | ||
2960 | #define NC_OPTIONS_STR "\n\nOptions:" | ||
2961 | #else | ||
2962 | #define NC_OPTIONS_STR | ||
2963 | #endif | ||
2964 | |||
2965 | #define nc_trivial_usage \ | ||
2966 | IF_NC_EXTRA("[-iN] [-wN] ")IF_NC_SERVER("[-l] [-p PORT] ") \ | ||
2967 | "["IF_NC_EXTRA("-f FILENAME|")"IPADDR PORT]"IF_NC_EXTRA(" [-e PROG]") | ||
2968 | #define nc_full_usage "\n\n" \ | ||
2969 | "Open a pipe to IP:port" IF_NC_EXTRA(" or file") \ | ||
2970 | NC_OPTIONS_STR \ | ||
2971 | IF_NC_EXTRA( \ | ||
2972 | "\n -e PROG Run PROG after connect" \ | ||
2973 | "\n -i SEC Delay interval for lines sent" \ | ||
2974 | "\n -w SEC Timeout for connect" \ | ||
2975 | "\n -f FILE Use file (ala /dev/ttyS0) instead of network" \ | ||
2976 | ) \ | ||
2977 | IF_NC_SERVER( \ | ||
2978 | "\n -l Listen mode, for inbound connects" \ | ||
2979 | IF_NC_EXTRA( \ | ||
2980 | "\n (use -l twice with -e for persistent server)") \ | ||
2981 | "\n -p PORT Local port" \ | ||
2982 | ) | ||
2983 | |||
2984 | #define nc_notes_usage "" \ | ||
2985 | IF_NC_EXTRA( \ | ||
2986 | "To use netcat as a terminal emulator on a serial port:\n\n" \ | ||
2987 | "$ stty 115200 -F /dev/ttyS0\n" \ | ||
2988 | "$ stty raw -echo -ctlecho && nc -f /dev/ttyS0\n" \ | ||
2989 | ) | ||
2990 | |||
2991 | #define nc_example_usage \ | ||
2992 | "$ nc foobar.somedomain.com 25\n" \ | ||
2993 | "220 foobar ESMTP Exim 3.12 #1 Sat, 15 Apr 2000 00:03:02 -0600\n" \ | ||
2994 | "help\n" \ | ||
2995 | "214-Commands supported:\n" \ | ||
2996 | "214- HELO EHLO MAIL RCPT DATA AUTH\n" \ | ||
2997 | "214 NOOP QUIT RSET HELP\n" \ | ||
2998 | "quit\n" \ | ||
2999 | "221 foobar closing connection\n" | ||
3000 | |||
3001 | #else /* DESKTOP nc - much more compatible with nc 1.10 */ | ||
3002 | |||
3003 | #define nc_trivial_usage \ | ||
3004 | "[OPTIONS] HOST PORT - connect" \ | ||
3005 | IF_NC_SERVER("\n" \ | ||
3006 | "nc [OPTIONS] -l -p PORT [HOST] [PORT] - listen") | ||
3007 | #define nc_full_usage "\n\n" \ | ||
3008 | "Options:" \ | ||
3009 | "\n -e PROG Run PROG after connect (must be last)" \ | ||
3010 | IF_NC_SERVER( \ | ||
3011 | "\n -l Listen mode, for inbound connects" \ | ||
3012 | ) \ | ||
3013 | "\n -n Don't do DNS resolution" \ | ||
3014 | "\n -s ADDR Local address" \ | ||
3015 | "\n -p PORT Local port" \ | ||
3016 | "\n -u UDP mode" \ | ||
3017 | "\n -v Verbose" \ | ||
3018 | "\n -w SEC Timeout for connects and final net reads" \ | ||
3019 | IF_NC_EXTRA( \ | ||
3020 | "\n -i SEC Delay interval for lines sent" /* ", ports scanned" */ \ | ||
3021 | "\n -o FILE Hex dump traffic" \ | ||
3022 | "\n -z Zero-I/O mode (scanning)" \ | ||
3023 | ) \ | ||
3024 | /* "\n -r Randomize local and remote ports" */ | ||
3025 | /* "\n -g gateway Source-routing hop point[s], up to 8" */ | ||
3026 | /* "\n -G num Source-routing pointer: 4, 8, 12, ..." */ | ||
3027 | /* "\nport numbers can be individual or ranges: lo-hi [inclusive]" */ | ||
3028 | |||
3029 | /* -e PROG can take ARGS too: "nc ... -e ls -l", but we don't document it | ||
3030 | * in help text: nc 1.10 does not allow that. We don't want to entice | ||
3031 | * users to use this incompatibility */ | ||
3032 | |||
3033 | #endif | ||
3034 | |||
3035 | #define netstat_trivial_usage \ | 2957 | #define netstat_trivial_usage \ |
3036 | "[-laentuwxr"IF_FEATURE_NETSTAT_WIDE("W")IF_FEATURE_NETSTAT_PRG("p")"]" | 2958 | "[-laentuwxr"IF_FEATURE_NETSTAT_WIDE("W")IF_FEATURE_NETSTAT_PRG("p")"]" |
3037 | #define netstat_full_usage "\n\n" \ | 2959 | #define netstat_full_usage "\n\n" \ |
diff --git a/networking/Config.src b/networking/Config.src index ebad9e598..449436247 100644 --- a/networking/Config.src +++ b/networking/Config.src | |||
@@ -623,29 +623,6 @@ config FEATURE_NAMEIF_EXTENDED | |||
623 | new_interface_name mac=00:80:C8:38:91:B5 | 623 | new_interface_name mac=00:80:C8:38:91:B5 |
624 | new_interface_name 00:80:C8:38:91:B5 | 624 | new_interface_name 00:80:C8:38:91:B5 |
625 | 625 | ||
626 | config NC | ||
627 | bool "nc" | ||
628 | default y | ||
629 | help | ||
630 | A simple Unix utility which reads and writes data across network | ||
631 | connections. | ||
632 | |||
633 | config NC_SERVER | ||
634 | bool "Netcat server options (-l)" | ||
635 | default y | ||
636 | depends on NC | ||
637 | help | ||
638 | Allow netcat to act as a server. | ||
639 | |||
640 | config NC_EXTRA | ||
641 | bool "Netcat extensions (-eiw and filename)" | ||
642 | default y | ||
643 | depends on NC | ||
644 | help | ||
645 | Add -e (support for executing the rest of the command line after | ||
646 | making or receiving a successful connection), -i (delay interval for | ||
647 | lines sent), -w (timeout for initial connection). | ||
648 | |||
649 | config NETSTAT | 626 | config NETSTAT |
650 | bool "netstat" | 627 | bool "netstat" |
651 | default y | 628 | default y |
diff --git a/networking/nc.c b/networking/nc.c index 243c47976..5fd8bd759 100644 --- a/networking/nc.c +++ b/networking/nc.c | |||
@@ -9,10 +9,89 @@ | |||
9 | 9 | ||
10 | #include "libbb.h" | 10 | #include "libbb.h" |
11 | 11 | ||
12 | #if ENABLE_DESKTOP | 12 | //config:config NC |
13 | #include "nc_bloaty.c" | 13 | //config: bool "nc" |
14 | //config: default y | ||
15 | //config: help | ||
16 | //config: A simple Unix utility which reads and writes data across network | ||
17 | //config: connections. | ||
18 | //config: | ||
19 | //config:config NC_SERVER | ||
20 | //config: bool "Netcat server options (-l)" | ||
21 | //config: default y | ||
22 | //config: depends on NC | ||
23 | //config: help | ||
24 | //config: Allow netcat to act as a server. | ||
25 | //config: | ||
26 | //config:config NC_EXTRA | ||
27 | //config: bool "Netcat extensions (-eiw and filename)" | ||
28 | //config: default y | ||
29 | //config: depends on NC | ||
30 | //config: help | ||
31 | //config: Add -e (support for executing the rest of the command line after | ||
32 | //config: making or receiving a successful connection), -i (delay interval for | ||
33 | //config: lines sent), -w (timeout for initial connection). | ||
34 | //config: | ||
35 | //config:config NC_110_COMPAT | ||
36 | //config: bool "Netcat 1.10 compatibility (+2.5k)" | ||
37 | //config: default y | ||
38 | //config: depends on NC | ||
39 | //config: help | ||
40 | //config: This option makes nc closely follow original nc-1.10. | ||
41 | //config: The code is about 2.5k bigger. It enables | ||
42 | //config: -s ADDR, -n, -u, -v, -o FILE, -z options, but loses | ||
43 | //config: busybox-specific extensions: -f FILE and -ll. | ||
44 | |||
45 | #if ENABLE_NC_110_COMPAT | ||
46 | # include "nc_bloaty.c" | ||
14 | #else | 47 | #else |
15 | 48 | ||
49 | //usage:#if !ENABLE_NC_110_COMPAT | ||
50 | //usage: | ||
51 | //usage:#if ENABLE_NC_SERVER || ENABLE_NC_EXTRA | ||
52 | //usage:#define NC_OPTIONS_STR "\n\nOptions:" | ||
53 | //usage:#else | ||
54 | //usage:#define NC_OPTIONS_STR | ||
55 | //usage:#endif | ||
56 | //usage: | ||
57 | //usage:#define nc_trivial_usage | ||
58 | //usage: IF_NC_EXTRA("[-iN] [-wN] ")IF_NC_SERVER("[-l] [-p PORT] ") | ||
59 | //usage: "["IF_NC_EXTRA("-f FILE|")"IPADDR PORT]"IF_NC_EXTRA(" [-e PROG]") | ||
60 | //usage:#define nc_full_usage "\n\n" | ||
61 | //usage: "Open a pipe to IP:PORT" IF_NC_EXTRA(" or FILE") | ||
62 | //usage: NC_OPTIONS_STR | ||
63 | //usage: IF_NC_EXTRA( | ||
64 | //usage: "\n -e PROG Run PROG after connect" | ||
65 | //usage: IF_NC_SERVER( | ||
66 | //usage: "\n -l Listen mode, for inbound connects" | ||
67 | //usage: IF_NC_EXTRA( | ||
68 | //usage: "\n (use -l twice with -e for persistent server)") | ||
69 | //usage: "\n -p PORT Local port" | ||
70 | //usage: ) | ||
71 | //usage: "\n -w SEC Timeout for connect" | ||
72 | //usage: "\n -i SEC Delay interval for lines sent" | ||
73 | //usage: "\n -f FILE Use file (ala /dev/ttyS0) instead of network" | ||
74 | //usage: ) | ||
75 | //usage: | ||
76 | //usage:#define nc_notes_usage "" | ||
77 | //usage: IF_NC_EXTRA( | ||
78 | //usage: "To use netcat as a terminal emulator on a serial port:\n\n" | ||
79 | //usage: "$ stty 115200 -F /dev/ttyS0\n" | ||
80 | //usage: "$ stty raw -echo -ctlecho && nc -f /dev/ttyS0\n" | ||
81 | //usage: ) | ||
82 | //usage: | ||
83 | //usage:#define nc_example_usage | ||
84 | //usage: "$ nc foobar.somedomain.com 25\n" | ||
85 | //usage: "220 foobar ESMTP Exim 3.12 #1 Sat, 15 Apr 2000 00:03:02 -0600\n" | ||
86 | //usage: "help\n" | ||
87 | //usage: "214-Commands supported:\n" | ||
88 | //usage: "214- HELO EHLO MAIL RCPT DATA AUTH\n" | ||
89 | //usage: "214 NOOP QUIT RSET HELP\n" | ||
90 | //usage: "quit\n" | ||
91 | //usage: "221 foobar closing connection\n" | ||
92 | //usage: | ||
93 | //usage:#endif | ||
94 | |||
16 | /* Lots of small differences in features | 95 | /* Lots of small differences in features |
17 | * when compared to "standard" nc | 96 | * when compared to "standard" nc |
18 | */ | 97 | */ |
@@ -39,7 +118,7 @@ int nc_main(int argc, char **argv) | |||
39 | 118 | ||
40 | if (ENABLE_NC_SERVER || ENABLE_NC_EXTRA) { | 119 | if (ENABLE_NC_SERVER || ENABLE_NC_EXTRA) { |
41 | /* getopt32 is _almost_ usable: | 120 | /* getopt32 is _almost_ usable: |
42 | ** it cannot handle "... -e prog -prog-opt" */ | 121 | ** it cannot handle "... -e PROG -prog-opt" */ |
43 | while ((opt = getopt(argc, argv, | 122 | while ((opt = getopt(argc, argv, |
44 | "" IF_NC_SERVER("lp:") IF_NC_EXTRA("w:i:f:e:") )) > 0 | 123 | "" IF_NC_SERVER("lp:") IF_NC_EXTRA("w:i:f:e:") )) > 0 |
45 | ) { | 124 | ) { |
@@ -57,7 +136,7 @@ int nc_main(int argc, char **argv) | |||
57 | /* We cannot just 'break'. We should let getopt finish. | 136 | /* We cannot just 'break'. We should let getopt finish. |
58 | ** Or else we won't be able to find where | 137 | ** Or else we won't be able to find where |
59 | ** 'host' and 'port' params are | 138 | ** 'host' and 'port' params are |
60 | ** (think "nc -w 60 host port -e prog"). */ | 139 | ** (think "nc -w 60 host port -e PROG"). */ |
61 | IF_NC_EXTRA( | 140 | IF_NC_EXTRA( |
62 | char **p; | 141 | char **p; |
63 | // +2: one for progname (optarg) and one for NULL | 142 | // +2: one for progname (optarg) and one for NULL |
@@ -70,7 +149,7 @@ int nc_main(int argc, char **argv) | |||
70 | ) | 149 | ) |
71 | /* optind points to argv[arvc] (NULL) now. | 150 | /* optind points to argv[arvc] (NULL) now. |
72 | ** FIXME: we assume that getopt will not count options | 151 | ** FIXME: we assume that getopt will not count options |
73 | ** possibly present on "-e prog args" and will not | 152 | ** possibly present on "-e PROG ARGS" and will not |
74 | ** include them into final value of optind | 153 | ** include them into final value of optind |
75 | ** which is to be used ... */ | 154 | ** which is to be used ... */ |
76 | } else bb_show_usage(); | 155 | } else bb_show_usage(); |
diff --git a/networking/nc_bloaty.c b/networking/nc_bloaty.c index 8d27e9682..c44133b5d 100644 --- a/networking/nc_bloaty.c +++ b/networking/nc_bloaty.c | |||
@@ -36,9 +36,9 @@ | |||
36 | * - source routing | 36 | * - source routing |
37 | * - multiple DNS checks | 37 | * - multiple DNS checks |
38 | * Functionalty which is different from nc 1.10: | 38 | * Functionalty which is different from nc 1.10: |
39 | * - Prog in '-e prog' can have prog's parameters and options. | 39 | * - Prog in '-e PROG' can have prog's parameters and options. |
40 | * Because of this -e option must be last. | 40 | * Because of this -e option must be last. |
41 | * - nc doesn't redirect stderr to the network socket for the -e prog. | 41 | * - nc doesn't redirect stderr to the network socket for the -e PROG. |
42 | * - numeric addresses are printed in (), not [] (IPv6 looks better), | 42 | * - numeric addresses are printed in (), not [] (IPv6 looks better), |
43 | * port numbers are inside (): (1.2.3.4:5678) | 43 | * port numbers are inside (): (1.2.3.4:5678) |
44 | * - network read errors are reported on verbose levels > 1 | 44 | * - network read errors are reported on verbose levels > 1 |
@@ -50,6 +50,42 @@ | |||
50 | 50 | ||
51 | /* done in nc.c: #include "libbb.h" */ | 51 | /* done in nc.c: #include "libbb.h" */ |
52 | 52 | ||
53 | //usage:#if ENABLE_NC_110_COMPAT | ||
54 | //usage: | ||
55 | //usage:#define nc_trivial_usage | ||
56 | //usage: "[OPTIONS] HOST PORT - connect" | ||
57 | //usage: IF_NC_SERVER("\n" | ||
58 | //usage: "nc [OPTIONS] -l -p PORT [HOST] [PORT] - listen") | ||
59 | //usage:#define nc_full_usage "\n\n" | ||
60 | //usage: "Options:" | ||
61 | //usage: "\n -e PROG Run PROG after connect (must be last)" | ||
62 | //usage: IF_NC_SERVER( | ||
63 | //usage: "\n -l Listen mode, for inbound connects" | ||
64 | //usage: ) | ||
65 | //usage: "\n -p PORT Local port" | ||
66 | //usage: "\n -s ADDR Local address" | ||
67 | //usage: "\n -w SEC Timeout for connects and final net reads" | ||
68 | //usage: IF_NC_EXTRA( | ||
69 | //usage: "\n -i SEC Delay interval for lines sent" /* ", ports scanned" */ | ||
70 | //usage: ) | ||
71 | //usage: "\n -n Don't do DNS resolution" | ||
72 | //usage: "\n -u UDP mode" | ||
73 | //usage: "\n -v Verbose" | ||
74 | //usage: IF_NC_EXTRA( | ||
75 | //usage: "\n -o FILE Hex dump traffic" | ||
76 | //usage: "\n -z Zero-I/O mode (scanning)" | ||
77 | //usage: ) | ||
78 | //usage:#endif | ||
79 | |||
80 | /* "\n -r Randomize local and remote ports" */ | ||
81 | /* "\n -g gateway Source-routing hop point[s], up to 8" */ | ||
82 | /* "\n -G num Source-routing pointer: 4, 8, 12, ..." */ | ||
83 | /* "\nport numbers can be individual or ranges: lo-hi [inclusive]" */ | ||
84 | |||
85 | /* -e PROG can take ARGS too: "nc ... -e ls -l", but we don't document it | ||
86 | * in help text: nc 1.10 does not allow that. We don't want to entice | ||
87 | * users to use this incompatibility */ | ||
88 | |||
53 | enum { | 89 | enum { |
54 | SLEAZE_PORT = 31337, /* for UDP-scan RTT trick, change if ya want */ | 90 | SLEAZE_PORT = 31337, /* for UDP-scan RTT trick, change if ya want */ |
55 | BIGSIZ = 8192, /* big buffers */ | 91 | BIGSIZ = 8192, /* big buffers */ |