X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-relayd%2Fcmd-2-2.c;h=c2bc1a3a3be97acfeb28d877dab7ebcd91517ad6;hp=7dd99ad5f0dbee10c5c377ec536e93b7ff06b348;hb=897c9a64fafa0535f09d01234507a817e157590d;hpb=6c1c0768320135c6936c371b09731851b508c023 diff --git a/src/bin/lttng-relayd/cmd-2-2.c b/src/bin/lttng-relayd/cmd-2-2.c index 7dd99ad5f..c2bc1a3a3 100644 --- a/src/bin/lttng-relayd/cmd-2-2.c +++ b/src/bin/lttng-relayd/cmd-2-2.c @@ -1,68 +1,80 @@ /* - * Copyright (C) 2013 - Julien Desfossez - * David Goulet + * Copyright (C) 2013 Julien Desfossez + * Copyright (C) 2013 David Goulet + * Copyright (C) 2015 Mathieu Desnoyers * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License, version 2 only, as - * published by the Free Software Foundation. + * SPDX-License-Identifier: GPL-2.0-only * - * This program 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 - * this program; if not, write to the Free Software Foundation, Inc., 51 - * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#define _GNU_SOURCE #define _LGPL_SOURCE #include -#include #include #include #include +#include +#include -#include "cmd-generic.h" +#include "cmd-2-2.h" #include "cmd-2-1.h" #include "utils.h" -int cmd_recv_stream_2_2(struct relay_connection *conn, - struct relay_stream *stream) +/* + * cmd_recv_stream_2_2 allocates path_name and channel_name. + */ +int cmd_recv_stream_2_2(const struct lttng_buffer_view *payload, + char **ret_path_name, char **ret_channel_name, + uint64_t *tracefile_size, uint64_t *tracefile_count) { int ret; struct lttcomm_relayd_add_stream_2_2 stream_info; + char *path_name = NULL; + char *channel_name = NULL; + size_t len; - assert(conn); - assert(stream); - - ret = cmd_recv(conn->sock, &stream_info, sizeof(stream_info)); - if (ret < 0) { - ERR("Unable to recv stream version 2.2"); + if (payload->size < sizeof(stream_info)) { + ERR("Unexpected payload size in \"cmd_recv_stream_2_2\": expected >= %zu bytes, got %zu bytes", + sizeof(stream_info), payload->size); + ret = -1; goto error; } + memcpy(&stream_info, payload->data, sizeof(stream_info)); - stream->path_name = create_output_path(stream_info.pathname); - if (stream->path_name == NULL) { + len = lttng_strnlen(stream_info.pathname, sizeof(stream_info.pathname)); + /* Ensure that NULL-terminated and fits in local filename length. */ + if (len == sizeof(stream_info.pathname) || len >= LTTNG_NAME_MAX) { + ret = -ENAMETOOLONG; + ERR("Path name too long"); + goto error; + } + path_name = strdup(stream_info.pathname); + if (!path_name) { PERROR("Path name allocation"); ret = -ENOMEM; goto error; } - - stream->channel_name = strdup(stream_info.channel_name); - if (stream->channel_name == NULL) { + len = lttng_strnlen(stream_info.channel_name, sizeof(stream_info.channel_name)); + if (len == sizeof(stream_info.channel_name) || len >= DEFAULT_STREAM_NAME_LEN) { + ret = -ENAMETOOLONG; + ERR("Channel name too long"); + goto error; + } + channel_name = strdup(stream_info.channel_name); + if (!channel_name) { ret = -errno; - PERROR("Path name allocation"); + PERROR("Channel name allocation"); goto error; } - stream->tracefile_size = be64toh(stream_info.tracefile_size); - stream->tracefile_count = be64toh(stream_info.tracefile_count); - ret = 0; - + *tracefile_size = be64toh(stream_info.tracefile_size); + *tracefile_count = be64toh(stream_info.tracefile_count); + *ret_path_name = path_name; + *ret_channel_name = channel_name; + return 0; error: + free(path_name); + free(channel_name); return ret; }