blob: 6e25db62c63efb10b17e7484a6b30cbe29602f12 [file] [log] [blame]
Paul Fox6ab03782006-06-08 21:37:26 +00001/* vi: set sw=4 ts=4: */
Erik Andersen13456d12000-03-16 08:09:57 +00002/*
Paul Fox6ab03782006-06-08 21:37:26 +00003 * echo implementation for busybox
Erik Andersen13456d12000-03-16 08:09:57 +00004 *
Paul Fox6ab03782006-06-08 21:37:26 +00005 * Copyright (c) 1991, 1993
6 * The Regents of the University of California. All rights reserved.
Erik Andersen13456d12000-03-16 08:09:57 +00007 *
Paul Fox6ab03782006-06-08 21:37:26 +00008 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Erik Andersen13456d12000-03-16 08:09:57 +00009 *
Paul Fox6ab03782006-06-08 21:37:26 +000010 * Original copyright notice is retained at the end of this file.
Manuel Novoa III cad53642003-03-19 09:13:01 +000011 */
12
Paul Fox6ab03782006-06-08 21:37:26 +000013/* BB_AUDIT SUSv3 compliant -- unless configured as fancy echo. */
14/* http://www.opengroup.org/onlinepubs/007904975/utilities/echo.html */
15
16/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
17 *
18 * Because of behavioral differences, implemented configurable SUSv3
19 * or 'fancy' gnu-ish behaviors. Also, reduced size and fixed bugs.
20 * 1) In handling '\c' escape, the previous version only suppressed the
21 * trailing newline. SUSv3 specifies _no_ output after '\c'.
22 * 2) SUSv3 specifies that octal escapes are of the form \0{#{#{#}}}.
Denis Vlasenko7e754f12007-04-09 13:04:50 +000023 * The previous version did not allow 4-digit octals.
Paul Fox6ab03782006-06-08 21:37:26 +000024 */
25
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000026#include "libbb.h"
Erik Andersen13456d12000-03-16 08:09:57 +000027
Denis Vlasenkofe5e23b2007-11-24 02:23:51 +000028/* This is a NOFORK applet. Be very careful! */
29
Denis Vlasenko468aea22008-04-01 14:47:57 +000030/* NB: can be used by shell even if not enabled as applet */
Denis Vlasenkofe5e23b2007-11-24 02:23:51 +000031
Denis Vlasenko68404f12008-03-17 09:00:54 +000032int echo_main(int argc ATTRIBUTE_UNUSED, char **argv)
Paul Fox6ab03782006-06-08 21:37:26 +000033{
Denis Vlasenko7e754f12007-04-09 13:04:50 +000034 const char *arg;
35#if !ENABLE_FEATURE_FANCY_ECHO
Denis Vlasenkoa9d7d242007-04-10 16:34:00 +000036 enum {
37 eflag = '\\',
38 nflag = 1, /* 1 -- print '\n' */
39 };
Denis Vlasenko7d75a962007-11-22 08:16:57 +000040
41 /* We must check that stdout is not closed.
42 * The reason for this is highly non-obvious.
Denis Vlasenkofe5e23b2007-11-24 02:23:51 +000043 * echo_main is used from shell. Shell must correctly handle "echo foo"
Denis Vlasenko7d75a962007-11-22 08:16:57 +000044 * if stdout is closed. With stdio, output gets shoveled into
45 * stdout buffer, and even fflush cannot clear it out. It seems that
46 * even if libc receives EBADF on write attempts, it feels determined
47 * to output data no matter what. So it will try later,
48 * and possibly will clobber future output. Not good. */
49 if (dup2(1, 1) != 1)
50 return -1;
51
Denis Vlasenkobb98db22007-06-19 23:04:17 +000052 arg = *++argv;
Bernhard Reutner-Fischerdef82602007-06-08 12:52:17 +000053 if (!arg)
54 goto newline_ret;
Paul Fox6ab03782006-06-08 21:37:26 +000055#else
56 const char *p;
Denis Vlasenko7e754f12007-04-09 13:04:50 +000057 char nflag = 1;
58 char eflag = 0;
Paul Fox6ab03782006-06-08 21:37:26 +000059
Denis Vlasenko7d75a962007-11-22 08:16:57 +000060 /* We must check that stdout is not closed. */
61 if (dup2(1, 1) != 1)
62 return -1;
63
Denis Vlasenko7e754f12007-04-09 13:04:50 +000064 while (1) {
65 arg = *++argv;
66 if (!arg)
Denis Vlasenkoa9d7d242007-04-10 16:34:00 +000067 goto newline_ret;
Denis Vlasenko7e754f12007-04-09 13:04:50 +000068 if (*arg != '-')
69 break;
70
Paul Fox6ab03782006-06-08 21:37:26 +000071 /* If it appears that we are handling options, then make sure
72 * that all of the options specified are actually valid.
73 * Otherwise, the string should just be echoed.
74 */
Denis Vlasenko7e754f12007-04-09 13:04:50 +000075 p = arg + 1;
76 if (!*p) /* A single '-', so echo it. */
Paul Fox6ab03782006-06-08 21:37:26 +000077 goto just_echo;
Paul Fox6ab03782006-06-08 21:37:26 +000078
79 do {
Denis Vlasenko7e754f12007-04-09 13:04:50 +000080 if (!strrchr("neE", *p))
Paul Fox6ab03782006-06-08 21:37:26 +000081 goto just_echo;
Paul Fox6ab03782006-06-08 21:37:26 +000082 } while (*++p);
83
84 /* All of the options in this arg are valid, so handle them. */
Denis Vlasenko7e754f12007-04-09 13:04:50 +000085 p = arg + 1;
Paul Fox6ab03782006-06-08 21:37:26 +000086 do {
Denis Vlasenko7e754f12007-04-09 13:04:50 +000087 if (*p == 'n')
Paul Fox6ab03782006-06-08 21:37:26 +000088 nflag = 0;
Denis Vlasenko7e754f12007-04-09 13:04:50 +000089 if (*p == 'e')
Paul Fox6ab03782006-06-08 21:37:26 +000090 eflag = '\\';
Paul Fox6ab03782006-06-08 21:37:26 +000091 } while (*++p);
92 }
Denis Vlasenko7e754f12007-04-09 13:04:50 +000093 just_echo:
Paul Fox6ab03782006-06-08 21:37:26 +000094#endif
Denis Vlasenko7e754f12007-04-09 13:04:50 +000095 while (1) {
Denis Vlasenkoa9d7d242007-04-10 16:34:00 +000096 /* arg is already == *argv and isn't NULL */
"Robert P. J. Day"68229832006-07-01 13:08:46 +000097 int c;
Paul Fox6ab03782006-06-08 21:37:26 +000098
Denis Vlasenkoa9d7d242007-04-10 16:34:00 +000099 if (!eflag) {
100 /* optimization for very common case */
101 fputs(arg, stdout);
102 } else while ((c = *arg++)) {
Paul Fox6ab03782006-06-08 21:37:26 +0000103 if (c == eflag) { /* Check for escape seq. */
Denis Vlasenko7e754f12007-04-09 13:04:50 +0000104 if (*arg == 'c') {
Paul Fox6ab03782006-06-08 21:37:26 +0000105 /* '\c' means cancel newline and
106 * ignore all subsequent chars. */
Denis Vlasenko7e754f12007-04-09 13:04:50 +0000107 goto ret;
Paul Fox6ab03782006-06-08 21:37:26 +0000108 }
Denis Vlasenko7e754f12007-04-09 13:04:50 +0000109#if !ENABLE_FEATURE_FANCY_ECHO
Paul Fox6ab03782006-06-08 21:37:26 +0000110 /* SUSv3 specifies that octal escapes must begin with '0'. */
Denis Vlasenko7e754f12007-04-09 13:04:50 +0000111 if ( (((unsigned char)*arg) - '1') >= 7)
Paul Fox6ab03782006-06-08 21:37:26 +0000112#endif
113 {
114 /* Since SUSv3 mandates a first digit of 0, 4-digit octals
115 * of the form \0### are accepted. */
Denis Vlasenko7e754f12007-04-09 13:04:50 +0000116 if (*arg == '0' && ((unsigned char)(arg[1]) - '0') < 8) {
117 arg++;
Paul Fox6ab03782006-06-08 21:37:26 +0000118 }
119 /* bb_process_escape_sequence can handle nul correctly */
Denis Vlasenko7e754f12007-04-09 13:04:50 +0000120 c = bb_process_escape_sequence(&arg);
Paul Fox6ab03782006-06-08 21:37:26 +0000121 }
122 }
Denis Vlasenko4daad902007-09-27 10:20:47 +0000123 bb_putchar(c);
Paul Fox6ab03782006-06-08 21:37:26 +0000124 }
125
Denis Vlasenko7e754f12007-04-09 13:04:50 +0000126 arg = *++argv;
127 if (!arg)
128 break;
Denis Vlasenko4daad902007-09-27 10:20:47 +0000129 bb_putchar(' ');
Paul Fox6ab03782006-06-08 21:37:26 +0000130 }
131
Denis Vlasenkoa9d7d242007-04-10 16:34:00 +0000132 newline_ret:
Paul Fox6ab03782006-06-08 21:37:26 +0000133 if (nflag) {
Denis Vlasenko4daad902007-09-27 10:20:47 +0000134 bb_putchar('\n');
Paul Fox6ab03782006-06-08 21:37:26 +0000135 }
Denis Vlasenko7e754f12007-04-09 13:04:50 +0000136 ret:
137 return fflush(stdout);
Paul Fox6ab03782006-06-08 21:37:26 +0000138}
139
Paul Fox6ab03782006-06-08 21:37:26 +0000140/*-
141 * Copyright (c) 1991, 1993
142 * The Regents of the University of California. All rights reserved.
143 *
144 * This code is derived from software contributed to Berkeley by
145 * Kenneth Almquist.
146 *
147 * Redistribution and use in source and binary forms, with or without
148 * modification, are permitted provided that the following conditions
149 * are met:
150 * 1. Redistributions of source code must retain the above copyright
151 * notice, this list of conditions and the following disclaimer.
152 * 2. Redistributions in binary form must reproduce the above copyright
153 * notice, this list of conditions and the following disclaimer in the
154 * documentation and/or other materials provided with the distribution.
155 *
156 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
157 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
158 *
159 * California, Berkeley and its contributors.
160 * 4. Neither the name of the University nor the names of its contributors
161 * may be used to endorse or promote products derived from this software
162 * without specific prior written permission.
163 *
164 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
165 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
166 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
167 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
168 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
169 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
170 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
171 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
172 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
173 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
174 * SUCH DAMAGE.
175 *
176 * @(#)echo.c 8.1 (Berkeley) 5/31/93
177 */
Denis Vlasenko7d75a962007-11-22 08:16:57 +0000178
179#ifdef VERSION_WITH_WRITEV
180/* We can't use stdio.
181 * The reason for this is highly non-obvious.
Denis Vlasenkofe5e23b2007-11-24 02:23:51 +0000182 * echo_main is used from shell. Shell must correctly handle "echo foo"
Denis Vlasenko7d75a962007-11-22 08:16:57 +0000183 * if stdout is closed. With stdio, output gets shoveled into
184 * stdout buffer, and even fflush cannot clear it out. It seems that
185 * even if libc receives EBADF on write attempts, it feels determined
186 * to output data no matter what. So it will try later,
187 * and possibly will clobber future output. Not good.
188 *
189 * Using writev instead, with 'direct' conversion of argv vector.
190 */
191
Denis Vlasenkofe5e23b2007-11-24 02:23:51 +0000192int echo_main(int argc, char **argv)
Denis Vlasenko7d75a962007-11-22 08:16:57 +0000193{
194 struct iovec io[argc];
195 struct iovec *cur_io = io;
196 char *arg;
197 char *p;
198#if !ENABLE_FEATURE_FANCY_ECHO
199 enum {
200 eflag = '\\',
201 nflag = 1, /* 1 -- print '\n' */
202 };
203 arg = *++argv;
204 if (!arg)
205 goto newline_ret;
206#else
207 char nflag = 1;
208 char eflag = 0;
209
210 while (1) {
211 arg = *++argv;
212 if (!arg)
213 goto newline_ret;
214 if (*arg != '-')
215 break;
216
217 /* If it appears that we are handling options, then make sure
218 * that all of the options specified are actually valid.
219 * Otherwise, the string should just be echoed.
220 */
221 p = arg + 1;
222 if (!*p) /* A single '-', so echo it. */
223 goto just_echo;
224
225 do {
226 if (!strrchr("neE", *p))
227 goto just_echo;
228 } while (*++p);
229
230 /* All of the options in this arg are valid, so handle them. */
231 p = arg + 1;
232 do {
233 if (*p == 'n')
234 nflag = 0;
235 if (*p == 'e')
236 eflag = '\\';
237 } while (*++p);
238 }
239 just_echo:
240#endif
241
242 while (1) {
243 /* arg is already == *argv and isn't NULL */
244 int c;
245
246 cur_io->iov_base = p = arg;
247
248 if (!eflag) {
249 /* optimization for very common case */
250 p += strlen(arg);
251 } else while ((c = *arg++)) {
252 if (c == eflag) { /* Check for escape seq. */
253 if (*arg == 'c') {
254 /* '\c' means cancel newline and
255 * ignore all subsequent chars. */
256 cur_io->iov_len = p - (char*)cur_io->iov_base;
257 cur_io++;
258 goto ret;
259 }
260#if !ENABLE_FEATURE_FANCY_ECHO
261 /* SUSv3 specifies that octal escapes must begin with '0'. */
262 if ( (((unsigned char)*arg) - '1') >= 7)
263#endif
264 {
265 /* Since SUSv3 mandates a first digit of 0, 4-digit octals
266 * of the form \0### are accepted. */
267 if (*arg == '0' && ((unsigned char)(arg[1]) - '0') < 8) {
268 arg++;
269 }
270 /* bb_process_escape_sequence can handle nul correctly */
271 c = bb_process_escape_sequence( (void*) &arg);
272 }
273 }
274 *p++ = c;
275 }
276
277 arg = *++argv;
278 if (arg)
279 *p++ = ' ';
280 cur_io->iov_len = p - (char*)cur_io->iov_base;
281 cur_io++;
282 if (!arg)
283 break;
284 }
285
286 newline_ret:
287 if (nflag) {
288 cur_io->iov_base = (char*)"\n";
289 cur_io->iov_len = 1;
290 cur_io++;
291 }
292 ret:
293 /* TODO: implement and use full_writev? */
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000294 return writev(1, io, (cur_io - io)) >= 0;
Denis Vlasenko7d75a962007-11-22 08:16:57 +0000295}
296#endif