sendout.c:_sendbundle_setup_creds(): fix !HAVE_SMTP (CONFIG=NULL tests)
[s-mailx.git] / filter.c
blobc90db8dc63edfe2861f59c352fe3e2814595736c
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Filter objects.
4 * Copyright (c) 2013 - 2017 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 #undef n_FILE
19 #define n_FILE filter
21 #ifndef HAVE_AMALGAMATION
22 # include "nail.h"
23 #endif
26 * Quotation filter
30 * TODO quotation filter: anticipate in future data: don't break if only WS
31 * TODO or a LF escaping \ follows on the line (simply reuse the latter).
34 #ifdef HAVE_QUOTE_FOLD
35 n_CTAV(QUOTE_MAX > 3);
37 enum qf_state {
38 _QF_CLEAN,
39 _QF_PREFIX,
40 _QF_DATA
43 struct qf_vc {
44 struct quoteflt *self;
45 char const *buf;
46 size_t len;
49 /* Print out prefix and current quote */
50 static ssize_t _qf_dump_prefix(struct quoteflt *self);
52 /* Add one data character */
53 static ssize_t _qf_add_data(struct quoteflt *self, wchar_t wc);
55 /* State machine handlers */
56 static ssize_t _qf_state_prefix(struct qf_vc *vc);
57 static ssize_t _qf_state_data(struct qf_vc *vc);
59 static ssize_t
60 _qf_dump_prefix(struct quoteflt *self)
62 ssize_t rv;
63 size_t i;
64 NYD_ENTER;
66 if ((i = self->qf_pfix_len) > 0 && i != fwrite(self->qf_pfix, 1, i,
67 self->qf_os))
68 goto jerr;
69 rv = i;
71 if ((i = self->qf_currq.l) > 0 && i != fwrite(self->qf_currq.s, 1, i,
72 self->qf_os))
73 goto jerr;
74 rv += i;
75 jleave:
76 NYD_LEAVE;
77 return rv;
78 jerr:
79 rv = -1;
80 goto jleave;
83 static ssize_t
84 _qf_add_data(struct quoteflt *self, wchar_t wc)
86 char *save_b;
87 ui32_t save_l, save_w;
88 ssize_t rv = 0;
89 int w, l;
90 NYD_ENTER;
92 save_l = save_w = 0; /* silence cc */
93 save_b = NULL;
94 /* <newline> ends state */
95 if (wc == L'\n')
96 goto jflush;
97 if (wc == L'\r') /* TODO CR should be stripped in lower level!! */
98 goto jleave;
100 /* Unroll <tab> to spaces */
101 if (wc == L'\t') {
102 save_l = self->qf_datw;
103 save_w = (save_l + QUOTE_TAB_SPACES) & ~(QUOTE_TAB_SPACES - 1);
104 save_w -= save_l;
105 while (save_w-- > 0) {
106 ssize_t j = _qf_add_data(self, L' ');
107 if (j < 0) {
108 rv = j;
109 break;
111 rv += j;
113 goto jleave;
116 w = wcwidth(wc);
117 if (w == -1) {
118 jbad:
119 ++self->qf_datw;
120 self->qf_dat.s[self->qf_dat.l++] = '?';
121 } else {
122 l = wctomb(self->qf_dat.s + self->qf_dat.l, wc);
123 if (l < 0)
124 goto jbad;
125 self->qf_datw += (ui32_t)w;
126 self->qf_dat.l += (size_t)l;
129 /* TODO The last visual may excess (adjusted!) *qfold-max* if it's a wide;
130 * TODO place it on the next line, break before */
131 if (self->qf_datw >= self->qf_qfold_max) {
132 /* If we have seen a nice breakpoint during traversal, shuffle data
133 * around a bit so as to restore the trailing part after flushing */
134 if (self->qf_brkl > 0) {
135 save_w = self->qf_datw - self->qf_brkw;
136 save_l = self->qf_dat.l - self->qf_brkl;
137 save_b = self->qf_dat.s + self->qf_brkl + 2;
138 memmove(save_b, save_b - 2, save_l);
139 self->qf_dat.l = self->qf_brkl;
142 self->qf_dat.s[self->qf_dat.l++] = '\\';
143 jflush:
144 self->qf_dat.s[self->qf_dat.l++] = '\n';
145 rv = quoteflt_flush(self);
147 /* Restore takeovers, if any */
148 if (save_b != NULL) {
149 self->qf_brk_isws = FAL0;
150 self->qf_datw += save_w;
151 self->qf_dat.l = save_l;
152 memmove(self->qf_dat.s, save_b, save_l);
154 } else if (self->qf_datw >= self->qf_qfold_min && !self->qf_brk_isws) {
155 bool_t isws = (iswspace(wc) != 0);
157 if (isws || !self->qf_brk_isws || self->qf_brkl == 0) {
158 self->qf_brkl = self->qf_dat.l;
159 self->qf_brkw = self->qf_datw;
160 self->qf_brk_isws = isws;
164 /* If state changed to prefix, perform full reset (note this implies that
165 * quoteflt_flush() performs too much work..) */
166 if (wc == '\n') {
167 self->qf_state = _QF_PREFIX;
168 self->qf_wscnt = self->qf_datw = 0;
169 self->qf_currq.l = 0;
171 jleave:
172 NYD_LEAVE;
173 return rv;
176 static ssize_t
177 _qf_state_prefix(struct qf_vc *vc)
179 struct quoteflt *self;
180 ssize_t rv;
181 char const *buf;
182 size_t len, i;
183 wchar_t wc;
184 NYD_ENTER;
186 self = vc->self;
187 rv = 0;
189 for (buf = vc->buf, len = vc->len; len > 0;) {
190 /* xxx NULL BYTE! */
191 i = mbrtowc(&wc, buf, len, self->qf_mbps);
192 if (i == (size_t)-1) {
193 /* On hard error, don't modify mbstate_t and step one byte */
194 self->qf_mbps[0] = self->qf_mbps[1];
195 ++buf;
196 --len;
197 self->qf_wscnt = 0;
198 continue;
200 self->qf_mbps[1] = self->qf_mbps[0];
201 if (i == (size_t)-2) {
202 /* Redundant shift sequence, out of buffer */
203 len = 0;
204 break;
206 buf += i;
207 len -= i;
209 if (wc == L'\n')
210 goto jfin;
211 if (iswspace(wc)) {
212 ++self->qf_wscnt;
213 continue;
215 if (i == 1 && ISQUOTE(wc)) {
216 self->qf_wscnt = 0;
217 if (self->qf_currq.l >= QUOTE_MAX - 3) {
218 self->qf_currq.s[QUOTE_MAX - 3] = '.';
219 self->qf_currq.s[QUOTE_MAX - 2] = '.';
220 self->qf_currq.s[QUOTE_MAX - 1] = '.';
221 self->qf_currq.l = QUOTE_MAX;
222 } else
223 self->qf_currq.s[self->qf_currq.l++] = buf[-1];
224 continue;
227 /* The quote is parsed and compressed; dump it */
228 jfin:
229 self->qf_state = _QF_DATA;
230 /* Overtake WS to the current quote in order to preserve it for eventual
231 * necessary follow lines, too */
232 /* TODO we de-facto "normalize" to ASCII SP here which MESSES tabs!! */
233 while (self->qf_wscnt-- > 0 && self->qf_currq.l < QUOTE_MAX)
234 self->qf_currq.s[self->qf_currq.l++] = ' ';
235 self->qf_datw = self->qf_pfix_len + self->qf_currq.l;
236 self->qf_wscnt = 0;
237 rv = _qf_add_data(self, wc);
238 break;
241 vc->buf = buf;
242 vc->len = len;
243 NYD_LEAVE;
244 return rv;
247 static ssize_t
248 _qf_state_data(struct qf_vc *vc)
250 struct quoteflt *self;
251 ssize_t rv;
252 char const *buf;
253 size_t len, i;
254 wchar_t wc;
255 NYD_ENTER;
257 self = vc->self;
258 rv = 0;
260 for (buf = vc->buf, len = vc->len; len > 0;) {
261 /* xxx NULL BYTE! */
262 i = mbrtowc(&wc, buf, len, self->qf_mbps);
263 if (i == (size_t)-1) {
264 /* On hard error, don't modify mbstate_t and step one byte */
265 self->qf_mbps[0] = self->qf_mbps[1];
266 ++buf;
267 --len;
268 continue;
270 self->qf_mbps[1] = self->qf_mbps[0];
271 if (i == (size_t)-2) {
272 /* Redundant shift sequence, out of buffer */
273 len = 0;
274 break;
276 buf += i;
277 len -= i;
279 { ssize_t j = _qf_add_data(self, wc);
280 if (j < 0) {
281 rv = j;
282 break;
284 rv += j;
287 if (self->qf_state != _QF_DATA)
288 break;
291 vc->buf = buf;
292 vc->len = len;
293 NYD_LEAVE;
294 return rv;
296 #endif /* HAVE_QUOTE_FOLD */
298 FL struct quoteflt *
299 quoteflt_dummy(void) /* TODO LEGACY (until filters are plugged when needed) */
301 static struct quoteflt qf_i;
303 return &qf_i;
306 FL void
307 quoteflt_init(struct quoteflt *self, char const *prefix)
309 #ifdef HAVE_QUOTE_FOLD
310 char const *xcp, *cp;
311 #endif
312 NYD_ENTER;
314 memset(self, 0, sizeof *self);
316 if ((self->qf_pfix = prefix) != NULL)
317 self->qf_pfix_len = (ui32_t)strlen(prefix);
319 /* Check whether the user wants the more fancy quoting algorithm */
320 /* TODO *quote-fold*: QUOTE_MAX may excess it! */
321 #ifdef HAVE_QUOTE_FOLD
322 if (self->qf_pfix_len > 0 && (cp = ok_vlook(quote_fold)) != NULL) {
323 ui32_t qmin, qmax;
325 /* These magic values ensure we don't bail */
326 n_idec_ui32_cp(&qmax, cp, 10, &xcp);
327 if (qmax < self->qf_pfix_len + 6)
328 qmax = self->qf_pfix_len + 6;
329 --qmax; /* The newline escape */
330 if (cp == xcp || *xcp == '\0')
331 qmin = (qmax >> 1) + (qmax >> 2) + (qmax >> 5);
332 else {
333 n_idec_ui32_cp(&qmin, &xcp[1], 10, NULL);
334 if (qmin < qmax >> 1)
335 qmin = qmax >> 1;
336 else if (qmin > qmax - 2)
337 qmin = qmax - 2;
339 self->qf_qfold_min = qmin;
340 self->qf_qfold_max = qmax;
342 /* Add pad for takeover copies, reverse solidus and newline */
343 self->qf_dat.s = salloc((qmax + 3) * n_mb_cur_max);
344 self->qf_currq.s = salloc((QUOTE_MAX + 1) * n_mb_cur_max);
346 #endif
347 NYD_LEAVE;
350 FL void
351 quoteflt_destroy(struct quoteflt *self) /* xxx inline */
353 NYD_ENTER;
354 n_UNUSED(self);
355 NYD_LEAVE;
358 FL void
359 quoteflt_reset(struct quoteflt *self, FILE *f) /* xxx inline */
361 NYD_ENTER;
362 self->qf_os = f;
363 #ifdef HAVE_QUOTE_FOLD
364 self->qf_state = _QF_CLEAN;
365 self->qf_dat.l =
366 self->qf_currq.l = 0;
367 memset(self->qf_mbps, 0, sizeof self->qf_mbps);
368 #endif
369 NYD_LEAVE;
372 FL ssize_t
373 quoteflt_push(struct quoteflt *self, char const *dat, size_t len)
375 /* (xxx Ideally the actual push() [and flush()] would be functions on their
376 * xxx own, via indirect vtbl call ..) */
377 ssize_t rv = 0;
378 NYD_ENTER;
380 self->qf_nl_last = (len > 0 && dat[len - 1] == '\n'); /* TODO HACK */
382 if (len == 0)
383 goto jleave;
385 /* Bypass? TODO Finally, this filter simply should not be used, then
386 * (TODO It supercedes prefix_write() or something) */
387 if (self->qf_pfix_len == 0) {
388 if (len != fwrite(dat, 1, len, self->qf_os))
389 goto jerr;
390 rv = len;
392 /* Normal: place *indentprefix* at every BOL */
393 else
394 #ifdef HAVE_QUOTE_FOLD
395 if (self->qf_qfold_max == 0)
396 #endif
398 void *vp;
399 size_t ll;
400 bool_t pxok = (self->qf_qfold_min != 0);
402 for (;;) {
403 if (!pxok) {
404 ll = self->qf_pfix_len;
405 if (ll != fwrite(self->qf_pfix, 1, ll, self->qf_os))
406 goto jerr;
407 rv += ll;
408 pxok = TRU1;
411 /* xxx Strictly speaking this is invalid, because only `/' and `.' are
412 * xxx mandated by POSIX.1-2008 as "invariant across all locales
413 * xxx supported"; though there is no charset known which uses this
414 * xxx control char as part of a multibyte character; note that S-nail
415 * XXX (and the Mail codebase as such) do not support EBCDIC */
416 if ((vp = memchr(dat, '\n', len)) == NULL)
417 ll = len;
418 else {
419 pxok = FAL0;
420 ll = PTR2SIZE((char*)vp - dat) + 1;
423 if (ll != fwrite(dat, sizeof *dat, ll, self->qf_os))
424 goto jerr;
425 rv += ll;
426 if ((len -= ll) == 0)
427 break;
428 dat += ll;
431 self->qf_qfold_min = pxok;
433 /* Overly complicated, though still only line-per-line: *quote-fold*.
434 * - If .qf_currq.l is 0, then we are in a clean state. Reset .qf_mbps;
435 * TODO note this means we assume that lines start with reset escape seq,
436 * TODO but i don't think this is any worse than what we currently do;
437 * TODO in 15.0, with the value carrier, we should carry conversion states
438 * TODO all along, only resetting on error (or at words for header =???=);
439 * TODO this still is weird for error handling, but we need to act more
440 * TODO stream-alike (though in practice i don't think cross-line states
441 * TODO can be found, because of compatibility reasons; however, being
442 * TODO a problem rather than a solution is not a good thing (tm))
443 * - Lookout for a newline */
444 #ifdef HAVE_QUOTE_FOLD
445 else {
446 struct qf_vc vc;
447 ssize_t i;
449 vc.self = self;
450 vc.buf = dat;
451 vc.len = len;
452 while (vc.len > 0) {
453 switch (self->qf_state) {
454 case _QF_CLEAN:
455 case _QF_PREFIX:
456 i = _qf_state_prefix(&vc);
457 break;
458 default: /* silence cc (`i' unused) */
459 case _QF_DATA:
460 i = _qf_state_data(&vc);
461 break;
463 if (i < 0)
464 goto jerr;
465 rv += i;
468 #endif /* HAVE_QUOTE_FOLD */
470 jleave:
471 NYD_LEAVE;
472 return rv;
473 jerr:
474 rv = -1;
475 goto jleave;
478 FL ssize_t
479 quoteflt_flush(struct quoteflt *self)
481 ssize_t rv = 0;
482 NYD_ENTER;
483 n_UNUSED(self);
485 #ifdef HAVE_QUOTE_FOLD
486 if (self->qf_dat.l > 0) {
487 rv = _qf_dump_prefix(self);
488 if (rv >= 0) {
489 size_t i = self->qf_dat.l;
490 if (i == fwrite(self->qf_dat.s, 1, i, self->qf_os))
491 rv += i;
492 else
493 rv = -1;
494 self->qf_dat.l = 0;
495 self->qf_brk_isws = FAL0;
496 self->qf_wscnt = self->qf_brkl = self->qf_brkw = 0;
497 self->qf_datw = self->qf_pfix_len + self->qf_currq.l;
500 #endif
501 NYD_LEAVE;
502 return rv;
506 * HTML tagsoup filter TODO rewrite wchar_t based (require HAVE_C90AMEND1)
507 * TODO . Numeric &#NO; entities should also be treated by struct hf_ent
508 * TODO . Yes, we COULD support CSS based quoting when we'd check type="quote"
509 * TODO (nonstandard) and watch out for style="gmail_quote" (or so, VERY
510 * TODO nonstandard) and tracking a stack of such elements (to be popped
511 * TODO once the closing element is seen). Then, after writing a newline,
512 * TODO place sizeof(stack) ">"s first. But aren't these HTML mails rude?
513 * TODO Interlocking and non-well-formed data will break us down
515 #ifdef HAVE_FILTER_HTML_TAGSOUP
517 enum hf_limits {
518 _HF_MINLEN = 10, /* Minimum line length (can't really be smaller) */
519 _HF_BRKSUB = 8 /* Start considering line break MAX - BRKSUB */
522 enum hf_flags {
523 _HF_UTF8 = 1<<0, /* Data is in UTF-8 */
524 _HF_ERROR = 1<<1, /* A hard error occurred, bail as soon as possible */
525 _HF_NOPUT = 1<<2, /* (In a tag,) Don't generate output */
526 _HF_IGN = 1<<3, /* Ignore mode on */
527 _HF_ANY = 1<<4, /* Yet seen just any output */
528 _HF_PRE = 1<<5, /* In <pre>formatted mode */
529 _HF_ENT = 1<<6, /* Currently parsing an entity */
530 _HF_BLANK = 1<<7, /* Whitespace last */
531 _HF_HREF = 1<<8, /* External <a href=> was the last href seen */
533 _HF_NL_1 = 1<<9, /* One \n seen */
534 _HF_NL_2 = 2<<9, /* We have produced an all empty line */
535 _HF_NL_MASK = _HF_NL_1 | _HF_NL_2
538 enum hf_special_actions {
539 _HFSA_NEEDSEP = -1, /* Need an empty line (paragraph separator) */
540 _HFSA_NEEDNL = -2, /* Need a new line start (table row) */
541 _HFSA_IGN = -3, /* Things like <style>..</style>, <script>.. */
542 _HFSA_PRE = -4, /* <pre>.. */
543 _HFSA_PRE_END = -5,
544 _HFSA_IMG = -6, /* <img> */
545 _HFSA_HREF = -7, /* <a>.. */
546 _HFSA_HREF_END = -8
549 enum hf_entity_flags {
550 _HFE_HAVE_UNI = 1<<6, /* Have a Unicode replacement character */
551 _HFE_HAVE_CSTR = 1<<7, /* Have a string replacement */
552 /* We store the length of the entity name in the flags, too */
553 _HFE_LENGTH_MASK = (1<<6) - 1
556 struct htmlflt_href {
557 struct htmlflt_href *hfh_next;
558 ui32_t hfh_no; /* Running sequence */
559 ui32_t hfh_len; /* of .hfh_dat */
560 char hfh_dat[n_VFIELD_SIZE(0)];
563 struct htmlflt_tag {
564 si32_t hft_act; /* char or hf_special_actions */
565 /* Not NUL: character to inject, with high bit set: place a space
566 * afterwards. Note: only recognized with _HFSA_NEEDSEP or _HFSA_NEEDNL */
567 char hft_injc;
568 ui8_t hft_len; /* Useful bytes in (NUL terminated) .hft_tag */
569 char const hft_tag[10]; /* Tag less < and > surroundings (TR, /TR, ..) */
571 n_CTA(n_SIZEOF_FIELD(struct htmlflt_tag, hft_tag) < LINESIZE,
572 "Structure field too large a size"); /* .hf_ign_tag */
574 struct hf_ent {
575 ui8_t hfe_flags; /* enum hf_entity_flags plus length of .hfe_ent */
576 char hfe_c; /* Plain replacement character */
577 ui16_t hfe_uni; /* Unicode codepoint if _HFE_HAVE_UNI */
578 char hfe_cstr[5]; /* _HFE_HAVE_CSTR (e.g., &hellip; -> ...) */
579 char const hfe_ent[7]; /* Entity less & and ; surroundings */
582 /* Tag list; not binary searched :(, so try to take care a bit */
583 static struct htmlflt_tag const _hf_tags[] = {
584 # undef _X
585 # undef _XC
586 # define _X(S,A) {A, '\0', sizeof(S) -1, S "\0"}
587 # define _XC(S,C,A) {A, C, sizeof(S) -1, S "\0"}
589 _X("P", _HFSA_NEEDSEP), _X("/P", _HFSA_NEEDNL),
590 _X("DIV", _HFSA_NEEDSEP), _X("/DIV", _HFSA_NEEDNL),
591 _X("TR", _HFSA_NEEDNL),
592 _X("/TH", '\t'),
593 _X("/TD", '\t'),
594 /* Let it stand out; also since we don't support implicit paragraphs after
595 * block elements, plain running text after a list (seen in Unicode
596 * announcement via Firefox) */
597 _X("UL", _HFSA_NEEDSEP), _X("/UL", _HFSA_NEEDSEP),
598 _XC("LI", (char)0x80 | '*', _HFSA_NEEDSEP),
599 _X("DL", _HFSA_NEEDSEP),
600 _X("DT", _HFSA_NEEDNL),
602 _X("A", _HFSA_HREF), _X("/A", _HFSA_HREF_END),
603 _X("IMG", _HFSA_IMG),
604 _X("BR", '\n'),
605 _X("PRE", _HFSA_PRE), _X("/PRE", _HFSA_PRE_END),
606 _X("TITLE", _HFSA_NEEDSEP), /*_X("/TITLE", '\n'),*/
607 _X("H1", _HFSA_NEEDSEP), /*_X("/H1", '\n'),*/
608 _X("H2", _HFSA_NEEDSEP), /*_X("/H2", '\n'),*/
609 _X("H3", _HFSA_NEEDSEP), /*_X("/H3", '\n'),*/
610 _X("H4", _HFSA_NEEDSEP), /*_X("/H4", '\n'),*/
611 _X("H5", _HFSA_NEEDSEP), /*_X("/H5", '\n'),*/
612 _X("H6", _HFSA_NEEDSEP), /*_X("/H6", '\n'),*/
614 _X("STYLE", _HFSA_IGN),
615 _X("SCRIPT", _HFSA_IGN),
617 # undef _X
620 /* Entity list; not binary searched.. */
621 static struct hf_ent const _hf_ents[] = {
622 # undef _X
623 # undef _XU
624 # undef _XS
625 # undef _XUS
626 # define _X(E,C) {(sizeof(E) -1), C, 0x0u, "", E "\0"}
627 # define _XU(E,C,U) {(sizeof(E) -1) | _HFE_HAVE_UNI, C, U, "", E "\0"}
628 # define _XS(E,S) {(sizeof(E) -1) | _HFE_HAVE_CSTR, '\0', 0x0u,S "\0",E "\0"}
629 # define _XSU(E,S,U) \
630 {(sizeof(E) -1) | _HFE_HAVE_UNI | _HFE_HAVE_CSTR, '\0', U, S "\0", E "\0"}
632 _X("quot", '"'),
633 _X("amp", '&'),
634 _X("lt", '<'), _X("gt", '>'),
636 _XU("nbsp", ' ', 0x0020 /* Note: not 0x00A0 seems to be better for us */),
637 _XU("middot", '.', 0x00B7),
638 _XSU("hellip", "...", 0x2026),
639 _XSU("mdash", "---", 0x2014), _XSU("ndash", "--", 0x2013),
640 _XSU("laquo", "<<", 0x00AB), _XSU("raquo", ">>", 0x00BB),
641 _XSU("lsaquo", "<", 0x2039), _XSU("rsaquo", ">", 0x203A),
642 _XSU("lsquo", "'", 0x2018), _XSU("rsquo", "'", 0x2019),
643 _XSU("ldquo", "\"", 0x201C), _XSU("rdquo", "\"", 0x201D),
644 _XSU("uarr", "^|", 0x2191), _XSU("darr", "|v", 0x2193),
646 _XSU("cent", "CENT", 0x00A2),
647 _XSU("copy", "(C)", 0x00A9),
648 _XSU("euro", "EUR", 0x20AC),
649 _XSU("infin", "INFY", 0x221E),
650 _XSU("pound", "GBP", 0x00A3),
651 _XSU("reg", "(R)", 0x00AE),
652 _XSU("sect", "S:", 0x00A7),
653 _XSU("yen", "JPY", 0x00A5),
655 /* German umlauts */
656 _XSU("Auml", "Ae", 0x00C4), _XSU("auml", "ae", 0x00E4),
657 _XSU("Ouml", "Oe", 0x00D6), _XSU("ouml", "oe", 0x00F6),
658 _XSU("Uuml", "Ue", 0x00DC), _XSU("uuml", "ue", 0x00FC),
659 _XSU("szlig", "ss", 0x00DF)
661 # undef _X
662 # undef _XU
663 # undef _XS
664 # undef _XSU
667 /* Real output */
668 static struct htmlflt * _hf_dump_hrefs(struct htmlflt *self);
669 static struct htmlflt * _hf_dump(struct htmlflt *self);
670 static struct htmlflt * _hf_store(struct htmlflt *self, char c);
671 # ifdef HAVE_NATCH_CHAR
672 static struct htmlflt * __hf_sync_mbstuff(struct htmlflt *self);
673 # endif
675 /* Virtual output */
676 static struct htmlflt * _hf_nl(struct htmlflt *self);
677 static struct htmlflt * _hf_nl_force(struct htmlflt *self);
678 static struct htmlflt * _hf_putc(struct htmlflt *self, char c);
679 static struct htmlflt * _hf_putc_premode(struct htmlflt *self, char c);
680 static struct htmlflt * _hf_puts(struct htmlflt *self, char const *cp);
681 static struct htmlflt * _hf_putbuf(struct htmlflt *self,
682 char const *cp, size_t len);
684 /* Try to locate a param'eter in >hf_bdat, store it (non-terminated!) or NULL */
685 static struct htmlflt * _hf_param(struct htmlflt *self, struct str *store,
686 char const *param);
688 /* Expand all entities in the given parameter */
689 static struct htmlflt * _hf_expand_all_ents(struct htmlflt *self,
690 struct str const *param);
692 /* Completely parsed over a tag / an entity, interpret that */
693 static struct htmlflt * _hf_check_tag(struct htmlflt *self, char const *s);
694 static struct htmlflt * _hf_check_ent(struct htmlflt *self, char const *s,
695 size_t l);
697 /* Input handler */
698 static ssize_t _hf_add_data(struct htmlflt *self,
699 char const *dat, size_t len);
701 static struct htmlflt *
702 _hf_dump_hrefs(struct htmlflt *self)
704 struct htmlflt_href *hhp;
705 NYD2_ENTER;
707 if (!(self->hf_flags & _HF_NL_2) && putc('\n', self->hf_os) == EOF) {
708 self->hf_flags |= _HF_ERROR;
709 goto jleave;
712 /* Reverse the list */
713 for (hhp = self->hf_hrefs, self->hf_hrefs = NULL; hhp != NULL;) {
714 struct htmlflt_href *tmp = hhp->hfh_next;
715 hhp->hfh_next = self->hf_hrefs;
716 self->hf_hrefs = hhp;
717 hhp = tmp;
720 /* Then dump it */
721 while ((hhp = self->hf_hrefs) != NULL) {
722 self->hf_hrefs = hhp->hfh_next;
724 if (!(self->hf_flags & _HF_ERROR)) {
725 int w = fprintf(self->hf_os, " [%u] %.*s\n",
726 hhp->hfh_no, (int)hhp->hfh_len, hhp->hfh_dat);
727 if (w < 0)
728 self->hf_flags |= _HF_ERROR;
730 free(hhp);
733 self->hf_flags |= (putc('\n', self->hf_os) == EOF)
734 ? _HF_ERROR : _HF_NL_1 | _HF_NL_2;
735 self->hf_href_dist = (ui32_t)n_realscreenheight >> 1;
736 jleave:
737 NYD2_LEAVE;
738 return self;
741 static struct htmlflt *
742 _hf_dump(struct htmlflt *self)
744 ui32_t f, l;
745 char c, *cp;
746 NYD2_ENTER;
748 f = self->hf_flags & ~_HF_BLANK;
749 l = self->hf_len;
750 cp = self->hf_line;
751 self->hf_mbwidth = self->hf_mboff = self->hf_last_ws = self->hf_len = 0;
753 for (c = '\0'; l > 0; --l) {
754 c = *cp++;
755 jput:
756 if (putc(c, self->hf_os) == EOF) {
757 self->hf_flags = (f |= _HF_ERROR);
758 goto jleave;
762 if (c != '\n') {
763 f |= (f & _HF_NL_1) ? _HF_NL_2 : _HF_NL_1;
764 l = 1;
765 c = '\n';
766 goto jput;
768 self->hf_flags = f;
770 /* Check whether there are HREFs to dump; there is so much messy tagsoup out
771 * there that it seems best not to simply dump HREFs in each _dump(), but
772 * only with some gap, let's say half the real screen height */
773 if (--self->hf_href_dist < 0 && (f & _HF_NL_2) && self->hf_hrefs != NULL)
774 self = _hf_dump_hrefs(self);
775 jleave:
776 NYD2_LEAVE;
777 return self;
780 static struct htmlflt *
781 _hf_store(struct htmlflt *self, char c)
783 ui32_t f, l, i;
784 NYD2_ENTER;
786 assert(c != '\n');
788 f = self->hf_flags;
789 l = self->hf_len;
790 self->hf_line[l] = (c == '\t' ? ' ' : c);
791 self->hf_len = ++l;
792 if (blankspacechar(c)) {
793 if (c == '\t') {
794 i = 8 - ((l - 1) & 7); /* xxx magic tab width of 8 */
795 if (i > 0) {
797 self = _hf_store(self, ' ');
798 while (--i > 0);
799 goto jleave;
802 self->hf_last_ws = l;
803 } else if (/*c == '.' ||*/ c == ',' || c == ';' || c == '-')
804 self->hf_last_ws = l;
806 i = l;
807 # ifdef HAVE_NATCH_CHAR /* XXX This code is really ridiculous! */
808 if (n_mb_cur_max > 1) { /* XXX should mbrtowc() and THEN store, at least.. */
809 wchar_t wc;
810 int w, x = mbtowc(&wc, self->hf_line + self->hf_mboff, l - self->hf_mboff);
812 if (x > 0) {
813 if ((w = wcwidth(wc)) == -1 ||
814 /* Actively filter out L-TO-R and R-TO-R marks TODO ctext */
815 (wc == 0x200E || wc == 0x200F ||
816 (wc >= 0x202A && wc <= 0x202E)) ||
817 /* And some zero-width messes */
818 wc == 0x00AD || (wc >= 0x200B && wc <= 0x200D) ||
819 /* Oh about the ISO C wide character interfaces, baby! */
820 (wc == 0xFEFF)){
821 self->hf_len -= x;
822 goto jleave;
823 } else if (iswspace(wc))
824 self->hf_last_ws = l;
825 self->hf_mboff += x;
826 i = (self->hf_mbwidth += w);
827 } else {
828 if (x < 0) {
829 mbtowc(&wc, NULL, n_mb_cur_max);
830 if (UICMP(32, l - self->hf_mboff, >=, n_mb_cur_max)) { /* XXX */
831 ++self->hf_mboff;
832 ++self->hf_mbwidth;
835 i = self->hf_mbwidth;
838 # endif
840 /* Do we need to break the line? */
841 if (i >= self->hf_lmax - _HF_BRKSUB) {
842 ui32_t lim = self->hf_lmax >> 1;
844 /* Let's hope we saw a sane place to break this line! */
845 if (self->hf_last_ws >= lim) {
846 jput:
847 i = self->hf_len = self->hf_last_ws;
848 self = _hf_dump(self);
849 if ((self->hf_len = (l -= i)) > 0) {
850 self->hf_flags &= ~_HF_NL_MASK;
851 memmove(self->hf_line, self->hf_line + i, l);
852 # ifdef HAVE_NATCH_CHAR
853 __hf_sync_mbstuff(self);
854 # endif
856 goto jleave;
859 /* Any 7-bit characters? */
860 for (i = l; i-- >= lim;)
861 if (asciichar((c = self->hf_line[i]))) {
862 self->hf_last_ws = ++i;
863 goto jput;
864 } else if ((f & _HF_UTF8) && ((ui8_t)c & 0xC0) != 0x80) {
865 self->hf_last_ws = i;
866 goto jput;
869 /* Hard break necessary! xxx really badly done */
870 if (l >= self->hf_lmax - 1)
871 self = _hf_dump(self);
873 jleave:
874 NYD2_LEAVE;
875 return self;
878 # ifdef HAVE_NATCH_CHAR
879 static struct htmlflt *
880 __hf_sync_mbstuff(struct htmlflt *self)
882 wchar_t wc;
883 char const *b;
884 ui32_t o, w, l;
885 NYD2_ENTER;
887 b = self->hf_line;
888 o = w = 0;
889 l = self->hf_len;
890 goto jumpin;
892 while (l > 0) {
893 int x = mbtowc(&wc, b, l);
895 if (x == 0)
896 break;
898 if (x > 0) {
899 b += x;
900 l -= x;
901 o += x;
902 if ((x = wcwidth(wc)) == -1)
903 x = 1;
904 w += x;
905 continue;
908 /* Bad, skip over a single character.. XXX very bad indeed */
909 ++b;
910 ++o;
911 ++w;
912 --l;
913 jumpin:
914 mbtowc(&wc, NULL, n_mb_cur_max);
917 self->hf_mboff = o;
918 self->hf_mbwidth = w;
920 NYD2_LEAVE;
921 return self;
923 # endif /* HAVE_NATCH_CHAR */
925 static struct htmlflt *
926 _hf_nl(struct htmlflt *self)
928 ui32_t f;
929 NYD2_ENTER;
931 if (!((f = self->hf_flags) & _HF_ERROR)) {
932 if (f & _HF_ANY) {
933 if ((f & _HF_NL_MASK) != _HF_NL_MASK)
934 self = _hf_dump(self);
935 } else
936 self->hf_flags = (f |= _HF_NL_MASK);
938 NYD2_LEAVE;
939 return self;
942 static struct htmlflt *
943 _hf_nl_force(struct htmlflt *self)
945 NYD2_ENTER;
946 if (!(self->hf_flags & _HF_ERROR))
947 self = _hf_dump(self);
948 NYD2_LEAVE;
949 return self;
952 static struct htmlflt *
953 _hf_putc(struct htmlflt *self, char c)
955 ui32_t f;
956 NYD2_ENTER;
958 if ((f = self->hf_flags) & _HF_ERROR)
959 goto jleave;
961 if (c == '\n') {
962 self = _hf_nl(self);
963 goto jleave;
964 } else if (c == ' ' || c == '\t') {
965 if ((f & _HF_BLANK) || self->hf_len == 0)
966 goto jleave;
967 f |= _HF_BLANK;
968 } else
969 f &= ~_HF_BLANK;
970 f &= ~_HF_NL_MASK;
971 self->hf_flags = (f |= _HF_ANY);
972 self = _hf_store(self, c);
973 jleave:
974 NYD2_LEAVE;
975 return self;
978 static struct htmlflt *
979 _hf_putc_premode(struct htmlflt *self, char c)
981 ui32_t f;
982 NYD2_ENTER;
984 if ((f = self->hf_flags) & _HF_ERROR) {
986 } else if (c == '\n')
987 self = _hf_nl_force(self);
988 else {
989 f &= ~_HF_NL_MASK;
990 self->hf_flags = (f |= _HF_ANY);
991 self = _hf_store(self, c);
993 NYD2_LEAVE;
994 return self;
997 static struct htmlflt *
998 _hf_puts(struct htmlflt *self, char const *cp)
1000 char c;
1001 NYD2_ENTER;
1003 while ((c = *cp++) != '\0')
1004 self = _hf_putc(self, c);
1005 NYD2_LEAVE;
1006 return self;
1009 static struct htmlflt *
1010 _hf_putbuf(struct htmlflt *self, char const *cp, size_t len)
1012 NYD2_ENTER;
1014 while (len-- > 0)
1015 self = _hf_putc(self, *cp++);
1016 NYD2_LEAVE;
1017 return self;
1020 static struct htmlflt *
1021 _hf_param(struct htmlflt *self, struct str *store, char const *param)
1023 char const *cp;
1024 char c, x, quote;
1025 size_t i;
1026 bool_t hot;
1027 NYD2_ENTER;
1029 store->s = NULL;
1030 store->l = 0;
1031 cp = self->hf_bdat;
1033 /* Skip over any non-WS first; be aware of soup, if it slipped through */
1034 for(;;){
1035 if((c = *cp++) == '\0' || c == '>')
1036 goto jleave;
1037 if(whitechar(c))
1038 break;
1041 /* Search for the parameter, take care of other quoting along the way */
1042 x = *param++;
1043 x = upperconv(x);
1044 quote = '\0';
1045 i = strlen(param);
1047 for(hot = TRU1;;){
1048 if((c = *cp++) == '\0' || c == '>')
1049 goto jleave;
1050 if(whitechar(c)){
1051 hot = TRU1;
1052 continue;
1055 /* Could it be a parameter? */
1056 if(hot){
1057 hot = FAL0;
1059 /* Is it the desired one? */
1060 if((c = upperconv(c)) == x && !ascncasecmp(param, cp, i)){
1061 char const *cp2 = cp + i;
1063 if((quote = *cp2++) != '='){
1064 if(quote == '\0' || quote == '>')
1065 goto jleave;
1066 while(whitechar(quote))
1067 quote = *cp2++;
1069 if(quote == '='){
1070 cp = cp2;
1071 break;
1073 continue; /* XXX Optimize: i bytes or even cp2 can't be it! */
1077 /* Not the desired one; but a parameter? */
1078 if(c != '=')
1079 continue;
1080 /* If so, properly skip over the value */
1081 if(c == '"' || c == '\''){
1082 /* TODO i have forgotten whether reverse solidus quoting is allowed
1083 * TODO quoted HTML parameter values? not supporting that for now.. */
1084 for(quote = c; (c = *cp) != '\0' && c != quote; ++cp)
1086 }else
1087 while((c = *cp) != '\0' && !whitechar(c) && c != '>')
1088 ++cp;
1089 if(c == '\0')
1090 goto jleave;
1093 /* Skip further whitespace */
1094 for(;;){
1095 if((c = *cp++) == '\0' || c == '>')
1096 goto jleave;
1097 if(!whitechar(c))
1098 break;
1101 if(c == '"' || c == '\''){
1102 /* TODO i have forgotten whether reverse solisud quoting is allowed in
1103 * TODO quoted HTML parameter values? not supporting that for now.. */
1104 store->s = n_UNCONST(cp);
1105 for(quote = c; (c = *cp) != '\0' && c != quote; ++cp)
1107 /* XXX ... and we simply ignore a missing trailing " :> */
1108 }else{
1109 store->s = n_UNCONST(cp - 1);
1110 if(!whitechar(c))
1111 while((c = *cp) != '\0' && !whitechar(c) && c != '>')
1112 ++cp;
1114 i = PTR2SIZE(cp - store->s);
1116 /* Terrible tagsoup out there, e.g., groups.google.com produces href=""
1117 * parameter values prefixed and suffixed by newlines! Therefore trim the
1118 * value content TODO join into the parse step above! */
1119 for (cp = store->s; i > 0 && spacechar(*cp); ++cp, --i)
1121 store->s = n_UNCONST(cp);
1122 for (cp += i - 1; i > 0 && spacechar(*cp); --cp, --i)
1124 if ((store->l = i) == 0)
1125 store->s = NULL;
1126 jleave:
1127 NYD2_LEAVE;
1128 return self;
1131 static struct htmlflt *
1132 _hf_expand_all_ents(struct htmlflt *self, struct str const *param)
1134 char const *cp, *maxcp, *ep;
1135 char c;
1136 size_t i;
1137 NYD2_ENTER;
1139 for (cp = param->s, maxcp = cp + param->l; cp < maxcp;)
1140 if ((c = *cp++) != '&')
1141 jputc:
1142 self = _hf_putc(self, c);
1143 else {
1144 for (ep = cp--;;) {
1145 if (ep == maxcp || (c = *ep++) == '\0') {
1146 for (; cp < ep; ++cp)
1147 self = _hf_putc(self, *cp);
1148 goto jleave;
1149 } else if (c == ';') {
1150 if ((i = PTR2SIZE(ep - cp)) > 1) {
1151 self = _hf_check_ent(self, cp, i);
1152 break;
1153 } else {
1154 c = *cp++;
1155 goto jputc;
1159 cp = ep;
1161 jleave:
1162 NYD2_LEAVE;
1163 return self;
1166 static struct htmlflt *
1167 _hf_check_tag(struct htmlflt *self, char const *s)
1169 char nobuf[32], c;
1170 struct str param;
1171 size_t i;
1172 struct htmlflt_tag const *hftp;
1173 ui32_t f;
1174 NYD2_ENTER;
1176 /* Extra check only */
1177 assert(s != NULL);
1178 if (*s != '<') {
1179 DBG( n_alert("HTML tagsoup filter _hf_check_tag() called on soup!"); )
1180 jput_as_is:
1181 self = _hf_puts(self, self->hf_bdat);
1182 goto jleave;
1185 for (++s, i = 0; (c = s[i]) != '\0' && c != '>' && !whitechar(c); ++i)
1186 /* Special massage for things like <br/>: after the slash only whitespace
1187 * may separate us from the closing right angle! */
1188 if (c == '/') {
1189 size_t j = i + 1;
1191 while ((c = s[j]) != '\0' && c != '>' && whitechar(c))
1192 ++j;
1193 if (c == '>')
1194 break;
1197 for (hftp = _hf_tags;;) {
1198 if (i == hftp->hft_len && !ascncasecmp(s, hftp->hft_tag, i)) {
1199 c = s[hftp->hft_len];
1200 if (c == '>' || c == '/' || whitechar(c))
1201 break;
1203 if (PTRCMP(++hftp, >=, _hf_tags + n_NELEM(_hf_tags)))
1204 goto jnotknown;
1207 f = self->hf_flags;
1208 switch (hftp->hft_act) {
1209 case _HFSA_PRE_END:
1210 f &= ~_HF_PRE;
1211 if (0) {
1212 /* FALLTHRU */
1213 case _HFSA_PRE:
1214 f |= _HF_PRE;
1216 self->hf_flags = f;
1217 /* FALLTHRU */
1219 case _HFSA_NEEDSEP:
1220 if (!(self->hf_flags & _HF_NL_2))
1221 self = _hf_nl(self);
1222 /* FALLTHRU */
1223 case _HFSA_NEEDNL:
1224 if (!(f & _HF_NL_1))
1225 self = _hf_nl(self);
1226 if (hftp->hft_injc != '\0') {
1227 self = _hf_putc(self, hftp->hft_injc & 0x7F);
1228 if ((uc_i)hftp->hft_injc & 0x80)
1229 self = _hf_putc(self, ' ');
1231 break;
1233 case _HFSA_IGN:
1234 self->hf_ign_tag = hftp;
1235 self->hf_flags = (f |= _HF_IGN | _HF_NOPUT);
1236 break;
1238 case _HFSA_IMG:
1239 self = _hf_param(self, &param, "alt");
1240 self = _hf_putc(self, '[');
1241 if (param.s == NULL) {
1242 param.s = n_UNCONST("IMG");
1243 param.l = 3;
1244 goto jimg_put;
1245 } /* else */ if (memchr(param.s, '&', param.l) != NULL)
1246 self = _hf_expand_all_ents(self, &param);
1247 else
1248 jimg_put:
1249 self = _hf_putbuf(self, param.s, param.l);
1250 self = _hf_putc(self, ']');
1251 break;
1253 case _HFSA_HREF:
1254 self = _hf_param(self, &param, "href");
1255 /* Ignore non-external links */
1256 if (param.s != NULL && *param.s != '#') {
1257 struct htmlflt_href *hhp = smalloc(
1258 n_VSTRUCT_SIZEOF(struct htmlflt_href, hfh_dat) + param.l +1);
1260 hhp->hfh_next = self->hf_hrefs;
1261 hhp->hfh_no = ++self->hf_href_no;
1262 hhp->hfh_len = (ui32_t)param.l;
1263 memcpy(hhp->hfh_dat, param.s, param.l);
1265 snprintf(nobuf, sizeof nobuf, "[%u]", hhp->hfh_no);
1266 self->hf_flags = (f |= _HF_HREF);
1267 self->hf_hrefs = hhp;
1268 self = _hf_puts(self, nobuf);
1269 } else
1270 self->hf_flags = (f &= ~_HF_HREF);
1271 break;
1272 case _HFSA_HREF_END:
1273 if (f & _HF_HREF) {
1274 snprintf(nobuf, sizeof nobuf, "[/%u]", self->hf_href_no);
1275 self = _hf_puts(self, nobuf);
1277 break;
1279 default:
1280 c = (char)(hftp->hft_act & 0xFF);
1281 self = _hf_putc(self, c);
1282 break;
1283 case '\0':
1284 break;
1286 jleave:
1287 NYD2_LEAVE;
1288 return self;
1290 /* The problem is that even invalid tagsoup is widely used, without real
1291 * searching i have seen e-mail address in <N@H.D> notation, and more.
1292 * To protect us a bit look around and possibly write the content as such */
1293 jnotknown:
1294 switch (*s) {
1295 case '!':
1296 case '?':
1297 /* Ignore <!DOCTYPE, <!-- comments, <? PIs.. */
1298 goto jleave;
1299 case '>':
1300 /* Print out an empty tag as such */
1301 if (s[1] == '\0') {
1302 --s;
1303 goto jput_as_is;
1305 break;
1306 case '/':
1307 ++s;
1308 break;
1309 default:
1310 break;
1313 /* Also skip over : in order to suppress v:roundrect, w:anchorlock.. */
1314 while ((c = *s++) != '\0' && c != '>' && !whitechar(c) && c != ':')
1315 if (!asciichar(c) || punctchar(c)) {
1316 self = _hf_puts(self, self->hf_bdat);
1317 break;
1319 goto jleave;
1322 static struct htmlflt *
1323 _hf_check_ent(struct htmlflt *self, char const *s, size_t l)
1325 char nobuf[32];
1326 char const *s_save;
1327 size_t l_save;
1328 struct hf_ent const *hfep;
1329 size_t i;
1330 NYD2_ENTER;
1332 s_save = s;
1333 l_save = l;
1334 assert(*s == '&');
1335 assert(l > 0);
1336 /* False entities seen in the wild assert(s[l - 1] == ';'); */
1337 ++s;
1338 l -= 2;
1340 /* Numeric entity, or try named search */
1341 if (*s == '#') {
1342 i = (*++s == 'x' ? 16 : 10);
1344 if ((i != 16 || (++s, --l) > 0) && l < sizeof(nobuf)) {
1345 memcpy(nobuf, s, l);
1346 nobuf[l] = '\0';
1347 n_idec_uiz_cp(&i, nobuf, i, NULL);
1348 if (i <= 0x7F)
1349 self = _hf_putc(self, (char)i);
1350 else if (self->hf_flags & _HF_UTF8) {
1351 jputuni:
1352 l = n_utf32_to_utf8((ui32_t)i, nobuf);
1353 self = _hf_putbuf(self, nobuf, l);
1354 } else
1355 goto jeent;
1356 } else
1357 goto jeent;
1358 } else {
1359 ui32_t f = self->hf_flags, hf;
1361 for (hfep = _hf_ents; PTRCMP(hfep, <, _hf_ents + n_NELEM(_hf_ents));
1362 ++hfep)
1363 if (l == ((hf = hfep->hfe_flags) & _HFE_LENGTH_MASK) &&
1364 !strncmp(s, hfep->hfe_ent, l)) {
1365 if ((hf & _HFE_HAVE_UNI) && (f & _HF_UTF8)) {
1366 i = hfep->hfe_uni;
1367 goto jputuni;
1368 } else if (hf & _HFE_HAVE_CSTR)
1369 self = _hf_puts(self, hfep->hfe_cstr);
1370 else
1371 self = _hf_putc(self, hfep->hfe_c);
1372 goto jleave;
1374 jeent:
1375 self = _hf_putbuf(self, s_save, l_save);
1377 jleave:
1378 NYD2_LEAVE;
1379 return self;
1382 static ssize_t
1383 _hf_add_data(struct htmlflt *self, char const *dat, size_t len)
1385 char c, *cp, *cp_max;
1386 bool_t hot;
1387 ssize_t rv = 0;
1388 NYD_ENTER;
1390 /* Final put request? */
1391 if (dat == NULL) {
1392 if (self->hf_len > 0 || self->hf_hrefs != NULL) {
1393 self = _hf_dump(self);
1394 if (self->hf_hrefs != NULL)
1395 self = _hf_dump_hrefs(self);
1396 rv = 1;
1398 goto jleave;
1401 /* Always ensure some initial buffer */
1402 if ((cp = self->hf_curr) != NULL)
1403 cp_max = self->hf_bmax;
1404 else {
1405 cp = self->hf_curr = self->hf_bdat = smalloc(LINESIZE);
1406 cp_max = self->hf_bmax = cp + LINESIZE -1; /* (Always room for NUL!) */
1408 hot = (cp != self->hf_bdat);
1410 for (rv = (ssize_t)len; len > 0; --len) {
1411 ui32_t f = self->hf_flags;
1413 if (f & _HF_ERROR)
1414 break;
1415 c = *dat++;
1417 /* Soup is really weird, and scripts may contain almost anything (and
1418 * newer CSS standards are also cryptic): therefore prefix the _HF_IGN
1419 * test and walk until we see the required end tag */
1420 /* TODO For real safety _HF_IGN soup condome would also need to know
1421 * TODO about quoted strings so that 'var i = "</script>";' couldn't
1422 * TODO fool it! We really want this mode also for _HF_NOPUT to be
1423 * TODO able to *gracefully* detect the tag-closing '>', but then if
1424 * TODO that is a single mechanism we should have made it! */
1425 if (f & _HF_IGN) {
1426 struct htmlflt_tag const *hftp = self->hf_ign_tag;
1427 size_t i;
1429 if (c == '<') {
1430 hot = TRU1;
1431 jcp_reset:
1432 cp = self->hf_bdat;
1433 } else if (c == '>') {
1434 if (hot) {
1435 if ((i = PTR2SIZE(cp - self->hf_bdat)) > 1 &&
1436 --i == hftp->hft_len &&
1437 !ascncasecmp(self->hf_bdat + 1, hftp->hft_tag, i))
1438 self->hf_flags = (f &= ~(_HF_IGN | _HF_NOPUT));
1439 hot = FAL0;
1440 goto jcp_reset;
1442 } else if (hot) {
1443 *cp++ = c;
1444 i = PTR2SIZE(cp - self->hf_bdat);
1445 if ((i == 1 && c != '/') || --i > hftp->hft_len) {
1446 hot = FAL0;
1447 goto jcp_reset;
1450 } else switch (c) {
1451 case '<':
1452 /* People are using & without &amp;ing it, ditto <; be aware */
1453 if (f & (_HF_NOPUT | _HF_ENT)) {
1454 f &= ~_HF_ENT;
1455 /* Special case "<!--" buffer content to deal with really weird
1456 * things that can be done with "<!--[if gte mso 9]>" syntax */
1457 if (PTR2SIZE(cp - self->hf_bdat) != 4 ||
1458 memcmp(self->hf_bdat, "<!--", 4)) {
1459 self->hf_flags = f;
1460 *cp = '\0';
1461 self = _hf_puts(self, self->hf_bdat);
1462 f = self->hf_flags;
1465 cp = self->hf_bdat;
1466 *cp++ = c;
1467 self->hf_flags = (f |= _HF_NOPUT);
1468 break;
1469 case '>':
1470 /* Weird tagsoup around, do we actually parse a tag? */
1471 if (!(f & _HF_NOPUT))
1472 goto jdo_c;
1473 cp[0] = c;
1474 cp[1] = '\0';
1475 f &= ~(_HF_NOPUT | _HF_ENT);
1476 self->hf_flags = f;
1477 self = _hf_check_tag(self, self->hf_bdat);
1478 *(cp = self->hf_bdat) = '\0'; /* xxx extra safety */
1479 /* Quick hack to get rid of redundant newline after <pre> XXX */
1480 if (!(f & _HF_PRE) && (self->hf_flags & _HF_PRE) &&
1481 len > 1 && *dat == '\n')
1482 ++dat, --len;
1483 break;
1485 case '\r': /* TODO CR should be stripped in lower level!! (Only B64!?!) */
1486 break;
1487 case '\n':
1488 /* End of line is not considered unless we are in PRE section.
1489 * However, in _HF_NOPUT mode we must be aware of tagsoup which uses
1490 * newlines for separating parameters */
1491 if (f & _HF_NOPUT)
1492 goto jdo_c;
1493 self = (f & _HF_PRE) ? _hf_nl_force(self) : _hf_putc(self, ' ');
1494 break;
1496 case '\t':
1497 if (!(f & _HF_PRE))
1498 c = ' ';
1499 /* FALLTHRU */
1500 default:
1501 jdo_c:
1502 /* If not currently parsing a tag and bypassing normal output.. */
1503 if (!(f & _HF_NOPUT)) {
1504 if (cntrlchar(c))
1505 break;
1506 if (c == '&') {
1507 cp = self->hf_bdat;
1508 *cp++ = c;
1509 self->hf_flags = (f |= _HF_NOPUT | _HF_ENT);
1510 } else if (f & _HF_PRE) {
1511 self = _hf_putc_premode(self, c);
1512 self->hf_flags &= ~_HF_BLANK;
1513 } else
1514 self = _hf_putc(self, c);
1515 } else if ((f & _HF_ENT) && c == ';') {
1516 cp[0] = c;
1517 cp[1] = '\0';
1518 f &= ~(_HF_NOPUT | _HF_ENT);
1519 self->hf_flags = f;
1520 self = _hf_check_ent(self, self->hf_bdat,
1521 PTR2SIZE(cp + 1 - self->hf_bdat));
1522 } else {
1523 /* We may need to grow the buffer */
1524 if (PTRCMP(cp + 42/2, >=, cp_max)) {
1525 size_t i = PTR2SIZE(cp - self->hf_bdat),
1526 m = PTR2SIZE(self->hf_bmax - self->hf_bdat) + LINESIZE;
1528 cp = self->hf_bdat = srealloc(self->hf_bdat, m);
1529 self->hf_bmax = cp + m -1;
1530 self->hf_curr = (cp += i);
1532 *cp++ = c;
1536 self->hf_curr = cp;
1537 jleave:
1538 NYD_LEAVE;
1539 return (self->hf_flags & _HF_ERROR) ? -1 : rv;
1543 * TODO Because we don't support filter chains yet this filter will be run
1544 * TODO in a dedicated subprocess, driven via a special Popen() mode
1546 static bool_t __hf_hadpipesig;
1547 static void
1548 __hf_onpipe(int signo)
1550 NYD_X; /* Signal handler */
1551 n_UNUSED(signo);
1552 __hf_hadpipesig = TRU1;
1555 FL int
1556 htmlflt_process_main(void)
1558 char buf[BUFFER_SIZE];
1559 struct htmlflt hf;
1560 size_t i;
1561 int rv;
1562 NYD_ENTER;
1564 __hf_hadpipesig = FAL0;
1565 safe_signal(SIGPIPE, &__hf_onpipe);
1567 htmlflt_init(&hf);
1568 htmlflt_reset(&hf, n_stdout);
1570 for (;;) {
1571 if ((i = fread(buf, sizeof(buf[0]), n_NELEM(buf), n_stdin)) == 0) {
1572 rv = !feof(n_stdin);
1573 break;
1576 if ((rv = __hf_hadpipesig))
1577 break;
1578 /* Just use this directly.. */
1579 if (htmlflt_push(&hf, buf, i) < 0) {
1580 rv = 1;
1581 break;
1584 if (rv == 0 && htmlflt_flush(&hf) < 0)
1585 rv = 1;
1587 htmlflt_destroy(&hf);
1589 rv |= __hf_hadpipesig;
1590 NYD_LEAVE;
1591 return rv;
1594 FL void
1595 htmlflt_init(struct htmlflt *self)
1597 NYD_ENTER;
1598 /* (Rather redundant though) */
1599 memset(self, 0, sizeof *self);
1600 NYD_LEAVE;
1603 FL void
1604 htmlflt_destroy(struct htmlflt *self)
1606 NYD_ENTER;
1607 htmlflt_reset(self, NULL);
1608 NYD_LEAVE;
1611 FL void
1612 htmlflt_reset(struct htmlflt *self, FILE *f)
1614 struct htmlflt_href *hfhp;
1615 NYD_ENTER;
1617 while ((hfhp = self->hf_hrefs) != NULL) {
1618 self->hf_hrefs = hfhp->hfh_next;
1619 free(hfhp);
1622 if (self->hf_bdat != NULL)
1623 free(self->hf_bdat);
1624 if (self->hf_line != NULL)
1625 free(self->hf_line);
1627 memset(self, 0, sizeof *self);
1629 if (f != NULL) {
1630 ui32_t sw = n_MAX(_HF_MINLEN, (ui32_t)n_scrnwidth);
1632 self->hf_line = smalloc((size_t)sw * n_mb_cur_max +1);
1633 self->hf_lmax = sw;
1635 if (n_psonce & n_PSO_UNICODE) /* TODO not truly generic */
1636 self->hf_flags = _HF_UTF8;
1637 self->hf_os = f;
1639 NYD_LEAVE;
1642 FL ssize_t
1643 htmlflt_push(struct htmlflt *self, char const *dat, size_t len)
1645 ssize_t rv;
1646 NYD_ENTER;
1648 rv = _hf_add_data(self, dat, len);
1649 NYD_LEAVE;
1650 return rv;
1653 FL ssize_t
1654 htmlflt_flush(struct htmlflt *self)
1656 ssize_t rv;
1657 NYD_ENTER;
1659 rv = _hf_add_data(self, NULL, 0);
1660 rv |= !fflush(self->hf_os) ? 0 : -1;
1661 NYD_LEAVE;
1662 return rv;
1664 #endif /* HAVE_FILTER_HTML_TAGSOUP */
1666 /* s-it-mode */