namespaces.h 1.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/*
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License, version 2, as
 * published by the Free Software Foundation.
 *
 * Copyright (C) 2017 Hari Bathini, IBM Corporation
 */

#ifndef __PERF_NAMESPACES_H
#define __PERF_NAMESPACES_H

12 13
#include <sys/types.h>
#include <linux/perf_event.h>
14
#include <linux/refcount.h>
15
#include <linux/types.h>
16 17 18 19 20 21 22 23 24 25 26 27

struct namespaces_event;

struct namespaces {
	struct list_head list;
	u64 end_time;
	struct perf_ns_link_info link_info[];
};

struct namespaces *namespaces__new(struct namespaces_event *event);
void namespaces__free(struct namespaces *namespaces);

28 29
struct nsinfo {
	pid_t			pid;
30 31
	pid_t			tgid;
	pid_t			nstgid;
32 33 34 35 36 37 38 39 40 41
	bool			need_setns;
	char			*mntns_path;
	refcount_t		refcnt;
};

struct nscookie {
	int			oldns;
	int			newns;
};

42
int nsinfo__init(struct nsinfo *nsi);
43
struct nsinfo *nsinfo__new(pid_t pid);
44
struct nsinfo *nsinfo__copy(struct nsinfo *nsi);
45 46 47 48 49 50 51 52
void nsinfo__delete(struct nsinfo *nsi);

struct nsinfo *nsinfo__get(struct nsinfo *nsi);
void nsinfo__put(struct nsinfo *nsi);

void nsinfo__mountns_enter(struct nsinfo *nsi, struct nscookie *nc);
void nsinfo__mountns_exit(struct nscookie *nc);

53 54
char *nsinfo__realpath(const char *path, struct nsinfo *nsi);

55 56 57 58 59 60 61 62 63 64
static inline void __nsinfo__zput(struct nsinfo **nsip)
{
	if (nsip) {
		nsinfo__put(*nsip);
		*nsip = NULL;
	}
}

#define nsinfo__zput(nsi) __nsinfo__zput(&nsi)

65
#endif  /* __PERF_NAMESPACES_H */