trace-chunk: clean-up: mark close command properties as static const
[lttng-tools.git] / src / common / index / index.c
CommitLineData
309167d2
JD
1/*
2 * Copyright (C) 2013 - Julien Desfossez <jdesfossez@efficios.com>
3 * David Goulet <dgoulet@efficios.com>
f8f3885c 4 * 2016 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
309167d2
JD
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License, version 2 only, as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
6c1c0768 20#define _LGPL_SOURCE
309167d2 21#include <assert.h>
1c20f0e2 22#include <sys/stat.h>
2f8f53af
DG
23#include <sys/types.h>
24#include <fcntl.h>
309167d2 25
d2956687 26#include <lttng/constant.h>
309167d2
JD
27#include <common/common.h>
28#include <common/defaults.h>
f263b7fd 29#include <common/compat/endian.h>
309167d2
JD
30#include <common/utils.h>
31
32#include "index.h"
33
2ef0da38 34#define WRITE_FILE_FLAGS (O_WRONLY | O_CREAT | O_TRUNC)
ebb29c10
JG
35#define READ_ONLY_FILE_FLAGS O_RDONLY
36
37static struct lttng_index_file *_lttng_index_file_create_from_trace_chunk(
d2956687 38 struct lttng_trace_chunk *chunk,
ebb29c10 39 const char *channel_path, const char *stream_name,
c35f9726 40 uint64_t stream_file_size, uint64_t stream_file_index,
d2956687 41 uint32_t index_major, uint32_t index_minor,
ebb29c10
JG
42 bool unlink_existing_file,
43 int flags)
d2956687
JG
44{
45 struct lttng_index_file *index_file;
46 enum lttng_trace_chunk_status chunk_status;
47 int ret, fd = -1;
48 ssize_t size_ret;
49 struct ctf_packet_index_file_hdr hdr;
50 char index_directory_path[LTTNG_PATH_MAX];
51 char index_file_path[LTTNG_PATH_MAX];
d2956687 52 const mode_t mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP;
ebb29c10 53 const bool acquired_reference = lttng_trace_chunk_get(chunk);
c35f9726
JG
54
55 assert(acquired_reference);
d2956687
JG
56
57 index_file = zmalloc(sizeof(*index_file));
58 if (!index_file) {
59 PERROR("Failed to allocate lttng_index_file");
60 goto error;
61 }
62
c35f9726 63 index_file->trace_chunk = chunk;
d2956687
JG
64 ret = snprintf(index_directory_path, sizeof(index_directory_path),
65 "%s/" DEFAULT_INDEX_DIR, channel_path);
66 if (ret < 0 || ret >= sizeof(index_directory_path)) {
67 ERR("Failed to format index directory path");
68 goto error;
69 }
70
71 ret = utils_stream_file_path(index_directory_path, stream_name,
c35f9726 72 stream_file_size, stream_file_index,
d2956687
JG
73 DEFAULT_INDEX_FILE_SUFFIX,
74 index_file_path, sizeof(index_file_path));
75 if (ret) {
76 goto error;
77 }
78
79 if (unlink_existing_file) {
80 /*
81 * For tracefile rotation. We need to unlink the old
82 * file if present to synchronize with the tail of the
83 * live viewer which could be working on this same file.
84 * By doing so, any reference to the old index file
85 * stays valid even if we re-create a new file with the
86 * same name afterwards.
87 */
348a81dc
JG
88 chunk_status = lttng_trace_chunk_unlink_file(
89 chunk, index_file_path);
90 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK &&
91 !(chunk_status == LTTNG_TRACE_CHUNK_STATUS_ERROR &&
92 errno == ENOENT)) {
d2956687
JG
93 goto error;
94 }
348a81dc 95 }
d2956687
JG
96
97 chunk_status = lttng_trace_chunk_open_file(chunk, index_file_path,
98 flags, mode, &fd);
99 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
100 goto error;
101 }
102
84546278
MD
103 if (flags == WRITE_FILE_FLAGS) {
104 ctf_packet_index_file_hdr_init(&hdr, index_major, index_minor);
105 size_ret = lttng_write(fd, &hdr, sizeof(hdr));
106 if (size_ret < sizeof(hdr)) {
107 PERROR("Failed to write index header");
108 goto error;
109 }
110 index_file->element_len = ctf_packet_index_len(index_major, index_minor);
111 } else {
112 uint32_t element_len;
113
114 size_ret = lttng_read(fd, &hdr, sizeof(hdr));
115 if (size_ret < 0) {
116 PERROR("Failed to read index header");
117 goto error;
118 }
119 if (be32toh(hdr.magic) != CTF_INDEX_MAGIC) {
120 ERR("Invalid header magic");
121 goto error;
122 }
123 if (index_major != be32toh(hdr.index_major)) {
124 ERR("Index major number mismatch: %u, expect %u",
125 be32toh(hdr.index_major), index_major);
126 goto error;
127 }
128 if (index_minor != be32toh(hdr.index_minor)) {
129 ERR("Index minor number mismatch: %u, expect %u",
130 be32toh(hdr.index_minor), index_minor);
131 goto error;
132 }
133 element_len = be32toh(hdr.packet_index_len);
134 if (element_len > sizeof(struct ctf_packet_index)) {
135 ERR("Index element length too long");
136 goto error;
137 }
138 index_file->element_len = element_len;
d2956687
JG
139 }
140 index_file->fd = fd;
141 index_file->major = index_major;
142 index_file->minor = index_minor;
d2956687
JG
143 urcu_ref_init(&index_file->ref);
144
145 return index_file;
146
147error:
148 if (fd >= 0) {
149 ret = close(fd);
150 if (ret < 0) {
151 PERROR("Failed to close file descriptor of index file");
152 }
153 }
154 free(index_file);
155 return NULL;
156}
157
ebb29c10
JG
158struct lttng_index_file *lttng_index_file_create_from_trace_chunk(
159 struct lttng_trace_chunk *chunk,
160 const char *channel_path, const char *stream_name,
161 uint64_t stream_file_size, uint64_t stream_file_index,
162 uint32_t index_major, uint32_t index_minor,
163 bool unlink_existing_file)
164{
165 return _lttng_index_file_create_from_trace_chunk(chunk, channel_path,
166 stream_name, stream_file_size, stream_file_index,
167 index_major, index_minor, unlink_existing_file,
168 WRITE_FILE_FLAGS);
169}
170
171struct lttng_index_file *lttng_index_file_create_from_trace_chunk_read_only(
172 struct lttng_trace_chunk *chunk,
173 const char *channel_path, const char *stream_name,
174 uint64_t stream_file_size, uint64_t stream_file_index,
175 uint32_t index_major, uint32_t index_minor)
176{
177 return _lttng_index_file_create_from_trace_chunk(chunk, channel_path,
178 stream_name, stream_file_size, stream_file_index,
179 index_major, index_minor, false,
180 READ_ONLY_FILE_FLAGS);
181}
182
309167d2 183/*
f8f3885c 184 * Write index values to the given index file.
309167d2 185 *
f8f3885c 186 * Return 0 on success, -1 on error.
309167d2 187 */
f8f3885c
MD
188int lttng_index_file_write(const struct lttng_index_file *index_file,
189 const struct ctf_packet_index *element)
309167d2 190{
0b0ac4a9
JR
191 int fd;
192 size_t len;
6cd525e8 193 ssize_t ret;
309167d2 194
0b0ac4a9 195 assert(index_file);
f8f3885c 196 assert(element);
309167d2 197
0b0ac4a9
JR
198 fd = index_file->fd;
199 len = index_file->element_len;
200
183f6fa2 201 if (fd < 0) {
183f6fa2
DG
202 goto error;
203 }
204
f8f3885c 205 ret = lttng_write(fd, element, len);
6cd525e8 206 if (ret < len) {
309167d2 207 PERROR("writing index file");
f8f3885c
MD
208 goto error;
209 }
210 return 0;
211
212error:
213 return -1;
214}
215
216/*
217 * Read index values from the given index file.
218 *
219 * Return 0 on success, -1 on error.
220 */
221int lttng_index_file_read(const struct lttng_index_file *index_file,
222 struct ctf_packet_index *element)
223{
224 ssize_t ret;
225 int fd = index_file->fd;
226 size_t len = index_file->element_len;
227
228 assert(element);
229
230 if (fd < 0) {
231 goto error;
232 }
233
234 ret = lttng_read(fd, element, len);
2239b15a 235 if (ret < 0) {
f8f3885c
MD
236 PERROR("read index file");
237 goto error;
309167d2 238 }
2239b15a
MD
239 if (ret < len) {
240 ERR("lttng_read expected %zu, returned %zd", len, ret);
241 goto error;
242 }
f8f3885c 243 return 0;
309167d2 244
183f6fa2 245error:
f8f3885c 246 return -1;
309167d2 247}
2f8f53af 248
f8f3885c
MD
249void lttng_index_file_get(struct lttng_index_file *index_file)
250{
251 urcu_ref_get(&index_file->ref);
252}
253
254static void lttng_index_file_release(struct urcu_ref *ref)
255{
256 struct lttng_index_file *index_file = caa_container_of(ref,
257 struct lttng_index_file, ref);
258
259 if (close(index_file->fd)) {
260 PERROR("close index fd");
261 }
c35f9726 262 lttng_trace_chunk_put(index_file->trace_chunk);
f8f3885c
MD
263 free(index_file);
264}
265
266void lttng_index_file_put(struct lttng_index_file *index_file)
267{
268 urcu_ref_put(&index_file->ref, lttng_index_file_release);
2f8f53af 269}
This page took 0.050191 seconds and 4 git commands to generate.