From: Mikhail Zabaluev <mhz@alt-linux.org>
To: devel@altlinux.ru
Subject: [devel] Re: Ошибка в shadow-utils (userdel)
Date: Sat, 13 Oct 2001 00:44:29 +0400
Message-ID: <20011013004429.B1989@localhost.localdomain> (raw)
In-Reply-To: <20011012140837.66e6de7f.syatskevich@mail.ru>; from syatskevich@mail.ru on Fri, Oct 12, 2001 at 02:08:37PM +0400
[-- Attachment #1: Type: text/plain, Size: 1721 bytes --]
Hello Sergey,
On Fri, Oct 12, 2001 at 02:08:37PM +0400, Sergey N.Yatskevich wrote:
>
> Привет всем!
>
> В userdel обнаружилась ошибка. Там для пущей безопасности при
> удалении с ключем -r домашней директории проверяется не
> будет ли заодно удалена домашняя директория еще какого-нибудь
> пользователя.
>
> Делается это путем:
> strncmp ('дир.уд.польз.', 'дир.другого польз', strlen ('дир.уд.польз.'));
> Оно бы нормально работало, если бы имена директорий завершались '/'.
>
> Однако это не так и поэтому при существовании двух пользователей:
>
> test
> test2
>
> При попытке сделать userdel -r test будет выдано сообщение об ошибке :-))
> и директория /home/test удалена не будет.
>
> Патч для исправления прилагается (+ подправленный spec).
Позвольте мне немного программерского занудства.
+ /* check if s1 is s2 or it's path prefix */
+ return ((strcmp (s1, s2) == 0) ||
+ ((strlen (s2) > strlen (s1)) &&
+ (strncmp(s2, s1, strlen(s1)) == 0) &&
+ (s2[strlen (s1)] == '/')));
Здесь три раза вычисляется strlen(s1). Нехорошо.
И вызов strcmp, пожалуй что, лишний.
Лучше так:
size_t s1len;
...
s1len = strlen(s1);
return (strncmp(s2, s1, s1len) == 0 &&
(s2[s1len] == '\0' ||
s2[s1len] == '/'));
P.S. А если у кого-то домкаталог записан через точечки? А если через
символьные ссылки? Впрочем, кара за подобное непотребство должна быть
суровой :)
--
Stay tuned,
MhZ JID: mookid@jabber.org
___________
Woolsey-Swanson Rule:
People would rather live with a problem they cannot
solve rather than accept a solution they cannot understand.
[-- Attachment #2: Type: application/pgp-signature, Size: 232 bytes --]
next prev parent reply other threads:[~2001-10-12 20:44 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-10-12 10:08 [devel] " Sergey N.Yatskevich
2001-10-12 11:14 ` Dmitry V. Levin
2001-10-12 20:44 ` Mikhail Zabaluev [this message]
2001-10-12 21:13 ` [devel] " Sergey N.Yatskevich
2001-10-15 7:21 ` Dmitry V. Levin
2001-10-15 9:56 ` Mikhail Zabaluev
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20011013004429.B1989@localhost.localdomain \
--to=mhz@alt-linux.org \
--cc=devel@altlinux.ru \
--cc=devel@linux.iplabs.ru \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
ALT Linux Team development discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/devel/0 devel/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 devel devel/ http://lore.altlinux.org/devel \
devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru
public-inbox-index devel
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.devel
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git