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