diff options
author | dougb <dougb@FreeBSD.org> | 2005-09-29 20:40:29 +0000 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2005-09-29 20:40:29 +0000 |
commit | a6ef64df7a0ff6faf8780a1ed6169806a007aa9a (patch) | |
tree | ef816280e2930f226c08becb28e7b60dd57ecc36 /bin/rm/rm.c | |
parent | 9dde40faaa1ff846fdae765c134893d92136b6fc (diff) | |
download | FreeBSD-src-a6ef64df7a0ff6faf8780a1ed6169806a007aa9a.zip FreeBSD-src-a6ef64df7a0ff6faf8780a1ed6169806a007aa9a.tar.gz |
Handle the case where the -P flag is specified for a read-only file
earlier, and more gracefully. Previously, this combination would be
ignored early in the code where permissions are tested and fail later
with a very unhelpful "permission denied" error.
Instead, test for this flag in the same block that generates the
"override?" messages for read-only files, but instead of trying
to guess what the user has in mind, generate an error and exit.
Update the man page to reflect this new behavior.
Not objected to by: freebsd-hackers@
Diffstat (limited to 'bin/rm/rm.c')
-rw-r--r-- | bin/rm/rm.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/bin/rm/rm.c b/bin/rm/rm.c index aefa8c6..b838fef 100644 --- a/bin/rm/rm.c +++ b/bin/rm/rm.c @@ -452,11 +452,8 @@ check(char *path, char *name, struct stat *sp) * talking to a terminal, ask. Symbolic links are excluded * because their permissions are meaningless. Check stdin_ok * first because we may not have stat'ed the file. - * Also skip this check if the -P option was specified because - * we will not be able to overwrite file contents and will - * barf later. */ - if (!stdin_ok || S_ISLNK(sp->st_mode) || Pflag || + if (!stdin_ok || S_ISLNK(sp->st_mode) || (!access(name, W_OK) && !(sp->st_flags & (SF_APPEND|SF_IMMUTABLE)) && (!(sp->st_flags & (UF_APPEND|UF_IMMUTABLE)) || !uid))) @@ -464,6 +461,10 @@ check(char *path, char *name, struct stat *sp) strmode(sp->st_mode, modep); if ((flagsp = fflagstostr(sp->st_flags)) == NULL) err(1, "fflagstostr"); + if (Pflag) + errx(1, + "%s: -P was specified, but file is not writable", + path); (void)fprintf(stderr, "override %s%s%s/%s %s%sfor %s? ", modep + 1, modep[9] == ' ' ? "" : " ", user_from_uid(sp->st_uid, 0), |