mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-05 18:14:07 +08:00
bcaf0a9785
Having functions to access nsinfo reduces the places where reference counting checking needs to be added. Signed-off-by: Ian Rogers <irogers@google.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Alexey Bayduraev <alexey.v.bayduraev@linux.intel.com> Cc: Andi Kleen <ak@linux.intel.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: André Almeida <andrealmeid@collabora.com> Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Cc: Darren Hart <dvhart@infradead.org> Cc: Davidlohr Bueso <dave@stgolabs.net> Cc: Dmitriy Vyukov <dvyukov@google.com> Cc: Eric Dumazet <edumazet@google.com> Cc: German Gomez <german.gomez@arm.com> Cc: Hao Luo <haoluo@google.com> Cc: James Clark <james.clark@arm.com> Cc: Jin Yao <yao.jin@linux.intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: John Garry <john.garry@huawei.com> Cc: Kajol Jain <kjain@linux.ibm.com> Cc: Kan Liang <kan.liang@linux.intel.com> Cc: Leo Yan <leo.yan@linaro.org> Cc: Madhavan Srinivasan <maddy@linux.ibm.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Masami Hiramatsu <mhiramat@kernel.org> Cc: Miaoqian Lin <linmq006@gmail.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Riccardo Mancini <rickyman7@gmail.com> Cc: Shunsuke Nakamura <nakamura.shun@fujitsu.com> Cc: Song Liu <song@kernel.org> Cc: Stephane Eranian <eranian@google.com> Cc: Stephen Brennan <stephen.s.brennan@oracle.com> Cc: Steven Rostedt (VMware) <rostedt@goodmis.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Thomas Richter <tmricht@linux.ibm.com> Cc: Yury Norov <yury.norov@gmail.com> Link: http://lore.kernel.org/lkml/20220211103415.2737789-14-irogers@google.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
83 lines
1.9 KiB
C
83 lines
1.9 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
*
|
|
* Copyright (C) 2017 Hari Bathini, IBM Corporation
|
|
*/
|
|
|
|
#ifndef __PERF_NAMESPACES_H
|
|
#define __PERF_NAMESPACES_H
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <linux/stddef.h>
|
|
#include <linux/perf_event.h>
|
|
#include <linux/refcount.h>
|
|
#include <linux/types.h>
|
|
|
|
#ifndef HAVE_SETNS_SUPPORT
|
|
int setns(int fd, int nstype);
|
|
#endif
|
|
|
|
struct perf_record_namespaces;
|
|
|
|
struct namespaces {
|
|
struct list_head list;
|
|
u64 end_time;
|
|
struct perf_ns_link_info link_info[];
|
|
};
|
|
|
|
struct namespaces *namespaces__new(struct perf_record_namespaces *event);
|
|
void namespaces__free(struct namespaces *namespaces);
|
|
|
|
struct nsinfo {
|
|
pid_t pid;
|
|
pid_t tgid;
|
|
pid_t nstgid;
|
|
bool need_setns;
|
|
bool in_pidns;
|
|
char *mntns_path;
|
|
refcount_t refcnt;
|
|
};
|
|
|
|
struct nscookie {
|
|
int oldns;
|
|
int newns;
|
|
char *oldcwd;
|
|
};
|
|
|
|
int nsinfo__init(struct nsinfo *nsi);
|
|
struct nsinfo *nsinfo__new(pid_t pid);
|
|
struct nsinfo *nsinfo__copy(const struct nsinfo *nsi);
|
|
|
|
struct nsinfo *nsinfo__get(struct nsinfo *nsi);
|
|
void nsinfo__put(struct nsinfo *nsi);
|
|
|
|
bool nsinfo__need_setns(const struct nsinfo *nsi);
|
|
void nsinfo__clear_need_setns(struct nsinfo *nsi);
|
|
pid_t nsinfo__tgid(const struct nsinfo *nsi);
|
|
pid_t nsinfo__nstgid(const struct nsinfo *nsi);
|
|
pid_t nsinfo__pid(const struct nsinfo *nsi);
|
|
pid_t nsinfo__in_pidns(const struct nsinfo *nsi);
|
|
|
|
void nsinfo__mountns_enter(struct nsinfo *nsi, struct nscookie *nc);
|
|
void nsinfo__mountns_exit(struct nscookie *nc);
|
|
|
|
char *nsinfo__realpath(const char *path, struct nsinfo *nsi);
|
|
int nsinfo__stat(const char *filename, struct stat *st, struct nsinfo *nsi);
|
|
|
|
bool nsinfo__is_in_root_namespace(void);
|
|
|
|
static inline void __nsinfo__zput(struct nsinfo **nsip)
|
|
{
|
|
if (nsip) {
|
|
nsinfo__put(*nsip);
|
|
*nsip = NULL;
|
|
}
|
|
}
|
|
|
|
#define nsinfo__zput(nsi) __nsinfo__zput(&nsi)
|
|
|
|
const char *perf_ns__name(unsigned int id);
|
|
|
|
#endif /* __PERF_NAMESPACES_H */
|