diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-03-30 22:35:37 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-15 22:23:47 -0400 |
commit | 851d4e2a67efb2c8777df151b697391ff1a76af0 (patch) | |
tree | 2982a963e3032fa7e9ec23b53669e7fc2add5c92 /src/journal/journald-native.h | |
parent | 5c879495eab608bf9b6e7bec1020d916a0503b6e (diff) |
journal-remote: reject fields above maximum size
Also fix an infinite loop on E2BIG.
Remember what range we already scanned for '\n', to avoid
quadratic behaviour on long "text" fields.
Diffstat (limited to 'src/journal/journald-native.h')
-rw-r--r-- | src/journal/journald-native.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/journal/journald-native.h b/src/journal/journald-native.h index bf02fee576..97808e746a 100644 --- a/src/journal/journald-native.h +++ b/src/journal/journald-native.h @@ -25,8 +25,8 @@ /* Make sure not to make this smaller than the maximum coredump * size. See COREDUMP_MAX in coredump.c */ -#define ENTRY_SIZE_MAX (1024*1024*768) -#define DATA_SIZE_MAX (1024*1024*768) +#define ENTRY_SIZE_MAX (1024*1024*768u) +#define DATA_SIZE_MAX (1024*1024*768u) bool valid_user_field(const char *p, size_t l, bool allow_protected); |