version 1.8, 2008/11/26 22:27:08 |
version 1.109, 2010/12/28 10:51:03 |
|
|
/* $Id$ */ |
/* $Id$ */ |
/* |
/* |
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se> |
* Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv> |
|
* Copyright (c) 2010 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. |
|
*/ |
*/ |
|
#ifdef HAVE_CONFIG_H |
|
#include "config.h" |
|
#endif |
|
|
#include <assert.h> |
#include <assert.h> |
|
#include <errno.h> |
#include <ctype.h> |
#include <ctype.h> |
#include <err.h> |
#include <limits.h> |
#include <stdlib.h> |
#include <stdlib.h> |
#include <stdio.h> |
|
#include <string.h> |
#include <string.h> |
#include <time.h> |
#include <stdio.h> |
|
|
#include "libmdocml.h" |
#include "mandoc.h" |
#include "private.h" |
#include "roff.h" |
|
#include "libroff.h" |
|
#include "libmandoc.h" |
|
|
/* FIXME: warn if Pp occurs before/after Sh etc. (see mdoc.samples). */ |
#define RSTACK_MAX 128 |
|
|
/* FIXME: warn about "X section only" macros. */ |
#define ROFF_CTL(c) \ |
|
('.' == (c) || '\'' == (c)) |
|
|
/* FIXME: warn about empty lists. */ |
enum rofft { |
|
ROFF_ad, |
|
ROFF_am, |
|
ROFF_ami, |
|
ROFF_am1, |
|
ROFF_de, |
|
ROFF_dei, |
|
ROFF_de1, |
|
ROFF_ds, |
|
ROFF_el, |
|
ROFF_hy, |
|
ROFF_ie, |
|
ROFF_if, |
|
ROFF_ig, |
|
ROFF_ne, |
|
ROFF_nh, |
|
ROFF_nr, |
|
ROFF_rm, |
|
ROFF_so, |
|
ROFF_tr, |
|
ROFF_TS, |
|
ROFF_TE, |
|
ROFF_cblock, |
|
ROFF_ccond, /* FIXME: remove this. */ |
|
ROFF_USERDEF, |
|
ROFF_MAX |
|
}; |
|
|
/* FIXME: ; : } ) (etc.) after text macros? */ |
enum roffrule { |
|
ROFFRULE_ALLOW, |
|
ROFFRULE_DENY |
|
}; |
|
|
#define ROFF_MAXARG 10 |
struct roffstr { |
|
char *name; /* key of symbol */ |
|
char *string; /* current value */ |
|
struct roffstr *next; /* next in list */ |
|
}; |
|
|
enum roffd { |
struct roff { |
ROFF_ENTER = 0, |
struct roffnode *last; /* leaf of stack */ |
ROFF_EXIT |
mandocmsg msg; /* err/warn/fatal messages */ |
|
void *data; /* privdata for messages */ |
|
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 *tbl; |
}; |
}; |
|
|
enum rofftype { |
struct roffnode { |
ROFF_COMMENT, |
enum rofft tok; /* type of node */ |
ROFF_TEXT, |
struct roffnode *parent; /* up one in stack */ |
ROFF_LAYOUT |
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 */ |
}; |
}; |
|
|
#define ROFFCALL_ARGS \ |
#define ROFF_ARGS struct roff *r, /* parse ctx */ \ |
int tok, struct rofftree *tree, \ |
enum rofft tok, /* tok of macro */ \ |
const char *argv[], enum roffd type |
char **bufp, /* input buffer */ \ |
|
size_t *szp, /* size of input buffer */ \ |
|
int ln, /* parse line */ \ |
|
int ppos, /* original pos in buffer */ \ |
|
int pos, /* current pos in buffer */ \ |
|
int *offs /* reset offset of buffer data */ |
|
|
struct rofftree; |
typedef enum rofferr (*roffproc)(ROFF_ARGS); |
|
|
struct rofftok { |
struct roffmac { |
int (*cb)(ROFFCALL_ARGS); /* Callback. */ |
const char *name; /* macro name */ |
const int *args; /* Args (or NULL). */ |
roffproc proc; /* process new macro */ |
const int *parents; |
roffproc text; /* process as child text of macro */ |
const int *children; |
roffproc sub; /* process as child of macro */ |
int ctx; |
int flags; |
enum rofftype type; /* Type of macro. */ |
#define ROFFMAC_STRUCT (1 << 0) /* always interpret */ |
int flags; |
struct roffmac *next; |
#define ROFF_PARSED (1 << 0) /* "Parsed". */ |
|
#define ROFF_CALLABLE (1 << 1) /* "Callable". */ |
|
#define ROFF_QUOTES (1 << 2) /* Quoted args. */ |
|
}; |
}; |
|
|
struct roffarg { |
static enum rofferr roff_block(ROFF_ARGS); |
int flags; |
static enum rofferr roff_block_text(ROFF_ARGS); |
#define ROFF_VALUE (1 << 0) /* Has a value. */ |
static enum rofferr roff_block_sub(ROFF_ARGS); |
}; |
static enum rofferr roff_cblock(ROFF_ARGS); |
|
static enum rofferr roff_ccond(ROFF_ARGS); |
|
static enum rofferr roff_cond(ROFF_ARGS); |
|
static enum rofferr roff_cond_text(ROFF_ARGS); |
|
static enum rofferr roff_cond_sub(ROFF_ARGS); |
|
static enum rofferr roff_ds(ROFF_ARGS); |
|
static enum roffrule roff_evalcond(const char *, int *); |
|
static void roff_freestr(struct roff *); |
|
static const char *roff_getstrn(const struct roff *, |
|
const char *, size_t); |
|
static enum rofferr roff_line_ignore(ROFF_ARGS); |
|
static enum rofferr roff_line_error(ROFF_ARGS); |
|
static enum rofferr roff_nr(ROFF_ARGS); |
|
static int roff_res(struct roff *, |
|
char **, size_t *, int); |
|
static void roff_setstr(struct roff *, |
|
const char *, const char *, int); |
|
static enum rofferr roff_so(ROFF_ARGS); |
|
static enum rofferr roff_TE(ROFF_ARGS); |
|
static enum rofferr roff_TS(ROFF_ARGS); |
|
static enum rofferr roff_userdef(ROFF_ARGS); |
|
|
struct roffnode { |
/* See roff_hash_find() */ |
int tok; /* Token id. */ |
|
struct roffnode *parent; /* Parent (or NULL). */ |
|
size_t line; /* Parsed at line. */ |
|
}; |
|
|
|
struct rofftree { |
#define ASCII_HI 126 |
struct roffnode *last; /* Last parsed node. */ |
#define ASCII_LO 33 |
time_t date; /* `Dd' results. */ |
#define HASHWIDTH (ASCII_HI - ASCII_LO + 1) |
char os[64]; /* `Os' results. */ |
|
char title[64]; /* `Dt' results. */ |
static struct roffmac *hash[HASHWIDTH]; |
char section[64]; /* `Dt' results. */ |
|
char volume[64]; /* `Dt' results. */ |
static struct roffmac roffs[ROFF_MAX] = { |
int state; |
{ "ad", roff_line_ignore, NULL, NULL, 0, NULL }, |
#define ROFF_PRELUDE (1 << 1) /* In roff prelude. */ |
{ "am", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
/* FIXME: if we had prev ptrs, this wouldn't be necessary. */ |
{ "ami", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
#define ROFF_PRELUDE_Os (1 << 2) /* `Os' is parsed. */ |
{ "am1", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
#define ROFF_PRELUDE_Dt (1 << 3) /* `Dt' is parsed. */ |
{ "de", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
#define ROFF_PRELUDE_Dd (1 << 4) /* `Dd' is parsed. */ |
{ "dei", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
#define ROFF_BODY (1 << 5) /* In roff body. */ |
{ "de1", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
struct md_mbuf *mbuf; /* Output (or NULL). */ |
{ "ds", roff_ds, NULL, NULL, 0, NULL }, |
const struct md_args *args; /* Global args. */ |
{ "el", roff_cond, roff_cond_text, roff_cond_sub, ROFFMAC_STRUCT, NULL }, |
const struct md_rbuf *rbuf; /* Input. */ |
{ "hy", roff_line_ignore, NULL, NULL, 0, NULL }, |
const struct roffcb *cb; |
{ "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 }, |
|
{ "ne", roff_line_ignore, NULL, NULL, 0, NULL }, |
|
{ "nh", roff_line_ignore, NULL, NULL, 0, NULL }, |
|
{ "nr", roff_nr, NULL, NULL, 0, NULL }, |
|
{ "rm", roff_line_error, NULL, NULL, 0, NULL }, |
|
{ "so", roff_so, 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 }, |
|
{ ".", roff_cblock, NULL, NULL, 0, NULL }, |
|
{ "\\}", roff_ccond, NULL, NULL, 0, NULL }, |
|
{ NULL, roff_userdef, NULL, NULL, 0, NULL }, |
}; |
}; |
|
|
static int roff_Dd(ROFFCALL_ARGS); |
static void roff_free1(struct roff *); |
static int roff_Dt(ROFFCALL_ARGS); |
static enum rofft roff_hash_find(const char *, size_t); |
static int roff_Os(ROFFCALL_ARGS); |
static void roff_hash_init(void); |
|
static void roffnode_cleanscope(struct roff *); |
|
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 int roff_parse_nat(const char *, unsigned int *); |
|
|
static int roff_layout(ROFFCALL_ARGS); |
/* See roff_hash_find() */ |
static int roff_text(ROFFCALL_ARGS); |
#define ROFF_HASH(p) (p[0] - ASCII_LO) |
static int roff_comment(ROFFCALL_ARGS); |
|
|
|
static struct roffnode *roffnode_new(int, struct rofftree *); |
static void |
static void roffnode_free(int, struct rofftree *); |
roff_hash_init(void) |
|
{ |
|
struct roffmac *n; |
|
int buc, i; |
|
|
static int roffscan(int, const int *); |
for (i = 0; i < (int)ROFF_USERDEF; i++) { |
static int rofffindtok(const char *); |
assert(roffs[i].name[0] >= ASCII_LO); |
static int rofffindarg(const char *); |
assert(roffs[i].name[0] <= ASCII_HI); |
static int rofffindcallable(const char *); |
|
static int roffargs(int, char *, char **); |
|
static int roffargok(int, int); |
|
static int roffnextopt(int, const char ***, char **); |
|
static int roffparse(struct rofftree *, char *, size_t); |
|
static int textparse(const struct rofftree *, |
|
const char *, size_t); |
|
|
|
|
buc = ROFF_HASH(roffs[i].name); |
|
|
static const int roffarg_An[] = { ROFF_Split, ROFF_Nosplit, |
if (NULL != (n = hash[buc])) { |
ROFF_ARGMAX }; |
for ( ; n->next; n = n->next) |
static const int roffarg_Bd[] = { ROFF_Ragged, ROFF_Unfilled, |
/* Do nothing. */ ; |
ROFF_Literal, ROFF_File, ROFF_Offset, ROFF_ARGMAX }; |
n->next = &roffs[i]; |
static const int roffarg_Ex[] = { ROFF_Std, ROFF_ARGMAX }; |
} else |
static const int roffarg_Rv[] = { ROFF_Std, ROFF_ARGMAX }; |
hash[buc] = &roffs[i]; |
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_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_Bd[] = { ROFF_Ed, ROFF_MAX }; |
|
static const int roffchild_Bl[] = { ROFF_It, ROFF_El, ROFF_MAX }; |
|
static const int roffchild_Fo[] = { ROFF_Fa, ROFF_Fc, ROFF_MAX }; |
|
static const int roffchild_Oo[] = { ROFF_Op, ROFF_Oc, ROFF_MAX }; |
|
|
|
static const int roffparent_Ed[] = { ROFF_Bd, ROFF_MAX }; |
/* |
static const int roffparent_El[] = { ROFF_Bl, ROFF_It, ROFF_MAX }; |
* Look up a roff token by its name. Returns ROFF_MAX if no macro by |
static const int roffparent_Fc[] = { ROFF_Fo, ROFF_Fa, ROFF_MAX }; |
* the nil-terminated string name could be found. |
static const int roffparent_Oc[] = { ROFF_Oo, ROFF_Oc, ROFF_MAX }; |
*/ |
static const int roffparent_It[] = { ROFF_Bl, ROFF_It, ROFF_MAX }; |
static enum rofft |
|
roff_hash_find(const char *p, size_t s) |
|
{ |
|
int buc; |
|
struct roffmac *n; |
|
|
/* Table of all known tokens. */ |
/* |
static const struct rofftok tokens[ROFF_MAX] = { |
* libroff has an extremely simple hashtable, for the time |
{roff_comment, NULL, NULL, NULL, 0, ROFF_COMMENT, 0 }, /* \" */ |
* being, which simply keys on the first character, which must |
{ roff_Dd, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Dd */ |
* be printable, then walks a chain. It works well enough until |
{ roff_Dt, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Dt */ |
* optimised. |
{ roff_Os, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Os */ |
*/ |
{ roff_layout, NULL, NULL, NULL, ROFF_Sh, ROFF_LAYOUT, ROFF_PARSED }, /* Sh */ |
|
{ roff_layout, NULL, NULL, NULL, ROFF_Ss, ROFF_LAYOUT, ROFF_PARSED }, /* Ss */ |
|
{ roff_text, NULL, NULL, NULL, ROFF_Pp, ROFF_TEXT, 0 }, /* Pp */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* D1 */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Dl */ |
|
{ roff_layout, NULL, NULL, roffchild_Bd, 0, ROFF_LAYOUT, 0 }, /* Bd */ |
|
{ roff_layout, NULL, roffparent_Ed, NULL, ROFF_Bd, ROFF_LAYOUT, 0 }, /* Ed */ |
|
{ roff_layout, roffarg_Bl, NULL, roffchild_Bl, 0, ROFF_LAYOUT, 0 }, /* Bl */ |
|
{ roff_layout, NULL, roffparent_El, NULL, ROFF_Bl, ROFF_LAYOUT, 0 }, /* El */ |
|
{ roff_layout, NULL, roffparent_It, NULL, ROFF_It, ROFF_LAYOUT, 0 }, /* It */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ad */ |
|
{ 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, ROFF_QUOTES }, /* 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 */ /* FIXME */ |
|
{ 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 }, /* Op */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Ot */ /* XXX deprecated */ |
|
{ 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 */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* %A */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE}, /* %B */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %D */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE}, /* %I */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE}, /* %J */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %N */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %O */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %P */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %R */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* %T */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* %V */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ac */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ao */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Aq */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* At */ /* XXX at most 2 args */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Bc */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Bf */ /* FIXME */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Bo */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* 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_TEXT, 0 }, /* Db */ /* XXX */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Dc */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Do */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Dq */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ec */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Ef */ /* FIXME */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Em */ /* XXX needs arg */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Eo */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Fx */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Ms */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* No */ |
|
{ NULL, 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 */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Pc */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* Pf */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Po */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Pq */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Qc */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ql */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Qo */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Qq */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Re */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Rs */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Sc */ |
|
{ NULL, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* So */ |
|
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Sq */ |
|
{ NULL, 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 | ROFF_QUOTES }, /* 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, NULL, 0, ROFF_LAYOUT, 0 }, /* Fo */ |
|
{ roff_layout, NULL, roffparent_Fc, NULL, ROFF_Fo, ROFF_LAYOUT, 0 }, /* Fc */ |
|
{ roff_layout, NULL, NULL, NULL, 0, ROFF_LAYOUT, 0 }, /* Oo */ |
|
{ roff_layout, NULL, roffparent_Oc, NULL, ROFF_Oo, ROFF_LAYOUT, 0 }, /* Oc */ |
|
}; |
|
|
|
/* Table of all known token arguments. */ |
if (p[0] < ASCII_LO || p[0] > ASCII_HI) |
static const struct roffarg tokenargs[ROFF_ARGMAX] = { |
return(ROFF_MAX); |
{ 0 }, /* split */ |
|
{ 0 }, /* nosplit */ |
|
{ 0 }, /* ragged */ |
|
{ 0 }, /* unfilled */ |
|
{ 0 }, /* literal */ |
|
{ ROFF_VALUE }, /* file */ |
|
{ ROFF_VALUE }, /* offset */ |
|
{ 0 }, /* bullet */ |
|
{ 0 }, /* dash */ |
|
{ 0 }, /* hyphen */ |
|
{ 0 }, /* item */ |
|
{ 0 }, /* enum */ |
|
{ 0 }, /* tag */ |
|
{ 0 }, /* diag */ |
|
{ 0 }, /* hang */ |
|
{ 0 }, /* ohang */ |
|
{ 0 }, /* inset */ |
|
{ 0 }, /* column */ |
|
{ 0 }, /* width */ |
|
{ 0 }, /* compact */ |
|
}; |
|
|
|
const char *const toknamesp[ROFF_MAX] = |
buc = ROFF_HASH(p); |
{ |
|
"\\\"", "Dd", "Dt", "Os", |
|
"Sh", "Ss", "Pp", "D1", |
|
"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", |
|
"Xr", "\%A", "\%B", "\%D", |
|
"\%I", "\%J", "\%N", "\%O", |
|
"\%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" |
|
}; |
|
|
|
const char *const tokargnamesp[ROFF_ARGMAX] = |
if (NULL == (n = hash[buc])) |
{ |
return(ROFF_MAX); |
"split", "nosplit", "ragged", |
for ( ; n; n = n->next) |
"unfilled", "literal", "file", |
if (0 == strncmp(n->name, p, s) && '\0' == n->name[(int)s]) |
"offset", "bullet", "dash", |
return((enum rofft)(n - roffs)); |
"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" |
|
}; |
|
|
|
const char *const *toknames = toknamesp; |
return(ROFF_MAX); |
const char *const *tokargnames = tokargnamesp; |
} |
|
|
|
|
int |
/* |
roff_free(struct rofftree *tree, int flush) |
* Pop the current node off of the stack of roff instructions currently |
|
* pending. |
|
*/ |
|
static void |
|
roffnode_pop(struct roff *r) |
{ |
{ |
int error; |
struct roffnode *p; |
|
|
assert(tree->mbuf); |
assert(r->last); |
if ( ! flush) |
p = r->last; |
tree->mbuf = NULL; |
|
|
|
/* LINTED */ |
if (ROFF_el == p->tok) |
while (tree->last) |
if (r->rstackpos > -1) |
if ( ! (*tokens[tree->last->tok].cb) |
r->rstackpos--; |
(tree->last->tok, tree, NULL, ROFF_EXIT)) |
|
/* Disallow flushing. */ |
|
tree->mbuf = NULL; |
|
|
|
error = tree->mbuf ? 0 : 1; |
r->last = r->last->parent; |
|
free(p->name); |
|
free(p->end); |
|
free(p); |
|
} |
|
|
if (tree->mbuf && (ROFF_PRELUDE & tree->state)) { |
|
warnx("%s: prelude never finished", |
|
tree->rbuf->name); |
|
error = 1; |
|
} |
|
|
|
free(tree); |
/* |
return(error ? 0 : 1); |
* 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; |
|
|
|
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 md_args *args, struct md_mbuf *out, |
roff_free1(struct roff *r) |
const struct md_rbuf *in, const struct roffcb *cb) |
|
{ |
{ |
struct rofftree *tree; |
|
|
|
if (NULL == (tree = calloc(1, sizeof(struct rofftree)))) { |
if (r->tbl) { |
warn("malloc"); |
tbl_free(r->tbl); |
return(NULL); |
r->tbl = NULL; |
} |
} |
|
|
tree->state = ROFF_PRELUDE; |
while (r->last) |
tree->args = args; |
roffnode_pop(r); |
tree->mbuf = out; |
|
tree->rbuf = in; |
|
tree->cb = cb; |
|
|
|
return(tree); |
roff_freestr(r); |
} |
} |
|
|
|
|
int |
void |
roff_engine(struct rofftree *tree, char *buf, size_t sz) |
roff_reset(struct roff *r) |
{ |
{ |
|
|
if (0 == sz) { |
roff_free1(r); |
warnx("%s: blank line (line %zu)", |
|
tree->rbuf->name, |
|
tree->rbuf->line); |
|
return(0); |
|
} else if ('.' != *buf) |
|
return(textparse(tree, buf, sz)); |
|
|
|
return(roffparse(tree, buf, sz)); |
|
} |
} |
|
|
|
|
static int |
void |
textparse(const struct rofftree *tree, const char *buf, size_t sz) |
roff_free(struct roff *r) |
{ |
{ |
|
|
if (NULL == tree->last) { |
|
warnx("%s: unexpected text (line %zu)", |
|
tree->rbuf->name, |
|
tree->rbuf->line); |
|
return(0); |
|
} else if (NULL == tree->last->parent) { |
|
warnx("%s: disallowed text (line %zu)", |
|
tree->rbuf->name, |
|
tree->rbuf->line); |
|
return(0); |
|
} |
|
|
|
/* Print text. */ |
roff_free1(r); |
|
free(r); |
|
} |
|
|
return(1); |
|
|
struct roff * |
|
roff_alloc(struct regset *regs, void *data, const mandocmsg msg) |
|
{ |
|
struct roff *r; |
|
|
|
r = mandoc_calloc(1, sizeof(struct roff)); |
|
r->regs = regs; |
|
r->msg = msg; |
|
r->data = data; |
|
r->rstackpos = -1; |
|
|
|
roff_hash_init(); |
|
return(r); |
} |
} |
|
|
|
|
|
/* |
|
* 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 |
roffargs(int tok, char *buf, char **argv) |
roff_res(struct roff *r, char **bufp, size_t *szp, int pos) |
{ |
{ |
int i; |
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; |
|
|
(void)tok;/* FIXME: quotable strings? */ |
/* Search for a leading backslash and save a pointer to it. */ |
|
|
assert(tok >= 0 && tok < ROFF_MAX); |
cp = *bufp + pos; |
assert('.' == *buf); |
while (NULL != (cp = strchr(cp, '\\'))) { |
|
stesc = cp++; |
|
|
/* LINTED */ |
/* |
for (i = 0; *buf && i < ROFF_MAXARG; i++) { |
* The second character must be an asterisk. |
argv[i] = buf++; |
* If it isn't, skip it anyway: It is escaped, |
while (*buf && ! isspace(*buf)) |
* so it can't start another escape sequence. |
buf++; |
*/ |
if (0 == *buf) { |
|
|
if ('\0' == *cp) |
|
return(1); |
|
if ('*' != *cp++) |
continue; |
continue; |
|
|
|
/* |
|
* The third character decides the length |
|
* of the name of the string. |
|
* Save a pointer to the name. |
|
*/ |
|
|
|
switch (*cp) { |
|
case ('\0'): |
|
return(1); |
|
case ('('): |
|
cp++; |
|
maxl = 2; |
|
break; |
|
case ('['): |
|
cp++; |
|
maxl = 0; |
|
break; |
|
default: |
|
maxl = 1; |
|
break; |
} |
} |
*buf++ = 0; |
stnam = cp; |
while (*buf && isspace(*buf)) |
|
buf++; |
|
} |
|
|
|
assert(i > 0); |
|
if (i < ROFF_MAXARG) |
|
argv[i] = NULL; |
|
|
|
return(ROFF_MAXARG > i); |
/* Advance to the end of the name. */ |
} |
|
|
|
|
for (i = 0; 0 == maxl || i < maxl; i++, cp++) { |
|
if ('\0' == *cp) |
|
return(1); /* Error. */ |
|
if (0 == maxl && ']' == *cp) |
|
break; |
|
} |
|
|
/* XXX */ |
/* |
static int |
* Retrieve the replacement string; if it is |
roffscan(int tok, const int *tokv) |
* undefined, resume searching for escapes. |
{ |
*/ |
|
|
if (NULL == tokv) |
res = roff_getstrn(r, stnam, (size_t)i); |
return(1); |
|
|
|
for ( ; ROFF_MAX != *tokv; tokv++) |
if (NULL == res) { |
if (tok == *tokv) |
cp -= maxl ? 1 : 0; |
return(1); |
continue; |
|
} |
|
|
return(0); |
/* Replace the escape sequence by the string. */ |
} |
|
|
|
|
nsz = *szp + strlen(res) + 1; |
|
n = mandoc_malloc(nsz); |
|
|
static int |
strlcpy(n, *bufp, (size_t)(stesc - *bufp + 1)); |
roffparse(struct rofftree *tree, char *buf, size_t sz) |
strlcat(n, res, nsz); |
{ |
strlcat(n, cp + (maxl ? 0 : 1), nsz); |
int tok, t; |
|
struct roffnode *n; |
|
char *argv[ROFF_MAXARG]; |
|
const char **argvp; |
|
|
|
assert(sz > 0); |
free(*bufp); |
|
|
if (ROFF_MAX == (tok = rofffindtok(buf + 1))) { |
*bufp = n; |
warnx("%s: unknown line macro (line %zu)", |
*szp = nsz; |
tree->rbuf->name, tree->rbuf->line); |
|
return(0); |
return(0); |
} else if (NULL == tokens[tok].cb) { |
} |
warnx("%s: macro `%s' not supported (line %zu)", |
|
tree->rbuf->name, toknames[tok], |
|
tree->rbuf->line); |
|
return(0); |
|
} else if (ROFF_COMMENT == tokens[tok].type) |
|
return(1); |
|
|
|
if ( ! roffargs(tok, buf, argv)) { |
|
warnx("%s: too many args to `%s' (line %zu)", |
|
tree->rbuf->name, toknames[tok], |
|
tree->rbuf->line); |
|
return(0); |
|
} else |
|
argvp = (const char **)argv + 1; |
|
|
|
/* |
return(1); |
* Prelude macros break some assumptions: branch now. |
} |
*/ |
|
|
|
if (ROFF_PRELUDE & tree->state) { |
|
assert(NULL == tree->last); |
|
return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER)); |
|
} else |
|
assert(tree->last); |
|
|
|
assert(ROFF_BODY & tree->state); |
|
|
|
/* |
enum rofferr |
* First check that our possible parents and parent's possible |
roff_parseln(struct roff *r, int ln, char **bufp, |
* children are satisfied. |
size_t *szp, int pos, int *offs) |
|
{ |
|
enum rofft t; |
|
enum rofferr e; |
|
int ppos; |
|
|
|
/* |
|
* Run the reserved-word filter only if we have some reserved |
|
* words to fill in. |
*/ |
*/ |
|
|
if ( ! roffscan(tree->last->tok, tokens[tok].parents)) { |
if (r->first_string && ! roff_res(r, bufp, szp, pos)) |
warnx("%s: invalid parent `%s' for `%s' (line %zu)", |
return(ROFF_REPARSE); |
tree->rbuf->name, |
|
toknames[tree->last->tok], |
|
toknames[tok], tree->rbuf->line); |
|
return(0); |
|
} |
|
|
|
if ( ! roffscan(tok, tokens[tree->last->tok].children)) { |
/* |
warnx("%s: invalid child `%s' for `%s' (line %zu)", |
* First, if a scope is open and we're not a macro, pass the |
tree->rbuf->name, toknames[tok], |
* text through the macro's filter. If a scope isn't open and |
toknames[tree->last->tok], |
* we're not a macro, just let it through. |
tree->rbuf->line); |
*/ |
return(0); |
|
|
if (r->last && ! ROFF_CTL((*bufp)[pos])) { |
|
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 && r->tbl) |
|
return(tbl_read(r->tbl, ln, *bufp, *offs)); |
|
return(e); |
|
} else if ( ! ROFF_CTL((*bufp)[pos])) { |
|
if (r->tbl) |
|
return(tbl_read(r->tbl, ln, *bufp, *offs)); |
|
return(ROFF_CONT); |
} |
} |
|
|
/* |
/* |
* Branch if we're not a layout token. |
* If a scope is open, go to the child handler for that macro, |
|
* as it may want to preprocess before doing anything with it. |
*/ |
*/ |
|
|
if (ROFF_LAYOUT != tokens[tok].type) |
if (r->last) { |
return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER)); |
t = r->last->tok; |
|
assert(roffs[t].sub); |
|
return((*roffs[t].sub) |
|
(r, t, bufp, szp, |
|
ln, pos, pos, offs)); |
|
} |
|
|
/* |
/* |
* Check our scope rules. |
* Lastly, as we've no scope open, try to look up and execute |
|
* the new macro. If no macro is found, simply return and let |
|
* the compilers handle it. |
*/ |
*/ |
|
|
if (0 == tokens[tok].ctx) |
ppos = pos; |
return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER)); |
if (ROFF_MAX == (t = roff_parse(r, *bufp, &pos))) |
|
return(ROFF_CONT); |
|
|
if (tok == tokens[tok].ctx) { |
assert(roffs[t].proc); |
for (n = tree->last; n; n = n->parent) { |
return((*roffs[t].proc) |
assert(0 == tokens[n->tok].ctx || |
(r, t, bufp, szp, |
n->tok == tokens[n->tok].ctx); |
ln, ppos, pos, offs)); |
if (n->tok == tok) |
} |
break; |
|
} |
|
if (NULL == n) { |
|
#ifdef DEBUG |
|
(void)printf("scope: new `%s'\n", |
|
toknames[tok]); |
|
#endif |
|
return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER)); |
|
} |
|
do { |
|
t = tree->last->tok; |
|
#ifdef DEBUG |
|
(void)printf("scope: closing `%s'\n", |
|
toknames[t]); |
|
#endif |
|
if ( ! (*tokens[t].cb)(t, tree, NULL, ROFF_EXIT)) |
|
return(0); |
|
} while (t != tok); |
|
|
|
return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER)); |
|
} |
|
|
|
assert(tok != tokens[tok].ctx && 0 != tokens[tok].ctx); |
int |
|
roff_endparse(struct roff *r) |
|
{ |
|
|
do { |
if (r->last || r->tbl) |
t = tree->last->tok; |
(*r->msg)(MANDOCERR_SCOPEEXIT, r->data, |
#ifdef DEBUG |
r->last->line, r->last->col, NULL); |
(void)printf("scope: closing `%s'\n", toknames[t]); |
return(1); |
#endif |
} |
if ( ! (*tokens[t].cb)(t, tree, NULL, ROFF_EXIT)) |
|
return(0); |
|
} while (t != tokens[tok].ctx); |
|
|
|
return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER)); |
|
|
/* |
|
* Parse a roff node's type from the input buffer. This must be in the |
|
* form of ".foo xxx" in the usual way. |
|
*/ |
|
static enum rofft |
|
roff_parse(struct roff *r, const char *buf, int *pos) |
|
{ |
|
const char *mac; |
|
size_t maclen; |
|
enum rofft t; |
|
|
|
assert(ROFF_CTL(buf[*pos])); |
|
(*pos)++; |
|
|
|
while (' ' == buf[*pos] || '\t' == buf[*pos]) |
|
(*pos)++; |
|
|
|
if ('\0' == buf[*pos]) |
|
return(ROFF_MAX); |
|
|
|
mac = buf + *pos; |
|
maclen = strcspn(mac, " \\\t\0"); |
|
|
|
t = (r->current_string = roff_getstrn(r, mac, maclen)) |
|
? ROFF_USERDEF : roff_hash_find(mac, maclen); |
|
|
|
*pos += maclen; |
|
while (buf[*pos] && ' ' == buf[*pos]) |
|
(*pos)++; |
|
|
|
return(t); |
} |
} |
|
|
|
|
static int |
static int |
rofffindarg(const char *name) |
roff_parse_nat(const char *buf, unsigned int *res) |
{ |
{ |
size_t i; |
char *ep; |
|
long lval; |
|
|
/* FIXME: use a table, this is slow but ok for now. */ |
errno = 0; |
|
lval = strtol(buf, &ep, 10); |
|
if (buf[0] == '\0' || *ep != '\0') |
|
return(0); |
|
if ((errno == ERANGE && |
|
(lval == LONG_MAX || lval == LONG_MIN)) || |
|
(lval > INT_MAX || lval < 0)) |
|
return(0); |
|
|
/* LINTED */ |
*res = (unsigned int)lval; |
for (i = 0; i < ROFF_ARGMAX; i++) |
return(1); |
/* LINTED */ |
|
if (0 == strcmp(name, tokargnames[i])) |
|
return((int)i); |
|
|
|
return(ROFF_ARGMAX); |
|
} |
} |
|
|
|
|
static int |
/* ARGSUSED */ |
rofffindtok(const char *buf) |
static enum rofferr |
|
roff_cblock(ROFF_ARGS) |
{ |
{ |
char token[4]; |
|
size_t i; |
|
|
|
for (i = 0; *buf && ! isspace(*buf) && i < 3; i++, buf++) |
/* |
token[i] = *buf; |
* A block-close `..' should only be invoked as a child of an |
|
* ignore macro, otherwise raise a warning and just ignore it. |
|
*/ |
|
|
if (i == 3) { |
if (NULL == r->last) { |
#ifdef DEBUG |
(*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL); |
(void)printf("lookup: macro too long: `%s'\n", buf); |
return(ROFF_IGN); |
#endif |
|
return(ROFF_MAX); |
|
} |
} |
|
|
token[i] = 0; |
switch (r->last->tok) { |
|
case (ROFF_am): |
|
/* FALLTHROUGH */ |
|
case (ROFF_ami): |
|
/* FALLTHROUGH */ |
|
case (ROFF_am1): |
|
/* FALLTHROUGH */ |
|
case (ROFF_de): |
|
/* ROFF_de1 is remapped to ROFF_de in roff_block(). */ |
|
/* FALLTHROUGH */ |
|
case (ROFF_dei): |
|
/* FALLTHROUGH */ |
|
case (ROFF_ig): |
|
break; |
|
default: |
|
(*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL); |
|
return(ROFF_IGN); |
|
} |
|
|
/* FIXME: use a table, this is slow but ok for now. */ |
if ((*bufp)[pos]) |
|
(*r->msg)(MANDOCERR_ARGSLOST, r->data, ln, pos, NULL); |
|
|
/* LINTED */ |
roffnode_pop(r); |
for (i = 0; i < ROFF_MAX; i++) |
roffnode_cleanscope(r); |
/* LINTED */ |
return(ROFF_IGN); |
if (0 == strcmp(toknames[i], token)) { |
|
#ifdef DEBUG |
|
(void)printf("lookup (good): `%s' (%d)\n", |
|
token, (int)i); |
|
#endif |
|
return((int)i); |
|
} |
|
|
|
#ifdef DEBUG |
|
(void)printf("lookup (bad): `%s'\n", token); |
|
#endif |
|
|
|
return(ROFF_MAX); |
|
} |
} |
|
|
|
|
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 == r->last) { |
if (NULL == (p = malloc(sizeof(struct roffnode)))) { |
(*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL); |
warn("malloc"); |
return(ROFF_IGN); |
return(NULL); |
|
} |
} |
|
|
p->line = tree->rbuf->line; |
switch (r->last->tok) { |
p->tok = tokid; |
case (ROFF_el): |
p->parent = tree->last; |
/* FALLTHROUGH */ |
tree->last = p; |
case (ROFF_ie): |
return(p); |
/* FALLTHROUGH */ |
|
case (ROFF_if): |
|
break; |
|
default: |
|
(*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL); |
|
return(ROFF_IGN); |
|
} |
|
|
|
if (r->last->endspan > -1) { |
|
(*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL); |
|
return(ROFF_IGN); |
|
} |
|
|
|
if ((*bufp)[pos]) |
|
(*r->msg)(MANDOCERR_ARGSLOST, r->data, 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); |
(*r->msg)(MANDOCERR_NOARGS, r->data, 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 |
|
(*r->msg)(MANDOCERR_REQUEST, r->data, ln, ppos, |
|
roffs[tok].name); |
|
|
|
while ((*bufp)[pos] && ' ' != (*bufp)[pos]) |
|
pos++; |
|
|
|
while (' ' == (*bufp)[pos]) |
|
(*bufp)[pos++] = '\0'; |
|
} |
|
|
|
roffnode_push(r, tok, name, ln, ppos); |
|
|
|
/* |
|
* 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. |
|
*/ |
|
|
|
if (ROFF_de == tok) |
|
roff_setstr(r, name, "", 0); |
|
|
|
if ('\0' == (*bufp)[pos]) |
|
return(ROFF_IGN); |
|
|
|
/* If present, process the custom end-of-line marker. */ |
|
|
|
sv = pos; |
|
while ((*bufp)[pos] && |
|
' ' != (*bufp)[pos] && |
|
'\t' != (*bufp)[pos]) |
|
pos++; |
|
|
|
/* |
|
* Note: groff does NOT like escape characters in the input. |
|
* Instead of detecting this, we're just going to let it fly and |
|
* to hell with it. |
|
*/ |
|
|
|
assert(pos > sv); |
|
sz = (size_t)(pos - sv); |
|
|
|
if (1 == sz && '.' == (*bufp)[sv]) |
|
return(ROFF_IGN); |
|
|
|
r->last->end = mandoc_malloc(sz + 1); |
|
|
|
memcpy(r->last->end, *bufp + sv, sz); |
|
r->last->end[(int)sz] = '\0'; |
|
|
|
if ((*bufp)[pos]) |
|
(*r->msg)(MANDOCERR_ARGSLOST, r->data, ln, pos, NULL); |
|
|
|
return(ROFF_IGN); |
} |
} |
|
|
|
|
static void |
/* ARGSUSED */ |
roffnode_free(int tokid, struct rofftree *tree) |
static enum rofferr |
|
roff_block_sub(ROFF_ARGS) |
{ |
{ |
struct roffnode *p; |
enum rofft t; |
|
int i, j; |
|
|
assert(tree->last); |
/* |
assert(tree->last->tok == tokid); |
* First check whether a custom macro exists at this level. If |
|
* it does, then check against it. This is some of groff's |
|
* stranger behaviours. If we encountered a custom end-scope |
|
* tag and that tag also happens to be a "real" macro, then we |
|
* need to try interpreting it again as a real macro. If it's |
|
* not, then return ignore. Else continue. |
|
*/ |
|
|
p = tree->last; |
if (r->last->end) { |
tree->last = tree->last->parent; |
i = pos + 1; |
free(p); |
while (' ' == (*bufp)[i] || '\t' == (*bufp)[i]) |
|
i++; |
|
|
|
for (j = 0; r->last->end[j]; j++, i++) |
|
if ((*bufp)[i] != r->last->end[j]) |
|
break; |
|
|
|
if ('\0' == r->last->end[j] && |
|
('\0' == (*bufp)[i] || |
|
' ' == (*bufp)[i] || |
|
'\t' == (*bufp)[i])) { |
|
roffnode_pop(r); |
|
roffnode_cleanscope(r); |
|
|
|
if (ROFF_MAX != roff_parse(r, *bufp, &pos)) |
|
return(ROFF_RERUN); |
|
return(ROFF_IGN); |
|
} |
|
} |
|
|
|
/* |
|
* If we have no custom end-query or lookup failed, then try |
|
* pulling it out of the hashtable. |
|
*/ |
|
|
|
ppos = pos; |
|
t = roff_parse(r, *bufp, &pos); |
|
|
|
/* |
|
* 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); |
|
} |
|
|
|
assert(roffs[t].proc); |
|
return((*roffs[t].proc)(r, t, bufp, szp, |
|
ln, ppos, pos, offs)); |
} |
} |
|
|
|
|
static int |
/* ARGSUSED */ |
roffnextopt(int tok, const char ***in, char **val) |
static enum rofferr |
|
roff_block_text(ROFF_ARGS) |
{ |
{ |
const char *arg, **argv; |
|
int v; |
|
|
|
*val = NULL; |
if (ROFF_de == tok) |
argv = *in; |
roff_setstr(r, r->last->name, *bufp + pos, 1); |
assert(argv); |
|
|
|
if (NULL == (arg = *argv)) |
return(ROFF_IGN); |
return(-1); |
} |
if ('-' != *arg) |
|
return(-1); |
|
|
|
/* FIXME: should we let this slide... ? */ |
|
|
|
if (ROFF_ARGMAX == (v = rofffindarg(&arg[1]))) |
/* ARGSUSED */ |
return(-1); |
static enum rofferr |
|
roff_cond_sub(ROFF_ARGS) |
|
{ |
|
enum rofft t; |
|
enum roffrule rr; |
|
|
/* FIXME: should we let this slide... ? */ |
ppos = pos; |
|
rr = r->last->rule; |
|
|
if ( ! roffargok(tok, v)) |
/* |
return(-1); |
* Clean out scope. If we've closed ourselves, then don't |
if ( ! (ROFF_VALUE & tokenargs[v].flags)) |
* continue. |
return(v); |
*/ |
|
|
*in = ++argv; |
roffnode_cleanscope(r); |
|
|
/* FIXME: what if this looks like a roff token or argument? */ |
if (ROFF_MAX == (t = roff_parse(r, *bufp, &pos))) { |
|
if ('\\' == (*bufp)[pos] && '}' == (*bufp)[pos + 1]) |
|
return(roff_ccond |
|
(r, ROFF_ccond, bufp, szp, |
|
ln, pos, pos + 2, offs)); |
|
return(ROFFRULE_DENY == rr ? ROFF_IGN : ROFF_CONT); |
|
} |
|
|
return(*argv ? v : ROFF_ARGMAX); |
/* |
|
* A denied conditional must evaluate its children if and only |
|
* if they're either structurally required (such as loops and |
|
* conditionals) or a closing macro. |
|
*/ |
|
if (ROFFRULE_DENY == rr) |
|
if ( ! (ROFFMAC_STRUCT & roffs[t].flags)) |
|
if (ROFF_ccond != t) |
|
return(ROFF_IGN); |
|
|
|
assert(roffs[t].proc); |
|
return((*roffs[t].proc)(r, t, bufp, szp, |
|
ln, ppos, pos, offs)); |
} |
} |
|
|
|
|
/* ARGSUSED */ |
/* ARGSUSED */ |
static int |
static enum rofferr |
roff_Dd(ROFFCALL_ARGS) |
roff_cond_text(ROFF_ARGS) |
{ |
{ |
|
char *ep, *st; |
|
enum roffrule rr; |
|
|
if (ROFF_BODY & tree->state) { |
rr = r->last->rule; |
assert( ! (ROFF_PRELUDE & tree->state)); |
|
assert(ROFF_PRELUDE_Dd & tree->state); |
/* |
return(roff_text(tok, tree, argv, type)); |
* We display the value of the text if out current evaluation |
|
* scope permits us to do so. |
|
*/ |
|
|
|
/* FIXME: use roff_ccond? */ |
|
|
|
st = &(*bufp)[pos]; |
|
if (NULL == (ep = strstr(st, "\\}"))) { |
|
roffnode_cleanscope(r); |
|
return(ROFFRULE_DENY == rr ? ROFF_IGN : ROFF_CONT); |
} |
} |
|
|
assert(ROFF_PRELUDE & tree->state); |
if (ep == st || (ep > st && '\\' != *(ep - 1))) |
assert( ! (ROFF_BODY & tree->state)); |
roffnode_pop(r); |
|
|
if (ROFF_PRELUDE_Dd & tree->state) { |
roffnode_cleanscope(r); |
warnx("%s: prelude `Dd' repeated (line %zu)", |
return(ROFFRULE_DENY == rr ? ROFF_IGN : ROFF_CONT); |
tree->rbuf->name, tree->rbuf->line); |
} |
return(0); |
|
} else if (ROFF_PRELUDE_Dt & tree->state) { |
|
warnx("%s: prelude `Dd' out-of-order (line %zu)", |
static enum roffrule |
tree->rbuf->name, tree->rbuf->line); |
roff_evalcond(const char *v, int *pos) |
return(0); |
{ |
|
|
|
switch (v[*pos]) { |
|
case ('n'): |
|
(*pos)++; |
|
return(ROFFRULE_ALLOW); |
|
case ('e'): |
|
/* FALLTHROUGH */ |
|
case ('o'): |
|
/* FALLTHROUGH */ |
|
case ('t'): |
|
(*pos)++; |
|
return(ROFFRULE_DENY); |
|
default: |
|
break; |
} |
} |
|
|
/* TODO: parse date. */ |
while (v[*pos] && ' ' != v[*pos]) |
|
(*pos)++; |
|
return(ROFFRULE_DENY); |
|
} |
|
|
assert(NULL == tree->last); |
/* ARGSUSED */ |
tree->state |= ROFF_PRELUDE_Dd; |
static enum rofferr |
|
roff_line_ignore(ROFF_ARGS) |
|
{ |
|
|
return(1); |
return(ROFF_IGN); |
} |
} |
|
|
|
/* ARGSUSED */ |
|
static enum rofferr |
|
roff_line_error(ROFF_ARGS) |
|
{ |
|
|
|
(*r->msg)(MANDOCERR_REQUEST, r->data, ln, ppos, roffs[tok].name); |
|
return(ROFF_IGN); |
|
} |
|
|
/* ARGSUSED */ |
/* ARGSUSED */ |
static int |
static enum rofferr |
roff_Dt(ROFFCALL_ARGS) |
roff_cond(ROFF_ARGS) |
{ |
{ |
|
int sv; |
|
enum roffrule rule; |
|
|
if (ROFF_BODY & tree->state) { |
/* Stack overflow! */ |
assert( ! (ROFF_PRELUDE & tree->state)); |
|
assert(ROFF_PRELUDE_Dt & tree->state); |
if (ROFF_ie == tok && r->rstackpos == RSTACK_MAX - 1) { |
return(roff_text(tok, tree, argv, type)); |
(*r->msg)(MANDOCERR_MEM, r->data, ln, ppos, NULL); |
|
return(ROFF_ERR); |
} |
} |
|
|
assert(ROFF_PRELUDE & tree->state); |
/* First, evaluate the conditional. */ |
assert( ! (ROFF_BODY & tree->state)); |
|
|
|
if ( ! (ROFF_PRELUDE_Dd & tree->state)) { |
if (ROFF_el == tok) { |
warnx("%s: prelude `Dt' out-of-order (line %zu)", |
/* |
tree->rbuf->name, tree->rbuf->line); |
* An `.el' will get the value of the current rstack |
return(0); |
* entry set in prior `ie' calls or defaults to DENY. |
} else if (ROFF_PRELUDE_Dt & tree->state) { |
*/ |
warnx("%s: prelude `Dt' repeated (line %zu)", |
if (r->rstackpos < 0) |
tree->rbuf->name, tree->rbuf->line); |
rule = ROFFRULE_DENY; |
return(0); |
else |
|
rule = r->rstack[r->rstackpos]; |
|
} else |
|
rule = roff_evalcond(*bufp, &pos); |
|
|
|
sv = pos; |
|
|
|
while (' ' == (*bufp)[pos]) |
|
pos++; |
|
|
|
/* |
|
* Roff is weird. If we have just white-space after the |
|
* conditional, it's considered the BODY and we exit without |
|
* really doing anything. Warn about this. It's probably |
|
* wrong. |
|
*/ |
|
|
|
if ('\0' == (*bufp)[pos] && sv != pos) { |
|
(*r->msg)(MANDOCERR_NOARGS, r->data, ln, ppos, NULL); |
|
return(ROFF_IGN); |
} |
} |
|
|
/* TODO: parse date. */ |
roffnode_push(r, tok, NULL, ln, ppos); |
|
|
assert(NULL == tree->last); |
r->last->rule = rule; |
tree->state |= ROFF_PRELUDE_Dt; |
|
|
|
return(1); |
if (ROFF_ie == tok) { |
|
/* |
|
* An if-else will put the NEGATION of the current |
|
* evaluated conditional into the stack. |
|
*/ |
|
r->rstackpos++; |
|
if (ROFFRULE_DENY == r->last->rule) |
|
r->rstack[r->rstackpos] = ROFFRULE_ALLOW; |
|
else |
|
r->rstack[r->rstackpos] = ROFFRULE_DENY; |
|
} |
|
|
|
/* If the parent has false as its rule, then so do we. */ |
|
|
|
if (r->last->parent && ROFFRULE_DENY == r->last->parent->rule) |
|
r->last->rule = ROFFRULE_DENY; |
|
|
|
/* |
|
* Determine scope. If we're invoked with "\{" trailing the |
|
* conditional, then we're in a multiline scope. Else our scope |
|
* expires on the next line. |
|
*/ |
|
|
|
r->last->endspan = 1; |
|
|
|
if ('\\' == (*bufp)[pos] && '{' == (*bufp)[pos + 1]) { |
|
r->last->endspan = -1; |
|
pos += 2; |
|
} |
|
|
|
/* |
|
* If there are no arguments on the line, the next-line scope is |
|
* assumed. |
|
*/ |
|
|
|
if ('\0' == (*bufp)[pos]) |
|
return(ROFF_IGN); |
|
|
|
/* 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 *name, *string; |
|
|
if (ROFF_EXIT == type) { |
/* |
assert(ROFF_PRELUDE_Os & tree->state); |
* A symbol is named by the first word following the macro |
return(roff_layout(tok, tree, argv, type)); |
* invocation up to a space. Its value is anything after the |
} else if (ROFF_BODY & tree->state) { |
* name's trailing whitespace and optional double-quote. Thus, |
assert( ! (ROFF_PRELUDE & tree->state)); |
* |
assert(ROFF_PRELUDE_Os & tree->state); |
* [.ds foo "bar " ] |
return(roff_text(tok, tree, argv, type)); |
* |
} |
* will have `bar " ' as its value. |
|
*/ |
|
|
assert(ROFF_PRELUDE & tree->state); |
name = *bufp + pos; |
if ( ! (ROFF_PRELUDE_Dt & tree->state) || |
if ('\0' == *name) |
! (ROFF_PRELUDE_Dd & tree->state)) { |
return(ROFF_IGN); |
warnx("%s: prelude `Os' out-of-order (line %zu)", |
|
tree->rbuf->name, tree->rbuf->line); |
|
return(0); |
|
} |
|
|
|
/* TODO: extract OS. */ |
string = name; |
|
/* Read until end of name. */ |
|
while (*string && ' ' != *string) |
|
string++; |
|
|
tree->state |= ROFF_PRELUDE_Os; |
/* Nil-terminate name. */ |
tree->state &= ~ROFF_PRELUDE; |
if (*string) |
tree->state |= ROFF_BODY; |
*(string++) = '\0'; |
|
|
|
/* Read past spaces. */ |
|
while (*string && ' ' == *string) |
|
string++; |
|
|
assert(NULL == tree->last); |
/* Read passed initial double-quote. */ |
|
if (*string && '"' == *string) |
|
string++; |
|
|
return(roff_layout(tok, tree, argv, type)); |
/* The rest is the value. */ |
|
roff_setstr(r, name, string, 0); |
|
return(ROFF_IGN); |
} |
} |
|
|
|
|
/* ARGSUSED */ |
/* ARGSUSED */ |
static int |
static enum rofferr |
roff_layout(ROFFCALL_ARGS) |
roff_nr(ROFF_ARGS) |
{ |
{ |
int i, c, argcp[ROFF_MAXARG]; |
const char *key, *val; |
char *v, *argvp[ROFF_MAXARG]; |
struct reg *rg; |
|
|
if (ROFF_PRELUDE & tree->state) { |
key = &(*bufp)[pos]; |
warnx("%s: macro `%s' called in prelude (line %zu)", |
rg = r->regs->regs; |
tree->rbuf->name, |
|
toknames[tok], |
|
tree->rbuf->line); |
|
return(0); |
|
} |
|
|
|
if (ROFF_EXIT == type) { |
/* Parse register request. */ |
roffnode_free(tok, tree); |
while ((*bufp)[pos] && ' ' != (*bufp)[pos]) |
return((*tree->cb->roffblkout)(tok)); |
pos++; |
} |
|
|
|
i = 0; |
/* |
|
* Set our nil terminator. Because this line is going to be |
|
* ignored anyway, we can munge it as we please. |
|
*/ |
|
if ((*bufp)[pos]) |
|
(*bufp)[pos++] = '\0'; |
|
|
while (-1 != (c = roffnextopt(tok, &argv, &v))) { |
/* Skip whitespace to register token. */ |
if (ROFF_ARGMAX == c) { |
while ((*bufp)[pos] && ' ' == (*bufp)[pos]) |
warnx("%s: error parsing `%s' args (line %zu)", |
pos++; |
tree->rbuf->name, |
|
toknames[tok], |
val = &(*bufp)[pos]; |
tree->rbuf->line); |
|
return(0); |
/* Process register token. */ |
} else if ( ! roffargok(tok, c)) { |
|
warnx("%s: arg `%s' not for `%s' (line %zu)", |
if (0 == strcmp(key, "nS")) { |
tree->rbuf->name, |
rg[(int)REG_nS].set = 1; |
tokargnames[c], |
if ( ! roff_parse_nat(val, &rg[(int)REG_nS].v.u)) |
toknames[tok], |
rg[(int)REG_nS].v.u = 0; |
tree->rbuf->line); |
|
return(0); |
|
} |
|
argcp[i] = c; |
|
argvp[i] = v; |
|
i++; |
|
argv++; |
|
} |
} |
|
|
argcp[i] = ROFF_ARGMAX; |
return(ROFF_IGN); |
argvp[i] = NULL; |
} |
|
|
if (NULL == roffnode_new(tok, tree)) |
/* ARGSUSED */ |
return(0); |
static enum rofferr |
|
roff_TE(ROFF_ARGS) |
|
{ |
|
|
if ( ! (*tree->cb->roffin)(tok, argcp, argvp)) |
if (NULL == r->tbl) |
return(0); |
(*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL); |
|
else |
|
tbl_free(r->tbl); |
|
|
if ( ! (ROFF_PARSED & tokens[tok].flags)) { |
r->tbl = NULL; |
/* TODO: print all tokens. */ |
return(ROFF_IGN); |
|
} |
|
|
if ( ! ((*tree->cb->roffout)(tok))) |
/* ARGSUSED */ |
return(0); |
static enum rofferr |
return((*tree->cb->roffblkin)(tok)); |
roff_TS(ROFF_ARGS) |
|
{ |
|
|
|
if (r->tbl) { |
|
(*r->msg)(MANDOCERR_SCOPEBROKEN, r->data, ln, ppos, NULL); |
|
tbl_reset(r->tbl); |
|
} else |
|
r->tbl = tbl_alloc(); |
|
|
|
return(ROFF_IGN); |
|
} |
|
|
|
/* ARGSUSED */ |
|
static enum rofferr |
|
roff_so(ROFF_ARGS) |
|
{ |
|
char *name; |
|
|
|
(*r->msg)(MANDOCERR_SO, r->data, ln, ppos, NULL); |
|
|
|
/* |
|
* 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. |
|
*/ |
|
|
|
name = *bufp + pos; |
|
if ('/' == *name || strstr(name, "../") || strstr(name, "/..")) { |
|
(*r->msg)(MANDOCERR_SOPATH, r->data, ln, pos, NULL); |
|
return(ROFF_ERR); |
} |
} |
|
|
while (*argv) { |
*offs = pos; |
if (ROFF_MAX != (c = rofffindcallable(*argv))) { |
return(ROFF_SO); |
if (NULL == tokens[c].cb) { |
} |
warnx("%s: macro `%s' not supported " |
|
"(line %zu)", |
/* ARGSUSED */ |
tree->rbuf->name, |
static enum rofferr |
toknames[c], |
roff_userdef(ROFF_ARGS) |
tree->rbuf->line); |
{ |
return(0); |
const char *arg[9]; |
|
char *cp, *n1, *n2; |
|
int i, quoted, pairs; |
|
|
|
/* |
|
* Collect pointers to macro argument strings |
|
* and null-terminate them. |
|
*/ |
|
cp = *bufp + pos; |
|
for (i = 0; i < 9; i++) { |
|
/* Quoting can only start with a new word. */ |
|
if ('"' == *cp) { |
|
quoted = 1; |
|
cp++; |
|
} else |
|
quoted = 0; |
|
arg[i] = cp; |
|
for (pairs = 0; '\0' != *cp; cp++) { |
|
/* Unquoted arguments end at blanks. */ |
|
if (0 == quoted) { |
|
if (' ' == *cp) |
|
break; |
|
continue; |
} |
} |
if ( ! (*tokens[c].cb)(c, tree, |
/* After pairs of quotes, move left. */ |
argv + 1, ROFF_ENTER)) |
if (pairs) |
return(0); |
cp[-pairs] = cp[0]; |
|
/* Pairs of quotes do not end words, ... */ |
|
if ('"' == cp[0] && '"' == cp[1]) { |
|
pairs++; |
|
cp++; |
|
continue; |
|
} |
|
/* ... but solitary quotes do. */ |
|
if ('"' != *cp) |
|
continue; |
|
if (pairs) |
|
cp[-pairs] = '\0'; |
|
*cp = ' '; |
|
break; |
} |
} |
/* TODO: print token. */ |
/* Last argument; the remaining ones are empty strings. */ |
argv++; |
if ('\0' == *cp) |
|
continue; |
|
/* Null-terminate argument and move to the next one. */ |
|
*cp++ = '\0'; |
|
while (' ' == *cp) |
|
cp++; |
} |
} |
|
|
if ( ! ((*tree->cb->roffout)(tok))) |
/* |
return(0); |
* Expand macro arguments. |
|
*/ |
|
*szp = 0; |
|
n1 = cp = mandoc_strdup(r->current_string); |
|
while (NULL != (cp = strstr(cp, "\\$"))) { |
|
i = cp[2] - '1'; |
|
if (0 > i || 8 < i) { |
|
/* Not an argument invocation. */ |
|
cp += 2; |
|
continue; |
|
} |
|
|
return((*tree->cb->roffblkin)(tok)); |
*szp = strlen(n1) - 3 + strlen(arg[i]) + 1; |
} |
n2 = mandoc_malloc(*szp); |
|
|
|
strlcpy(n2, n1, (size_t)(cp - n1 + 1)); |
|
strlcat(n2, arg[i], *szp); |
|
strlcat(n2, cp + 3, *szp); |
|
|
/* ARGSUSED */ |
cp = n2 + (cp - n1); |
static int |
free(n1); |
roff_text(ROFFCALL_ARGS) |
n1 = n2; |
|
} |
|
|
|
/* |
|
* Replace the macro invocation |
|
* by the expanded macro. |
|
*/ |
|
free(*bufp); |
|
*bufp = n1; |
|
if (0 == *szp) |
|
*szp = strlen(*bufp) + 1; |
|
|
|
return(*szp > 1 && '\n' == (*bufp)[(int)*szp - 2] ? |
|
ROFF_REPARSE : ROFF_APPEND); |
|
} |
|
|
|
/* |
|
* 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 |
|
roff_setstr(struct roff *r, const char *name, const char *string, |
|
int multiline) |
{ |
{ |
int i, c, argcp[ROFF_MAXARG]; |
struct roffstr *n; |
char *v, *argvp[ROFF_MAXARG]; |
char *c; |
|
size_t oldch, newch; |
|
|
if (ROFF_PRELUDE & tree->state) { |
/* Search for an existing string with the same name. */ |
warnx("%s: macro `%s' called in prelude (line %zu)", |
n = r->first_string; |
tree->rbuf->name, |
while (n && strcmp(name, n->name)) |
toknames[tok], |
n = n->next; |
tree->rbuf->line); |
|
return(0); |
if (NULL == n) { |
|
/* 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; |
} |
} |
|
|
i = 0; |
if (NULL == string) |
|
return; |
|
|
while (-1 != (c = roffnextopt(tok, &argv, &v))) { |
/* |
if (ROFF_ARGMAX == c) { |
* One additional byte for the '\n' in multiline mode, |
warnx("%s: error parsing `%s' args (line %zu)", |
* and one for the terminating '\0'. |
tree->rbuf->name, |
*/ |
toknames[tok], |
newch = strlen(string) + (multiline ? 2 : 1); |
tree->rbuf->line); |
if (NULL == n->string) { |
return(0); |
n->string = mandoc_malloc(newch); |
} |
*n->string = '\0'; |
argcp[i] = c; |
oldch = 0; |
argvp[i] = v; |
} else { |
i++; |
oldch = strlen(n->string); |
argv++; |
n->string = mandoc_realloc(n->string, oldch + newch); |
} |
} |
|
|
argcp[i] = ROFF_ARGMAX; |
/* Skip existing content in the destination buffer. */ |
argvp[i] = NULL; |
c = n->string + oldch; |
|
|
if ( ! (*tree->cb->roffin)(tok, argcp, argvp)) |
/* Append new content to the destination buffer. */ |
return(0); |
while (*string) { |
|
/* |
if ( ! (ROFF_PARSED & tokens[tok].flags)) { |
* Rudimentary roff copy mode: |
/* TODO: print all tokens. */ |
* Handle escaped backslashes. |
return((*tree->cb->roffout)(tok)); |
*/ |
|
if ('\\' == *string && '\\' == *(string + 1)) |
|
string++; |
|
*c++ = *string++; |
} |
} |
|
|
while (*argv) { |
/* Append terminating bytes. */ |
if (ROFF_MAX != (c = rofffindcallable(*argv))) { |
if (multiline) |
if (NULL == tokens[c].cb) { |
*c++ = '\n'; |
warnx("%s: macro `%s' not supported " |
*c = '\0'; |
"(line %zu)", |
} |
tree->rbuf->name, |
|
toknames[c], |
|
tree->rbuf->line); |
|
return(0); |
|
} |
|
if ( ! (*tokens[c].cb)(c, tree, |
|
argv + 1, ROFF_ENTER)) |
|
return(0); |
|
} |
|
/* TODO: print token. */ |
|
argv++; |
|
} |
|
|
|
return((*tree->cb->roffout)(tok)); |
|
|
static const char * |
|
roff_getstrn(const struct roff *r, const char *name, size_t len) |
|
{ |
|
const struct roffstr *n; |
|
|
|
n = r->first_string; |
|
while (n && (strncmp(name, n->name, len) || '\0' != n->name[(int)len])) |
|
n = n->next; |
|
|
|
return(n ? n->string : NULL); |
} |
} |
|
|
|
|
/* ARGUSED */ |
static void |
static int |
roff_freestr(struct roff *r) |
roff_comment(ROFFCALL_ARGS) |
|
{ |
{ |
|
struct roffstr *n, *nn; |
|
|
return(1); |
for (n = r->first_string; n; n = nn) { |
|
free(n->name); |
|
free(n->string); |
|
nn = n->next; |
|
free(n); |
|
} |
|
|
|
r->first_string = NULL; |
} |
} |