Fix: fields alignements in live protocol
[lttng-tools.git] / src / bin / lttng-relayd / lttng-viewer.h
CommitLineData
ddea0ada
JD
1#ifndef LTTNG_VIEWER_H
2#define LTTNG_VIEWER_H
3
d3e2ba59
JD
4/*
5 * Copyright (C) 2013 - Julien Desfossez <jdesfossez@efficios.com>
c404302f 6 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
d3e2ba59
JD
7 * David Goulet <dgoulet@efficios.com>
8 *
c404302f
JD
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
d3e2ba59 15 *
c404302f
JD
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
d3e2ba59 18 *
c404302f
JD
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * SOFTWARE.
d3e2ba59
JD
26 */
27
d3e2ba59
JD
28#include <limits.h>
29
30#define LTTNG_VIEWER_PATH_MAX 4096
31#define LTTNG_VIEWER_NAME_MAX 255
32#define LTTNG_VIEWER_HOST_NAME_MAX 64
33
34/* Flags in reply to get_next_index and get_packet. */
35/* New metadata is required to read this packet. */
36#define LTTNG_VIEWER_FLAG_NEW_METADATA (1 << 0)
ddea0ada 37/* New stream got added to the trace. */
d3e2ba59
JD
38#define LTTNG_VIEWER_FLAG_NEW_STREAM (1 << 1)
39
40enum lttng_viewer_command {
41 VIEWER_CONNECT = 1,
42 VIEWER_LIST_SESSIONS = 2,
43 VIEWER_ATTACH_SESSION = 3,
44 VIEWER_GET_NEXT_INDEX = 4,
45 VIEWER_GET_PACKET = 5,
46 VIEWER_GET_METADATA = 6,
47};
48
49enum lttng_viewer_attach_return_code {
50 VIEWER_ATTACH_OK = 1, /* If the attach command succeeded. */
51 VIEWER_ATTACH_ALREADY = 2, /* If a viewer is already attached. */
52 VIEWER_ATTACH_UNK = 3, /* If the session ID is unknown. */
53 VIEWER_ATTACH_NOT_LIVE = 4, /* If the session is not live. */
54 VIEWER_ATTACH_SEEK_ERR = 5, /* Seek error. */
55};
56
57enum lttng_viewer_next_index_return_code {
58 VIEWER_INDEX_OK = 1, /* Index is available. */
59 VIEWER_INDEX_RETRY = 2, /* Index not yet available. */
60 VIEWER_INDEX_HUP = 3, /* Index closed (trace destroyed). */
61 VIEWER_INDEX_ERR = 4, /* Unknow error. */
62 VIEWER_INDEX_INACTIVE = 5, /* Inactive stream beacon. */
6b6b9a5a 63 VIEWER_INDEX_EOF = 6, /* End of index file. */
d3e2ba59
JD
64};
65
66enum lttng_viewer_get_packet_return_code {
67 VIEWER_GET_PACKET_OK = 1,
68 VIEWER_GET_PACKET_RETRY = 2,
69 VIEWER_GET_PACKET_ERR = 3,
6b6b9a5a 70 VIEWER_GET_PACKET_EOF = 4,
d3e2ba59
JD
71};
72
73enum lttng_viewer_get_metadata_return_code {
74 VIEWER_METADATA_OK = 1,
75 VIEWER_NO_NEW_METADATA = 2,
76 VIEWER_METADATA_ERR = 3,
77};
78
79enum lttng_viewer_connection_type {
80 VIEWER_CLIENT_COMMAND = 1,
81 VIEWER_CLIENT_NOTIFICATION = 2,
82};
83
84enum lttng_viewer_seek {
ddea0ada
JD
85 /* Receive the trace packets from the beginning. */
86 VIEWER_SEEK_BEGINNING = 1,
87 /* Receive the trace packets from now. */
88 VIEWER_SEEK_LAST = 2,
d3e2ba59
JD
89};
90
91struct lttng_viewer_session {
92 uint64_t id;
d3e2ba59
JD
93 uint32_t live_timer;
94 uint32_t clients;
87b576ec 95 uint32_t streams;
ddea0ada
JD
96 char hostname[LTTNG_VIEWER_HOST_NAME_MAX];
97 char session_name[LTTNG_VIEWER_NAME_MAX];
d3e2ba59
JD
98} __attribute__((__packed__));
99
100struct lttng_viewer_stream {
101 uint64_t id;
102 uint64_t ctf_trace_id;
ddea0ada 103 int metadata_flag;
d3e2ba59
JD
104 char path_name[LTTNG_VIEWER_PATH_MAX];
105 char channel_name[LTTNG_VIEWER_NAME_MAX];
d3e2ba59
JD
106} __attribute__((__packed__));
107
108struct lttng_viewer_cmd {
109 uint64_t data_size; /* data size following this header */
110 uint32_t cmd; /* enum lttcomm_relayd_command */
111 uint32_t cmd_version; /* command version */
112} __attribute__((__packed__));
113
114/*
115 * CONNECT payload.
116 */
117struct lttng_viewer_connect {
ddea0ada
JD
118 /* session ID assigned by the relay for command connections */
119 uint64_t viewer_session_id;
d3e2ba59
JD
120 uint32_t major;
121 uint32_t minor;
122 uint32_t type; /* enum lttng_viewer_connection_type */
d3e2ba59
JD
123} __attribute__((__packed__));
124
125/*
126 * VIEWER_LIST_SESSIONS payload.
127 */
128struct lttng_viewer_list_sessions {
129 uint32_t sessions_count;
130 char session_list[]; /* struct lttng_viewer_session */
131} __attribute__((__packed__));
132
133/*
134 * VIEWER_ATTACH_SESSION payload.
135 */
136struct lttng_viewer_attach_session_request {
137 uint64_t session_id;
d3e2ba59 138 uint64_t offset; /* unused for now */
ddea0ada 139 uint32_t seek; /* enum lttng_viewer_seek */
d3e2ba59
JD
140} __attribute__((__packed__));
141
142struct lttng_viewer_attach_session_response {
ddea0ada
JD
143 /* enum lttng_viewer_attach_return_code */
144 uint32_t status;
d3e2ba59 145 uint32_t streams_count;
ddea0ada
JD
146 /* struct lttng_viewer_stream */
147 char stream_list[];
d3e2ba59
JD
148} __attribute__((__packed__));
149
150/*
151 * VIEWER_GET_NEXT_INDEX payload.
152 */
153struct lttng_viewer_get_next_index {
154 uint64_t stream_id;
155} __attribute__ ((__packed__));
156
157struct lttng_viewer_index {
d3e2ba59
JD
158 uint64_t offset;
159 uint64_t packet_size;
160 uint64_t content_size;
161 uint64_t timestamp_begin;
162 uint64_t timestamp_end;
163 uint64_t events_discarded;
164 uint64_t stream_id;
ddea0ada
JD
165 /* enum lttng_viewer_next_index_return_code */
166 uint32_t status;
d3e2ba59
JD
167 uint32_t flags; /* LTTNG_VIEWER_FLAG_* */
168} __attribute__ ((__packed__));
169
170/*
171 * VIEWER_GET_PACKET payload.
172 */
173struct lttng_viewer_get_packet {
174 uint64_t stream_id;
175 uint64_t offset;
176 uint32_t len;
177} __attribute__((__packed__));
178
179struct lttng_viewer_trace_packet {
ddea0ada
JD
180 /* enum lttng_viewer_get_packet_return_code */
181 uint32_t status;
d3e2ba59
JD
182 uint32_t len;
183 uint32_t flags; /* LTTNG_VIEWER_FLAG_* */
184 char data[];
185} __attribute__((__packed__));
186
187/*
188 * VIEWER_GET_METADATA payload.
189 */
190struct lttng_viewer_get_metadata {
191 uint64_t stream_id;
192} __attribute__((__packed__));
193
194struct lttng_viewer_metadata_packet {
d3e2ba59 195 uint64_t len;
ddea0ada
JD
196 /* enum lttng_viewer_get_metadata_return_code */
197 uint32_t status;
d3e2ba59
JD
198 char data[];
199} __attribute__((__packed__));
200
201#endif /* LTTNG_VIEWER_H */
This page took 0.031562 seconds and 4 git commands to generate.