journal-send.c revision 0dad12c190b7493955cd60d2a1625199b1709f69
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2011 Lennart Poettering
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
systemd 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
General Public License for more details.
You should have received a copy of the GNU General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <errno.h>
#include <stddef.h>
#include <unistd.h>
#include <fcntl.h>
#include "sd-journal.h"
#include "util.h"
#include "socket-util.h"
/* We open a single fd, and we'll share it with the current process,
* all its threads, and all its subprocesses. This means we need to
* initialize it atomically, and need to operate on it atomically
* never assuming we are the only user */
static int journal_fd(void) {
int fd;
static int fd_plus_one = 0;
if (fd_plus_one > 0)
return fd_plus_one - 1;
if (fd < 0)
return -errno;
goto retry;
}
return fd;
}
int r;
return r;
}
return -EINVAL;
if (!format)
return -EINVAL;
char_array_0(p);
}
int r, n = 0, i = 0, j;
while (format) {
struct iovec *c;
char *buffer;
if (i >= n) {
if (!c) {
r = -ENOMEM;
goto fail;
}
iov = c;
}
r = -ENOMEM;
goto fail;
}
}
r = sd_journal_sendv(iov, i);
fail:
for (j = 0; j < i; j++)
return r;
}
struct iovec *w;
uint64_t *l;
int i, j = 0;
struct sockaddr_un sa;
char path[] = "/tmp/journal.XXXXXX";
ssize_t k;
union {
} control;
if (!iov || n <= 0)
return -EINVAL;
for (i = 0; i < n; i++) {
char *c, *nl;
return -EINVAL;
return -EINVAL;
if (nl) {
if (nl < c)
return -EINVAL;
/* Already includes a newline? Bummer, then
* let's write the variable name, then a
* newline, then the size (64bit LE), followed
* by the data and a final newline */
j++;
IOVEC_SET_STRING(w[j++], "\n");
w[j].iov_base = &l[i];
j++;
w[j].iov_base = c + 1;
j++;
} else
/* Nothing special? Then just add the line and
* append a newline */
w[j++] = iov[i];
IOVEC_SET_STRING(w[j++], "\n");
}
fd = journal_fd();
if (fd < 0)
return fd;
mh.msg_iovlen = j;
if (k >= 0)
return 0;
return -errno;
/* Message doesn't fit... Let's dump the data in a temporary
* file and just pass a file descriptor of it to the other
* side */
if (buffer_fd < 0)
return -errno;
return -errno;
}
if (n < 0) {
return -errno;
}
mh.msg_iovlen = 0;
if (k < 0)
return -errno;
return 0;
}
union sockaddr_union sa;
int fd;
char *header;
size_t l;
ssize_t r;
return -EINVAL;
if (fd < 0)
return -errno;
if (r < 0) {
return -errno;
}
return -errno;
}
if (!identifier)
identifier = "";
l = strlen(identifier);
header[l++] = '\n';
header[l++] = '\n';
header[l++] = '\n';
header[l++] = '0';
header[l++] = '\n';
header[l++] = '0';
header[l++] = '\n';
header[l++] = '0';
header[l++] = '\n';
if (r < 0) {
return (int) r;
}
if ((size_t) r != l) {
return -errno;
}
return fd;
}