X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Flocation.c;h=e68051ee50b5e36aaffd787e2cba7999cf6a8904;hb=3afa94aeca5a0daae40fd7b6cc96b7e4c150c7d8;hp=0482c443df5a2c50fc46a886a4f21847198a636c;hpb=1e9f1cf8e478f969082e4719693b85523efbaca2;p=lttng-tools.git diff --git a/src/common/location.c b/src/common/location.c index 0482c443d..e68051ee5 100644 --- a/src/common/location.c +++ b/src/common/location.c @@ -1,23 +1,14 @@ /* - * Copyright (C) 2018 - Jérémie Galarneau + * Copyright (C) 2018 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. + * SPDX-License-Identifier: LGPL-2.1-only * - * 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 */ #include #include #include +#include static struct lttng_trace_archive_location *lttng_trace_archive_location_create( @@ -30,18 +21,17 @@ struct lttng_trace_archive_location *lttng_trace_archive_location_create( goto end; } + urcu_ref_init(&location->ref); location->type = type; end: return location; } -LTTNG_HIDDEN -void lttng_trace_archive_location_destroy( - struct lttng_trace_archive_location *location) +static +void trace_archive_location_destroy_ref(struct urcu_ref *ref) { - if (!location) { - return; - } + struct lttng_trace_archive_location *location = + container_of(ref, struct lttng_trace_archive_location, ref); switch (location->type) { case LTTNG_TRACE_ARCHIVE_LOCATION_TYPE_LOCAL: @@ -58,7 +48,20 @@ void lttng_trace_archive_location_destroy( free(location); } -LTTNG_HIDDEN +void lttng_trace_archive_location_get(struct lttng_trace_archive_location *location) +{ + urcu_ref_get(&location->ref); +} + +void lttng_trace_archive_location_put(struct lttng_trace_archive_location *location) +{ + if (!location) { + return; + } + + urcu_ref_put(&location->ref, trace_archive_location_destroy_ref); +} + struct lttng_trace_archive_location *lttng_trace_archive_location_local_create( const char *absolute_path) { @@ -82,11 +85,10 @@ struct lttng_trace_archive_location *lttng_trace_archive_location_local_create( end: return location; error: - lttng_trace_archive_location_destroy(location); + lttng_trace_archive_location_put(location); return NULL; } -LTTNG_HIDDEN struct lttng_trace_archive_location *lttng_trace_archive_location_relay_create( const char *host, enum lttng_trace_archive_location_relay_protocol_type protocol, @@ -120,11 +122,10 @@ struct lttng_trace_archive_location *lttng_trace_archive_location_relay_create( end: return location; error: - lttng_trace_archive_location_destroy(location); + lttng_trace_archive_location_put(location); return NULL; } -LTTNG_HIDDEN ssize_t lttng_trace_archive_location_create_from_buffer( const struct lttng_buffer_view *view, struct lttng_trace_archive_location **location) @@ -135,11 +136,12 @@ ssize_t lttng_trace_archive_location_create_from_buffer( location_comm_view = lttng_buffer_view_from_view(view, 0, sizeof(*location_comm)); - if (!location_comm_view.data) { + if (!lttng_buffer_view_is_valid(&location_comm_view)) { goto error; } + offset += location_comm_view.size; - location_comm = (const struct lttng_trace_archive_location_comm *) view->data; + location_comm = (const struct lttng_trace_archive_location_comm *) location_comm_view.data; switch ((enum lttng_trace_archive_location_type) location_comm->type) { case LTTNG_TRACE_ARCHIVE_LOCATION_TYPE_LOCAL: @@ -148,9 +150,10 @@ ssize_t lttng_trace_archive_location_create_from_buffer( lttng_buffer_view_from_view(view, offset, location_comm->types.local.absolute_path_len); - if (!absolute_path_view.data) { + if (!lttng_buffer_view_is_valid(&absolute_path_view)) { goto error; } + if (absolute_path_view.data[absolute_path_view.size - 1] != '\0') { goto error; } @@ -173,9 +176,12 @@ ssize_t lttng_trace_archive_location_create_from_buffer( offset + hostname_view.size, location_comm->types.relay.relative_path_len); - if (!hostname_view.data || !relative_path_view.data) { + if (!lttng_buffer_view_is_valid(&hostname_view) || + !lttng_buffer_view_is_valid( + &relative_path_view)) { goto error; } + if (hostname_view.data[hostname_view.size - 1] != '\0') { goto error; } @@ -199,18 +205,17 @@ ssize_t lttng_trace_archive_location_create_from_buffer( goto error; } + return offset; error: return -1; } -LTTNG_HIDDEN ssize_t lttng_trace_archive_location_serialize( const struct lttng_trace_archive_location *location, struct lttng_dynamic_buffer *buffer) { int ret; struct lttng_trace_archive_location_comm location_comm; - const size_t original_buffer_size = buffer->size; location_comm.type = (int8_t) location->type; @@ -268,7 +273,7 @@ ssize_t lttng_trace_archive_location_serialize( abort(); } - return buffer->size - original_buffer_size; + return 0; error: return -1; }