1/*
2* GIT - The information manager from hell
3*
4* Copyright (C) 2000-2002 Michael R. Elkins <me@mutt.org>
5* Copyright (C) 2002-2004 Oswald Buddenhagen <ossi@users.sf.net>
6* Copyright (C) 2004 Theodore Y. Ts'o <tytso@mit.edu>
7* Copyright (C) 2006 Mike McCormack
8* Copyright (C) 2006 Christian Couder
9*
10* This program is free software; you can redistribute it and/or modify
11* it under the terms of the GNU General Public License as published by
12* the Free Software Foundation; either version 2 of the License, or
13* (at your option) any later version.
14*
15* This program is distributed in the hope that it will be useful,
16* but WITHOUT ANY WARRANTY; without even the implied warranty of
17* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18* GNU General Public License for more details.
19*
20* You should have received a copy of the GNU General Public License
21* along with this program; if not, write to the Free Software
22* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23*/
2425
#include "cache.h"
26#include "quote.h"
2728
/* Stolen from "imap-send.c". */
29int nfvasprintf(char **strp, const char *fmt, va_list ap)
30{
31int len;
32char tmp[1024];
3334
if ((len = vsnprintf(tmp, sizeof(tmp), fmt, ap)) < 0 ||
35!(*strp = xmalloc(len + 1)))
36die("Fatal: Out of memory\n");
37if (len >= (int)sizeof(tmp))
38vsprintf(*strp, fmt, ap);
39else
40memcpy(*strp, tmp, len + 1);
41return len;
42}
4344
int nfasprintf(char **str, const char *fmt, ...)
45{
46int rc;
47va_list args;
4849
va_start(args, fmt);
50rc = nfvasprintf(str, fmt, args);
51va_end(args);
52return rc;
53}
5455
/* Get a trace file descriptor from GIT_TRACE env variable. */
56static int get_trace_fd(int *need_close)
57{
58char *trace = getenv("GIT_TRACE");
5960
if (!trace || !strcmp(trace, "") ||
61!strcmp(trace, "0") || !strcasecmp(trace, "false"))
62return 0;
63if (!strcmp(trace, "1") || !strcasecmp(trace, "true"))
64return STDERR_FILENO;
65if (strlen(trace) == 1 && isdigit(*trace))
66return atoi(trace);
67if (*trace == '/') {
68int fd = open(trace, O_WRONLY | O_APPEND | O_CREAT, 0666);
69if (fd == -1) {
70fprintf(stderr,
71"Could not open '%s' for tracing: %s\n"
72"Defaulting to tracing on stderr...\n",
73trace, strerror(errno));
74return STDERR_FILENO;
75}
76*need_close = 1;
77return fd;
78}
7980
fprintf(stderr, "What does '%s' for GIT_TRACE means ?\n", trace);
81fprintf(stderr, "If you want to trace into a file, "
82"then please set GIT_TRACE to an absolute pathname "
83"(starting with /).\n");
84fprintf(stderr, "Defaulting to tracing on stderr...\n");
8586
return STDERR_FILENO;
87}
8889
static const char err_msg[] = "Could not trace into fd given by "
90"GIT_TRACE environment variable";
9192
void trace_printf(const char *format, ...)
93{
94char *trace_str;
95va_list rest;
96int need_close = 0;
97int fd = get_trace_fd(&need_close);
9899
if (!fd)
100return;
101102
va_start(rest, format);
103nfvasprintf(&trace_str, format, rest);
104va_end(rest);
105106
write_or_whine_pipe(fd, trace_str, strlen(trace_str), err_msg);
107108
free(trace_str);
109110
if (need_close)
111close(fd);
112}
113114
void trace_argv_printf(const char **argv, int count, const char *format, ...)
115{
116char *argv_str, *format_str, *trace_str;
117size_t argv_len, format_len, trace_len;
118va_list rest;
119int need_close = 0;
120int fd = get_trace_fd(&need_close);
121122
if (!fd)
123return;
124125
/* Get the argv string. */
126argv_str = sq_quote_argv(argv, count);
127argv_len = strlen(argv_str);
128129
/* Get the formated string. */
130va_start(rest, format);
131nfvasprintf(&format_str, format, rest);
132va_end(rest);
133134
/* Allocate buffer for trace string. */
135format_len = strlen(format_str);
136trace_len = argv_len + format_len + 1; /* + 1 for \n */
137trace_str = xmalloc(trace_len + 1);
138139
/* Copy everything into the trace string. */
140strncpy(trace_str, format_str, format_len);
141strncpy(trace_str + format_len, argv_str, argv_len);
142strcpy(trace_str + trace_len - 1, "\n");
143144
write_or_whine_pipe(fd, trace_str, trace_len, err_msg);
145146
free(argv_str);
147free(format_str);
148free(trace_str);
149150
if (need_close)
151close(fd);
152}