Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 2 | /* |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2017 Hari Bathini, IBM Corporation |
| 5 | */ |
| 6 | |
| 7 | #ifndef __PERF_NAMESPACES_H |
| 8 | #define __PERF_NAMESPACES_H |
| 9 | |
Arnaldo Carvalho de Melo | b1f03ca | 2017-10-19 15:11:17 -0300 | [diff] [blame] | 10 | #include <sys/types.h> |
Arnaldo Carvalho de Melo | 44fe619 | 2018-07-30 13:15:03 -0300 | [diff] [blame] | 11 | #include <linux/stddef.h> |
Arnaldo Carvalho de Melo | b1f03ca | 2017-10-19 15:11:17 -0300 | [diff] [blame] | 12 | #include <linux/perf_event.h> |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame] | 13 | #include <linux/refcount.h> |
Arnaldo Carvalho de Melo | b1f03ca | 2017-10-19 15:11:17 -0300 | [diff] [blame] | 14 | #include <linux/types.h> |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 15 | |
Arnaldo Carvalho de Melo | 245aec7 | 2019-07-05 13:59:06 -0300 | [diff] [blame] | 16 | #ifndef HAVE_SETNS_SUPPORT |
| 17 | int setns(int fd, int nstype); |
| 18 | #endif |
| 19 | |
Arnaldo Carvalho de Melo | 69d81f0 | 2019-08-26 19:02:31 -0300 | [diff] [blame] | 20 | struct perf_record_namespaces; |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 21 | |
| 22 | struct namespaces { |
| 23 | struct list_head list; |
| 24 | u64 end_time; |
| 25 | struct perf_ns_link_info link_info[]; |
| 26 | }; |
| 27 | |
Arnaldo Carvalho de Melo | 69d81f0 | 2019-08-26 19:02:31 -0300 | [diff] [blame] | 28 | struct namespaces *namespaces__new(struct perf_record_namespaces *event); |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 29 | void namespaces__free(struct namespaces *namespaces); |
| 30 | |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame] | 31 | struct nsinfo { |
| 32 | pid_t pid; |
Krister Johansen | bf2e710 | 2017-07-05 18:48:09 -0700 | [diff] [blame] | 33 | pid_t tgid; |
| 34 | pid_t nstgid; |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame] | 35 | bool need_setns; |
| 36 | char *mntns_path; |
| 37 | refcount_t refcnt; |
| 38 | }; |
| 39 | |
| 40 | struct nscookie { |
| 41 | int oldns; |
| 42 | int newns; |
Jiri Olsa | b01c1f69 | 2018-11-01 18:00:01 +0100 | [diff] [blame] | 43 | char *oldcwd; |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame] | 44 | }; |
| 45 | |
Krister Johansen | bf2e710 | 2017-07-05 18:48:09 -0700 | [diff] [blame] | 46 | int nsinfo__init(struct nsinfo *nsi); |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame] | 47 | struct nsinfo *nsinfo__new(pid_t pid); |
Krister Johansen | bf2e710 | 2017-07-05 18:48:09 -0700 | [diff] [blame] | 48 | struct nsinfo *nsinfo__copy(struct nsinfo *nsi); |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame] | 49 | void nsinfo__delete(struct nsinfo *nsi); |
| 50 | |
| 51 | struct nsinfo *nsinfo__get(struct nsinfo *nsi); |
| 52 | void nsinfo__put(struct nsinfo *nsi); |
| 53 | |
| 54 | void nsinfo__mountns_enter(struct nsinfo *nsi, struct nscookie *nc); |
| 55 | void nsinfo__mountns_exit(struct nscookie *nc); |
| 56 | |
Krister Johansen | 544abd4 | 2017-07-05 18:48:10 -0700 | [diff] [blame] | 57 | char *nsinfo__realpath(const char *path, struct nsinfo *nsi); |
| 58 | |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame] | 59 | static inline void __nsinfo__zput(struct nsinfo **nsip) |
| 60 | { |
| 61 | if (nsip) { |
| 62 | nsinfo__put(*nsip); |
| 63 | *nsip = NULL; |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | #define nsinfo__zput(nsi) __nsinfo__zput(&nsi) |
| 68 | |
Arnaldo Carvalho de Melo | 055c67e | 2019-09-18 16:08:52 -0300 | [diff] [blame] | 69 | const char *perf_ns__name(unsigned int id); |
| 70 | |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 71 | #endif /* __PERF_NAMESPACES_H */ |