diff options
| author | Daiki Ueno <dueno@redhat.com> | 2016-09-22 14:47:18 +0200 |
|---|---|---|
| committer | Daiki Ueno <ueno@gnu.org> | 2016-12-06 13:12:00 +0100 |
| commit | 65e8ad30e7832f3a979f88f4308cfa4f9a969829 (patch) | |
| tree | 86e54a766517caee2209c387048cdc6bcdd37e47 /common/compat.c | |
| parent | 99c3d823fc96c47af4810a5ee091501721159a48 (diff) | |
common, trust: Avoid integer overflow
This fixes issues pointed in:
https://bugzilla.redhat.com/show_bug.cgi?id=985445
except for p11-kit/conf.c:read_config_file(), which was rewritten using
mmap() and thus length calculation is no longer needed.
Diffstat (limited to 'common/compat.c')
| -rw-r--r-- | common/compat.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/common/compat.c b/common/compat.c index de5b99b..02e6408 100644 --- a/common/compat.c +++ b/common/compat.c @@ -41,6 +41,7 @@ #define _XOPEN_SOURCE 700 #include "compat.h" +#include "debug.h" #include <assert.h> #include <dirent.h> @@ -503,8 +504,11 @@ strconcat (const char *first, va_start (va, first); - for (arg = first; arg; arg = va_arg (va, const char*)) - length += strlen (arg); + for (arg = first; arg; arg = va_arg (va, const char*)) { + size_t old_length = length; + length += strlen (arg); + return_val_if_fail (length >= old_length, NULL); + } va_end (va); |
