summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlan Jenkins <alan.christopher.jenkins@gmail.com>2017-08-30 16:06:12 +0100
committerSven Eden <yamakuzure@gmx.net>2017-09-25 14:36:07 +0200
commit2605b42dd5331182f30f46362bf171262d0006ee (patch)
treeb47eca388fa2eceb5c1f6a96159f8643547b1274 /src
parent6f3436beda61eed90f699c3c247ddd587be8076e (diff)
logind: VT_GETSTATE "cannot return state for more than 16 VTs" (#6625)
`vt_is_busy(16)` would always return FALSE. So we could have started autovt@16.service even when VT 16 was already being used for something.
Diffstat (limited to 'src')
-rw-r--r--src/login/logind-core.c39
-rw-r--r--src/login/logind.h1
2 files changed, 40 insertions, 0 deletions
diff --git a/src/login/logind-core.c b/src/login/logind-core.c
index 7e6b63f12..6eb1e4c93 100644
--- a/src/login/logind-core.c
+++ b/src/login/logind-core.c
@@ -408,6 +408,42 @@ bool manager_shall_kill(Manager *m, const char *user) {
}
#if 0 /// UNNEEDED by elogind
+int config_parse_n_autovts(
+ const char *unit,
+ const char *filename,
+ unsigned line,
+ const char *section,
+ unsigned section_line,
+ const char *lvalue,
+ int ltype,
+ const char *rvalue,
+ void *data,
+ void *userdata) {
+
+ unsigned *n = data;
+ unsigned o;
+ int r;
+
+ assert(filename);
+ assert(lvalue);
+ assert(rvalue);
+ assert(data);
+
+ r = safe_atou(rvalue, &o);
+ if (r < 0) {
+ log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse number of autovts, ignoring: %s", rvalue);
+ return 0;
+ }
+
+ if (o > 15) {
+ log_syntax(unit, LOG_ERR, filename, line, r, "A maximum of 15 autovts are supported, ignoring: %s", rvalue);
+ return 0;
+ }
+
+ *n = o;
+ return 0;
+}
+
static int vt_is_busy(unsigned int vtnr) {
struct vt_stat vt_stat;
int r = 0;
@@ -415,6 +451,9 @@ static int vt_is_busy(unsigned int vtnr) {
assert(vtnr >= 1);
+ /* VT_GETSTATE "cannot return state for more than 16 VTs, since v_state is short" */
+ assert(vtnr <= 15);
+
/* We explicitly open /dev/tty1 here instead of /dev/tty0. If
* we'd open the latter we'd open the foreground tty which
* hence would be unconditionally busy. By opening /dev/tty1
diff --git a/src/login/logind.h b/src/login/logind.h
index 8f6fb72db..7df3cbc2e 100644
--- a/src/login/logind.h
+++ b/src/login/logind.h
@@ -238,6 +238,7 @@ const struct ConfigPerfItem* logind_gperf_lookup(const char *key, GPERF_LEN_TYPE
int manager_set_lid_switch_ignore(Manager *m, usec_t until);
+int config_parse_n_autovts(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
int config_parse_tmpfs_size(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);
int config_parse_user_tasks_max(const char *unit, const char *filename, unsigned line, const char *section, unsigned section_line, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata);