Commit | Line | Data |
---|---|---|
91d76f53 | 1 | /* |
5b74c7b1 DG |
2 | * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca> |
3 | * | |
d14d33bf AM |
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. | |
5b74c7b1 DG |
7 | * |
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. | |
12 | * | |
d14d33bf AM |
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. | |
5b74c7b1 DG |
16 | */ |
17 | ||
18 | #ifndef _LTT_SESSION_H | |
19 | #define _LTT_SESSION_H | |
20 | ||
20fe2104 | 21 | #include <urcu/list.h> |
d4a2a84a | 22 | |
6dc3064a DG |
23 | #include <common/hashtable/hashtable.h> |
24 | ||
25 | #include "snapshot.h" | |
00187dd4 | 26 | #include "trace-kernel.h" |
7972aab2 DG |
27 | |
28 | struct ltt_ust_session; | |
00187dd4 | 29 | |
b5541356 DG |
30 | /* |
31 | * Tracing session list | |
32 | * | |
33 | * Statically declared in session.c and can be accessed by using | |
54d01ffb | 34 | * session_get_list() function that returns the pointer to the list. |
b5541356 | 35 | */ |
5b74c7b1 | 36 | struct ltt_session_list { |
b5541356 | 37 | /* |
a24f7994 MD |
38 | * This lock protects any read/write access to the list and |
39 | * next_uuid. All public functions in session.c acquire this | |
40 | * lock and release it before returning. If none of those | |
41 | * functions are used, the lock MUST be acquired in order to | |
42 | * iterate or/and do any actions on that list. | |
b5541356 DG |
43 | */ |
44 | pthread_mutex_t lock; | |
6c9cc2ab | 45 | |
b5541356 | 46 | /* |
a24f7994 MD |
47 | * Session unique ID generator. The session list lock MUST be |
48 | * upon update and read of this counter. | |
b5541356 | 49 | */ |
a24f7994 | 50 | unsigned int next_uuid; |
6c9cc2ab DG |
51 | |
52 | /* Linked list head */ | |
5b74c7b1 DG |
53 | struct cds_list_head head; |
54 | }; | |
55 | ||
b5541356 DG |
56 | /* |
57 | * This data structure contains information needed to identify a tracing | |
58 | * session for both LTTng and UST. | |
5b74c7b1 DG |
59 | */ |
60 | struct ltt_session { | |
74babd95 | 61 | char name[NAME_MAX]; |
20fe2104 | 62 | struct ltt_kernel_session *kernel_session; |
f6a9efaa | 63 | struct ltt_ust_session *ust_session; |
b5541356 DG |
64 | /* |
65 | * Protect any read/write on this session data structure. This lock must be | |
66 | * acquired *before* using any public functions declared below. Use | |
54d01ffb | 67 | * session_lock() and session_unlock() for that. |
b5541356 DG |
68 | */ |
69 | pthread_mutex_t lock; | |
70 | struct cds_list_head list; | |
464dd62d | 71 | int enabled; /* enabled/started flag */ |
fc4705fe | 72 | unsigned int id; /* session unique identifier */ |
6df2e2c9 MD |
73 | /* UID/GID of the user owning the session */ |
74 | uid_t uid; | |
75 | gid_t gid; | |
00e2e675 DG |
76 | /* |
77 | * Network session handle. A value of 0 means that there is no remote | |
78 | * session established. | |
79 | */ | |
80 | uint64_t net_handle; | |
81 | /* | |
82 | * This consumer is only set when the create_session_uri call is made. | |
83 | * This contains the temporary information for a consumer output. Upon | |
84 | * creation of the UST or kernel session, this consumer, if available, is | |
85 | * copied into those sessions. | |
86 | */ | |
87 | struct consumer_output *consumer; | |
a4b92340 | 88 | |
9b6c7ec5 DG |
89 | /* Did a start command occured before the kern/ust session creation? */ |
90 | unsigned int started; | |
6dc3064a DG |
91 | |
92 | /* Snapshot representation in a session. */ | |
93 | struct snapshot snapshot; | |
94 | /* Indicate if the session has to output the traces or not. */ | |
95 | unsigned int output_traces; | |
5b74c7b1 DG |
96 | }; |
97 | ||
98 | /* Prototypes */ | |
dec56f6c | 99 | int session_create(char *name, uid_t uid, gid_t gid); |
271933a4 | 100 | int session_destroy(struct ltt_session *session); |
6c9cc2ab | 101 | |
54d01ffb DG |
102 | void session_lock(struct ltt_session *session); |
103 | void session_lock_list(void); | |
104 | void session_unlock(struct ltt_session *session); | |
105 | void session_unlock_list(void); | |
6c9cc2ab | 106 | |
54d01ffb DG |
107 | struct ltt_session *session_find_by_name(char *name); |
108 | struct ltt_session_list *session_get_list(void); | |
5b74c7b1 | 109 | |
2f77fc4b DG |
110 | int session_access_ok(struct ltt_session *session, uid_t uid, gid_t gid); |
111 | ||
5b74c7b1 | 112 | #endif /* _LTT_SESSION_H */ |