2 * Copyright (C) 2015-2016 EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
3 * Copyright (C) 2013 - David Goulet <dgoulet@efficios.com>
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.
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
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
19 package org.lttng.ust.agent.client;
21 import java.io.BufferedReader;
22 import java.io.DataInputStream;
23 import java.io.DataOutputStream;
24 import java.io.FileInputStream;
25 import java.io.FileNotFoundException;
26 import java.io.IOException;
27 import java.io.InputStreamReader;
28 import java.lang.management.ManagementFactory;
29 import java.net.Socket;
30 import java.net.UnknownHostException;
31 import java.nio.ByteBuffer;
32 import java.nio.ByteOrder;
33 import java.nio.charset.Charset;
34 import java.util.concurrent.CountDownLatch;
35 import java.util.concurrent.TimeUnit;
37 import org.lttng.ust.agent.utils.LttngUstAgentLogger;
40 * Client for agents to connect to a local session daemon, using a TCP socket.
42 * @author David Goulet
44 public class LttngTcpSessiondClient implements Runnable {
46 private static final String SESSION_HOST = "127.0.0.1";
47 private static final String ROOT_PORT_FILE = "/var/run/lttng/agent.port";
48 private static final String USER_PORT_FILE = "/.lttng/agent.port";
49 private static final Charset PORT_FILE_ENCODING = Charset.forName("UTF-8");
51 private static final int PROTOCOL_MAJOR_VERSION = 2;
52 private static final int PROTOCOL_MINOR_VERSION = 0;
54 /** Command header from the session deamon. */
55 private final CountDownLatch registrationLatch = new CountDownLatch(1);
57 private Socket sessiondSock;
58 private volatile boolean quit = false;
60 private DataInputStream inFromSessiond;
61 private DataOutputStream outToSessiond;
63 private final ILttngTcpClientListener logAgent;
64 private final int domainValue;
65 private final boolean isRoot;
71 * The listener this client will operate on, typically an LTTng
74 * The integer to send to the session daemon representing the
75 * tracing domain to handle.
77 * True if this client should connect to the root session daemon,
78 * false if it should connect to the user one.
80 public LttngTcpSessiondClient(ILttngTcpClientListener logAgent, int domainValue, boolean isRoot) {
81 this.logAgent = logAgent;
82 this.domainValue = domainValue;
87 * Wait until this client has successfully established a connection to its
88 * target session daemon.
91 * A timeout in seconds after which this method will return
93 * @return True if the the client actually established the connection, false
94 * if we returned because the timeout has elapsed or the thread was
97 public boolean waitForConnection(int seconds) {
99 return registrationLatch.await(seconds, TimeUnit.SECONDS);
100 } catch (InterruptedException e) {
115 * Connect to the session daemon before anything else.
117 log("Connecting to sessiond");
121 * Register to the session daemon as the Java component of the
124 log("Registering to sessiond");
125 registerToSessiond();
128 * Block on socket receive and wait for command from the
129 * session daemon. This will return if and only if there is a
130 * fatal error or the socket closes.
132 log("Waiting on sessiond commands...");
134 } catch (UnknownHostException uhe) {
135 uhe.printStackTrace();
136 } catch (IOException ioe) {
139 } catch (InterruptedException e) {
147 * Dispose this client and close any socket connection it may hold.
149 public void close() {
150 log("Closing client");
154 if (this.sessiondSock != null) {
155 this.sessiondSock.close();
157 } catch (IOException e) {
162 private void connectToSessiond() throws IOException {
163 int rootPort = getPortFromFile(ROOT_PORT_FILE);
164 int userPort = getPortFromFile(getHomePath() + USER_PORT_FILE);
167 * Check for the edge case of both files existing but pointing to the
168 * same port. In this case, let the root client handle it.
170 if ((rootPort != 0) && (rootPort == userPort) && (!isRoot)) {
171 log("User and root config files both point to port " + rootPort +
172 ". Letting the root client handle it.");
173 throw new IOException();
176 int portToUse = (isRoot ? rootPort : userPort);
178 if (portToUse == 0) {
179 /* No session daemon available. Stop and retry later. */
180 throw new IOException();
183 this.sessiondSock = new Socket(SESSION_HOST, portToUse);
184 this.inFromSessiond = new DataInputStream(sessiondSock.getInputStream());
185 this.outToSessiond = new DataOutputStream(sessiondSock.getOutputStream());
188 private static String getHomePath() {
190 * The environment variable LTTNG_HOME overrides HOME if
193 String homePath = System.getenv("LTTNG_HOME");
195 if (homePath == null) {
196 homePath = System.getProperty("user.home");
202 * Read port number from file created by the session daemon.
204 * @return port value if found else 0.
206 private static int getPortFromFile(String path) throws IOException {
208 BufferedReader br = null;
211 br = new BufferedReader(new InputStreamReader(new FileInputStream(path), PORT_FILE_ENCODING));
212 String line = br.readLine();
213 port = Integer.parseInt(line, 10);
214 if (port < 0 || port > 65535) {
215 /* Invalid value. Ignore. */
218 } catch (FileNotFoundException e) {
219 /* No port available. */
230 private void registerToSessiond() throws IOException {
231 byte data[] = new byte[16];
232 ByteBuffer buf = ByteBuffer.wrap(data);
233 String pid = ManagementFactory.getRuntimeMXBean().getName().split("@")[0];
235 buf.putInt(domainValue);
236 buf.putInt(Integer.parseInt(pid));
237 buf.putInt(PROTOCOL_MAJOR_VERSION);
238 buf.putInt(PROTOCOL_MINOR_VERSION);
239 this.outToSessiond.write(data, 0, data.length);
240 this.outToSessiond.flush();
244 * Handle session command from the session daemon.
246 private void handleSessiondCmd() throws IOException {
247 /* Data read from the socket */
248 byte inputData[] = null;
249 /* Reply data written to the socket, sent to the sessiond */
250 byte responseData[] = null;
253 /* Get header from session daemon. */
254 SessiondCommandHeader cmdHeader = recvHeader();
256 if (cmdHeader.getDataSize() > 0) {
257 inputData = recvPayload(cmdHeader);
260 switch (cmdHeader.getCommandType()) {
264 * Countdown the registration latch, meaning registration is
265 * done and we can proceed to continue tracing.
267 registrationLatch.countDown();
269 * We don't send any reply to the registration done command.
270 * This just marks the end of the initial session setup.
272 log("Registration done");
277 SessiondCommand listLoggerCmd = new SessiondListLoggersCommand();
278 LttngAgentResponse response = listLoggerCmd.execute(logAgent);
279 responseData = response.getBytes();
280 log("Received list loggers command");
283 case CMD_EVENT_ENABLE:
285 if (inputData == null) {
286 /* Invalid command */
287 responseData = LttngAgentResponse.FAILURE_RESPONSE.getBytes();
290 SessiondCommand enableEventCmd = new SessiondEnableEventCommand(inputData);
291 LttngAgentResponse response = enableEventCmd.execute(logAgent);
292 responseData = response.getBytes();
293 log("Received enable event command");
296 case CMD_EVENT_DISABLE:
298 if (inputData == null) {
299 /* Invalid command */
300 responseData = LttngAgentResponse.FAILURE_RESPONSE.getBytes();
303 SessiondCommand disableEventCmd = new SessiondDisableEventCommand(inputData);
304 LttngAgentResponse response = disableEventCmd.execute(logAgent);
305 responseData = response.getBytes();
306 log("Received disable event command");
309 case CMD_APP_CTX_ENABLE:
311 if (inputData == null) {
312 /* This commands expects a payload, invalid command */
313 responseData = LttngAgentResponse.FAILURE_RESPONSE.getBytes();
316 SessiondCommand enableAppCtxCmd = new SessiondEnableAppContextCommand(inputData);
317 LttngAgentResponse response = enableAppCtxCmd.execute(logAgent);
318 responseData = response.getBytes();
319 log("Received enable app-context command");
322 case CMD_APP_CTX_DISABLE:
324 if (inputData == null) {
325 /* This commands expects a payload, invalid command */
326 responseData = LttngAgentResponse.FAILURE_RESPONSE.getBytes();
329 SessiondCommand disableAppCtxCmd = new SessiondDisableAppContextCommand(inputData);
330 LttngAgentResponse response = disableAppCtxCmd.execute(logAgent);
331 responseData = response.getBytes();
332 log("Received disable app-context command");
337 /* Unknown command, send empty reply */
338 responseData = new byte[4];
339 ByteBuffer buf = ByteBuffer.wrap(responseData);
340 buf.order(ByteOrder.BIG_ENDIAN);
341 log("Received unknown command, ignoring");
346 /* Send response to the session daemon. */
347 log("Sending response");
348 this.outToSessiond.write(responseData, 0, responseData.length);
349 this.outToSessiond.flush();
354 * Receive header data from the session daemon using the LTTng command
355 * static buffer of the right size.
357 private SessiondCommandHeader recvHeader() throws IOException {
358 byte data[] = new byte[SessiondCommandHeader.HEADER_SIZE];
360 int readLen = this.inFromSessiond.read(data, 0, data.length);
361 if (readLen != data.length) {
362 throw new IOException();
364 return new SessiondCommandHeader(data);
368 * Receive payload from the session daemon. This MUST be done after a
369 * recvHeader() so the header value of a command are known.
371 * The caller SHOULD use isPayload() before which returns true if a payload
372 * is expected after the header.
374 private byte[] recvPayload(SessiondCommandHeader headerCmd) throws IOException {
375 byte payload[] = new byte[(int) headerCmd.getDataSize()];
377 /* Failsafe check so we don't waste our time reading 0 bytes. */
378 if (payload.length == 0) {
382 int read = inFromSessiond.read(payload, 0, payload.length);
383 if (read != payload.length) {
384 throw new IOException("Unexpected number of bytes read in sessiond command payload");
390 * Wrapper for this class's logging, adds the connection's characteristics
391 * to help differentiate between multiple TCP clients.
393 private void log(String message) {
394 LttngUstAgentLogger.log(getClass(),
395 "(root=" + isRoot + ", domain=" + domainValue + ") " + message);