| To: | Christoph Hellwig <hch@xxxxxxxxxxxxx> |
|---|---|
| Subject: | Re: [PATCH] xfstests: check if qa user can execute commands |
| From: | Jan Schmidt <mail@xxxxxxxxxxxxx> |
| Date: | Tue, 06 Dec 2011 16:16:45 +0100 |
| Cc: | Jan Schmidt <list.btrfs@xxxxxxxxxxxxx>, linux-btrfs@xxxxxxxxxxxxxxx, xfs@xxxxxxxxxxx |
| In-reply-to: | <20111206151300.GA11874@xxxxxxxxxxxxx> |
| References: | <1323165389-5419-1-git-send-email-list.btrfs@xxxxxxxxxxxxx> <20111206151300.GA11874@xxxxxxxxxxxxx> |
| User-agent: | Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.23) Gecko/20110922 Lightning/1.0b2 Thunderbird/3.1.15 |
On 06.12.2011 16:13, Christoph Hellwig wrote:
> On Tue, Dec 06, 2011 at 10:56:29AM +0100, Jan Schmidt wrote:
>> _require_user only checks if the qa user exists in /etc/passwd. It may exist
>> though still not be able to execute anything (e.g. with a /bin/false shell).
>>
>> _user_do cannot determine failure to execute the given command, as it uses
>> _user_do_filter for post-processing which succeeds even if the command
>> fails. Thus, the check should be performed by _require_user.
>
> Looks good. Wouldn't
>
> su $qa_user -c /bin/true
>
> be the more normal way to write that test?
I agree. I saw this and thought I'd adapt the (sometimes strange)
predominant bash programming style:
921 _user_do()
922 {
923 if [ "$HOSTOS" == "IRIX" ]
924 then
925 echo $1 | /bin/bash "su $qa_user 2>&1" | _filter_user_do
926 else
927 echo $1 | su $qa_user 2>&1 | _filter_user_do
928 fi
929 }
-Jan
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH] security: Delay freeing inode->i_security till the end of RCU grace period, Christoph Hellwig |
|---|---|
| Next by Date: | Re: xfs: validate inode numbers in file handles correctly, Christoph Hellwig |
| Previous by Thread: | Re: [PATCH] xfstests: check if qa user can execute commands, Christoph Hellwig |
| Next by Thread: | Re: [PATCH] xfstests: check if qa user can execute commands, Christoph Hellwig |
| Indexes: | [Date] [Thread] [Top] [All Lists] |