6a095db60803e1cd45f50dce805faaba4d915716
[lttng-ust.git] / liblttng-ust-fd / lttng-ust-fd.c
1 /*
2 * Copyright (C) 2016 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; version 2.1 of
7 * the License.
8 *
9 * This library 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 GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19 #define _GNU_SOURCE
20 #define _LGPL_SOURCE
21 #include <limits.h>
22 #include <stdio.h>
23 #include <sys/types.h>
24 #include <unistd.h>
25 #include <ust-fd.h>
26 #include <dlfcn.h>
27
28 #include <helper.h>
29 #include "usterr-signal-safe.h"
30
31 volatile enum ust_loglevel ust_loglevel;
32
33 static int (*__lttng_ust_fd_plibc_close)(int fd);
34
35 static
36 int _lttng_ust_fd_libc_close(int fd)
37 {
38 if (!__lttng_ust_fd_plibc_close) {
39 __lttng_ust_fd_plibc_close = dlsym(RTLD_NEXT, "close");
40 if (!__lttng_ust_fd_plibc_close) {
41 fprintf(stderr, "%s\n", dlerror());
42 return -1;
43 }
44 }
45 return lttng_ust_safe_close_fd(fd, __lttng_ust_fd_plibc_close);
46 }
47
48 int close(int fd)
49 {
50 return _lttng_ust_fd_libc_close(fd);
51 }
52
53 #if defined(__sun__) || defined(__FreeBSD__)
54 /* Solaris and FreeBSD. */
55 void closefrom(int lowfd)
56 {
57 (void) lttng_ust_safe_closefrom(lowfd, __lttng_ust_fd_plibc_close);
58 }
59 #elif defined(__NetBSD__) || defined(__OpenBSD__)
60 /* NetBSD and OpenBSD. */
61 int closefrom(int lowfd)
62 {
63 return lttng_ust_safe_closefrom(lowfd, __lttng_ust_fd_plibc_close);
64 }
65 #else
66 /* As far as we know, this OS does not implement closefrom. */
67 #endif
This page took 0.030357 seconds and 3 git commands to generate.