]>
git.cameronkatri.com Git - mandoc.git/blob - roff.c
1 /* $Id: roff.c,v 1.105 2010/12/01 16:54:25 kristaps Exp $ */
3 * Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
32 #include "libmandoc.h"
34 #define RSTACK_MAX 128
37 ('.' == (c) || '\'' == (c))
40 #define ROFF_DEBUG(fmt, args...) \
41 do { /* Nothing. */ } while (/*CONSTCOND*/ 0)
43 #define ROFF_DEBUG(fmt, args...) \
44 do { fprintf(stderr, fmt , ##args); } while (/*CONSTCOND*/ 0)
68 ROFF_ccond
, /* FIXME: remove this. */
79 char *name
; /* key of symbol */
80 char *string
; /* current value */
81 struct roffstr
*next
; /* next in list */
85 struct roffnode
*last
; /* leaf of stack */
86 mandocmsg msg
; /* err/warn/fatal messages */
87 void *data
; /* privdata for messages */
88 enum roffrule rstack
[RSTACK_MAX
]; /* stack of !`ie' rules */
89 int rstackpos
; /* position in rstack */
90 struct regset
*regs
; /* read/writable registers */
91 struct roffstr
*first_string
;
95 enum rofft tok
; /* type of node */
96 struct roffnode
*parent
; /* up one in stack */
97 int line
; /* parse line */
98 int col
; /* parse col */
99 char *end
; /* end-rules: custom token */
100 int endspan
; /* end-rules: next-line or infty */
101 enum roffrule rule
; /* current evaluation rule */
104 #define ROFF_ARGS struct roff *r, /* parse ctx */ \
105 enum rofft tok, /* tok of macro */ \
106 char **bufp, /* input buffer */ \
107 size_t *szp, /* size of input buffer */ \
108 int ln, /* parse line */ \
109 int ppos, /* original pos in buffer */ \
110 int pos, /* current pos in buffer */ \
111 int *offs /* reset offset of buffer data */
113 typedef enum rofferr (*roffproc
)(ROFF_ARGS
);
116 const char *name
; /* macro name */
117 roffproc proc
; /* process new macro */
118 roffproc text
; /* process as child text of macro */
119 roffproc sub
; /* process as child of macro */
121 #define ROFFMAC_STRUCT (1 << 0) /* always interpret */
122 struct roffmac
*next
;
125 static enum rofferr
roff_block(ROFF_ARGS
);
126 static enum rofferr
roff_block_text(ROFF_ARGS
);
127 static enum rofferr
roff_block_sub(ROFF_ARGS
);
128 static enum rofferr
roff_cblock(ROFF_ARGS
);
129 static enum rofferr
roff_ccond(ROFF_ARGS
);
130 static enum rofferr
roff_cond(ROFF_ARGS
);
131 static enum rofferr
roff_cond_text(ROFF_ARGS
);
132 static enum rofferr
roff_cond_sub(ROFF_ARGS
);
133 static enum rofferr
roff_ds(ROFF_ARGS
);
134 static enum roffrule
roff_evalcond(const char *, int *);
135 static void roff_freestr(struct roff
*);
136 static const char *roff_getstrn(const struct roff
*,
137 const char *, size_t);
138 static enum rofferr
roff_line_ignore(ROFF_ARGS
);
139 static enum rofferr
roff_line_error(ROFF_ARGS
);
140 static enum rofferr
roff_nr(ROFF_ARGS
);
141 static int roff_res(struct roff
*,
142 char **, size_t *, int);
143 static void roff_setstr(struct roff
*,
144 const char *, const char *);
145 static enum rofferr
roff_so(ROFF_ARGS
);
146 static char *roff_strdup(const char *);
148 /* See roff_hash_find() */
152 #define HASHWIDTH (ASCII_HI - ASCII_LO + 1)
154 static struct roffmac
*hash
[HASHWIDTH
];
156 static struct roffmac roffs
[ROFF_MAX
] = {
157 { "ad", roff_line_ignore
, NULL
, NULL
, 0, NULL
},
158 { "am", roff_block
, roff_block_text
, roff_block_sub
, 0, NULL
},
159 { "ami", roff_block
, roff_block_text
, roff_block_sub
, 0, NULL
},
160 { "am1", roff_block
, roff_block_text
, roff_block_sub
, 0, NULL
},
161 { "de", roff_block
, roff_block_text
, roff_block_sub
, 0, NULL
},
162 { "dei", roff_block
, roff_block_text
, roff_block_sub
, 0, NULL
},
163 { "de1", roff_block
, roff_block_text
, roff_block_sub
, 0, NULL
},
164 { "ds", roff_ds
, NULL
, NULL
, 0, NULL
},
165 { "el", roff_cond
, roff_cond_text
, roff_cond_sub
, ROFFMAC_STRUCT
, NULL
},
166 { "hy", roff_line_ignore
, NULL
, NULL
, 0, NULL
},
167 { "ie", roff_cond
, roff_cond_text
, roff_cond_sub
, ROFFMAC_STRUCT
, NULL
},
168 { "if", roff_cond
, roff_cond_text
, roff_cond_sub
, ROFFMAC_STRUCT
, NULL
},
169 { "ig", roff_block
, roff_block_text
, roff_block_sub
, 0, NULL
},
170 { "ne", roff_line_ignore
, NULL
, NULL
, 0, NULL
},
171 { "nh", roff_line_ignore
, NULL
, NULL
, 0, NULL
},
172 { "nr", roff_nr
, NULL
, NULL
, 0, NULL
},
173 { "rm", roff_line_error
, NULL
, NULL
, 0, NULL
},
174 { "so", roff_so
, NULL
, NULL
, 0, NULL
},
175 { "tr", roff_line_ignore
, NULL
, NULL
, 0, NULL
},
176 { ".", roff_cblock
, NULL
, NULL
, 0, NULL
},
177 { "\\}", roff_ccond
, NULL
, NULL
, 0, NULL
},
180 static void roff_free1(struct roff
*);
181 static enum rofft
roff_hash_find(const char *);
182 static void roff_hash_init(void);
183 static void roffnode_cleanscope(struct roff
*);
184 static void roffnode_push(struct roff
*,
185 enum rofft
, int, int);
186 static void roffnode_pop(struct roff
*);
187 static enum rofft
roff_parse(const char *, int *);
188 static int roff_parse_nat(const char *, unsigned int *);
190 /* See roff_hash_find() */
191 #define ROFF_HASH(p) (p[0] - ASCII_LO)
199 for (i
= 0; i
< (int)ROFF_MAX
; i
++) {
200 assert(roffs
[i
].name
[0] >= ASCII_LO
);
201 assert(roffs
[i
].name
[0] <= ASCII_HI
);
203 buc
= ROFF_HASH(roffs
[i
].name
);
205 if (NULL
!= (n
= hash
[buc
])) {
206 for ( ; n
->next
; n
= n
->next
)
210 hash
[buc
] = &roffs
[i
];
216 * Look up a roff token by its name. Returns ROFF_MAX if no macro by
217 * the nil-terminated string name could be found.
220 roff_hash_find(const char *p
)
226 * libroff has an extremely simple hashtable, for the time
227 * being, which simply keys on the first character, which must
228 * be printable, then walks a chain. It works well enough until
232 if (p
[0] < ASCII_LO
|| p
[0] > ASCII_HI
)
237 if (NULL
== (n
= hash
[buc
]))
239 for ( ; n
; n
= n
->next
)
240 if (0 == strcmp(n
->name
, p
))
241 return((enum rofft
)(n
- roffs
));
248 * Pop the current node off of the stack of roff instructions currently
252 roffnode_pop(struct roff
*r
)
259 if (ROFF_el
== p
->tok
)
260 if (r
->rstackpos
> -1)
263 ROFF_DEBUG("roff: popping scope\n");
264 r
->last
= r
->last
->parent
;
272 * Push a roff node onto the instruction stack. This must later be
273 * removed with roffnode_pop().
276 roffnode_push(struct roff
*r
, enum rofft tok
, int line
, int col
)
280 p
= mandoc_calloc(1, sizeof(struct roffnode
));
285 p
->rule
= p
->parent
? p
->parent
->rule
: ROFFRULE_DENY
;
292 roff_free1(struct roff
*r
)
302 roff_reset(struct roff
*r
)
310 roff_free(struct roff
*r
)
319 roff_alloc(struct regset
*regs
, void *data
, const mandocmsg msg
)
323 r
= mandoc_calloc(1, sizeof(struct roff
));
335 * Pre-filter each and every line for reserved words (one beginning with
336 * `\*', e.g., `\*(ab'). These must be handled before the actual line
340 roff_res(struct roff
*r
, char **bufp
, size_t *szp
, int pos
)
342 const char *cp
, *cpp
, *st
, *res
;
348 for (cp
= &(*bufp
)[pos
]; (cpp
= strstr(cp
, "\\*")); cp
++) {
366 for (i
= 0; 0 == maxl
|| i
< maxl
; i
++, cp
++) {
368 return(1); /* Error. */
369 if (0 == maxl
&& ']' == *cp
)
373 res
= roff_getstrn(r
, st
, (size_t)i
);
380 ROFF_DEBUG("roff: splicing reserved: [%.*s]\n", i
, st
);
382 nsz
= *szp
+ strlen(res
) + 1;
383 n
= mandoc_malloc(nsz
);
387 strlcat(n
, *bufp
, (size_t)(cpp
- *bufp
+ 1));
388 strlcat(n
, res
, nsz
);
389 strlcat(n
, cp
+ (maxl
? 0 : 1), nsz
);
403 roff_parseln(struct roff
*r
, int ln
, char **bufp
,
404 size_t *szp
, int pos
, int *offs
)
410 * Run the reserved-word filter only if we have some reserved
414 if (r
->first_string
&& ! roff_res(r
, bufp
, szp
, pos
))
418 * First, if a scope is open and we're not a macro, pass the
419 * text through the macro's filter. If a scope isn't open and
420 * we're not a macro, just let it through.
423 if (r
->last
&& ! ROFF_CTL((*bufp
)[pos
])) {
425 assert(roffs
[t
].text
);
426 ROFF_DEBUG("roff: intercept scoped text: %s, [%s]\n",
427 roffs
[t
].name
, &(*bufp
)[pos
]);
428 return((*roffs
[t
].text
)
430 ln
, pos
, pos
, offs
));
431 } else if ( ! ROFF_CTL((*bufp
)[pos
]))
435 * If a scope is open, go to the child handler for that macro,
436 * as it may want to preprocess before doing anything with it.
441 assert(roffs
[t
].sub
);
442 ROFF_DEBUG("roff: intercept scoped context: %s, [%s]\n",
443 roffs
[t
].name
, &(*bufp
)[pos
]);
444 return((*roffs
[t
].sub
)
446 ln
, pos
, pos
, offs
));
450 * Lastly, as we've no scope open, try to look up and execute
451 * the new macro. If no macro is found, simply return and let
452 * the compilers handle it.
456 if (ROFF_MAX
== (t
= roff_parse(*bufp
, &pos
)))
459 ROFF_DEBUG("roff: intercept new-scope: %s, [%s]\n",
460 roffs
[t
].name
, &(*bufp
)[pos
]);
461 assert(roffs
[t
].proc
);
462 return((*roffs
[t
].proc
)
464 ln
, ppos
, pos
, offs
));
469 roff_endparse(struct roff
*r
)
474 return((*r
->msg
)(MANDOCERR_SCOPEEXIT
, r
->data
, r
->last
->line
,
475 r
->last
->col
, NULL
));
480 * Parse a roff node's type from the input buffer. This must be in the
481 * form of ".foo xxx" in the usual way.
484 roff_parse(const char *buf
, int *pos
)
490 assert(ROFF_CTL(buf
[*pos
]));
493 while (buf
[*pos
] && (' ' == buf
[*pos
] || '\t' == buf
[*pos
]))
496 if ('\0' == buf
[*pos
])
499 for (j
= 0; j
< 4; j
++, (*pos
)++)
500 if ('\0' == (mac
[j
] = buf
[*pos
]))
502 else if (' ' == buf
[*pos
] || (j
&& '\\' == buf
[*pos
]))
510 if (ROFF_MAX
== (t
= roff_hash_find(mac
)))
513 while (buf
[*pos
] && ' ' == buf
[*pos
])
521 roff_parse_nat(const char *buf
, unsigned int *res
)
527 lval
= strtol(buf
, &ep
, 10);
528 if (buf
[0] == '\0' || *ep
!= '\0')
530 if ((errno
== ERANGE
&&
531 (lval
== LONG_MAX
|| lval
== LONG_MIN
)) ||
532 (lval
> INT_MAX
|| lval
< 0))
535 *res
= (unsigned int)lval
;
542 roff_cblock(ROFF_ARGS
)
546 * A block-close `..' should only be invoked as a child of an
547 * ignore macro, otherwise raise a warning and just ignore it.
550 if (NULL
== r
->last
) {
551 if ( ! (*r
->msg
)(MANDOCERR_NOSCOPE
, r
->data
, ln
, ppos
, NULL
))
556 switch (r
->last
->tok
) {
572 if ( ! (*r
->msg
)(MANDOCERR_NOSCOPE
, r
->data
, ln
, ppos
, NULL
))
578 if ( ! (*r
->msg
)(MANDOCERR_ARGSLOST
, r
->data
, ln
, pos
, NULL
))
582 roffnode_cleanscope(r
);
589 roffnode_cleanscope(struct roff
*r
)
593 if (--r
->last
->endspan
< 0)
602 roff_ccond(ROFF_ARGS
)
605 if (NULL
== r
->last
) {
606 if ( ! (*r
->msg
)(MANDOCERR_NOSCOPE
, r
->data
, ln
, ppos
, NULL
))
611 switch (r
->last
->tok
) {
619 if ( ! (*r
->msg
)(MANDOCERR_NOSCOPE
, r
->data
, ln
, ppos
, NULL
))
624 if (r
->last
->endspan
> -1) {
625 if ( ! (*r
->msg
)(MANDOCERR_NOSCOPE
, r
->data
, ln
, ppos
, NULL
))
631 if ( ! (*r
->msg
)(MANDOCERR_ARGSLOST
, r
->data
, ln
, pos
, NULL
))
635 roffnode_cleanscope(r
);
642 roff_block(ROFF_ARGS
)
647 if (ROFF_ig
!= tok
&& '\0' == (*bufp
)[pos
]) {
648 if ( ! (*r
->msg
)(MANDOCERR_NOARGS
, r
->data
, ln
, ppos
, NULL
))
651 } else if (ROFF_ig
!= tok
) {
652 while ((*bufp
)[pos
] && ' ' != (*bufp
)[pos
])
654 while (' ' == (*bufp
)[pos
])
658 roffnode_push(r
, tok
, ln
, ppos
);
660 if ('\0' == (*bufp
)[pos
])
664 while ((*bufp
)[pos
] && ' ' != (*bufp
)[pos
] &&
665 '\t' != (*bufp
)[pos
])
669 * Note: groff does NOT like escape characters in the input.
670 * Instead of detecting this, we're just going to let it fly and
675 sz
= (size_t)(pos
- sv
);
677 if (1 == sz
&& '.' == (*bufp
)[sv
])
680 r
->last
->end
= mandoc_malloc(sz
+ 1);
682 memcpy(r
->last
->end
, *bufp
+ sv
, sz
);
683 r
->last
->end
[(int)sz
] = '\0';
686 if ( ! (*r
->msg
)(MANDOCERR_ARGSLOST
, r
->data
, ln
, pos
, NULL
))
695 roff_block_sub(ROFF_ARGS
)
701 * First check whether a custom macro exists at this level. If
702 * it does, then check against it. This is some of groff's
703 * stranger behaviours. If we encountered a custom end-scope
704 * tag and that tag also happens to be a "real" macro, then we
705 * need to try interpreting it again as a real macro. If it's
706 * not, then return ignore. Else continue.
711 while (' ' == (*bufp
)[i
] || '\t' == (*bufp
)[i
])
714 for (j
= 0; r
->last
->end
[j
]; j
++, i
++)
715 if ((*bufp
)[i
] != r
->last
->end
[j
])
718 if ('\0' == r
->last
->end
[j
] &&
719 ('\0' == (*bufp
)[i
] ||
721 '\t' == (*bufp
)[i
])) {
723 roffnode_cleanscope(r
);
725 if (ROFF_MAX
!= roff_parse(*bufp
, &pos
))
732 * If we have no custom end-query or lookup failed, then try
733 * pulling it out of the hashtable.
737 t
= roff_parse(*bufp
, &pos
);
739 /* If we're not a comment-end, then throw it away. */
740 if (ROFF_cblock
!= t
)
743 assert(roffs
[t
].proc
);
744 return((*roffs
[t
].proc
)(r
, t
, bufp
, szp
,
745 ln
, ppos
, pos
, offs
));
751 roff_block_text(ROFF_ARGS
)
760 roff_cond_sub(ROFF_ARGS
)
769 * Clean out scope. If we've closed ourselves, then don't
773 roffnode_cleanscope(r
);
775 if (ROFF_MAX
== (t
= roff_parse(*bufp
, &pos
))) {
776 if ('\\' == (*bufp
)[pos
] && '}' == (*bufp
)[pos
+ 1])
778 (r
, ROFF_ccond
, bufp
, szp
,
779 ln
, pos
, pos
+ 2, offs
));
780 return(ROFFRULE_DENY
== rr
? ROFF_IGN
: ROFF_CONT
);
784 * A denied conditional must evaluate its children if and only
785 * if they're either structurally required (such as loops and
786 * conditionals) or a closing macro.
788 if (ROFFRULE_DENY
== rr
)
789 if ( ! (ROFFMAC_STRUCT
& roffs
[t
].flags
))
793 assert(roffs
[t
].proc
);
794 return((*roffs
[t
].proc
)(r
, t
, bufp
, szp
,
795 ln
, ppos
, pos
, offs
));
801 roff_cond_text(ROFF_ARGS
)
809 * We display the value of the text if out current evaluation
810 * scope permits us to do so.
813 /* FIXME: use roff_ccond? */
816 if (NULL
== (ep
= strstr(st
, "\\}"))) {
817 roffnode_cleanscope(r
);
818 return(ROFFRULE_DENY
== rr
? ROFF_IGN
: ROFF_CONT
);
821 if (ep
== st
|| (ep
> st
&& '\\' != *(ep
- 1)))
824 roffnode_cleanscope(r
);
825 return(ROFFRULE_DENY
== rr
? ROFF_IGN
: ROFF_CONT
);
830 roff_evalcond(const char *v
, int *pos
)
836 return(ROFFRULE_ALLOW
);
843 return(ROFFRULE_DENY
);
848 while (v
[*pos
] && ' ' != v
[*pos
])
850 return(ROFFRULE_DENY
);
855 roff_line_ignore(ROFF_ARGS
)
863 roff_line_error(ROFF_ARGS
)
866 (*r
->msg
)(MANDOCERR_REQUEST
, r
->data
, ln
, ppos
, roffs
[tok
].name
);
877 /* Stack overflow! */
879 if (ROFF_ie
== tok
&& r
->rstackpos
== RSTACK_MAX
- 1) {
880 (*r
->msg
)(MANDOCERR_MEM
, r
->data
, ln
, ppos
, NULL
);
884 /* First, evaluate the conditional. */
886 if (ROFF_el
== tok
) {
888 * An `.el' will get the value of the current rstack
889 * entry set in prior `ie' calls or defaults to DENY.
891 if (r
->rstackpos
< 0)
892 rule
= ROFFRULE_DENY
;
894 rule
= r
->rstack
[r
->rstackpos
];
896 rule
= roff_evalcond(*bufp
, &pos
);
900 while (' ' == (*bufp
)[pos
])
904 * Roff is weird. If we have just white-space after the
905 * conditional, it's considered the BODY and we exit without
906 * really doing anything. Warn about this. It's probably
910 if ('\0' == (*bufp
)[pos
] && sv
!= pos
) {
911 if ((*r
->msg
)(MANDOCERR_NOARGS
, r
->data
, ln
, ppos
, NULL
))
916 roffnode_push(r
, tok
, ln
, ppos
);
918 r
->last
->rule
= rule
;
920 ROFF_DEBUG("roff: cond: %s -> %s\n", roffs
[tok
].name
,
921 ROFFRULE_ALLOW
== rule
? "allow" : "deny");
923 if (ROFF_ie
== tok
) {
925 * An if-else will put the NEGATION of the current
926 * evaluated conditional into the stack.
929 if (ROFFRULE_DENY
== r
->last
->rule
)
930 r
->rstack
[r
->rstackpos
] = ROFFRULE_ALLOW
;
932 r
->rstack
[r
->rstackpos
] = ROFFRULE_DENY
;
935 /* If the parent has false as its rule, then so do we. */
937 if (r
->last
->parent
&& ROFFRULE_DENY
== r
->last
->parent
->rule
) {
938 r
->last
->rule
= ROFFRULE_DENY
;
939 ROFF_DEBUG("roff: cond override: %s -> deny\n",
944 * Determine scope. If we're invoked with "\{" trailing the
945 * conditional, then we're in a multiline scope. Else our scope
946 * expires on the next line.
949 r
->last
->endspan
= 1;
951 if ('\\' == (*bufp
)[pos
] && '{' == (*bufp
)[pos
+ 1]) {
952 r
->last
->endspan
= -1;
954 ROFF_DEBUG("roff: cond-scope: %s, multi-line\n",
957 ROFF_DEBUG("roff: cond-scope: %s, one-line\n",
961 * If there are no arguments on the line, the next-line scope is
965 if ('\0' == (*bufp
)[pos
])
968 /* Otherwise re-run the roff parser after recalculating. */
982 * A symbol is named by the first word following the macro
983 * invocation up to a space. Its value is anything after the
984 * name's trailing whitespace and optional double-quote. Thus,
988 * will have `bar " ' as its value.
996 /* Read until end of name. */
997 while (*string
&& ' ' != *string
)
1000 /* Nil-terminate name. */
1004 /* Read past spaces. */
1005 while (*string
&& ' ' == *string
)
1008 /* Read passed initial double-quote. */
1009 if (*string
&& '"' == *string
)
1012 /* The rest is the value. */
1013 roff_setstr(r
, name
, string
);
1022 const char *key
, *val
;
1025 key
= &(*bufp
)[pos
];
1028 /* Parse register request. */
1029 while ((*bufp
)[pos
] && ' ' != (*bufp
)[pos
])
1033 * Set our nil terminator. Because this line is going to be
1034 * ignored anyway, we can munge it as we please.
1037 (*bufp
)[pos
++] = '\0';
1039 /* Skip whitespace to register token. */
1040 while ((*bufp
)[pos
] && ' ' == (*bufp
)[pos
])
1043 val
= &(*bufp
)[pos
];
1045 /* Process register token. */
1047 if (0 == strcmp(key
, "nS")) {
1048 rg
[(int)REG_nS
].set
= 1;
1049 if ( ! roff_parse_nat(val
, &rg
[(int)REG_nS
].v
.u
))
1050 rg
[(int)REG_nS
].v
.u
= 0;
1052 ROFF_DEBUG("roff: register nS: %u\n",
1053 rg
[(int)REG_nS
].v
.u
);
1055 ROFF_DEBUG("roff: ignoring register: %s\n", key
);
1066 (*r
->msg
)(MANDOCERR_SO
, r
->data
, ln
, ppos
, NULL
);
1069 * Handle `so'. Be EXTREMELY careful, as we shouldn't be
1070 * opening anything that's not in our cwd or anything beneath
1071 * it. Thus, explicitly disallow traversing up the file-system
1072 * or using absolute paths.
1076 if ('/' == *name
|| strstr(name
, "../") || strstr(name
, "/..")) {
1077 (*r
->msg
)(MANDOCERR_SOPATH
, r
->data
, ln
, pos
, NULL
);
1086 roff_strdup(const char *name
)
1088 char *namecopy
, *sv
;
1091 * This isn't a nice simple mandoc_strdup() because we must
1092 * handle roff's stupid double-escape rule.
1094 sv
= namecopy
= mandoc_malloc(strlen(name
) + 1);
1096 if ('\\' == *name
&& '\\' == *(name
+ 1))
1098 *namecopy
++ = *name
++;
1107 roff_setstr(struct roff
*r
, const char *name
, const char *string
)
1112 n
= r
->first_string
;
1113 while (n
&& strcmp(name
, n
->name
))
1117 namecopy
= mandoc_strdup(name
);
1118 n
= mandoc_malloc(sizeof(struct roffstr
));
1120 n
->next
= r
->first_string
;
1121 r
->first_string
= n
;
1125 /* Don't use mandoc_strdup: clean out double-escapes. */
1126 n
->string
= string
? roff_strdup(string
) : NULL
;
1127 ROFF_DEBUG("roff: new symbol: [%s] = [%s]\n", name
, n
->string
);
1132 roff_getstrn(const struct roff
*r
, const char *name
, size_t len
)
1134 const struct roffstr
*n
;
1136 n
= r
->first_string
;
1137 while (n
&& (strncmp(name
, n
->name
, len
) || '\0' != n
->name
[(int)len
]))
1140 return(n
? n
->string
: NULL
);
1145 roff_freestr(struct roff
*r
)
1147 struct roffstr
*n
, *nn
;
1149 for (n
= r
->first_string
; n
; n
= nn
) {
1156 r
->first_string
= NULL
;