Fix: unchecked return value in trace_clock_read64_monotonic
[lttng-tools.git] / src / bin / lttng-sessiond / ust-clock.h
CommitLineData
d0b96690
DG
1/*
2 * Copyright (C) 2010 Pierre-Marc Fournier
3 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; version 2.1 of
8 * the License.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#ifndef _UST_CLOCK_H
21#define _UST_CLOCK_H
22
23#include <time.h>
24#include <sys/time.h>
25#include <stdint.h>
26#include <stddef.h>
27#include <stdio.h>
28#include <errno.h>
29
30#include <common/compat/uuid.h>
31
32/* TRACE CLOCK */
33
34/*
35 * Currently using the kernel MONOTONIC clock, waiting for kernel-side
36 * LTTng to implement mmap'd trace clock.
37 */
38
39/* Choosing correct trace clock */
40
41static __inline__
42uint64_t trace_clock_read64(void)
43{
44 struct timespec ts;
45
513ab0a1
MD
46 if (clock_gettime(CLOCK_MONOTONIC, &ts)) {
47 /* TODO Report error cleanly up the chain. */
48 PERROR("clock_gettime CLOCK_MONOTONIC");
49 ts.tv_sec = 0;
50 ts.tv_nsec = 0;
51 }
d0b96690
DG
52 return ((uint64_t) ts.tv_sec * 1000000000ULL) + ts.tv_nsec;
53}
54
55static __inline__
56uint64_t trace_clock_freq(void)
57{
58 return 1000000000ULL;
59}
60
61static __inline__
62int trace_clock_uuid(char *uuid)
63{
64 int ret = 0;
65 size_t len;
66 FILE *fp;
67
68 /*
69 * boot_id needs to be read once before being used concurrently
70 * to deal with a Linux kernel race. A fix is proposed for
71 * upstream, but the work-around is needed for older kernels.
72 */
73 fp = fopen("/proc/sys/kernel/random/boot_id", "r");
74 if (!fp) {
75 return -ENOENT;
76 }
77 len = fread(uuid, 1, UUID_STR_LEN - 1, fp);
78 if (len < UUID_STR_LEN - 1) {
79 ret = -EINVAL;
80 goto end;
81 }
82 uuid[UUID_STR_LEN - 1] = '\0';
83end:
84 fclose(fp);
85 return ret;
86}
87
88#endif /* _UST_CLOCK_H */
This page took 0.033941 seconds and 4 git commands to generate.