version 1.39, 2008/12/04 19:31:57 |
version 1.105, 2010/12/01 16:54:25 |
|
|
/* $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 AUTHOR DISCLAIMS 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 AUTHOR 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 <errno.h> |
#include <ctype.h> |
#include <ctype.h> |
#include <err.h> |
#include <limits.h> |
#include <stdarg.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 "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? */ |
|
/* TODO: validate Dt macro arguments. */ |
|
|
|
enum roffd { |
#define ROFF_CTL(c) \ |
ROFF_ENTER = 0, |
('.' == (c) || '\'' == (c)) |
ROFF_EXIT |
|
|
#if 1 |
|
#define ROFF_DEBUG(fmt, args...) \ |
|
do { /* Nothing. */ } while (/*CONSTCOND*/ 0) |
|
#else |
|
#define ROFF_DEBUG(fmt, args...) \ |
|
do { fprintf(stderr, fmt , ##args); } while (/*CONSTCOND*/ 0) |
|
#endif |
|
|
|
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_cblock, |
|
ROFF_ccond, /* FIXME: remove this. */ |
|
ROFF_MAX |
}; |
}; |
|
|
enum rofftype { |
enum roffrule { |
ROFF_COMMENT, |
ROFFRULE_ALLOW, |
ROFF_TEXT, |
ROFFRULE_DENY |
ROFF_LAYOUT, |
|
ROFF_SPECIAL |
|
}; |
}; |
|
|
#define ROFFCALL_ARGS \ |
|
int tok, struct rofftree *tree, \ |
|
char *argv[], enum roffd type |
|
|
|
struct rofftree; |
struct roffstr { |
|
char *name; /* key of symbol */ |
struct rofftok { |
char *string; /* current value */ |
int (*cb)(ROFFCALL_ARGS); /* Callback. */ |
struct roffstr *next; /* next in list */ |
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 roffnode *last; /* leaf of stack */ |
#define ROFF_VALUE (1 << 0) /* Has a value. */ |
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; |
}; |
}; |
|
|
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 *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. */ |
|
#define ROFF_PRELUDE_Os (1 << 2) /* `Os' is parsed. */ |
|
#define ROFF_PRELUDE_Dt (1 << 3) /* `Dt' is parsed. */ |
|
#define ROFF_PRELUDE_Dd (1 << 4) /* `Dd' is parsed. */ |
|
#define ROFF_BODY (1 << 5) /* In roff body. */ |
|
struct roffcb cb; /* Callbacks. */ |
|
void *arg; /* Callbacks' arg. */ |
|
}; |
|
|
|
static int roff_Dd(ROFFCALL_ARGS); |
typedef enum rofferr (*roffproc)(ROFF_ARGS); |
static int roff_Dt(ROFFCALL_ARGS); |
|
static int roff_Os(ROFFCALL_ARGS); |
|
static int roff_Ns(ROFFCALL_ARGS); |
|
static int roff_Sm(ROFFCALL_ARGS); |
|
static int roff_layout(ROFFCALL_ARGS); |
|
static int roff_text(ROFFCALL_ARGS); |
|
static int roff_noop(ROFFCALL_ARGS); |
|
static int roff_depr(ROFFCALL_ARGS); |
|
static struct roffnode *roffnode_new(int, struct rofftree *); |
|
static void roffnode_free(struct rofftree *); |
|
static void roff_warn(const struct rofftree *, |
|
const char *, char *, ...); |
|
static void roff_err(const struct rofftree *, |
|
const char *, char *, ...); |
|
static int roffpurgepunct(struct rofftree *, char **); |
|
static int roffscan(int, const int *); |
|
static int rofffindtok(const char *); |
|
static int rofffindarg(const char *); |
|
static int rofffindcallable(const char *); |
|
static int roffargs(const struct rofftree *, |
|
int, char *, char **); |
|
static int roffargok(int, int); |
|
static int roffnextopt(const struct rofftree *, |
|
int, char ***, char **); |
|
static int roffparseopts(struct rofftree *, int, |
|
char ***, int *, char **); |
|
static int roffcall(struct rofftree *, int, char **); |
|
static int roffparse(struct rofftree *, char *); |
|
static int textparse(struct rofftree *, char *); |
|
static int roffdata(struct rofftree *, int, char *); |
|
|
|
#ifdef __linux__ |
struct roffmac { |
extern size_t strlcat(char *, const char *, size_t); |
const char *name; /* macro name */ |
extern size_t strlcpy(char *, const char *, size_t); |
roffproc proc; /* process new macro */ |
extern int vsnprintf(char *, size_t, |
roffproc text; /* process as child text of macro */ |
const char *, va_list); |
roffproc sub; /* process as child of macro */ |
extern char *strptime(const char *, const char *, |
int flags; |
struct tm *); |
#define ROFFMAC_STRUCT (1 << 0) /* always interpret */ |
#endif |
struct roffmac *next; |
|
}; |
|
|
|
static enum rofferr roff_block(ROFF_ARGS); |
|
static enum rofferr roff_block_text(ROFF_ARGS); |
|
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 *); |
|
static enum rofferr roff_so(ROFF_ARGS); |
|
static char *roff_strdup(const char *); |
|
|
static const int roffarg_An[] = { ROFF_Split, ROFF_Nosplit, ROFF_ARGMAX }; |
/* See roff_hash_find() */ |
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 }; |
#define ASCII_HI 126 |
static const int roffchild_Fo[] = { ROFF_Fa, ROFF_Fc, ROFF_MAX }; |
#define ASCII_LO 33 |
static const int roffchild_Rs[] = { ROFF_Re, ROFF__A, ROFF__B, ROFF__D, |
#define HASHWIDTH (ASCII_HI - ASCII_LO + 1) |
ROFF__I, ROFF__J, ROFF__N, ROFF__O, ROFF__P, ROFF__R, ROFF__T, ROFF__V, |
|
ROFF_MAX }; |
|
|
|
static const int roffparent_El[] = { ROFF_Bl, ROFF_It, ROFF_MAX }; |
static struct roffmac *hash[HASHWIDTH]; |
static const int roffparent_Fc[] = { ROFF_Fo, ROFF_Fa, ROFF_MAX }; |
|
static const int roffparent_Oc[] = { ROFF_Oo, ROFF_MAX }; |
|
static const int roffparent_It[] = { ROFF_Bl, ROFF_It, ROFF_MAX }; |
|
static const int roffparent_Re[] = { ROFF_Rs, ROFF_MAX }; |
|
|
|
static const struct rofftok tokens[ROFF_MAX] = { |
static struct roffmac roffs[ROFF_MAX] = { |
{ roff_noop, NULL, NULL, NULL, 0, ROFF_COMMENT, 0 }, /* \" */ |
{ "ad", roff_line_ignore, NULL, NULL, 0, NULL }, |
{ roff_Dd, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Dd */ |
{ "am", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
{ roff_Dt, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Dt */ |
{ "ami", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
{ roff_Os, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Os */ |
{ "am1", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
{ roff_layout, NULL, NULL, NULL, ROFF_Sh, ROFF_LAYOUT, 0 }, /* Sh */ |
{ "de", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
{ roff_layout, NULL, NULL, NULL, ROFF_Ss, ROFF_LAYOUT, 0 }, /* Ss */ |
{ "dei", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Pp */ /* XXX 0 args */ |
{ "de1", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_LSCOPE }, /* D1 */ |
{ "ds", roff_ds, NULL, NULL, 0, NULL }, |
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_LSCOPE }, /* Dl */ |
{ "el", roff_cond, roff_cond_text, roff_cond_sub, ROFFMAC_STRUCT, NULL }, |
{ roff_layout, roffarg_Bd, NULL, NULL, 0, ROFF_LAYOUT, 0 }, /* Bd */ |
{ "hy", roff_line_ignore, NULL, NULL, 0, NULL }, |
{ roff_noop, NULL, NULL, NULL, ROFF_Bd, ROFF_LAYOUT, 0 }, /* Ed */ |
{ "ie", roff_cond, roff_cond_text, roff_cond_sub, ROFFMAC_STRUCT, NULL }, |
{ roff_layout, roffarg_Bl, NULL, roffchild_Bl, 0, ROFF_LAYOUT, 0 }, /* Bl */ |
{ "if", roff_cond, roff_cond_text, roff_cond_sub, ROFFMAC_STRUCT, NULL }, |
{ roff_noop, NULL, roffparent_El, NULL, ROFF_Bl, ROFF_LAYOUT, 0 }, /* El */ |
{ "ig", roff_block, roff_block_text, roff_block_sub, 0, NULL }, |
{ roff_layout, NULL, roffparent_It, NULL, ROFF_It, ROFF_LAYOUT, ROFF_PARSED | ROFF_SHALLOW }, /* It */ |
{ "ne", roff_line_ignore, NULL, NULL, 0, NULL }, |
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ad */ /* FIXME */ |
{ "nh", roff_line_ignore, NULL, NULL, 0, NULL }, |
{ roff_text, roffarg_An, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED }, /* An */ |
{ "nr", roff_nr, NULL, NULL, 0, NULL }, |
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Ar */ |
{ "rm", roff_line_error, NULL, NULL, 0, NULL }, |
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, 0 }, /* Cd */ /* XXX man.4 only */ |
{ "so", roff_so, NULL, NULL, 0, NULL }, |
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Cm */ |
{ "tr", roff_line_ignore, NULL, NULL, 0, NULL }, |
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Dv */ /* XXX needs arg */ |
{ ".", roff_cblock, NULL, NULL, 0, NULL }, |
{ roff_text, NULL, NULL, NULL, 0, ROFF_TEXT, ROFF_PARSED | ROFF_CALLABLE }, /* Er */ /* XXX needs arg */ |
{ "\\}", roff_ccond, NULL, NULL, 0, NULL }, |
{ 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 roff_free1(struct roff *); |
0, 0, 0, 0, |
static enum rofft roff_hash_find(const char *); |
0, ROFF_VALUE, ROFF_VALUE, 0, |
static void roff_hash_init(void); |
0, 0, 0, 0, |
static void roffnode_cleanscope(struct roff *); |
0, 0, 0, 0, |
static void roffnode_push(struct roff *, |
0, 0, ROFF_VALUE, 0, |
enum rofft, int, int); |
0, 0, 0, 0, |
static void roffnode_pop(struct roff *); |
0, 0, 0, 0, |
static enum rofft roff_parse(const char *, int *); |
0, 0, 0, 0, |
static int roff_parse_nat(const char *, unsigned int *); |
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] = { |
/* See roff_hash_find() */ |
"\\\"", "Dd", "Dt", "Os", |
#define ROFF_HASH(p) (p[0] - ASCII_LO) |
"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", |
|
/* 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] = { |
static void |
"split", "nosplit", "ragged", |
roff_hash_init(void) |
"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; |
|
const char *const *tokargnames = tokargnamesp; |
|
|
|
|
|
int |
|
roff_free(struct rofftree *tree, int flush) |
|
{ |
{ |
int error, t; |
struct roffmac *n; |
struct roffnode *n; |
int buc, i; |
|
|
error = 0; |
for (i = 0; i < (int)ROFF_MAX; i++) { |
|
assert(roffs[i].name[0] >= ASCII_LO); |
|
assert(roffs[i].name[0] <= ASCII_HI); |
|
|
if ( ! flush) |
buc = ROFF_HASH(roffs[i].name); |
goto end; |
|
|
|
error = 1; |
if (NULL != (n = hash[buc])) { |
|
for ( ; n->next; n = n->next) |
if (ROFF_PRELUDE & tree->state) { |
/* Do nothing. */ ; |
roff_err(tree, NULL, "prelude never finished"); |
n->next = &roffs[i]; |
goto end; |
} else |
} |
hash[buc] = &roffs[i]; |
|
|
for (n = tree->last; n; n = n->parent) { |
|
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; |
* 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) |
|
{ |
|
int buc; |
|
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. |
|
*/ |
|
|
end: |
if (p[0] < ASCII_LO || p[0] > ASCII_HI) |
|
return(ROFF_MAX); |
|
|
while (tree->last) |
buc = ROFF_HASH(p); |
roffnode_free(tree); |
|
|
|
free(tree); |
if (NULL == (n = hash[buc])) |
|
return(ROFF_MAX); |
|
for ( ; n; n = n->next) |
|
if (0 == strcmp(n->name, p)) |
|
return((enum rofft)(n - roffs)); |
|
|
return(error ? 0 : 1); |
return(ROFF_MAX); |
} |
} |
|
|
|
|
struct rofftree * |
/* |
roff_alloc(const struct roffcb *cb, void *args) |
* Pop the current node off of the stack of roff instructions currently |
|
* pending. |
|
*/ |
|
static void |
|
roffnode_pop(struct roff *r) |
{ |
{ |
struct rofftree *tree; |
struct roffnode *p; |
|
|
assert(args); |
assert(r->last); |
assert(cb); |
p = r->last; |
|
|
if (NULL == (tree = calloc(1, sizeof(struct rofftree)))) |
if (ROFF_el == p->tok) |
err(1, "calloc"); |
if (r->rstackpos > -1) |
|
r->rstackpos--; |
|
|
tree->state = ROFF_PRELUDE; |
ROFF_DEBUG("roff: popping scope\n"); |
tree->arg = args; |
r->last = r->last->parent; |
|
if (p->end) |
(void)memcpy(&tree->cb, cb, sizeof(struct roffcb)); |
free(p->end); |
|
free(p); |
return(tree); |
|
} |
} |
|
|
|
|
int |
/* |
roff_engine(struct rofftree *tree, char *buf) |
* 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, int line, int col) |
{ |
{ |
|
struct roffnode *p; |
|
|
tree->cur = buf; |
p = mandoc_calloc(1, sizeof(struct roffnode)); |
assert(buf); |
p->tok = tok; |
|
p->parent = r->last; |
|
p->line = line; |
|
p->col = col; |
|
p->rule = p->parent ? p->parent->rule : ROFFRULE_DENY; |
|
|
if (0 == *buf) { |
r->last = p; |
roff_err(tree, buf, "blank line"); |
|
return(0); |
|
} else if ('.' != *buf) |
|
return(textparse(tree, buf)); |
|
|
|
return(roffparse(tree, buf)); |
|
} |
} |
|
|
|
|
static int |
static void |
textparse(struct rofftree *tree, char *buf) |
roff_free1(struct roff *r) |
{ |
{ |
char *bufp; |
|
|
|
/* TODO: literal parsing. */ |
while (r->last) |
|
roffnode_pop(r); |
|
roff_freestr(r); |
|
} |
|
|
if ( ! (ROFF_BODY & tree->state)) { |
|
roff_err(tree, buf, "data not in body"); |
|
return(0); |
|
} |
|
|
|
/* LINTED */ |
void |
while (*buf) { |
roff_reset(struct roff *r) |
while (*buf && isspace(*buf)) |
{ |
buf++; |
|
|
|
if (0 == *buf) |
roff_free1(r); |
break; |
} |
|
|
bufp = buf++; |
|
|
|
while (*buf && ! isspace(*buf)) |
void |
buf++; |
roff_free(struct roff *r) |
|
{ |
|
|
if (0 != *buf) { |
roff_free1(r); |
*buf++ = 0; |
free(r); |
if ( ! roffdata(tree, 1, bufp)) |
} |
return(0); |
|
continue; |
|
} |
|
|
|
if ( ! roffdata(tree, 1, bufp)) |
|
return(0); |
|
break; |
|
} |
|
|
|
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(const struct rofftree *tree, |
roff_res(struct roff *r, char **bufp, size_t *szp, int pos) |
int tok, char *buf, char **argv) |
|
{ |
{ |
int i; |
const char *cp, *cpp, *st, *res; |
char *p; |
int i, maxl; |
|
size_t nsz; |
|
char *n; |
|
|
assert(tok >= 0 && tok < ROFF_MAX); |
|
assert('.' == *buf); |
|
|
|
p = buf; |
|
|
|
/* LINTED */ |
/* LINTED */ |
for (i = 0; *buf && i < ROFF_MAXLINEARG; i++) { |
for (cp = &(*bufp)[pos]; (cpp = strstr(cp, "\\*")); cp++) { |
if ('\"' == *buf) { |
cp = cpp + 2; |
argv[i] = ++buf; |
switch (*cp) { |
while (*buf && '\"' != *buf) |
case ('('): |
buf++; |
cp++; |
if (0 == *buf) { |
maxl = 2; |
roff_err(tree, argv[i], "unclosed " |
break; |
"quote in argument " |
case ('['): |
"list for `%s'", |
cp++; |
toknames[tok]); |
maxl = 0; |
return(0); |
break; |
} |
default: |
} else { |
maxl = 1; |
argv[i] = buf++; |
break; |
while (*buf && ! isspace(*buf)) |
|
buf++; |
|
if (0 == *buf) |
|
continue; |
|
} |
} |
*buf++ = 0; |
|
while (*buf && isspace(*buf)) |
|
buf++; |
|
} |
|
|
|
assert(i > 0); |
|
if (ROFF_MAXLINEARG == i && *buf) { |
|
roff_err(tree, p, "too many arguments for `%s'", toknames |
|
[tok]); |
|
return(0); |
|
} |
|
|
|
argv[i] = NULL; |
st = cp; |
return(1); |
|
} |
|
|
|
|
for (i = 0; 0 == maxl || i < maxl; i++, cp++) { |
|
if ('\0' == *cp) |
|
return(1); /* Error. */ |
|
if (0 == maxl && ']' == *cp) |
|
break; |
|
} |
|
|
static int |
res = roff_getstrn(r, st, (size_t)i); |
roffscan(int tok, const int *tokv) |
|
{ |
|
|
|
if (NULL == tokv) |
if (NULL == res) { |
return(1); |
cp -= maxl ? 1 : 0; |
|
continue; |
|
} |
|
|
for ( ; ROFF_MAX != *tokv; tokv++) |
ROFF_DEBUG("roff: splicing reserved: [%.*s]\n", i, st); |
if (tok == *tokv) |
|
return(1); |
|
|
|
return(0); |
nsz = *szp + strlen(res) + 1; |
} |
n = mandoc_malloc(nsz); |
|
|
|
*n = '\0'; |
|
|
static int |
strlcat(n, *bufp, (size_t)(cpp - *bufp + 1)); |
roffparse(struct rofftree *tree, char *buf) |
strlcat(n, res, nsz); |
{ |
strlcat(n, cp + (maxl ? 0 : 1), nsz); |
int tok, t; |
|
struct roffnode *n; |
|
char *argv[ROFF_MAXLINEARG]; |
|
char **argvp; |
|
|
|
if (0 != *buf && 0 != *(buf + 1) && 0 != *(buf + 2)) |
free(*bufp); |
if (0 == strncmp(buf, ".\\\"", 3)) |
|
return(1); |
|
|
|
if (ROFF_MAX == (tok = rofffindtok(buf + 1))) { |
*bufp = n; |
roff_err(tree, buf + 1, "bogus line macro"); |
*szp = nsz; |
return(0); |
return(0); |
} else if (NULL == tokens[tok].cb) { |
|
roff_err(tree, buf + 1, "unsupported macro `%s'", |
|
toknames[tok]); |
|
return(0); |
|
} |
} |
|
|
assert(ROFF___ != tok); |
return(1); |
if ( ! roffargs(tree, tok, buf, argv)) |
} |
return(0); |
|
|
|
argvp = (char **)argv; |
|
|
|
/* |
enum rofferr |
* Prelude macros break some assumptions, so branch now. |
roff_parseln(struct roff *r, int ln, char **bufp, |
*/ |
size_t *szp, int pos, int *offs) |
|
{ |
if (ROFF_PRELUDE & tree->state) { |
enum rofft t; |
assert(NULL == tree->last); |
int ppos; |
return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER)); |
|
} |
|
|
|
assert(ROFF_BODY & tree->state); |
/* |
|
* Run the reserved-word filter only if we have some reserved |
/* |
* words to fill in. |
* First check that our possible parents and parent's possible |
|
* children are satisfied. |
|
*/ |
*/ |
|
|
if (tree->last && ! roffscan |
if (r->first_string && ! roff_res(r, bufp, szp, pos)) |
(tree->last->tok, tokens[tok].parents)) { |
return(ROFF_RERUN); |
roff_err(tree, *argvp, "`%s' has invalid parent `%s'", |
|
toknames[tok], |
|
toknames[tree->last->tok]); |
|
return(0); |
|
} |
|
|
|
if (tree->last && ! roffscan |
|
(tok, tokens[tree->last->tok].children)) { |
|
roff_err(tree, *argvp, "`%s' is invalid child of `%s'", |
|
toknames[tok], |
|
toknames[tree->last->tok]); |
|
return(0); |
|
} |
|
|
|
/* |
/* |
* Branch if we're not a layout token. |
* First, if a scope is open and we're not a macro, pass the |
|
* text through the macro's filter. If a scope isn't open and |
|
* we're not a macro, just let it through. |
*/ |
*/ |
|
|
if (ROFF_LAYOUT != tokens[tok].type) |
if (r->last && ! ROFF_CTL((*bufp)[pos])) { |
return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER)); |
t = r->last->tok; |
if (0 == tokens[tok].ctx) |
assert(roffs[t].text); |
return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER)); |
ROFF_DEBUG("roff: intercept scoped text: %s, [%s]\n", |
|
roffs[t].name, &(*bufp)[pos]); |
|
return((*roffs[t].text) |
|
(r, t, bufp, szp, |
|
ln, pos, pos, offs)); |
|
} else if ( ! ROFF_CTL((*bufp)[pos])) |
|
return(ROFF_CONT); |
|
|
/* |
/* |
* First consider implicit-end tags, like as follows: |
* If a scope is open, go to the child handler for that macro, |
* .Sh SECTION 1 |
* as it may want to preprocess before doing anything with it. |
* .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->last) { |
/* |
t = r->last->tok; |
* First search up to the point where we must close. |
assert(roffs[t].sub); |
* If one doesn't exist, then we can open a new scope. |
ROFF_DEBUG("roff: intercept scoped context: %s, [%s]\n", |
*/ |
roffs[t].name, &(*bufp)[pos]); |
|
return((*roffs[t].sub) |
for (n = tree->last; n; n = n->parent) { |
(r, t, bufp, szp, |
assert(0 == tokens[n->tok].ctx || |
ln, pos, pos, offs)); |
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 |
|
* close out. |
|
*/ |
|
|
|
if (NULL == n) |
|
return((*tokens[tok].cb)(tok, tree, argvp, ROFF_ENTER)); |
|
|
|
/* |
|
* Close out all intermediary scoped blocks, then hang |
|
* the current scope from our predecessor's parent. |
|
*/ |
|
|
|
do { |
|
t = tree->last->tok; |
|
if ( ! (*tokens[t].cb)(t, tree, NULL, ROFF_EXIT)) |
|
return(0); |
|
} while (t != tok); |
|
|
|
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); |
ppos = pos; |
|
if (ROFF_MAX == (t = roff_parse(*bufp, &pos))) |
|
return(ROFF_CONT); |
|
|
/* LINTED */ |
ROFF_DEBUG("roff: intercept new-scope: %s, [%s]\n", |
for (n = tree->last; n; n = n->parent) |
roffs[t].name, &(*bufp)[pos]); |
if (n->tok != tokens[tok].ctx) { |
assert(roffs[t].proc); |
if (n->tok == tokens[n->tok].ctx) |
return((*roffs[t].proc) |
continue; |
(r, t, bufp, szp, |
roff_err(tree, *argv, "`%s' breaks `%s' scope", |
ln, ppos, pos, offs)); |
toknames[tok], toknames[n->tok]); |
} |
return(0); |
|
} else |
|
break; |
|
|
|
|
|
if (NULL == n) { |
int |
roff_err(tree, *argv, "`%s' has no starting tag `%s'", |
roff_endparse(struct roff *r) |
toknames[tok], |
{ |
toknames[tokens[tok].ctx]); |
|
return(0); |
|
} |
|
|
|
/* LINTED */ |
if (NULL == r->last) |
do { |
return(1); |
t = tree->last->tok; |
return((*r->msg)(MANDOCERR_SCOPEEXIT, r->data, r->last->line, |
if ( ! (*tokens[t].cb)(t, tree, NULL, ROFF_EXIT)) |
r->last->col, NULL)); |
return(0); |
|
} while (t != tokens[tok].ctx); |
|
|
|
return(1); |
|
} |
} |
|
|
|
|
static int |
/* |
rofffindarg(const char *name) |
* 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(const char *buf, int *pos) |
{ |
{ |
size_t i; |
int j; |
|
char mac[5]; |
|
enum rofft t; |
|
|
/* FIXME: use a table, this is slow but ok for now. */ |
assert(ROFF_CTL(buf[*pos])); |
|
(*pos)++; |
|
|
/* LINTED */ |
while (buf[*pos] && (' ' == buf[*pos] || '\t' == buf[*pos])) |
for (i = 0; i < ROFF_ARGMAX; i++) |
(*pos)++; |
/* LINTED */ |
|
if (0 == strcmp(name, tokargnames[i])) |
|
return((int)i); |
|
|
|
return(ROFF_ARGMAX); |
|
} |
|
|
|
|
if ('\0' == buf[*pos]) |
|
return(ROFF_MAX); |
|
|
static int |
for (j = 0; j < 4; j++, (*pos)++) |
rofffindtok(const char *buf) |
if ('\0' == (mac[j] = buf[*pos])) |
{ |
break; |
char token[4]; |
else if (' ' == buf[*pos] || (j && '\\' == buf[*pos])) |
int i; |
break; |
|
|
for (i = 0; *buf && ! isspace(*buf) && i < 3; i++, buf++) |
if (j == 4 || j < 1) |
token[i] = *buf; |
|
|
|
if (i == 3) |
|
return(ROFF_MAX); |
return(ROFF_MAX); |
|
|
token[i] = 0; |
mac[j] = '\0'; |
|
|
/* FIXME: use a table, this is slow but ok for now. */ |
if (ROFF_MAX == (t = roff_hash_find(mac))) |
|
return(t); |
|
|
/* LINTED */ |
while (buf[*pos] && ' ' == buf[*pos]) |
for (i = 0; i < ROFF_MAX; i++) |
(*pos)++; |
/* LINTED */ |
|
if (0 == strcmp(toknames[i], token)) |
|
return((int)i); |
|
|
|
return(ROFF_MAX); |
return(t); |
} |
} |
|
|
|
|
static int |
static int |
roffispunct(const char *p) |
roff_parse_nat(const char *buf, unsigned int *res) |
{ |
{ |
|
char *ep; |
|
long lval; |
|
|
if (0 == *p) |
errno = 0; |
|
lval = strtol(buf, &ep, 10); |
|
if (buf[0] == '\0' || *ep != '\0') |
return(0); |
return(0); |
if (0 != *(p + 1)) |
if ((errno == ERANGE && |
|
(lval == LONG_MAX || lval == LONG_MIN)) || |
|
(lval > INT_MAX || lval < 0)) |
return(0); |
return(0); |
|
|
switch (*p) { |
*res = (unsigned int)lval; |
case('{'): |
return(1); |
|
} |
|
|
|
|
|
/* ARGSUSED */ |
|
static enum rofferr |
|
roff_cblock(ROFF_ARGS) |
|
{ |
|
|
|
/* |
|
* A block-close `..' should only be invoked as a child of an |
|
* ignore macro, otherwise raise a warning and just ignore it. |
|
*/ |
|
|
|
if (NULL == r->last) { |
|
if ( ! (*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL)) |
|
return(ROFF_ERR); |
|
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): |
/* FALLTHROUGH */ |
/* FALLTHROUGH */ |
case(':'): |
case (ROFF_dei): |
/* FALLTHROUGH */ |
/* FALLTHROUGH */ |
case('?'): |
case (ROFF_de1): |
/* FALLTHROUGH */ |
/* FALLTHROUGH */ |
case('!'): |
case (ROFF_ig): |
/* FALLTHROUGH */ |
|
case('('): |
|
/* FALLTHROUGH */ |
|
case(')'): |
|
/* FALLTHROUGH */ |
|
case('['): |
|
/* FALLTHROUGH */ |
|
case(']'): |
|
/* FALLTHROUGH */ |
|
case('}'): |
|
return(1); |
|
default: |
|
break; |
break; |
|
default: |
|
if ( ! (*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL)) |
|
return(ROFF_ERR); |
|
return(ROFF_IGN); |
} |
} |
|
|
return(0); |
if ((*bufp)[pos]) |
} |
if ( ! (*r->msg)(MANDOCERR_ARGSLOST, r->data, ln, pos, NULL)) |
|
return(ROFF_ERR); |
|
|
|
roffnode_pop(r); |
|
roffnode_cleanscope(r); |
|
return(ROFF_IGN); |
|
|
static int |
|
rofffindcallable(const char *name) |
|
{ |
|
int c; |
|
|
|
if (ROFF_MAX == (c = rofffindtok(name))) |
|
return(ROFF_MAX); |
|
assert(c >= 0 && c < ROFF_MAX); |
|
return(ROFF_CALLABLE & tokens[c].flags ? c : ROFF_MAX); |
|
} |
} |
|
|
|
|
static struct roffnode * |
static void |
roffnode_new(int tokid, struct rofftree *tree) |
roffnode_cleanscope(struct roff *r) |
{ |
{ |
struct roffnode *p; |
|
|
|
if (NULL == (p = malloc(sizeof(struct roffnode)))) |
|
err(1, "malloc"); |
|
|
|
p->tok = tokid; |
while (r->last) { |
p->parent = tree->last; |
if (--r->last->endspan < 0) |
tree->last = p; |
break; |
|
roffnode_pop(r); |
return(p); |
} |
} |
} |
|
|
|
|
static int |
/* ARGSUSED */ |
roffargok(int tokid, int argid) |
static enum rofferr |
|
roff_ccond(ROFF_ARGS) |
{ |
{ |
const int *c; |
|
|
|
if (NULL == (c = tokens[tokid].args)) |
if (NULL == r->last) { |
return(0); |
if ( ! (*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL)) |
|
return(ROFF_ERR); |
|
return(ROFF_IGN); |
|
} |
|
|
for ( ; ROFF_ARGMAX != *c; c++) |
switch (r->last->tok) { |
if (argid == *c) |
case (ROFF_el): |
return(1); |
/* FALLTHROUGH */ |
|
case (ROFF_ie): |
|
/* FALLTHROUGH */ |
|
case (ROFF_if): |
|
break; |
|
default: |
|
if ( ! (*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL)) |
|
return(ROFF_ERR); |
|
return(ROFF_IGN); |
|
} |
|
|
return(0); |
if (r->last->endspan > -1) { |
} |
if ( ! (*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL)) |
|
return(ROFF_ERR); |
|
return(ROFF_IGN); |
|
} |
|
|
|
if ((*bufp)[pos]) |
|
if ( ! (*r->msg)(MANDOCERR_ARGSLOST, r->data, ln, pos, NULL)) |
|
return(ROFF_ERR); |
|
|
static void |
roffnode_pop(r); |
roffnode_free(struct rofftree *tree) |
roffnode_cleanscope(r); |
{ |
return(ROFF_IGN); |
struct roffnode *p; |
|
|
|
assert(tree->last); |
|
|
|
p = tree->last; |
|
tree->last = tree->last->parent; |
|
free(p); |
|
} |
} |
|
|
|
|
static int |
/* ARGSUSED */ |
roffcall(struct rofftree *tree, int tok, char **argv) |
static enum rofferr |
|
roff_block(ROFF_ARGS) |
{ |
{ |
|
int sv; |
|
size_t sz; |
|
|
if (NULL == tokens[tok].cb) { |
if (ROFF_ig != tok && '\0' == (*bufp)[pos]) { |
roff_err(tree, *argv, "unsupported macro `%s'", |
if ( ! (*r->msg)(MANDOCERR_NOARGS, r->data, ln, ppos, NULL)) |
toknames[tok]); |
return(ROFF_ERR); |
return(0); |
return(ROFF_IGN); |
|
} else if (ROFF_ig != tok) { |
|
while ((*bufp)[pos] && ' ' != (*bufp)[pos]) |
|
pos++; |
|
while (' ' == (*bufp)[pos]) |
|
pos++; |
} |
} |
if ( ! (*tokens[tok].cb)(tok, tree, argv, ROFF_ENTER)) |
|
return(0); |
|
return(1); |
|
} |
|
|
|
|
roffnode_push(r, tok, ln, ppos); |
|
|
static int |
if ('\0' == (*bufp)[pos]) |
roffnextopt(const struct rofftree *tree, int tok, |
return(ROFF_IGN); |
char ***in, char **val) |
|
{ |
|
char *arg, **argv; |
|
int v; |
|
|
|
*val = NULL; |
sv = pos; |
argv = *in; |
while ((*bufp)[pos] && ' ' != (*bufp)[pos] && |
assert(argv); |
'\t' != (*bufp)[pos]) |
|
pos++; |
|
|
if (NULL == (arg = *argv)) |
/* |
return(-1); |
* Note: groff does NOT like escape characters in the input. |
if ('-' != *arg) |
* Instead of detecting this, we're just going to let it fly and |
return(-1); |
* to hell with it. |
|
*/ |
|
|
if (ROFF_ARGMAX == (v = rofffindarg(arg + 1))) { |
assert(pos > sv); |
roff_warn(tree, arg, "argument-like parameter `%s' to " |
sz = (size_t)(pos - sv); |
"`%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; |
if (1 == sz && '.' == (*bufp)[sv]) |
|
return(ROFF_IGN); |
|
|
if (NULL == *argv) { |
r->last->end = mandoc_malloc(sz + 1); |
roff_err(tree, arg, "empty value of `%s' for `%s'", |
|
tokargnames[v], toknames[tok]); |
|
return(ROFF_ARGMAX); |
|
} |
|
|
|
return(v); |
memcpy(r->last->end, *bufp + sv, sz); |
|
r->last->end[(int)sz] = '\0'; |
|
|
|
if ((*bufp)[pos]) |
|
if ( ! (*r->msg)(MANDOCERR_ARGSLOST, r->data, ln, pos, NULL)) |
|
return(ROFF_ERR); |
|
|
|
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]) |
i = pos + 1; |
if ( ! roffdata(tree, 0, argv[i++])) |
while (' ' == (*bufp)[i] || '\t' == (*bufp)[i]) |
return(0); |
i++; |
return(1); |
|
} |
|
|
|
|
for (j = 0; r->last->end[j]; j++, i++) |
|
if ((*bufp)[i] != r->last->end[j]) |
|
break; |
|
|
static int |
if ('\0' == r->last->end[j] && |
roffparseopts(struct rofftree *tree, int tok, |
('\0' == (*bufp)[i] || |
char ***args, int *argc, char **argv) |
' ' == (*bufp)[i] || |
{ |
'\t' == (*bufp)[i])) { |
int i, c; |
roffnode_pop(r); |
char *v; |
roffnode_cleanscope(r); |
|
|
i = 0; |
if (ROFF_MAX != roff_parse(*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; |
ppos = pos; |
argv[i] = v; |
t = roff_parse(*bufp, &pos); |
i++; |
|
*args = *args + 1; |
|
} |
|
|
|
argc[i] = ROFF_ARGMAX; |
/* If we're not a comment-end, then throw it away. */ |
argv[i] = NULL; |
if (ROFF_cblock != t) |
return(1); |
return(ROFF_IGN); |
|
|
|
assert(roffs[t].proc); |
|
return((*roffs[t].proc)(r, t, bufp, szp, |
|
ln, ppos, pos, offs)); |
} |
} |
|
|
|
|
static int |
/* ARGSUSED */ |
roffdata(struct rofftree *tree, int space, char *buf) |
static enum rofferr |
|
roff_block_text(ROFF_ARGS) |
{ |
{ |
|
|
if (0 == *buf) |
return(ROFF_IGN); |
return(1); |
|
return((*tree->cb.roffdata)(tree->arg, |
|
space != 0, tree->cur, buf)); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
/* ARGSUSED */ |
static int |
static enum rofferr |
roff_Dd(ROFFCALL_ARGS) |
roff_cond_sub(ROFF_ARGS) |
{ |
{ |
time_t t; |
enum rofft t; |
char *p, buf[32]; |
enum roffrule rr; |
|
|
if (ROFF_BODY & tree->state) { |
ppos = pos; |
assert( ! (ROFF_PRELUDE & tree->state)); |
rr = r->last->rule; |
assert(ROFF_PRELUDE_Dd & tree->state); |
|
return(roff_text(tok, tree, argv, type)); |
|
} |
|
|
|
assert(ROFF_PRELUDE & tree->state); |
/* |
assert( ! (ROFF_BODY & tree->state)); |
* Clean out scope. If we've closed ourselves, then don't |
|
* continue. |
|
*/ |
|
|
if (ROFF_PRELUDE_Dd & tree->state) { |
roffnode_cleanscope(r); |
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); |
if (ROFF_MAX == (t = roff_parse(*bufp, &pos))) { |
|
if ('\\' == (*bufp)[pos] && '}' == (*bufp)[pos + 1]) |
argv++; |
return(roff_ccond |
|
(r, ROFF_ccond, bufp, szp, |
if (0 == strcmp(*argv, "$Mdocdate$")) { |
ln, pos, pos + 2, offs)); |
t = time(NULL); |
return(ROFFRULE_DENY == rr ? ROFF_IGN : ROFF_CONT); |
if (NULL == localtime_r(&t, &tree->tm)) |
|
err(1, "localtime_r"); |
|
tree->state |= ROFF_PRELUDE_Dd; |
|
return(1); |
|
} |
|
|
|
/* Build this from Mdocdate or raw date. */ |
|
|
|
buf[0] = 0; |
|
p = *argv; |
|
|
|
if (0 != strcmp(*argv, "$Mdocdate:")) { |
|
while (*argv) { |
|
if (strlcat(buf, *argv++, sizeof(buf)) |
|
< sizeof(buf)) |
|
continue; |
|
roff_err(tree, p, "bad `Dd' date"); |
|
return(0); |
|
} |
|
if (strptime(buf, "%b%d,%Y", &tree->tm)) { |
|
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 (ROFFRULE_DENY == rr) |
} |
if ( ! (ROFFMAC_STRUCT & roffs[t].flags)) |
if (strlcat(buf, " ", sizeof(buf)) |
if (ROFF_ccond != t) |
>= sizeof(buf)) { |
return(ROFF_IGN); |
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)) { |
assert(roffs[t].proc); |
roff_err(tree, *argv, "bad `Dd' Mdocdate"); |
return((*roffs[t].proc)(r, t, bufp, szp, |
return(0); |
ln, ppos, pos, offs)); |
} |
|
|
|
tree->state |= ROFF_PRELUDE_Dd; |
|
return(1); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
/* ARGSUSED */ |
static int |
static enum rofferr |
roff_Dt(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_Dt & tree->state); |
|
return(roff_text(tok, tree, argv, type)); |
|
} |
|
|
|
assert(ROFF_PRELUDE & tree->state); |
/* |
assert( ! (ROFF_BODY & tree->state)); |
* We display the value of the text if out current evaluation |
|
* scope permits us to do so. |
|
*/ |
|
|
if ( ! (ROFF_PRELUDE_Dd & tree->state)) { |
/* FIXME: use roff_ccond? */ |
roff_err(tree, *argv, "out-of-order `Dt' in prelude"); |
|
return(0); |
|
} else if (ROFF_PRELUDE_Dt & tree->state) { |
|
roff_err(tree, *argv, "repeated `Dt' in prelude"); |
|
return(0); |
|
} |
|
|
|
argv++; |
st = &(*bufp)[pos]; |
if (NULL == *argv) { |
if (NULL == (ep = strstr(st, "\\}"))) { |
roff_err(tree, *argv, "`Dt' needs document title"); |
roffnode_cleanscope(r); |
return(0); |
return(ROFFRULE_DENY == rr ? ROFF_IGN : ROFF_CONT); |
} else if (strlcpy(tree->title, *argv, sizeof(tree->title)) |
|
>= sizeof(tree->title)) { |
|
roff_err(tree, *argv, "`Dt' document title too long"); |
|
return(0); |
|
} |
} |
|
|
argv++; |
if (ep == st || (ep > st && '\\' != *(ep - 1))) |
if (NULL == *argv) { |
roffnode_pop(r); |
roff_err(tree, *argv, "`Dt' needs section"); |
|
return(0); |
|
} else if (strlcpy(tree->section, *argv, sizeof(tree->section)) |
|
>= sizeof(tree->section)) { |
|
roff_err(tree, *argv, "`Dt' section too long"); |
|
return(0); |
|
} |
|
|
|
argv++; |
roffnode_cleanscope(r); |
if (NULL == *argv) { |
return(ROFFRULE_DENY == rr ? ROFF_IGN : ROFF_CONT); |
tree->volume[0] = 0; |
|
} 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); |
|
tree->state |= ROFF_PRELUDE_Dt; |
|
|
|
return(1); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
static enum roffrule |
static int |
roff_evalcond(const char *v, int *pos) |
roff_Sm(ROFFCALL_ARGS) |
|
{ |
{ |
int argcp[1]; |
|
char *argvp[1], *morep[1], *p; |
|
|
|
p = *argv++; |
switch (v[*pos]) { |
|
case ('n'): |
argcp[0] = ROFF_ARGMAX; |
(*pos)++; |
argvp[0] = NULL; |
return(ROFFRULE_ALLOW); |
if (NULL == (morep[0] = *argv++)) { |
case ('e'): |
roff_err(tree, p, "`Sm' expects an argument"); |
/* FALLTHROUGH */ |
return(0); |
case ('o'): |
} else if (0 != strcmp(morep[0], "on") && |
/* FALLTHROUGH */ |
0 != strcmp(morep[0], "off")) { |
case ('t'): |
roff_err(tree, p, "`Sm' has invalid argument"); |
(*pos)++; |
return(0); |
return(ROFFRULE_DENY); |
|
default: |
|
break; |
} |
} |
|
|
if (*argv) |
while (v[*pos] && ' ' != v[*pos]) |
roff_warn(tree, *argv, "`Sm' shouldn't have arguments"); |
(*pos)++; |
|
return(ROFFRULE_DENY); |
|
} |
|
|
if ( ! (*tree->cb.roffspecial)(tree->arg, |
/* ARGSUSED */ |
tok, argcp, argvp, morep)) |
static enum rofferr |
return(0); |
roff_line_ignore(ROFF_ARGS) |
|
{ |
|
|
while (*argv) |
return(ROFF_IGN); |
if ( ! roffdata(tree, 1, *argv++)) |
|
return(0); |
|
|
|
return(1); |
|
} |
} |
|
|
|
/* 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_Ns(ROFFCALL_ARGS) |
roff_cond(ROFF_ARGS) |
{ |
{ |
int j, c, first; |
int sv; |
int argcp[1]; |
enum roffrule rule; |
char *argvp[1], *morep[1]; |
|
|
|
first = (*argv++ == tree->cur); |
/* Stack overflow! */ |
|
|
argcp[0] = ROFF_ARGMAX; |
if (ROFF_ie == tok && r->rstackpos == RSTACK_MAX - 1) { |
argvp[0] = morep[0] = NULL; |
(*r->msg)(MANDOCERR_MEM, r->data, ln, ppos, NULL); |
|
return(ROFF_ERR); |
|
} |
|
|
if ( ! (*tree->cb.roffspecial)(tree->arg, |
/* First, evaluate the conditional. */ |
tok, argcp, argvp, morep)) |
|
return(0); |
|
|
|
while (*argv) { |
if (ROFF_el == tok) { |
if (ROFF_MAX != (c = rofffindcallable(*argv))) { |
/* |
if ( ! roffcall(tree, c, argv)) |
* An `.el' will get the value of the current rstack |
return(0); |
* entry set in prior `ie' calls or defaults to DENY. |
break; |
*/ |
} |
if (r->rstackpos < 0) |
|
rule = ROFFRULE_DENY; |
|
else |
|
rule = r->rstack[r->rstackpos]; |
|
} else |
|
rule = roff_evalcond(*bufp, &pos); |
|
|
if ( ! roffispunct(*argv)) { |
sv = pos; |
if ( ! roffdata(tree, 1, *argv++)) |
|
return(0); |
|
continue; |
|
} |
|
|
|
for (j = 0; argv[j]; j++) |
while (' ' == (*bufp)[pos]) |
if ( ! roffispunct(argv[j])) |
pos++; |
break; |
|
|
|
if (argv[j]) { |
/* |
if ( ! roffdata(tree, 0, *argv++)) |
* Roff is weird. If we have just white-space after the |
return(0); |
* conditional, it's considered the BODY and we exit without |
continue; |
* really doing anything. Warn about this. It's probably |
} |
* wrong. |
|
*/ |
|
|
break; |
if ('\0' == (*bufp)[pos] && sv != pos) { |
|
if ((*r->msg)(MANDOCERR_NOARGS, r->data, ln, ppos, NULL)) |
|
return(ROFF_IGN); |
|
return(ROFF_ERR); |
} |
} |
|
|
if ( ! first) |
roffnode_push(r, tok, ln, ppos); |
return(1); |
|
|
|
return(roffpurgepunct(tree, argv)); |
r->last->rule = rule; |
} |
|
|
|
|
ROFF_DEBUG("roff: cond: %s -> %s\n", roffs[tok].name, |
|
ROFFRULE_ALLOW == rule ? "allow" : "deny"); |
|
|
/* ARGSUSED */ |
if (ROFF_ie == tok) { |
static int |
/* |
roff_Os(ROFFCALL_ARGS) |
* An if-else will put the NEGATION of the current |
{ |
* evaluated conditional into the stack. |
char *p; |
*/ |
|
r->rstackpos++; |
if (ROFF_BODY & tree->state) { |
if (ROFFRULE_DENY == r->last->rule) |
assert( ! (ROFF_PRELUDE & tree->state)); |
r->rstack[r->rstackpos] = ROFFRULE_ALLOW; |
assert(ROFF_PRELUDE_Os & tree->state); |
else |
return(roff_text(tok, tree, argv, type)); |
r->rstack[r->rstackpos] = ROFFRULE_DENY; |
} |
} |
|
|
assert(ROFF_PRELUDE & tree->state); |
/* If the parent has false as its rule, then so do we. */ |
if ( ! (ROFF_PRELUDE_Dt & tree->state) || |
|
! (ROFF_PRELUDE_Dd & tree->state)) { |
if (r->last->parent && ROFFRULE_DENY == r->last->parent->rule) { |
roff_err(tree, *argv, "out-of-order `Os' in prelude"); |
r->last->rule = ROFFRULE_DENY; |
return(0); |
ROFF_DEBUG("roff: cond override: %s -> deny\n", |
|
roffs[tok].name); |
} |
} |
|
|
tree->os[0] = 0; |
/* |
|
* 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. |
|
*/ |
|
|
p = *++argv; |
r->last->endspan = 1; |
|
|
while (*argv) { |
if ('\\' == (*bufp)[pos] && '{' == (*bufp)[pos + 1]) { |
if (strlcat(tree->os, *argv++, sizeof(tree->os)) |
r->last->endspan = -1; |
< sizeof(tree->os)) |
pos += 2; |
continue; |
ROFF_DEBUG("roff: cond-scope: %s, multi-line\n", |
roff_err(tree, p, "`Os' value too long"); |
roffs[tok].name); |
return(0); |
} else |
} |
ROFF_DEBUG("roff: cond-scope: %s, one-line\n", |
|
roffs[tok].name); |
|
|
if (0 == tree->os[0]) |
/* |
if (strlcpy(tree->os, "LOCAL", sizeof(tree->os)) |
* If there are no arguments on the line, the next-line scope is |
>= sizeof(tree->os)) { |
* assumed. |
roff_err(tree, p, "`Os' value too long"); |
*/ |
return(0); |
|
} |
|
|
|
tree->state |= ROFF_PRELUDE_Os; |
if ('\0' == (*bufp)[pos]) |
tree->state &= ~ROFF_PRELUDE; |
return(ROFF_IGN); |
tree->state |= ROFF_BODY; |
|
|
|
assert(NULL == tree->last); |
/* Otherwise re-run the roff parser after recalculating. */ |
|
|
return((*tree->cb.roffhead)(tree->arg, &tree->tm, |
*offs = pos; |
tree->os, tree->title, tree->section, |
return(ROFF_RERUN); |
tree->volume)); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
/* ARGSUSED */ |
static int |
static enum rofferr |
roff_layout(ROFFCALL_ARGS) |
roff_ds(ROFF_ARGS) |
{ |
{ |
int i, c, argcp[ROFF_MAXLINEARG]; |
char *name, *string; |
char *argvp[ROFF_MAXLINEARG]; |
|
|
|
if (ROFF_PRELUDE & tree->state) { |
/* |
roff_err(tree, *argv, "bad `%s' in prelude", |
* A symbol is named by the first word following the macro |
toknames[tok]); |
* invocation up to a space. Its value is anything after the |
return(0); |
* name's trailing whitespace and optional double-quote. Thus, |
} else if (ROFF_EXIT == type) { |
* |
roffnode_free(tree); |
* [.ds foo "bar " ] |
if ( ! (*tree->cb.roffblkbodyout)(tree->arg, tok)) |
* |
return(0); |
* will have `bar " ' as its value. |
return((*tree->cb.roffblkout)(tree->arg, tok)); |
*/ |
} |
|
|
|
assert( ! (ROFF_CALLABLE & tokens[tok].flags)); |
name = *bufp + pos; |
|
if ('\0' == *name) |
|
return(ROFF_IGN); |
|
|
++argv; |
string = name; |
|
/* Read until end of name. */ |
|
while (*string && ' ' != *string) |
|
string++; |
|
|
if ( ! roffparseopts(tree, tok, &argv, argcp, argvp)) |
/* Nil-terminate name. */ |
return(0); |
if (*string) |
if (NULL == roffnode_new(tok, tree)) |
*(string++) = '\0'; |
return(0); |
|
|
/* Read past spaces. */ |
|
while (*string && ' ' == *string) |
|
string++; |
|
|
/* |
/* Read passed initial double-quote. */ |
* Layouts have two parts: the layout body and header. The |
if (*string && '"' == *string) |
* layout header is the trailing text of the line macro, while |
string++; |
* the layout body is everything following until termination. |
|
*/ |
|
|
|
if ( ! (*tree->cb.roffblkin)(tree->arg, tok, argcp, argvp)) |
/* The rest is the value. */ |
return(0); |
roff_setstr(r, name, string); |
if (NULL == *argv) |
return(ROFF_IGN); |
return((*tree->cb.roffblkbodyin) |
} |
(tree->arg, tok, argcp, argvp)); |
|
|
|
if ( ! (*tree->cb.roffblkheadin)(tree->arg, tok, argcp, argvp)) |
|
return(0); |
|
|
|
/* |
/* ARGSUSED */ |
* If there are no parsable parts, then write remaining tokens |
static enum rofferr |
* into the layout header and exit. |
roff_nr(ROFF_ARGS) |
*/ |
{ |
|
const char *key, *val; |
|
struct reg *rg; |
|
|
if ( ! (ROFF_PARSED & tokens[tok].flags)) { |
key = &(*bufp)[pos]; |
i = 0; |
rg = r->regs->regs; |
while (*argv) |
|
if ( ! roffdata(tree, i++, *argv++)) |
|
return(0); |
|
|
|
if ( ! (*tree->cb.roffblkheadout)(tree->arg, tok)) |
/* Parse register request. */ |
return(0); |
while ((*bufp)[pos] && ' ' != (*bufp)[pos]) |
return((*tree->cb.roffblkbodyin) |
pos++; |
(tree->arg, tok, argcp, argvp)); |
|
} |
|
|
|
/* |
/* |
* Parsable elements may be in the header (or be the header, for |
* Set our nil terminator. Because this line is going to be |
* that matter). Follow the regular parsing rules for these. |
* ignored anyway, we can munge it as we please. |
*/ |
*/ |
|
if ((*bufp)[pos]) |
|
(*bufp)[pos++] = '\0'; |
|
|
i = 0; |
/* Skip whitespace to register token. */ |
while (*argv) { |
while ((*bufp)[pos] && ' ' == (*bufp)[pos]) |
if (ROFF_MAX == (c = rofffindcallable(*argv))) { |
pos++; |
assert(tree->arg); |
|
if ( ! roffdata(tree, i++, *argv++)) |
|
return(0); |
|
continue; |
|
} |
|
if ( ! roffcall(tree, c, argv)) |
|
return(0); |
|
break; |
|
} |
|
|
|
/* |
val = &(*bufp)[pos]; |
* If there's trailing punctuation in the header, then write it |
|
* out now. Here we mimic the behaviour of a line-dominant text |
|
* macro. |
|
*/ |
|
|
|
if (NULL == *argv) { |
/* Process register token. */ |
if ( ! (*tree->cb.roffblkheadout)(tree->arg, tok)) |
|
return(0); |
|
return((*tree->cb.roffblkbodyin) |
|
(tree->arg, tok, argcp, argvp)); |
|
} |
|
|
|
/* |
if (0 == strcmp(key, "nS")) { |
* Expensive. Scan to the end of line then work backwards until |
rg[(int)REG_nS].set = 1; |
* a token isn't punctuation. |
if ( ! roff_parse_nat(val, &rg[(int)REG_nS].v.u)) |
*/ |
rg[(int)REG_nS].v.u = 0; |
|
|
if ( ! roffpurgepunct(tree, argv)) |
ROFF_DEBUG("roff: register nS: %u\n", |
return(0); |
rg[(int)REG_nS].v.u); |
|
} else |
|
ROFF_DEBUG("roff: ignoring register: %s\n", key); |
|
|
if ( ! (*tree->cb.roffblkheadout)(tree->arg, tok)) |
return(ROFF_IGN); |
return(0); |
|
return((*tree->cb.roffblkbodyin) |
|
(tree->arg, tok, argcp, argvp)); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
/* ARGSUSED */ |
static int |
static enum rofferr |
roff_text(ROFFCALL_ARGS) |
roff_so(ROFF_ARGS) |
{ |
{ |
int i, j, first, c, argcp[ROFF_MAXLINEARG]; |
char *name; |
char *argvp[ROFF_MAXLINEARG]; |
|
|
|
if (ROFF_PRELUDE & tree->state) { |
(*r->msg)(MANDOCERR_SO, r->data, ln, ppos, NULL); |
roff_err(tree, *argv, "`%s' disallowed in prelude", |
|
toknames[tok]); |
|
return(0); |
|
} |
|
|
|
first = (*argv == tree->cur); |
|
argv++; |
|
|
|
if ( ! roffparseopts(tree, tok, &argv, argcp, argvp)) |
|
return(0); |
|
if ( ! (*tree->cb.roffin)(tree->arg, tok, argcp, argvp)) |
|
return(0); |
|
if (NULL == *argv) |
|
return((*tree->cb.roffout)(tree->arg, tok)); |
|
|
|
if ( ! (ROFF_PARSED & tokens[tok].flags)) { |
|
i = 0; |
|
while (*argv) |
|
if ( ! roffdata(tree, i++, *argv++)) |
|
return(0); |
|
|
|
return((*tree->cb.roffout)(tree->arg, tok)); |
|
} |
|
|
|
/* |
/* |
* Deal with punctuation. Ugly. Work ahead until we encounter |
* Handle `so'. Be EXTREMELY careful, as we shouldn't be |
* terminating punctuation. If we encounter it and all |
* opening anything that's not in our cwd or anything beneath |
* subsequent tokens are punctuation, then stop processing (the |
* it. Thus, explicitly disallow traversing up the file-system |
* line-dominant macro will print these tokens after closure). |
* or using absolute paths. |
*/ |
*/ |
|
|
i = 0; |
name = *bufp + pos; |
while (*argv) { |
if ('/' == *name || strstr(name, "../") || strstr(name, "/..")) { |
if (ROFF_MAX != (c = rofffindcallable(*argv))) { |
(*r->msg)(MANDOCERR_SOPATH, r->data, ln, pos, NULL); |
if ( ! (ROFF_LSCOPE & tokens[tok].flags)) |
return(ROFF_ERR); |
if ( ! (*tree->cb.roffout)(tree->arg, tok)) |
} |
return(0); |
|
|
|
if ( ! roffcall(tree, c, argv)) |
|
return(0); |
|
|
|
if (ROFF_LSCOPE & tokens[tok].flags) |
|
if ( ! (*tree->cb.roffout)(tree->arg, tok)) |
|
return(0); |
|
|
|
break; |
|
} |
|
|
|
if ( ! roffispunct(*argv)) { |
*offs = pos; |
if ( ! roffdata(tree, i++, *argv++)) |
return(ROFF_SO); |
return(0); |
} |
continue; |
|
} |
|
|
|
i = 1; |
static char * |
for (j = 0; argv[j]; j++) |
roff_strdup(const char *name) |
if ( ! roffispunct(argv[j])) |
{ |
break; |
char *namecopy, *sv; |
|
|
if (argv[j]) { |
/* |
if ( ! roffdata(tree, 0, *argv++)) |
* This isn't a nice simple mandoc_strdup() because we must |
return(0); |
* handle roff's stupid double-escape rule. |
continue; |
*/ |
} |
sv = namecopy = mandoc_malloc(strlen(name) + 1); |
|
while (*name) { |
if ( ! (*tree->cb.roffout)(tree->arg, tok)) |
if ('\\' == *name && '\\' == *(name + 1)) |
return(0); |
name++; |
break; |
*namecopy++ = *name++; |
} |
} |
|
|
if (NULL == *argv) |
*namecopy = '\0'; |
return((*tree->cb.roffout)(tree->arg, tok)); |
return(sv); |
if ( ! first) |
|
return(1); |
|
|
|
return(roffpurgepunct(tree, argv)); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
static void |
static int |
roff_setstr(struct roff *r, const char *name, const char *string) |
roff_noop(ROFFCALL_ARGS) |
|
{ |
{ |
|
struct roffstr *n; |
|
char *namecopy; |
|
|
return(1); |
n = r->first_string; |
} |
while (n && strcmp(name, n->name)) |
|
n = n->next; |
|
|
|
if (NULL == n) { |
|
namecopy = mandoc_strdup(name); |
|
n = mandoc_malloc(sizeof(struct roffstr)); |
|
n->name = namecopy; |
|
n->next = r->first_string; |
|
r->first_string = n; |
|
} else |
|
free(n->string); |
|
|
/* ARGSUSED */ |
/* Don't use mandoc_strdup: clean out double-escapes. */ |
static int |
n->string = string ? roff_strdup(string) : NULL; |
roff_depr(ROFFCALL_ARGS) |
ROFF_DEBUG("roff: new symbol: [%s] = [%s]\n", name, n->string); |
{ |
|
|
|
roff_err(tree, *argv, "`%s' is deprecated", toknames[tok]); |
|
return(0); |
|
} |
} |
|
|
|
|
static void |
static const char * |
roff_warn(const struct rofftree *tree, const char *pos, char *fmt, ...) |
roff_getstrn(const struct roff *r, const char *name, size_t len) |
{ |
{ |
va_list ap; |
const struct roffstr *n; |
char buf[128]; |
|
|
|
va_start(ap, fmt); |
n = r->first_string; |
(void)vsnprintf(buf, sizeof(buf), fmt, ap); |
while (n && (strncmp(name, n->name, len) || '\0' != n->name[(int)len])) |
va_end(ap); |
n = n->next; |
|
|
(*tree->cb.roffmsg)(tree->arg, |
return(n ? n->string : NULL); |
ROFF_WARN, tree->cur, pos, buf); |
|
} |
} |
|
|
|
|
static void |
static void |
roff_err(const struct rofftree *tree, const char *pos, char *fmt, ...) |
roff_freestr(struct roff *r) |
{ |
{ |
va_list ap; |
struct roffstr *n, *nn; |
char buf[128]; |
|
|
|
va_start(ap, fmt); |
for (n = r->first_string; n; n = nn) { |
(void)vsnprintf(buf, sizeof(buf), fmt, ap); |
free(n->name); |
va_end(ap); |
free(n->string); |
|
nn = n->next; |
|
free(n); |
|
} |
|
|
(*tree->cb.roffmsg)(tree->arg, |
r->first_string = NULL; |
ROFF_ERROR, tree->cur, pos, buf); |
|
} |
} |
|
|