nscd: avoid assertion failure during persistent db check

Message ID mvmpntz2blf.fsf@suse.de
State Committed
Commit 61595e3d36ded374f97961503e843a314b0203c2
Headers

Commit Message

Andreas Schwab Dec. 18, 2018, 1:44 p.m. UTC
  nscd should not abort when it finds inconsistencies in the persistent db.

	* nscd/connections.c (check_use): Don't abort on invalid len.
---
 nscd/connections.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
  

Comments

Florian Weimer Dec. 19, 2018, 10:33 a.m. UTC | #1
* Andreas Schwab:

> nscd should not abort when it finds inconsistencies in the persistent db.
>
> 	* nscd/connections.c (check_use): Don't abort on invalid len.
> ---
>  nscd/connections.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/nscd/connections.c b/nscd/connections.c
> index 47fbb9923a..9818200764 100644
> --- a/nscd/connections.c
> +++ b/nscd/connections.c
> @@ -304,7 +304,8 @@ static int
>  check_use (const char *data, nscd_ssize_t first_free, uint8_t *usemap,
>  	   enum usekey use, ref_t start, size_t len)
>  {
> -  assert (len >= 2);
> +  if (len < 2)
> +    return 0;

This looks okay to me.  (nscd_init logs a message if verification of a
persistent database fails.)

Thanks,
Florian
  

Patch

diff --git a/nscd/connections.c b/nscd/connections.c
index 47fbb9923a..9818200764 100644
--- a/nscd/connections.c
+++ b/nscd/connections.c
@@ -304,7 +304,8 @@  static int
 check_use (const char *data, nscd_ssize_t first_free, uint8_t *usemap,
 	   enum usekey use, ref_t start, size_t len)
 {
-  assert (len >= 2);
+  if (len < 2)
+    return 0;
 
   if (start > first_free || start + len > first_free
       || (start & BLOCK_ALIGN_M1))