Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for setfacl #639

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

Support for setfacl #639

wants to merge 2 commits into from

Conversation

Roy-Orbison
Copy link

Could not find an existing completion script for filesystem acl modification and I don't see any completion code in the upstream acl project.
Adapted from chown. Understands but does not suggest short options.

Could not find an existing completion script for filesystem acl modification.
Adapted from chown. Understands but does not suggest short options.
@Roy-Orbison
Copy link
Author

I've marked this as draft for now because I wasn't sure how to best account for groups that contain colons (as _usergroup() does), or whether that could be a TODO given completion covering common use cases is better than none.

@scop
Copy link
Owner

scop commented Nov 1, 2021

Hm, we should add a template for pull requests so that the request to ask upstream to include the completion first is more prominent. Anyway, for time being, see https://raw.githubusercontent.com/scop/bash-completion/master/.github/ISSUE_TEMPLATE/feature_request.md and the start of CONTRIBUTING.md.

@Roy-Orbison
Copy link
Author

I asked.

@Roy-Orbison Roy-Orbison marked this pull request as ready for review March 30, 2022 02:07
@Roy-Orbison
Copy link
Author

No response from them. Maybe you'd have more luck.

@Roy-Orbison
Copy link
Author

Still nothing. Did you have any luck?

@Roy-Orbison
Copy link
Author

I did hear back, but they never confirmed whether they even tried it, and said it had to be sent as a patch. I kinda gave up.

@akinomyoga
Copy link
Collaborator

Re: BASH completion (written but not reviewed)

i don't have a prob including it with the project if you want to send it as
a proper patch to the list
-mike

This means that they will review if you submit it in a proper form.

@Roy-Orbison
Copy link
Author

@akinomyoga and I don't know what that proper form is, because I don't know where they would want that file in the tree, how it should be included/referenced, whether it needs a make action, etc. I don't write low-level C programs, so I'd probably just get it wrong.

It's not complicated to test; no compilation, no install, download and source a single script in bash. I took the response as ‘we'll look at this when you've done it the right way, but you haven't, and we won't tell you exactly what that is, so we won't look at it.’

@akinomyoga
Copy link
Collaborator

akinomyoga commented Aug 25, 2023

The proper form is just the form of posting an email. There is a specific way of posting a patch in the mailing lists of traditional open-source projects, and there are reasons. However, you didn't follow it, which would cause problems. See other posts on the mailing list.

It's not related to how much the actual changes in the patch are correct or not. You should submit a patch with a temporary location of the file and wait for their comments. If they don't like the file location, they should tell you the preferred path.

@akinomyoga
Copy link
Collaborator

akinomyoga commented Aug 25, 2023

whether it needs a make action,

I'd say the make action should be included, or otherwise the file is likely to be used by no one. Anyway, you may ask it on the mailing list including the way how a make rule should be added.

completions/setfacl Outdated Show resolved Hide resolved
completions/setfacl Outdated Show resolved Hide resolved
Comment on lines +58 to +60
if [[ $cur != *:* && -z $prefix_default && "$other_rules" && ${#COMPREPLY[@]} -eq 1 ]]; then
COMPREPLY=("${other_rules##*:}${COMPREPLY[0]}")
fi
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I haven't checked the actual behavior, but I guess this has the same problem as #913 (comment) when bind 'set show-all-if-ambiguous on' is set.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This probably wouldn't have been picked up by the setfacl team, and you'd know better than I how to fix it.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is no robust way to make the displayed list compact. You'll need to always prefix the other_rules in the same way as PR #913. For example,

Suggested change
if [[ $cur != *:* && -z $prefix_default && "$other_rules" && ${#COMPREPLY[@]} -eq 1 ]]; then
COMPREPLY=("${other_rules##*:}${COMPREPLY[0]}")
fi
if [[ $cur != *:* && -z $prefix_default && "$other_rules" ]]; then
local i
for i in "${!COMPREPLY[@]}"; do
COMPREPLY[i]=${other_rules##*:}${COMPREPLY[i]}
done
fi

But I haven't tried to understand the part [[ $cur != *:* && -z $prefix_default ]], so it might not result in an expected result. Could you explain the condition [[ $cur != *:* && -z $prefix_default ]]? OK, I think I now understand it.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Re #913:

I'm not sure why the original only prepended the prefix back when there was only one completion, so I'm worried I'm missing something.

My understanding was that omitting the prefix when there are multiple candidates makes the list more concise, thus easier to visually scan & less likely to cause pagination. It also provides the ability to create richer results, as demonstrated in this article.

Without your suggestion the behaviour is like this:

roy@RoyBook:~$ setfacl --set user:w
whoopsie:  www-data:
roy@RoyBook:~$ setfacl --set user:whoopsie:rw
rw,   rwx,  rwX,
roy@RoyBook:~$ setfacl --set user:whoopsie:rwX,group:a
adm:            audio:          avahi:          avahi-autoipd:
roy@RoyBook:~$ setfacl --set user:whoopsie:rwX,group:adm:
-,    r,    rw,   rwx,  rwX,  rx,   rX,   w,    wx,   wX,   x,    X,
roy@RoyBook:~$ setfacl --set user:whoopsie:rwX,group:adm:rw,
default:  group:    mask:     other:    user:
roy@RoyBook:~$ setfacl --set user:whoopsie:rwX,group:adm:rw,other:
-,    r,    rw,   rwx,  rwX,  rx,   rX,   w,    wx,   wX,   x,    X,
roy@RoyBook:~$ setfacl --set user:whoopsie:rwX,group:adm:rw,other:r

With it, the previous definition's mode is prepended to the next definition, which is a drop in readability:

roy@RoyBook:~$ setfacl --set user:whoopsie:rwX,
rwX,default:  rwX,group:    rwX,mask:     rwX,other:    rwX,user:
roy@RoyBook:~$ setfacl --set user:whoopsie:rwX,group:a
adm:            audio:          avahi:          avahi-autoipd:
roy@RoyBook:~$ setfacl --set user:whoopsie:rwX,group:adm:
-,    r,    rw,   rwx,  rwX,  rx,   rX,   w,    wx,   wX,   x,    X,
roy@RoyBook:~$ setfacl --set user:whoopsie:rwX,group:adm:rw,
rw,default:  rw,group:    rw,mask:     rw,other:    rw,user:

I tried to replicate the prefix loss per the last snippet of your comment, but it did not seem to occur. Perhaps this function is not affected due to the slightly different behviour around colons?

roy@RoyBook:~$ setfacl --set user:whoopsie:rwX,group:avahi
avahi:          avahi-autoipd:
roy@RoyBook:~$ setfacl --set user:whoopsie:rwX,group:av<TAB>

completions/setfacl Outdated Show resolved Hide resolved
completions/setfacl Outdated Show resolved Hide resolved
@Roy-Orbison
Copy link
Author

@akinomyoga Exactly my point. I don't know what make action to include for installation across different distros, so any patch I put forth would likely be unacceptable. Last time, it took a year before I got any response. You're welcome to ask them if you like.

Co-authored-by: Koichi Murase <myoga.murase@gmail.com>
@akinomyoga
Copy link
Collaborator

@akinomyoga Exactly my point. I don't know what make action to include for installation across different distros, so any patch I put forth would likely be unacceptable.

That's not the problem. The first patch doesn't need to be at an acceptable level. It is normal to revise the patch multiple times after discussing each version of the submitted patch.

It just needs to be submitted in a proper form. I repeat that the proper form is not about the content of the patch. You provided the change with a link. This is one of the most problematic ways of posting anything on the mailing list. Links are in general considered to become unavailable in the future. On the other hand, we often need to look back on the mailing list log to investigate the background of the codebase, so all the discussions need to be trackable, i.e., all the necessary information should be included in the emails themselves. Otherwise, they can't even start a discussion. You are blocking the discussion there.

@akinomyoga
Copy link
Collaborator

akinomyoga commented Aug 25, 2023

Thanks for the updates!

@akinomyoga
Copy link
Collaborator

Last time, it took a year before I got any response. You're welcome to ask them if you like.

Honestly, this is the problem of the upstream acl project. It's not your fault. If you would like to communicate with them, you need to be patient. I'm not so enthusiastic to make it include the upstream.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants