]> git.cameronkatri.com Git - mandoc.git/commit
We repeatedly observed assertion crashes in the low-level terminal
authorIngo Schwarze <schwarze@openbsd.org>
Fri, 21 Nov 2014 01:52:53 +0000 (01:52 +0000)
committerIngo Schwarze <schwarze@openbsd.org>
Fri, 21 Nov 2014 01:52:53 +0000 (01:52 +0000)
commit6242a9efa48427465988912bdb7e56c75b239acf
tree0ddf5283f0848a0c7880a54f9e8c00f1519a5a91
parentb300a4ff9ca15ee75ac8b05afd9d5817390384ae
We repeatedly observed assertion crashes in the low-level terminal
output handler because the high level terminal formatters could be
tricked into setting the left margin further to the right than the
right margin.  Today, jsg@ found more of these with afl.

Change the internal interface between both levels, aiming for
simplicity and robustness of the code.  Treat both margins as
*independent* settings:  Now, termp.offset is the requested left
margin, and termp.rmargin is the available space.  Let the lower
level cope with that case of insufficient space.

Obviously, high level code that does centering or flush right
still has to do careful checks, so i did a full audit of margin
settings in the terminal formatters.

Fixes crashes caused by excessively long title or date strings in
the man(7) footer, operating system or date strings in the mdoc(7)
footer, volume strings in the man(7) or mdoc(7) header, and a few
cases related to some non-prologue macros.
man_term.c
mdoc_term.c
term.c