1999-12-02 02:42:23 -05:00
|
|
|
/* Messages logging.
|
2007-09-28 18:45:31 -04:00
|
|
|
Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
|
2015-03-09 11:32:01 -04:00
|
|
|
2007, 2008, 2009, 2010, 2011, 2015 Free Software Foundation, Inc.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
This file is part of GNU Wget.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
GNU Wget is free software; you can redistribute it and/or modify
|
1999-12-02 02:42:23 -05:00
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-10 01:53:22 -04:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-12-02 02:42:23 -05:00
|
|
|
(at your option) any later version.
|
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
GNU Wget is distributed in the hope that it will be useful,
|
1999-12-02 02:42:23 -05:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-07-10 01:53:22 -04:00
|
|
|
along with Wget. If not, see <http://www.gnu.org/licenses/>.
|
2002-05-17 22:16:36 -04:00
|
|
|
|
2007-11-28 03:05:33 -05:00
|
|
|
Additional permission under GNU GPL version 3 section 7
|
|
|
|
|
|
|
|
If you modify this program, or any covered work, by linking or
|
|
|
|
combining it with the OpenSSL project's OpenSSL library (or a
|
|
|
|
modified version of that library), containing parts covered by the
|
|
|
|
terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
|
|
|
|
grants you additional permission to convey the resulting work.
|
|
|
|
Corresponding Source for a non-source form of such a combination
|
|
|
|
shall include the source code for the parts of OpenSSL used as well
|
|
|
|
as that of the covered work. */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2007-10-18 23:50:40 -04:00
|
|
|
#include "wget.h"
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
#include <stdio.h>
|
2005-06-19 18:34:58 -04:00
|
|
|
#include <string.h>
|
1999-12-02 02:42:23 -05:00
|
|
|
#include <stdlib.h>
|
2005-06-19 18:34:58 -04:00
|
|
|
#include <stdarg.h>
|
2010-12-01 07:15:13 -05:00
|
|
|
#include <unistd.h>
|
1999-12-02 02:42:23 -05:00
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include "utils.h"
|
2014-06-09 02:53:10 -04:00
|
|
|
#include "exits.h"
|
2003-10-31 09:31:56 -05:00
|
|
|
#include "log.h"
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2008-04-22 17:48:36 -04:00
|
|
|
/* 2005-10-25 SMS.
|
|
|
|
VMS log files are often VFC record format, not stream, so fputs() can
|
|
|
|
produce multiple records, even when there's no newline terminator in
|
|
|
|
the buffer. The result is unsightly output with spurious newlines.
|
|
|
|
Using fprintf() instead of fputs(), along with inhibiting some
|
|
|
|
fflush() activity below, seems to solve the problem.
|
|
|
|
*/
|
|
|
|
#ifdef __VMS
|
|
|
|
# define FPUTS( s, f) fprintf( (f), "%s", (s))
|
|
|
|
#else /* def __VMS */
|
|
|
|
# define FPUTS( s, f) fputs( (s), (f))
|
|
|
|
#endif /* def __VMS [else] */
|
|
|
|
|
2009-07-04 18:32:57 -04:00
|
|
|
/* This file implements support for "logging". Logging means printing
|
2001-12-10 00:31:45 -05:00
|
|
|
output, plus several additional features:
|
|
|
|
|
|
|
|
- Cataloguing output by importance. You can specify that a log
|
|
|
|
message is "verbose" or "debug", and it will not be printed unless
|
|
|
|
in verbose or debug mode, respectively.
|
|
|
|
|
|
|
|
- Redirecting the log to the file. When Wget's output goes to the
|
|
|
|
terminal, and Wget receives SIGHUP, all further output is
|
|
|
|
redirected to a log file. When this is the case, Wget can also
|
|
|
|
print the last several lines of "context" to the log file so that
|
|
|
|
it does not begin in the middle of a line. For this to work, the
|
|
|
|
logging code stores the last several lines of context. Callers may
|
|
|
|
request for certain output not to be stored.
|
|
|
|
|
|
|
|
- Inhibiting output. When Wget receives SIGHUP, but redirecting
|
|
|
|
the output fails, logging is inhibited. */
|
|
|
|
|
2014-11-20 10:35:34 -05:00
|
|
|
|
2001-12-10 00:31:45 -05:00
|
|
|
/* The file descriptor used for logging. This is NULL before log_init
|
|
|
|
is called; logging functions log to stderr then. log_init sets it
|
|
|
|
either to stderr or to a file pointer obtained from fopen(). If
|
|
|
|
logging is inhibited, logfp is set back to NULL. */
|
2000-11-04 23:38:31 -05:00
|
|
|
static FILE *logfp;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2011-11-04 17:25:00 -04:00
|
|
|
/* A second file descriptor pointing to the temporary log file for the
|
|
|
|
WARC writer. If WARC writing is disabled, this is NULL. */
|
|
|
|
static FILE *warclogfp;
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
/* If true, it means logging is inhibited, i.e. nothing is printed or
|
|
|
|
stored. */
|
|
|
|
static bool inhibit_logging;
|
2001-12-10 00:31:45 -05:00
|
|
|
|
|
|
|
/* Whether the last output lines are stored for use as context. */
|
2005-06-22 15:38:10 -04:00
|
|
|
static bool save_context_p;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2001-11-22 15:13:13 -05:00
|
|
|
/* Whether the log is flushed after each command. */
|
2005-06-22 15:38:10 -04:00
|
|
|
static bool flush_log_p = true;
|
2001-12-10 00:31:45 -05:00
|
|
|
|
|
|
|
/* Whether any output has been received while flush_log_p was 0. */
|
2005-06-22 15:38:10 -04:00
|
|
|
static bool needs_flushing;
|
2001-11-22 15:13:13 -05:00
|
|
|
|
2000-11-04 23:38:31 -05:00
|
|
|
/* In the event of a hang-up, and if its output was on a TTY, Wget
|
|
|
|
redirects its output to `wget-log'.
|
|
|
|
|
|
|
|
For the convenience of reading this newly-created log, we store the
|
|
|
|
last several lines ("screenful", hence the choice of 24) of Wget
|
|
|
|
output, and dump them as context when the time comes. */
|
|
|
|
#define SAVED_LOG_LINES 24
|
|
|
|
|
|
|
|
/* log_lines is a circular buffer that stores SAVED_LOG_LINES lines of
|
|
|
|
output. log_line_current always points to the position in the
|
|
|
|
buffer that will be written to next. When log_line_current reaches
|
|
|
|
SAVED_LOG_LINES, it is reset to zero.
|
|
|
|
|
|
|
|
The problem here is that we'd have to either (re)allocate and free
|
|
|
|
strings all the time, or limit the lines to an arbitrary number of
|
|
|
|
characters. Instead of settling for either of these, we do both:
|
2001-12-10 00:31:45 -05:00
|
|
|
if the line is smaller than a certain "usual" line length (128
|
|
|
|
chars by default), a preallocated memory is used. The rare lines
|
|
|
|
that are longer than 128 characters are malloc'ed and freed
|
|
|
|
separately. This gives good performance with minimum memory
|
|
|
|
consumption and fragmentation. */
|
2000-11-04 23:38:31 -05:00
|
|
|
|
2001-12-10 00:31:45 -05:00
|
|
|
#define STATIC_LENGTH 128
|
2000-11-04 23:38:31 -05:00
|
|
|
|
|
|
|
static struct log_ln {
|
|
|
|
char static_line[STATIC_LENGTH + 1]; /* statically allocated
|
|
|
|
line. */
|
2007-08-02 23:38:21 -04:00
|
|
|
char *malloced_line; /* malloc'ed line, for lines of output
|
2000-11-04 23:38:31 -05:00
|
|
|
larger than 80 characters. */
|
2007-08-02 23:38:21 -04:00
|
|
|
char *content; /* this points either to malloced_line
|
2000-11-04 23:38:31 -05:00
|
|
|
or to the appropriate static_line.
|
|
|
|
If this is NULL, it means the line
|
|
|
|
has not yet been used. */
|
|
|
|
} log_lines[SAVED_LOG_LINES];
|
|
|
|
|
|
|
|
/* The current position in the ring. */
|
|
|
|
static int log_line_current = -1;
|
|
|
|
|
|
|
|
/* Whether the most recently written line was "trailing", i.e. did not
|
|
|
|
finish with \n. This is an important piece of information because
|
|
|
|
the code is always careful to append data to trailing lines, rather
|
|
|
|
than create new ones. */
|
2005-06-22 15:38:10 -04:00
|
|
|
static bool trailing_line;
|
2000-11-04 23:38:31 -05:00
|
|
|
|
2005-06-19 18:34:58 -04:00
|
|
|
static void check_redirect_output (void);
|
2014-11-20 10:35:34 -05:00
|
|
|
|
2007-08-02 23:38:21 -04:00
|
|
|
#define ROT_ADVANCE(num) do { \
|
|
|
|
if (++num >= SAVED_LOG_LINES) \
|
|
|
|
num = 0; \
|
2000-11-04 23:38:31 -05:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/* Free the log line index with NUM. This calls free on
|
|
|
|
ln->malloced_line if it's non-NULL, and it also resets
|
|
|
|
ln->malloced_line and ln->content to NULL. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
free_log_line (int num)
|
|
|
|
{
|
|
|
|
struct log_ln *ln = log_lines + num;
|
2014-11-29 11:54:20 -05:00
|
|
|
xfree (ln->malloced_line);
|
2000-11-04 23:38:31 -05:00
|
|
|
ln->content = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Append bytes in the range [start, end) to one line in the log. The
|
|
|
|
region is not supposed to contain newlines, except for the last
|
|
|
|
character (at end[-1]). */
|
|
|
|
|
|
|
|
static void
|
|
|
|
saved_append_1 (const char *start, const char *end)
|
|
|
|
{
|
|
|
|
int len = end - start;
|
|
|
|
if (!len)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* First, check whether we need to append to an existing line or to
|
|
|
|
create a new one. */
|
|
|
|
if (!trailing_line)
|
|
|
|
{
|
|
|
|
/* Create a new line. */
|
|
|
|
struct log_ln *ln;
|
|
|
|
|
|
|
|
if (log_line_current == -1)
|
2007-08-02 23:38:21 -04:00
|
|
|
log_line_current = 0;
|
2000-11-04 23:38:31 -05:00
|
|
|
else
|
2007-08-02 23:38:21 -04:00
|
|
|
free_log_line (log_line_current);
|
2000-11-04 23:38:31 -05:00
|
|
|
ln = log_lines + log_line_current;
|
|
|
|
if (len > STATIC_LENGTH)
|
2007-08-02 23:38:21 -04:00
|
|
|
{
|
|
|
|
ln->malloced_line = strdupdelim (start, end);
|
|
|
|
ln->content = ln->malloced_line;
|
|
|
|
}
|
2000-11-04 23:38:31 -05:00
|
|
|
else
|
2007-08-02 23:38:21 -04:00
|
|
|
{
|
|
|
|
memcpy (ln->static_line, start, len);
|
|
|
|
ln->static_line[len] = '\0';
|
|
|
|
ln->content = ln->static_line;
|
|
|
|
}
|
2000-11-04 23:38:31 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Append to the last line. If the line is malloc'ed, we just
|
|
|
|
call realloc and append the new string. If the line is
|
|
|
|
static, we have to check whether appending the new string
|
|
|
|
would make it exceed STATIC_LENGTH characters, and if so,
|
|
|
|
convert it to malloc(). */
|
|
|
|
struct log_ln *ln = log_lines + log_line_current;
|
|
|
|
if (ln->malloced_line)
|
2007-08-02 23:38:21 -04:00
|
|
|
{
|
|
|
|
/* Resize malloc'ed line and append. */
|
|
|
|
int old_len = strlen (ln->malloced_line);
|
|
|
|
ln->malloced_line = xrealloc (ln->malloced_line, old_len + len + 1);
|
|
|
|
memcpy (ln->malloced_line + old_len, start, len);
|
|
|
|
ln->malloced_line[old_len + len] = '\0';
|
|
|
|
/* might have changed due to realloc */
|
|
|
|
ln->content = ln->malloced_line;
|
|
|
|
}
|
2000-11-04 23:38:31 -05:00
|
|
|
else
|
2007-08-02 23:38:21 -04:00
|
|
|
{
|
|
|
|
int old_len = strlen (ln->static_line);
|
|
|
|
if (old_len + len > STATIC_LENGTH)
|
|
|
|
{
|
|
|
|
/* Allocate memory and concatenate the old and the new
|
2000-11-04 23:38:31 -05:00
|
|
|
contents. */
|
2007-08-02 23:38:21 -04:00
|
|
|
ln->malloced_line = xmalloc (old_len + len + 1);
|
|
|
|
memcpy (ln->malloced_line, ln->static_line,
|
|
|
|
old_len);
|
|
|
|
memcpy (ln->malloced_line + old_len, start, len);
|
|
|
|
ln->malloced_line[old_len + len] = '\0';
|
|
|
|
ln->content = ln->malloced_line;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Just append to the old, statically allocated
|
2000-11-04 23:38:31 -05:00
|
|
|
contents. */
|
2007-08-02 23:38:21 -04:00
|
|
|
memcpy (ln->static_line + old_len, start, len);
|
|
|
|
ln->static_line[old_len + len] = '\0';
|
|
|
|
ln->content = ln->static_line;
|
|
|
|
}
|
|
|
|
}
|
2000-11-04 23:38:31 -05:00
|
|
|
}
|
|
|
|
trailing_line = !(end[-1] == '\n');
|
|
|
|
if (!trailing_line)
|
|
|
|
ROT_ADVANCE (log_line_current);
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2000-11-04 23:38:31 -05:00
|
|
|
/* Log the contents of S, as explained above. If S consists of
|
|
|
|
multiple lines, they are logged separately. If S does not end with
|
|
|
|
a newline, it will form a "trailing" line, to which things will get
|
|
|
|
appended the next time this function is called. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
saved_append (const char *s)
|
|
|
|
{
|
|
|
|
while (*s)
|
|
|
|
{
|
|
|
|
const char *end = strchr (s, '\n');
|
|
|
|
if (!end)
|
2007-08-02 23:38:21 -04:00
|
|
|
end = s + strlen (s);
|
2000-11-04 23:38:31 -05:00
|
|
|
else
|
2007-08-02 23:38:21 -04:00
|
|
|
++end;
|
2000-11-04 23:38:31 -05:00
|
|
|
saved_append_1 (s, end);
|
|
|
|
s = end;
|
|
|
|
}
|
|
|
|
}
|
2014-11-20 10:35:34 -05:00
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
/* Check X against opt.verbose and opt.quiet. The semantics is as
|
|
|
|
follows:
|
|
|
|
|
|
|
|
* LOG_ALWAYS - print the message unconditionally;
|
|
|
|
|
|
|
|
* LOG_NOTQUIET - print the message if opt.quiet is non-zero;
|
|
|
|
|
|
|
|
* LOG_NONVERBOSE - print the message if opt.verbose is zero;
|
|
|
|
|
|
|
|
* LOG_VERBOSE - print the message if opt.verbose is non-zero. */
|
2007-08-02 23:38:21 -04:00
|
|
|
#define CHECK_VERBOSE(x) \
|
|
|
|
switch (x) \
|
|
|
|
{ \
|
2014-04-30 19:04:11 -04:00
|
|
|
case LOG_PROGRESS: \
|
|
|
|
if (!opt.show_progress) \
|
|
|
|
return; \
|
|
|
|
break; \
|
2007-08-02 23:38:21 -04:00
|
|
|
case LOG_ALWAYS: \
|
|
|
|
break; \
|
|
|
|
case LOG_NOTQUIET: \
|
|
|
|
if (opt.quiet) \
|
|
|
|
return; \
|
|
|
|
break; \
|
|
|
|
case LOG_NONVERBOSE: \
|
|
|
|
if (opt.verbose || opt.quiet) \
|
|
|
|
return; \
|
|
|
|
break; \
|
|
|
|
case LOG_VERBOSE: \
|
|
|
|
if (!opt.verbose) \
|
|
|
|
return; \
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|
|
|
|
|
2001-12-10 00:31:45 -05:00
|
|
|
/* Returns the file descriptor for logging. This is LOGFP, except if
|
|
|
|
called before log_init, in which case it returns stderr. This is
|
|
|
|
useful in case someone calls a logging function before log_init.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2001-12-10 00:31:45 -05:00
|
|
|
If logging is inhibited, return NULL. */
|
|
|
|
|
|
|
|
static FILE *
|
|
|
|
get_log_fp (void)
|
|
|
|
{
|
|
|
|
if (inhibit_logging)
|
|
|
|
return NULL;
|
|
|
|
if (logfp)
|
|
|
|
return logfp;
|
|
|
|
return stderr;
|
|
|
|
}
|
2011-11-04 17:25:00 -04:00
|
|
|
|
2015-01-18 04:48:14 -05:00
|
|
|
static FILE *
|
|
|
|
get_progress_fp (void)
|
|
|
|
{
|
|
|
|
if (opt.show_progress == true)
|
|
|
|
return stderr;
|
|
|
|
return get_log_fp();
|
|
|
|
}
|
|
|
|
|
2011-11-04 17:25:00 -04:00
|
|
|
/* Returns the file descriptor for the secondary log file. This is
|
|
|
|
WARCLOGFP, except if called before log_init, in which case it
|
|
|
|
returns stderr. This is useful in case someone calls a logging
|
|
|
|
function before log_init.
|
|
|
|
|
|
|
|
If logging is inhibited, return NULL. */
|
|
|
|
|
|
|
|
static FILE *
|
|
|
|
get_warc_log_fp (void)
|
|
|
|
{
|
|
|
|
if (inhibit_logging)
|
|
|
|
return NULL;
|
|
|
|
if (warclogfp)
|
|
|
|
return warclogfp;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sets the file descriptor for the secondary log file. */
|
|
|
|
|
|
|
|
void
|
|
|
|
log_set_warc_log_fp (FILE * fp)
|
|
|
|
{
|
|
|
|
warclogfp = fp;
|
|
|
|
}
|
2014-11-20 10:35:34 -05:00
|
|
|
|
2000-11-04 23:38:31 -05:00
|
|
|
/* Log a literal string S. The string is logged as-is, without a
|
|
|
|
newline appended. */
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
void
|
|
|
|
logputs (enum log_options o, const char *s)
|
|
|
|
{
|
2001-12-10 00:31:45 -05:00
|
|
|
FILE *fp;
|
2011-11-04 17:25:00 -04:00
|
|
|
FILE *warcfp;
|
2016-02-11 04:53:02 -05:00
|
|
|
int errno_save = errno;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2001-12-10 00:31:45 -05:00
|
|
|
check_redirect_output ();
|
2015-01-18 04:48:14 -05:00
|
|
|
if (o == LOG_PROGRESS)
|
|
|
|
fp = get_progress_fp ();
|
|
|
|
else
|
|
|
|
fp = get_log_fp ();
|
|
|
|
|
2016-02-11 04:53:02 -05:00
|
|
|
errno = errno_save;
|
|
|
|
|
2015-01-18 04:48:14 -05:00
|
|
|
if (fp == NULL)
|
2001-12-10 00:31:45 -05:00
|
|
|
return;
|
2015-01-18 04:48:14 -05:00
|
|
|
|
2011-11-04 17:25:00 -04:00
|
|
|
warcfp = get_warc_log_fp ();
|
2016-02-11 04:53:02 -05:00
|
|
|
errno = errno_save;
|
|
|
|
|
2001-12-19 04:36:58 -05:00
|
|
|
CHECK_VERBOSE (o);
|
2001-11-22 15:13:13 -05:00
|
|
|
|
2008-04-22 17:48:36 -04:00
|
|
|
FPUTS (s, fp);
|
2011-11-04 17:25:00 -04:00
|
|
|
if (warcfp != NULL)
|
|
|
|
FPUTS (s, warcfp);
|
2001-12-10 00:31:45 -05:00
|
|
|
if (save_context_p)
|
|
|
|
saved_append (s);
|
2001-11-22 15:13:13 -05:00
|
|
|
if (flush_log_p)
|
|
|
|
logflush ();
|
|
|
|
else
|
2005-06-22 15:38:10 -04:00
|
|
|
needs_flushing = true;
|
2016-02-11 04:53:02 -05:00
|
|
|
|
|
|
|
errno = errno_save;
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|
|
|
|
|
2001-12-06 00:53:21 -05:00
|
|
|
struct logvprintf_state {
|
|
|
|
char *bigmsg;
|
|
|
|
int expected_size;
|
|
|
|
int allocated;
|
|
|
|
};
|
|
|
|
|
2000-11-04 23:38:31 -05:00
|
|
|
/* Print a message to the log. A copy of message will be saved to
|
2001-12-10 00:31:45 -05:00
|
|
|
saved_log, for later reusal by log_dump_context().
|
2000-11-04 23:38:31 -05:00
|
|
|
|
2003-11-03 15:08:46 -05:00
|
|
|
Normally we'd want this function to loop around vsnprintf until
|
|
|
|
sufficient room is allocated, as the Linux man page recommends.
|
|
|
|
However each call to vsnprintf() must be preceded by va_start and
|
|
|
|
followed by va_end. Since calling va_start/va_end is possible only
|
|
|
|
in the function that contains the `...' declaration, we cannot call
|
|
|
|
vsnprintf more than once. Therefore this function saves its state
|
|
|
|
to logvprintf_state and signals the parent to call it again.
|
|
|
|
|
|
|
|
(An alternative approach would be to use va_copy, but that's not
|
|
|
|
portable.) */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2014-11-03 03:22:47 -05:00
|
|
|
static bool GCC_FORMAT_ATTR (2, 0)
|
2003-11-03 15:08:46 -05:00
|
|
|
log_vprintf_internal (struct logvprintf_state *state, const char *fmt,
|
2007-08-02 23:38:21 -04:00
|
|
|
va_list args)
|
2001-12-06 00:53:21 -05:00
|
|
|
{
|
|
|
|
char smallmsg[128];
|
|
|
|
char *write_ptr = smallmsg;
|
|
|
|
int available_size = sizeof (smallmsg);
|
|
|
|
int numwritten;
|
2001-12-10 00:31:45 -05:00
|
|
|
FILE *fp = get_log_fp ();
|
2011-11-04 17:25:00 -04:00
|
|
|
FILE *warcfp = get_warc_log_fp ();
|
2000-11-04 23:38:31 -05:00
|
|
|
|
2011-11-04 17:25:00 -04:00
|
|
|
if (!save_context_p && warcfp == NULL)
|
1999-12-02 02:42:23 -05:00
|
|
|
{
|
2000-11-04 23:38:31 -05:00
|
|
|
/* In the simple case just call vfprintf(), to avoid needless
|
|
|
|
allocation and games with vsnprintf(). */
|
2001-12-10 00:31:45 -05:00
|
|
|
vfprintf (fp, fmt, args);
|
2001-12-06 00:53:21 -05:00
|
|
|
goto flush;
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|
2001-12-06 00:53:21 -05:00
|
|
|
|
|
|
|
if (state->allocated != 0)
|
2000-11-04 23:38:31 -05:00
|
|
|
{
|
2001-12-06 00:53:21 -05:00
|
|
|
write_ptr = state->bigmsg;
|
|
|
|
available_size = state->allocated;
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2001-12-06 00:53:21 -05:00
|
|
|
/* The GNU coding standards advise not to rely on the return value
|
|
|
|
of sprintf(). However, vsnprintf() is a relatively new function
|
|
|
|
missing from legacy systems. Therefore I consider it safe to
|
|
|
|
assume that its return value is meaningful. On the systems where
|
|
|
|
vsnprintf() is not available, we use the implementation from
|
|
|
|
snprintf.c which does return the correct value. */
|
|
|
|
numwritten = vsnprintf (write_ptr, available_size, fmt, args);
|
|
|
|
|
|
|
|
/* vsnprintf() will not step over the limit given by available_size.
|
2005-07-08 03:25:21 -04:00
|
|
|
If it fails, it returns either -1 (older implementations) or the
|
|
|
|
number of characters (not counting the terminating \0) that
|
|
|
|
*would have* been written if there had been enough room (C99).
|
|
|
|
In the former case, we double available_size and malloc to get a
|
|
|
|
larger buffer, and try again. In the latter case, we use the
|
|
|
|
returned information to build a buffer of the correct size. */
|
2001-12-06 00:53:21 -05:00
|
|
|
|
|
|
|
if (numwritten == -1)
|
|
|
|
{
|
|
|
|
/* Writing failed, and we don't know the needed size. Try
|
2007-08-02 23:38:21 -04:00
|
|
|
again with doubled size. */
|
2001-12-06 00:53:21 -05:00
|
|
|
int newsize = available_size << 1;
|
|
|
|
state->bigmsg = xrealloc (state->bigmsg, newsize);
|
|
|
|
state->allocated = newsize;
|
2005-06-22 15:38:10 -04:00
|
|
|
return false;
|
2000-11-04 23:38:31 -05:00
|
|
|
}
|
2001-12-06 00:53:21 -05:00
|
|
|
else if (numwritten >= available_size)
|
|
|
|
{
|
|
|
|
/* Writing failed, but we know exactly how much space we
|
2007-08-02 23:38:21 -04:00
|
|
|
need. */
|
2001-12-06 00:53:21 -05:00
|
|
|
int newsize = numwritten + 1;
|
|
|
|
state->bigmsg = xrealloc (state->bigmsg, newsize);
|
|
|
|
state->allocated = newsize;
|
2005-06-22 15:38:10 -04:00
|
|
|
return false;
|
2001-12-06 00:53:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Writing succeeded. */
|
2011-11-04 17:25:00 -04:00
|
|
|
if (save_context_p)
|
|
|
|
saved_append (write_ptr);
|
2008-04-22 17:48:36 -04:00
|
|
|
FPUTS (write_ptr, fp);
|
2011-11-04 17:25:00 -04:00
|
|
|
if (warcfp != NULL)
|
|
|
|
FPUTS (write_ptr, warcfp);
|
2014-11-29 11:54:20 -05:00
|
|
|
xfree (state->bigmsg);
|
2001-12-06 00:53:21 -05:00
|
|
|
|
|
|
|
flush:
|
2001-11-22 15:13:13 -05:00
|
|
|
if (flush_log_p)
|
|
|
|
logflush ();
|
|
|
|
else
|
2005-06-22 15:38:10 -04:00
|
|
|
needs_flushing = true;
|
2001-12-06 00:53:21 -05:00
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
return true;
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|
|
|
|
|
2001-11-22 15:13:13 -05:00
|
|
|
/* Flush LOGFP. Useful while flushing is disabled. */
|
1999-12-02 02:42:23 -05:00
|
|
|
void
|
|
|
|
logflush (void)
|
|
|
|
{
|
2001-12-10 00:31:45 -05:00
|
|
|
FILE *fp = get_log_fp ();
|
2011-11-04 17:25:00 -04:00
|
|
|
FILE *warcfp = get_warc_log_fp ();
|
2001-12-10 00:31:45 -05:00
|
|
|
if (fp)
|
2008-04-22 17:48:36 -04:00
|
|
|
{
|
|
|
|
/* 2005-10-25 SMS.
|
|
|
|
On VMS, flush only for a terminal. See note at FPUTS macro, above.
|
|
|
|
*/
|
|
|
|
#ifdef __VMS
|
|
|
|
if (isatty( fileno( fp)))
|
|
|
|
{
|
|
|
|
fflush (fp);
|
|
|
|
}
|
|
|
|
#else /* def __VMS */
|
|
|
|
fflush (fp);
|
|
|
|
#endif /* def __VMS [else] */
|
|
|
|
}
|
2011-11-04 17:25:00 -04:00
|
|
|
|
|
|
|
if (warcfp != NULL)
|
|
|
|
fflush (warcfp);
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
needs_flushing = false;
|
2001-11-22 15:13:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Enable or disable log flushing. */
|
|
|
|
void
|
2005-06-22 15:38:10 -04:00
|
|
|
log_set_flush (bool flush)
|
2001-11-22 15:13:13 -05:00
|
|
|
{
|
|
|
|
if (flush == flush_log_p)
|
|
|
|
return;
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
if (flush == false)
|
2001-11-22 15:13:13 -05:00
|
|
|
{
|
|
|
|
/* Disable flushing by setting flush_log_p to 0. */
|
2005-06-22 15:38:10 -04:00
|
|
|
flush_log_p = false;
|
2001-11-22 15:13:13 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Reenable flushing. If anything was printed in no-flush mode,
|
2007-08-02 23:38:21 -04:00
|
|
|
flush the log now. */
|
2001-11-22 15:13:13 -05:00
|
|
|
if (needs_flushing)
|
2007-08-02 23:38:21 -04:00
|
|
|
logflush ();
|
2005-06-22 15:38:10 -04:00
|
|
|
flush_log_p = true;
|
2001-11-22 15:13:13 -05:00
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|
|
|
|
|
2001-12-10 00:31:45 -05:00
|
|
|
/* (Temporarily) disable storing log to memory. Returns the old
|
|
|
|
status of storing, with which this function can be called again to
|
|
|
|
reestablish storing. */
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
bool
|
|
|
|
log_set_save_context (bool savep)
|
2001-12-10 00:31:45 -05:00
|
|
|
{
|
2005-06-22 15:38:10 -04:00
|
|
|
bool old = save_context_p;
|
2001-12-10 00:31:45 -05:00
|
|
|
save_context_p = savep;
|
|
|
|
return old;
|
|
|
|
}
|
|
|
|
|
2003-10-04 06:34:10 -04:00
|
|
|
/* Print a message to the screen or to the log. The first argument
|
|
|
|
defines the verbosity of the message, and the rest are as in
|
|
|
|
printf(3). */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
logprintf (enum log_options o, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
2001-12-06 00:53:21 -05:00
|
|
|
struct logvprintf_state lpstate;
|
2005-06-22 15:38:10 -04:00
|
|
|
bool done;
|
2016-02-10 09:23:13 -05:00
|
|
|
int errno_saved = errno;
|
2001-12-06 00:53:21 -05:00
|
|
|
|
2001-12-10 00:31:45 -05:00
|
|
|
check_redirect_output ();
|
2016-02-11 04:53:02 -05:00
|
|
|
errno = errno_saved;
|
2001-12-10 00:31:45 -05:00
|
|
|
if (inhibit_logging)
|
|
|
|
return;
|
2001-12-06 00:53:21 -05:00
|
|
|
CHECK_VERBOSE (o);
|
|
|
|
|
2003-10-31 09:55:50 -05:00
|
|
|
xzero (lpstate);
|
2014-12-03 04:18:10 -05:00
|
|
|
errno = 0;
|
2001-12-06 00:53:21 -05:00
|
|
|
do
|
|
|
|
{
|
2005-06-19 18:34:58 -04:00
|
|
|
va_start (args, fmt);
|
2003-11-03 15:08:46 -05:00
|
|
|
done = log_vprintf_internal (&lpstate, fmt, args);
|
2001-12-06 00:53:21 -05:00
|
|
|
va_end (args);
|
2011-07-29 09:49:11 -04:00
|
|
|
|
|
|
|
if (done && errno == EPIPE)
|
2014-06-09 02:53:10 -04:00
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
2001-12-06 00:53:21 -05:00
|
|
|
}
|
|
|
|
while (!done);
|
2016-02-10 09:23:13 -05:00
|
|
|
|
|
|
|
errno = errno_saved;
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|
|
|
|
|
2003-10-07 20:05:51 -04:00
|
|
|
#ifdef ENABLE_DEBUG
|
1999-12-02 02:42:23 -05:00
|
|
|
/* The same as logprintf(), but does anything only if opt.debug is
|
2005-06-22 15:38:10 -04:00
|
|
|
true. */
|
1999-12-02 02:42:23 -05:00
|
|
|
void
|
|
|
|
debug_logprintf (const char *fmt, ...)
|
|
|
|
{
|
|
|
|
if (opt.debug)
|
|
|
|
{
|
|
|
|
va_list args;
|
2001-12-06 00:53:21 -05:00
|
|
|
struct logvprintf_state lpstate;
|
2005-06-22 15:38:10 -04:00
|
|
|
bool done;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2001-12-10 00:31:45 -05:00
|
|
|
check_redirect_output ();
|
|
|
|
if (inhibit_logging)
|
2007-08-02 23:38:21 -04:00
|
|
|
return;
|
2001-12-06 00:53:21 -05:00
|
|
|
|
2003-10-31 09:55:50 -05:00
|
|
|
xzero (lpstate);
|
2001-12-06 00:53:21 -05:00
|
|
|
do
|
2007-08-02 23:38:21 -04:00
|
|
|
{
|
|
|
|
va_start (args, fmt);
|
|
|
|
done = log_vprintf_internal (&lpstate, fmt, args);
|
|
|
|
va_end (args);
|
|
|
|
}
|
2001-12-06 00:53:21 -05:00
|
|
|
while (!done);
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|
|
|
|
}
|
2003-10-07 20:05:51 -04:00
|
|
|
#endif /* ENABLE_DEBUG */
|
2014-11-20 10:35:34 -05:00
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
/* Open FILE and set up a logging stream. If FILE cannot be opened,
|
|
|
|
exit with status of 1. */
|
|
|
|
void
|
2005-06-22 15:38:10 -04:00
|
|
|
log_init (const char *file, bool appendp)
|
1999-12-02 02:42:23 -05:00
|
|
|
{
|
|
|
|
if (file)
|
|
|
|
{
|
2015-03-15 16:48:27 -04:00
|
|
|
if (HYPHENP (file))
|
2007-08-02 23:38:21 -04:00
|
|
|
{
|
2015-03-15 16:48:27 -04:00
|
|
|
logfp = stdout;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
logfp = fopen (file, appendp ? "a" : "w");
|
|
|
|
if (!logfp)
|
|
|
|
{
|
|
|
|
fprintf (stderr, "%s: %s: %s\n", exec_name, file, strerror (errno));
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
|
|
|
}
|
2007-08-02 23:38:21 -04:00
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-11-04 23:38:31 -05:00
|
|
|
/* The log goes to stderr to avoid collisions with the output if
|
|
|
|
the user specifies `-O -'. #### Francois Pinard suggests
|
|
|
|
that it's a better idea to print to stdout by default, and to
|
|
|
|
stderr only if the user actually specifies `-O -'. He says
|
|
|
|
this inconsistency is harder to document, but is overall
|
|
|
|
easier on the user. */
|
1999-12-02 02:42:23 -05:00
|
|
|
logfp = stderr;
|
2000-11-04 23:38:31 -05:00
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
if (1
|
|
|
|
#ifdef HAVE_ISATTY
|
2007-08-02 23:38:21 -04:00
|
|
|
&& isatty (fileno (logfp))
|
1999-12-02 02:42:23 -05:00
|
|
|
#endif
|
2007-08-02 23:38:21 -04:00
|
|
|
)
|
|
|
|
{
|
|
|
|
/* If the output is a TTY, enable save context, i.e. store
|
|
|
|
the most recent several messages ("context") and dump
|
|
|
|
them to a log file in case SIGHUP or SIGUSR1 is received
|
|
|
|
(or Ctrl+Break is pressed under Windows). */
|
|
|
|
save_context_p = true;
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-23 07:11:22 -04:00
|
|
|
/* Close LOGFP (only if we opened it, not if it's stderr), inhibit
|
|
|
|
further logging and free the memory associated with it. */
|
1999-12-02 02:42:23 -05:00
|
|
|
void
|
|
|
|
log_close (void)
|
|
|
|
{
|
2000-11-04 23:38:31 -05:00
|
|
|
int i;
|
|
|
|
|
2011-10-23 07:11:22 -04:00
|
|
|
if (logfp && (logfp != stderr))
|
2000-11-04 23:38:31 -05:00
|
|
|
fclose (logfp);
|
2001-12-10 00:31:45 -05:00
|
|
|
logfp = NULL;
|
2005-06-22 15:38:10 -04:00
|
|
|
inhibit_logging = true;
|
|
|
|
save_context_p = false;
|
2001-12-10 00:31:45 -05:00
|
|
|
|
2000-11-04 23:38:31 -05:00
|
|
|
for (i = 0; i < SAVED_LOG_LINES; i++)
|
|
|
|
free_log_line (i);
|
|
|
|
log_line_current = -1;
|
2005-06-22 15:38:10 -04:00
|
|
|
trailing_line = false;
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|
|
|
|
|
2000-11-04 23:38:31 -05:00
|
|
|
/* Dump saved lines to logfp. */
|
1999-12-02 02:42:23 -05:00
|
|
|
static void
|
2001-12-10 00:31:45 -05:00
|
|
|
log_dump_context (void)
|
1999-12-02 02:42:23 -05:00
|
|
|
{
|
2000-11-04 23:38:31 -05:00
|
|
|
int num = log_line_current;
|
2001-12-10 00:31:45 -05:00
|
|
|
FILE *fp = get_log_fp ();
|
2011-11-04 17:25:00 -04:00
|
|
|
FILE *warcfp = get_warc_log_fp ();
|
2001-12-10 00:31:45 -05:00
|
|
|
if (!fp)
|
|
|
|
return;
|
2000-11-04 23:38:31 -05:00
|
|
|
|
|
|
|
if (num == -1)
|
1999-12-02 02:42:23 -05:00
|
|
|
return;
|
2000-11-04 23:38:31 -05:00
|
|
|
if (trailing_line)
|
|
|
|
ROT_ADVANCE (num);
|
|
|
|
do
|
|
|
|
{
|
|
|
|
struct log_ln *ln = log_lines + num;
|
|
|
|
if (ln->content)
|
2011-11-04 17:25:00 -04:00
|
|
|
{
|
|
|
|
FPUTS (ln->content, fp);
|
|
|
|
if (warcfp != NULL)
|
|
|
|
FPUTS (ln->content, warcfp);
|
|
|
|
}
|
2000-11-04 23:38:31 -05:00
|
|
|
ROT_ADVANCE (num);
|
|
|
|
}
|
|
|
|
while (num != log_line_current);
|
|
|
|
if (trailing_line)
|
|
|
|
if (log_lines[log_line_current].content)
|
2011-11-04 17:25:00 -04:00
|
|
|
{
|
|
|
|
FPUTS (log_lines[log_line_current].content, fp);
|
|
|
|
if (warcfp != NULL)
|
|
|
|
FPUTS (log_lines[log_line_current].content, warcfp);
|
|
|
|
}
|
2000-11-04 23:38:31 -05:00
|
|
|
fflush (fp);
|
2011-11-04 17:25:00 -04:00
|
|
|
fflush (warcfp);
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|
2014-11-20 10:35:34 -05:00
|
|
|
|
2005-03-04 14:34:31 -05:00
|
|
|
/* String escape functions. */
|
|
|
|
|
|
|
|
/* Return the number of non-printable characters in SOURCE.
|
2007-10-14 02:52:19 -04:00
|
|
|
Non-printable characters are determined as per c-ctype.c. */
|
2005-03-04 14:34:31 -05:00
|
|
|
|
|
|
|
static int
|
|
|
|
count_nonprint (const char *source)
|
|
|
|
{
|
|
|
|
const char *p;
|
|
|
|
int cnt;
|
|
|
|
for (p = source, cnt = 0; *p; p++)
|
2007-10-14 17:46:24 -04:00
|
|
|
if (!c_isprint (*p))
|
2005-03-04 14:34:31 -05:00
|
|
|
++cnt;
|
|
|
|
return cnt;
|
|
|
|
}
|
|
|
|
|
2005-05-05 09:47:20 -04:00
|
|
|
/* Copy SOURCE to DEST, escaping non-printable characters.
|
|
|
|
|
|
|
|
Non-printable refers to anything outside the non-control ASCII
|
|
|
|
range (32-126) which means that, for example, CR, LF, and TAB are
|
2005-05-05 12:39:19 -04:00
|
|
|
considered non-printable along with ESC, BS, and other control
|
|
|
|
chars. This is by design: it makes sure that messages from remote
|
|
|
|
servers cannot be easily used to deceive the users by mimicking
|
|
|
|
Wget's output. Disallowing non-ASCII characters is another
|
|
|
|
necessary security measure, which makes sure that remote servers
|
|
|
|
cannot garble the screen or guess the local charset and perform
|
|
|
|
homographic attacks.
|
|
|
|
|
|
|
|
Of course, the above mandates that escnonprint only be used in
|
|
|
|
contexts expected to be ASCII, such as when printing host names,
|
|
|
|
URL components, HTTP headers, FTP server messages, and the like.
|
|
|
|
|
|
|
|
ESCAPE is the leading character of the escape sequence. BASE
|
|
|
|
should be the base of the escape sequence, and must be either 8 for
|
|
|
|
octal or 16 for hex.
|
2005-03-04 14:34:31 -05:00
|
|
|
|
|
|
|
DEST must point to a location with sufficient room to store an
|
|
|
|
encoded version of SOURCE. */
|
|
|
|
|
|
|
|
static void
|
2005-05-05 09:47:20 -04:00
|
|
|
copy_and_escape (const char *source, char *dest, char escape, int base)
|
2005-03-04 14:34:31 -05:00
|
|
|
{
|
2005-05-05 12:39:19 -04:00
|
|
|
const char *from = source;
|
|
|
|
char *to = dest;
|
|
|
|
unsigned char c;
|
2005-03-04 14:34:31 -05:00
|
|
|
|
2005-05-05 12:39:19 -04:00
|
|
|
/* Copy chars from SOURCE to DEST, escaping non-printable ones. */
|
2005-05-05 09:47:20 -04:00
|
|
|
switch (base)
|
2005-03-04 14:34:31 -05:00
|
|
|
{
|
2005-05-05 09:47:20 -04:00
|
|
|
case 8:
|
2005-05-05 12:39:19 -04:00
|
|
|
while ((c = *from++) != '\0')
|
2007-10-14 17:46:24 -04:00
|
|
|
if (c_isprint (c))
|
2007-08-02 23:38:21 -04:00
|
|
|
*to++ = c;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*to++ = escape;
|
|
|
|
*to++ = '0' + (c >> 6);
|
|
|
|
*to++ = '0' + ((c >> 3) & 7);
|
|
|
|
*to++ = '0' + (c & 7);
|
|
|
|
}
|
2005-05-05 09:47:20 -04:00
|
|
|
break;
|
|
|
|
case 16:
|
2005-05-05 12:39:19 -04:00
|
|
|
while ((c = *from++) != '\0')
|
2007-10-14 17:46:24 -04:00
|
|
|
if (c_isprint (c))
|
2007-08-02 23:38:21 -04:00
|
|
|
*to++ = c;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*to++ = escape;
|
|
|
|
*to++ = XNUM_TO_DIGIT (c >> 4);
|
|
|
|
*to++ = XNUM_TO_DIGIT (c & 0xf);
|
|
|
|
}
|
2005-05-05 09:47:20 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort ();
|
2005-03-04 14:34:31 -05:00
|
|
|
}
|
|
|
|
*to = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
#define RING_SIZE 3
|
|
|
|
struct ringel {
|
|
|
|
char *buffer;
|
|
|
|
int size;
|
|
|
|
};
|
2007-08-02 23:38:21 -04:00
|
|
|
static struct ringel ring[RING_SIZE]; /* ring data */
|
2005-03-04 14:34:31 -05:00
|
|
|
|
|
|
|
static const char *
|
2005-05-05 09:47:20 -04:00
|
|
|
escnonprint_internal (const char *str, char escape, int base)
|
2005-03-04 14:34:31 -05:00
|
|
|
{
|
2007-08-02 23:38:21 -04:00
|
|
|
static int ringpos; /* current ring position */
|
2005-05-08 12:16:17 -04:00
|
|
|
int nprcnt;
|
2005-03-04 14:34:31 -05:00
|
|
|
|
2005-05-05 09:47:20 -04:00
|
|
|
assert (base == 8 || base == 16);
|
|
|
|
|
2005-05-08 12:16:17 -04:00
|
|
|
nprcnt = count_nonprint (str);
|
2005-03-04 14:34:31 -05:00
|
|
|
if (nprcnt == 0)
|
|
|
|
/* If there are no non-printable chars in STR, don't bother
|
|
|
|
copying anything, just return STR. */
|
|
|
|
return str;
|
|
|
|
|
|
|
|
{
|
|
|
|
/* Set up a pointer to the current ring position, so we can write
|
|
|
|
simply r->X instead of ring[ringpos].X. */
|
|
|
|
struct ringel *r = ring + ringpos;
|
|
|
|
|
2005-05-05 09:47:20 -04:00
|
|
|
/* Every non-printable character is replaced with the escape char
|
|
|
|
and three (or two, depending on BASE) *additional* chars. Size
|
|
|
|
must also include the length of the original string and one
|
2005-03-04 14:34:31 -05:00
|
|
|
additional char for the terminating \0. */
|
2005-05-05 09:47:20 -04:00
|
|
|
int needed_size = strlen (str) + 1 + (base == 8 ? 3 * nprcnt : 2 * nprcnt);
|
2005-03-04 14:34:31 -05:00
|
|
|
|
|
|
|
/* If the current buffer is uninitialized or too small,
|
|
|
|
(re)allocate it. */
|
|
|
|
if (r->buffer == NULL || r->size < needed_size)
|
2005-03-20 10:07:40 -05:00
|
|
|
{
|
2007-08-02 23:38:21 -04:00
|
|
|
r->buffer = xrealloc (r->buffer, needed_size);
|
|
|
|
r->size = needed_size;
|
2005-03-20 10:07:40 -05:00
|
|
|
}
|
2005-03-04 14:34:31 -05:00
|
|
|
|
2005-05-05 09:47:20 -04:00
|
|
|
copy_and_escape (str, r->buffer, escape, base);
|
2005-03-04 14:34:31 -05:00
|
|
|
ringpos = (ringpos + 1) % RING_SIZE;
|
|
|
|
return r->buffer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return a pointer to a static copy of STR with the non-printable
|
|
|
|
characters escaped as \ooo. If there are no non-printable
|
2005-05-05 09:47:20 -04:00
|
|
|
characters in STR, STR is returned. See copy_and_escape for more
|
|
|
|
information on which characters are considered non-printable.
|
2005-03-04 14:34:31 -05:00
|
|
|
|
2005-05-15 09:15:08 -04:00
|
|
|
DON'T call this function on translated strings because escaping
|
|
|
|
will break them. Don't call it on literal strings from the source,
|
|
|
|
which are by definition trusted. If newlines are allowed in the
|
|
|
|
string, escape and print it line by line because escaping the whole
|
|
|
|
string will convert newlines to \012. (This is so that expectedly
|
|
|
|
single-line messages cannot use embedded newlines to mimic Wget's
|
|
|
|
output and deceive the user.)
|
|
|
|
|
|
|
|
escnonprint doesn't quote its escape character because it is notf
|
|
|
|
meant as a general and reversible quoting mechanism, but as a quick
|
|
|
|
way to defang binary junk sent by malicious or buggy servers.
|
|
|
|
|
2005-03-04 14:34:31 -05:00
|
|
|
NOTE: since this function can return a pointer to static data, be
|
|
|
|
careful to copy its result before calling it again. However, to be
|
|
|
|
more useful with printf, it maintains an internal ring of static
|
|
|
|
buffers to return. Currently the ring size is 3, which means you
|
|
|
|
can print up to three values in the same printf; if more is needed,
|
|
|
|
bump RING_SIZE. */
|
|
|
|
|
|
|
|
const char *
|
|
|
|
escnonprint (const char *str)
|
|
|
|
{
|
2005-05-05 09:47:20 -04:00
|
|
|
return escnonprint_internal (str, '\\', 8);
|
2005-03-04 14:34:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Return a pointer to a static copy of STR with the non-printable
|
|
|
|
characters escaped as %XX. If there are no non-printable
|
2005-05-15 09:15:08 -04:00
|
|
|
characters in STR, STR is returned.
|
2005-03-04 14:34:31 -05:00
|
|
|
|
2005-05-15 09:15:08 -04:00
|
|
|
See escnonprint for usage details. */
|
2005-03-04 14:34:31 -05:00
|
|
|
|
|
|
|
const char *
|
|
|
|
escnonprint_uri (const char *str)
|
|
|
|
{
|
2005-05-05 09:47:20 -04:00
|
|
|
return escnonprint_internal (str, '%', 16);
|
2005-03-04 14:34:31 -05:00
|
|
|
}
|
2005-03-20 10:07:40 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
log_cleanup (void)
|
|
|
|
{
|
2008-05-31 01:42:36 -04:00
|
|
|
size_t i;
|
2005-03-20 10:07:40 -05:00
|
|
|
for (i = 0; i < countof (ring); i++)
|
2014-11-29 11:54:20 -05:00
|
|
|
xfree (ring[i].buffer);
|
2005-03-20 10:07:40 -05:00
|
|
|
}
|
2014-11-20 10:35:34 -05:00
|
|
|
|
2001-12-10 00:31:45 -05:00
|
|
|
/* When SIGHUP or SIGUSR1 are received, the output is redirected
|
|
|
|
elsewhere. Such redirection is only allowed once. */
|
2005-06-27 14:19:22 -04:00
|
|
|
static enum { RR_NONE, RR_REQUESTED, RR_DONE } redirect_request = RR_NONE;
|
2001-12-10 00:31:45 -05:00
|
|
|
static const char *redirect_request_signal_name;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2001-12-10 00:31:45 -05:00
|
|
|
/* Redirect output to `wget-log'. */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
2001-12-10 00:31:45 -05:00
|
|
|
static void
|
|
|
|
redirect_output (void)
|
1999-12-02 02:42:23 -05:00
|
|
|
{
|
2005-03-04 14:26:18 -05:00
|
|
|
char *logfile;
|
2005-06-22 15:38:10 -04:00
|
|
|
logfp = unique_create (DEFAULT_LOGFILE, false, &logfile);
|
2005-03-04 14:26:18 -05:00
|
|
|
if (logfp)
|
|
|
|
{
|
2008-04-16 06:16:37 -04:00
|
|
|
fprintf (stderr, _("\n%s received, redirecting output to %s.\n"),
|
|
|
|
redirect_request_signal_name, quote (logfile));
|
2005-03-04 14:26:18 -05:00
|
|
|
xfree (logfile);
|
|
|
|
/* Dump the context output to the newly opened log. */
|
|
|
|
log_dump_context ();
|
|
|
|
}
|
|
|
|
else
|
1999-12-02 02:42:23 -05:00
|
|
|
{
|
2000-11-04 23:38:31 -05:00
|
|
|
/* Eek! Opening the alternate log file has failed. Nothing we
|
|
|
|
can do but disable printing completely. */
|
2005-03-04 14:26:18 -05:00
|
|
|
fprintf (stderr, _("\n%s received.\n"), redirect_request_signal_name);
|
2001-12-10 00:31:45 -05:00
|
|
|
fprintf (stderr, _("%s: %s; disabling logging.\n"),
|
2013-04-26 08:42:30 -04:00
|
|
|
(logfile) ? logfile : DEFAULT_LOGFILE, strerror (errno));
|
2005-06-22 15:38:10 -04:00
|
|
|
inhibit_logging = true;
|
2001-12-10 00:31:45 -05:00
|
|
|
}
|
2005-06-22 15:38:10 -04:00
|
|
|
save_context_p = false;
|
2001-12-10 00:31:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check whether a signal handler requested the output to be
|
|
|
|
redirected. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
check_redirect_output (void)
|
|
|
|
{
|
|
|
|
if (redirect_request == RR_REQUESTED)
|
|
|
|
{
|
|
|
|
redirect_request = RR_DONE;
|
|
|
|
redirect_output ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Request redirection at a convenient time. This may be called from
|
|
|
|
a signal handler. */
|
|
|
|
|
|
|
|
void
|
|
|
|
log_request_redirect_output (const char *signal_name)
|
|
|
|
{
|
|
|
|
if (redirect_request == RR_NONE && save_context_p)
|
|
|
|
/* Request output redirection. The request will be processed by
|
|
|
|
check_redirect_output(), which is called from entry point log
|
|
|
|
functions. */
|
|
|
|
redirect_request = RR_REQUESTED;
|
|
|
|
redirect_request_signal_name = signal_name;
|
1999-12-02 02:42:23 -05:00
|
|
|
}
|