/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2014 Garrett D'Amore <garrett@damore.org>
* Copyright 2012 DEY Storage Systems, Inc.
*
* Portions of this file developed by DEY Storage Systems, Inc. are licensed
* under the terms of the Common Development and Distribution License (CDDL)
* version 1.0 only. The use of subsequent versions of the License are
* is specifically prohibited unless those terms are not in conflict with
* version 1.0 of the License. You can find this license on-line at
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <limits.h>
#include <wchar.h>
#include <locale.h>
#include <langinfo.h>
#include <stropts.h>
#include <poll.h>
#include <errno.h>
#include <stdarg.h>
#include "getresponse.h"
#define HEAD 0
#define FALSE 0
/* We use these macros to help make formatting look "consistent" */
/* Some common error messages */
#define _(x) gettext(x)
static char *p_ibuf;
static struct inserts {
static int N_ARGS = 0;
static int N_args = 0;
static int N_lines = 0;
static int linesize = 0;
static int ibufsize = 0;
/* our usage message: */
"[-I replstr] [-i[replstr]] [-L #] [-l[#]] [-n # [-x]] [-s size] "\
"[cmd [args ...]]\n"
static int echoargs();
static char *getarg(char *);
static void usage();
static void parseargs();
int
{
int j;
int c;
int initsize;
char *arg;
char *next;
/* initialization */
n_inserts = 0;
#if !defined(TEXT_DOMAIN) /* Should be defined by cc -D */
#endif
(void) textdomain(TEXT_DOMAIN);
if (init_yes() < 0) {
exit(1);
}
/* handling all of xargs arguments: */
switch (c) {
case '0':
break;
case 't': /* -t: turn trace mode on */
break;
case 'p': /* -p: turn on prompt mode. */
PERR("can't read from tty for -p");
} else {
}
break;
case 'e':
/*
* N.B. that an argument *isn't* required here; but
* parseargs forced an argument if not was given. The
* forced argument is the default...
*/
break;
case 'E':
/*
* -E eofstr: change end-of-file string.
* eofstr *is* required here, but can be empty:
*/
break;
case 'I':
/* -I replstr: Insert mode. replstr *is* required. */
N_ARGS = 0;
if (*optarg == '\0') {
ermsg(_("Option requires an argument: -%c\n"),
c);
}
break;
case 'i':
/*
* -i [replstr]: insert mode, with *optional* replstr.
* N.B. that an argument *isn't* required here; if
* it's not given, then the string INSPAT_STR will
* be assumed.
*
* Since getopts(3C) doesn't handle the case of an
* optional variable argument at all, we have to
* parse this by hand:
*/
N_ARGS = 0;
} else {
/*
* here, there is no next argument. so
* we reset INSPAT to the INSPAT_STR.
* we *have* to do this, as -i/I may have
* been given previously, and XCU4 requires
* that only "the last one specified takes
* effect".
*/
INSPAT = INSPAT_STR;
}
break;
case 'L':
/*
* -L number: # of times cmd is executed
* number *is* required here:
*/
N_ARGS = 0;
ermsg(_("#lines must be positive int: %s\n"),
optarg);
}
break;
case 'l':
/*
* -l [number]: # of times cmd is executed
* N.B. that an argument *isn't* required here; if
* it's not given, then 1 is assumed.
*
* parseargs handles the optional arg processing.
*/
N_ARGS = 0;
PER_LINE = 1;
}
break;
case 'n': /* -n number: # stdin args */
/*
* -n number: # stdin args.
* number *is* required here:
*/
ermsg(_("#args must be positive int: %s\n"),
optarg);
} else {
}
break;
case 's': /* -s size: set max size of each arg list */
ermsg(_("0 < max-cmd-line-size <= %d: %s\n"),
}
break;
case 'x': /* -x: terminate if args > size limit */
break;
default:
/*
* bad argument. complain and get ready to die.
*/
usage();
exit(2);
break;
}
}
/*
* if anything called ermsg(), something screwed up, so
* we exit early.
*/
usage();
exit(2);
}
/*
* we're finished handling xargs's options, so now pick up
* the command name (if any), and it's options.
*/
if (mac <= 0) { /* if there're no more args to process, */
} else { /* otherwise keep parsing rest of the string. */
/*
* note that we can't use getopts(3C), and *must* parse
* this by hand, as we don't know apriori what options the
* command will take.
*/
/* pick up the remaining args from the command line: */
/*
* while we haven't crapped out, and there's
* work to do:
*/
if (++n_inserts > MAXINSERTS) {
ermsg(_("too many args "
"with %s\n"), INSPAT);
}
}
}
}
}
/* pick up args from standard input */
lastarg[0] = '\0';
while (OK) {
N_args = 0;
N_lines = 0;
int l;
if (*lastarg != '\0') {
*lastarg = '\0';
break;
}
linesize += l;
next += l;
/* Inserts are handled specially later. */
/*
* Legal indicates hard fail if the list is
* truncated due to size. So fail, or if we
* cannot create any list because it would be
* too big.
*/
exit(2);
/* NOTREACHED */
}
/*
* Otherwise just save argument for later.
*/
break;
}
N_args++;
break;
}
break;
}
}
if (N_args == 0) {
/* Reached the end with no more work. */
}
/* insert arg if requested */
ARGV--;
j = ibufsize = 0;
if (ERR)
break;
}
}
if (n_inserts > 0) {
/*
* if we've done any insertions, re-calculate the
* linesize. bomb out if we've exceeded our length.
*/
linesize = 0;
}
exit(2);
/* NOTREACHED */
}
}
/* exec command */
if (!ERR) {
if (!MORE &&
if (j) {
/*
* for xcu4, all invocations of cmdname must
* return 0, in order for us to return 0.
* so if we have a non-zero status here,
* quit immediately.
*/
}
}
}
if (OK)
return (exitstat);
/*
* if exitstat was set, to match XCU4 complience,
* return that value, otherwise, return 1.
*/
}
static char *
{
return (arg);
}
static void
{
}
static char *
{
wchar_t c = 0;
int escape = 0;
int inquote = 0;
int last = 0;
arg[0] = '\0';
while (MORE) {
len = 0;
last = c;
exit(2);
return (NULL);
}
switch (c) {
case '\n':
if (ZERO) {
continue;
}
/*
* NB: Some other versions rip off all of the trailing
* blanks. The spec only claims that this should
* be done for a single blank. We follow the spec.
*/
len = 0;
*arg = 0;
continue;
}
/* FALLTHRU */
case '\0':
case WEOF: /* Note WEOF == EOF */
if (escape) {
return (NULL);
}
if (inquote) {
return (NULL);
}
N_lines++;
break;
case '"':
/* treat it literally */
escape = 0;
} else if (inquote == 2) {
/* terminating double quote */
inquote = 0;
} else {
/* starting quoted string */
inquote = 2;
}
continue;
case '\'':
/* treat it literally */
escape = 0;
} else if (inquote == 1) {
/* terminating single quote */
inquote = 0;
} else {
/* starting quoted string */
inquote = 1;
}
continue;
case '\\':
/*
* Any unquoted character can be escaped by
* preceding it with a backslash.
*/
escape = 0;
} else {
escape = 1;
}
continue;
default:
/* most times we will just want to store it */
escape = 0;
continue;
}
c = 0; /* Roll it back */
continue;
}
if (PER_LINE) {
continue;
}
/* unquoted blank without special handling */
break;
}
/*
* At this point we are processing a complete argument.
*/
return (NULL);
}
if (c == WEOF) {
}
if (xarg[0] == '\0')
continue;
break;
}
}
/*
* ermsg(): print out an error message, and indicate failure globally.
*
* Assumes that message has already been gettext()'d. It would be
* nice if we could just do the gettext() here, but we can't, since
* since xgettext(1M) wouldn't be able to pick up our error message.
*/
/* PRINTFLIKE1 */
static void
{
}
static int
echoargs()
{
char **anarg;
int i;
/*
* write out each argument, separated by a space. the tanarg
* nonsense is for xcu4 testsuite compliance - so that an
* extra space isn't echoed after the last argument.
*/
while (*++anarg) { /* while there's an argument */
++tanarg; /* follow anarg */
if (*++tanarg) { /* if there's another argument: */
--tanarg; /* reset back to anarg */
}
}
if (PROMPT == -1) {
return (TRUE);
}
if (reply[i] == '\n') {
if (i == 0)
return (FALSE);
break;
}
}
reply[i] = 0;
/* flush remainder of line if necessary */
if (i == LINE_MAX) {
char bitbucket;
;
}
}
static char *
{
char *pat;
char *bufend;
char *pbuf;
while (*++pat) {
break;
} else {
}
} else {
break;
}
}
if (!*pat) {
*pbuf = '\0';
return (buffer);
} else {
"exceeded\n"), INSPAT);
return (NULL);
}
}
static void
{
int l;
if (ERR)
return;
}
p_ibuf += l;
}
/*
* getwchr(): get the next wide character.
* description:
* we get the next character from stdin. This returns WEOF if no
* character is present. If ZERO is set, it gets a single byte instead
* a wide character.
*/
static wint_t
{
size_t i;
int c;
i = 0;
while (i < MB_CUR_MAX) {
if (i == 0) {
/* TRUE EOF has been reached */
return (WEOF);
}
/*
* We have some characters in our buffer still so it
* must be an invalid character right before EOF.
*/
break;
}
mbc[i++] = (char)c;
/* If this succeeds then we are done */
if (ZERO) {
*sz = i;
return ((char)c);
}
*sz = i;
}
}
/*
* We have now encountered an illegal character sequence.
* There is nothing much we can do at this point but
* return an error. If we attempt to recover we may in fact
* return garbage as arguments, from the customer's point
* of view. After all what if they are feeding us a file
* generated in another locale?
*/
exit(1);
/* NOTREACHED */
}
static int
{
for (;;) {
default:
;
exit(122);
/* NOTREACHED */
}
if (WIFSIGNALED(retcode)) {
exit(125);
/* NOTREACHED */
}
exit(124);
/* NOTREACHED */
}
return (WEXITSTATUS(retcode));
case 0:
exit(126);
exit(127);
/* NOTREACHED */
case -1:
exit(123);
}
(void) sleep(1);
}
}
}
static void
usage()
{
}
/*
* parseargs(): modify the args
* since the -e, -i and -l flags all take optional subarguments,
* and getopts(3C) is clueless about this nonsense, we change the
* our local argument count and strings to separate this out,
* and make it easier to handle via getopts(3c).
*
* -e -> "-e ""
* -e3 -> "-e "3"
* -Estr -> "-E "str"
* -i -> "-i "{}"
* -irep -> "-i "rep"
* -l -> "-l "1"
* -l10 -> "-l "10"
*
* since the -e, -i and -l flags all take optional subarguments,
*/
static void
{
int i; /* current argument */
exit(1);
}
/* for each argument, see if we need to change things: */
exit(1);
}
/* -- has been found or argument list is fully processes */
if (cflag)
continue;
/*
* if we're doing special processing, and we've got a flag
*/
char *def;
switch (av[i][1]) {
case 'e':
goto process_special;
case 'i':
def = INSPAT_STR;
goto process_special;
case 'l':
def = "1";
/*
* if there's no sub-option, we *must* add
* a default one. this is because xargs must
* be able to distinguish between a valid
* suboption, and a command name.
*/
} else {
/* clear out our version: */
}
exit(1);
}
break;
/* flags with required subarguments: */
/*
* there are two separate cases here. either the
* flag can have the normal XCU4 handling
* (of the form: -X subargument); or it can have
* the old solaris 2.[0-4] handling (of the
* form: -Xsubargument). in order to maintain
* backwards compatibility, we must support the
* latter case. we handle the latter possibility
* first so both the old solaris way of handling
* and the new XCU4 way of handling things are allowed.
*/
case 'n': /* FALLTHROUGH */
case 's': /* FALLTHROUGH */
case 'E': /* FALLTHROUGH */
case 'I': /* FALLTHROUGH */
case 'L':
/*
* if the second character isn't null, then
* the user has specified the old syntax.
* we move the subargument into our
* mod'd argument list.
*/
/* first clean things up: */
/* now add the separation: */
++mac; /* inc to next mod'd arg */
NULL) {
exit(1);
}
break;
}
i++;
mac++;
return;
}
exit(1);
}
break;
/* flags */
case 'p' :
case 't' :
case 'x' :
case '0' :
break;
case '-' :
default:
/*
* here we've hit the cmd argument. so
* we'll stop special processing, as the
* cmd may have a "-i" etc., argument,
* and we don't want to add a "" to it.
*/
cflag = 1;
break;
}
} else if (i > 0) { /* if we're not the 1st arg */
/*
* if it's not a flag, then it *must* be the cmd.
* set cflag, so we don't mishandle the -[eil] flags.
*/
cflag = 1;
}
}
}