Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 676028 - sys-auth/pam-script-1.1.9 checks permissions improperly
Summary: sys-auth/pam-script-1.1.9 checks permissions improperly
Status: RESOLVED UPSTREAM
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: Patrick McLean
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-01-22 10:07 UTC by Deniss Gaplevsky
Modified: 2019-01-22 21:42 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Deniss Gaplevsky 2019-01-22 10:07:34 UTC
in file /etc/security/pam-script/pam_script function goodperms () does `stat` with no soft link dereferencing. Any soft link fails to work.
Following code is not correct for soft links:
stat_output=`/usr/bin/stat -c "%A:%u:%g" "$path"`
...
world_write_bit=${stat_output:8:1}
...
if [ ${world_write_bit} != "-"

Stat's call should do dereferencing of the links, like:
stat_output=`/usr/bin/stat -Lc "%A:%u:%g" "$path"`


Reproducible: Always

Steps to Reproduce:
1. create the link to the script in /etc/security/pam-script/pam-script.d/ folder
2. try to use it 
3. /etc/security/pam-script/pam_script_ses_open: Unsafe permissions for path /etc/security/pam-script/pam-script.d/test_ses_open; Rejecting execution.


Expected Results:  
soft links should be allowed
Comment 1 Patrick McLean gentoo-dev 2019-01-22 21:42:29 UTC
This is more of an upstream issue, rather than a Gentoo specific issue.