Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752617AbbEKXUp (ORCPT ); Mon, 11 May 2015 19:20:45 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:39945 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751543AbbEKXUk (ORCPT ); Mon, 11 May 2015 19:20:40 -0400 Date: Mon, 11 May 2015 16:20:39 -0700 From: Andrew Morton To: Richard Weinberger Cc: linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/2] Fix printk() on ERR_PTR() Message-Id: <20150511162039.05a035367d1895738ca85155@linux-foundation.org> In-Reply-To: <1431286936-4333-2-git-send-email-richard@nod.at> References: <1431286936-4333-1-git-send-email-richard@nod.at> <1431286936-4333-2-git-send-email-richard@nod.at> X-Mailer: Sylpheed 3.4.1 (GTK+ 2.24.23; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1237 Lines: 39 On Sun, 10 May 2015 21:42:15 +0200 Richard Weinberger wrote: > vbin_printf() checks whether the provided pointer is larger > than -PAGE_SIZE such that it does not explode on ERR_PTR() pointers. > printk() does not. > > Let's add this check also to the printk() code such that > trace_printk() and printk() are consistent again. > > .. > > --- a/lib/vsprintf.c > +++ b/lib/vsprintf.c > @@ -511,7 +511,8 @@ char *string(char *buf, char *end, const char *s, struct printf_spec spec) > { > int len, i; > > - if ((unsigned long)s < PAGE_SIZE) > + if ((unsigned long)s > (unsigned long)-PAGE_SIZE || hm, PAGE_SIZE has type ulong, so is the cast needed? > + (unsigned long)s < PAGE_SIZE) This would be a place for if (!within(PAGE_SIZE, (unsigned long)s, -PAGE_SIZE)) s = "(null)"; I'm counting at least five implementations of within(), not all the same. Maybe. Both the lower and upper bounds will sometimes want inclusive semantics, sometimes exclusive. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/