2012-04-28 20:52:20 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2012 Jeremie Le Hen <jlh@FreeBSD.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <err.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#define LIBSTDBUF "/usr/lib/libstdbuf.so"
|
2012-05-08 19:43:32 +00:00
|
|
|
#define LIBSTDBUF32 "/usr/lib32/libstdbuf.so"
|
2012-04-28 20:52:20 +00:00
|
|
|
|
|
|
|
extern char *__progname;
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(int s)
|
|
|
|
{
|
2013-01-14 11:06:50 +00:00
|
|
|
|
2012-04-28 20:52:20 +00:00
|
|
|
fprintf(stderr, "Usage: %s [-e 0|L|<sz>] [-i 0|L|<sz>] [-o 0|L|<sz>] "
|
|
|
|
"<cmd> [args ...]\n", __progname);
|
|
|
|
exit(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char *ibuf, *obuf, *ebuf;
|
|
|
|
char *preload0, *preload1;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
ibuf = obuf = ebuf = NULL;
|
2012-04-29 08:17:44 +00:00
|
|
|
while ((i = getopt(argc, argv, "e:i:o:")) != -1) {
|
2012-04-28 20:52:20 +00:00
|
|
|
switch (i) {
|
|
|
|
case 'e':
|
|
|
|
ebuf = optarg;
|
|
|
|
break;
|
|
|
|
case 'i':
|
|
|
|
ibuf = optarg;
|
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
obuf = optarg;
|
|
|
|
break;
|
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage(1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2013-01-14 11:03:13 +00:00
|
|
|
if (argc == 0)
|
|
|
|
exit(0);
|
2012-04-28 20:52:20 +00:00
|
|
|
|
|
|
|
if (ibuf != NULL && setenv("_STDBUF_I", ibuf, 1) == -1)
|
|
|
|
warn("Failed to set environment variable: %s=%s",
|
|
|
|
"_STDBUF_I", ibuf);
|
|
|
|
if (obuf != NULL && setenv("_STDBUF_O", obuf, 1) == -1)
|
|
|
|
warn("Failed to set environment variable: %s=%s",
|
|
|
|
"_STDBUF_O", obuf);
|
|
|
|
if (ebuf != NULL && setenv("_STDBUF_E", ebuf, 1) == -1)
|
|
|
|
warn("Failed to set environment variable: %s=%s",
|
|
|
|
"_STDBUF_E", ebuf);
|
|
|
|
|
|
|
|
preload0 = getenv("LD_PRELOAD");
|
|
|
|
if (preload0 == NULL)
|
|
|
|
i = asprintf(&preload1, "LD_PRELOAD=" LIBSTDBUF);
|
|
|
|
else
|
|
|
|
i = asprintf(&preload1, "LD_PRELOAD=%s:%s", preload0,
|
|
|
|
LIBSTDBUF);
|
|
|
|
|
|
|
|
if (i < 0 || putenv(preload1) == -1)
|
2012-05-08 19:43:32 +00:00
|
|
|
warn("Failed to set environment variable: LD_PRELOAD");
|
2013-01-14 11:06:50 +00:00
|
|
|
|
2012-05-08 19:43:32 +00:00
|
|
|
preload0 = getenv("LD_32_PRELOAD");
|
|
|
|
if (preload0 == NULL)
|
|
|
|
i = asprintf(&preload1, "LD_32_PRELOAD=" LIBSTDBUF32);
|
|
|
|
else
|
|
|
|
i = asprintf(&preload1, "LD_32_PRELOAD=%s:%s", preload0,
|
|
|
|
LIBSTDBUF32);
|
|
|
|
|
|
|
|
if (i < 0 || putenv(preload1) == -1)
|
|
|
|
warn("Failed to set environment variable: LD_32_PRELOAD");
|
2012-04-28 20:52:20 +00:00
|
|
|
|
|
|
|
execvp(argv[0], argv);
|
|
|
|
err(2, "%s", argv[0]);
|
|
|
|
}
|