Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 1 | /* |
| 2 | * This program is free software; you can redistribute it and/or modify |
| 3 | * it under the terms of the GNU General Public License, version 2, as |
| 4 | * published by the Free Software Foundation. |
| 5 | * |
| 6 | * Copyright (C) 2017 Hari Bathini, IBM Corporation |
| 7 | */ |
| 8 | |
| 9 | #ifndef __PERF_NAMESPACES_H |
| 10 | #define __PERF_NAMESPACES_H |
| 11 | |
Arnaldo Carvalho de Melo | b1f03ca | 2017-10-19 15:11:17 -0300 | [diff] [blame] | 12 | #include <sys/types.h> |
Arnaldo Carvalho de Melo | 44fe619 | 2018-07-30 13:15:03 -0300 | [diff] [blame] | 13 | #include <linux/stddef.h> |
Arnaldo Carvalho de Melo | b1f03ca | 2017-10-19 15:11:17 -0300 | [diff] [blame] | 14 | #include <linux/perf_event.h> |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame] | 15 | #include <linux/refcount.h> |
Arnaldo Carvalho de Melo | b1f03ca | 2017-10-19 15:11:17 -0300 | [diff] [blame] | 16 | #include <linux/types.h> |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 17 | |
| 18 | struct namespaces_event; |
| 19 | |
| 20 | struct namespaces { |
| 21 | struct list_head list; |
| 22 | u64 end_time; |
| 23 | struct perf_ns_link_info link_info[]; |
| 24 | }; |
| 25 | |
| 26 | struct namespaces *namespaces__new(struct namespaces_event *event); |
| 27 | void namespaces__free(struct namespaces *namespaces); |
| 28 | |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame] | 29 | struct nsinfo { |
| 30 | pid_t pid; |
Krister Johansen | bf2e710 | 2017-07-05 18:48:09 -0700 | [diff] [blame] | 31 | pid_t tgid; |
| 32 | pid_t nstgid; |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame] | 33 | bool need_setns; |
| 34 | char *mntns_path; |
| 35 | refcount_t refcnt; |
| 36 | }; |
| 37 | |
| 38 | struct nscookie { |
| 39 | int oldns; |
| 40 | int newns; |
Jiri Olsa | b01c1f69 | 2018-11-01 18:00:01 +0100 | [diff] [blame] | 41 | char *oldcwd; |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame] | 42 | }; |
| 43 | |
Krister Johansen | bf2e710 | 2017-07-05 18:48:09 -0700 | [diff] [blame] | 44 | int nsinfo__init(struct nsinfo *nsi); |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame] | 45 | struct nsinfo *nsinfo__new(pid_t pid); |
Krister Johansen | bf2e710 | 2017-07-05 18:48:09 -0700 | [diff] [blame] | 46 | struct nsinfo *nsinfo__copy(struct nsinfo *nsi); |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame] | 47 | void nsinfo__delete(struct nsinfo *nsi); |
| 48 | |
| 49 | struct nsinfo *nsinfo__get(struct nsinfo *nsi); |
| 50 | void nsinfo__put(struct nsinfo *nsi); |
| 51 | |
| 52 | void nsinfo__mountns_enter(struct nsinfo *nsi, struct nscookie *nc); |
| 53 | void nsinfo__mountns_exit(struct nscookie *nc); |
| 54 | |
Krister Johansen | 544abd4 | 2017-07-05 18:48:10 -0700 | [diff] [blame] | 55 | char *nsinfo__realpath(const char *path, struct nsinfo *nsi); |
| 56 | |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame] | 57 | static inline void __nsinfo__zput(struct nsinfo **nsip) |
| 58 | { |
| 59 | if (nsip) { |
| 60 | nsinfo__put(*nsip); |
| 61 | *nsip = NULL; |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | #define nsinfo__zput(nsi) __nsinfo__zput(&nsi) |
| 66 | |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 67 | #endif /* __PERF_NAMESPACES_H */ |