2012-06-03 17:03:23 +02:00
|
|
|
/*
|
|
|
|
* Logging support
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2016-01-29 18:50:05 +01:00
|
|
|
#include "qemu/osdep.h"
|
2012-06-03 17:03:23 +02:00
|
|
|
#include "qemu-common.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/log.h"
|
2016-03-15 15:30:20 +01:00
|
|
|
#include "qemu/range.h"
|
|
|
|
#include "qemu/error-report.h"
|
2016-06-15 19:27:15 +02:00
|
|
|
#include "qapi/error.h"
|
2016-03-15 15:30:20 +01:00
|
|
|
#include "qemu/cutils.h"
|
2016-01-07 14:55:32 +01:00
|
|
|
#include "trace/control.h"
|
2012-06-03 17:03:23 +02:00
|
|
|
|
2013-01-22 11:08:03 +01:00
|
|
|
static char *logfilename;
|
2012-06-03 18:35:32 +02:00
|
|
|
FILE *qemu_logfile;
|
|
|
|
int qemu_loglevel;
|
2012-06-03 17:03:23 +02:00
|
|
|
static int log_append = 0;
|
2016-03-15 15:30:20 +01:00
|
|
|
static GArray *debug_regions;
|
2012-06-03 17:03:23 +02:00
|
|
|
|
2016-06-24 04:15:55 +02:00
|
|
|
/* Return the number of characters emitted. */
|
|
|
|
int qemu_log(const char *fmt, ...)
|
2012-06-03 18:35:32 +02:00
|
|
|
{
|
2016-06-24 04:15:55 +02:00
|
|
|
int ret = 0;
|
2012-06-03 18:35:32 +02:00
|
|
|
if (qemu_logfile) {
|
2016-06-24 04:15:55 +02:00
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
|
|
ret = vfprintf(qemu_logfile, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
/* Don't pass back error results. */
|
|
|
|
if (ret < 0) {
|
|
|
|
ret = 0;
|
|
|
|
}
|
2012-06-03 18:35:32 +02:00
|
|
|
}
|
2016-06-24 04:15:55 +02:00
|
|
|
return ret;
|
2012-06-03 18:35:32 +02:00
|
|
|
}
|
|
|
|
|
2015-12-04 13:12:57 +01:00
|
|
|
static bool log_uses_own_buffers;
|
|
|
|
|
2012-06-03 17:03:23 +02:00
|
|
|
/* enable or disable low levels log */
|
2015-12-04 13:12:57 +01:00
|
|
|
void qemu_set_log(int log_flags)
|
2012-06-03 17:03:23 +02:00
|
|
|
{
|
2012-06-03 18:35:32 +02:00
|
|
|
qemu_loglevel = log_flags;
|
2016-01-07 14:55:30 +01:00
|
|
|
#ifdef CONFIG_TRACE_LOG
|
|
|
|
qemu_loglevel |= LOG_TRACE;
|
|
|
|
#endif
|
2016-02-29 12:18:40 +01:00
|
|
|
if (!qemu_logfile &&
|
|
|
|
(is_daemonized() ? logfilename != NULL : qemu_loglevel)) {
|
2013-02-26 18:52:40 +01:00
|
|
|
if (logfilename) {
|
|
|
|
qemu_logfile = fopen(logfilename, log_append ? "a" : "w");
|
|
|
|
if (!qemu_logfile) {
|
|
|
|
perror(logfilename);
|
|
|
|
_exit(1);
|
|
|
|
}
|
2016-02-18 12:38:38 +01:00
|
|
|
/* In case we are a daemon redirect stderr to logfile */
|
|
|
|
if (is_daemonized()) {
|
|
|
|
dup2(fileno(qemu_logfile), STDERR_FILENO);
|
|
|
|
fclose(qemu_logfile);
|
|
|
|
/* This will skip closing logfile in qemu_log_close() */
|
|
|
|
qemu_logfile = stderr;
|
|
|
|
}
|
2013-02-26 18:52:40 +01:00
|
|
|
} else {
|
|
|
|
/* Default to stderr if no log file specified */
|
2016-02-29 12:18:40 +01:00
|
|
|
assert(!is_daemonized());
|
2013-02-26 18:52:40 +01:00
|
|
|
qemu_logfile = stderr;
|
2012-06-03 17:03:23 +02:00
|
|
|
}
|
|
|
|
/* must avoid mmap() usage of glibc by setting a buffer "by hand" */
|
2015-12-04 13:12:57 +01:00
|
|
|
if (log_uses_own_buffers) {
|
2012-06-03 17:03:23 +02:00
|
|
|
static char logfile_buf[4096];
|
2012-07-07 16:40:18 +02:00
|
|
|
|
2012-06-03 18:35:32 +02:00
|
|
|
setvbuf(qemu_logfile, logfile_buf, _IOLBF, sizeof(logfile_buf));
|
2012-07-07 16:40:18 +02:00
|
|
|
} else {
|
|
|
|
#if defined(_WIN32)
|
|
|
|
/* Win32 doesn't support line-buffering, so use unbuffered output. */
|
|
|
|
setvbuf(qemu_logfile, NULL, _IONBF, 0);
|
2012-06-03 17:03:23 +02:00
|
|
|
#else
|
2012-07-07 16:40:18 +02:00
|
|
|
setvbuf(qemu_logfile, NULL, _IOLBF, 0);
|
2012-06-03 17:03:23 +02:00
|
|
|
#endif
|
2012-07-07 16:40:18 +02:00
|
|
|
log_append = 1;
|
|
|
|
}
|
2012-06-03 17:03:23 +02:00
|
|
|
}
|
2016-02-29 12:18:40 +01:00
|
|
|
if (qemu_logfile &&
|
|
|
|
(is_daemonized() ? logfilename == NULL : !qemu_loglevel)) {
|
2013-02-26 18:52:40 +01:00
|
|
|
qemu_log_close();
|
2012-06-03 17:03:23 +02:00
|
|
|
}
|
|
|
|
}
|
2015-12-04 13:12:57 +01:00
|
|
|
|
|
|
|
void qemu_log_needs_buffers(void)
|
|
|
|
{
|
|
|
|
log_uses_own_buffers = true;
|
|
|
|
}
|
|
|
|
|
2016-03-15 15:30:23 +01:00
|
|
|
/*
|
|
|
|
* Allow the user to include %d in their logfile which will be
|
|
|
|
* substituted with the current PID. This is useful for debugging many
|
|
|
|
* nested linux-user tasks but will result in lots of logs.
|
|
|
|
*/
|
2016-06-15 19:27:16 +02:00
|
|
|
void qemu_set_log_filename(const char *filename, Error **errp)
|
2012-06-03 17:03:23 +02:00
|
|
|
{
|
2016-03-15 15:30:23 +01:00
|
|
|
char *pidstr;
|
2013-01-22 11:08:03 +01:00
|
|
|
g_free(logfilename);
|
2016-03-15 15:30:23 +01:00
|
|
|
|
|
|
|
pidstr = strstr(filename, "%");
|
|
|
|
if (pidstr) {
|
|
|
|
/* We only accept one %d, no other format strings */
|
|
|
|
if (pidstr[1] != 'd' || strchr(pidstr + 2, '%')) {
|
2016-06-15 19:27:16 +02:00
|
|
|
error_setg(errp, "Bad logfile format: %s", filename);
|
|
|
|
return;
|
2016-03-15 15:30:23 +01:00
|
|
|
} else {
|
|
|
|
logfilename = g_strdup_printf(filename, getpid());
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
logfilename = g_strdup(filename);
|
|
|
|
}
|
2013-02-26 18:52:40 +01:00
|
|
|
qemu_log_close();
|
2013-02-11 17:41:23 +01:00
|
|
|
qemu_set_log(qemu_loglevel);
|
2012-06-03 17:03:23 +02:00
|
|
|
}
|
|
|
|
|
2016-03-15 15:30:20 +01:00
|
|
|
/* Returns true if addr is in our debug filter or no filter defined
|
|
|
|
*/
|
|
|
|
bool qemu_log_in_addr_range(uint64_t addr)
|
|
|
|
{
|
|
|
|
if (debug_regions) {
|
|
|
|
int i = 0;
|
|
|
|
for (i = 0; i < debug_regions->len; i++) {
|
log: Clean up misuse of Range for -dfilter
Range encodes an integer interval [a,b] as { begin = a, end = b + 1 },
where a \in [0,2^64-1] and b \in [1,2^64]. Thus, zero end is to be
interpreted as 2^64.
The implementation of -dfilter (commit 3514552) uses Range
differently: it encodes [a,b] as { begin = a, end = b }. The code
works, but it contradicts the specification of Range in range.h.
Switch to the specified representation. Since it can't represent
[0,UINT64_MAX], we have to reject that now. Add a test for it.
While we're rejecting anyway: observe that we reject -dfilter LOB..UPB
where LOB > UPB when UPB is zero, but happily create an empty Range
when it isn't. Reject it then, too, and add a test for it.
While there, add a positive test for the problematic upper bound
UINT64_MAX.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
2016-07-01 13:47:46 +02:00
|
|
|
Range *range = &g_array_index(debug_regions, Range, i);
|
2016-07-01 13:47:47 +02:00
|
|
|
if (range_contains(range, addr)) {
|
2016-03-15 15:30:20 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-15 19:27:15 +02:00
|
|
|
void qemu_set_dfilter_ranges(const char *filter_spec, Error **errp)
|
2016-03-15 15:30:20 +01:00
|
|
|
{
|
|
|
|
gchar **ranges = g_strsplit(filter_spec, ",", 0);
|
2016-06-15 19:27:15 +02:00
|
|
|
int i;
|
2016-06-15 19:27:14 +02:00
|
|
|
|
|
|
|
if (debug_regions) {
|
|
|
|
g_array_unref(debug_regions);
|
|
|
|
debug_regions = NULL;
|
|
|
|
}
|
|
|
|
|
2016-06-15 19:27:15 +02:00
|
|
|
debug_regions = g_array_sized_new(FALSE, FALSE,
|
|
|
|
sizeof(Range), g_strv_length(ranges));
|
|
|
|
for (i = 0; ranges[i]; i++) {
|
|
|
|
const char *r = ranges[i];
|
|
|
|
const char *range_op, *r2, *e;
|
log: Clean up misuse of Range for -dfilter
Range encodes an integer interval [a,b] as { begin = a, end = b + 1 },
where a \in [0,2^64-1] and b \in [1,2^64]. Thus, zero end is to be
interpreted as 2^64.
The implementation of -dfilter (commit 3514552) uses Range
differently: it encodes [a,b] as { begin = a, end = b }. The code
works, but it contradicts the specification of Range in range.h.
Switch to the specified representation. Since it can't represent
[0,UINT64_MAX], we have to reject that now. Add a test for it.
While we're rejecting anyway: observe that we reject -dfilter LOB..UPB
where LOB > UPB when UPB is zero, but happily create an empty Range
when it isn't. Reject it then, too, and add a test for it.
While there, add a positive test for the problematic upper bound
UINT64_MAX.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
2016-07-01 13:47:46 +02:00
|
|
|
uint64_t r1val, r2val, lob, upb;
|
2016-06-15 19:27:15 +02:00
|
|
|
struct Range range;
|
|
|
|
|
|
|
|
range_op = strstr(r, "-");
|
|
|
|
r2 = range_op ? range_op + 1 : NULL;
|
|
|
|
if (!range_op) {
|
|
|
|
range_op = strstr(r, "+");
|
|
|
|
r2 = range_op ? range_op + 1 : NULL;
|
|
|
|
}
|
|
|
|
if (!range_op) {
|
|
|
|
range_op = strstr(r, "..");
|
|
|
|
r2 = range_op ? range_op + 2 : NULL;
|
|
|
|
}
|
|
|
|
if (!range_op) {
|
|
|
|
error_setg(errp, "Bad range specifier");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2017-02-21 21:13:50 +01:00
|
|
|
if (qemu_strtou64(r, &e, 0, &r1val)
|
2016-06-15 19:27:15 +02:00
|
|
|
|| e != range_op) {
|
|
|
|
error_setg(errp, "Invalid number to the left of %.*s",
|
|
|
|
(int)(r2 - range_op), range_op);
|
|
|
|
goto out;
|
|
|
|
}
|
2017-02-21 21:13:50 +01:00
|
|
|
if (qemu_strtou64(r2, NULL, 0, &r2val)) {
|
2016-06-15 19:27:15 +02:00
|
|
|
error_setg(errp, "Invalid number to the right of %.*s",
|
|
|
|
(int)(r2 - range_op), range_op);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (*range_op) {
|
|
|
|
case '+':
|
log: Clean up misuse of Range for -dfilter
Range encodes an integer interval [a,b] as { begin = a, end = b + 1 },
where a \in [0,2^64-1] and b \in [1,2^64]. Thus, zero end is to be
interpreted as 2^64.
The implementation of -dfilter (commit 3514552) uses Range
differently: it encodes [a,b] as { begin = a, end = b }. The code
works, but it contradicts the specification of Range in range.h.
Switch to the specified representation. Since it can't represent
[0,UINT64_MAX], we have to reject that now. Add a test for it.
While we're rejecting anyway: observe that we reject -dfilter LOB..UPB
where LOB > UPB when UPB is zero, but happily create an empty Range
when it isn't. Reject it then, too, and add a test for it.
While there, add a positive test for the problematic upper bound
UINT64_MAX.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
2016-07-01 13:47:46 +02:00
|
|
|
lob = r1val;
|
|
|
|
upb = r1val + r2val - 1;
|
2016-06-15 19:27:15 +02:00
|
|
|
break;
|
|
|
|
case '-':
|
log: Clean up misuse of Range for -dfilter
Range encodes an integer interval [a,b] as { begin = a, end = b + 1 },
where a \in [0,2^64-1] and b \in [1,2^64]. Thus, zero end is to be
interpreted as 2^64.
The implementation of -dfilter (commit 3514552) uses Range
differently: it encodes [a,b] as { begin = a, end = b }. The code
works, but it contradicts the specification of Range in range.h.
Switch to the specified representation. Since it can't represent
[0,UINT64_MAX], we have to reject that now. Add a test for it.
While we're rejecting anyway: observe that we reject -dfilter LOB..UPB
where LOB > UPB when UPB is zero, but happily create an empty Range
when it isn't. Reject it then, too, and add a test for it.
While there, add a positive test for the problematic upper bound
UINT64_MAX.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
2016-07-01 13:47:46 +02:00
|
|
|
upb = r1val;
|
|
|
|
lob = r1val - (r2val - 1);
|
2016-06-15 19:27:15 +02:00
|
|
|
break;
|
|
|
|
case '.':
|
log: Clean up misuse of Range for -dfilter
Range encodes an integer interval [a,b] as { begin = a, end = b + 1 },
where a \in [0,2^64-1] and b \in [1,2^64]. Thus, zero end is to be
interpreted as 2^64.
The implementation of -dfilter (commit 3514552) uses Range
differently: it encodes [a,b] as { begin = a, end = b }. The code
works, but it contradicts the specification of Range in range.h.
Switch to the specified representation. Since it can't represent
[0,UINT64_MAX], we have to reject that now. Add a test for it.
While we're rejecting anyway: observe that we reject -dfilter LOB..UPB
where LOB > UPB when UPB is zero, but happily create an empty Range
when it isn't. Reject it then, too, and add a test for it.
While there, add a positive test for the problematic upper bound
UINT64_MAX.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
2016-07-01 13:47:46 +02:00
|
|
|
lob = r1val;
|
|
|
|
upb = r2val;
|
2016-06-15 19:27:15 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached();
|
2016-03-15 15:30:20 +01:00
|
|
|
}
|
2016-07-01 13:47:49 +02:00
|
|
|
if (lob > upb) {
|
log: Clean up misuse of Range for -dfilter
Range encodes an integer interval [a,b] as { begin = a, end = b + 1 },
where a \in [0,2^64-1] and b \in [1,2^64]. Thus, zero end is to be
interpreted as 2^64.
The implementation of -dfilter (commit 3514552) uses Range
differently: it encodes [a,b] as { begin = a, end = b }. The code
works, but it contradicts the specification of Range in range.h.
Switch to the specified representation. Since it can't represent
[0,UINT64_MAX], we have to reject that now. Add a test for it.
While we're rejecting anyway: observe that we reject -dfilter LOB..UPB
where LOB > UPB when UPB is zero, but happily create an empty Range
when it isn't. Reject it then, too, and add a test for it.
While there, add a positive test for the problematic upper bound
UINT64_MAX.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
2016-07-01 13:47:46 +02:00
|
|
|
error_setg(errp, "Invalid range");
|
|
|
|
goto out;
|
|
|
|
}
|
2016-07-01 13:47:47 +02:00
|
|
|
range_set_bounds(&range, lob, upb);
|
2016-06-15 19:27:15 +02:00
|
|
|
g_array_append_val(debug_regions, range);
|
2016-03-15 15:30:20 +01:00
|
|
|
}
|
2016-06-15 19:27:15 +02:00
|
|
|
out:
|
|
|
|
g_strfreev(ranges);
|
2016-03-15 15:30:20 +01:00
|
|
|
}
|
|
|
|
|
2016-03-16 12:36:52 +01:00
|
|
|
/* fflush() the log file */
|
|
|
|
void qemu_log_flush(void)
|
|
|
|
{
|
|
|
|
fflush(qemu_logfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Close the log file */
|
|
|
|
void qemu_log_close(void)
|
|
|
|
{
|
|
|
|
if (qemu_logfile) {
|
|
|
|
if (qemu_logfile != stderr) {
|
|
|
|
fclose(qemu_logfile);
|
|
|
|
}
|
|
|
|
qemu_logfile = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-11 17:41:25 +01:00
|
|
|
const QEMULogItem qemu_log_items[] = {
|
2012-06-03 17:03:23 +02:00
|
|
|
{ CPU_LOG_TB_OUT_ASM, "out_asm",
|
|
|
|
"show generated host assembly code for each compiled TB" },
|
|
|
|
{ CPU_LOG_TB_IN_ASM, "in_asm",
|
|
|
|
"show target assembly code for each compiled TB" },
|
|
|
|
{ CPU_LOG_TB_OP, "op",
|
|
|
|
"show micro ops for each compiled TB" },
|
|
|
|
{ CPU_LOG_TB_OP_OPT, "op_opt",
|
2016-06-24 05:34:33 +02:00
|
|
|
"show micro ops after optimization" },
|
|
|
|
{ CPU_LOG_TB_OP_IND, "op_ind",
|
|
|
|
"show micro ops before indirect lowering" },
|
2012-06-03 17:03:23 +02:00
|
|
|
{ CPU_LOG_INT, "int",
|
|
|
|
"show interrupts/exceptions in short format" },
|
|
|
|
{ CPU_LOG_EXEC, "exec",
|
|
|
|
"show trace before each executed TB (lots of logs)" },
|
|
|
|
{ CPU_LOG_TB_CPU, "cpu",
|
2016-03-15 15:30:17 +01:00
|
|
|
"show CPU registers before entering a TB (lots of logs)" },
|
2018-05-15 15:58:44 +02:00
|
|
|
{ CPU_LOG_TB_FPU, "fpu",
|
|
|
|
"include FPU registers in the 'cpu' logging" },
|
2014-12-13 17:48:18 +01:00
|
|
|
{ CPU_LOG_MMU, "mmu",
|
|
|
|
"log MMU-related activities" },
|
2012-06-03 17:03:23 +02:00
|
|
|
{ CPU_LOG_PCALL, "pcall",
|
2012-07-07 16:40:18 +02:00
|
|
|
"x86 only: show protected mode far calls/returns/exceptions" },
|
2012-06-03 17:03:23 +02:00
|
|
|
{ CPU_LOG_RESET, "cpu_reset",
|
2015-01-27 13:11:26 +01:00
|
|
|
"show CPU state before CPU resets" },
|
2012-06-03 19:04:28 +02:00
|
|
|
{ LOG_UNIMP, "unimp",
|
|
|
|
"log unimplemented functionality" },
|
2012-10-18 15:11:35 +02:00
|
|
|
{ LOG_GUEST_ERROR, "guest_errors",
|
|
|
|
"log when the guest OS does something invalid (eg accessing a\n"
|
|
|
|
"non-existent register)" },
|
2015-11-13 12:32:19 +01:00
|
|
|
{ CPU_LOG_PAGE, "page",
|
|
|
|
"dump pages at beginning of user mode emulation" },
|
2015-09-17 00:33:53 +02:00
|
|
|
{ CPU_LOG_TB_NOCHAIN, "nochain",
|
|
|
|
"do not chain compiled TBs so that \"exec\" and \"cpu\" show\n"
|
|
|
|
"complete traces" },
|
2012-06-03 17:03:23 +02:00
|
|
|
{ 0, NULL, NULL },
|
|
|
|
};
|
|
|
|
|
|
|
|
/* takes a comma separated list of log masks. Return 0 if error. */
|
2013-02-11 17:41:22 +01:00
|
|
|
int qemu_str_to_log_mask(const char *str)
|
2012-06-03 17:03:23 +02:00
|
|
|
{
|
2013-02-11 17:41:25 +01:00
|
|
|
const QEMULogItem *item;
|
2016-09-06 20:25:43 +02:00
|
|
|
int mask = 0;
|
|
|
|
char **parts = g_strsplit(str, ",", 0);
|
|
|
|
char **tmp;
|
2012-06-03 17:03:23 +02:00
|
|
|
|
2016-09-06 20:25:43 +02:00
|
|
|
for (tmp = parts; tmp && *tmp; tmp++) {
|
|
|
|
if (g_str_equal(*tmp, "all")) {
|
2013-02-11 17:41:25 +01:00
|
|
|
for (item = qemu_log_items; item->mask != 0; item++) {
|
2012-06-03 17:03:23 +02:00
|
|
|
mask |= item->mask;
|
|
|
|
}
|
2016-01-07 14:55:32 +01:00
|
|
|
#ifdef CONFIG_TRACE_LOG
|
2016-09-06 20:25:43 +02:00
|
|
|
} else if (g_str_has_prefix(*tmp, "trace:") && (*tmp)[6] != '\0') {
|
|
|
|
trace_enable_events((*tmp) + 6);
|
2016-01-07 14:55:32 +01:00
|
|
|
mask |= LOG_TRACE;
|
|
|
|
#endif
|
2012-06-03 17:03:23 +02:00
|
|
|
} else {
|
2013-02-11 17:41:25 +01:00
|
|
|
for (item = qemu_log_items; item->mask != 0; item++) {
|
2016-09-06 20:25:43 +02:00
|
|
|
if (g_str_equal(*tmp, item->name)) {
|
2012-06-03 17:03:23 +02:00
|
|
|
goto found;
|
|
|
|
}
|
|
|
|
}
|
2016-09-06 20:25:43 +02:00
|
|
|
goto error;
|
2016-01-07 14:55:32 +01:00
|
|
|
found:
|
|
|
|
mask |= item->mask;
|
2012-06-03 17:03:23 +02:00
|
|
|
}
|
|
|
|
}
|
2016-09-06 20:25:43 +02:00
|
|
|
|
|
|
|
g_strfreev(parts);
|
2012-06-03 17:03:23 +02:00
|
|
|
return mask;
|
2016-09-06 20:25:43 +02:00
|
|
|
|
|
|
|
error:
|
|
|
|
g_strfreev(parts);
|
|
|
|
return 0;
|
2012-06-03 17:03:23 +02:00
|
|
|
}
|
2013-02-11 17:41:21 +01:00
|
|
|
|
|
|
|
void qemu_print_log_usage(FILE *f)
|
|
|
|
{
|
2013-02-11 17:41:25 +01:00
|
|
|
const QEMULogItem *item;
|
2013-02-11 17:41:21 +01:00
|
|
|
fprintf(f, "Log items (comma separated):\n");
|
2013-02-11 17:41:25 +01:00
|
|
|
for (item = qemu_log_items; item->mask != 0; item++) {
|
2016-01-07 14:55:32 +01:00
|
|
|
fprintf(f, "%-15s %s\n", item->name, item->help);
|
2013-02-11 17:41:21 +01:00
|
|
|
}
|
2016-01-07 14:55:32 +01:00
|
|
|
#ifdef CONFIG_TRACE_LOG
|
|
|
|
fprintf(f, "trace:PATTERN enable trace events\n");
|
|
|
|
fprintf(f, "\nUse \"-d trace:help\" to get a list of trace events.\n\n");
|
|
|
|
#endif
|
2013-02-11 17:41:21 +01:00
|
|
|
}
|