Fix: examples make distcheck failure
[lttng-ust.git] / liblttng-ust-java-agent / java / lttng-ust-agent-common / org / lttng / ust / agent / client / LttngTcpSessiondClient.java
CommitLineData
43e5396b 1/*
8ab5c06b 2 * Copyright (C) 2015-2016 EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
43e5396b
DG
3 * Copyright (C) 2013 - David Goulet <dgoulet@efficios.com>
4 *
5 * This library is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU Lesser General Public License, version 2.1 only,
7 * as published by the Free Software Foundation.
8 *
9 * This library is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
12 * for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this library; if not, write to the Free Software Foundation,
16 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
d60dfbe4 19package org.lttng.ust.agent.client;
43e5396b 20
f1fa0535 21import java.io.BufferedReader;
43e5396b 22import java.io.DataInputStream;
bc7de6d9 23import java.io.DataOutputStream;
f1fa0535 24import java.io.FileNotFoundException;
bc7de6d9
AM
25import java.io.FileReader;
26import java.io.IOException;
43e5396b 27import java.lang.management.ManagementFactory;
bc7de6d9
AM
28import java.net.Socket;
29import java.net.UnknownHostException;
30import java.nio.ByteBuffer;
31import java.nio.ByteOrder;
d60dfbe4
AM
32import java.util.concurrent.CountDownLatch;
33import java.util.concurrent.TimeUnit;
43e5396b 34
cbe2ebd6
AM
35import org.lttng.ust.agent.utils.LttngUstAgentLogger;
36
d60dfbe4
AM
37/**
38 * Client for agents to connect to a local session daemon, using a TCP socket.
39 *
40 * @author David Goulet
41 */
42public class LttngTcpSessiondClient implements Runnable {
43e5396b 43
08284556
AM
44 private static final String SESSION_HOST = "127.0.0.1";
45 private static final String ROOT_PORT_FILE = "/var/run/lttng/agent.port";
46 private static final String USER_PORT_FILE = "/.lttng/agent.port";
47
191f4058
AM
48 private static final int PROTOCOL_MAJOR_VERSION = 2;
49 private static final int PROTOCOL_MINOR_VERSION = 0;
08284556 50
d60dfbe4 51 /** Command header from the session deamon. */
d60dfbe4 52 private final CountDownLatch registrationLatch = new CountDownLatch(1);
43e5396b 53
43e5396b 54 private Socket sessiondSock;
501f6777 55 private volatile boolean quit = false;
43e5396b
DG
56
57 private DataInputStream inFromSessiond;
58 private DataOutputStream outToSessiond;
59
3165c2f5
AM
60 private final ILttngTcpClientListener logAgent;
61 private final int domainValue;
d60dfbe4 62 private final boolean isRoot;
501f6777 63
d60dfbe4
AM
64 /**
65 * Constructor
66 *
67 * @param logAgent
3165c2f5
AM
68 * The listener this client will operate on, typically an LTTng
69 * agent.
70 * @param domainValue
71 * The integer to send to the session daemon representing the
72 * tracing domain to handle.
d60dfbe4
AM
73 * @param isRoot
74 * True if this client should connect to the root session daemon,
75 * false if it should connect to the user one.
76 */
3165c2f5 77 public LttngTcpSessiondClient(ILttngTcpClientListener logAgent, int domainValue, boolean isRoot) {
d60dfbe4 78 this.logAgent = logAgent;
3165c2f5 79 this.domainValue = domainValue;
d60dfbe4 80 this.isRoot = isRoot;
43e5396b
DG
81 }
82
d60dfbe4
AM
83 /**
84 * Wait until this client has successfully established a connection to its
85 * target session daemon.
86 *
87 * @param seconds
88 * A timeout in seconds after which this method will return
89 * anyway.
90 * @return True if the the client actually established the connection, false
91 * if we returned because the timeout has elapsed or the thread was
92 * interrupted.
f1fa0535 93 */
d60dfbe4
AM
94 public boolean waitForConnection(int seconds) {
95 try {
96 return registrationLatch.await(seconds, TimeUnit.SECONDS);
97 } catch (InterruptedException e) {
98 return false;
f1fa0535
DG
99 }
100 }
101
501f6777
CB
102 @Override
103 public void run() {
43e5396b
DG
104 for (;;) {
105 if (this.quit) {
106 break;
107 }
108
109 try {
110
111 /*
112 * Connect to the session daemon before anything else.
113 */
cbe2ebd6 114 LttngUstAgentLogger.log(getClass(), "Connecting to sessiond");
43e5396b
DG
115 connectToSessiond();
116
117 /*
118 * Register to the session daemon as the Java component of the
119 * UST application.
120 */
cbe2ebd6 121 LttngUstAgentLogger.log(getClass(), "Registering to sessiond");
43e5396b 122 registerToSessiond();
43e5396b 123
43e5396b
DG
124 /*
125 * Block on socket receive and wait for command from the
126 * session daemon. This will return if and only if there is a
127 * fatal error or the socket closes.
128 */
cbe2ebd6 129 LttngUstAgentLogger.log(getClass(), "Waiting on sessiond commands...");
43e5396b
DG
130 handleSessiondCmd();
131 } catch (UnknownHostException uhe) {
d60dfbe4 132 uhe.printStackTrace();
43e5396b 133 } catch (IOException ioe) {
501f6777
CB
134 try {
135 Thread.sleep(3000);
136 } catch (InterruptedException e) {
137 e.printStackTrace();
138 }
43e5396b
DG
139 }
140 }
141 }
142
d60dfbe4
AM
143 /**
144 * Dispose this client and close any socket connection it may hold.
145 */
146 public void close() {
cbe2ebd6 147 LttngUstAgentLogger.log(getClass(), "Closing client");
43e5396b 148 this.quit = true;
43e5396b
DG
149
150 try {
151 if (this.sessiondSock != null) {
152 this.sessiondSock.close();
153 }
d60dfbe4 154 } catch (IOException e) {
43e5396b
DG
155 e.printStackTrace();
156 }
157 }
158
301a3ddb
AM
159 private void connectToSessiond() throws IOException {
160 int port;
43e5396b 161
301a3ddb
AM
162 if (this.isRoot) {
163 port = getPortFromFile(ROOT_PORT_FILE);
164 if (port == 0) {
165 /* No session daemon available. Stop and retry later. */
166 throw new IOException();
167 }
168 } else {
169 port = getPortFromFile(getHomePath() + USER_PORT_FILE);
170 if (port == 0) {
171 /* No session daemon available. Stop and retry later. */
172 throw new IOException();
173 }
43e5396b 174 }
301a3ddb
AM
175
176 this.sessiondSock = new Socket(SESSION_HOST, port);
177 this.inFromSessiond = new DataInputStream(sessiondSock.getInputStream());
178 this.outToSessiond = new DataOutputStream(sessiondSock.getOutputStream());
179 }
180
181 private static String getHomePath() {
182 return System.getProperty("user.home");
43e5396b
DG
183 }
184
d60dfbe4 185 /**
301a3ddb 186 * Read port number from file created by the session daemon.
43e5396b 187 *
301a3ddb 188 * @return port value if found else 0.
43e5396b 189 */
301a3ddb
AM
190 private static int getPortFromFile(String path) throws IOException {
191 int port;
192 BufferedReader br = null;
43e5396b 193
301a3ddb
AM
194 try {
195 br = new BufferedReader(new FileReader(path));
196 String line = br.readLine();
197 port = Integer.parseInt(line, 10);
198 if (port < 0 || port > 65535) {
199 /* Invalid value. Ignore. */
200 port = 0;
201 }
202 } catch (FileNotFoundException e) {
203 /* No port available. */
204 port = 0;
205 } finally {
206 if (br != null) {
207 br.close();
208 }
43e5396b
DG
209 }
210
301a3ddb
AM
211 return port;
212 }
213
214 private void registerToSessiond() throws IOException {
215 byte data[] = new byte[16];
216 ByteBuffer buf = ByteBuffer.wrap(data);
217 String pid = ManagementFactory.getRuntimeMXBean().getName().split("@")[0];
218
3165c2f5 219 buf.putInt(domainValue);
301a3ddb 220 buf.putInt(Integer.parseInt(pid));
191f4058
AM
221 buf.putInt(PROTOCOL_MAJOR_VERSION);
222 buf.putInt(PROTOCOL_MINOR_VERSION);
301a3ddb
AM
223 this.outToSessiond.write(data, 0, data.length);
224 this.outToSessiond.flush();
43e5396b
DG
225 }
226
d60dfbe4 227 /**
43e5396b
DG
228 * Handle session command from the session daemon.
229 */
d60dfbe4 230 private void handleSessiondCmd() throws IOException {
301a3ddb
AM
231 /* Data read from the socket */
232 byte inputData[] = null;
233 /* Reply data written to the socket, sent to the sessiond */
234 byte responseData[] = null;
43e5396b
DG
235
236 while (true) {
237 /* Get header from session daemon. */
301a3ddb 238 SessiondCommandHeader cmdHeader = recvHeader();
43e5396b 239
301a3ddb
AM
240 if (cmdHeader.getDataSize() > 0) {
241 inputData = recvPayload(cmdHeader);
43e5396b
DG
242 }
243
301a3ddb 244 switch (cmdHeader.getCommandType()) {
d60dfbe4
AM
245 case CMD_REG_DONE:
246 {
247 /*
248 * Countdown the registration latch, meaning registration is
249 * done and we can proceed to continue tracing.
250 */
251 registrationLatch.countDown();
252 /*
253 * We don't send any reply to the registration done command.
254 * This just marks the end of the initial session setup.
255 */
cbe2ebd6 256 LttngUstAgentLogger.log(getClass(), "Registration done");
d60dfbe4
AM
257 continue;
258 }
259 case CMD_LIST:
260 {
1d193914 261 SessiondCommand listLoggerCmd = new SessiondListLoggersCommand();
93253569 262 LttngAgentResponse response = listLoggerCmd.execute(logAgent);
301a3ddb 263 responseData = response.getBytes();
cbe2ebd6 264 LttngUstAgentLogger.log(getClass(), "Received list loggers command");
d60dfbe4
AM
265 break;
266 }
8ab5c06b 267 case CMD_EVENT_ENABLE:
d60dfbe4 268 {
301a3ddb
AM
269 if (inputData == null) {
270 /* Invalid command */
93253569 271 responseData = LttngAgentResponse.FAILURE_RESPONSE.getBytes();
43e5396b
DG
272 break;
273 }
8ab5c06b
AM
274 SessiondCommand enableEventCmd = new SessiondEnableEventCommand(inputData);
275 LttngAgentResponse response = enableEventCmd.execute(logAgent);
301a3ddb 276 responseData = response.getBytes();
cbe2ebd6 277 LttngUstAgentLogger.log(getClass(), "Received enable event command");
d60dfbe4
AM
278 break;
279 }
8ab5c06b 280 case CMD_EVENT_DISABLE:
d60dfbe4 281 {
301a3ddb
AM
282 if (inputData == null) {
283 /* Invalid command */
93253569 284 responseData = LttngAgentResponse.FAILURE_RESPONSE.getBytes();
43e5396b
DG
285 break;
286 }
8ab5c06b
AM
287 SessiondCommand disableEventCmd = new SessiondDisableEventCommand(inputData);
288 LttngAgentResponse response = disableEventCmd.execute(logAgent);
289 responseData = response.getBytes();
cbe2ebd6 290 LttngUstAgentLogger.log(getClass(), "Received disable event command");
8ab5c06b
AM
291 break;
292 }
293 case CMD_APP_CTX_ENABLE:
294 {
295 if (inputData == null) {
296 /* This commands expects a payload, invalid command */
297 responseData = LttngAgentResponse.FAILURE_RESPONSE.getBytes();
298 break;
299 }
300 SessiondCommand enableAppCtxCmd = new SessiondEnableAppContextCommand(inputData);
301 LttngAgentResponse response = enableAppCtxCmd.execute(logAgent);
302 responseData = response.getBytes();
cbe2ebd6 303 LttngUstAgentLogger.log(getClass(), "Received enable app-context command");
8ab5c06b
AM
304 break;
305 }
306 case CMD_APP_CTX_DISABLE:
307 {
308 if (inputData == null) {
309 /* This commands expects a payload, invalid command */
310 responseData = LttngAgentResponse.FAILURE_RESPONSE.getBytes();
311 break;
312 }
313 SessiondCommand disableAppCtxCmd = new SessiondDisableAppContextCommand(inputData);
314 LttngAgentResponse response = disableAppCtxCmd.execute(logAgent);
301a3ddb 315 responseData = response.getBytes();
cbe2ebd6 316 LttngUstAgentLogger.log(getClass(), "Received disable app-context command");
d60dfbe4
AM
317 break;
318 }
319 default:
320 {
301a3ddb
AM
321 /* Unknown command, send empty reply */
322 responseData = new byte[4];
323 ByteBuffer buf = ByteBuffer.wrap(responseData);
d60dfbe4 324 buf.order(ByteOrder.BIG_ENDIAN);
cbe2ebd6 325 LttngUstAgentLogger.log(getClass(), "Received unknown command, ignoring");
d60dfbe4
AM
326 break;
327 }
43e5396b
DG
328 }
329
301a3ddb 330 /* Send response to the session daemon. */
cbe2ebd6 331 LttngUstAgentLogger.log(getClass(), "Sending response");
301a3ddb 332 this.outToSessiond.write(responseData, 0, responseData.length);
43e5396b
DG
333 this.outToSessiond.flush();
334 }
335 }
336
f1fa0535 337 /**
301a3ddb
AM
338 * Receive header data from the session daemon using the LTTng command
339 * static buffer of the right size.
f1fa0535 340 */
301a3ddb
AM
341 private SessiondCommandHeader recvHeader() throws IOException {
342 byte data[] = new byte[SessiondCommandHeader.HEADER_SIZE];
f1fa0535 343
301a3ddb
AM
344 int readLen = this.inFromSessiond.read(data, 0, data.length);
345 if (readLen != data.length) {
346 throw new IOException();
f1fa0535 347 }
301a3ddb 348 return new SessiondCommandHeader(data);
f1fa0535
DG
349 }
350
301a3ddb
AM
351 /**
352 * Receive payload from the session daemon. This MUST be done after a
353 * recvHeader() so the header value of a command are known.
354 *
355 * The caller SHOULD use isPayload() before which returns true if a payload
356 * is expected after the header.
357 */
358 private byte[] recvPayload(SessiondCommandHeader headerCmd) throws IOException {
359 byte payload[] = new byte[(int) headerCmd.getDataSize()];
f1fa0535 360
301a3ddb
AM
361 /* Failsafe check so we don't waste our time reading 0 bytes. */
362 if (payload.length == 0) {
363 return null;
f1fa0535
DG
364 }
365
301a3ddb
AM
366 this.inFromSessiond.read(payload, 0, payload.length);
367 return payload;
43e5396b
DG
368 }
369
43e5396b 370}
This page took 0.043709 seconds and 4 git commands to generate.