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
|
/*
* de/encoding stuff. hopefully mostly to be depricated in favour of subst.c + strbuf
*/
#define SHOW_ME_VAPPEND_PRINTF
#include <stdio.h>
#include <stdarg.h>
#include "webcit.h"
/*
* remove escaped strings from i.e. the url string (like %20 for blanks)
*/
long unescape_input(char *buf)
{
unsigned int a, b;
char hex[3];
long buflen;
long len;
buflen = strlen(buf);
while ((buflen > 0) && (isspace(buf[buflen - 1]))){
buf[buflen - 1] = 0;
buflen --;
}
a = 0;
while (a < buflen) {
if (buf[a] == '+')
buf[a] = ' ';
if (buf[a] == '%') {
/* don't let % chars through, rather truncate the input. */
if (a + 2 > buflen) {
buf[a] = '\0';
buflen = a;
}
else {
hex[0] = buf[a + 1];
hex[1] = buf[a + 2];
hex[2] = 0;
b = 0;
b = decode_hex(hex);
buf[a] = (char) b;
len = buflen - a - 2;
if (len > 0)
memmove(&buf[a + 1], &buf[a + 3], len);
buflen -=2;
}
}
a++;
}
return a;
}
/*
* Copy a string, escaping characters which have meaning in HTML.
*
* target target buffer
* strbuf source buffer
* nbsp If nonzero, spaces are converted to non-breaking spaces.
* nolinebreaks if set, linebreaks are removed from the string.
*/
long stresc(char *target, long tSize, char *strbuf, int nbsp, int nolinebreaks)
{
char *aptr, *bptr, *eptr;
*target = '\0';
aptr = strbuf;
bptr = target;
eptr = target + tSize - 6; /* our biggest unit to put in... */
while ((bptr < eptr) && !IsEmptyStr(aptr) ){
if (*aptr == '<') {
memcpy(bptr, "<", 4);
bptr += 4;
}
else if (*aptr == '>') {
memcpy(bptr, ">", 4);
bptr += 4;
}
else if (*aptr == '&') {
memcpy(bptr, "&", 5);
bptr += 5;
}
else if (*aptr == '\"') {
memcpy(bptr, """, 6);
bptr += 6;
}
else if (*aptr == '\'') {
memcpy(bptr, "'", 5);
bptr += 5;
}
else if (*aptr == LB) {
*bptr = '<';
bptr ++;
}
else if (*aptr == RB) {
*bptr = '>';
bptr ++;
}
else if (*aptr == QU) {
*bptr ='"';
bptr ++;
}
else if ((*aptr == 32) && (nbsp == 1)) {
memcpy(bptr, " ", 6);
bptr += 6;
}
else if ((*aptr == '\n') && (nolinebreaks)) {
*bptr='\0'; /* nothing */
}
else if ((*aptr == '\r') && (nolinebreaks)) {
*bptr='\0'; /* nothing */
}
else{
*bptr = *aptr;
bptr++;
}
aptr ++;
}
*bptr = '\0';
if ((bptr = eptr - 1 ) && !IsEmptyStr(aptr) )
return -1;
return (bptr - target);
}
/*
* static wrapper for ecsputs1
*/
void escputs(const char *strbuf)
{
StrEscAppend(WC->WBuf, NULL, strbuf, 0, 0);
}
/*
* urlescape buffer and print it to the client
*/
void urlescputs(const char *strbuf)
{
StrBufUrlescAppend(WC->WBuf, NULL, strbuf);
}
/**
* urlescape buffer and print it as header
*/
void hurlescputs(const char *strbuf)
{
StrBufUrlescAppend(WC->HBuf, NULL, strbuf);
}
/*
* Output a string to the client as a CDATA block
*/
void cdataout(char *rawdata)
{
char *ptr = rawdata;
wc_printf("<![CDATA[");
while ((ptr != NULL) && (ptr[0] != 0))
{
if (!strncmp(ptr, "]]>", 3)) {
wc_printf("]]]]><![CDATA[>");
++ptr; ++ptr; ++ptr;
}
else {
wc_printf("%c", ptr[0]);
++ptr;
}
}
wc_printf("]]>");
}
|