-
Notifications
You must be signed in to change notification settings - Fork 255
Add support for OpenBSD #325
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
Open
landryb
wants to merge
7
commits into
swaywm:master
Choose a base branch
from
landryb:support-openbsd
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+106
−48
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
e8f5e95
don't redefine M_PI
landryb aa0cd8a
OpenBSD doesn't have wordexp(), make it optional
landryb b464ea1
get_config_path: provide an alternative when wordexp() isn't available
landryb a90e0ca
meson.build: add support for OpenBSD detection
landryb c24bb25
add support for bsd_auth for OpenBSD
landryb 2991e66
drop wordexp() usage
landryb 6d85ad3
no need to include config.h anymore
landryb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| #include <pwd.h> | ||
| #include <stdlib.h> | ||
| #include <stdbool.h> | ||
| #include <sys/types.h> | ||
| #include <unistd.h> | ||
| #include <login_cap.h> | ||
| #include <bsd_auth.h> | ||
| #include <grp.h> | ||
|
|
||
| #include "comm.h" | ||
| #include "log.h" | ||
| #include "password-buffer.h" | ||
| #include "swaylock.h" | ||
|
|
||
| void initialize_pw_backend(int argc, char **argv) { | ||
| if (!spawn_comm_child()) { | ||
| exit(EXIT_FAILURE); | ||
| } | ||
| } | ||
| void run_pw_backend_child(void) { | ||
| struct passwd *pwent = getpwuid(getuid()); | ||
| if (!pwent) { | ||
| swaylock_log_errno(LOG_ERROR, "failed to getpwuid"); | ||
| exit(EXIT_FAILURE); | ||
| } | ||
| struct group *authg = getgrnam("auth"); | ||
| if (!authg || !authg->gr_name || !*authg->gr_name) { | ||
| exit(EXIT_FAILURE); | ||
| } | ||
| /* we need setgid(auth) to use auth_userokay() */ | ||
| if (setgid(authg->gr_gid)) { | ||
| exit(EXIT_FAILURE); | ||
| } | ||
| while (1) { | ||
| char *buf; | ||
| ssize_t size = read_comm_request(&buf); | ||
| if (size < 0) { | ||
| exit(EXIT_FAILURE); | ||
| } else if (size == 0) { | ||
| break; | ||
| } | ||
| bool success = auth_userokay((char *)pwent->pw_name, NULL, "swaylock", buf); | ||
| if (!write_comm_reply(success)) { | ||
| exit(EXIT_FAILURE); | ||
| } | ||
|
|
||
| sleep(2); | ||
| } | ||
|
|
||
| exit(EXIT_SUCCESS); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we use login_passwd(8) instead to avoid this requirement?
Running the locker as root likely has funny attack vectors.
E.g.: point
WAYLAND_DISPLAYto another user's socket and lock their session.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
swaylock already has a SUID-root mode for the shadow backend. We drop privileges early in the main process.