version 1.33, 2008/12/02 13:20:24 |
version 1.140, 2011/05/24 15:22:14 |
|
|
/* $Id$ */ |
/* $Id$ */ |
/* |
/* |
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se> |
* Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> |
|
* Copyright (c) 2010, 2011 Ingo Schwarze <schwarze@openbsd.org> |
* |
* |
* Permission to use, copy, modify, and distribute this software for any |
* Permission to use, copy, modify, and distribute this software for any |
* purpose with or without fee is hereby granted, provided that the |
* purpose with or without fee is hereby granted, provided that the above |
* above copyright notice and this permission notice appear in all |
* copyright notice and this permission notice appear in all copies. |
* copies. |
|
* |
* |
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL |
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES |
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED |
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE |
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR |
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
* PERFORMANCE OF THIS SOFTWARE. |
|
*/ |
*/ |
#include <sys/param.h> |
#ifdef HAVE_CONFIG_H |
#include <sys/types.h> |
#include "config.h" |
|
#endif |
|
|
#include <assert.h> |
#include <assert.h> |
#include <ctype.h> |
#include <ctype.h> |
#include <err.h> |
|
#include <stdarg.h> |
|
#include <stdlib.h> |
#include <stdlib.h> |
#include <stdio.h> |
|
#include <string.h> |
#include <string.h> |
#include <time.h> |
|
|
|
#include "libmdocml.h" |
#include "mandoc.h" |
#include "private.h" |
#include "libroff.h" |
|
#include "libmandoc.h" |
|
|
/* FIXME: First letters of quoted-text interpreted in rofffindtok. */ |
#define RSTACK_MAX 128 |
/* FIXME: `No' not implemented. */ |
|
/* TODO: warn if Pp occurs before/after Sh etc. (see mdoc.samples). */ |
|
/* TODO: warn about "X section only" macros. */ |
|
/* TODO: warn about empty lists. */ |
|
/* TODO: (warn) some sections need specific elements. */ |
|
/* TODO: (warn) NAME section has particular order. */ |
|
/* TODO: unify empty-content tags a la <br />. */ |
|
/* TODO: macros with a set number of arguments? */ |
|
|
|
#define ROFF_MAXARG 32 |
enum rofft { |
|
ROFF_ad, |
enum roffd { |
ROFF_am, |
ROFF_ENTER = 0, |
ROFF_ami, |
ROFF_EXIT |
ROFF_am1, |
|
ROFF_de, |
|
ROFF_dei, |
|
ROFF_de1, |
|
ROFF_ds, |
|
ROFF_el, |
|
ROFF_hy, |
|
ROFF_ie, |
|
ROFF_if, |
|
ROFF_ig, |
|
ROFF_it, |
|
ROFF_ne, |
|
ROFF_nh, |
|
ROFF_nr, |
|
ROFF_ns, |
|
ROFF_ps, |
|
ROFF_rm, |
|
ROFF_so, |
|
ROFF_ta, |
|
ROFF_tr, |
|
ROFF_TS, |
|
ROFF_TE, |
|
ROFF_T_, |
|
ROFF_EQ, |
|
ROFF_EN, |
|
ROFF_cblock, |
|
ROFF_ccond, /* FIXME: remove this. */ |
|
ROFF_USERDEF, |
|
ROFF_MAX |
}; |
}; |
|
|
enum rofftype { |
enum roffrule { |
ROFF_COMMENT, |
ROFFRULE_ALLOW, |
ROFF_TEXT, |
ROFFRULE_DENY |
ROFF_LAYOUT, |
|
ROFF_SPECIAL |
|
}; |
}; |
|
|
#define ROFFCALL_ARGS \ |
struct roffstr { |
int tok, struct rofftree *tree, \ |
char *name; /* key of symbol */ |
char *argv[], enum roffd type |
char *string; /* current value */ |
|
struct roffstr *next; /* next in list */ |
struct rofftree; |
|
|
|
struct rofftok { |
|
int (*cb)(ROFFCALL_ARGS); /* Callback. */ |
|
const int *args; /* Args (or NULL). */ |
|
const int *parents; /* Limit to parents. */ |
|
const int *children; /* Limit to kids. */ |
|
int ctx; /* Blk-close node. */ |
|
enum rofftype type; /* Type of macro. */ |
|
int flags; |
|
#define ROFF_PARSED (1 << 0) /* "Parsed". */ |
|
#define ROFF_CALLABLE (1 << 1) /* "Callable". */ |
|
#define ROFF_SHALLOW (1 << 2) /* Nesting block. */ |
|
#define ROFF_LSCOPE (1 << 3) /* Line scope. */ |
|
}; |
}; |
|
|
struct roffarg { |
struct roff { |
int flags; |
struct mparse *parse; /* parse point */ |
#define ROFF_VALUE (1 << 0) /* Has a value. */ |
struct roffnode *last; /* leaf of stack */ |
|
enum roffrule rstack[RSTACK_MAX]; /* stack of !`ie' rules */ |
|
int rstackpos; /* position in rstack */ |
|
struct regset *regs; /* read/writable registers */ |
|
struct roffstr *first_string; /* user-defined strings & macros */ |
|
const char *current_string; /* value of last called user macro */ |
|
struct tbl_node *first_tbl; /* first table parsed */ |
|
struct tbl_node *last_tbl; /* last table parsed */ |
|
struct tbl_node *tbl; /* current table being parsed */ |
|
struct eqn_node *last_eqn; /* last equation parsed */ |
|
struct eqn_node *first_eqn; /* first equation parsed */ |
|
struct eqn_node *eqn; /* current equation being parsed */ |
}; |
}; |
|
|
struct roffnode { |
struct roffnode { |
int tok; /* Token id. */ |
enum rofft tok; /* type of node */ |
struct roffnode *parent; /* Parent (or NULL). */ |
struct roffnode *parent; /* up one in stack */ |
|
int line; /* parse line */ |
|
int col; /* parse col */ |
|
char *name; /* node name, e.g. macro name */ |
|
char *end; /* end-rules: custom token */ |
|
int endspan; /* end-rules: next-line or infty */ |
|
enum roffrule rule; /* current evaluation rule */ |
}; |
}; |
|
|
struct rofftree { |
#define ROFF_ARGS struct roff *r, /* parse ctx */ \ |
struct roffnode *last; /* Last parsed node. */ |
enum rofft tok, /* tok of macro */ \ |
char *cur; /* Line start. */ |
char **bufp, /* input buffer */ \ |
struct tm tm; /* `Dd' results. */ |
size_t *szp, /* size of input buffer */ \ |
char os[64]; /* `Os' results. */ |
int ln, /* parse line */ \ |
char title[64]; /* `Dt' results. */ |
int ppos, /* original pos in buffer */ \ |
char section[64]; /* `Dt' results. */ |
int pos, /* current pos in buffer */ \ |
char volume[64]; /* `Dt' results. */ |
int *offs /* reset offset of buffer data */ |
int state; |
|
#define ROFF_PRELUDE (1 << 1) /* In roff prelude. */ |
typedef enum rofferr (*roffproc)(ROFF_ARGS); |
#define ROFF_PRELUDE_Os (1 << 2) /* `Os' is parsed. */ |
|
#define ROFF_PRELUDE_Dt (1 << 3) /* `Dt' is parsed. */ |
struct roffmac { |
#define ROFF_PRELUDE_Dd (1 << 4) /* `Dd' is parsed. */ |
const char *name; /* macro name */ |
#define ROFF_BODY (1 << 5) /* In roff body. */ |
roffproc proc; /* process new macro */ |
struct roffcb cb; /* Callbacks. */ |
roffproc text; /* process as child text of macro */ |
void *arg; /* Callbacks' arg. */ |
roffproc sub; /* process as child of macro */ |
|
int flags; |
|
#define ROFFMAC_STRUCT (1 << 0) /* always interpret */ |
|
struct roffmac *next; |
}; |
}; |
|
|
static int roff_Dd(ROFFCALL_ARGS); |
static enum rofferr roff_block(ROFF_ARGS); |
static int roff_Dt(ROFFCALL_ARGS); |
static enum rofferr roff_block_text(ROFF_ARGS); |
static int roff_Os(ROFFCALL_ARGS); |
static enum rofferr roff_block_sub(ROFF_ARGS); |
static int roff_Ns(ROFFCALL_ARGS); |
static enum rofferr roff_cblock(ROFF_ARGS); |
static int roff_Sm(ROFFCALL_ARGS); |
static enum rofferr roff_ccond(ROFF_ARGS); |
static int roff_layout(ROFFCALL_ARGS); |
static enum rofferr roff_cond(ROFF_ARGS); |
static int roff_text(ROFFCALL_ARGS); |
static enum rofferr roff_cond_text(ROFF_ARGS); |
static int roff_noop(ROFFCALL_ARGS); |
static enum rofferr roff_cond_sub(ROFF_ARGS); |
static int roff_depr(ROFFCALL_ARGS); |
static enum rofferr roff_ds(ROFF_ARGS); |
static struct roffnode *roffnode_new(int, struct rofftree *); |
static enum roffrule roff_evalcond(const char *, int *); |
static void roffnode_free(struct rofftree *); |
static void roff_freestr(struct roff *); |
static void roff_warn(const struct rofftree *, |
static char *roff_getname(struct roff *, char **, int, int); |
const char *, char *, ...); |
static const char *roff_getstrn(const struct roff *, |
static void roff_err(const struct rofftree *, |
const char *, size_t); |
const char *, char *, ...); |
static enum rofferr roff_line_ignore(ROFF_ARGS); |
static int roffpurgepunct(struct rofftree *, char **); |
static enum rofferr roff_nr(ROFF_ARGS); |
static int roffscan(int, const int *); |
static int roff_res(struct roff *, |
static int rofffindtok(const char *); |
char **, size_t *, int); |
static int rofffindarg(const char *); |
static enum rofferr roff_rm(ROFF_ARGS); |
static int rofffindcallable(const char *); |
static void roff_setstr(struct roff *, |
static int roffargs(const struct rofftree *, |
const char *, const char *, int); |
int, char *, char **); |
static enum rofferr roff_so(ROFF_ARGS); |
static int roffargok(int, int); |
static enum rofferr roff_TE(ROFF_ARGS); |
static int roffnextopt(const struct rofftree *, |
static enum rofferr roff_TS(ROFF_ARGS); |
int, char ***, char **); |
static enum rofferr roff_EQ(ROFF_ARGS); |
static int roffparseopts(struct rofftree *, int, |
static enum rofferr roff_EN(ROFF_ARGS); |
char ***, int *, char **); |
static enum rofferr roff_T_(ROFF_ARGS); |
static int roffcall(struct rofftree *, int, char **); |
static enum rofferr roff_userdef(ROFF_ARGS); |
static int roffparse(struct rofftree *, char *); |
|
static int textparse(const struct rofftree *, char *); |
|
|
|
#ifdef __linux__ |
/* See roff_hash_find() */ |
static size_t strlcat(char *, const char *, size_t); |
|
static size_t strlcpy(char *, const char *, size_t); |
|
extern int vsnprintf(char *, size_t, |
|
const char *, va_list); |
|
extern char *strptime(const char *, const char *, |
|
struct tm *); |
|
#endif |
|
|
|
|
#define ASCII_HI 126 |
|
#define ASCII_LO 33 |
|
#define HASHWIDTH (ASCII_HI - ASCII_LO + 1) |
|
|
static const int roffarg_An[] = { ROFF_Split, ROFF_Nosplit, ROFF_ARGMAX }; |
static struct roffmac *hash[HASHWIDTH]; |
static const int roffarg_Bd[] = { ROFF_Ragged, ROFF_Unfilled, ROFF_Literal, |
|
ROFF_File, ROFF_Offset, ROFF_Filled, ROFF_Compact, ROFF_ARGMAX }; |
|
static const int roffarg_Bk[] = { ROFF_Words, ROFF_ARGMAX }; |
|
static const int roffarg_Ex[] = { ROFF_Std, ROFF_ARGMAX }; |
|
static const int roffarg_Rv[] = { ROFF_Std, ROFF_ARGMAX }; |
|
static const int roffarg_Bl[] = { ROFF_Bullet, ROFF_Dash, ROFF_Hyphen, |
|
ROFF_Item, ROFF_Enum, ROFF_Tag, ROFF_Diag, ROFF_Hang, ROFF_Ohang, |
|
ROFF_Inset, ROFF_Column, ROFF_Offset, ROFF_Width, ROFF_Compact, |
|
ROFF_ARGMAX }; |
|
static const int roffarg_St[] = { ROFF_p1003_1_88, ROFF_p1003_1_90, |
|
ROFF_p1003_1_96, ROFF_p1003_1_2001, ROFF_p1003_1_2004, ROFF_p1003_1, |
|
ROFF_p1003_1b, ROFF_p1003_1b_93, ROFF_p1003_1c_95, ROFF_p1003_1g_2000, |
|
ROFF_p1003_2_92, ROFF_p1387_2_95, ROFF_p1003_2, ROFF_p1387_2, |
|
ROFF_isoC_90, ROFF_isoC_amd1, ROFF_isoC_tcor1, ROFF_isoC_tcor2, |
|
ROFF_isoC_99, ROFF_ansiC, ROFF_ansiC_89, ROFF_ansiC_99, ROFF_ieee754, |
|
ROFF_iso8802_3, ROFF_xpg3, ROFF_xpg4, ROFF_xpg4_2, ROFF_xpg4_3, |
|
ROFF_xbd5, ROFF_xcu5, ROFF_xsh5, ROFF_xns5, ROFF_xns5_2d2_0, |
|
ROFF_xcurses4_2, ROFF_susv2, ROFF_susv3, ROFF_svid4, ROFF_ARGMAX }; |
|
|
|
static const int roffchild_Bl[] = { ROFF_It, ROFF_El, ROFF_MAX }; |
static struct roffmac roffs[ROFF_MAX] = { |
static const int roffchild_Fo[] = { ROFF_Fa, ROFF_Fc, ROFF_MAX }; |
{ "ad", roff_line_ignore, NULL, NULL, 0, NULL }, |
static const int roffchild_Rs[] = { ROFF_Re, ROFF__A, ROFF__B, ROFF__D, |
{ "am", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
ROFF__I, ROFF__J, ROFF__N, ROFF__O, ROFF__P, ROFF__R, ROFF__T, ROFF__V, |
{ "ami", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
ROFF_MAX }; |
{ "am1", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
|
{ "de", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
|
{ "dei", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
|
{ "de1", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
|
{ "ds", roff_ds, NULL, NULL, 0, NULL }, |
|
{ "el", roff_cond, roff_cond_text, roff_cond_sub, ROFFMAC_STRUCT, NULL }, |
|
{ "hy", roff_line_ignore, NULL, NULL, 0, NULL }, |
|
{ "ie", roff_cond, roff_cond_text, roff_cond_sub, ROFFMAC_STRUCT, NULL }, |
|
{ "if", roff_cond, roff_cond_text, roff_cond_sub, ROFFMAC_STRUCT, NULL }, |
|
{ "ig", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
|
{ "it", roff_line_ignore, NULL, NULL, 0, NULL }, |
|
{ "ne", roff_line_ignore, NULL, NULL, 0, NULL }, |
|
{ "nh", roff_line_ignore, NULL, NULL, 0, NULL }, |
|
{ "nr", roff_nr, NULL, NULL, 0, NULL }, |
|
{ "ns", roff_line_ignore, NULL, NULL, 0, NULL }, |
|
{ "ps", roff_line_ignore, NULL, NULL, 0, NULL }, |
|
{ "rm", roff_rm, NULL, NULL, 0, NULL }, |
|
{ "so", roff_so, NULL, NULL, 0, NULL }, |
|
{ "ta", roff_line_ignore, NULL, NULL, 0, NULL }, |
|
{ "tr", roff_line_ignore, NULL, NULL, 0, NULL }, |
|
{ "TS", roff_TS, NULL, NULL, 0, NULL }, |
|
{ "TE", roff_TE, NULL, NULL, 0, NULL }, |
|
{ "T&", roff_T_, NULL, NULL, 0, NULL }, |
|
{ "EQ", roff_EQ, NULL, NULL, 0, NULL }, |
|
{ "EN", roff_EN, NULL, NULL, 0, NULL }, |
|
{ ".", roff_cblock, NULL, NULL, 0, NULL }, |
|
{ "\\}", roff_ccond, NULL, NULL, 0, NULL }, |
|
{ NULL, roff_userdef, NULL, NULL, 0, NULL }, |
|
}; |
|
|
static const int roffparent_El[] = { ROFF_Bl, ROFF_It, ROFF_MAX }; |
static void roff_free1(struct roff *); |
static const int roffparent_Fc[] = { ROFF_Fo, ROFF_Fa, ROFF_MAX }; |
static enum rofft roff_hash_find(const char *, size_t); |
static const int roffparent_Oc[] = { ROFF_Oo, ROFF_MAX }; |
static void roff_hash_init(void); |
static const int roffparent_It[] = { ROFF_Bl, ROFF_It, ROFF_MAX }; |
static void roffnode_cleanscope(struct roff *); |
static const int roffparent_Re[] = { ROFF_Rs, ROFF_MAX }; |
static void roffnode_push(struct roff *, enum rofft, |
|
const char *, int, int); |
|
static void roffnode_pop(struct roff *); |
|
static enum rofft roff_parse(struct roff *, const char *, int *); |
|
|
static const struct rofftok tokens[ROFF_MAX] = { |
/* See roff_hash_find() */ |
{ roff_noop, NULL, NULL, NULL, 0, ROFF_COMMENT, 0 }, /* \" */ |
#define ROFF_HASH(p) (p[0] - ASCII_LO) |
{ roff_Dd, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Dd */ |
|
{ roff_Dt, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Dt */ |
|
{ roff_Os, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Os */ |
|
{ roff_layout, NULL, NULL, NULL, ROFF_Sh, ROFF_LAYOUT, 0 }, /* Sh */ |
|
{ roff_layout, NULL, NULL, NULL, ROFF_Ss, ROFF_LAYOUT, 0 }, /* Ss */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Pp */ /* XXX 0 args */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_LSCOPE }, /* D1 */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_LSCOPE }, /* Dl */ |
|
{ roff_layout, roffarg_Bd, NULL, NULL, 0, ROFF_LAYOUT, 0 }, /* Bd */ |
|
{ roff_noop, NULL, NULL, NULL, ROFF_Bd, ROFF_LAYOUT, 0 }, /* Ed */ |
|
{ roff_layout, roffarg_Bl, NULL, roffchild_Bl, 0, ROFF_LAYOUT, 0 }, /* Bl */ |
|
{ roff_noop, NULL, roffparent_El, NULL, ROFF_Bl, ROFF_LAYOUT, 0 }, /* El */ |
|
{ roff_layout, NULL, roffparent_It, NULL, ROFF_It, ROFF_LAYOUT, ROFF_PARSED | ROFF_SHALLOW }, /* It */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ad */ /* FIXME */ |
|
{ roff_text, roffarg_An, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* An */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ar */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Cd */ /* XXX man.4 only */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Cm */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Dv */ /* XXX needs arg */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Er */ /* XXX needs arg */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ev */ /* XXX needs arg */ |
|
{ roff_text, roffarg_Ex, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Ex */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Fa */ /* XXX needs arg */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Fd */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Fl */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Fn */ /* XXX needs arg */ /* FIXME */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Ft */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ic */ /* XXX needs arg */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* In */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Li */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Nd */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Nm */ /* FIXME */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE | ROFF_LSCOPE }, /* Op */ |
|
{ roff_depr, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Ot */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Pa */ |
|
{ roff_text, roffarg_Rv, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Rv */ |
|
{ roff_text, roffarg_St, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* St */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Va */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Vt */ /* XXX needs arg */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Xr */ /* XXX needs arg */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* %A */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE}, /* %B */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %D */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE}, /* %I */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE}, /* %J */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %N */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %O */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %P */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %R */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* %T */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %V */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ac */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ao */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE | ROFF_LSCOPE }, /* Aq */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* At */ /* XXX at most 2 args */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Bc */ |
|
{ roff_layout, NULL, NULL, NULL, 0, ROFF_LAYOUT, 0 }, /* Bf */ /* FIXME */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Bo */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE | ROFF_LSCOPE }, /* Bq */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Bsx */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Bx */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_SPECIAL, 0 }, /* Db */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Dc */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Do */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE | ROFF_LSCOPE }, /* Dq */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ec */ |
|
{ roff_noop, NULL, NULL, NULL, ROFF_Bf, ROFF_LAYOUT, 0 }, /* Ef */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Em */ /* XXX needs arg */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Eo */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Fx */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Ms */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* No */ |
|
{ roff_Ns, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ns */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Nx */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Ox */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Pc */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Pf */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Po */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE | ROFF_LSCOPE }, /* Pq */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Qc */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ql */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Qo */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE | ROFF_LSCOPE }, /* Qq */ |
|
{ roff_noop, NULL, roffparent_Re, NULL, ROFF_Rs, ROFF_LAYOUT, 0 }, /* Re */ |
|
{ roff_layout, NULL, NULL, roffchild_Rs, 0, ROFF_LAYOUT, 0 }, /* Rs */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Sc */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* So */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE | ROFF_LSCOPE }, /* Sq */ |
|
{ roff_Sm, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Sm */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Sx */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Sy */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Tn */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Ux */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Xc */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Xo */ |
|
{ roff_layout, NULL, NULL, roffchild_Fo, 0, ROFF_LAYOUT, 0 }, /* Fo */ |
|
{ roff_noop, NULL, roffparent_Fc, NULL, ROFF_Fo, ROFF_LAYOUT, 0 }, /* Fc */ |
|
{ roff_layout, NULL, NULL, NULL, 0, ROFF_LAYOUT, 0 }, /* Oo */ |
|
{ roff_noop, NULL, roffparent_Oc, NULL, ROFF_Oo, ROFF_LAYOUT, 0 }, /* Oc */ |
|
{ roff_layout, roffarg_Bk, NULL, NULL, 0, ROFF_LAYOUT, 0 }, /* Bk */ |
|
{ roff_noop, NULL, NULL, NULL, ROFF_Bk, ROFF_LAYOUT, 0 }, /* Ek */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Bt */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Hf */ |
|
{ roff_depr, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Fr */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Ud */ |
|
}; |
|
|
|
static const int tokenargs[ROFF_ARGMAX] = { |
static void |
0, 0, 0, 0, |
roff_hash_init(void) |
0, ROFF_VALUE, ROFF_VALUE, 0, |
{ |
0, 0, 0, 0, |
struct roffmac *n; |
0, 0, 0, 0, |
int buc, i; |
0, 0, ROFF_VALUE, 0, |
|
0, 0, 0, 0, |
|
0, 0, 0, 0, |
|
0, 0, 0, 0, |
|
0, 0, 0, 0, |
|
0, 0, 0, 0, |
|
0, 0, 0, 0, |
|
0, 0, 0, 0, |
|
0, 0, 0, 0, |
|
0, 0, 0, 0, |
|
0, 0, 0, 0, |
|
}; |
|
|
|
const char *const toknamesp[ROFF_MAX] = { |
for (i = 0; i < (int)ROFF_USERDEF; i++) { |
"\\\"", "Dd", "Dt", "Os", |
assert(roffs[i].name[0] >= ASCII_LO); |
"Sh", "Ss", "Pp", "D1", |
assert(roffs[i].name[0] <= ASCII_HI); |
"Dl", "Bd", "Ed", "Bl", |
|
"El", "It", "Ad", "An", |
|
"Ar", "Cd", "Cm", "Dv", |
|
"Er", "Ev", "Ex", "Fa", |
|
"Fd", "Fl", "Fn", "Ft", |
|
"Ic", "In", "Li", "Nd", |
|
"Nm", "Op", "Ot", "Pa", |
|
"Rv", "St", "Va", "Vt", |
|
/* LINTED */ |
|
"Xr", "\%A", "\%B", "\%D", |
|
/* LINTED */ |
|
"\%I", "\%J", "\%N", "\%O", |
|
/* LINTED */ |
|
"\%P", "\%R", "\%T", "\%V", |
|
"Ac", "Ao", "Aq", "At", |
|
"Bc", "Bf", "Bo", "Bq", |
|
"Bsx", "Bx", "Db", "Dc", |
|
"Do", "Dq", "Ec", "Ef", |
|
"Em", "Eo", "Fx", "Ms", |
|
"No", "Ns", "Nx", "Ox", |
|
"Pc", "Pf", "Po", "Pq", |
|
"Qc", "Ql", "Qo", "Qq", |
|
"Re", "Rs", "Sc", "So", |
|
"Sq", "Sm", "Sx", "Sy", |
|
"Tn", "Ux", "Xc", "Xo", |
|
"Fo", "Fc", "Oo", "Oc", |
|
"Bk", "Ek", "Bt", "Hf", |
|
"Fr", "Ud", |
|
}; |
|
|
|
const char *const tokargnamesp[ROFF_ARGMAX] = { |
buc = ROFF_HASH(roffs[i].name); |
"split", "nosplit", "ragged", |
|
"unfilled", "literal", "file", |
|
"offset", "bullet", "dash", |
|
"hyphen", "item", "enum", |
|
"tag", "diag", "hang", |
|
"ohang", "inset", "column", |
|
"width", "compact", "std", |
|
"p1003.1-88", "p1003.1-90", "p1003.1-96", |
|
"p1003.1-2001", "p1003.1-2004", "p1003.1", |
|
"p1003.1b", "p1003.1b-93", "p1003.1c-95", |
|
"p1003.1g-2000", "p1003.2-92", "p1387.2-95", |
|
"p1003.2", "p1387.2", "isoC-90", |
|
"isoC-amd1", "isoC-tcor1", "isoC-tcor2", |
|
"isoC-99", "ansiC", "ansiC-89", |
|
"ansiC-99", "ieee754", "iso8802-3", |
|
"xpg3", "xpg4", "xpg4.2", |
|
"xpg4.3", "xbd5", "xcu5", |
|
"xsh5", "xns5", "xns5.2d2.0", |
|
"xcurses4.2", "susv2", "susv3", |
|
"svid4", "filled", "words", |
|
}; |
|
|
|
const char *const *toknames = toknamesp; |
if (NULL != (n = hash[buc])) { |
const char *const *tokargnames = tokargnamesp; |
for ( ; n->next; n = n->next) |
|
/* Do nothing. */ ; |
|
n->next = &roffs[i]; |
|
} else |
|
hash[buc] = &roffs[i]; |
|
} |
|
} |
|
|
|
|
int |
/* |
roff_free(struct rofftree *tree, int flush) |
* Look up a roff token by its name. Returns ROFF_MAX if no macro by |
|
* the nil-terminated string name could be found. |
|
*/ |
|
static enum rofft |
|
roff_hash_find(const char *p, size_t s) |
{ |
{ |
int error, t; |
int buc; |
struct roffnode *n; |
struct roffmac *n; |
|
|
error = 0; |
/* |
|
* libroff has an extremely simple hashtable, for the time |
|
* being, which simply keys on the first character, which must |
|
* be printable, then walks a chain. It works well enough until |
|
* optimised. |
|
*/ |
|
|
if ( ! flush) |
if (p[0] < ASCII_LO || p[0] > ASCII_HI) |
goto end; |
return(ROFF_MAX); |
|
|
error = 1; |
buc = ROFF_HASH(p); |
|
|
if (ROFF_PRELUDE & tree->state) { |
if (NULL == (n = hash[buc])) |
roff_err(tree, NULL, "prelude never finished"); |
return(ROFF_MAX); |
goto end; |
for ( ; n; n = n->next) |
} |
if (0 == strncmp(n->name, p, s) && '\0' == n->name[(int)s]) |
|
return((enum rofft)(n - roffs)); |
|
|
for (n = tree->last; n; n = n->parent) { |
return(ROFF_MAX); |
if (0 != tokens[n->tok].ctx) |
} |
continue; |
|
roff_err(tree, NULL, "closing explicit scope `%s'", |
|
toknames[n->tok]); |
|
goto end; |
|
} |
|
|
|
while (tree->last) { |
|
t = tree->last->tok; |
|
if ( ! (*tokens[t].cb)(t, tree, NULL, ROFF_EXIT)) |
|
goto end; |
|
} |
|
|
|
if ( ! (*tree->cb.rofftail)(tree->arg)) |
/* |
goto end; |
* Pop the current node off of the stack of roff instructions currently |
|
* pending. |
|
*/ |
|
static void |
|
roffnode_pop(struct roff *r) |
|
{ |
|
struct roffnode *p; |
|
|
error = 0; |
assert(r->last); |
|
p = r->last; |
|
|
end: |
r->last = r->last->parent; |
|
free(p->name); |
|
free(p->end); |
|
free(p); |
|
} |
|
|
while (tree->last) |
|
roffnode_free(tree); |
|
|
|
free(tree); |
/* |
|
* Push a roff node onto the instruction stack. This must later be |
|
* removed with roffnode_pop(). |
|
*/ |
|
static void |
|
roffnode_push(struct roff *r, enum rofft tok, const char *name, |
|
int line, int col) |
|
{ |
|
struct roffnode *p; |
|
|
return(error ? 0 : 1); |
p = mandoc_calloc(1, sizeof(struct roffnode)); |
|
p->tok = tok; |
|
if (name) |
|
p->name = mandoc_strdup(name); |
|
p->parent = r->last; |
|
p->line = line; |
|
p->col = col; |
|
p->rule = p->parent ? p->parent->rule : ROFFRULE_DENY; |
|
|
|
r->last = p; |
} |
} |
|
|
|
|
struct rofftree * |
static void |
roff_alloc(const struct roffcb *cb, void *args) |
roff_free1(struct roff *r) |
{ |
{ |
struct rofftree *tree; |
struct tbl_node *t; |
|
struct eqn_node *e; |
|
|
assert(args); |
while (NULL != (t = r->first_tbl)) { |
assert(cb); |
r->first_tbl = t->next; |
|
tbl_free(t); |
|
} |
|
|
if (NULL == (tree = calloc(1, sizeof(struct rofftree)))) |
r->first_tbl = r->last_tbl = r->tbl = NULL; |
err(1, "calloc"); |
|
|
|
tree->state = ROFF_PRELUDE; |
while (NULL != (e = r->first_eqn)) { |
tree->arg = args; |
r->first_eqn = e->next; |
|
eqn_free(e); |
|
} |
|
|
(void)memcpy(&tree->cb, cb, sizeof(struct roffcb)); |
r->first_eqn = r->last_eqn = r->eqn = NULL; |
|
|
return(tree); |
while (r->last) |
|
roffnode_pop(r); |
|
|
|
roff_freestr(r); |
} |
} |
|
|
|
|
int |
void |
roff_engine(struct rofftree *tree, char *buf) |
roff_reset(struct roff *r) |
{ |
{ |
|
|
tree->cur = buf; |
roff_free1(r); |
assert(buf); |
|
|
|
if (0 == *buf) { |
|
roff_err(tree, buf, "blank line"); |
|
return(0); |
|
} else if ('.' != *buf) |
|
return(textparse(tree, buf)); |
|
|
|
return(roffparse(tree, buf)); |
|
} |
} |
|
|
|
|
static int |
void |
textparse(const struct rofftree *tree, char *buf) |
roff_free(struct roff *r) |
{ |
{ |
|
|
if ( ! (ROFF_BODY & tree->state)) { |
roff_free1(r); |
roff_err(tree, buf, "data not in body"); |
free(r); |
return(0); |
|
} |
|
return((*tree->cb.roffdata)(tree->arg, 1, buf)); |
|
} |
} |
|
|
|
|
static int |
struct roff * |
roffargs(const struct rofftree *tree, |
roff_alloc(struct regset *regs, struct mparse *parse) |
int tok, char *buf, char **argv) |
|
{ |
{ |
int i; |
struct roff *r; |
char *p; |
|
|
|
assert(tok >= 0 && tok < ROFF_MAX); |
r = mandoc_calloc(1, sizeof(struct roff)); |
assert('.' == *buf); |
r->regs = regs; |
|
r->parse = parse; |
p = buf; |
r->rstackpos = -1; |
|
|
/* LINTED */ |
|
for (i = 0; *buf && i < ROFF_MAXARG; i++) { |
|
if ('\"' == *buf) { |
|
argv[i] = ++buf; |
|
while (*buf && '\"' != *buf) |
|
buf++; |
|
if (0 == *buf) { |
|
roff_err(tree, argv[i], "unclosed " |
|
"quote in argument " |
|
"list for `%s'", |
|
toknames[tok]); |
|
return(0); |
|
} |
|
} else { |
|
argv[i] = buf++; |
|
while (*buf && ! isspace(*buf)) |
|
buf++; |
|
if (0 == *buf) |
|
continue; |
|
} |
|
*buf++ = 0; |
|
while (*buf && isspace(*buf)) |
|
buf++; |
|
} |
|
|
|
assert(i > 0); |
roff_hash_init(); |
if (ROFF_MAXARG == i && *buf) { |
return(r); |
roff_err(tree, p, "too many arguments for `%s'", toknames |
|
[tok]); |
|
return(0); |
|
} |
|
|
|
argv[i] = NULL; |
|
return(1); |
|
} |
} |
|
|
|
|
|
/* |
|
* Pre-filter each and every line for reserved words (one beginning with |
|
* `\*', e.g., `\*(ab'). These must be handled before the actual line |
|
* is processed. |
|
*/ |
static int |
static int |
roffscan(int tok, const int *tokv) |
roff_res(struct roff *r, char **bufp, size_t *szp, int pos) |
{ |
{ |
|
const char *stesc; /* start of an escape sequence ('\\') */ |
|
const char *stnam; /* start of the name, after "[(*" */ |
|
const char *cp; /* end of the name, e.g. before ']' */ |
|
const char *res; /* the string to be substituted */ |
|
int i, maxl; |
|
size_t nsz; |
|
char *n; |
|
|
if (NULL == tokv) |
/* Search for a leading backslash and save a pointer to it. */ |
return(1); |
|
|
|
for ( ; ROFF_MAX != *tokv; tokv++) |
cp = *bufp + pos; |
if (tok == *tokv) |
while (NULL != (cp = strchr(cp, '\\'))) { |
return(1); |
stesc = cp++; |
|
|
return(0); |
/* |
} |
* The second character must be an asterisk. |
|
* If it isn't, skip it anyway: It is escaped, |
|
* so it can't start another escape sequence. |
|
*/ |
|
|
|
if ('\0' == *cp) |
|
return(1); |
|
if ('*' != *cp++) |
|
continue; |
|
|
static int |
/* |
roffparse(struct rofftree *tree, char *buf) |
* The third character decides the length |
{ |
* of the name of the string. |
int tok, t; |
* Save a pointer to the name. |
struct roffnode *n; |
*/ |
char *argv[ROFF_MAXARG]; |
|
char **argvp; |
|
|
|
if (0 != *buf && 0 != *(buf + 1) && 0 != *(buf + 2)) |
switch (*cp) { |
if (0 == strncmp(buf, ".\\\"", 3)) |
case ('\0'): |
return(1); |
return(1); |
|
case ('('): |
|
cp++; |
|
maxl = 2; |
|
break; |
|
case ('['): |
|
cp++; |
|
maxl = 0; |
|
break; |
|
default: |
|
maxl = 1; |
|
break; |
|
} |
|
stnam = cp; |
|
|
if (ROFF_MAX == (tok = rofffindtok(buf + 1))) { |
/* Advance to the end of the name. */ |
roff_err(tree, buf + 1, "bogus line macro"); |
|
return(0); |
|
} else if (NULL == tokens[tok].cb) { |
|
roff_err(tree, buf + 1, "unsupported macro `%s'", |
|
toknames[tok]); |
|
return(0); |
|
} |
|
|
|
assert(ROFF___ != tok); |
for (i = 0; 0 == maxl || i < maxl; i++, cp++) { |
if ( ! roffargs(tree, tok, buf, argv)) |
if ('\0' == *cp) |
return(0); |
return(1); /* Error. */ |
|
if (0 == maxl && ']' == *cp) |
|
break; |
|
} |
|
|
argvp = (char **)argv; |
/* |
|
* Retrieve the replacement string; if it is |
|
* undefined, resume searching for escapes. |
|
*/ |
|
|
/* |
res = roff_getstrn(r, stnam, (size_t)i); |
* Prelude macros break some assumptions, so branch now. |
|
*/ |
|
|
|
if (ROFF_PRELUDE & tree->state) { |
|
assert(NULL == tree->last); |
|
return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER)); |
|
} |
|
|
|
assert(ROFF_BODY & tree->state); |
if (NULL == res) { |
|
cp -= maxl ? 1 : 0; |
|
continue; |
|
} |
|
|
/* |
/* Replace the escape sequence by the string. */ |
* First check that our possible parents and parent's possible |
|
* children are satisfied. |
|
*/ |
|
|
|
if (tree->last && ! roffscan |
nsz = *szp + strlen(res) + 1; |
(tree->last->tok, tokens[tok].parents)) { |
n = mandoc_malloc(nsz); |
roff_err(tree, *argvp, "`%s' has invalid parent `%s'", |
|
toknames[tok], |
|
toknames[tree->last->tok]); |
|
return(0); |
|
} |
|
|
|
if (tree->last && ! roffscan |
strlcpy(n, *bufp, (size_t)(stesc - *bufp + 1)); |
(tok, tokens[tree->last->tok].children)) { |
strlcat(n, res, nsz); |
roff_err(tree, *argvp, "`%s' is invalid child of `%s'", |
strlcat(n, cp + (maxl ? 0 : 1), nsz); |
toknames[tok], |
|
toknames[tree->last->tok]); |
free(*bufp); |
|
|
|
*bufp = n; |
|
*szp = nsz; |
return(0); |
return(0); |
} |
} |
|
|
/* |
return(1); |
* Branch if we're not a layout token. |
} |
*/ |
|
|
|
if (ROFF_LAYOUT != tokens[tok].type) |
|
return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER)); |
|
if (0 == tokens[tok].ctx) |
|
return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER)); |
|
|
|
|
enum rofferr |
|
roff_parseln(struct roff *r, int ln, char **bufp, |
|
size_t *szp, int pos, int *offs) |
|
{ |
|
enum rofft t; |
|
enum rofferr e; |
|
int ppos, ctl; |
|
|
/* |
/* |
* First consider implicit-end tags, like as follows: |
* Run the reserved-word filter only if we have some reserved |
* .Sh SECTION 1 |
* words to fill in. |
* .Sh SECTION 2 |
|
* In this, we want to close the scope of the NAME section. If |
|
* there's an intermediary implicit-end tag, such as |
|
* .Sh SECTION 1 |
|
* .Ss Subsection 1 |
|
* .Sh SECTION 2 |
|
* then it must be closed as well. |
|
*/ |
*/ |
|
|
if (tok == tokens[tok].ctx) { |
if (r->first_string && ! roff_res(r, bufp, szp, pos)) |
/* |
return(ROFF_REPARSE); |
* First search up to the point where we must close. |
|
* If one doesn't exist, then we can open a new scope. |
|
*/ |
|
|
|
for (n = tree->last; n; n = n->parent) { |
ppos = pos; |
assert(0 == tokens[n->tok].ctx || |
ctl = mandoc_getcontrol(*bufp, &pos); |
n->tok == tokens[n->tok].ctx); |
|
if (n->tok == tok) |
|
break; |
|
if (ROFF_SHALLOW & tokens[tok].flags) { |
|
n = NULL; |
|
break; |
|
} |
|
if (tokens[n->tok].ctx == n->tok) |
|
continue; |
|
roff_err(tree, *argv, "`%s' breaks `%s' scope", |
|
toknames[tok], toknames[n->tok]); |
|
return(0); |
|
} |
|
|
|
/* |
/* |
* Create a new scope, as no previous one exists to |
* First, if a scope is open and we're not a macro, pass the |
* close out. |
* text through the macro's filter. If a scope isn't open and |
*/ |
* we're not a macro, just let it through. |
|
* Finally, if there's an equation scope open, divert it into it |
|
* no matter our state. |
|
*/ |
|
|
if (NULL == n) |
if (r->last && ! ctl) { |
return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER)); |
t = r->last->tok; |
|
assert(roffs[t].text); |
|
e = (*roffs[t].text) |
|
(r, t, bufp, szp, ln, pos, pos, offs); |
|
assert(ROFF_IGN == e || ROFF_CONT == e); |
|
if (ROFF_CONT != e) |
|
return(e); |
|
if (r->eqn) |
|
return(eqn_read(&r->eqn, ln, *bufp, pos)); |
|
if (r->tbl) |
|
return(tbl_read(r->tbl, ln, *bufp, pos)); |
|
return(ROFF_CONT); |
|
} else if ( ! ctl) { |
|
if (r->eqn) |
|
return(eqn_read(&r->eqn, ln, *bufp, pos)); |
|
if (r->tbl) |
|
return(tbl_read(r->tbl, ln, *bufp, pos)); |
|
return(ROFF_CONT); |
|
} else if (r->eqn) |
|
return(eqn_read(&r->eqn, ln, *bufp, ppos)); |
|
|
/* |
/* |
* Close out all intermediary scoped blocks, then hang |
* If a scope is open, go to the child handler for that macro, |
* the current scope from our predecessor's parent. |
* as it may want to preprocess before doing anything with it. |
*/ |
* Don't do so if an equation is open. |
|
*/ |
|
|
do { |
if (r->last) { |
t = tree->last->tok; |
t = r->last->tok; |
if ( ! (*tokens[t].cb)(t, tree, NULL, ROFF_EXIT)) |
assert(roffs[t].sub); |
return(0); |
return((*roffs[t].sub) |
} while (t != tok); |
(r, t, bufp, szp, |
|
ln, ppos, pos, offs)); |
return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER)); |
|
} |
} |
|
|
/* |
/* |
* Now consider explicit-end tags, where we want to close back |
* Lastly, as we've no scope open, try to look up and execute |
* to a specific tag. Example: |
* the new macro. If no macro is found, simply return and let |
* .Bl |
* the compilers handle it. |
* .It Item. |
|
* .El |
|
* In this, the `El' tag closes out the scope of `Bl'. |
|
*/ |
*/ |
|
|
assert(tok != tokens[tok].ctx && 0 != tokens[tok].ctx); |
if (ROFF_MAX == (t = roff_parse(r, *bufp, &pos))) |
|
return(ROFF_CONT); |
|
|
/* LINTED */ |
assert(roffs[t].proc); |
for (n = tree->last; n; n = n->parent) |
return((*roffs[t].proc) |
if (n->tok != tokens[tok].ctx) { |
(r, t, bufp, szp, |
if (n->tok == tokens[n->tok].ctx) |
ln, ppos, pos, offs)); |
continue; |
|
roff_err(tree, *argv, "`%s' breaks `%s' scope", |
|
toknames[tok], toknames[n->tok]); |
|
return(0); |
|
} else |
|
break; |
|
|
|
|
|
if (NULL == n) { |
|
roff_err(tree, *argv, "`%s' has no starting tag `%s'", |
|
toknames[tok], |
|
toknames[tokens[tok].ctx]); |
|
return(0); |
|
} |
|
|
|
/* LINTED */ |
|
do { |
|
t = tree->last->tok; |
|
if ( ! (*tokens[t].cb)(t, tree, NULL, ROFF_EXIT)) |
|
return(0); |
|
} while (t != tokens[tok].ctx); |
|
|
|
return(1); |
|
} |
} |
|
|
|
|
static int |
void |
rofffindarg(const char *name) |
roff_endparse(struct roff *r) |
{ |
{ |
size_t i; |
|
|
|
/* FIXME: use a table, this is slow but ok for now. */ |
if (r->last) |
|
mandoc_msg(MANDOCERR_SCOPEEXIT, r->parse, |
|
r->last->line, r->last->col, NULL); |
|
|
/* LINTED */ |
if (r->eqn) { |
for (i = 0; i < ROFF_ARGMAX; i++) |
mandoc_msg(MANDOCERR_SCOPEEXIT, r->parse, |
/* LINTED */ |
r->eqn->eqn.line, r->eqn->eqn.pos, NULL); |
if (0 == strcmp(name, tokargnames[i])) |
eqn_end(r->eqn); |
return((int)i); |
r->eqn = NULL; |
|
} |
return(ROFF_ARGMAX); |
|
|
if (r->tbl) { |
|
mandoc_msg(MANDOCERR_SCOPEEXIT, r->parse, |
|
r->tbl->line, r->tbl->pos, NULL); |
|
tbl_end(r->tbl); |
|
r->tbl = NULL; |
|
} |
} |
} |
|
|
|
/* |
static int |
* Parse a roff node's type from the input buffer. This must be in the |
rofffindtok(const char *buf) |
* form of ".foo xxx" in the usual way. |
|
*/ |
|
static enum rofft |
|
roff_parse(struct roff *r, const char *buf, int *pos) |
{ |
{ |
char token[4]; |
const char *mac; |
int i; |
size_t maclen; |
|
enum rofft t; |
|
|
for (i = 0; *buf && ! isspace(*buf) && i < 3; i++, buf++) |
if ('\0' == buf[*pos] || '"' == buf[*pos]) |
token[i] = *buf; |
|
|
|
if (i == 3) |
|
return(ROFF_MAX); |
return(ROFF_MAX); |
|
|
token[i] = 0; |
mac = buf + *pos; |
|
maclen = strcspn(mac, " \\\t\0"); |
|
|
/* FIXME: use a table, this is slow but ok for now. */ |
t = (r->current_string = roff_getstrn(r, mac, maclen)) |
|
? ROFF_USERDEF : roff_hash_find(mac, maclen); |
|
|
/* LINTED */ |
*pos += (int)maclen; |
for (i = 0; i < ROFF_MAX; i++) |
|
/* LINTED */ |
|
if (0 == strcmp(toknames[i], token)) |
|
return((int)i); |
|
|
|
return(ROFF_MAX); |
while (buf[*pos] && ' ' == buf[*pos]) |
|
(*pos)++; |
|
|
|
return(t); |
} |
} |
|
|
|
/* ARGSUSED */ |
static int |
static enum rofferr |
roffispunct(const char *p) |
roff_cblock(ROFF_ARGS) |
{ |
{ |
|
|
if (0 == *p) |
/* |
return(0); |
* A block-close `..' should only be invoked as a child of an |
if (0 != *(p + 1)) |
* ignore macro, otherwise raise a warning and just ignore it. |
return(0); |
*/ |
|
|
switch (*p) { |
if (NULL == r->last) { |
case('{'): |
mandoc_msg(MANDOCERR_NOSCOPE, r->parse, ln, ppos, NULL); |
|
return(ROFF_IGN); |
|
} |
|
|
|
switch (r->last->tok) { |
|
case (ROFF_am): |
/* FALLTHROUGH */ |
/* FALLTHROUGH */ |
case('.'): |
case (ROFF_ami): |
/* FALLTHROUGH */ |
/* FALLTHROUGH */ |
case(','): |
case (ROFF_am1): |
/* FALLTHROUGH */ |
/* FALLTHROUGH */ |
case(';'): |
case (ROFF_de): |
|
/* ROFF_de1 is remapped to ROFF_de in roff_block(). */ |
/* FALLTHROUGH */ |
/* FALLTHROUGH */ |
case(':'): |
case (ROFF_dei): |
/* FALLTHROUGH */ |
/* FALLTHROUGH */ |
case('?'): |
case (ROFF_ig): |
/* FALLTHROUGH */ |
|
case('!'): |
|
/* FALLTHROUGH */ |
|
case('('): |
|
/* FALLTHROUGH */ |
|
case(')'): |
|
/* FALLTHROUGH */ |
|
case('['): |
|
/* FALLTHROUGH */ |
|
case(']'): |
|
/* FALLTHROUGH */ |
|
case('}'): |
|
return(1); |
|
default: |
|
break; |
break; |
|
default: |
|
mandoc_msg(MANDOCERR_NOSCOPE, r->parse, ln, ppos, NULL); |
|
return(ROFF_IGN); |
} |
} |
|
|
return(0); |
if ((*bufp)[pos]) |
|
mandoc_msg(MANDOCERR_ARGSLOST, r->parse, ln, pos, NULL); |
|
|
|
roffnode_pop(r); |
|
roffnode_cleanscope(r); |
|
return(ROFF_IGN); |
|
|
} |
} |
|
|
|
|
static int |
static void |
rofffindcallable(const char *name) |
roffnode_cleanscope(struct roff *r) |
{ |
{ |
int c; |
|
|
|
if (ROFF_MAX == (c = rofffindtok(name))) |
while (r->last) { |
return(ROFF_MAX); |
if (--r->last->endspan < 0) |
assert(c >= 0 && c < ROFF_MAX); |
break; |
return(ROFF_CALLABLE & tokens[c].flags ? c : ROFF_MAX); |
roffnode_pop(r); |
|
} |
} |
} |
|
|
|
|
static struct roffnode * |
/* ARGSUSED */ |
roffnode_new(int tokid, struct rofftree *tree) |
static enum rofferr |
|
roff_ccond(ROFF_ARGS) |
{ |
{ |
struct roffnode *p; |
|
|
|
if (NULL == (p = malloc(sizeof(struct roffnode)))) |
|
err(1, "malloc"); |
|
|
|
p->tok = tokid; |
if (NULL == r->last) { |
p->parent = tree->last; |
mandoc_msg(MANDOCERR_NOSCOPE, r->parse, ln, ppos, NULL); |
tree->last = p; |
return(ROFF_IGN); |
|
} |
|
|
return(p); |
switch (r->last->tok) { |
|
case (ROFF_el): |
|
/* FALLTHROUGH */ |
|
case (ROFF_ie): |
|
/* FALLTHROUGH */ |
|
case (ROFF_if): |
|
break; |
|
default: |
|
mandoc_msg(MANDOCERR_NOSCOPE, r->parse, ln, ppos, NULL); |
|
return(ROFF_IGN); |
|
} |
|
|
|
if (r->last->endspan > -1) { |
|
mandoc_msg(MANDOCERR_NOSCOPE, r->parse, ln, ppos, NULL); |
|
return(ROFF_IGN); |
|
} |
|
|
|
if ((*bufp)[pos]) |
|
mandoc_msg(MANDOCERR_ARGSLOST, r->parse, ln, pos, NULL); |
|
|
|
roffnode_pop(r); |
|
roffnode_cleanscope(r); |
|
return(ROFF_IGN); |
} |
} |
|
|
|
|
static int |
/* ARGSUSED */ |
roffargok(int tokid, int argid) |
static enum rofferr |
|
roff_block(ROFF_ARGS) |
{ |
{ |
const int *c; |
int sv; |
|
size_t sz; |
|
char *name; |
|
|
if (NULL == (c = tokens[tokid].args)) |
name = NULL; |
return(0); |
|
|
|
for ( ; ROFF_ARGMAX != *c; c++) |
if (ROFF_ig != tok) { |
if (argid == *c) |
if ('\0' == (*bufp)[pos]) { |
return(1); |
mandoc_msg(MANDOCERR_NOARGS, r->parse, ln, ppos, NULL); |
|
return(ROFF_IGN); |
|
} |
|
|
return(0); |
/* |
} |
* Re-write `de1', since we don't really care about |
|
* groff's strange compatibility mode, into `de'. |
|
*/ |
|
|
|
if (ROFF_de1 == tok) |
|
tok = ROFF_de; |
|
if (ROFF_de == tok) |
|
name = *bufp + pos; |
|
else |
|
mandoc_msg(MANDOCERR_REQUEST, r->parse, ln, ppos, |
|
roffs[tok].name); |
|
|
static void |
while ((*bufp)[pos] && ! isspace((unsigned char)(*bufp)[pos])) |
roffnode_free(struct rofftree *tree) |
pos++; |
{ |
|
struct roffnode *p; |
|
|
|
assert(tree->last); |
while (isspace((unsigned char)(*bufp)[pos])) |
|
(*bufp)[pos++] = '\0'; |
|
} |
|
|
p = tree->last; |
roffnode_push(r, tok, name, ln, ppos); |
tree->last = tree->last->parent; |
|
free(p); |
|
} |
|
|
|
|
/* |
|
* At the beginning of a `de' macro, clear the existing string |
|
* with the same name, if there is one. New content will be |
|
* added from roff_block_text() in multiline mode. |
|
*/ |
|
|
static int |
if (ROFF_de == tok) |
roffcall(struct rofftree *tree, int tok, char **argv) |
roff_setstr(r, name, "", 0); |
{ |
|
|
|
if (NULL == tokens[tok].cb) { |
if ('\0' == (*bufp)[pos]) |
roff_err(tree, *argv, "unsupported macro `%s'", |
return(ROFF_IGN); |
toknames[tok]); |
|
return(0); |
|
} |
|
if ( ! (*tokens[tok].cb)(tok, tree, argv, ROFF_ENTER)) |
|
return(0); |
|
return(1); |
|
} |
|
|
|
|
/* If present, process the custom end-of-line marker. */ |
|
|
static int |
sv = pos; |
roffnextopt(const struct rofftree *tree, int tok, |
while ((*bufp)[pos] && ! isspace((unsigned char)(*bufp)[pos])) |
char ***in, char **val) |
pos++; |
{ |
|
char *arg, **argv; |
|
int v; |
|
|
|
*val = NULL; |
/* |
argv = *in; |
* Note: groff does NOT like escape characters in the input. |
assert(argv); |
* Instead of detecting this, we're just going to let it fly and |
|
* to hell with it. |
|
*/ |
|
|
if (NULL == (arg = *argv)) |
assert(pos > sv); |
return(-1); |
sz = (size_t)(pos - sv); |
if ('-' != *arg) |
|
return(-1); |
|
|
|
if (ROFF_ARGMAX == (v = rofffindarg(arg + 1))) { |
if (1 == sz && '.' == (*bufp)[sv]) |
roff_warn(tree, arg, "argument-like parameter `%s' to " |
return(ROFF_IGN); |
"`%s'", arg, toknames[tok]); |
|
return(-1); |
|
} |
|
|
|
if ( ! roffargok(tok, v)) { |
|
roff_warn(tree, arg, "invalid argument parameter `%s' to " |
|
"`%s'", tokargnames[v], toknames[tok]); |
|
return(-1); |
|
} |
|
|
|
if ( ! (ROFF_VALUE & tokenargs[v])) |
|
return(v); |
|
|
|
*in = ++argv; |
r->last->end = mandoc_malloc(sz + 1); |
|
|
if (NULL == *argv) { |
memcpy(r->last->end, *bufp + sv, sz); |
roff_err(tree, arg, "empty value of `%s' for `%s'", |
r->last->end[(int)sz] = '\0'; |
tokargnames[v], toknames[tok]); |
|
return(ROFF_ARGMAX); |
|
} |
|
|
|
return(v); |
if ((*bufp)[pos]) |
|
mandoc_msg(MANDOCERR_ARGSLOST, r->parse, ln, pos, NULL); |
|
|
|
return(ROFF_IGN); |
} |
} |
|
|
|
|
static int |
/* ARGSUSED */ |
roffpurgepunct(struct rofftree *tree, char **argv) |
static enum rofferr |
|
roff_block_sub(ROFF_ARGS) |
{ |
{ |
int i; |
enum rofft t; |
|
int i, j; |
|
|
i = 0; |
/* |
while (argv[i]) |
* First check whether a custom macro exists at this level. If |
i++; |
* it does, then check against it. This is some of groff's |
assert(i > 0); |
* stranger behaviours. If we encountered a custom end-scope |
if ( ! roffispunct(argv[--i])) |
* tag and that tag also happens to be a "real" macro, then we |
return(1); |
* need to try interpreting it again as a real macro. If it's |
while (i >= 0 && roffispunct(argv[i])) |
* not, then return ignore. Else continue. |
i--; |
*/ |
i++; |
|
|
|
/* LINTED */ |
if (r->last->end) { |
while (argv[i]) |
for (i = pos, j = 0; r->last->end[j]; j++, i++) |
if ( ! (*tree->cb.roffdata)(tree->arg, 0, argv[i++])) |
if ((*bufp)[i] != r->last->end[j]) |
return(0); |
break; |
return(1); |
|
} |
|
|
|
|
if ('\0' == r->last->end[j] && |
|
('\0' == (*bufp)[i] || |
|
' ' == (*bufp)[i] || |
|
'\t' == (*bufp)[i])) { |
|
roffnode_pop(r); |
|
roffnode_cleanscope(r); |
|
|
static int |
while (' ' == (*bufp)[i] || '\t' == (*bufp)[i]) |
roffparseopts(struct rofftree *tree, int tok, |
i++; |
char ***args, int *argc, char **argv) |
|
{ |
|
int i, c; |
|
char *v; |
|
|
|
i = 0; |
pos = i; |
|
if (ROFF_MAX != roff_parse(r, *bufp, &pos)) |
|
return(ROFF_RERUN); |
|
return(ROFF_IGN); |
|
} |
|
} |
|
|
while (-1 != (c = roffnextopt(tree, tok, args, &v))) { |
/* |
if (ROFF_ARGMAX == c) |
* If we have no custom end-query or lookup failed, then try |
return(0); |
* pulling it out of the hashtable. |
|
*/ |
|
|
argc[i] = c; |
t = roff_parse(r, *bufp, &pos); |
argv[i] = v; |
|
i++; |
/* |
*args = *args + 1; |
* Macros other than block-end are only significant |
|
* in `de' blocks; elsewhere, simply throw them away. |
|
*/ |
|
if (ROFF_cblock != t) { |
|
if (ROFF_de == tok) |
|
roff_setstr(r, r->last->name, *bufp + ppos, 1); |
|
return(ROFF_IGN); |
} |
} |
|
|
argc[i] = ROFF_ARGMAX; |
assert(roffs[t].proc); |
argv[i] = NULL; |
return((*roffs[t].proc)(r, t, bufp, szp, |
return(1); |
ln, ppos, pos, offs)); |
} |
} |
|
|
|
|
/* ARGSUSED */ |
/* ARGSUSED */ |
static int |
static enum rofferr |
roff_Dd(ROFFCALL_ARGS) |
roff_block_text(ROFF_ARGS) |
{ |
{ |
time_t t; |
|
char *p, buf[32]; |
|
|
|
if (ROFF_BODY & tree->state) { |
if (ROFF_de == tok) |
assert( ! (ROFF_PRELUDE & tree->state)); |
roff_setstr(r, r->last->name, *bufp + pos, 1); |
assert(ROFF_PRELUDE_Dd & tree->state); |
|
return(roff_text(tok, tree, argv, type)); |
|
} |
|
|
|
assert(ROFF_PRELUDE & tree->state); |
return(ROFF_IGN); |
assert( ! (ROFF_BODY & tree->state)); |
} |
|
|
if (ROFF_PRELUDE_Dd & tree->state) { |
|
roff_err(tree, *argv, "repeated `Dd' in prelude"); |
|
return(0); |
|
} else if (ROFF_PRELUDE_Dt & tree->state) { |
|
roff_err(tree, *argv, "out-of-order `Dd' in prelude"); |
|
return(0); |
|
} |
|
|
|
assert(NULL == tree->last); |
/* ARGSUSED */ |
|
static enum rofferr |
|
roff_cond_sub(ROFF_ARGS) |
|
{ |
|
enum rofft t; |
|
enum roffrule rr; |
|
char *ep; |
|
|
argv++; |
rr = r->last->rule; |
|
roffnode_cleanscope(r); |
|
|
if (0 == strcmp(*argv, "$Mdocdate$")) { |
/* |
t = time(NULL); |
* If the macro is unknown, first check if it contains a closing |
if (NULL == localtime_r(&t, &tree->tm)) |
* delimiter `\}'. If it does, close out our scope and return |
err(1, "localtime_r"); |
* the currently-scoped rule (ignore or continue). Else, drop |
tree->state |= ROFF_PRELUDE_Dd; |
* into the currently-scoped rule. |
return(1); |
*/ |
} |
|
|
|
/* Build this from Mdocdate or raw date. */ |
if (ROFF_MAX == (t = roff_parse(r, *bufp, &pos))) { |
|
ep = &(*bufp)[pos]; |
buf[0] = 0; |
for ( ; NULL != (ep = strchr(ep, '\\')); ep++) { |
p = *argv; |
ep++; |
|
if ('}' != *ep) |
if (0 != strcmp(*argv, "$Mdocdate:")) { |
|
while (*argv) { |
|
if (strlcat(buf, *argv++, sizeof(buf)) |
|
< sizeof(buf)) |
|
continue; |
continue; |
roff_err(tree, p, "bad `Dd' date"); |
*ep = '&'; |
return(0); |
roff_ccond(r, ROFF_ccond, bufp, szp, |
|
ln, pos, pos + 2, offs); |
|
break; |
} |
} |
if (strptime(buf, "%b%d,%Y", &tree->tm)) { |
return(ROFFRULE_DENY == rr ? ROFF_IGN : ROFF_CONT); |
tree->state |= ROFF_PRELUDE_Dd; |
|
return(1); |
|
} |
|
roff_err(tree, *argv, "bad `Dd' date"); |
|
return(0); |
|
} |
} |
|
|
argv++; |
/* |
while (*argv && **argv != '$') { |
* A denied conditional must evaluate its children if and only |
if (strlcat(buf, *argv++, sizeof(buf)) |
* if they're either structurally required (such as loops and |
>= sizeof(buf)) { |
* conditionals) or a closing macro. |
roff_err(tree, p, "bad `Dd' Mdocdate"); |
*/ |
return(0); |
|
} |
|
if (strlcat(buf, " ", sizeof(buf)) |
|
>= sizeof(buf)) { |
|
roff_err(tree, p, "bad `Dd' Mdocdate"); |
|
return(0); |
|
} |
|
} |
|
if (NULL == *argv) { |
|
roff_err(tree, p, "bad `Dd' Mdocdate"); |
|
return(0); |
|
} |
|
|
|
if (NULL == strptime(buf, "%b %d %Y", &tree->tm)) { |
if (ROFFRULE_DENY == rr) |
roff_err(tree, *argv, "bad `Dd' Mdocdate"); |
if ( ! (ROFFMAC_STRUCT & roffs[t].flags)) |
return(0); |
if (ROFF_ccond != t) |
} |
return(ROFF_IGN); |
|
|
tree->state |= ROFF_PRELUDE_Dd; |
assert(roffs[t].proc); |
return(1); |
return((*roffs[t].proc)(r, t, bufp, szp, |
|
ln, ppos, pos, offs)); |
} |
} |
|
|
|
|
/* ARGSUSED */ |
/* ARGSUSED */ |
static int |
static enum rofferr |
roff_Dt(ROFFCALL_ARGS) |
roff_cond_text(ROFF_ARGS) |
{ |
{ |
|
char *ep; |
|
enum roffrule rr; |
|
|
if (ROFF_BODY & tree->state) { |
rr = r->last->rule; |
assert( ! (ROFF_PRELUDE & tree->state)); |
roffnode_cleanscope(r); |
assert(ROFF_PRELUDE_Dt & tree->state); |
|
return(roff_text(tok, tree, argv, type)); |
|
} |
|
|
|
assert(ROFF_PRELUDE & tree->state); |
ep = &(*bufp)[pos]; |
assert( ! (ROFF_BODY & tree->state)); |
for ( ; NULL != (ep = strchr(ep, '\\')); ep++) { |
|
ep++; |
if ( ! (ROFF_PRELUDE_Dd & tree->state)) { |
if ('}' != *ep) |
roff_err(tree, *argv, "out-of-order `Dt' in prelude"); |
continue; |
return(0); |
*ep = '&'; |
} else if (ROFF_PRELUDE_Dt & tree->state) { |
roff_ccond(r, ROFF_ccond, bufp, szp, |
roff_err(tree, *argv, "repeated `Dt' in prelude"); |
ln, pos, pos + 2, offs); |
return(0); |
|
} |
} |
|
return(ROFFRULE_DENY == rr ? ROFF_IGN : ROFF_CONT); |
|
} |
|
|
argv++; |
static enum roffrule |
if (NULL == *argv) { |
roff_evalcond(const char *v, int *pos) |
roff_err(tree, *argv, "`Dt' needs document title"); |
{ |
return(0); |
|
} else if (strlcpy(tree->title, *argv, sizeof(tree->title)) |
|
>= sizeof(tree->title)) { |
|
roff_err(tree, *argv, "`Dt' document title too long"); |
|
return(0); |
|
} |
|
|
|
argv++; |
switch (v[*pos]) { |
if (NULL == *argv) { |
case ('n'): |
roff_err(tree, *argv, "`Dt' needs section"); |
(*pos)++; |
return(0); |
return(ROFFRULE_ALLOW); |
} else if (strlcpy(tree->section, *argv, sizeof(tree->section)) |
case ('e'): |
>= sizeof(tree->section)) { |
/* FALLTHROUGH */ |
roff_err(tree, *argv, "`Dt' section too long"); |
case ('o'): |
return(0); |
/* FALLTHROUGH */ |
|
case ('t'): |
|
(*pos)++; |
|
return(ROFFRULE_DENY); |
|
default: |
|
break; |
} |
} |
|
|
argv++; |
while (v[*pos] && ' ' != v[*pos]) |
if (NULL == *argv) { |
(*pos)++; |
tree->volume[0] = 0; |
return(ROFFRULE_DENY); |
} else if (strlcpy(tree->volume, *argv, sizeof(tree->volume)) |
} |
>= sizeof(tree->volume)) { |
|
roff_err(tree, *argv, "`Dt' volume too long"); |
|
return(0); |
|
} |
|
|
|
assert(NULL == tree->last); |
/* ARGSUSED */ |
tree->state |= ROFF_PRELUDE_Dt; |
static enum rofferr |
|
roff_line_ignore(ROFF_ARGS) |
|
{ |
|
|
return(1); |
if (ROFF_it == tok) |
|
mandoc_msg(MANDOCERR_REQUEST, r->parse, ln, ppos, "it"); |
|
|
|
return(ROFF_IGN); |
} |
} |
|
|
|
|
/* ARGSUSED */ |
/* ARGSUSED */ |
static int |
static enum rofferr |
roff_Sm(ROFFCALL_ARGS) |
roff_cond(ROFF_ARGS) |
{ |
{ |
int argcp[1]; |
int sv; |
char *argvp[1], *morep[1], *p; |
enum roffrule rule; |
|
|
p = *argv++; |
/* |
|
* An `.el' has no conditional body: it will consume the value |
|
* of the current rstack entry set in prior `ie' calls or |
|
* defaults to DENY. |
|
* |
|
* If we're not an `el', however, then evaluate the conditional. |
|
*/ |
|
|
argcp[0] = ROFF_ARGMAX; |
rule = ROFF_el == tok ? |
argvp[0] = NULL; |
(r->rstackpos < 0 ? |
if (NULL == (morep[0] = *argv++)) { |
ROFFRULE_DENY : r->rstack[r->rstackpos--]) : |
roff_err(tree, p, "`Sm' expects an argument"); |
roff_evalcond(*bufp, &pos); |
return(0); |
|
} else if (0 != strcmp(morep[0], "on") && |
|
0 != strcmp(morep[0], "off")) { |
|
roff_err(tree, p, "`Sm' has invalid argument"); |
|
return(0); |
|
} |
|
|
|
if (*argv) |
sv = pos; |
roff_warn(tree, *argv, "`Sm' shouldn't have arguments"); |
while (' ' == (*bufp)[pos]) |
|
pos++; |
|
|
if ( ! (*tree->cb.roffspecial)(tree->arg, |
/* |
tok, argcp, argvp, morep)) |
* Roff is weird. If we have just white-space after the |
return(0); |
* conditional, it's considered the BODY and we exit without |
|
* really doing anything. Warn about this. It's probably |
|
* wrong. |
|
*/ |
|
|
while (*argv) { |
if ('\0' == (*bufp)[pos] && sv != pos) { |
if ((*tree->cb.roffdata)(tree->arg, 1, *argv++)) |
mandoc_msg(MANDOCERR_NOARGS, r->parse, ln, ppos, NULL); |
continue; |
return(ROFF_IGN); |
return(0); |
|
} |
} |
|
|
return(1); |
roffnode_push(r, tok, NULL, ln, ppos); |
} |
|
|
|
|
r->last->rule = rule; |
|
|
/* ARGSUSED */ |
/* |
static int |
* An if-else will put the NEGATION of the current evaluated |
roff_Ns(ROFFCALL_ARGS) |
* conditional into the stack of rules. |
{ |
*/ |
int j, c, first; |
|
int argcp[1]; |
|
char *argvp[1], *morep[1]; |
|
|
|
first = (*argv++ == tree->cur); |
if (ROFF_ie == tok) { |
|
if (r->rstackpos == RSTACK_MAX - 1) { |
|
mandoc_msg(MANDOCERR_MEM, |
|
r->parse, ln, ppos, NULL); |
|
return(ROFF_ERR); |
|
} |
|
r->rstack[++r->rstackpos] = |
|
ROFFRULE_DENY == r->last->rule ? |
|
ROFFRULE_ALLOW : ROFFRULE_DENY; |
|
} |
|
|
argcp[0] = ROFF_ARGMAX; |
/* If the parent has false as its rule, then so do we. */ |
argvp[0] = morep[0] = NULL; |
|
|
|
if ( ! (*tree->cb.roffspecial)(tree->arg, |
if (r->last->parent && ROFFRULE_DENY == r->last->parent->rule) |
tok, argcp, argvp, morep)) |
r->last->rule = ROFFRULE_DENY; |
return(0); |
|
|
|
while (*argv) { |
/* |
if (ROFF_MAX != (c = rofffindcallable(*argv))) { |
* Determine scope. If we're invoked with "\{" trailing the |
if ( ! roffcall(tree, c, argv)) |
* conditional, then we're in a multiline scope. Else our scope |
return(0); |
* expires on the next line. |
break; |
*/ |
} |
|
|
|
if ( ! roffispunct(*argv)) { |
r->last->endspan = 1; |
if ((*tree->cb.roffdata)(tree->arg, 1, *argv++)) |
|
continue; |
|
return(0); |
|
} |
|
for (j = 0; argv[j]; j++) |
|
if ( ! roffispunct(argv[j])) |
|
break; |
|
|
|
if (argv[j]) { |
if ('\\' == (*bufp)[pos] && '{' == (*bufp)[pos + 1]) { |
if ((*tree->cb.roffdata)(tree->arg, 0, *argv++)) |
r->last->endspan = -1; |
continue; |
pos += 2; |
return(0); |
} |
} |
|
|
|
break; |
/* |
} |
* If there are no arguments on the line, the next-line scope is |
|
* assumed. |
|
*/ |
|
|
if ( ! first) |
if ('\0' == (*bufp)[pos]) |
return(1); |
return(ROFF_IGN); |
|
|
return(roffpurgepunct(tree, argv)); |
/* Otherwise re-run the roff parser after recalculating. */ |
|
|
|
*offs = pos; |
|
return(ROFF_RERUN); |
} |
} |
|
|
|
|
/* ARGSUSED */ |
/* ARGSUSED */ |
static int |
static enum rofferr |
roff_Os(ROFFCALL_ARGS) |
roff_ds(ROFF_ARGS) |
{ |
{ |
char *p; |
char *name, *string; |
|
|
if (ROFF_BODY & tree->state) { |
/* |
assert( ! (ROFF_PRELUDE & tree->state)); |
* A symbol is named by the first word following the macro |
assert(ROFF_PRELUDE_Os & tree->state); |
* invocation up to a space. Its value is anything after the |
return(roff_text(tok, tree, argv, type)); |
* name's trailing whitespace and optional double-quote. Thus, |
} |
* |
|
* [.ds foo "bar " ] |
|
* |
|
* will have `bar " ' as its value. |
|
*/ |
|
|
assert(ROFF_PRELUDE & tree->state); |
string = *bufp + pos; |
if ( ! (ROFF_PRELUDE_Dt & tree->state) || |
name = roff_getname(r, &string, ln, pos); |
! (ROFF_PRELUDE_Dd & tree->state)) { |
if ('\0' == *name) |
roff_err(tree, *argv, "out-of-order `Os' in prelude"); |
return(ROFF_IGN); |
return(0); |
|
} |
|
|
|
tree->os[0] = 0; |
/* Read past initial double-quote. */ |
|
if ('"' == *string) |
|
string++; |
|
|
p = *++argv; |
/* The rest is the value. */ |
|
roff_setstr(r, name, string, 0); |
|
return(ROFF_IGN); |
|
} |
|
|
while (*argv) { |
|
if (strlcat(tree->os, *argv++, sizeof(tree->os)) |
|
< sizeof(tree->os)) |
|
continue; |
|
roff_err(tree, p, "`Os' value too long"); |
|
return(0); |
|
} |
|
|
|
if (0 == tree->os[0]) |
/* ARGSUSED */ |
if (strlcpy(tree->os, "LOCAL", sizeof(tree->os)) |
static enum rofferr |
>= sizeof(tree->os)) { |
roff_nr(ROFF_ARGS) |
roff_err(tree, p, "`Os' value too long"); |
{ |
return(0); |
const char *key; |
} |
char *val; |
|
int iv; |
|
struct reg *rg; |
|
|
tree->state |= ROFF_PRELUDE_Os; |
val = *bufp + pos; |
tree->state &= ~ROFF_PRELUDE; |
key = roff_getname(r, &val, ln, pos); |
tree->state |= ROFF_BODY; |
rg = r->regs->regs; |
|
|
assert(NULL == tree->last); |
if (0 == strcmp(key, "nS")) { |
|
rg[(int)REG_nS].set = 1; |
|
if ((iv = mandoc_strntou(val, strlen(val), 10)) >= 0) |
|
rg[REG_nS].v.u = (unsigned)iv; |
|
else |
|
rg[(int)REG_nS].v.u = 0u; |
|
} |
|
|
return((*tree->cb.roffhead)(tree->arg)); |
return(ROFF_IGN); |
} |
} |
|
|
|
/* ARGSUSED */ |
|
static enum rofferr |
|
roff_rm(ROFF_ARGS) |
|
{ |
|
const char *name; |
|
char *cp; |
|
|
|
cp = *bufp + pos; |
|
while ('\0' != *cp) { |
|
name = roff_getname(r, &cp, ln, (int)(cp - *bufp)); |
|
if ('\0' != *name) |
|
roff_setstr(r, name, NULL, 0); |
|
} |
|
return(ROFF_IGN); |
|
} |
|
|
/* ARGSUSED */ |
/* ARGSUSED */ |
static int |
static enum rofferr |
roff_layout(ROFFCALL_ARGS) |
roff_TE(ROFF_ARGS) |
{ |
{ |
int i, c, argcp[ROFF_MAXARG]; |
|
char *argvp[ROFF_MAXARG]; |
|
|
|
if (ROFF_PRELUDE & tree->state) { |
if (NULL == r->tbl) |
roff_err(tree, *argv, "bad `%s' in prelude", |
mandoc_msg(MANDOCERR_NOSCOPE, r->parse, ln, ppos, NULL); |
toknames[tok]); |
else |
return(0); |
tbl_end(r->tbl); |
} else if (ROFF_EXIT == type) { |
|
roffnode_free(tree); |
|
return((*tree->cb.roffblkout)(tree->arg, tok)); |
|
} |
|
|
|
assert( ! (ROFF_CALLABLE & tokens[tok].flags)); |
r->tbl = NULL; |
|
return(ROFF_IGN); |
|
} |
|
|
++argv; |
/* ARGSUSED */ |
|
static enum rofferr |
|
roff_T_(ROFF_ARGS) |
|
{ |
|
|
if ( ! roffparseopts(tree, tok, &argv, argcp, argvp)) |
if (NULL == r->tbl) |
return(0); |
mandoc_msg(MANDOCERR_NOSCOPE, r->parse, ln, ppos, NULL); |
if (NULL == roffnode_new(tok, tree)) |
else |
return(0); |
tbl_restart(ppos, ln, r->tbl); |
|
|
/* |
return(ROFF_IGN); |
* Layouts have two parts: the layout body and header. The |
} |
* layout header is the trailing text of the line macro, while |
|
* the layout body is everything following until termination. |
|
*/ |
|
|
|
if ( ! (*tree->cb.roffblkin)(tree->arg, tok, argcp, argvp)) |
/* ARGSUSED */ |
return(0); |
static enum rofferr |
if (NULL == *argv) |
roff_EQ(ROFF_ARGS) |
return(1); |
{ |
if ( ! (*tree->cb.roffin)(tree->arg, tok, argcp, argvp)) |
struct eqn_node *e; |
return(0); |
|
|
|
/* |
assert(NULL == r->eqn); |
* If there are no parsable parts, then write remaining tokens |
e = eqn_alloc(ppos, ln); |
* into the layout header and exit. |
|
*/ |
|
|
|
if ( ! (ROFF_PARSED & tokens[tok].flags)) { |
if (r->last_eqn) |
i = 0; |
r->last_eqn->next = e; |
while (*argv) { |
else |
if ( ! (*tree->cb.roffdata)(tree->arg, i, *argv++)) |
r->first_eqn = r->last_eqn = e; |
return(0); |
|
i = 1; |
|
} |
|
return((*tree->cb.roffout)(tree->arg, tok)); |
|
} |
|
|
|
/* |
r->eqn = r->last_eqn = e; |
* Parsable elements may be in the header (or be the header, for |
return(ROFF_IGN); |
* that matter). Follow the regular parsing rules for these. |
} |
*/ |
|
|
|
i = 0; |
/* ARGSUSED */ |
while (*argv) { |
static enum rofferr |
if (ROFF_MAX == (c = rofffindcallable(*argv))) { |
roff_EN(ROFF_ARGS) |
assert(tree->arg); |
{ |
if ( ! (*tree->cb.roffdata) |
|
(tree->arg, i, *argv++)) |
|
return(0); |
|
i = 1; |
|
continue; |
|
} |
|
if ( ! roffcall(tree, c, argv)) |
|
return(0); |
|
break; |
|
} |
|
|
|
/* |
mandoc_msg(MANDOCERR_NOSCOPE, r->parse, ln, ppos, NULL); |
* If there's trailing punctuation in the header, then write it |
return(ROFF_IGN); |
* out now. Here we mimic the behaviour of a line-dominant text |
} |
* macro. |
|
*/ |
|
|
|
if (NULL == *argv) |
/* ARGSUSED */ |
return((*tree->cb.roffout)(tree->arg, tok)); |
static enum rofferr |
|
roff_TS(ROFF_ARGS) |
|
{ |
|
struct tbl_node *t; |
|
|
/* |
if (r->tbl) { |
* Expensive. Scan to the end of line then work backwards until |
mandoc_msg(MANDOCERR_SCOPEBROKEN, r->parse, ln, ppos, NULL); |
* a token isn't punctuation. |
tbl_end(r->tbl); |
*/ |
} |
|
|
if ( ! roffpurgepunct(tree, argv)) |
t = tbl_alloc(ppos, ln, r->parse); |
return(0); |
|
|
|
return((*tree->cb.roffout)(tree->arg, tok)); |
if (r->last_tbl) |
|
r->last_tbl->next = t; |
|
else |
|
r->first_tbl = r->last_tbl = t; |
|
|
|
r->tbl = r->last_tbl = t; |
|
return(ROFF_IGN); |
} |
} |
|
|
|
|
/* ARGSUSED */ |
/* ARGSUSED */ |
static int |
static enum rofferr |
roff_text(ROFFCALL_ARGS) |
roff_so(ROFF_ARGS) |
{ |
{ |
int i, j, first, c, argcp[ROFF_MAXARG]; |
char *name; |
char *argvp[ROFF_MAXARG]; |
|
|
|
if (ROFF_PRELUDE & tree->state) { |
mandoc_msg(MANDOCERR_SO, r->parse, ln, ppos, NULL); |
roff_err(tree, *argv, "`%s' disallowed in prelude", |
|
toknames[tok]); |
|
return(0); |
|
} |
|
|
|
first = (*argv == tree->cur); |
/* |
argv++; |
* Handle `so'. Be EXTREMELY careful, as we shouldn't be |
|
* opening anything that's not in our cwd or anything beneath |
|
* it. Thus, explicitly disallow traversing up the file-system |
|
* or using absolute paths. |
|
*/ |
|
|
if ( ! roffparseopts(tree, tok, &argv, argcp, argvp)) |
name = *bufp + pos; |
return(0); |
if ('/' == *name || strstr(name, "../") || strstr(name, "/..")) { |
if ( ! (*tree->cb.roffin)(tree->arg, tok, argcp, argvp)) |
mandoc_msg(MANDOCERR_SOPATH, r->parse, ln, pos, NULL); |
return(0); |
return(ROFF_ERR); |
if (NULL == *argv) |
|
return((*tree->cb.roffout)(tree->arg, tok)); |
|
|
|
if ( ! (ROFF_PARSED & tokens[tok].flags)) { |
|
i = 0; |
|
while (*argv) { |
|
if ( ! (*tree->cb.roffdata)(tree->arg, i, *argv++)) |
|
return(0); |
|
i = 1; |
|
} |
|
return((*tree->cb.roffout)(tree->arg, tok)); |
|
} |
} |
|
|
|
*offs = pos; |
|
return(ROFF_SO); |
|
} |
|
|
|
/* ARGSUSED */ |
|
static enum rofferr |
|
roff_userdef(ROFF_ARGS) |
|
{ |
|
const char *arg[9]; |
|
char *cp, *n1, *n2; |
|
int i; |
|
|
/* |
/* |
* Deal with punctuation. Ugly. Work ahead until we encounter |
* Collect pointers to macro argument strings |
* terminating punctuation. If we encounter it and all |
* and null-terminate them. |
* subsequent tokens are punctuation, then stop processing (the |
|
* line-dominant macro will print these tokens after closure). |
|
*/ |
*/ |
|
cp = *bufp + pos; |
|
for (i = 0; i < 9; i++) |
|
arg[i] = '\0' == *cp ? "" : |
|
mandoc_getarg(r->parse, &cp, ln, &pos); |
|
|
i = 0; |
/* |
while (*argv) { |
* Expand macro arguments. |
if (ROFF_MAX != (c = rofffindcallable(*argv))) { |
*/ |
if ( ! (ROFF_LSCOPE & tokens[tok].flags)) |
*szp = 0; |
if ( ! (*tree->cb.roffout)(tree->arg, tok)) |
n1 = cp = mandoc_strdup(r->current_string); |
return(0); |
while (NULL != (cp = strstr(cp, "\\$"))) { |
|
i = cp[2] - '1'; |
if ( ! roffcall(tree, c, argv)) |
if (0 > i || 8 < i) { |
return(0); |
/* Not an argument invocation. */ |
|
cp += 2; |
if (ROFF_LSCOPE & tokens[tok].flags) |
|
if ( ! (*tree->cb.roffout)(tree->arg, tok)) |
|
return(0); |
|
|
|
break; |
|
} |
|
|
|
if ( ! roffispunct(*argv)) { |
|
if ( ! (*tree->cb.roffdata)(tree->arg, i, *argv++)) |
|
return(0); |
|
i = 1; |
|
continue; |
continue; |
} |
} |
|
|
i = 1; |
*szp = strlen(n1) - 3 + strlen(arg[i]) + 1; |
for (j = 0; argv[j]; j++) |
n2 = mandoc_malloc(*szp); |
if ( ! roffispunct(argv[j])) |
|
break; |
|
|
|
if (argv[j]) { |
strlcpy(n2, n1, (size_t)(cp - n1 + 1)); |
if ( ! (*tree->cb.roffdata)(tree->arg, 0, *argv++)) |
strlcat(n2, arg[i], *szp); |
return(0); |
strlcat(n2, cp + 3, *szp); |
continue; |
|
} |
|
|
|
if ( ! (*tree->cb.roffout)(tree->arg, tok)) |
cp = n2 + (cp - n1); |
return(0); |
free(n1); |
break; |
n1 = n2; |
} |
} |
|
|
if (NULL == *argv) |
/* |
return((*tree->cb.roffout)(tree->arg, tok)); |
* Replace the macro invocation |
if ( ! first) |
* by the expanded macro. |
return(1); |
*/ |
|
free(*bufp); |
|
*bufp = n1; |
|
if (0 == *szp) |
|
*szp = strlen(*bufp) + 1; |
|
|
return(roffpurgepunct(tree, argv)); |
return(*szp > 1 && '\n' == (*bufp)[(int)*szp - 2] ? |
|
ROFF_REPARSE : ROFF_APPEND); |
} |
} |
|
|
|
static char * |
/* ARGSUSED */ |
roff_getname(struct roff *r, char **cpp, int ln, int pos) |
static int |
|
roff_noop(ROFFCALL_ARGS) |
|
{ |
{ |
|
char *name, *cp; |
|
|
return(1); |
name = *cpp; |
} |
if ('\0' == *name) |
|
return(name); |
|
|
|
/* Read until end of name. */ |
|
for (cp = name; '\0' != *cp && ' ' != *cp; cp++) { |
|
if ('\\' != *cp) |
|
continue; |
|
cp++; |
|
if ('\\' == *cp) |
|
continue; |
|
mandoc_msg(MANDOCERR_NAMESC, r->parse, ln, pos, NULL); |
|
*cp = '\0'; |
|
name = cp; |
|
} |
|
|
/* ARGSUSED */ |
/* Nil-terminate name. */ |
static int |
if ('\0' != *cp) |
roff_depr(ROFFCALL_ARGS) |
*(cp++) = '\0'; |
{ |
|
|
|
roff_err(tree, *argv, "`%s' is deprecated", toknames[tok]); |
/* Read past spaces. */ |
return(0); |
while (' ' == *cp) |
|
cp++; |
|
|
|
*cpp = cp; |
|
return(name); |
} |
} |
|
|
|
/* |
|
* Store *string into the user-defined string called *name. |
|
* In multiline mode, append to an existing entry and append '\n'; |
|
* else replace the existing entry, if there is one. |
|
* To clear an existing entry, call with (*r, *name, NULL, 0). |
|
*/ |
static void |
static void |
roff_warn(const struct rofftree *tree, const char *pos, char *fmt, ...) |
roff_setstr(struct roff *r, const char *name, const char *string, |
|
int multiline) |
{ |
{ |
va_list ap; |
struct roffstr *n; |
char buf[128]; |
char *c; |
|
size_t oldch, newch; |
|
|
va_start(ap, fmt); |
/* Search for an existing string with the same name. */ |
(void)vsnprintf(buf, sizeof(buf), fmt, ap); |
n = r->first_string; |
va_end(ap); |
while (n && strcmp(name, n->name)) |
|
n = n->next; |
|
|
(*tree->cb.roffmsg)(tree->arg, |
if (NULL == n) { |
ROFF_WARN, tree->cur, pos, buf); |
/* Create a new string table entry. */ |
} |
n = mandoc_malloc(sizeof(struct roffstr)); |
|
n->name = mandoc_strdup(name); |
|
n->string = NULL; |
|
n->next = r->first_string; |
|
r->first_string = n; |
|
} else if (0 == multiline) { |
|
/* In multiline mode, append; else replace. */ |
|
free(n->string); |
|
n->string = NULL; |
|
} |
|
|
|
if (NULL == string) |
|
return; |
|
|
static void |
/* |
roff_err(const struct rofftree *tree, const char *pos, char *fmt, ...) |
* One additional byte for the '\n' in multiline mode, |
{ |
* and one for the terminating '\0'. |
va_list ap; |
*/ |
char buf[128]; |
newch = strlen(string) + (multiline ? 2u : 1u); |
|
if (NULL == n->string) { |
|
n->string = mandoc_malloc(newch); |
|
*n->string = '\0'; |
|
oldch = 0; |
|
} else { |
|
oldch = strlen(n->string); |
|
n->string = mandoc_realloc(n->string, oldch + newch); |
|
} |
|
|
va_start(ap, fmt); |
/* Skip existing content in the destination buffer. */ |
(void)vsnprintf(buf, sizeof(buf), fmt, ap); |
c = n->string + (int)oldch; |
va_end(ap); |
|
|
|
(*tree->cb.roffmsg)(tree->arg, |
/* Append new content to the destination buffer. */ |
ROFF_ERROR, tree->cur, pos, buf); |
while (*string) { |
|
/* |
|
* Rudimentary roff copy mode: |
|
* Handle escaped backslashes. |
|
*/ |
|
if ('\\' == *string && '\\' == *(string + 1)) |
|
string++; |
|
*c++ = *string++; |
|
} |
|
|
|
/* Append terminating bytes. */ |
|
if (multiline) |
|
*c++ = '\n'; |
|
*c = '\0'; |
} |
} |
|
|
|
static const char * |
#ifdef __linux |
roff_getstrn(const struct roff *r, const char *name, size_t len) |
/* $OpenBSD$ */ |
|
|
|
/* |
|
* Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> |
|
* |
|
* Permission to use, copy, modify, and distribute this software for any |
|
* purpose with or without fee is hereby granted, provided that the |
|
* above copyright notice and this permission notice appear in all |
|
* copies. |
|
* |
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL |
|
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED |
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE |
|
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
|
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
|
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
|
* PERFORMANCE OF THIS SOFTWARE. |
|
*/ |
|
static size_t |
|
strlcat(char *dst, const char *src, size_t siz) |
|
{ |
{ |
char *d = dst; |
const struct roffstr *n; |
const char *s = src; |
|
size_t n = siz; |
|
size_t dlen; |
|
|
|
/* Find the end of dst and adjust bytes left but don't go past |
n = r->first_string; |
* end */ |
while (n && (strncmp(name, n->name, len) || '\0' != n->name[(int)len])) |
while (n-- != 0 && *d != '\0') |
n = n->next; |
d++; |
|
dlen = d - dst; |
|
n = siz - dlen; |
|
|
|
if (n == 0) |
return(n ? n->string : NULL); |
return(dlen + strlen(s)); |
|
while (*s != '\0') { |
|
if (n != 1) { |
|
*d++ = *s; |
|
n--; |
|
} |
|
s++; |
|
} |
|
*d = '\0'; |
|
|
|
return(dlen + (s - src)); /* count does not include NUL */ |
|
} |
} |
|
|
|
static void |
static size_t |
roff_freestr(struct roff *r) |
strlcpy(char *dst, const char *src, size_t siz) |
|
{ |
{ |
char *d = dst; |
struct roffstr *n, *nn; |
const char *s = src; |
|
size_t n = siz; |
|
|
|
/* Copy as many bytes as will fit */ |
for (n = r->first_string; n; n = nn) { |
if (n != 0) { |
free(n->name); |
while (--n != 0) { |
free(n->string); |
if ((*d++ = *s++) == '\0') |
nn = n->next; |
break; |
free(n); |
} |
|
} |
} |
|
|
/* Not enough room in dst, add NUL and traverse rest of src */ |
r->first_string = NULL; |
if (n == 0) { |
} |
if (siz != 0) |
|
*d = '\0'; /* NUL-terminate dst */ |
|
while (*s++) |
|
; |
|
} |
|
|
|
return(s - src - 1); /* count does not include NUL */ |
const struct tbl_span * |
|
roff_span(const struct roff *r) |
|
{ |
|
|
|
return(r->tbl ? tbl_span(r->tbl) : NULL); |
} |
} |
#endif /*__linux__*/ |
|
|
const struct eqn * |
|
roff_eqn(const struct roff *r) |
|
{ |
|
|
|
return(r->last_eqn ? &r->last_eqn->eqn : NULL); |
|
} |