From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-x336.google.com (mail-wm1-x336.google.com [IPv6:2a00:1450:4864:20::336]) by sourceware.org (Postfix) with ESMTPS id 201EE386F818 for ; Thu, 18 Feb 2021 12:27:10 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 201EE386F818 Received: by mail-wm1-x336.google.com with SMTP id v62so3475812wmg.4 for ; Thu, 18 Feb 2021 04:27:10 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:cc:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=T8PybQxwyiUCCBYU7DV0jC9PmrYax3BtCf+BxA7Qu30=; b=oaX+yyWpD2vzW+wqzO2Kh0Vr+OxY5GdGID9HAKlSk4W4obzTFqza8YIdWGilAUqiGv 4KDqn4ahl/LBxyyLSGYIANyqrphxgdUwWw3KDYFPQGHfwLlTDERdP1b3Obe45ZdOEhom +gD1iDwYWx8HEjEbdTZViMcQIGryxAJfY4E5PwSpPet9eYXu0o66HEsns9YWMFru387/ V50zHjFumo2eShpAs8xOBFtX/n2ZGCN3Iga54RHga6yZBW1LW5fosB00GNLHEZz8s0Un Ut5IDSjTDaZbEELwDS7FWMwM6ZElb28GGZ5627zejGJ9XShUl5TcqwXfusnkQYlDDGZj 96VA== X-Gm-Message-State: AOAM533BeGxOq0ljfWcQqYrJLhjn/5OYH1oL5JpNGGqfuTblf1Uj12vQ to9Cf/JtVON8EIKaoPgLIu8= X-Google-Smtp-Source: ABdhPJw/SFw7HpRuwxlq2cELF1JoqQj+imDON14cDkNG2NF1BZQNsXuLb7b4NPsd+9ou9Jj5CNyeaA== X-Received: by 2002:a1c:41d6:: with SMTP id o205mr3284592wma.80.1613651229196; Thu, 18 Feb 2021 04:27:09 -0800 (PST) Received: from ?IPv6:2001:a61:3a2d:1d01:99ab:4f20:ed7f:402b? ([2001:a61:3a2d:1d01:99ab:4f20:ed7f:402b]) by smtp.gmail.com with ESMTPSA id l22sm2054417wrb.4.2021.02.18.04.27.08 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Thu, 18 Feb 2021 04:27:08 -0800 (PST) Cc: mtk.manpages@gmail.com, linux-man@vger.kernel.org, linux-kernel@vger.kernel.org, libc-alpha@sourceware.org, Florian Weimer Subject: Re: [RFC] execve.2: SYNOPSIS: Document both glibc wrapper and kernel sycalls To: Alejandro Colomar References: <20210214133907.157320-1-alx.manpages@gmail.com> From: "Michael Kerrisk (man-pages)" Message-ID: <1c7043ad-b834-5270-56fc-404d82d5a0a0@gmail.com> Date: Thu, 18 Feb 2021 13:27:07 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.6.0 MIME-Version: 1.0 In-Reply-To: <20210214133907.157320-1-alx.manpages@gmail.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-10.8 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, GIT_PATCH_0, KAM_SHORT, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Feb 2021 12:27:11 -0000 Hi Alex, On 2/14/21 2:39 PM, Alejandro Colomar wrote: > Until now, the manual pages have (usually) documented only either > the glibc (or another library) wrapper for a syscall, or the raw > syscall (this only when there's not a wrapper). > > Let's document both prototypes, which many times are slightly > different. This will solve a problem where documenting glibc > wrappers implied shadowing the documentation for the raw syscall. > > It will also be much clearer for the reader where the syscall > comes from (kernel? glibc? other?), by adding an explicit comment > at the beginning of the prototypes. This removes the need of > scrolling down to NOTES to see that info. > > Signed-off-by: Alejandro Colomar > --- > > Hi all, > > This is a prototype for doing some important changes to the SYNOPSIS > of the man-pages. > > The commit message above explains the idea quite well. A few details > that couldn't be shown on this commit are: > > For cases where the wrapper is provided by a library other than glibc, > I'd simply change the comment. For example, for move_pages(2), > it would say /* libnuma wrapper function: */. > > I think this would make the samll notes warning that there's no glibc > wrapper function deprecated (but we could keep them for some time and > decide that later). > > While changing this, I'd also make sure that the headers are correct, > and clearly differentiate which headers are needed for the raw syscall > and for the wrapper function. > > This change will probably take more than one release of the man-pages > to complete. > > Any thoughts? My first impression is that I'm not keen on this. We'll add extra text to all Section 2 pages, and in many (most?) cases the info will be redundant (i.e., the wrapper and the syscall() notation will express the same info). In other cases, I suspect the info will be largely irrelevant to the user. To take an example: to whom will the difference that you document below for execve() matter, how will it matter, and does it matter enough that we headline the info in the pages? I'd want cogent answers to those questions before considering a wide-ranging change. There are indeed cases where the wrapper API differs in significant ways from the syscall API (and these differences are usually captured in the " C library/kernel differences" subsections, such as for pselect()/pselect6() in select(2)). But I imagine that that is the case in only a smallish minority of the pages. And indeed there are a very few syscalls that have wrappers provided in another library. But it's a very small percentage I think, and best documented case by case in specific pages. The default presumption is that the wrapper is in the C library. There are other cases where I think it may be worthwhile considering the syscall() notation: 1. Where the system call has no wrapper. In that case, we might use the syscall() notation in the SYNOPISIS as both (a) a clear indication that there is no wrapper and (b) instructions to the reader about how to call the system call using syscall(). 2. In cases where there is a "significant" difference between the wrapper and the system call. In this case, we might also place the syscall() notation in the SYNOPSIS, or (perhaps more likely) in the NOTES Thanks, Michael > > Thanks, > > Alex > > --- > man2/execve.2 | 12 ++++++++++-- > 1 file changed, 10 insertions(+), 2 deletions(-) > > diff --git a/man2/execve.2 b/man2/execve.2 > index 639e3b4b9..87ff022ce 100644 > --- a/man2/execve.2 > +++ b/man2/execve.2 > @@ -39,10 +39,18 @@ > execve \- execute program > .SH SYNOPSIS > .nf > +/* Glibc wrapper function: */ > .B #include > .PP > -.BI "int execve(const char *" pathname ", char *const " argv [], > -.BI " char *const " envp []); > +.BI "int execve(const char *" pathname ", > +.BI " char *const " argv "[], char *const " envp []); > +.PP > + /* Raw system call: */ > +.B #include > +.B #include > +.PP > +.BI "int syscall(SYS_execve, const char *" pathname , > +.BI " const char *const " argv "[], const char *const " envp []); > .fi > .SH DESCRIPTION > .BR execve () > -- Michael Kerrisk Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ Linux/UNIX System Programming Training: http://man7.org/training/