lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Thu, 28 Dec 2017 20:03:28 -0500
From:   Steven Rostedt <rostedt@...dmis.org>
To:     LKML <linux-kernel@...r.kernel.org>
Cc:     Linus Torvalds <torvalds@...ux-foundation.org>,
        Thomas Gleixner <tglx@...utronix.de>,
        Andrew Morton <akpm@...ux-foundation.org>,
        Frederic Weisbecker <fweisbec@...il.com>
Subject: Re: [RFC][PATCH] vsprintf: Do not have bprintf dereference pointers

On Thu, 28 Dec 2017 18:50:26 -0500
Steven Rostedt <rostedt@...dmis.org> wrote:

> +			default:
> +				if (!isalnum(*fmt)) {
> +					process = true;
> +					break;
> +				}
> +				/* Pointer dereference was already processed */
> +				if (str < end) {
> +					len = copy = strlen(args);
> +					if (copy > end - str)
> +						copy = end - str;
> +					memcpy(str, args, copy);
> +					str += copy;

Actually, that should have been: str += len; as str will be used to
return the amount that would be processed, even if the size wasn't long
enough.

V2 coming up.

-- Steve

> +					args += len;
> +				}
> +			}

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ