diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2007-11-30 08:03:52 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2007-11-30 08:03:52 -0500 |
commit | e03ba84adb62fbc6049325a5bc00ef6932fa5e39 (patch) | |
tree | 37a6d1206d6480bbbcda98a8b636a2071a6bf31c /lib | |
parent | 67b4af297033f5f65999885542f95ba7b562848a (diff) |
[TEXTSEARCH]: Do not allow zero length patterns in the textsearch infrastructure
If a zero length pattern is passed then return EINVAL.
Avoids infinite loops (bm) or invalid memory accesses (kmp).
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/textsearch.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/textsearch.c b/lib/textsearch.c index 88c98a2ec8d9..be8bda3862f5 100644 --- a/lib/textsearch.c +++ b/lib/textsearch.c | |||
@@ -7,7 +7,7 @@ | |||
7 | * 2 of the License, or (at your option) any later version. | 7 | * 2 of the License, or (at your option) any later version. |
8 | * | 8 | * |
9 | * Authors: Thomas Graf <tgraf@suug.ch> | 9 | * Authors: Thomas Graf <tgraf@suug.ch> |
10 | * Pablo Neira Ayuso <pablo@eurodev.net> | 10 | * Pablo Neira Ayuso <pablo@netfilter.org> |
11 | * | 11 | * |
12 | * ========================================================================== | 12 | * ========================================================================== |
13 | * | 13 | * |
@@ -250,7 +250,8 @@ unsigned int textsearch_find_continuous(struct ts_config *conf, | |||
250 | * the various search algorithms. | 250 | * the various search algorithms. |
251 | * | 251 | * |
252 | * Returns a new textsearch configuration according to the specified | 252 | * Returns a new textsearch configuration according to the specified |
253 | * parameters or a ERR_PTR(). | 253 | * parameters or a ERR_PTR(). If a zero length pattern is passed, this |
254 | * function returns EINVAL. | ||
254 | */ | 255 | */ |
255 | struct ts_config *textsearch_prepare(const char *algo, const void *pattern, | 256 | struct ts_config *textsearch_prepare(const char *algo, const void *pattern, |
256 | unsigned int len, gfp_t gfp_mask, int flags) | 257 | unsigned int len, gfp_t gfp_mask, int flags) |
@@ -259,6 +260,9 @@ struct ts_config *textsearch_prepare(const char *algo, const void *pattern, | |||
259 | struct ts_config *conf; | 260 | struct ts_config *conf; |
260 | struct ts_ops *ops; | 261 | struct ts_ops *ops; |
261 | 262 | ||
263 | if (len == 0) | ||
264 | return ERR_PTR(-EINVAL); | ||
265 | |||
262 | ops = lookup_ts_algo(algo); | 266 | ops = lookup_ts_algo(algo); |
263 | #ifdef CONFIG_KMOD | 267 | #ifdef CONFIG_KMOD |
264 | /* | 268 | /* |