WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
214981
[webkitcorepy] Make scripts called with sudo use a userspace autoinstall
https://bugs.webkit.org/show_bug.cgi?id=214981
Summary
[webkitcorepy] Make scripts called with sudo use a userspace autoinstall
Jonathan Bedard
Reported
2020-07-30 12:49:42 PDT
This is important because often, the first script a bot runs will be installing something with sudo, which means that the autoinstall directory will be owned by root.
Attachments
Patch
(5.14 KB, patch)
2020-07-30 12:51 PDT
,
Jonathan Bedard
no flags
Details
Formatted Diff
Diff
Patch
(4.72 KB, patch)
2020-07-30 16:32 PDT
,
Jonathan Bedard
no flags
Details
Formatted Diff
Diff
Patch
(4.70 KB, patch)
2020-07-30 16:45 PDT
,
Jonathan Bedard
no flags
Details
Formatted Diff
Diff
Show Obsolete
(2)
View All
Add attachment
proposed patch, testcase, etc.
Radar WebKit Bug Importer
Comment 1
2020-07-30 12:50:01 PDT
<
rdar://problem/66342996
>
Jonathan Bedard
Comment 2
2020-07-30 12:51:56 PDT
Created
attachment 405597
[details]
Patch
dewei_zhu
Comment 3
2020-07-30 13:27:44 PDT
Comment on
attachment 405597
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=405597&action=review
> Tools/Scripts/libraries/webkitcorepy/webkitcorepy/autoinstall.py:278 > + owner = cls.owner() > + if owner: > + os.chown(creation_root, *owner) > + for root, directories, files in os.walk(creation_root): > + for directory in directories: > + os.chown(os.path.join(root, directory), *owner) > + for file in files: > + os.chown(os.path.join(root, file), *owner) > +
This seems a repeating twice, maybe create a helper which can also help with nested indentation: @classmethod def change_ownership_for_path(cls, path, recursive=False): # Windows doesn't have sudo if not hasattr(os, "geteuid"): return # If we aren't root, the default behavior is correct if os.geteuid() != 0: return # If running as sudo, we really want the caller of sudo to own the autoinstall directory uid = os.environ.get('SUDO_UID', -1)) gid = int(os.environ.get('SUDO_GID', -1)) os.chown(path, uid, gid) if not recursive: return if not os.path.isdir(path): return for root, directories, files in os.walk(path): for directory in directories: os.chown(os.path.join(root, directory), uid, gid) for file in files: os.chown(os.path.join(root, file), uid, gid)
Jonathan Bedard
Comment 4
2020-07-30 16:32:14 PDT
Created
attachment 405633
[details]
Patch
dewei_zhu
Comment 5
2020-07-30 16:35:51 PDT
Comment on
attachment 405633
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=405633&action=review
> Tools/Scripts/libraries/webkitcorepy/webkitcorepy/autoinstall.py:238 > + return None
Even thought it's equivalent,, may be just `return` to keep the consistency.
Jonathan Bedard
Comment 6
2020-07-30 16:45:42 PDT
Created
attachment 405636
[details]
Patch
EWS
Comment 7
2020-07-30 17:42:46 PDT
Committed
r265123
: <
https://trac.webkit.org/changeset/265123
> All reviewed patches have been landed. Closing bug and clearing flags on
attachment 405636
[details]
.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug