Commit Graph

327 Commits

Author SHA1 Message Date
Manuel Stoeckl
96f0a0f9c6 Exit when password handling subprocess crashes
It is better to have swaylock crash immediately and the compositor
show a red screen than to operate in a degraded state where
passwords cannot be checked and the screen cannot be unlocked.
2024-11-01 22:55:34 +01:00
Manuel Stoeckl
fc6fbc98fb Stop processing auth requests after success
The child process handling PAM authentication can have multiple requests
queued up. As the first success will unlock the screen, there is no
point in processing anything afterwards.
2024-10-12 17:23:50 +02:00
Kenny Levinsen
cca2436ba5 Improve frame callback and commit handling
The few places that required a surface commit relied on render_frame and
render_frame_background to form it form them after they had set up frame
callback events. This would fail if render_frame ran out of buffers and
exited early, as the caller would still wait indefinitely on the frame
callback.

swaylock would quite consistently run out of buffers when rendering
immediately after a configure event, such as when the keypress causing
render also caused outputs to be enabled from idle.

Restructure the render and commit handling slightly so that the whole
frame callback and commit setup is handled by the render code, which now
has a single render entrypoint. This both avoids stalls from lacking
commits, but also fixes the case the configure path to respect frame
callbacks so we do not run out of buffers in the first place.
2024-09-06 19:46:24 -04:00
Simon Ser
de0731de6a build: bump version to v1.8.0 2024-08-23 22:39:33 +02:00
iyzana
c2dcd40c34 Show cleared state when backspacing last character 2024-08-22 09:02:10 +02:00
Neil Muller
b70d85ec14 Correct for image orientation when loading image
PEG and other image formats may include an EXIF orientation tag
which indicates in what orientation (rotation and mirroring)
the image should be displayed. libgdk-pixbuf does not correct for this
when loading an image, but provides a function to apply the transform
after the fact, which this commit uses.

Pulled from https://github.com/swaywm/swaybg/pull/68
2024-06-14 22:41:03 +02:00
Sertonix
f9ce3f193b Read password hash before fork
This ensures that the parent properly errors only if the password
cannot be read.
2024-03-05 09:50:47 +01:00
Christian Meissl
376cc5fcd4 Init eventloop directly after wl_connect
this makes sure the eventloop is initialized before
any event dispatching. fixes occasional segfaults I
observed on resume.
2024-02-23 19:17:28 +01:00
Sertonix
b63aaffcd1 Check setgid too after dropping root 2024-01-16 15:10:13 +01:00
Sertonix
bb32fd1d50 Install pam config only if pam is enabled 2024-01-16 15:08:29 +01:00
Simon Ser
91bb968110 Document --ready-fd in man page 2023-12-17 13:58:40 +01:00
Simon Ser
7b4a5c4447 Check initial wl_display_roundtrip() return value
On error, print a message and exit.
2023-12-14 11:52:28 +01:00
Simon Ser
9b4b390588 Remove unnecessary wl_display_roundtrip() call
Calling wl_display_roundtrip() from an event handler is a bad
practice in general because it nests multiple dispatches.

We don't need to block here anyways.
2023-12-14 11:52:28 +01:00
Martin Dørum
ba921312c5 Fix output-specific images when output reappears
When setting an image with `--image <output>:<path>`, the image used to
fail to apply if the relevant output appears some time after swaylock
executes.

Co-authored-by: Alexander Bakker <ab@alexbakker.me>
2023-12-14 11:31:13 +01:00
prezmop
f2298bdbf7 Clear password on ctrl+backpace and ctrl+delete 2023-12-10 13:02:22 +01:00
Lyle Hanson
7cecd395a2 Link to manpage
The README for `swayidle` has a convenient link to the manpage, following suit here.
2023-11-26 22:39:41 +01:00
Max Kunzelmann
51e9e6ceda Fix retry behaviour in while loop with mlock()
If mlock() fails with errno EAGAIN, it should be retried up to five
times, which is tracked in the retries variable. However, the `return
false` statement after the switch case makes the function return false
after the first failed mlock() call.

Remove this statement to actually retry up to five times.

Signed-off-by: Max Kunzelmann <maxdev@posteo.de>
2023-11-17 13:56:41 +01:00
Manuel Stoeckl
ccd31553f3 Make self-pipe nonblocking to prevent deadlock
If a large number of signals is sent, it is possible to fill the
buffer for sigusr_fds[1] before the main loop has a chance to read
from it; then the signal handler do_sigusr() will block on write.
2023-10-07 22:15:02 +02:00
Manuel Stoeckl
0569a47ef7 Configure SIGUSR1 with sigaction() instead of signal()
If signal() is used to set a signal handler, only the first signal
received will use the handler; any later signals use the default
behavior (making swaylock terminate immediately, without unlocking).
Using sigaction() ensures that the handler will be used every time.
2023-10-07 22:15:02 +02:00
Simon Ser
f692ee0075 Don't send READY=1 for readiness notifications
Just send a singular newline like s6 expects.

systemd doesn't support spawning a process with an FD to send
readiness notifications to, instead it provides a socket name. IOW,
this cannot be used directly with systemd after all.

Closes: https://github.com/swaywm/swaylock/issues/312
2023-10-06 13:03:07 +02:00
Manuel Stoeckl
10df946671 Fix Wayland object leaks when outputs are destroyed 2023-08-06 21:27:54 +02:00
Sophie Winter
2018673e1d Don't drop the buffer until after surface commit 2023-06-12 14:17:43 +02:00
Manuel Stoeckl
31ebd85fe0 Separate input and auth state
This commit establishes separate state machines for auth state (whether
the password submitted is being verified or is wrong) and input state
(typing indicators and clear message -- things relevant to the state of
the password being typed in, before it is submitted.) This makes it
possible to display the auth state while updating the input state (for
example, show that the previously submitted password is 'verifying' or
'wrong' while typing another.)

The two state machines interact only when submitting a password. There
is some interference with the rendering code -- a 'cleared' message
from the input state machine supersedes verifying/wrong messages from
the auth state machine; although since the 'clear' state has a shorter
timeout than the auth 'invalid' state, this is unlikely to hide the 'wrong'
message.
2023-05-09 12:40:41 +02:00
Hugo Osvaldo Barrera
876965f944 Accept input while validating
Allow typing new input while the previous one is validating. Can be
tested with:

    ninja -C build && sway -c sway.conf

Where sway.config is:

    exec ./build/swaylock

Fixes: https://github.com/swaywm/swaylock/issues/241
2023-04-14 09:55:19 +02:00
Manuel Stoeckl
75e837c31a Synchronize highlight position between outputs
This change has the additional benefit of ensuring that the position
of the highlight only changes in reaction to a letter key or
backspace being pressed, and not when the compositor sends a new
configure event or the output needs to be redrawn for some other
reason.
2023-04-02 02:34:19 +02:00
Manuel Stoeckl
1d3e62c67f Stop pooling background surface buffers
The wl_buffers for the background surface only need to be updated
when the output dimensions change. Using the fixed pool of two
buffers to cache these buffers does not help, since if a new buffer
is needed, it will have a different size than whatever buffers were
cached. Furthermore, because the pool has fixed size, it is possible
to run out of buffers if configure events arrive faster than
pool buffers are marked not busy, which can lead to protocol errors
when the background surface is committed after acknowledging a new
size, but without attaching a buffer that matches that size.
2023-03-22 10:56:42 +01:00
Simon Ser
ac3b49b657 Drop support for layer-shell
Superseded by ext-session-lock-v1
2023-01-28 23:03:30 +01:00
Simon Ser
db9ee6d127 Add --ready-fd
This implements a readiness notification mechanism which works on
both systemd and s6.

References: https://github.com/swaywm/swaylock/pull/42
References: https://github.com/swaywm/swaylock/pull/275
2023-01-28 22:58:19 +01:00
Simon Ser
bd2dfec9ae build: bump version to 1.7.2 2023-01-28 22:54:27 +01:00
Simon Ser
be566a2935 Wait for the locked event
We were ignoring the locked event. Wait for it instead.
2023-01-28 22:51:38 +01:00
Simon Ser
6213fa0a7c build: bump version to 1.7.1 2023-01-27 12:23:16 +01:00
Manuel Stoeckl
4a44c306e7 Remove unused fields in swaylock_surface 2023-01-27 12:19:32 +01:00
Manuel Stoeckl
10ab8b2740 Estimate buffer size in advance for render_frame
The size of the surface used to draw the indicator depends on
the extents of the text being drawn on and under the indicator.

This commit refactors the `render_frame` function so that the surface
size is computed before drawing; before, `render_frame` drew onto a
buffer, estimated the size the buffer should have had, and recursively
called itself to try again with the estimated size, if necessary. This
was done because Cairo's methods to estimate font and text size
require that a cairo_t context object and an associated cairo_surface
already have been set up. Since the surface size depends on the text
size, the natural way to use Cairo would have a circular dependency.

In order to compute sizes _before_ the buffer is created, this commit
adds a 1x1 surface and a matching `test_cairo` context which is set to
the same font and drawing parameters as the buffer that will be
created. Font/text extent measurements should give the same results as
for the final buffer.
2023-01-27 12:19:32 +01:00
Manuel Stoeckl
b4e3a2b0fd Remove overridden surface attachment
The removed lines had no effect, since later in `render_frame`
buffer->buffer is attached to surface->child.
2023-01-27 12:19:32 +01:00
Lily Foster
2c4bafc57f Fix option parsing without --debug after #261
From getopt manual page:

> By default, getopt() permutes the contents of argv as it scans, so that eventually all the nonoptions are at the end. Two other scanning modes are also implemented. [...] If the first character of optstring is '-', then each nonoption argv-element is handled as if it were the argument of an option with character code 1.

> If the first character (following any optional '+' or '-' described above) of optstring is a colon (':'), then getopt() likewise does not print an error message. In addition, it returns ':' instead of '?' to indicate a missing option argument. This allows the caller to distinguish the two different types of errors.
2023-01-26 16:34:49 +01:00
Arnout Engelen
d5eb85ba1c Parse --debug parameter before forking
To make sure the backend picks up the loglevel as well
2023-01-03 16:34:53 +01:00
Simon Ser
84598b08f2 build: use configuration data for SYSCONFDIR and SWAYLOCK_VERSION 2022-12-05 11:02:41 +01:00
Simon Ser
ee8d4ff655 build: drop intermediate protocols static lib 2022-12-05 11:02:41 +01:00
Simon Ser
dcba5bcb9f build: move completions to separate file 2022-12-05 11:02:41 +01:00
nerdopolis
d9e71c87c7 Fix build on Debian Stable 2022-11-28 08:12:06 +01:00
Simon Ser
9ec4541030 build: find native wayland-scanner 2022-11-27 14:13:37 +01:00
Simon Ser
1c77805930 build: bump to version 1.7 2022-11-27 14:07:27 +01:00
Manuel Stoeckl
cbdafb031a Use shm_open instead of mkstemp
shm_open is more reliable because it does not require
a writeable filesystem folder, unlike mkstemp.
2022-11-24 23:56:10 +01:00
sonny
226244e93c Fix capitalization. 2022-11-21 16:31:11 +01:00
Alexander Orzechowski
f6f804013f Check for existence of subcompositor
We need this protocol
2022-11-14 21:07:01 +01:00
Alexander Orzechowski
5c1b16b957 renderer: work with current buffer locally
No need to store this globally accessible struct member.
2022-11-14 21:06:41 +01:00
Aleksei Bavshin
1225e75be0 Ensure that ext_session_lock_v1.unlock_and_destroy is processed.
Use wl_display_roundtrip to ensure that the unlock request is received
and processed by the server. The protocol requires[1] this to avoid
possible races.

[1]: https://gitlab.freedesktop.org/wayland/wayland-protocols/-/merge_requests/161
2022-11-12 10:40:19 +01:00
Alexander Orzechowski
cc2779330f meson: Clean up client_protocols 2022-09-26 19:58:53 +02:00
Simon Ser
b5cfd43deb shadow: make the result of crypt() const
This should not be free'd.
2022-09-26 19:58:04 +02:00
Daniel De Graaf
dafbef3ade Unlock the screen on SIGUSR1
When the screen is locked using ext_session_lock, killing swaylock will
leave the session locked.  This is normally desirable if the kill is due
to the OOM killer or swaylock crashing, but can be undesirable if an
unlock is desired.  This adds a signal handler for SIGUSR1 if using
ext_session_lock.
2022-09-24 12:15:53 +02:00