X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fsession-descriptor.c;h=276c840a3f61f534765ffec5fec85bba6f0c918a;hp=713731c3e222590d9a92085cd349d9fadc0264d4;hb=df62dbcd26798ca35926f8316a1b5734e825b84b;hpb=0afeb879549bcc6202ca0c87ba306377f6261bc3 diff --git a/src/common/session-descriptor.c b/src/common/session-descriptor.c index 713731c3e..276c840a3 100644 --- a/src/common/session-descriptor.c +++ b/src/common/session-descriptor.c @@ -1,18 +1,7 @@ /* - * Copyright (C) 2019 - Jérémie Galarneau + * Copyright (C) 2019 Jérémie Galarneau * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License, version 2.1 only, - * as published by the Free Software Foundation. - * - * This library 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 this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * SPDX-License-Identifier: GPL-2.0-only */ #include @@ -522,6 +511,10 @@ _lttng_session_descriptor_live_network_create( descriptor = _lttng_session_descriptor_live_create(name, live_timer_interval_us); + if (!descriptor) { + goto error; + } + descriptor->base.output_type = LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK; @@ -623,12 +616,12 @@ ssize_t lttng_session_descriptor_create_from_buffer( current_view = lttng_buffer_view_from_view(payload, offset, sizeof(*base_header)); - base_header = (typeof(base_header)) current_view.data; - if (!base_header) { + if (!lttng_buffer_view_is_valid(¤t_view)) { ret = -1; goto end; } + base_header = (typeof(base_header)) current_view.data; switch (base_header->type) { case LTTNG_SESSION_DESCRIPTOR_TYPE_REGULAR: case LTTNG_SESSION_DESCRIPTOR_TYPE_SNAPSHOT: @@ -639,12 +632,12 @@ ssize_t lttng_session_descriptor_create_from_buffer( current_view = lttng_buffer_view_from_view(payload, offset, sizeof(*live_header)); - live_header = (typeof(live_header)) current_view.data; - if (!live_header) { + if (!lttng_buffer_view_is_valid(¤t_view)) { ret = -1; goto end; } + live_header = (typeof(live_header)) current_view.data; live_timer_us = live_header->live_timer_us; break; } @@ -681,12 +674,12 @@ ssize_t lttng_session_descriptor_create_from_buffer( /* Map the name. */ current_view = lttng_buffer_view_from_view(payload, offset, base_header->name_len); - name = current_view.data; - if (!name) { + if (!lttng_buffer_view_is_valid(¤t_view)) { ret = -1; goto end; } + name = current_view.data; if (base_header->name_len == 1 || name[base_header->name_len - 1] || strlen(name) != base_header->name_len - 1) { @@ -712,11 +705,12 @@ skip_name: /* Map a URI. */ current_view = lttng_buffer_view_from_view(payload, offset, sizeof(*uri)); - uri = (typeof(uri)) current_view.data; - if (!uri) { + if (!lttng_buffer_view_is_valid(¤t_view)) { ret = -1; goto end; } + + uri = (typeof(uri)) current_view.data; uris[i] = zmalloc(sizeof(*uri)); if (!uris[i]) { ret = -1; @@ -1172,26 +1166,3 @@ int lttng_session_descriptor_assign( end: return ret; } - -LTTNG_HIDDEN -int lttng_session_descriptor_get_base_path(struct lttng_session_descriptor *dst, - const char **_base_path) -{ - switch (dst->output_type) { - case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK: - { - if (dst->output.network.control && - dst->output.network.control->subdir[0]) { - *_base_path = dst->output.network.control->subdir; - } else { - *_base_path = NULL; - } - break; - } - case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL: - case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE: - *_base_path = NULL; - break; - } - return 0; -}