Add pidfile creation for lttng-sessiond
[lttng-tools.git] / src / common / defaults.h
CommitLineData
9bda164d 1/*
e848fc76
DG
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9bda164d 4 *
d14d33bf
AM
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
9bda164d 8 *
e848fc76
DG
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
d14d33bf 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
e848fc76 12 * more details.
9bda164d 13 *
d14d33bf
AM
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
9bda164d
DG
17 */
18
990570ed
DG
19#ifndef _DEFAULTS_H
20#define _DEFAULTS_H
e848fc76 21
bbccc3d2
DG
22/* Default unix group name for tracing. */
23#define DEFAULT_TRACING_GROUP "tracing"
24
25/* Environment variable to set session daemon binary path. */
26#define DEFAULT_SESSIOND_PATH_ENV "LTTNG_SESSIOND_PATH"
27
28/* Default trace output directory name */
29#define DEFAULT_TRACE_DIR_NAME "lttng-traces"
30
f6a9efaa 31/* Default size of a hash table */
60922cb0
DG
32#define DEFAULT_HT_SIZE 4
33
34/* Default session daemon paths */
35#define DEFAULT_HOME_DIR "/tmp"
36#define DEFAULT_UST_SOCK_DIR DEFAULT_HOME_DIR "/ust-app-socks"
37#define DEFAULT_GLOBAL_APPS_PIPE DEFAULT_UST_SOCK_DIR "/global"
38#define DEFAULT_TRACE_OUTPUT DEFAULT_HOME_DIR "/lttng"
39
40#define DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH "/lttng-ust-apps-wait"
41#define DEFAULT_HOME_APPS_WAIT_SHM_PATH "/lttng-ust-apps-wait-%u"
42
00e2e675
DG
43/* Default directory where the trace are written in per domain */
44#define DEFAULT_KERNEL_TRACE_DIR "/kernel"
45#define DEFAULT_UST_TRACE_DIR "/ust"
46
a4b92340
DG
47/*
48 * Default session name for the lttng command line. This default value will
49 * get the date and time appended (%Y%m%d-%H%M%S) to it.
50 */
07424f16 51#define DEFAULT_SESSION_NAME "auto"
a4b92340 52
60922cb0
DG
53/* Default consumer paths */
54#define DEFAULT_CONSUMERD_RUNDIR "%s"
55
56/* Kernel consumer path */
57#define DEFAULT_KCONSUMERD_PATH DEFAULT_CONSUMERD_RUNDIR "/kconsumerd"
58#define DEFAULT_KCONSUMERD_CMD_SOCK_PATH DEFAULT_KCONSUMERD_PATH "/command"
59#define DEFAULT_KCONSUMERD_ERR_SOCK_PATH DEFAULT_KCONSUMERD_PATH "/error"
60
61/* UST 64-bit consumer path */
62#define DEFAULT_USTCONSUMERD64_PATH DEFAULT_CONSUMERD_RUNDIR "/ustconsumerd64"
63#define DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH DEFAULT_USTCONSUMERD64_PATH "/command"
64#define DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH DEFAULT_USTCONSUMERD64_PATH "/error"
65
66/* UST 32-bit consumer path */
67#define DEFAULT_USTCONSUMERD32_PATH DEFAULT_CONSUMERD_RUNDIR "/ustconsumerd32"
68#define DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH DEFAULT_USTCONSUMERD32_PATH "/command"
69#define DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH DEFAULT_USTCONSUMERD32_PATH "/error"
70
f6a9efaa 71
990570ed 72/* Default lttng run directory */
60922cb0
DG
73#define DEFAULT_LTTNG_RUNDIR "/var/run/lttng"
74#define DEFAULT_LTTNG_HOME_RUNDIR "%s/.lttng"
35f90c40 75#define DEFAULT_LTTNG_SESSIOND_PIDFILE "lttng-sessiond.pid"
990570ed
DG
76
77/* Default unix socket path */
60922cb0
DG
78#define DEFAULT_GLOBAL_CLIENT_UNIX_SOCK DEFAULT_LTTNG_RUNDIR "/client-lttng-sessiond"
79#define DEFAULT_GLOBAL_APPS_UNIX_SOCK DEFAULT_LTTNG_RUNDIR "/apps-lttng-sessiond"
80#define DEFAULT_HOME_APPS_UNIX_SOCK DEFAULT_LTTNG_HOME_RUNDIR "/apps-lttng-sessiond"
81#define DEFAULT_HOME_CLIENT_UNIX_SOCK DEFAULT_LTTNG_HOME_RUNDIR "/client-lttng-sessiond"
44a5e5eb
DG
82#define DEFAULT_GLOBAL_HEALTH_UNIX_SOCK DEFAULT_LTTNG_RUNDIR "/health.sock"
83#define DEFAULT_HOME_HEALTH_UNIX_SOCK DEFAULT_LTTNG_HOME_RUNDIR "/health.sock"
990570ed
DG
84
85/*
86 * Value taken from the hard limit allowed by the kernel when using setrlimit
87 * with RLIMIT_NOFILE on an Intel i7 CPU and Linux 3.0.3.
88 */
89#define DEFAULT_POLL_SIZE 65535
90
ce2a9e76
DG
91/*
92 * Format is %s_%d respectively channel name and CPU number. Eigth bytes
93 * are added here to add space for the CPU number. I guess 2^8 CPUs is more
94 * than enough. We might end up with quantum computing in a cell phone when
95 * reaching this limit.
96 */
97#define DEFAULT_STREAM_NAME_LEN LTTNG_SYMBOL_NAME_LEN + 8
98
f3ed775e 99/* Default channel attributes */
3817e7df
DG
100#define DEFAULT_CHANNEL_NAME "channel0"
101#define DEFAULT_CHANNEL_OVERWRITE 0 /* usec */
7d452e12 102/* DEFAULT_CHANNEL_SUBBUF_SIZE must always be a power of 2 */
3817e7df 103#define DEFAULT_CHANNEL_SUBBUF_SIZE 4096 /* bytes */
7d452e12 104/* DEFAULT_CHANNEL_SUBBUF_NUM must always be a power of 2 */
9f778c9a 105#define DEFAULT_CHANNEL_SUBBUF_NUM 4
3817e7df 106#define DEFAULT_CHANNEL_SWITCH_TIMER 0 /* usec */
b389abbe 107#define DEFAULT_CHANNEL_READ_TIMER 200 /* usec */
3817e7df 108#define DEFAULT_CHANNEL_OUTPUT LTTNG_EVENT_MMAP
b389abbe 109
3817e7df
DG
110#define DEFAULT_METADATA_SUBBUF_SIZE 4096
111#define DEFAULT_METADATA_SUBBUF_NUM 2
e6ddca71 112
b389abbe
MD
113/* Kernel has different defaults */
114
115/* DEFAULT_KERNEL_CHANNEL_SUBBUF_SIZE must always be a power of 2 */
3817e7df 116#define DEFAULT_KERNEL_CHANNEL_SUBBUF_SIZE 262144 /* bytes */
9f778c9a
MD
117/*
118 * DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM must always be a power of 2.
119 * Update help manually if override.
120 */
121#define DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM DEFAULT_CHANNEL_SUBBUF_NUM
b389abbe 122/* See lttng-kernel.h enum lttng_kernel_output for channel output */
3817e7df 123#define DEFAULT_KERNEL_CHANNEL_OUTPUT LTTNG_EVENT_SPLICE
f3ed775e 124
0b0dd29a
DG
125/* User space defaults */
126
127/* Must be a power of 2 */
128#define DEFAULT_UST_CHANNEL_SUBBUF_SIZE 4096 /* bytes */
9f778c9a
MD
129/* Must be a power of 2. Update help manuall if override. */
130#define DEFAULT_UST_CHANNEL_SUBBUF_NUM DEFAULT_CHANNEL_SUBBUF_NUM
28ca4a8b 131/* See lttng-ust.h enum lttng_ust_output */
d41f73b7 132#define DEFAULT_UST_CHANNEL_OUTPUT LTTNG_EVENT_MMAP
0b0dd29a 133
ee0b0061
DG
134/*
135 * Default timeout value for the sem_timedwait() call. Blocking forever is not
136 * wanted so a timeout is used to control the data flow and not freeze the
137 * session daemon.
138 */
139#define DEFAULT_SEM_WAIT_TIMEOUT 30 /* in seconds */
140
3a5713da
DG
141/* Default network ports for trace streaming support */
142#define DEFAULT_NETWORK_CONTROL_PORT 5342
143#define DEFAULT_NETWORK_DATA_PORT 5343
144
8809eec0
MD
145/*
146 * If a thread stalls for this amount of time, it will be considered bogus (bad
147 * health).
148 */
149#define DEFAULT_HEALTH_CHECK_DELTA_S 20
150#define DEFAULT_HEALTH_CHECK_DELTA_NS 0
151
38ee087f 152/*
6d805429 153 * Wait period before retrying the lttng_data_pending command in the lttng
38ee087f
DG
154 * stop command of liblttng-ctl.
155 */
156#define DEFAULT_DATA_AVAILABILITY_WAIT_TIME 200000 /* usec */
157
ae9e45b3
DG
158/*
159 * Default receiving and sending timeout for an application socket.
160 */
161#define DEFAULT_APP_SOCKET_RW_TIMEOUT 5 /* sec */
162#define DEFAULT_APP_SOCKET_TIMEOUT_ENV "LTTNG_APP_SOCKET_TIMEOUT"
163
8b3bd7a3
SM
164
165extern size_t default_channel_subbuf_size;
166extern size_t default_metadata_subbuf_size;
167extern size_t default_ust_channel_subbuf_size;
168extern size_t default_kernel_channel_subbuf_size;
169
170
171/*
172 * Returns the default subbuf size.
173 *
174 * This function depends on a value that is set at constructor time, so it is
175 * unsafe to call it from another constructor.
176 */
177static inline
178size_t default_get_channel_subbuf_size(void)
179{
180 return default_channel_subbuf_size;
181}
182
183/*
184 * Returns the default metadata subbuf size.
185 *
186 * This function depends on a value that is set at constructor time, so it is
187 * unsafe to call it from another constructor.
188 */
189static inline
190size_t default_get_metadata_subbuf_size(void)
191{
192 return default_metadata_subbuf_size;
193}
194
195/*
196 * Returns the default subbuf size for the kernel domain.
197 *
198 * This function depends on a value that is set at constructor time, so it is
199 * unsafe to call it from another constructor.
200 */
201static inline
202size_t default_get_kernel_channel_subbuf_size(void)
203{
204 return default_kernel_channel_subbuf_size;
205}
206
207/*
208 * Returns the default subbuf size for the UST domain.
209 *
210 * This function depends on a value that is set at constructor time, so it is
211 * unsafe to call it from another constructor.
212 */
213static inline
214size_t default_get_ust_channel_subbuf_size(void)
215{
216 return default_ust_channel_subbuf_size;
217}
218
990570ed 219#endif /* _DEFAULTS_H */
This page took 0.03879 seconds and 4 git commands to generate.