2a861bc7b968410bb4522ce065f9279760d3c78f
[deliverable/lttng-tools.git] / src / bin / lttng-sessiond / rotate.c
1 /*
2 * Copyright (C) 2017 - Julien Desfossez <jdesfossez@efficios.com>
3 *
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.
7 *
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
11 * more details.
12 *
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.
16 */
17
18 #define _LGPL_SOURCE
19 #include <lttng/trigger/trigger.h>
20 #include <common/error.h>
21 #include <common/config/session-config.h>
22 #include <common/defaults.h>
23 #include <common/utils.h>
24 #include <common/futex.h>
25 #include <common/align.h>
26 #include <common/time.h>
27 #include <common/hashtable/utils.h>
28 #include <common/kernel-ctl/kernel-ctl.h>
29 #include <sys/eventfd.h>
30 #include <sys/stat.h>
31 #include <time.h>
32 #include <signal.h>
33 #include <inttypes.h>
34
35 #include "session.h"
36 #include "rotate.h"
37 #include "rotation-thread.h"
38 #include "lttng-sessiond.h"
39 #include "health-sessiond.h"
40 #include "cmd.h"
41
42 #include <urcu.h>
43 #include <urcu/list.h>
44 #include <urcu/rculfhash.h>
45
46 unsigned long hash_channel_key(struct rotation_channel_key *key)
47 {
48 return hash_key_u64(&key->key, lttng_ht_seed) ^ hash_key_ulong(
49 (void *) (unsigned long) key->domain, lttng_ht_seed);
50 }
51
52 int rotate_add_channel_pending(uint64_t key, enum lttng_domain_type domain,
53 struct ltt_session *session)
54 {
55 int ret;
56 struct rotation_channel_info *new_info;
57 struct rotation_channel_key channel_key = { .key = key,
58 .domain = domain };
59
60 new_info = zmalloc(sizeof(struct rotation_channel_info));
61 if (!new_info) {
62 goto error;
63 }
64
65 new_info->channel_key.key = key;
66 new_info->channel_key.domain = domain;
67 new_info->session = session;
68 cds_lfht_node_init(&new_info->rotate_channels_ht_node);
69
70 session->nr_chan_rotate_pending++;
71 cds_lfht_add(channel_pending_rotate_ht,
72 hash_channel_key(&channel_key),
73 &new_info->rotate_channels_ht_node);
74
75 ret = 0;
76 goto end;
77
78 error:
79 ret = -1;
80 end:
81 return ret;
82 }
83
84 int session_rename_chunk(struct ltt_session *session, char *current_path,
85 char *new_path, uint32_t create)
86 {
87 int ret;
88 struct consumer_socket *socket;
89 struct consumer_output *output;
90 struct lttng_ht_iter iter;
91 uid_t uid;
92 gid_t gid;
93
94 /*
95 * Either one of the sessions is enough to find the consumer_output
96 * and uid/gid.
97 */
98 if (session->kernel_session) {
99 output = session->kernel_session->consumer;
100 uid = session->kernel_session->uid;
101 gid = session->kernel_session->gid;
102 } else if (session->ust_session) {
103 output = session->ust_session->consumer;
104 uid = session->ust_session->uid;
105 gid = session->ust_session->gid;
106 } else {
107 assert(0);
108 }
109
110 if (!output || !output->socks) {
111 ERR("No consumer output found");
112 ret = -1;
113 goto end;
114 }
115
116 rcu_read_lock();
117 /*
118 * We have to iterate to find a socket, but we only need to send the
119 * rename command to one consumer, so we break after the first one.
120 */
121 cds_lfht_for_each_entry(output->socks->ht, &iter.iter, socket, node.node) {
122 pthread_mutex_lock(socket->lock);
123 ret = consumer_rotate_rename(socket, session->id, output,
124 current_path, new_path, create, uid, gid);
125 pthread_mutex_unlock(socket->lock);
126 if (ret) {
127 ERR("Consumer rename chunk");
128 ret = -1;
129 rcu_read_unlock();
130 goto end;
131 }
132 break;
133 }
134 rcu_read_unlock();
135
136 ret = 0;
137
138 end:
139 return ret;
140 }
141
142 int rename_complete_chunk(struct ltt_session *session, time_t ts)
143 {
144 struct tm *timeinfo;
145 char datetime[16];
146 char *tmppath = NULL;
147 int ret;
148
149 timeinfo = localtime(&ts);
150 strftime(datetime, sizeof(datetime), "%Y%m%d-%H%M%S", timeinfo);
151
152 tmppath = zmalloc(PATH_MAX * sizeof(char));
153 if (!tmppath) {
154 ERR("Alloc tmppath");
155 ret = -1;
156 goto end;
157 }
158
159 snprintf(tmppath, PATH_MAX, "%s%s-%" PRIu64,
160 session->rotation_chunk.current_rotate_path,
161 datetime, session->rotate_count);
162
163 fprintf(stderr, "rename %s to %s\n", session->rotation_chunk.current_rotate_path,
164 tmppath);
165
166 ret = session_rename_chunk(session,
167 session->rotation_chunk.current_rotate_path,
168 tmppath, 0);
169 if (ret) {
170 ERR("Session rename");
171 ret = -1;
172 goto end;
173 }
174
175 /*
176 * Store the path where the readable chunk is. This path is valid
177 * and can be queried by the client with rotate_pending until the next
178 * rotation is started.
179 */
180 snprintf(session->rotation_chunk.current_rotate_path, PATH_MAX,
181 "%s", tmppath);
182 session->rotate_pending = 0;
183
184 end:
185 free(tmppath);
186 return ret;
187 }
188
This page took 0.037008 seconds and 5 git commands to generate.