2 * Copyright (c) 2011 David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include <sys/types.h>
24 #include <sys/socket.h>
26 #include <netinet/in.h>
27 #include <arpa/inet.h>
29 #include <common/error.h>
30 #include <common/utils.h>
36 static const char *str_kernel
= "Kernel";
37 static const char *str_ust
= "UST";
38 static const char *str_jul
= "JUL";
39 static const char *str_log4j
= "LOG4J";
44 * Return allocated string with the session name found in the config
47 char *get_session_name(void)
49 char *path
, *session_name
= NULL
;
51 /* Get path to config file */
52 path
= utils_get_home_dir();
57 /* Get session name from config */
58 session_name
= config_read_session_name(path
);
59 if (session_name
== NULL
) {
63 DBG2("Config file path found: %s", path
);
64 DBG("Session name found: %s", session_name
);
74 * List commands line by line. This is mostly for bash auto completion and to
75 * avoid difficult parsing.
77 void list_commands(struct cmd_struct
*commands
, FILE *ofp
)
80 struct cmd_struct
*cmd
= NULL
;
83 while (cmd
->name
!= NULL
) {
84 fprintf(ofp
, "%s\n", cmd
->name
);
93 * Prints a simple list of the options available to a command. This is intended
94 * to be easily parsed for bash completion.
96 void list_cmd_options(FILE *ofp
, struct poptOption
*options
)
99 struct poptOption
*option
= NULL
;
101 for (i
= 0; options
[i
].longName
!= NULL
; i
++) {
102 option
= &options
[i
];
104 fprintf(ofp
, "--%s\n", option
->longName
);
106 if (isprint(option
->shortName
)) {
107 fprintf(ofp
, "-%c\n", option
->shortName
);
113 * fls: returns the position of the most significant bit.
114 * Returns 0 if no bit is set, else returns the position of the most
115 * significant bit (from 1 to 32 on 32-bit, from 1 to 64 on 64-bit).
117 #if defined(__i386) || defined(__x86_64)
119 unsigned int fls_u32(uint32_t x
)
127 : "=r" (r
) : "rm" (x
));
133 #if defined(__x86_64)
135 unsigned int fls_u64(uint64_t x
)
143 : "=r" (r
) : "rm" (x
));
150 static __attribute__((unused
))
151 unsigned int fls_u64(uint64_t x
)
158 if (!(x
& 0xFFFFFFFF00000000ULL
)) {
162 if (!(x
& 0xFFFF000000000000ULL
)) {
166 if (!(x
& 0xFF00000000000000ULL
)) {
170 if (!(x
& 0xF000000000000000ULL
)) {
174 if (!(x
& 0xC000000000000000ULL
)) {
178 if (!(x
& 0x8000000000000000ULL
)) {
187 static __attribute__((unused
))
188 unsigned int fls_u32(uint32_t x
)
194 if (!(x
& 0xFFFF0000U
)) {
198 if (!(x
& 0xFF000000U
)) {
202 if (!(x
& 0xF0000000U
)) {
206 if (!(x
& 0xC0000000U
)) {
210 if (!(x
& 0x80000000U
)) {
219 unsigned int fls_ulong(unsigned long x
)
221 #if (CAA_BITS_PER_LONG == 32)
229 * Return the minimum order for which x <= (1UL << order).
230 * Return -1 if x is 0.
232 int get_count_order_u32(uint32_t x
)
237 return fls_u32(x
- 1);
241 * Return the minimum order for which x <= (1UL << order).
242 * Return -1 if x is 0.
244 int get_count_order_u64(uint64_t x
)
249 return fls_u64(x
- 1);
253 * Return the minimum order for which x <= (1UL << order).
254 * Return -1 if x is 0.
256 int get_count_order_ulong(unsigned long x
)
261 return fls_ulong(x
- 1);
264 const char *get_domain_str(enum lttng_domain_type domain
)
269 case LTTNG_DOMAIN_KERNEL
:
270 str_dom
= str_kernel
;
272 case LTTNG_DOMAIN_UST
:
275 case LTTNG_DOMAIN_JUL
:
278 case LTTNG_DOMAIN_LOG4J
:
282 /* Should not have an unknown domain or else define it. */
290 * Spawn a lttng relayd daemon by forking and execv.
292 int spawn_relayd(const char *pathname
, int port
)
299 port
= DEFAULT_NETWORK_VIEWER_PORT
;
302 ret
= snprintf(url
, sizeof(url
), "tcp://localhost:%d", port
);
307 MSG("Spawning a relayd daemon");
311 * Spawn session daemon and tell
312 * it to signal us when ready.
314 execlp(pathname
, "lttng-relayd", "-L", url
, NULL
);
315 /* execlp only returns if error happened */
316 if (errno
== ENOENT
) {
317 ERR("No relayd found. Use --relayd-path.");
321 kill(getppid(), SIGTERM
); /* wake parent */
323 } else if (pid
> 0) {
336 * Check if relayd is alive.
338 * Return 1 if found else 0 if NOT found. Negative value on error.
340 int check_relayd(void)
343 struct sockaddr_in sin
;
345 fd
= socket(AF_INET
, SOCK_STREAM
, 0);
347 perror("socket check relayd");
352 sin
.sin_family
= AF_INET
;
353 sin
.sin_port
= htons(DEFAULT_NETWORK_VIEWER_PORT
);
354 ret
= inet_pton(sin
.sin_family
, "127.0.0.1", &sin
.sin_addr
);
356 perror("inet_pton check relayd");
362 * A successful connect means the relayd exists thus returning 0 else a
363 * negative value means it does NOT exists.
365 ret
= connect(fd
, &sin
, sizeof(sin
));
370 /* Already spawned. */
376 perror("close relayd fd");