MEDIUM: log: use the new generic fd_write_frag_line() function

When logging to a file descriptor, we'd rather use the unified
fd_write_frag_line() which uses the FD's lock than perform the
writev() ourselves and use a per-server lock, because if several
loggers point to the same output (e.g. stdout) they are still
not locked and their logs may interleave. The function above
instead relies on the fd's lock so this is safer and will even
protect against concurrent accesses from other areas (e.g traces).
The function also deals with the FD's non-blocking mode so we do
not have to keep specific code for this anymore in the logs.
This commit is contained in:
Willy Tarreau 2019-08-30 14:05:35 +02:00
parent 7e9776ad7b
commit d52a7f8c8d

View File

@ -36,6 +36,7 @@
#include <proto/applet.h>
#include <proto/cli.h>
#include <proto/fd.h>
#include <proto/frontend.h>
#include <proto/log.h>
#include <proto/sample.h>
@ -1504,14 +1505,6 @@ static inline void __do_send_log(struct logsrv *logsrv, int nblogger, char *pid_
if (logsrv->addr.ss_family == AF_UNSPEC) {
/* the socket's address is a file descriptor */
plogfd = (int *)&((struct sockaddr_in *)&logsrv->addr)->sin_addr.s_addr;
if (!fdtab[*plogfd].initialized) {
/* FD not yet initialized to non-blocking mode.
* DON'T DO IT ON A TERMINAL!
*/
fdtab[*plogfd].initialized = 1;
if (!isatty(*plogfd))
fcntl(*plogfd, F_SETFL, O_NONBLOCK);
}
}
else if (logsrv->addr.ss_family == AF_UNIX)
plogfd = &logfdunix;
@ -1654,6 +1647,21 @@ static inline void __do_send_log(struct logsrv *logsrv, int nblogger, char *pid_
max = MIN(size, maxlen - sd_max) - 1;
send:
if (logsrv->addr.ss_family == AF_UNSPEC) {
/* the target is a direct file descriptor */
struct ist msg[7];
msg[0].ptr = hdr_ptr; msg[0].len = hdr_max;
msg[1].ptr = tag_str; msg[1].len = tag_max;
msg[2].ptr = pid_sep1; msg[2].len = pid_sep1_max;
msg[3].ptr = pid_str; msg[3].len = pid_max;
msg[4].ptr = pid_sep2; msg[4].len = pid_sep2_max;
msg[5].ptr = sd; msg[5].len = sd_max;
msg[6].ptr = dataptr; msg[6].len = max;
sent = fd_write_frag_line(*plogfd, ~0, NULL, 0, msg, 7, 1);
}
else {
iovec[0].iov_base = hdr_ptr;
iovec[0].iov_len = hdr_max;
iovec[1].iov_base = tag_str;
@ -1671,18 +1679,6 @@ send:
iovec[7].iov_base = "\n"; /* insert a \n at the end of the message */
iovec[7].iov_len = 1;
if (logsrv->addr.ss_family == AF_UNSPEC) {
/* the target is a direct file descriptor. While writev() guarantees
* to write everything, it doesn't guarantee that it will not be
* interrupted while doing so. This occasionally results in interleaved
* messages when the output is a tty, hence the lock. There's no real
* performance concern here for such type of output.
*/
HA_SPIN_LOCK(LOGSRV_LOCK, &logsrv->lock);
sent = writev(*plogfd, iovec, 8);
HA_SPIN_UNLOCK(LOGSRV_LOCK, &logsrv->lock);
}
else {
msghdr.msg_name = (struct sockaddr *)&logsrv->addr;
msghdr.msg_namelen = get_addr_len(&logsrv->addr);