]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
agetty: don't put the VC into canonical mode
authorLubomir Rintel <lkundrak@v3.sk>
Fri, 19 Oct 2018 20:08:17 +0000 (22:08 +0200)
committerKarel Zak <kzak@redhat.com>
Mon, 22 Oct 2018 09:03:47 +0000 (11:03 +0200)
The wait_for_term_input()'s select() needs to be tripped when the user
starts typing. Otherwise the reloads can abort an already in-progress login.

Coupled with \4 and \6 expansions that happen to be there on Fedora Server,
this means reload on every netlink event. With a couple of IPv6 routers
announcing their networks and temporary addresses in use can make it
sometimes virtually impossible to log in.

Seems like zero lflags do the job just fine on a Linux VT. Reset it to
canonical mode before running login.

Signed-off-by: Lubomir Rintel <lkundrak@v3.sk>
Signed-off-by: Stanislav Brabec <sbrabec@suse.cz>
Signed-off-by: Karel Zak <kzak@redhat.com>
term-utils/agetty.c

index 59122ca45f9a19577accc63360622e88f8f2db9b..cfcdffe93ae9169d4495ae87dcff62307f274b01 100644 (file)
@@ -316,7 +316,7 @@ static void parse_speeds(struct options *op, char *arg);
 static void update_utmp(struct options *op);
 static void open_tty(char *tty, struct termios *tp, struct options *op);
 static void termio_init(struct options *op, struct termios *tp);
-static void reset_vc (const struct options *op, struct termios *tp);
+static void reset_vc(const struct options *op, struct termios *tp, int canon);
 static void auto_baud(struct termios *tp);
 static void list_speeds(void);
 static void output_special_char (struct issue *ie, unsigned char c, struct options *op,
@@ -501,13 +501,14 @@ int main(int argc, char **argv)
        if (options.timeout)
                alarm(0);
 
-       if ((options.flags & F_VCONSOLE) == 0) {
-               /* Finalize the termios settings. */
+       /* Finalize the termios settings. */
+       if ((options.flags & F_VCONSOLE) == 0)
                termio_final(&options, &termios, &chardata);
+       else
+               reset_vc(&options, &termios, 1);
 
-               /* Now the newline character should be properly written. */
-               write_all(STDOUT_FILENO, "\r\n", 2);
-       }
+       /* Now the newline character should be properly written. */
+       write_all(STDOUT_FILENO, "\r\n", 2);
 
        sigaction(SIGQUIT, &sa_quit, NULL);
        sigaction(SIGINT, &sa_int, NULL);
@@ -1250,7 +1251,7 @@ static void termio_init(struct options *op, struct termios *tp)
                setlocale(LC_CTYPE, "POSIX");
                op->flags &= ~F_UTF8;
 #endif
-               reset_vc(op, tp);
+               reset_vc(op, tp, 0);
 
                if ((tp->c_cflag & (CS8|PARODD|PARENB)) == CS8)
                        op->flags |= F_EIGHTBITS;
@@ -1360,7 +1361,7 @@ static void termio_init(struct options *op, struct termios *tp)
 }
 
 /* Reset virtual console on stdin to its defaults */
-static void reset_vc(const struct options *op, struct termios *tp)
+static void reset_vc(const struct options *op, struct termios *tp, int canon)
 {
        int fl = 0;
 
@@ -1369,6 +1370,15 @@ static void reset_vc(const struct options *op, struct termios *tp)
 
        reset_virtual_console(tp, fl);
 
+#ifdef AGETTY_RELOAD
+       /*
+        * Discard all the flags that makes the line go canonical with echoing.
+        * We need to know when the user starts typing.
+        */
+       if (canon == 0)
+               tp->c_lflag = 0;
+#endif
+
        if (tcsetattr(STDIN_FILENO, TCSADRAIN, tp))
                log_warn(_("setting terminal attributes failed: %m"));