perf data: Clean up use_stdio and structures

use_stdio was associated with struct perf_data and not perf_data_file
meaning there was implicit use of fd rather than fptr that may not be
safe. For example, in perf_data_file__write. Reorganize perf_data_file
to better abstract use_stdio, add kernel-doc and more consistently use
perf_data__ accessors so that use_stdio is better respected.

Signed-off-by: Ian Rogers <irogers@google.com>
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
This commit is contained in:
Ian Rogers 2026-04-08 13:38:58 -07:00 committed by Namhyung Kim
parent 19a9ed115f
commit 80b549be27
6 changed files with 124 additions and 51 deletions

View File

@ -270,9 +270,8 @@ static s64 perf_event__repipe_auxtrace(const struct perf_tool *tool,
inject->have_auxtrace = true;
if (!inject->output.is_pipe) {
off_t offset;
off_t offset = perf_data__seek(&inject->output, 0, SEEK_CUR);
offset = lseek(inject->output.file.fd, 0, SEEK_CUR);
if (offset == -1)
return -errno;
ret = auxtrace_index__auxtrace_event(&session->auxtrace_index,
@ -2503,12 +2502,12 @@ int cmd_inject(int argc, const char **argv)
.output = {
.path = "-",
.mode = PERF_DATA_MODE_WRITE,
.use_stdio = true,
.file.use_stdio = true,
},
};
struct perf_data data = {
.mode = PERF_DATA_MODE_READ,
.use_stdio = true,
.file.use_stdio = true,
};
int ret;
const char *known_build_ids = NULL;

View File

@ -453,7 +453,7 @@ static int record__aio_pushfn(struct mmap *map, void *to, void *buf, size_t size
static int record__aio_push(struct record *rec, struct mmap *map, off_t *off)
{
int ret, idx;
int trace_fd = rec->session->data->file.fd;
int trace_fd = perf_data__fd(rec->session->data);
struct record_aio aio = { .rec = rec, .size = 0 };
/*
@ -1640,7 +1640,7 @@ static int record__mmap_read_evlist(struct record *rec, struct evlist *evlist,
int rc = 0;
int nr_mmaps;
struct mmap **maps;
int trace_fd = rec->data.file.fd;
int trace_fd = perf_data__fd(&rec->data);
off_t off = 0;
if (!evlist)
@ -1845,10 +1845,12 @@ record__finish_output(struct record *rec)
}
rec->session->header.data_size += rec->bytes_written;
data->file.size = lseek(perf_data__fd(data), 0, SEEK_CUR);
data->file.size = perf_data__seek(data, 0, SEEK_CUR);
if (record__threads_enabled(rec)) {
for (i = 0; i < data->dir.nr; i++)
data->dir.files[i].size = lseek(data->dir.files[i].fd, 0, SEEK_CUR);
for (i = 0; i < data->dir.nr; i++) {
data->dir.files[i].size =
perf_data_file__seek(&data->dir.files[i], 0, SEEK_CUR);
}
}
/* Buildid scanning disabled or build ID in kernel and synthesized map events. */

View File

@ -54,7 +54,8 @@ static int session_write_header(char *path)
session->header.data_size += DATA_SIZE;
TEST_ASSERT_VAL("failed to write header",
!perf_session__write_header(session, session->evlist, data.file.fd, true));
!perf_session__write_header(session, session->evlist,
perf_data__fd(&data), true));
evlist__delete(session->evlist);
perf_session__delete(session);

View File

@ -20,18 +20,33 @@
#include "rlimit.h"
#include <internal/lib.h>
static void perf_data_file__close(struct perf_data_file *file)
{
if (file->use_stdio) {
if (file->fptr) {
fclose(file->fptr);
file->fptr = NULL;
}
} else {
close(file->fd);
file->fd = -1;
}
zfree(&file->path);
}
static void close_dir(struct perf_data_file *files, int nr)
{
while (--nr >= 0) {
close(files[nr].fd);
zfree(&files[nr].path);
}
while (--nr >= 0)
perf_data_file__close(&files[nr]);
free(files);
}
void perf_data__close_dir(struct perf_data *data)
{
close_dir(data->dir.files, data->dir.nr);
data->dir.files = NULL;
data->dir.nr = 0;
}
int perf_data__create_dir(struct perf_data *data, int nr)
@ -132,16 +147,21 @@ int perf_data__open_dir(struct perf_data *data)
files = file;
file = &files[nr++];
file->path = strdup(path);
*file = (struct perf_data_file){
.path = strdup(path),
.fd = -1,
.size = st.st_size,
.use_stdio = false,
};
if (!file->path)
goto out_err;
ret = open(file->path, O_RDONLY);
if (ret < 0)
if (ret < 0) {
ret = -errno;
goto out_err;
}
file->fd = ret;
file->size = st.st_size;
}
closedir(dir);
@ -174,7 +194,7 @@ static bool check_pipe(struct perf_data *data)
}
if (is_pipe) {
if (data->use_stdio) {
if (data->file.use_stdio) {
const char *mode;
mode = perf_data__is_read(data) ? "r" : "w";
@ -182,7 +202,7 @@ static bool check_pipe(struct perf_data *data)
if (data->file.fptr == NULL) {
data->file.fd = fd;
data->use_stdio = false;
data->file.use_stdio = false;
}
/*
@ -344,7 +364,7 @@ int perf_data__open(struct perf_data *data)
return 0;
/* currently it allows stdio for pipe only */
data->use_stdio = false;
data->file.use_stdio = false;
if (!data->path)
data->path = "perf.data";
@ -364,41 +384,57 @@ void perf_data__close(struct perf_data *data)
if (perf_data__is_dir(data))
perf_data__close_dir(data);
zfree(&data->file.path);
perf_data_file__close(&data->file);
}
if (data->use_stdio)
fclose(data->file.fptr);
else
close(data->file.fd);
static ssize_t perf_data_file__read(struct perf_data_file *file, void *buf, size_t size)
{
if (file->use_stdio) {
if (fread(buf, size, 1, file->fptr) == 1)
return size;
return feof(file->fptr) ? 0 : -1;
}
return readn(file->fd, buf, size);
}
ssize_t perf_data__read(struct perf_data *data, void *buf, size_t size)
{
if (data->use_stdio) {
if (fread(buf, size, 1, data->file.fptr) == 1)
return size;
return feof(data->file.fptr) ? 0 : -1;
}
return readn(data->file.fd, buf, size);
return perf_data_file__read(&data->file, buf, size);
}
ssize_t perf_data_file__write(struct perf_data_file *file,
void *buf, size_t size)
{
if (file->use_stdio) {
if (fwrite(buf, size, /*nmemb=*/1, file->fptr) == 1)
return size;
return -1;
}
return writen(file->fd, buf, size);
}
ssize_t perf_data__write(struct perf_data *data,
void *buf, size_t size)
{
if (data->use_stdio) {
if (fwrite(buf, size, 1, data->file.fptr) == 1)
return size;
return -1;
}
return perf_data_file__write(&data->file, buf, size);
}
off_t perf_data_file__seek(struct perf_data_file *file, off_t offset, int whence)
{
if (file->use_stdio) {
off_t res = fseeko(file->fptr, offset, whence);
return res < 0 ? -1 : ftello(file->fptr);
}
return lseek(file->fd, offset, whence);
}
off_t perf_data__seek(struct perf_data *data, off_t offset, int whence)
{
/* Note, a pipe fd will fail with -1 with errno of ESPIPE. */
return perf_data_file__seek(&data->file, offset, whence);
}
int perf_data__switch(struct perf_data *data,
const char *postfix,
size_t pos, bool at_exit,
@ -420,19 +456,18 @@ int perf_data__switch(struct perf_data *data,
pr_warning("Failed to rename %s to %s\n", data->path, *new_filepath);
if (!at_exit) {
close(data->file.fd);
perf_data_file__close(&data->file);
ret = perf_data__open(data);
if (ret < 0)
goto out;
if (lseek(data->file.fd, pos, SEEK_SET) == (off_t)-1) {
if (perf_data__seek(data, pos, SEEK_SET) == (off_t)-1) {
ret = -errno;
pr_debug("Failed to lseek to %zu: %m\n",
pos);
pr_debug("Failed to seek to %zu: %m", pos);
goto out;
}
}
ret = data->file.fd;
ret = perf_data__fd(data);
out:
return ret;
}

View File

@ -17,32 +17,70 @@ enum perf_dir_version {
PERF_DIR_VERSION = 1,
};
/**
* struct perf_data_file: A wrapper around a file used for perf.data reading or writing. Generally
* part of struct perf_data.
*/
struct perf_data_file {
/**
* @path: Path of file. Generally a copy of perf_data.path but for a
* directory it is the file within the directory.
*/
char *path;
union {
/** @fd: File descriptor for read/writes. Valid if use_stdio is false. */
int fd;
/**
* @fptr: Stdio FILE. Valid if use_stdio is true, currently just
* pipes in perf inject.
*/
FILE *fptr;
};
/** @size: Size of file when opened. */
unsigned long size;
/** @use_stdio: Use buffered stdio operations. */
bool use_stdio;
};
/**
* struct perf_data: A wrapper around a file used for perf.data reading or writing.
*/
struct perf_data {
/** @path: Path to open and of the file. NULL implies 'perf.data' will be used. */
const char *path;
/** @file: Underlying file to be used. */
struct perf_data_file file;
/** @is_pipe: Underlying file is a pipe. */
bool is_pipe;
/** @is_dir: Underlying file is a directory. */
bool is_dir;
/** @force: Ignore opening a file creating created by a different user. */
bool force;
bool use_stdio;
/** @in_place_update: A file opened for reading but will be written to. */
bool in_place_update;
/** @mode: Read or write mode. */
enum perf_data_mode mode;
struct {
/** @version: perf_dir_version. */
u64 version;
/** @files: perf data files for the directory. */
struct perf_data_file *files;
/** @nr: Number of perf data files for the directory. */
int nr;
} dir;
};
static inline int perf_data_file__fd(struct perf_data_file *file)
{
return file->use_stdio ? fileno(file->fptr) : file->fd;
}
ssize_t perf_data_file__write(struct perf_data_file *file,
void *buf, size_t size);
off_t perf_data_file__seek(struct perf_data_file *file, off_t offset, int whence);
static inline bool perf_data__is_read(struct perf_data *data)
{
return data->mode == PERF_DATA_MODE_READ;
@ -70,10 +108,7 @@ static inline bool perf_data__is_single_file(struct perf_data *data)
static inline int perf_data__fd(struct perf_data *data)
{
if (data->use_stdio)
return fileno(data->file.fptr);
return data->file.fd;
return perf_data_file__fd(&data->file);
}
int perf_data__open(struct perf_data *data);
@ -81,8 +116,7 @@ void perf_data__close(struct perf_data *data);
ssize_t perf_data__read(struct perf_data *data, void *buf, size_t size);
ssize_t perf_data__write(struct perf_data *data,
void *buf, size_t size);
ssize_t perf_data_file__write(struct perf_data_file *file,
void *buf, size_t size);
off_t perf_data__seek(struct perf_data *data, off_t offset, int whence);
/*
* If at_exit is set, only rename current perf.data to
* perf.data.<postfix>, continue write on original data.
@ -99,8 +133,10 @@ int perf_data__open_dir(struct perf_data *data);
void perf_data__close_dir(struct perf_data *data);
unsigned long perf_data__size(struct perf_data *data);
int perf_data__make_kcore_dir(struct perf_data *data, char *buf, size_t buf_sz);
bool has_kcore_dir(const char *path);
char *perf_data__kallsyms_name(struct perf_data *data);
char *perf_data__guest_kallsyms_name(struct perf_data *data, pid_t machine_pid);
bool has_kcore_dir(const char *path);
bool is_perf_data(const char *path);
#endif /* __PERF_DATA_H */

View File

@ -2583,7 +2583,7 @@ static int __perf_session__process_dir_events(struct perf_session *session)
if (!data->dir.files[i].size)
continue;
rd[readers] = (struct reader) {
.fd = data->dir.files[i].fd,
.fd = perf_data_file__fd(&data->dir.files[i]),
.path = data->dir.files[i].path,
.data_size = data->dir.files[i].size,
.data_offset = 0,