Systemd/src/login/logind-button.c

249 lines
7.0 KiB
C
Raw Normal View History

2012-05-30 15:07:19 +02:00
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2012 Lennart Poettering
systemd is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <assert.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include <linux/input.h>
2013-11-05 01:10:21 +01:00
#include "sd-messages.h"
2012-05-30 15:07:19 +02:00
#include "conf-parser.h"
#include "util.h"
#include "special.h"
2013-11-05 01:10:21 +01:00
#include "logind-button.h"
2012-05-30 15:07:19 +02:00
Button* button_new(Manager *m, const char *name) {
Button *b;
assert(m);
assert(name);
b = new0(Button, 1);
if (!b)
return NULL;
b->name = strdup(name);
if (!b->name) {
free(b);
return NULL;
}
if (hashmap_put(m->buttons, b->name, b) < 0) {
free(b->name);
free(b);
return NULL;
}
b->manager = m;
b->fd = -1;
return b;
}
void button_free(Button *b) {
assert(b);
hashmap_remove(b->manager->buttons, b->name);
2013-11-05 01:10:21 +01:00
sd_event_source_unref(b->event_source);
2013-11-05 01:10:21 +01:00
if (b->fd >= 0) {
/* If the device has been unplugged close() returns
* ENODEV, let's ignore this, hence we don't use
* close_nointr_nofail() */
close(b->fd);
2012-05-30 15:07:19 +02:00
}
free(b->name);
free(b->seat);
free(b);
}
int button_set_seat(Button *b, const char *sn) {
char *s;
assert(b);
assert(sn);
s = strdup(sn);
if (!s)
return -ENOMEM;
free(b->seat);
b->seat = s;
return 0;
}
static int button_handle(
Button *b,
InhibitWhat inhibit_key,
HandleAction handle,
bool ignore_inhibited,
bool is_edge) {
2012-05-30 15:07:19 +02:00
int r;
assert(b);
r = manager_handle_action(b->manager, inhibit_key, handle, ignore_inhibited, is_edge);
if (r > 0)
/* We are executing the operation, so make sure we don't
* execute another one until the lid is opened/closed again */
b->lid_close_queued = false;
return 0;
2012-05-30 15:07:19 +02:00
}
2013-11-05 01:10:21 +01:00
static int button_dispatch(sd_event_source *s, int fd, uint32_t revents, void *userdata) {
Button *b = userdata;
2012-05-30 15:07:19 +02:00
struct input_event ev;
ssize_t l;
2013-11-05 01:10:21 +01:00
assert(s);
assert(fd == b->fd);
2012-05-30 15:07:19 +02:00
assert(b);
l = read(b->fd, &ev, sizeof(ev));
if (l < 0)
return errno != EAGAIN ? -errno : 0;
if ((size_t) l < sizeof(ev))
return -EIO;
if (ev.type == EV_KEY && ev.value > 0) {
switch (ev.code) {
case KEY_POWER:
case KEY_POWER2:
log_struct(LOG_INFO,
"MESSAGE=Power key pressed.",
MESSAGE_ID(SD_MESSAGE_POWER_KEY),
NULL);
button_handle(b, INHIBIT_HANDLE_POWER_KEY, b->manager->handle_power_key, b->manager->power_key_ignore_inhibited, true);
break;
2012-05-30 15:07:19 +02:00
/* The kernel is a bit confused here:
KEY_SLEEP = suspend-to-ram, which everybody else calls "suspend"
KEY_SUSPEND = suspend-to-disk, which everybody else calls "hibernate"
*/
2012-05-30 15:07:19 +02:00
case KEY_SLEEP:
log_struct(LOG_INFO,
"MESSAGE=Suspend key pressed.",
MESSAGE_ID(SD_MESSAGE_SUSPEND_KEY),
NULL);
button_handle(b, INHIBIT_HANDLE_SUSPEND_KEY, b->manager->handle_suspend_key, b->manager->suspend_key_ignore_inhibited, true);
break;
2012-05-30 15:07:19 +02:00
case KEY_SUSPEND:
log_struct(LOG_INFO,
"MESSAGE=Hibernate key pressed.",
MESSAGE_ID(SD_MESSAGE_HIBERNATE_KEY),
NULL);
button_handle(b, INHIBIT_HANDLE_HIBERNATE_KEY, b->manager->handle_hibernate_key, b->manager->hibernate_key_ignore_inhibited, true);
break;
2012-05-30 15:07:19 +02:00
}
2012-05-30 15:07:19 +02:00
} else if (ev.type == EV_SW && ev.value > 0) {
if (ev.code == SW_LID) {
log_struct(LOG_INFO,
"MESSAGE=Lid closed.",
MESSAGE_ID(SD_MESSAGE_LID_CLOSED),
NULL);
b->lid_close_queued = true;
button_handle(b, INHIBIT_HANDLE_LID_SWITCH, b->manager->handle_lid_switch, b->manager->lid_switch_ignore_inhibited, true);
}
} else if (ev.type == EV_SW && ev.value == 0) {
if (ev.code == SW_LID) {
log_struct(LOG_INFO,
"MESSAGE=Lid opened.",
MESSAGE_ID(SD_MESSAGE_LID_OPENED),
NULL);
b->lid_close_queued = false;
2012-05-30 15:07:19 +02:00
}
}
return 0;
}
2013-11-05 01:10:21 +01:00
int button_open(Button *b) {
char *p, name[256];
int r;
assert(b);
if (b->fd >= 0) {
close(b->fd);
b->fd = -1;
}
p = strappenda("/dev/input/", b->name);
b->fd = open(p, O_RDWR|O_CLOEXEC|O_NOCTTY|O_NONBLOCK);
if (b->fd < 0) {
log_warning("Failed to open %s: %m", b->name);
return -errno;
}
if (ioctl(b->fd, EVIOCGNAME(sizeof(name)), name) < 0) {
log_error("Failed to get input name: %m");
r = -errno;
goto fail;
}
r = sd_event_add_io(b->manager->event, &b->event_source, b->fd, EPOLLIN, button_dispatch, b);
2013-11-05 01:10:21 +01:00
if (r < 0) {
log_error("Failed to add button event: %s", strerror(-r));
goto fail;
}
log_info("Watching system buttons on /dev/input/%s (%s)", b->name, name);
return 0;
fail:
close(b->fd);
b->fd = -1;
return r;
}
int button_recheck(Button *b) {
assert(b);
if (!b->lid_close_queued)
return 0;
return button_handle(b, INHIBIT_HANDLE_LID_SWITCH, b->manager->handle_lid_switch, b->manager->lid_switch_ignore_inhibited, false);
}