journal-send.c revision 07c289875fd46331a430c43e8991d3c7407cb703
/*-*- 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 Lesser General Public License as published by
the Free Software Foundation; either version 2.1 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser 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 <printf.h>
#define SD_JOURNAL_SUPPRESS_LOCATION
#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;
}
/* FIXME: Instead of limiting things to LINE_MAX we could do a
C99 variable-length array on the stack here in a loop. */
return -EINVAL;
if (!format)
return -EINVAL;
char_array_0(p);
}
int r, n = 0, i = 0, j;
int saved_errno;
saved_errno = errno;
if (extra > 0) {
if (!iov) {
r = -ENOMEM;
goto fail;
}
i = extra;
}
while (format) {
struct iovec *c;
char *buffer;
if (i >= n) {
if (!c) {
r = -ENOMEM;
goto fail;
}
iov = c;
}
r = -ENOMEM;
goto fail;
}
}
errno = saved_errno;
return i;
fail:
for (j = 0; j < i; j++)
errno = saved_errno;
return r;
}
int r, i, j;
if (_unlikely_(i < 0)) {
r = i;
goto finish;
}
r = sd_journal_sendv(iov, i);
for (j = 0; j < i; j++)
return r;
}
struct iovec *w;
uint64_t *l;
int r, i, j = 0;
struct sockaddr_un sa;
ssize_t k;
int saved_errno;
union {
} control;
* be a tmpfs, and one that is available from early boot on
* and where unprivileged users can create files. */
char path[] = "/dev/shm/journal.XXXXXX";
if (_unlikely_(!iov))
return -EINVAL;
if (_unlikely_(n <= 0))
return -EINVAL;
saved_errno = errno;
for (i = 0; i < n; i++) {
char *c, *nl;
r = -EINVAL;
goto finish;
}
r = -EINVAL;
goto finish;
}
if (nl) {
if (_unlikely_(nl < c)) {
r = -EINVAL;
goto finish;
}
/* 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 (_unlikely_(fd < 0)) {
r = fd;
goto finish;
}
mh.msg_iovlen = j;
if (k >= 0) {
r = 0;
goto finish;
}
r = -errno;
goto finish;
}
/* 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) {
r = -errno;
goto finish;
}
r = -errno;
goto finish;
}
if (n < 0) {
r = -errno;
goto finish;
}
mh.msg_iovlen = 0;
if (k < 0) {
r = -errno;
goto finish;
}
r = 0;
errno = saved_errno;
return r;
}
size_t n, k, r;
int saved_errno;
saved_errno = errno;
n = 8 + k + 256 + 1;
for (;;) {
char buffer[n];
char* j;
errno = 0;
if (errno == 0) {
if (j != buffer + 8 + k)
if (k > 0) {
}
errno = saved_errno;
return r;
}
r = -errno;
errno = saved_errno;
return r;
}
n *= 2;
}
}
}
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;
}
_public_ int sd_journal_print_with_location(int priority, const char *file, const char *line, const char *func, const char *format, ...) {
int r;
return r;
}
_public_ int sd_journal_printv_with_location(int priority, const char *file, const char *line, const char *func, const char *format, va_list ap) {
char *f;
return -EINVAL;
if (_unlikely_(!format))
return -EINVAL;
char_array_0(p);
/* func is initialized from __func__ which is not a macro, but
* a static const char[], hence cannot easily be prefixed with
* CODE_FUNC=, hence let's do it manually here. */
}
_public_ int sd_journal_send_with_location(const char *file, const char *line, const char *func, const char *format, ...) {
int r, i, j;
char *f;
if (_unlikely_(i < 0)) {
r = i;
goto finish;
}
r = sd_journal_sendv(iov, i);
for (j = 3; j < i; j++)
return r;
}
const char *func,
char *f;
if (_unlikely_(!iov))
return -EINVAL;
if (_unlikely_(n <= 0))
return -EINVAL;
IOVEC_SET_STRING(niov[n++], f);
return sd_journal_sendv(niov, n);
}
const char *func,
const char *message) {
char *f;
}