Do not die on an assertion if an input file contains no section
authorschwarze <schwarze@openbsd.org>
Wed, 13 Apr 2022 14:37:34 +0000 (14:37 +0000)
committerschwarze <schwarze@openbsd.org>
Wed, 13 Apr 2022 14:37:34 +0000 (14:37 +0000)
whatsoever and ends with a broken next-line scope.  Obviously, this
cannot happen in a real manual page, but mandoc(1) should not die
even when fed absurd input.

This bug was independently reported by both jsg@ and tb@ who both
found it with afl(1).

regress/usr.bin/mandoc/man/TH/nobody.in
regress/usr.bin/mandoc/man/TH/nobody.out_ascii
regress/usr.bin/mandoc/man/TH/nobody.out_lint
usr.bin/mandoc/man_macro.c

index b24909a..5ef4c1d 100644 (file)
@@ -1,2 +1,3 @@
-.\" $OpenBSD: nobody.in,v 1.2 2017/07/04 14:53:24 schwarze Exp $
-.TH TH-NOBODY 1 "June 20, 2014"
+.\" $OpenBSD: nobody.in,v 1.3 2022/04/13 14:37:34 schwarze Exp $
+.TH TH-NOBODY 1 "April 13, 2022"
+.B
index 2b0b1ed..975e8a7 100644 (file)
@@ -1,3 +1,3 @@
 TH-NOBODY(1)                General Commands Manual               TH-NOBODY(1)
 
-OpenBSD                          June 20, 2014                    TH-NOBODY(1)
+OpenBSD                         April 13, 2022                    TH-NOBODY(1)
index f5439fc..dae5fdf 100644 (file)
@@ -1 +1,2 @@
+mandoc: nobody.in:3:2: WARNING: line scope broken: EOF breaks B
 mandoc: nobody.in: WARNING: no document body
index dc3832d..779b282 100644 (file)
@@ -1,7 +1,7 @@
-/* $OpenBSD: man_macro.c,v 1.107 2020/09/09 16:57:05 schwarze Exp $ */
+/* $OpenBSD: man_macro.c,v 1.108 2022/04/13 14:37:34 schwarze Exp $ */
 /*
+ * Copyright (c) 2012-2015,2017-2020,2022 Ingo Schwarze <schwarze@openbsd.org>
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
- * Copyright (c) 2012-2015, 2017-2020 Ingo Schwarze <schwarze@openbsd.org>
  * Copyright (c) 2013 Franco Fichtner <franco@lastsummer.de>
  *
  * Permission to use, copy, modify, and distribute this software for any
@@ -106,7 +106,8 @@ man_unscope(struct roff_man *man, const struct roff_node *to)
                                    n->line, n->pos,
                                    "EOF breaks %s", roff_name[n->tok]);
                                if (man->flags & MAN_ELINE) {
-                                       if ((man_macro(n->parent->tok)->flags &
+                                       if (n->parent->type == ROFFT_ROOT ||
+                                           (man_macro(n->parent->tok)->flags &
                                            MAN_ESCOPED) == 0)
                                                man->flags &= ~MAN_ELINE;
                                } else {