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