X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-relayd%2Fcmd-2-11.c;h=cd23f22d6f3405bcf9913db0c4d97dff7b6736dc;hp=4b6f39120db0b84cd1170880c27750d854436877;hb=3e6e0df2f8f9f23d252c2508b6d741916dfcc4b3;hpb=e7f8eff3a01708a32fc2a475b88420ab21ed821f diff --git a/src/bin/lttng-relayd/cmd-2-11.c b/src/bin/lttng-relayd/cmd-2-11.c index 4b6f39120..cd23f22d6 100644 --- a/src/bin/lttng-relayd/cmd-2-11.c +++ b/src/bin/lttng-relayd/cmd-2-11.c @@ -1,18 +1,8 @@ /* - * Copyright (C) 2018 - Jonathan Rajotte + * Copyright (C) 2018 Jonathan Rajotte * - * 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 _LGPL_SOURCE @@ -97,12 +87,29 @@ int cmd_create_session_2_11(const struct lttng_buffer_view *payload, offset = header_len; session_name_view = lttng_buffer_view_from_view(payload, offset, header.session_name_len); + if (!lttng_buffer_view_is_valid(&session_name_view)) { + ERR("Invalid payload in \"cmd_create_session_2_11\": buffer too short to contain session name"); + ret = -1; + goto error; + } + offset += header.session_name_len; hostname_view = lttng_buffer_view_from_view(payload, offset, header.hostname_len); + if (!lttng_buffer_view_is_valid(&hostname_view)) { + ERR("Invalid payload in \"cmd_create_session_2_11\": buffer too short to contain hostname"); + ret = -1; + goto error; + } + offset += header.hostname_len; base_path_view = lttng_buffer_view_from_view(payload, offset, header.base_path_len); + if (header.base_path_len > 0 && !lttng_buffer_view_is_valid(&base_path_view)) { + ERR("Invalid payload in \"cmd_create_session_2_11\": buffer too short to contain base path"); + ret = -1; + goto error; + } /* Validate that names are NULL terminated. */ if (session_name_view.data[session_name_view.size - 1] != '\0') { @@ -200,9 +207,12 @@ int cmd_recv_stream_2_11(const struct lttng_buffer_view *payload, /* Validate that names are (NULL terminated. */ channel_name_view = lttng_buffer_view_from_view(payload, header_len, - header.channel_name_len); - pathname_view = lttng_buffer_view_from_view(payload, - header_len + header.channel_name_len, header.pathname_len); + header.channel_name_len); + if (!lttng_buffer_view_is_valid(&channel_name_view)) { + ERR("Invalid payload received in \"cmd_recv_stream_2_11\": buffer too short for channel name"); + ret = -1; + goto error; + } if (channel_name_view.data[channel_name_view.size - 1] != '\0') { ERR("cmd_recv_stream_2_11 channel_name is invalid (not NULL terminated)"); @@ -210,6 +220,14 @@ int cmd_recv_stream_2_11(const struct lttng_buffer_view *payload, goto error; } + pathname_view = lttng_buffer_view_from_view(payload, + header_len + header.channel_name_len, header.pathname_len); + if (!lttng_buffer_view_is_valid(&pathname_view)) { + ERR("Invalid payload received in \"cmd_recv_stream_2_11\": buffer too short for path name"); + ret = -1; + goto error; + } + if (pathname_view.data[pathname_view.size - 1] != '\0') { ERR("cmd_recv_stream_2_11 patname is invalid (not NULL terminated)"); ret = -1;