2018-04-03 04:48:13 +02:00
|
|
|
#define _XOPEN_SOURCE 700
|
|
|
|
#define _POSIX_C_SOURCE 200112L
|
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <stdbool.h>
|
2015-12-10 13:52:24 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2015-12-10 14:18:48 +01:00
|
|
|
#include <string.h>
|
2018-04-03 04:48:13 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <time.h>
|
2016-06-27 06:25:56 +02:00
|
|
|
#include <unistd.h>
|
2018-04-03 04:48:13 +02:00
|
|
|
#include <wayland-client.h>
|
|
|
|
#include <wlr/util/log.h>
|
2018-04-03 05:14:37 +02:00
|
|
|
#include "swaylock/seat.h"
|
|
|
|
#include "swaylock/swaylock.h"
|
2018-04-03 04:48:13 +02:00
|
|
|
#include "background-image.h"
|
|
|
|
#include "pool-buffer.h"
|
|
|
|
#include "cairo.h"
|
2017-02-21 20:49:22 +01:00
|
|
|
#include "util.h"
|
2018-04-03 04:48:13 +02:00
|
|
|
#include "wlr-layer-shell-unstable-v1-client-protocol.h"
|
|
|
|
|
|
|
|
static void daemonize() {
|
|
|
|
if (fork() == 0) {
|
|
|
|
int devnull = open("/dev/null", O_RDWR);
|
|
|
|
dup2(STDOUT_FILENO, devnull);
|
|
|
|
dup2(STDERR_FILENO, devnull);
|
|
|
|
chdir("/");
|
|
|
|
} else {
|
|
|
|
exit(0);
|
2016-04-03 00:33:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-03 04:48:13 +02:00
|
|
|
static void render_frame(struct swaylock_context *context) {
|
|
|
|
struct swaylock_state *state = context->state;
|
|
|
|
context->current_buffer = get_next_buffer(state->shm,
|
|
|
|
context->buffers, context->width, context->height);
|
|
|
|
cairo_t *cairo = context->current_buffer->cairo;
|
|
|
|
if (state->args.mode == BACKGROUND_MODE_SOLID_COLOR) {
|
|
|
|
cairo_set_source_u32(cairo, state->args.color);
|
|
|
|
cairo_paint(cairo);
|
|
|
|
} else {
|
|
|
|
render_background_image(cairo, context->image,
|
|
|
|
state->args.mode, context->width, context->height);
|
2016-03-23 14:25:58 +01:00
|
|
|
}
|
2018-04-03 04:48:13 +02:00
|
|
|
wl_surface_attach(context->surface, context->current_buffer->buffer, 0, 0);
|
|
|
|
wl_surface_damage(context->surface, 0, 0, context->width, context->height);
|
|
|
|
wl_surface_commit(context->surface);
|
2015-12-10 13:52:24 +01:00
|
|
|
}
|
|
|
|
|
2018-04-03 04:48:13 +02:00
|
|
|
static void layer_surface_configure(void *data,
|
|
|
|
struct zwlr_layer_surface_v1 *surface,
|
|
|
|
uint32_t serial, uint32_t width, uint32_t height) {
|
|
|
|
struct swaylock_context *context = data;
|
|
|
|
context->width = width;
|
|
|
|
context->height = height;
|
|
|
|
zwlr_layer_surface_v1_ack_configure(surface, serial);
|
|
|
|
render_frame(context);
|
2017-02-21 20:49:22 +01:00
|
|
|
}
|
|
|
|
|
2018-04-03 04:48:13 +02:00
|
|
|
static void layer_surface_closed(void *data,
|
|
|
|
struct zwlr_layer_surface_v1 *surface) {
|
|
|
|
struct swaylock_context *context = data;
|
|
|
|
zwlr_layer_surface_v1_destroy(context->layer_surface);
|
|
|
|
wl_surface_destroy(context->surface);
|
|
|
|
context->state->run_display = false;
|
2017-02-21 20:49:22 +01:00
|
|
|
}
|
2015-12-17 14:44:30 +01:00
|
|
|
|
2018-04-03 05:14:37 +02:00
|
|
|
static const struct zwlr_layer_surface_v1_listener layer_surface_listener = {
|
2018-04-03 04:48:13 +02:00
|
|
|
.configure = layer_surface_configure,
|
|
|
|
.closed = layer_surface_closed,
|
|
|
|
};
|
2016-01-24 12:33:32 +01:00
|
|
|
|
2018-04-03 04:48:13 +02:00
|
|
|
static void handle_global(void *data, struct wl_registry *registry,
|
|
|
|
uint32_t name, const char *interface, uint32_t version) {
|
|
|
|
struct swaylock_state *state = data;
|
|
|
|
if (strcmp(interface, wl_compositor_interface.name) == 0) {
|
|
|
|
state->compositor = wl_registry_bind(registry, name,
|
|
|
|
&wl_compositor_interface, 1);
|
|
|
|
} else if (strcmp(interface, wl_shm_interface.name) == 0) {
|
|
|
|
state->shm = wl_registry_bind(registry, name,
|
|
|
|
&wl_shm_interface, 1);
|
|
|
|
} else if (strcmp(interface, wl_seat_interface.name) == 0) {
|
|
|
|
struct wl_seat *seat = wl_registry_bind(
|
|
|
|
registry, name, &wl_seat_interface, 1);
|
2018-04-03 04:55:30 +02:00
|
|
|
wl_seat_add_listener(seat, &seat_listener, state);
|
2018-04-03 04:48:13 +02:00
|
|
|
} else if (strcmp(interface, zwlr_layer_shell_v1_interface.name) == 0) {
|
|
|
|
state->layer_shell = wl_registry_bind(
|
|
|
|
registry, name, &zwlr_layer_shell_v1_interface, 1);
|
|
|
|
} else if (strcmp(interface, wl_output_interface.name) == 0) {
|
|
|
|
struct swaylock_context *context =
|
|
|
|
calloc(1, sizeof(struct swaylock_context));
|
|
|
|
context->state = state;
|
|
|
|
context->output = wl_registry_bind(registry, name,
|
|
|
|
&wl_output_interface, 1);
|
|
|
|
wl_list_insert(&state->contexts, &context->link);
|
2016-01-25 20:16:00 +01:00
|
|
|
}
|
2018-04-03 04:48:13 +02:00
|
|
|
}
|
2016-01-25 20:16:00 +01:00
|
|
|
|
2018-04-03 04:48:13 +02:00
|
|
|
static void handle_global_remove(void *data, struct wl_registry *registry,
|
|
|
|
uint32_t name) {
|
|
|
|
// who cares
|
2016-03-24 23:02:34 +01:00
|
|
|
}
|
|
|
|
|
2018-04-03 04:48:13 +02:00
|
|
|
static const struct wl_registry_listener registry_listener = {
|
|
|
|
.global = handle_global,
|
|
|
|
.global_remove = handle_global_remove,
|
|
|
|
};
|
2016-03-24 23:02:34 +01:00
|
|
|
|
2018-04-03 04:48:13 +02:00
|
|
|
static struct swaylock_state state;
|
2016-01-25 20:16:00 +01:00
|
|
|
|
2018-04-03 04:48:13 +02:00
|
|
|
static void sigalarm_handler(int sig) {
|
|
|
|
signal(SIGALRM, SIG_IGN);
|
|
|
|
// TODO: Hide typing indicator
|
|
|
|
signal(SIGALRM, sigalarm_handler);
|
2016-01-25 20:16:00 +01:00
|
|
|
}
|
|
|
|
|
2015-12-10 13:52:24 +01:00
|
|
|
int main(int argc, char **argv) {
|
2016-03-25 14:06:27 +01:00
|
|
|
signal(SIGALRM, sigalarm_handler);
|
2016-01-23 13:58:43 +01:00
|
|
|
|
|
|
|
static struct option long_options[] = {
|
|
|
|
{"help", no_argument, NULL, 'h'},
|
2016-01-25 20:17:36 +01:00
|
|
|
{"color", required_argument, NULL, 'c'},
|
2016-01-23 14:16:36 +01:00
|
|
|
{"image", required_argument, NULL, 'i'},
|
2018-04-03 04:48:13 +02:00
|
|
|
{"scaling", required_argument, NULL, 's'},
|
2016-01-23 14:16:36 +01:00
|
|
|
{"tiling", no_argument, NULL, 't'},
|
2016-01-23 13:58:43 +01:00
|
|
|
{"version", no_argument, NULL, 'v'},
|
2016-03-24 23:02:34 +01:00
|
|
|
{"socket", required_argument, NULL, 'p'},
|
2016-05-26 17:16:34 +02:00
|
|
|
{"no-unlock-indicator", no_argument, NULL, 'u'},
|
2016-07-13 05:42:16 +02:00
|
|
|
{"daemonize", no_argument, NULL, 'f'},
|
2016-01-23 13:58:43 +01:00
|
|
|
{0, 0, 0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *usage =
|
2016-01-23 14:16:36 +01:00
|
|
|
"Usage: swaylock [options...]\n"
|
2016-01-23 13:58:43 +01:00
|
|
|
"\n"
|
2017-02-22 05:14:28 +01:00
|
|
|
" -h, --help Show help message and quit.\n"
|
|
|
|
" -c, --color <rrggbb[aa]> Turn the screen into the given color instead of white.\n"
|
2018-04-03 04:48:13 +02:00
|
|
|
" -s, --scaling Scaling mode: stretch, fill, fit, center, tile.\n"
|
2017-02-22 05:14:28 +01:00
|
|
|
" -t, --tiling Same as --scaling=tile.\n"
|
|
|
|
" -v, --version Show the version number and quit.\n"
|
|
|
|
" -i, --image [<output>:]<path> Display the given image.\n"
|
|
|
|
" -u, --no-unlock-indicator Disable the unlock indicator.\n"
|
2018-04-03 04:48:13 +02:00
|
|
|
" -f, --daemonize Detach from the controlling terminal.\n"
|
|
|
|
" --socket <socket> Use the specified socket.\n";
|
2016-07-13 05:42:16 +02:00
|
|
|
|
2018-04-03 04:48:13 +02:00
|
|
|
struct swaylock_args args = {
|
|
|
|
.mode = BACKGROUND_MODE_SOLID_COLOR,
|
|
|
|
.color = 0xFFFFFFFF,
|
|
|
|
.show_indicator = true,
|
|
|
|
};
|
|
|
|
state.args = args;
|
|
|
|
wlr_log_init(L_DEBUG, NULL);
|
2016-01-23 13:58:43 +01:00
|
|
|
|
|
|
|
int c;
|
|
|
|
while (1) {
|
|
|
|
int option_index = 0;
|
2018-04-03 04:48:13 +02:00
|
|
|
c = getopt_long(argc, argv, "hc:i:s:tvuf", long_options, &option_index);
|
2016-01-23 13:58:43 +01:00
|
|
|
if (c == -1) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch (c) {
|
2018-04-03 04:48:13 +02:00
|
|
|
case 'c': {
|
|
|
|
state.args.color = parse_color(optarg);
|
|
|
|
state.args.mode = BACKGROUND_MODE_SOLID_COLOR;
|
2016-01-25 20:17:36 +01:00
|
|
|
break;
|
2016-01-28 01:41:57 +01:00
|
|
|
}
|
2016-01-23 14:16:36 +01:00
|
|
|
case 'i':
|
2018-04-03 04:48:13 +02:00
|
|
|
// TODO
|
|
|
|
return 1;
|
|
|
|
case 's':
|
|
|
|
state.args.mode = parse_background_mode(optarg);
|
|
|
|
if (state.args.mode == BACKGROUND_MODE_INVALID) {
|
|
|
|
return 1;
|
2016-03-24 23:02:34 +01:00
|
|
|
}
|
2016-01-23 14:16:36 +01:00
|
|
|
break;
|
|
|
|
case 't':
|
2018-04-03 04:48:13 +02:00
|
|
|
// TODO
|
2016-03-24 23:02:34 +01:00
|
|
|
break;
|
2016-01-23 13:58:43 +01:00
|
|
|
case 'v':
|
2018-04-03 04:48:13 +02:00
|
|
|
#if defined SWAY_GIT_VERSION && defined SWAY_GIT_BRANCH && defined SWAY_VERSION_DATE
|
|
|
|
fprintf(stdout, "swaylock version %s (%s, branch \"%s\")\n",
|
|
|
|
SWAY_GIT_VERSION, SWAY_VERSION_DATE, SWAY_GIT_BRANCH);
|
|
|
|
#else
|
|
|
|
fprintf(stdout, "version unknown\n");
|
|
|
|
#endif
|
|
|
|
return 0;
|
2016-05-26 17:16:34 +02:00
|
|
|
case 'u':
|
2018-04-03 04:48:13 +02:00
|
|
|
state.args.show_indicator = false;
|
2016-07-13 05:42:16 +02:00
|
|
|
break;
|
2018-04-03 04:48:13 +02:00
|
|
|
case 'f':
|
|
|
|
daemonize();
|
2017-02-21 20:49:22 +01:00
|
|
|
break;
|
2016-01-23 13:58:43 +01:00
|
|
|
default:
|
|
|
|
fprintf(stderr, "%s", usage);
|
2018-04-03 04:48:13 +02:00
|
|
|
return 1;
|
2016-01-23 13:58:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-03 04:48:13 +02:00
|
|
|
wl_list_init(&state.contexts);
|
2018-04-03 05:07:43 +02:00
|
|
|
state.xkb.context = xkb_context_new(XKB_CONTEXT_NO_FLAGS);
|
2018-04-03 04:48:13 +02:00
|
|
|
assert(state.display = wl_display_connect(NULL));
|
2016-03-24 23:02:34 +01:00
|
|
|
|
2018-04-03 04:48:13 +02:00
|
|
|
struct wl_registry *registry = wl_display_get_registry(state.display);
|
|
|
|
wl_registry_add_listener(registry, ®istry_listener, &state);
|
|
|
|
wl_display_roundtrip(state.display);
|
|
|
|
assert(state.compositor && state.layer_shell && state.shm);
|
2015-12-10 14:18:48 +01:00
|
|
|
|
2018-04-03 04:48:13 +02:00
|
|
|
if (wl_list_empty(&state.contexts)) {
|
|
|
|
wlr_log(L_DEBUG, "Exiting - no outputs to show on.");
|
|
|
|
return 0;
|
2015-12-19 01:29:44 +01:00
|
|
|
}
|
2015-12-10 14:18:48 +01:00
|
|
|
|
2018-04-03 04:48:13 +02:00
|
|
|
struct swaylock_context *context;
|
|
|
|
wl_list_for_each(context, &state.contexts, link) {
|
|
|
|
assert(context->surface =
|
|
|
|
wl_compositor_create_surface(state.compositor));
|
|
|
|
|
|
|
|
context->layer_surface = zwlr_layer_shell_v1_get_layer_surface(
|
|
|
|
state.layer_shell, context->surface, context->output,
|
|
|
|
ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY, "lockscreen");
|
|
|
|
assert(context->layer_surface);
|
|
|
|
|
|
|
|
zwlr_layer_surface_v1_set_size(context->layer_surface, 0, 0);
|
|
|
|
zwlr_layer_surface_v1_set_anchor(context->layer_surface,
|
|
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP |
|
|
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT |
|
|
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM |
|
|
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT);
|
|
|
|
zwlr_layer_surface_v1_set_exclusive_zone(context->layer_surface, -1);
|
|
|
|
zwlr_layer_surface_v1_set_keyboard_interactivity(
|
|
|
|
context->layer_surface, true);
|
|
|
|
zwlr_layer_surface_v1_add_listener(context->layer_surface,
|
|
|
|
&layer_surface_listener, context);
|
|
|
|
wl_surface_commit(context->surface);
|
|
|
|
wl_display_roundtrip(state.display);
|
2016-03-25 14:06:27 +01:00
|
|
|
}
|
|
|
|
|
2018-04-03 04:48:13 +02:00
|
|
|
state.run_display = true;
|
|
|
|
while (wl_display_dispatch(state.display) != -1 && state.run_display) {
|
|
|
|
// This space intentionally left blank
|
2015-12-10 14:18:48 +01:00
|
|
|
}
|
2015-12-10 13:52:24 +01:00
|
|
|
return 0;
|
|
|
|
}
|