2 * Copyright (C) 2013 - David Goulet <dgoulet@efficios.com>
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include <urcu/uatomic.h>
24 #include <common/defaults.h>
30 * Return the atomically incremented value of next_output_id.
32 static inline unsigned long get_next_output_id(struct snapshot
*snapshot
)
34 return uatomic_add_return(&snapshot
->next_output_id
, 1);
38 * Initialized snapshot output with the given values.
40 * Return 0 on success or else a negative value.
42 static int output_init(const struct ltt_session
*session
,
43 uint64_t max_size
, const char *name
,
44 struct lttng_uri
*uris
, size_t nb_uri
,
45 struct consumer_output
*consumer
, struct snapshot_output
*output
,
46 struct snapshot
*snapshot
)
50 memset(output
, 0, sizeof(struct snapshot_output
));
53 * max_size of -1ULL means unset. Set to default (unlimited).
55 if (max_size
== (uint64_t) -1ULL) {
58 output
->max_size
= max_size
;
61 output
->id
= get_next_output_id(snapshot
);
63 lttng_ht_node_init_ulong(&output
->node
, (unsigned long) output
->id
);
65 if (name
&& name
[0] != '\0') {
66 if (lttng_strncpy(output
->name
, name
, sizeof(output
->name
))) {
67 ret
= -LTTNG_ERR_INVALID
;
71 /* Set default name. */
72 ret
= snprintf(output
->name
, sizeof(output
->name
), "%s-%" PRIu32
,
73 DEFAULT_SNAPSHOT_NAME
, output
->id
);
84 output
->consumer
= consumer_copy_output(consumer
);
85 if (!output
->consumer
) {
89 output
->consumer
->snapshot
= 1;
97 if (uris
[0].dtype
== LTTNG_DST_PATH
) {
98 memset(output
->consumer
->dst
.session_root_path
, 0,
99 sizeof(output
->consumer
->dst
.session_root_path
));
100 if (lttng_strncpy(output
->consumer
->dst
.session_root_path
,
102 sizeof(output
->consumer
->dst
.session_root_path
))) {
103 ret
= -LTTNG_ERR_INVALID
;
106 output
->consumer
->type
= CONSUMER_DST_LOCAL
;
112 /* Absolutely needs two URIs for network. */
113 ret
= -LTTNG_ERR_INVALID
;
117 for (i
= 0; i
< nb_uri
; i
++) {
119 ret
= consumer_set_network_uri(session
, output
->consumer
,
132 * Initialize a snapshot output object using the given parameters and URI(s).
133 * The name value and uris can be NULL.
135 * Return 0 on success or else a negative value.
137 int snapshot_output_init_with_uri(const struct ltt_session
*session
,
138 uint64_t max_size
, const char *name
,
139 struct lttng_uri
*uris
, size_t nb_uri
,
140 struct consumer_output
*consumer
, struct snapshot_output
*output
,
141 struct snapshot
*snapshot
)
143 return output_init(session
, max_size
, name
, uris
, nb_uri
, consumer
,
148 * Initialize a snapshot output object using the given parameters. The name
149 * value and url can be NULL.
151 * Return 0 on success or else a negative value.
153 int snapshot_output_init(const struct ltt_session
*session
,
154 uint64_t max_size
, const char *name
,
155 const char *ctrl_url
, const char *data_url
,
156 struct consumer_output
*consumer
, struct snapshot_output
*output
,
157 struct snapshot
*snapshot
)
160 struct lttng_uri
*uris
= NULL
;
162 /* Create an array of URIs from URLs. */
163 nb_uri
= uri_parse_str_urls(ctrl_url
, data_url
, &uris
);
169 ret
= output_init(session
, max_size
, name
, uris
, nb_uri
, consumer
,
177 struct snapshot_output
*snapshot_output_alloc(void)
179 return zmalloc(sizeof(struct snapshot_output
));
183 * Delete output from the snapshot object.
185 void snapshot_delete_output(struct snapshot
*snapshot
,
186 struct snapshot_output
*output
)
189 struct lttng_ht_iter iter
;
192 assert(snapshot
->output_ht
);
195 iter
.iter
.node
= &output
->node
.node
;
197 ret
= lttng_ht_del(snapshot
->output_ht
, &iter
);
201 * This is safe because the ownership of a snapshot object is in a session
202 * for which the session lock need to be acquired to read and modify it.
204 snapshot
->nb_output
--;
208 * Add output object to the snapshot.
210 void snapshot_add_output(struct snapshot
*snapshot
,
211 struct snapshot_output
*output
)
214 assert(snapshot
->output_ht
);
218 lttng_ht_add_unique_ulong(snapshot
->output_ht
, &output
->node
);
221 * This is safe because the ownership of a snapshot object is in a session
222 * for which the session lock need to be acquired to read and modify it.
224 snapshot
->nb_output
++;
228 * Destroy and free a snapshot output object.
230 void snapshot_output_destroy(struct snapshot_output
*obj
)
235 consumer_output_send_destroy_relayd(obj
->consumer
);
236 consumer_output_put(obj
->consumer
);
242 * RCU read side lock MUST be acquired before calling this since the returned
243 * pointer is in a RCU hash table.
245 * Return the reference on success or else NULL.
247 struct snapshot_output
*snapshot_find_output_by_name(const char *name
,
248 struct snapshot
*snapshot
)
250 struct lttng_ht_iter iter
;
251 struct snapshot_output
*output
= NULL
;
256 cds_lfht_for_each_entry(snapshot
->output_ht
->ht
, &iter
.iter
, output
,
258 if (!strncmp(output
->name
, name
, strlen(name
))) {
268 * RCU read side lock MUST be acquired before calling this since the returned
269 * pointer is in a RCU hash table.
271 * Return the reference on success or else NULL.
273 struct snapshot_output
*snapshot_find_output_by_id(uint32_t id
,
274 struct snapshot
*snapshot
)
276 struct lttng_ht_node_ulong
*node
;
277 struct lttng_ht_iter iter
;
278 struct snapshot_output
*output
= NULL
;
282 lttng_ht_lookup(snapshot
->output_ht
, (void *)((unsigned long) id
), &iter
);
283 node
= lttng_ht_iter_get_node_ulong(&iter
);
285 DBG3("Snapshot output not found with id %" PRId32
, id
);
288 output
= caa_container_of(node
, struct snapshot_output
, node
);
295 * Initialized a snapshot object that was already allocated.
297 * Return 0 on success or else a negative errno value.
299 int snapshot_init(struct snapshot
*obj
)
305 memset(obj
, 0, sizeof(struct snapshot
));
307 obj
->output_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
308 if (!obj
->output_ht
) {
320 * Destroy snapshot object but the pointer is not freed so it's safe to pass a
323 void snapshot_destroy(struct snapshot
*obj
)
325 struct lttng_ht_iter iter
;
326 struct snapshot_output
*output
;
328 if (!obj
->output_ht
) {
333 cds_lfht_for_each_entry(obj
->output_ht
->ht
, &iter
.iter
, output
,
335 snapshot_delete_output(obj
, output
);
336 snapshot_output_destroy(output
);
339 ht_cleanup_push(obj
->output_ht
);
This page took 0.037765 seconds and 5 git commands to generate.