forked from kristapsdz/lowdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
html_escape.c
299 lines (263 loc) · 7.29 KB
/
html_escape.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
/* $Id$ */
/*
* Copyright (c) 2008, Natacha Porté
* Copyright (c) 2011, Vicent Martí
* Copyright (c) 2014, Xavier Mendez, Devin Torres and the Hoedown authors
* Copyright (c) 2016--2017, 2020 Kristaps Dzonsons <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "config.h"
#if HAVE_SYS_QUEUE
# include <sys/queue.h>
#endif
#include <assert.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include "lowdown.h"
#include "extern.h"
/*
* The following characters will not be escaped:
*
* -_.+!*'(),%#@?=;:/,+&$ alphanum
*
* Note that this character set is the addition of:
*
* - The characters which are safe to be in an URL
* - The characters which are *not* safe to be in an URL because they
* are RESERVED characters.
*
* We assume (lazily) that any RESERVED char that appears inside an URL
* is actually meant to have its native function (i.e. as an URL
* component/separator) and hence needs no escaping.
*
* There are two exceptions: the chacters & (amp) and ' (single quote)
* do not appear in the table. They are meant to appear in the URL as
* components, yet they require special HTML-entity escaping to generate
* valid HTML markup.
*
* All other characters will be escaped to %XX.
*/
static const int href_tbl[UINT8_MAX + 1] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1,
0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
};
/*
* For each 8-bit character, if non-zero, the HTML entity we need to
* substitute for safe output. According to the OWASP rules:
* & --> &
* < --> <
* > --> > optional
* " --> " optional
* ' --> ' optional: ' is not recommended
* / --> / optional: end an HTML entity
*/
static const int esc_tbl[UINT8_MAX + 1] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 3,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 4, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
};
/*
* Maximum value of optional entity subsititute.
* Above this (>ESC_TBL_OWASP_MAX) is mandatory.
*/
#define ESC_TBL_OWASP_MAX 3
/*
* For literal contexts, maximum value of optional entity subsititute.
* Above this is mandatory.
*/
#define ESC_TBL_LITERAL_MAX 3
/*
* Named entities (mostly).
*/
static const char *esc_name[] = {
"",
"", /* oops */
"'",
"/",
">",
"<",
"&",
};
/*
* Numeric entities.
*/
static const char *esc_num[] = {
"",
"", /* oops */
"'",
"/",
">",
"<",
"&",
};
/*
* Escape general HTML attributes.
* This is modelled after the main Markdown parser.
*/
void
hesc_attr(struct lowdown_buf *ob, const char *data, size_t size)
{
size_t i = 0, mark;
if (size == 0)
return;
while (i < size) {
mark = i;
while (i < size && data[i] != '"' && data[i] != '&')
i++;
if (mark == 0 && i >= size) {
hbuf_put(ob, data, size);
return;
}
if (i > mark)
hbuf_put(ob, data + mark, i - mark);
if (i >= size)
break;
if (data[i] == '"')
HBUF_PUTSL(ob, """);
else if (data[i] == '&')
HBUF_PUTSL(ob, "&");
i++;
}
}
/*
* Escape (part of) a URL inside HTML.
*/
void
hesc_href(struct lowdown_buf *ob, const char *data, size_t size)
{
static const char hex_chars[] = "0123456789ABCDEF";
size_t i = 0, mark;
char hex_str[3];
if (size == 0)
return;
hex_str[0] = '%';
while (i < size) {
mark = i;
while (i < size &&
href_tbl[(unsigned char)data[i]])
i++;
/*
* Optimization for cases where there's nothing to
* escape.
*/
if (mark == 0 && i >= size) {
hbuf_put(ob, data, size);
return;
}
if (i > mark)
hbuf_put(ob, data + mark, i - mark);
/* Escaping... */
if (i >= size)
break;
switch (data[i]) {
case '&':
/*
* Amp appears all the time in URLs, but needs
* HTML-entity escaping to be inside an href.
*/
HBUF_PUTSL(ob, "&");
break;
case '\'':
/*
* The single quote is a valid URL character
* according to the standard; it needs HTML
* entity escaping too.
*/
HBUF_PUTSL(ob, "'");
break;
default:
/*
* Every other character goes with a %XX
* escaping.
*/
hex_str[1] = hex_chars[(data[i] >> 4) & 0xF];
hex_str[2] = hex_chars[data[i] & 0xF];
hbuf_put(ob, hex_str, 3);
break;
}
i++;
}
}
/*
* Escape HTML.
* If "literal", we also want to escape some extra characters.
* If "secure", also escape characters as suggested by OWASP rules.
* If "num", use only numeric escapes.
* Does nothing if "size" is zero.
*/
void
hesc_html(struct lowdown_buf *ob, const char *data,
size_t size, int secure, int literal, int num)
{
size_t i = 0, mark;
int max = 0;
unsigned char ch;
if (size == 0)
return;
if (!literal && !secure)
max = ESC_TBL_OWASP_MAX;
else if (literal && !secure)
max = ESC_TBL_LITERAL_MAX;
while (1) {
mark = i;
while (i < size &&
esc_tbl[(unsigned char)data[i]] == 0)
i++;
/* Case where there's nothing to escape. */
if (mark == 0 && i >= size) {
hbuf_put(ob, data, size);
return;
}
if (i > mark)
hbuf_put(ob, data + mark, i - mark);
if (i >= size)
break;
ch = (unsigned char)data[i];
if (esc_tbl[ch] <= max)
hbuf_putc(ob, data[i]);
else
hbuf_puts(ob, num ?
esc_num[esc_tbl[ch]] :
esc_name[esc_tbl[ch]]);
i++;
}
}