blob: b20f6ead7b2d92826c43434ab692f67b9e242a19 [file] [log] [blame]
Hari Bathinif3b36142017-03-08 02:11:43 +05301/*
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 Johansen843ff372017-07-05 18:48:08 -070014#include <linux/refcount.h>
Hari Bathinif3b36142017-03-08 02:11:43 +053015
16struct namespaces_event;
17
18struct namespaces {
19 struct list_head list;
20 u64 end_time;
21 struct perf_ns_link_info link_info[];
22};
23
24struct namespaces *namespaces__new(struct namespaces_event *event);
25void namespaces__free(struct namespaces *namespaces);
26
Krister Johansen843ff372017-07-05 18:48:08 -070027struct nsinfo {
28 pid_t pid;
29 bool need_setns;
30 char *mntns_path;
31 refcount_t refcnt;
32};
33
34struct nscookie {
35 int oldns;
36 int newns;
37};
38
39void nsinfo__init(struct nsinfo *nsi);
40struct nsinfo *nsinfo__new(pid_t pid);
41void nsinfo__delete(struct nsinfo *nsi);
42
43struct nsinfo *nsinfo__get(struct nsinfo *nsi);
44void nsinfo__put(struct nsinfo *nsi);
45
46void nsinfo__mountns_enter(struct nsinfo *nsi, struct nscookie *nc);
47void nsinfo__mountns_exit(struct nscookie *nc);
48
49static 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 Bathinif3b36142017-03-08 02:11:43 +053059#endif /* __PERF_NAMESPACES_H */