linux-api.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] utimensat: immutable flag returns -EPERM
@ 2017-06-05 14:18 Goldwyn Rodrigues
  2020-04-14  9:25 ` Michael Kerrisk (man-pages)
  0 siblings, 1 reply; 2+ messages in thread
From: Goldwyn Rodrigues @ 2017-06-05 14:18 UTC (permalink / raw)
  To: linux-man-u79uwXL29TY76Z2rM5mHXA
  Cc: jstancek-H+wXaHxf7aLQT0dZR+AlfA, mszeredi-H+wXaHxf7aLQT0dZR+AlfA,
	linux-api-u79uwXL29TY76Z2rM5mHXA,
	mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, chrubis-AlSwsSmVLrQ,
	tytso-3s7WtUTddSA, bfields-uC3wQj2KruNg9hUCZPvPmw,
	pgajdos-IBi9RG/b67k, Goldwyn Rodrigues

From: Goldwyn Rodrigues <rgoldwyn-IBi9RG/b67k@public.gmane.org>

Linux kernel commit 337684a1746f "fs: return EPERM on immutable inode"
changed (nd unified the return value of the utimensat(2) from -EACCES
to -EPERM in case of an immutable flag. Modify the man page to
reflect the same.

The entire discussion of returning the correct return value is at:
http://lists.linux.it/pipermail/ltp/2017-January/003424.html

Signed-off-by: Goldwyn Rodrigues <rgoldwyn-IBi9RG/b67k@public.gmane.org>
---
 man2/utimensat.2 | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/man2/utimensat.2 b/man2/utimensat.2
index f77d0b42a..c0bdf8808 100644
--- a/man2/utimensat.2
+++ b/man2/utimensat.2
@@ -238,10 +238,7 @@ or both
 .I tv_nsec
 values are
 .BR UTIME_NOW ,
-and either:
-.RS
-.IP * 3
-the effective user ID of the caller does not match
+and the effective user ID of the caller does not match
 the owner of the file,
 the caller does not have write access to the file,
 and the caller is not privileged
@@ -249,7 +246,7 @@ and the caller is not privileged
 .B CAP_FOWNER
 or the
 .B CAP_DAC_OVERRIDE
-capability); or,
+capability).
 .\" But Linux 2.6.22 was broken here.
 .\" Traditionally, utime()/utimes() gives the error EACCES for the case
 .\" where the timestamp pointer argument is NULL (i.e., set both timestamps
@@ -271,9 +268,6 @@ capability); or,
 .\" and the permissions of the directory to which
 .\" .I fd
 .\" refers do not allow searches.
-.IP *
-the file is marked immutable (see
-.BR chattr (1)).
 .\" EXT2_IMMUTABLE_FL and similar flags for other filesystems.
 .RE
 .TP
-- 
2.12.3

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] utimensat: immutable flag returns -EPERM
  2017-06-05 14:18 [PATCH] utimensat: immutable flag returns -EPERM Goldwyn Rodrigues
@ 2020-04-14  9:25 ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Kerrisk (man-pages) @ 2020-04-14  9:25 UTC (permalink / raw)
  To: Goldwyn Rodrigues, linux-man
  Cc: mtk.manpages, jstancek, mszeredi, linux-api, chrubis, tytso,
	bfields, pgajdos, Goldwyn Rodrigues

Hello Goldwyn,

On 6/5/17 4:18 PM, Goldwyn Rodrigues wrote:
> From: Goldwyn Rodrigues <rgoldwyn@suse.com>
> 
> Linux kernel commit 337684a1746f "fs: return EPERM on immutable inode"
> changed (nd unified the return value of the utimensat(2) from -EACCES
> to -EPERM in case of an immutable flag. Modify the man page to
> reflect the same.
> 
> The entire discussion of returning the correct return value is at:
> http://lists.linux.it/pipermail/ltp/2017-January/003424.html
> 
> Signed-off-by: Goldwyn Rodrigues <rgoldwyn@suse.com>

Thanks. Patch (finally) applied.

Cheers,

Michael

> ---
>  man2/utimensat.2 | 10 ++--------
>  1 file changed, 2 insertions(+), 8 deletions(-)
> 
> diff --git a/man2/utimensat.2 b/man2/utimensat.2
> index f77d0b42a..c0bdf8808 100644
> --- a/man2/utimensat.2
> +++ b/man2/utimensat.2
> @@ -238,10 +238,7 @@ or both
>  .I tv_nsec
>  values are
>  .BR UTIME_NOW ,
> -and either:
> -.RS
> -.IP * 3
> -the effective user ID of the caller does not match
> +and the effective user ID of the caller does not match
>  the owner of the file,
>  the caller does not have write access to the file,
>  and the caller is not privileged
> @@ -249,7 +246,7 @@ and the caller is not privileged
>  .B CAP_FOWNER
>  or the
>  .B CAP_DAC_OVERRIDE
> -capability); or,
> +capability).
>  .\" But Linux 2.6.22 was broken here.
>  .\" Traditionally, utime()/utimes() gives the error EACCES for the case
>  .\" where the timestamp pointer argument is NULL (i.e., set both timestamps
> @@ -271,9 +268,6 @@ capability); or,
>  .\" and the permissions of the directory to which
>  .\" .I fd
>  .\" refers do not allow searches.
> -.IP *
> -the file is marked immutable (see
> -.BR chattr (1)).
>  .\" EXT2_IMMUTABLE_FL and similar flags for other filesystems.
>  .RE
>  .TP
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-04-14  9:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-05 14:18 [PATCH] utimensat: immutable flag returns -EPERM Goldwyn Rodrigues
2020-04-14  9:25 ` Michael Kerrisk (man-pages)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).