1 // SPDX-License-Identifier: GPL-2.0
10 #include <linux/kernel.h>
14 #include <internal/lib.h>
19 #include "linux/string.h"
20 #include <linux/zalloc.h>
24 * Include definition of find_map() also used in perf-read-vdso.c for
25 * building perf-read-vdso32 and perf-read-vdsox32.
29 #define VDSO__TEMP_FILE_NAME "/tmp/perf-vdso.so-XXXXXX"
34 char temp_file_name
[sizeof(VDSO__TEMP_FILE_NAME
)];
36 const char *read_prog
;
40 struct vdso_file vdso
;
41 #if BITS_PER_LONG == 64
42 struct vdso_file vdso32
;
43 struct vdso_file vdsox32
;
47 static struct vdso_info
*vdso_info__new(void)
49 static const struct vdso_info vdso_info_init
= {
51 .temp_file_name
= VDSO__TEMP_FILE_NAME
,
52 .dso_name
= DSO__NAME_VDSO
,
54 #if BITS_PER_LONG == 64
56 .temp_file_name
= VDSO__TEMP_FILE_NAME
,
57 .dso_name
= DSO__NAME_VDSO32
,
58 .read_prog
= "perf-read-vdso32",
61 .temp_file_name
= VDSO__TEMP_FILE_NAME
,
62 .dso_name
= DSO__NAME_VDSOX32
,
63 .read_prog
= "perf-read-vdsox32",
68 return memdup(&vdso_info_init
, sizeof(vdso_info_init
));
71 static char *get_file(struct vdso_file
*vdso_file
)
80 return vdso_file
->temp_file_name
;
82 if (vdso_file
->error
|| find_map(&start
, &end
, VDSO__MAP_NAME
))
87 buf
= memdup(start
, size
);
91 fd
= mkstemp(vdso_file
->temp_file_name
);
95 if (size
== (size_t) write(fd
, buf
, size
))
96 vdso
= vdso_file
->temp_file_name
;
103 vdso_file
->found
= (vdso
!= NULL
);
104 vdso_file
->error
= !vdso_file
->found
;
108 void machine__exit_vdso(struct machine
*machine
)
110 struct vdso_info
*vdso_info
= machine
->vdso_info
;
115 if (vdso_info
->vdso
.found
)
116 unlink(vdso_info
->vdso
.temp_file_name
);
117 #if BITS_PER_LONG == 64
118 if (vdso_info
->vdso32
.found
)
119 unlink(vdso_info
->vdso32
.temp_file_name
);
120 if (vdso_info
->vdsox32
.found
)
121 unlink(vdso_info
->vdsox32
.temp_file_name
);
124 zfree(&machine
->vdso_info
);
127 static struct dso
*__machine__addnew_vdso(struct machine
*machine
, const char *short_name
,
128 const char *long_name
)
132 dso
= dso__new(short_name
);
134 __dsos__add(&machine
->dsos
, dso
);
135 dso__set_long_name(dso
, long_name
, false);
141 static enum dso_type
machine__thread_dso_type(struct machine
*machine
,
142 struct thread
*thread
)
144 enum dso_type dso_type
= DSO__TYPE_UNKNOWN
;
147 maps__for_each_entry(thread
->maps
, map
) {
148 struct dso
*dso
= map
->dso
;
149 if (!dso
|| dso
->long_name
[0] != '/')
151 dso_type
= dso__type(dso
, machine
);
152 if (dso_type
!= DSO__TYPE_UNKNOWN
)
159 #if BITS_PER_LONG == 64
161 static int vdso__do_copy_compat(FILE *f
, int fd
)
167 count
= fread(buf
, 1, sizeof(buf
), f
);
172 if (count
&& writen(fd
, buf
, count
) != (ssize_t
)count
)
179 static int vdso__copy_compat(const char *prog
, int fd
)
184 f
= popen(prog
, "r");
188 err
= vdso__do_copy_compat(f
, fd
);
196 static int vdso__create_compat_file(const char *prog
, char *temp_name
)
200 fd
= mkstemp(temp_name
);
204 err
= vdso__copy_compat(prog
, fd
);
212 static const char *vdso__get_compat_file(struct vdso_file
*vdso_file
)
216 if (vdso_file
->found
)
217 return vdso_file
->temp_file_name
;
219 if (vdso_file
->error
)
222 err
= vdso__create_compat_file(vdso_file
->read_prog
,
223 vdso_file
->temp_file_name
);
225 pr_err("%s failed, error %d\n", vdso_file
->read_prog
, err
);
226 vdso_file
->error
= true;
230 vdso_file
->found
= true;
232 return vdso_file
->temp_file_name
;
235 static struct dso
*__machine__findnew_compat(struct machine
*machine
,
236 struct vdso_file
*vdso_file
)
238 const char *file_name
;
241 dso
= __dsos__find(&machine
->dsos
, vdso_file
->dso_name
, true);
245 file_name
= vdso__get_compat_file(vdso_file
);
249 dso
= __machine__addnew_vdso(machine
, vdso_file
->dso_name
, file_name
);
254 static int __machine__findnew_vdso_compat(struct machine
*machine
,
255 struct thread
*thread
,
256 struct vdso_info
*vdso_info
,
259 enum dso_type dso_type
;
261 dso_type
= machine__thread_dso_type(machine
, thread
);
263 #ifndef HAVE_PERF_READ_VDSO32
264 if (dso_type
== DSO__TYPE_32BIT
)
267 #ifndef HAVE_PERF_READ_VDSOX32
268 if (dso_type
== DSO__TYPE_X32BIT
)
273 case DSO__TYPE_32BIT
:
274 *dso
= __machine__findnew_compat(machine
, &vdso_info
->vdso32
);
276 case DSO__TYPE_X32BIT
:
277 *dso
= __machine__findnew_compat(machine
, &vdso_info
->vdsox32
);
279 case DSO__TYPE_UNKNOWN
:
280 case DSO__TYPE_64BIT
:
288 static struct dso
*machine__find_vdso(struct machine
*machine
,
289 struct thread
*thread
)
291 struct dso
*dso
= NULL
;
292 enum dso_type dso_type
;
294 dso_type
= machine__thread_dso_type(machine
, thread
);
296 case DSO__TYPE_32BIT
:
297 dso
= __dsos__find(&machine
->dsos
, DSO__NAME_VDSO32
, true);
299 dso
= __dsos__find(&machine
->dsos
, DSO__NAME_VDSO
,
301 if (dso
&& dso_type
!= dso__type(dso
, machine
))
305 case DSO__TYPE_X32BIT
:
306 dso
= __dsos__find(&machine
->dsos
, DSO__NAME_VDSOX32
, true);
308 case DSO__TYPE_64BIT
:
309 case DSO__TYPE_UNKNOWN
:
311 dso
= __dsos__find(&machine
->dsos
, DSO__NAME_VDSO
, true);
318 struct dso
*machine__findnew_vdso(struct machine
*machine
,
319 struct thread
*thread
)
321 struct vdso_info
*vdso_info
;
322 struct dso
*dso
= NULL
;
324 down_write(&machine
->dsos
.lock
);
325 if (!machine
->vdso_info
)
326 machine
->vdso_info
= vdso_info__new();
328 vdso_info
= machine
->vdso_info
;
332 dso
= machine__find_vdso(machine
, thread
);
336 #if BITS_PER_LONG == 64
337 if (__machine__findnew_vdso_compat(machine
, thread
, vdso_info
, &dso
))
341 dso
= __dsos__find(&machine
->dsos
, DSO__NAME_VDSO
, true);
345 file
= get_file(&vdso_info
->vdso
);
347 dso
= __machine__addnew_vdso(machine
, DSO__NAME_VDSO
, file
);
352 up_write(&machine
->dsos
.lock
);
356 bool dso__is_vdso(struct dso
*dso
)
358 return !strcmp(dso
->short_name
, DSO__NAME_VDSO
) ||
359 !strcmp(dso
->short_name
, DSO__NAME_VDSO32
) ||
360 !strcmp(dso
->short_name
, DSO__NAME_VDSOX32
);