Commit | Line | Data |
---|---|---|
331744e3 | 1 | /* |
ab5be9fa MJ |
2 | * Copyright (C) 2013 Julien Desfossez <jdesfossez@efficios.com> |
3 | * Copyright (C) 2013 David Goulet <dgoulet@efficios.com> | |
331744e3 | 4 | * |
ab5be9fa | 5 | * SPDX-License-Identifier: GPL-2.0-only |
331744e3 | 6 | * |
331744e3 JD |
7 | */ |
8 | ||
6c1c0768 | 9 | #define _LGPL_SOURCE |
331744e3 JD |
10 | #include <pthread.h> |
11 | #include <stdlib.h> | |
12 | #include <string.h> | |
13 | #include <sys/types.h> | |
14 | #include <unistd.h> | |
15 | #include <inttypes.h> | |
16 | ||
c9e313bc SM |
17 | #include <common/common.hpp> |
18 | #include <common/utils.hpp> | |
19 | #include <common/sessiond-comm/sessiond-comm.hpp> | |
20 | #include <common/ust-consumer/ust-consumer.hpp> | |
21 | #include <common/consumer/consumer.hpp> | |
331744e3 | 22 | |
c9e313bc | 23 | #include "consumer-metadata-cache.hpp" |
331744e3 | 24 | |
b1316da1 JG |
25 | enum metadata_cache_update_version_status { |
26 | METADATA_CACHE_UPDATE_STATUS_VERSION_UPDATED, | |
27 | METADATA_CACHE_UPDATE_STATUS_VERSION_NOT_UPDATED, | |
28 | }; | |
29 | ||
fa29bfbf | 30 | extern struct lttng_consumer_global_data the_consumer_data; |
fe81e5c9 | 31 | |
93ec662e JD |
32 | /* |
33 | * Reset the metadata cache. | |
34 | */ | |
35 | static | |
36 | void metadata_cache_reset(struct consumer_metadata_cache *cache) | |
37 | { | |
9eac9828 JG |
38 | const int ret = lttng_dynamic_buffer_set_size(&cache->contents, 0); |
39 | ||
a0377dfe | 40 | LTTNG_ASSERT(ret == 0); |
93ec662e JD |
41 | } |
42 | ||
43 | /* | |
44 | * Check if the metadata cache version changed. | |
45 | * If it did, reset the metadata cache. | |
46 | * The metadata cache lock MUST be held. | |
93ec662e | 47 | */ |
b1316da1 JG |
48 | static enum metadata_cache_update_version_status metadata_cache_update_version( |
49 | struct consumer_metadata_cache *cache, uint64_t version) | |
93ec662e | 50 | { |
b1316da1 | 51 | enum metadata_cache_update_version_status status; |
93ec662e JD |
52 | |
53 | if (cache->version == version) { | |
b1316da1 | 54 | status = METADATA_CACHE_UPDATE_STATUS_VERSION_NOT_UPDATED; |
93ec662e JD |
55 | goto end; |
56 | } | |
57 | ||
58 | DBG("Metadata cache version update to %" PRIu64, version); | |
93ec662e | 59 | cache->version = version; |
b1316da1 | 60 | status = METADATA_CACHE_UPDATE_STATUS_VERSION_UPDATED; |
93ec662e JD |
61 | |
62 | end: | |
b1316da1 | 63 | return status; |
5b8eb761 JD |
64 | } |
65 | ||
331744e3 JD |
66 | /* |
67 | * Write metadata to the cache, extend the cache if necessary. We support | |
c585821b MD |
68 | * overlapping updates, but they need to be contiguous. Send the |
69 | * contiguous metadata in cache to the ring buffer. The metadata cache | |
331744e3 JD |
70 | * lock MUST be acquired to write in the cache. |
71 | * | |
b1316da1 JG |
72 | * See `enum consumer_metadata_cache_write_status` for the meaning of the |
73 | * various returned status codes. | |
331744e3 | 74 | */ |
b1316da1 | 75 | enum consumer_metadata_cache_write_status |
a25d34bc | 76 | consumer_metadata_cache_write(struct consumer_metadata_cache *cache, |
93ec662e | 77 | unsigned int offset, unsigned int len, uint64_t version, |
d44f9a18 | 78 | const char *data) |
331744e3 JD |
79 | { |
80 | int ret = 0; | |
b1316da1 JG |
81 | enum consumer_metadata_cache_write_status status; |
82 | bool cache_is_invalidated = false; | |
9eac9828 | 83 | uint64_t original_size; |
331744e3 | 84 | |
a0377dfe | 85 | LTTNG_ASSERT(cache); |
b1316da1 | 86 | ASSERT_LOCKED(cache->lock); |
9eac9828 | 87 | original_size = cache->contents.size; |
93ec662e | 88 | |
b1316da1 JG |
89 | if (metadata_cache_update_version(cache, version) == |
90 | METADATA_CACHE_UPDATE_STATUS_VERSION_UPDATED) { | |
91 | metadata_cache_reset(cache); | |
92 | cache_is_invalidated = true; | |
93ec662e JD |
93 | } |
94 | ||
331744e3 | 95 | DBG("Writing %u bytes from offset %u in metadata cache", len, offset); |
9eac9828 JG |
96 | if (offset + len > cache->contents.size) { |
97 | ret = lttng_dynamic_buffer_set_size( | |
98 | &cache->contents, offset + len); | |
99 | if (ret) { | |
331744e3 | 100 | ERR("Extending metadata cache"); |
b1316da1 | 101 | status = CONSUMER_METADATA_CACHE_WRITE_STATUS_ERROR; |
331744e3 JD |
102 | goto end; |
103 | } | |
104 | } | |
105 | ||
9eac9828 | 106 | memcpy(cache->contents.data + offset, data, len); |
b1316da1 JG |
107 | |
108 | if (cache_is_invalidated) { | |
109 | status = CONSUMER_METADATA_CACHE_WRITE_STATUS_INVALIDATED; | |
9eac9828 | 110 | } else if (cache->contents.size > original_size) { |
b1316da1 JG |
111 | status = CONSUMER_METADATA_CACHE_WRITE_STATUS_APPENDED_CONTENT; |
112 | } else { | |
113 | status = CONSUMER_METADATA_CACHE_WRITE_STATUS_NO_CHANGE; | |
a0377dfe | 114 | LTTNG_ASSERT(cache->contents.size == original_size); |
331744e3 JD |
115 | } |
116 | ||
117 | end: | |
b1316da1 | 118 | return status; |
331744e3 JD |
119 | } |
120 | ||
121 | /* | |
122 | * Create the metadata cache, original allocated size: max_sb_size | |
123 | * | |
124 | * Return 0 on success, a negative value on error. | |
125 | */ | |
126 | int consumer_metadata_cache_allocate(struct lttng_consumer_channel *channel) | |
127 | { | |
128 | int ret; | |
129 | ||
a0377dfe | 130 | LTTNG_ASSERT(channel); |
331744e3 | 131 | |
64803277 | 132 | channel->metadata_cache = zmalloc<consumer_metadata_cache>(); |
331744e3 JD |
133 | if (!channel->metadata_cache) { |
134 | PERROR("zmalloc metadata cache struct"); | |
135 | ret = -1; | |
136 | goto end; | |
137 | } | |
138 | ret = pthread_mutex_init(&channel->metadata_cache->lock, NULL); | |
139 | if (ret != 0) { | |
140 | PERROR("mutex init"); | |
141 | goto end_free_cache; | |
142 | } | |
143 | ||
9eac9828 JG |
144 | lttng_dynamic_buffer_init(&channel->metadata_cache->contents); |
145 | ret = lttng_dynamic_buffer_set_capacity( | |
146 | &channel->metadata_cache->contents, | |
147 | DEFAULT_METADATA_CACHE_SIZE); | |
148 | if (ret) { | |
149 | PERROR("Failed to pre-allocate metadata cache storage of %d bytes on creation", | |
150 | DEFAULT_METADATA_CACHE_SIZE); | |
331744e3 JD |
151 | ret = -1; |
152 | goto end_free_mutex; | |
153 | } | |
9eac9828 JG |
154 | |
155 | DBG("Allocated metadata cache: current capacity = %zu", | |
156 | lttng_dynamic_buffer_get_capacity_left( | |
157 | &channel->metadata_cache->contents)); | |
331744e3 JD |
158 | |
159 | ret = 0; | |
160 | goto end; | |
161 | ||
162 | end_free_mutex: | |
163 | pthread_mutex_destroy(&channel->metadata_cache->lock); | |
164 | end_free_cache: | |
165 | free(channel->metadata_cache); | |
166 | end: | |
167 | return ret; | |
168 | } | |
169 | ||
170 | /* | |
171 | * Destroy and free the metadata cache | |
172 | */ | |
173 | void consumer_metadata_cache_destroy(struct lttng_consumer_channel *channel) | |
174 | { | |
175 | if (!channel || !channel->metadata_cache) { | |
176 | return; | |
177 | } | |
178 | ||
179 | DBG("Destroying metadata cache"); | |
180 | ||
331744e3 | 181 | pthread_mutex_destroy(&channel->metadata_cache->lock); |
9eac9828 | 182 | lttng_dynamic_buffer_reset(&channel->metadata_cache->contents); |
331744e3 JD |
183 | free(channel->metadata_cache); |
184 | } | |
185 | ||
186 | /* | |
187 | * Check if the cache is flushed up to the offset passed in parameter. | |
188 | * | |
189 | * Return 0 if everything has been flushed, 1 if there is data not flushed. | |
190 | */ | |
191 | int consumer_metadata_cache_flushed(struct lttng_consumer_channel *channel, | |
5e41ebe1 | 192 | uint64_t offset, int timer) |
331744e3 | 193 | { |
04ef1097 MD |
194 | int ret = 0; |
195 | struct lttng_consumer_stream *metadata_stream; | |
331744e3 | 196 | |
a0377dfe FD |
197 | LTTNG_ASSERT(channel); |
198 | LTTNG_ASSERT(channel->metadata_cache); | |
331744e3 | 199 | |
7f725ec5 | 200 | /* |
5e41ebe1 MD |
201 | * If not called from a timer handler, we have to take the |
202 | * channel lock to be mutually exclusive with channel teardown. | |
203 | * Timer handler does not need to take this lock because it is | |
204 | * already synchronized by timer stop (and, more importantly, | |
205 | * taking this lock in a timer handler would cause a deadlock). | |
7f725ec5 | 206 | */ |
5e41ebe1 MD |
207 | if (!timer) { |
208 | pthread_mutex_lock(&channel->lock); | |
209 | } | |
ec6ea7d0 | 210 | pthread_mutex_lock(&channel->timer_lock); |
04ef1097 | 211 | metadata_stream = channel->metadata_stream; |
04ef1097 | 212 | if (!metadata_stream) { |
fe81e5c9 DG |
213 | /* |
214 | * Having no metadata stream means the channel is being destroyed so there | |
215 | * is no cache to flush anymore. | |
216 | */ | |
217 | ret = 0; | |
e524139e JG |
218 | goto end_unlock_channel; |
219 | } | |
220 | ||
221 | pthread_mutex_lock(&metadata_stream->lock); | |
222 | pthread_mutex_lock(&channel->metadata_cache->lock); | |
223 | ||
224 | if (metadata_stream->ust_metadata_pushed >= offset) { | |
04ef1097 | 225 | ret = 0; |
fe81e5c9 DG |
226 | } else if (channel->metadata_stream->endpoint_status != |
227 | CONSUMER_ENDPOINT_ACTIVE) { | |
228 | /* An inactive endpoint means we don't have to flush anymore. */ | |
229 | ret = 0; | |
331744e3 | 230 | } else { |
fe81e5c9 | 231 | /* Still not completely flushed. */ |
331744e3 JD |
232 | ret = 1; |
233 | } | |
fe81e5c9 | 234 | |
331744e3 | 235 | pthread_mutex_unlock(&channel->metadata_cache->lock); |
8e1ef46e | 236 | pthread_mutex_unlock(&metadata_stream->lock); |
e524139e | 237 | end_unlock_channel: |
ec6ea7d0 | 238 | pthread_mutex_unlock(&channel->timer_lock); |
5e41ebe1 MD |
239 | if (!timer) { |
240 | pthread_mutex_unlock(&channel->lock); | |
241 | } | |
331744e3 JD |
242 | |
243 | return ret; | |
244 | } |