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
29 static void logit(int priority
, char *buf
)
32 fprintf(logfile
,"%s [%d] %s",
33 timestring(time(NULL
)), (int)getpid(), buf
);
36 syslog(priority
, "%s", buf
);
42 static int initialised
;
43 int options
= LOG_PID
;
47 if (initialised
) return;
50 /* this looks pointless, but it is needed in order for the
51 C library on some systems to fetch the timezone info
56 /* optionally use a log file instead of syslog */
59 extern int orig_umask
;
60 int old_umask
= umask(022 | orig_umask
);
61 logfile
= fopen(logf
, "a");
67 options
|= LOG_NDELAY
;
71 openlog("rsyncd", options
, lp_syslog_facility());
73 openlog("rsyncd", options
);
77 logit(LOG_INFO
,"rsyncd started\n");
82 /* this is the rsync debugging function. Call it with FINFO, FERROR or FLOG */
83 void rprintf(int fd
, const char *format
, ...)
91 /* recursion can happen with certain fatal conditions */
93 if (quiet
!= 0 && fd
== FINFO
) return;
96 len
= vslprintf(buf
, sizeof(buf
), format
, ap
);
99 if (len
< 0) exit_cleanup(RERR_MESSAGEIO
);
101 if (len
> sizeof(buf
)-1) exit_cleanup(RERR_MESSAGEIO
);
106 if (am_daemon
) logit(LOG_INFO
, buf
);
112 int priority
= LOG_INFO
;
113 if (fd
== FERROR
) priority
= LOG_WARNING
;
120 if (!io_multiplex_write(fd
, buf
, strlen(buf
))) {
121 logit(priority
, buf
);
133 extern int am_server
;
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
);
150 extern int am_daemon
;
165 extern int am_server
;
172 if (!f
) exit_cleanup(RERR_MESSAGEIO
);
178 /* a generic logging routine for send/recv, with parameter
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
;
190 extern struct stats stats
;
191 extern int am_sender
;
192 extern int am_daemon
;
195 strlcpy(buf
, format
, sizeof(buf
));
198 s
&& (p
=strchr(s
,'%')); ) {
203 case 'h': if (am_daemon
) n
= client_name(0); break;
204 case 'a': if (am_daemon
) n
= client_addr(0); break;
206 slprintf(buf2
,sizeof(buf2
),"%.0f",
207 (double)file
->length
);
211 slprintf(buf2
,sizeof(buf2
),"%d",
215 case 'o': n
= op
; break;
217 slprintf(buf2
, sizeof(buf2
), "%s/%s",
218 file
->basedir
?file
->basedir
:"",
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;
230 b
= stats
.total_written
-
231 initial_stats
->total_written
;
233 b
= stats
.total_read
-
234 initial_stats
->total_read
;
236 slprintf(buf2
,sizeof(buf2
),"%.0f", (double)b
);
241 b
= stats
.total_written
-
242 initial_stats
->total_written
;
244 b
= stats
.total_read
-
245 initial_stats
->total_read
;
247 slprintf(buf2
,sizeof(buf2
),"%.0f", (double)b
);
256 if ((l
-1) + ((int)(s
- &buf
[0])) > sizeof(buf
)) {
257 rprintf(FERROR
,"buffer overflow expanding %%%c - exiting\n",
259 exit_cleanup(RERR_MESSAGEIO
);
263 memmove(s
+(l
-1), s
+1, strlen(s
+1)+1);
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
)
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
);
311 rprintf(FLOG
,"transfer interrupted (code %d) at %s(%d)\n",
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
)
325 if (!verbose
) return;
327 rprintf(FINFO
,"%s\n", fname
);