blob: a58e91197729a40305d071809b95d83b49bc8548 [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#include "namespaces.h"
10#include "util.h"
11#include "event.h"
Krister Johansen843ff372017-07-05 18:48:08 -070012#include <sys/types.h>
13#include <sys/stat.h>
Krister Johansen544abd42017-07-05 18:48:10 -070014#include <limits.h>
Krister Johansen843ff372017-07-05 18:48:08 -070015#include <sched.h>
Hari Bathinif3b36142017-03-08 02:11:43 +053016#include <stdlib.h>
17#include <stdio.h>
Arnaldo Carvalho de Melo72f7c4d2017-04-19 19:06:30 -030018#include <string.h>
Krister Johansen843ff372017-07-05 18:48:08 -070019#include <unistd.h>
Hari Bathinif3b36142017-03-08 02:11:43 +053020
21struct namespaces *namespaces__new(struct namespaces_event *event)
22{
23 struct namespaces *namespaces;
24 u64 link_info_size = ((event ? event->nr_namespaces : NR_NAMESPACES) *
25 sizeof(struct perf_ns_link_info));
26
27 namespaces = zalloc(sizeof(struct namespaces) + link_info_size);
28 if (!namespaces)
29 return NULL;
30
31 namespaces->end_time = -1;
32
33 if (event)
34 memcpy(namespaces->link_info, event->link_info, link_info_size);
35
36 return namespaces;
37}
38
39void namespaces__free(struct namespaces *namespaces)
40{
41 free(namespaces);
42}
Krister Johansen843ff372017-07-05 18:48:08 -070043
Krister Johansenbf2e7102017-07-05 18:48:09 -070044int nsinfo__init(struct nsinfo *nsi)
Krister Johansen843ff372017-07-05 18:48:08 -070045{
46 char oldns[PATH_MAX];
Krister Johansenbf2e7102017-07-05 18:48:09 -070047 char spath[PATH_MAX];
Krister Johansen843ff372017-07-05 18:48:08 -070048 char *newns = NULL;
Krister Johansenbf2e7102017-07-05 18:48:09 -070049 char *statln = NULL;
Krister Johansen843ff372017-07-05 18:48:08 -070050 struct stat old_stat;
51 struct stat new_stat;
Krister Johansenbf2e7102017-07-05 18:48:09 -070052 FILE *f = NULL;
53 size_t linesz = 0;
54 int rv = -1;
Krister Johansen843ff372017-07-05 18:48:08 -070055
56 if (snprintf(oldns, PATH_MAX, "/proc/self/ns/mnt") >= PATH_MAX)
Krister Johansenbf2e7102017-07-05 18:48:09 -070057 return rv;
Krister Johansen843ff372017-07-05 18:48:08 -070058
59 if (asprintf(&newns, "/proc/%d/ns/mnt", nsi->pid) == -1)
Krister Johansenbf2e7102017-07-05 18:48:09 -070060 return rv;
Krister Johansen843ff372017-07-05 18:48:08 -070061
62 if (stat(oldns, &old_stat) < 0)
63 goto out;
64
65 if (stat(newns, &new_stat) < 0)
66 goto out;
67
68 /* Check if the mount namespaces differ, if so then indicate that we
69 * want to switch as part of looking up dso/map data.
70 */
71 if (old_stat.st_ino != new_stat.st_ino) {
72 nsi->need_setns = true;
73 nsi->mntns_path = newns;
74 newns = NULL;
75 }
76
Krister Johansenbf2e7102017-07-05 18:48:09 -070077 /* If we're dealing with a process that is in a different PID namespace,
78 * attempt to work out the innermost tgid for the process.
79 */
80 if (snprintf(spath, PATH_MAX, "/proc/%d/status", nsi->pid) >= PATH_MAX)
81 goto out;
82
83 f = fopen(spath, "r");
84 if (f == NULL)
85 goto out;
86
87 while (getline(&statln, &linesz, f) != -1) {
88 /* Use tgid if CONFIG_PID_NS is not defined. */
89 if (strstr(statln, "Tgid:") != NULL) {
90 nsi->tgid = (pid_t)strtol(strrchr(statln, '\t'),
91 NULL, 10);
92 nsi->nstgid = nsi->tgid;
93 }
94
95 if (strstr(statln, "NStgid:") != NULL) {
96 nsi->nstgid = (pid_t)strtol(strrchr(statln, '\t'),
97 NULL, 10);
98 break;
99 }
100 }
101 rv = 0;
102
Krister Johansen843ff372017-07-05 18:48:08 -0700103out:
Krister Johansenbf2e7102017-07-05 18:48:09 -0700104 if (f != NULL)
105 (void) fclose(f);
106 free(statln);
Krister Johansen843ff372017-07-05 18:48:08 -0700107 free(newns);
Krister Johansenbf2e7102017-07-05 18:48:09 -0700108 return rv;
Krister Johansen843ff372017-07-05 18:48:08 -0700109}
110
111struct nsinfo *nsinfo__new(pid_t pid)
112{
Krister Johansenbf2e7102017-07-05 18:48:09 -0700113 struct nsinfo *nsi;
Krister Johansen843ff372017-07-05 18:48:08 -0700114
Krister Johansenbf2e7102017-07-05 18:48:09 -0700115 if (pid == 0)
116 return NULL;
117
118 nsi = calloc(1, sizeof(*nsi));
Krister Johansen843ff372017-07-05 18:48:08 -0700119 if (nsi != NULL) {
120 nsi->pid = pid;
Krister Johansenbf2e7102017-07-05 18:48:09 -0700121 nsi->tgid = pid;
122 nsi->nstgid = pid;
Krister Johansen843ff372017-07-05 18:48:08 -0700123 nsi->need_setns = false;
Krister Johansenbf2e7102017-07-05 18:48:09 -0700124 /* Init may fail if the process exits while we're trying to look
125 * at its proc information. In that case, save the pid but
126 * don't try to enter the namespace.
127 */
128 if (nsinfo__init(nsi) == -1)
129 nsi->need_setns = false;
130
Krister Johansen843ff372017-07-05 18:48:08 -0700131 refcount_set(&nsi->refcnt, 1);
132 }
133
134 return nsi;
135}
136
Krister Johansenbf2e7102017-07-05 18:48:09 -0700137struct nsinfo *nsinfo__copy(struct nsinfo *nsi)
138{
139 struct nsinfo *nnsi;
140
141 nnsi = calloc(1, sizeof(*nnsi));
142 if (nnsi != NULL) {
143 nnsi->pid = nsi->pid;
144 nnsi->tgid = nsi->tgid;
145 nnsi->nstgid = nsi->nstgid;
146 nnsi->need_setns = nsi->need_setns;
147 if (nsi->mntns_path) {
148 nnsi->mntns_path = strdup(nsi->mntns_path);
149 if (!nnsi->mntns_path) {
150 free(nnsi);
151 return NULL;
152 }
153 }
154 refcount_set(&nnsi->refcnt, 1);
155 }
156
157 return nnsi;
158}
159
Krister Johansen843ff372017-07-05 18:48:08 -0700160void nsinfo__delete(struct nsinfo *nsi)
161{
162 zfree(&nsi->mntns_path);
163 free(nsi);
164}
165
166struct nsinfo *nsinfo__get(struct nsinfo *nsi)
167{
168 if (nsi)
169 refcount_inc(&nsi->refcnt);
170 return nsi;
171}
172
173void nsinfo__put(struct nsinfo *nsi)
174{
175 if (nsi && refcount_dec_and_test(&nsi->refcnt))
176 nsinfo__delete(nsi);
177}
178
Krister Johansenbf2e7102017-07-05 18:48:09 -0700179void nsinfo__mountns_enter(struct nsinfo *nsi,
180 struct nscookie *nc)
Krister Johansen843ff372017-07-05 18:48:08 -0700181{
182 char curpath[PATH_MAX];
183 int oldns = -1;
184 int newns = -1;
185
186 if (nc == NULL)
187 return;
188
189 nc->oldns = -1;
190 nc->newns = -1;
191
192 if (!nsi || !nsi->need_setns)
193 return;
194
195 if (snprintf(curpath, PATH_MAX, "/proc/self/ns/mnt") >= PATH_MAX)
196 return;
197
198 oldns = open(curpath, O_RDONLY);
199 if (oldns < 0)
200 return;
201
202 newns = open(nsi->mntns_path, O_RDONLY);
203 if (newns < 0)
204 goto errout;
205
206 if (setns(newns, CLONE_NEWNS) < 0)
207 goto errout;
208
209 nc->oldns = oldns;
210 nc->newns = newns;
211 return;
212
213errout:
214 if (oldns > -1)
215 close(oldns);
216 if (newns > -1)
217 close(newns);
218}
219
220void nsinfo__mountns_exit(struct nscookie *nc)
221{
222 if (nc == NULL || nc->oldns == -1 || nc->newns == -1)
223 return;
224
225 setns(nc->oldns, CLONE_NEWNS);
226
227 if (nc->oldns > -1) {
228 close(nc->oldns);
229 nc->oldns = -1;
230 }
231
232 if (nc->newns > -1) {
233 close(nc->newns);
234 nc->newns = -1;
235 }
236}
Krister Johansen544abd42017-07-05 18:48:10 -0700237
238char *nsinfo__realpath(const char *path, struct nsinfo *nsi)
239{
240 char *rpath;
241 struct nscookie nsc;
242
243 nsinfo__mountns_enter(nsi, &nsc);
244 rpath = realpath(path, NULL);
245 nsinfo__mountns_exit(&nsc);
246
247 return rpath;
248}