3e12f00f1749a42201060db8424ec217bc527622
[lttng-tools.git] / tests / lttng / kernel_all_events_basic.c
1 /*
2 * Copyright (c) 2011 David Goulet <david.goulet@polymtl.ca>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * as published by the Free Software Foundation; only version 2
7 * of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
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.
17 */
18
19 #define _GNU_SOURCE
20 #include <assert.h>
21 #include <errno.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <unistd.h>
26 #include <time.h>
27
28 #include <lttng/lttng.h>
29
30 #include "../utils.h"
31
32 int main(int argc, char **argv)
33 {
34 struct lttng_handle *handle = NULL;
35 struct lttng_domain dom;
36 struct lttng_event event;
37 char *channel_name = "channel0";
38 char *session_name = "kernel_all_events_basic";
39 int ret = 0;
40
41 memset(&dom, 0, sizeof(dom));
42 memset(&event, 0, sizeof(event));
43 dom.type = LTTNG_DOMAIN_KERNEL;
44 event.type = LTTNG_EVENT_TRACEPOINT;
45 event.loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
46
47 printf("\nTesting tracing all kernel events:\n");
48 printf("-----------\n");
49 /* Check if root */
50 if (getuid() != 0) {
51 printf("Root access is needed.\nPlease run 'sudo make check' -- Aborting!\n");
52 return 0;
53 }
54
55 if (argc < 2) {
56 printf("Missing session trace path\n");
57 return 1;
58 }
59
60 printf("Creating tracing session (%s): ", argv[1]);
61 if ((ret = lttng_create_session(session_name, argv[1])) < 0) {
62 printf("error creating the session : %s\n", lttng_strerror(ret));
63 goto create_fail;
64 }
65 PRINT_OK();
66
67 printf("Creating session handle: ");
68 if ((handle = lttng_create_handle(session_name, &dom)) == NULL) {
69 printf("error creating handle: %s\n", lttng_strerror(ret));
70 goto handle_fail;
71 }
72 PRINT_OK();
73
74 printf("Enabling all kernel events: ");
75 if ((ret = lttng_enable_event(handle, &event, channel_name)) < 0) {
76 printf("error enabling event: %s\n", lttng_strerror(ret));
77 goto enable_fail;
78 }
79 PRINT_OK();
80
81 printf("Start tracing: ");
82 if ((ret = lttng_start_tracing(session_name)) < 0) {
83 printf("error starting tracing: %s\n", lttng_strerror(ret));
84 goto start_fail;
85 }
86 PRINT_OK();
87
88 sleep(2);
89
90 printf("Stop tracing: ");
91 if ((ret = lttng_stop_tracing(session_name)) < 0) {
92 printf("error stopping tracing: %s\n", lttng_strerror(ret));
93 goto stop_fail;
94 }
95 PRINT_OK();
96
97 printf("Destroy tracing session: ");
98 if ((ret = lttng_destroy_session(session_name)) < 0) {
99 printf("error destroying session: %s\n", lttng_strerror(ret));
100 }
101 PRINT_OK();
102
103 return 0;
104
105 create_fail:
106 assert(ret != 0);
107 handle_fail:
108 assert(handle != NULL);
109
110 stop_fail:
111 start_fail:
112 enable_fail:
113 lttng_destroy_session(session_name);
114 lttng_destroy_handle(handle);
115
116 return 1;
117 }
This page took 0.034108 seconds and 3 git commands to generate.