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 | |
| 12 | #include "../perf.h" |
| 13 | #include <linux/list.h> |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame^] | 14 | #include <linux/refcount.h> |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 15 | |
| 16 | struct namespaces_event; |
| 17 | |
| 18 | struct namespaces { |
| 19 | struct list_head list; |
| 20 | u64 end_time; |
| 21 | struct perf_ns_link_info link_info[]; |
| 22 | }; |
| 23 | |
| 24 | struct namespaces *namespaces__new(struct namespaces_event *event); |
| 25 | void namespaces__free(struct namespaces *namespaces); |
| 26 | |
Krister Johansen | 843ff37 | 2017-07-05 18:48:08 -0700 | [diff] [blame^] | 27 | struct nsinfo { |
| 28 | pid_t pid; |
| 29 | bool need_setns; |
| 30 | char *mntns_path; |
| 31 | refcount_t refcnt; |
| 32 | }; |
| 33 | |
| 34 | struct nscookie { |
| 35 | int oldns; |
| 36 | int newns; |
| 37 | }; |
| 38 | |
| 39 | void nsinfo__init(struct nsinfo *nsi); |
| 40 | struct nsinfo *nsinfo__new(pid_t pid); |
| 41 | void nsinfo__delete(struct nsinfo *nsi); |
| 42 | |
| 43 | struct nsinfo *nsinfo__get(struct nsinfo *nsi); |
| 44 | void nsinfo__put(struct nsinfo *nsi); |
| 45 | |
| 46 | void nsinfo__mountns_enter(struct nsinfo *nsi, struct nscookie *nc); |
| 47 | void nsinfo__mountns_exit(struct nscookie *nc); |
| 48 | |
| 49 | static inline void __nsinfo__zput(struct nsinfo **nsip) |
| 50 | { |
| 51 | if (nsip) { |
| 52 | nsinfo__put(*nsip); |
| 53 | *nsip = NULL; |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | #define nsinfo__zput(nsi) __nsinfo__zput(&nsi) |
| 58 | |
Hari Bathini | f3b3614 | 2017-03-08 02:11:43 +0530 | [diff] [blame] | 59 | #endif /* __PERF_NAMESPACES_H */ |