Received: by 2002:a05:6a10:206:0:0:0:0 with SMTP id 6csp2443256pxj; Mon, 17 May 2021 01:25:06 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyeRuTxL3yUNyQyNOWAgBgiDtxchc9zX59zGkz3M2iEdNRJbWMfisfiJgjAUahGZDwhrCfA X-Received: by 2002:a92:1304:: with SMTP id 4mr51277394ilt.126.1621239906655; Mon, 17 May 2021 01:25:06 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1621239906; cv=none; d=google.com; s=arc-20160816; b=v21XBEuAzh9c75qyt/IW6rDzTaywNTkVrwOmzSjT75+pWKvWaBJqYOOVFbzJetwCxX A85X9PfjeZ7MemPtPUUHRZ53c9YmAwfT8VNY+dkuDYFHOLY3JlXYlWyUR//8H2UIuOGc FCbxq2bIqgAhIOH0PI07/+Jipv90e3sfpJ1TfC76G+lEsVg+usrz5s+38koL1wU2Vv2E GLGUtV4F7ShCSg7r27WwjfB/2XnGjAzHtgSHpF1TYfE2ARrfAxnlth1bYzla02TAx8me kX6JJX7LQNNfGp6p1EZA6skOYyLQuZbeyp8XlLqoGiWsLUwFMoWI4fp4lBMeoufuK3fa YnbQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-transfer-encoding :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=Ku7WG33BrAoVV15G3cYit3JVBCEkalN4HBBCunpjV9Y=; b=neghYXTe6agr7Y0PMpHLumR/e4rB4Z1qqFA+XxlYLW77a2INC8CxB2aiQTitXFpzgS UWlOyico5rr/SZm9Wc7RhIHPGeaT+usl1CS6VcZX9V+RfROZwXoh9f0Gns09R0kQDMe6 s5WSiTv/SFw6kqrOaHoeRW8ah9WAae7WnwLWEyWDxapPcVbg3hJoRsAT8nVmZzmzE0iQ miEW3AsV0iyjKfFTbCJ1urFFR0g9ipVL8eBhRrj4zRq/fAtFzFd/qKbTtvHSrGjW5xgg JofdanwMVaIjGVvb5GKnN0TPjSg5PPVgU79AhHL1A/U66/StVVC1GeCOzel0cqnO7fCD Nx4A== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id b11si3679321jat.37.2021.05.17.01.24.54; Mon, 17 May 2021 01:25:06 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231720AbhEQIZM (ORCPT + 99 others); Mon, 17 May 2021 04:25:12 -0400 Received: from mx2.suse.de ([195.135.220.15]:38184 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233648AbhEQIZL (ORCPT ); Mon, 17 May 2021 04:25:11 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id 91153AEBD; Mon, 17 May 2021 08:23:54 +0000 (UTC) Date: Mon, 17 May 2021 10:23:49 +0200 From: Borislav Petkov To: Andrew Halaney Cc: akpm@linux-foundation.org, linux-kernel@vger.kernel.org, Steven Rostedt Subject: Re: [PATCH v2] init: Print out unknown kernel parameters Message-ID: References: <20210511211009.42259-1-ahalaney@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20210511211009.42259-1-ahalaney@redhat.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, May 11, 2021 at 04:10:09PM -0500, Andrew Halaney wrote: > It is easy to foobar setting a kernel parameter on the command line > without realizing it, there's not much output that you can use to > assess what the kernel did with that parameter by default. > > Make it a little more explicit which parameters on the command line > _looked_ like a valid parameter for the kernel, but did not match > anything and ultimately got tossed to init. This is very similar to the > unknown parameter message received when loading a module. > > This assumes the parameters are processed in a normal fashion, some > parameters (dyndbg= for example) don't register their > parameter with the rest of the kernel's parameters, and therefore > always show up in this list (and are also given to init - like the > rest of this list). > > Another example is BOOT_IMAGE= is highlighted as an offender, which it > technically is, but is passed by LILO and GRUB so most systems will see > that complaint. > > An example output where "foobared" and "unrecognized" are intentionally > invalid parameters: > > Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.12-dirty debug log_buf_len=4M foobared unrecognized=foo > Unknown command line parameters: foobared BOOT_IMAGE=/boot/vmlinuz-5.12-dirty unrecognized=foo > > Suggested-by: Steven Rostedt > Suggested-by: Borislav Petkov > Signed-off-by: Andrew Halaney > --- > > It's my first time sending a v2 via email, please let me know if I've > messed that up in anyway. I decided it wasn't worth the effort to do > "autocorrect" functionality Borislav was pondering about, feel free to > disagree on that if you have a strong opinion. Oh well, I guess let's first see how this works in practice. Looks ok to me: Acked-by: Borislav Petkov Thx. -- Regards/Gruss, Boris. SUSE Software Solutions Germany GmbH, GF: Felix Imendörffer, HRB 36809, AG Nürnberg