aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-08-05libseat: Fix doc typoKenny Levinsen
2020-08-05libseat: Rename libseat_impl to seat_implKenny Levinsen
2020-08-05log: Remove libseat prefixesKenny Levinsen
2020-08-05Remove pointless compiler.hKenny Levinsen
2020-08-04linked_list: Assert initialized list in linked_list_emptyKenny Levinsen
2020-08-04seat: Fix device double-removeKenny Levinsen
2020-08-04seatd: Unlink default seatd socket on startupKenny Levinsen
2020-08-04server: Gracefully shut down on errorKenny Levinsen
2020-08-04client: Sanitize shutdown/kill mechanismKenny Levinsen
2020-08-03client: TidyingKenny Levinsen
2020-08-03seat: Enable VT process switching when switching awayKenny Levinsen
2020-08-03seat: Add VT cleanup on switch to empty VTKenny Levinsen
VTs were being cleaned up the active client of a VT went away, or if we were acking a kernel VT switch request. However, no cleanup was done if the user had reqested a session switch to a different VT. Duplicate the VT cleanup to the VT switch condition.
2020-08-03libseat: Use LIBSEAT_LOGLEVEL instead of SEATD_LOGLEVELKenny Levinsen
2020-08-03libseat: Convert clients to linked_listKenny Levinsen
2020-08-03seat: Convert client list to linked listKenny Levinsen
2020-08-03seat: Convert device list to linked listKenny Levinsen
2020-08-03linked_list: Initial implementationKenny Levinsen
2020-08-03server: Stack-allocate the serverKenny Levinsen
2020-08-03poller: Inline the poller into the server structKenny Levinsen
2020-08-03poller: Remove unnecessary poll_impl abstractionKenny Levinsen
2020-08-03libseat: Remove unused stdarg.h importKenny Levinsen
2020-08-03compiler: Rename erroneous header-guardKenny Levinsen
2020-08-03terminal: Remove unused prototypesKenny Levinsen
2020-08-03list: Make list_concat argument constKenny Levinsen
2020-08-03client: Prefix notification methods with 'send'Kenny Levinsen
2020-08-03libseat: Use symbol file instead of -fvisibilityKenny Levinsen
2020-08-02seat: Deactivate devices before sending disableKenny Levinsen
Previously, seatd would not deactivate devices until the client had acked the disable. In once instance, this lead to libinput spending significant time checking and closing each input device. As a workaround, mimick logind's behavior of deactivating devices first. The original behavior can be reintroduced if the client-side problem is fixed. Closes: https://todo.sr.ht/~kennylevinsen/seatd/5
2020-08-02list: Add list_pop_backKenny Levinsen
2020-08-02seat: Open/close tty on activation/deactivationKenny Levinsen
The VT and KD ioctl's are picky about the tty fd used. In order to satisfy these, and to improve state cleanup, we now only and store the current tty when opening a client, and use this fd to perform teardown later. The presence of the fd is also used to signal that teardown is needed.
2020-08-02terminal: Correctly set K_ON on keyboard enableKenny Levinsen
2020-08-02log: Fix inverted loglevel checkKenny Levinsen
2020-08-01seat: Fix seat_device->fd assertKenny Levinsen
2020-08-01Remove ALWAYS_INLINEKenny Levinsen
Didn't do what I wanted it to anyway.
2020-08-01connection: Shrink buffers from 1KB to 256B eachKenny Levinsen
2020-08-01Add platform support note to READMEKenny Levinsen
2020-08-01seatd: Perform clean server shutdownKenny Levinsen
2020-08-01ci: Add completion print to smoketestKenny Levinsen
2020-08-01ci: Add Alpine/FreeBSD builtin smoketestKenny Levinsen
2020-08-01simpletest: Take file to open as argumentKenny Levinsen
2020-08-01ci: Add FreeBSDKenny Levinsen
2020-08-01FreeBSD compiler warning fixKenny Levinsen
2020-08-01client: Implement get_peer for FreeBSDKenny Levinsen
2020-08-01devices: Use path to check device typeKenny Levinsen
FreeBSD device numbers cannot be used to check the type of a device, as they are merely unique filesystem IDs. As the paths we use have been sanitized with realpath, we can simply use the path to check if a requested file is an evdev or drm device. This also allows us to make the check before the file is opened.
2020-08-01devices: FreeBSD support in drm and evdev codeKenny Levinsen
2020-08-01log: Avoid unnecessary GNU extensionKenny Levinsen
2020-08-01terminal: FreeBSD VT and KD handlingKenny Levinsen
2020-08-01meson: FreeBSD optionsKenny Levinsen
2020-07-31meson: Set _FORTIFY_SOURCE=2 for optimized buildsKenny Levinsen
2020-07-31seat: Use PATH_MAX long array for realpathKenny Levinsen
2020-07-31meson: Add summary printoutKenny Levinsen