]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
kern: tty: recanonicalize the buffer on ICANON/VEOF/VEOL changes
authorKyle Evans <kevans@FreeBSD.org>
Tue, 16 Jan 2024 02:55:59 +0000 (20:55 -0600)
committerKyle Evans <kevans@FreeBSD.org>
Tue, 30 Jan 2024 17:11:10 +0000 (11:11 -0600)
commit050b4db5a8c1a32a0c77391b7dc81ef5a2ef93f7
tree88fec8d29d5ae7943c93c2eb0c1545073896d4d1
parent984128ce2d5eb7d3374dd4b245d443ec2f5d96b2
kern: tty: recanonicalize the buffer on ICANON/VEOF/VEOL changes

Before this change, we would canonicalize any partial input if the new
local mode is not ICANON, but that's about it.  If we were switching
from -ICANON -> ICANON, or if VEOF/VEOL changes, then our internal canon
accounting would be wrong.

The main consequence of this is that in ICANON mode, we would
potentially hang a read(2) longer if the new VEOF/VEOL appears later in
the buffer, and FIONREAD would be similarly wrong as a result.

Reviewed by: kib

(cherry picked from commit 522083ffbd1ab9b485861750e889d606dc75ed0a)
(cherry picked from commit 5738d741fb796c1f0a6b5c2157af7de58104ac97)
sys/kern/tty.c
sys/kern/tty_inq.c
sys/kern/tty_ttydisc.c
sys/sys/ttydisc.h
sys/sys/ttyqueue.h