removed ACCESSPERMS mask when transferring a file without perms
[rsync.git] / log.c
blob623940901ee6a2efd735477e9ed08182fbc8122b
1 /*
2 Copyright (C) Andrew Tridgell 1998
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 logging and utility functions
22 tridge, May 1998
24 #include "rsync.h"
26 static FILE *logfile;
29 static void logit(int priority, char *buf)
31 if (logfile) {
32 fprintf(logfile,"%s [%d] %s",
33 timestring(time(NULL)), (int)getpid(), buf);
34 fflush(logfile);
35 } else {
36 syslog(priority, "%s", buf);
40 void log_open(void)
42 static int initialised;
43 int options = LOG_PID;
44 time_t t;
45 char *logf;
47 if (initialised) return;
48 initialised = 1;
50 /* this looks pointless, but it is needed in order for the
51 C library on some systems to fetch the timezone info
52 before the chroot */
53 t = time(NULL);
54 localtime(&t);
56 /* optionally use a log file instead of syslog */
57 logf = lp_log_file();
58 if (logf && *logf) {
59 extern int orig_umask;
60 int old_umask = umask(022 | orig_umask);
61 logfile = fopen(logf, "a");
62 umask(old_umask);
63 return;
66 #ifdef LOG_NDELAY
67 options |= LOG_NDELAY;
68 #endif
70 #ifdef LOG_DAEMON
71 openlog("rsyncd", options, lp_syslog_facility());
72 #else
73 openlog("rsyncd", options);
74 #endif
76 #ifndef LOG_NDELAY
77 logit(LOG_INFO,"rsyncd started\n");
78 #endif
82 /* this is the rsync debugging function. Call it with FINFO, FERROR or FLOG */
83 void rprintf(int fd, const char *format, ...)
85 va_list ap;
86 char buf[1024];
87 int len;
88 FILE *f=NULL;
89 extern int am_daemon;
90 extern int quiet;
91 /* recursion can happen with certain fatal conditions */
93 if (quiet != 0 && fd == FINFO) return;
95 va_start(ap, format);
96 len = vslprintf(buf, sizeof(buf), format, ap);
97 va_end(ap);
99 if (len < 0) exit_cleanup(RERR_MESSAGEIO);
101 if (len > sizeof(buf)-1) exit_cleanup(RERR_MESSAGEIO);
103 buf[len] = 0;
105 if (fd == FLOG) {
106 if (am_daemon) logit(LOG_INFO, buf);
107 return;
110 if (am_daemon) {
111 static int depth;
112 int priority = LOG_INFO;
113 if (fd == FERROR) priority = LOG_WARNING;
115 if (depth) return;
117 depth++;
119 log_open();
120 if (!io_multiplex_write(fd, buf, strlen(buf))) {
121 logit(priority, buf);
124 depth--;
125 return;
128 if (fd == FERROR) {
129 f = stderr;
132 if (fd == FINFO) {
133 extern int am_server;
134 if (am_server)
135 f = stderr;
136 else
137 f = stdout;
140 if (!f) exit_cleanup(RERR_MESSAGEIO);
142 if (fwrite(buf, len, 1, f) != 1) exit_cleanup(RERR_MESSAGEIO);
144 if (buf[len-1] == '\r' || buf[len-1] == '\n') fflush(f);
147 void rflush(int fd)
149 FILE *f = NULL;
150 extern int am_daemon;
152 if (am_daemon) {
153 return;
156 if (fd == FLOG) {
157 return;
160 if (fd == FERROR) {
161 f = stderr;
164 if (fd == FINFO) {
165 extern int am_server;
166 if (am_server)
167 f = stderr;
168 else
169 f = stdout;
172 if (!f) exit_cleanup(RERR_MESSAGEIO);
173 fflush(f);
178 /* a generic logging routine for send/recv, with parameter
179 substitiution */
180 static void log_formatted(int fd,
181 char *format, char *op, struct file_struct *file,
182 struct stats *initial_stats)
184 extern int module_id;
185 extern char *auth_user;
186 char buf[1024];
187 char buf2[1024];
188 char *p, *s, *n;
189 int l;
190 extern struct stats stats;
191 extern int am_sender;
192 extern int am_daemon;
193 int64 b;
195 strlcpy(buf, format, sizeof(buf));
197 for (s=&buf[0];
198 s && (p=strchr(s,'%')); ) {
199 n = NULL;
200 s = p + 1;
202 switch (p[1]) {
203 case 'h': if (am_daemon) n = client_name(0); break;
204 case 'a': if (am_daemon) n = client_addr(0); break;
205 case 'l':
206 slprintf(buf2,sizeof(buf2),"%.0f",
207 (double)file->length);
208 n = buf2;
209 break;
210 case 'p':
211 slprintf(buf2,sizeof(buf2),"%d",
212 (int)getpid());
213 n = buf2;
214 break;
215 case 'o': n = op; break;
216 case 'f':
217 slprintf(buf2, sizeof(buf2), "%s/%s",
218 file->basedir?file->basedir:"",
219 f_name(file));
220 clean_fname(buf2);
221 n = buf2;
222 if (*n == '/') n++;
223 break;
224 case 'm': n = lp_name(module_id); break;
225 case 't': n = timestring(time(NULL)); break;
226 case 'P': n = lp_path(module_id); break;
227 case 'u': n = auth_user; break;
228 case 'b':
229 if (am_sender) {
230 b = stats.total_written -
231 initial_stats->total_written;
232 } else {
233 b = stats.total_read -
234 initial_stats->total_read;
236 slprintf(buf2,sizeof(buf2),"%.0f", (double)b);
237 n = buf2;
238 break;
239 case 'c':
240 if (!am_sender) {
241 b = stats.total_written -
242 initial_stats->total_written;
243 } else {
244 b = stats.total_read -
245 initial_stats->total_read;
247 slprintf(buf2,sizeof(buf2),"%.0f", (double)b);
248 n = buf2;
249 break;
252 if (!n) continue;
254 l = strlen(n);
256 if ((l-1) + ((int)(s - &buf[0])) > sizeof(buf)) {
257 rprintf(FERROR,"buffer overflow expanding %%%c - exiting\n",
258 p[0]);
259 exit_cleanup(RERR_MESSAGEIO);
262 if (l != 2) {
263 memmove(s+(l-1), s+1, strlen(s+1)+1);
265 memcpy(p, n, l);
267 s = p+l;
270 rprintf(fd,"%s\n", buf);
273 /* log the outgoing transfer of a file */
274 void log_send(struct file_struct *file, struct stats *initial_stats)
276 extern int module_id;
277 extern int am_server;
278 extern char *log_format;
280 if (lp_transfer_logging(module_id)) {
281 log_formatted(FLOG, lp_log_format(module_id), "send", file, initial_stats);
282 } else if (log_format && !am_server) {
283 log_formatted(FINFO, log_format, "send", file, initial_stats);
287 /* log the incoming transfer of a file */
288 void log_recv(struct file_struct *file, struct stats *initial_stats)
290 extern int module_id;
291 extern int am_server;
292 extern char *log_format;
294 if (lp_transfer_logging(module_id)) {
295 log_formatted(FLOG, lp_log_format(module_id), "recv", file, initial_stats);
296 } else if (log_format && !am_server) {
297 log_formatted(FINFO, log_format, "recv", file, initial_stats);
301 /* called when the transfer is interrupted for some reason */
302 void log_exit(int code, const char *file, int line)
304 if (code == 0) {
305 extern struct stats stats;
306 rprintf(FLOG,"wrote %.0f bytes read %.0f bytes total size %.0f\n",
307 (double)stats.total_written,
308 (double)stats.total_read,
309 (double)stats.total_size);
310 } else {
311 rprintf(FLOG,"transfer interrupted (code %d) at %s(%d)\n",
312 code, file, line);
316 /* log the incoming transfer of a file for interactive use, this
317 will be called at the end where the client was run
319 it i called when a file starts to be transferred
321 void log_transfer(struct file_struct *file, const char *fname)
323 extern int verbose;
325 if (!verbose) return;
327 rprintf(FINFO,"%s\n", fname);