[lttng-dev] [RFC PATCH v2 babeltrace] Fix: Check return value of fpathconf
Michael Jeanson
mjeanson at efficios.com
Fri Dec 4 17:03:12 EST 2015
Current glibc has a bug in fpathconf(fd, _PC_NAME_MAX) where it will
fail with a 32bit userland on a 64bit kernel and where the filesystem
has a large block count, see glibc bug #18675.
In any case, we should check this return value because on a failure we
we don't allocate enough memory for dirent and then overflow on the
readdir_r call.
This patch is an RFC, I'm not sure what is the best way to handle the
failure, should we instead fallback on using the global "NAME_MAX"?
Signed-off-by: Michael Jeanson <mjeanson at efficios.com>
---
formats/ctf/ctf.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/formats/ctf/ctf.c b/formats/ctf/ctf.c
index a617497..e626c6c 100644
--- a/formats/ctf/ctf.c
+++ b/formats/ctf/ctf.c
@@ -2113,6 +2113,7 @@ int ctf_open_trace_read(struct ctf_trace *td,
struct dirent *dirent;
struct dirent *diriter;
size_t dirent_len;
+ int pc_name_max;
char *ext;
td->flags = flags;
@@ -2162,8 +2163,15 @@ int ctf_open_trace_read(struct ctf_trace *td,
* the stream array.
*/
- dirent_len = offsetof(struct dirent, d_name) +
- fpathconf(td->dirfd, _PC_NAME_MAX) + 1;
+ pc_name_max = fpathconf(td->dirfd, _PC_NAME_MAX);
+ if (pc_name_max < 0) {
+ perror("Error on fpathconf");
+ fprintf(stderr, "[error] Failed to get _PC_NAME_MAX for path \"%s\".\n", path);
+ ret = -1;
+ goto error_metadata;
+ }
+
+ dirent_len = offsetof(struct dirent, d_name) + pc_name_max + 1;
dirent = malloc(dirent_len);
--
1.9.1
More information about the lttng-dev
mailing list