Trim application manifests as much as MS' documentation and Owen's experiments
[u/mdw/putty] / misc.c
CommitLineData
f4ff9455 1/*
2 * Platform-independent routines shared between all PuTTY programs.
3 */
4
374330e2 5#include <stdio.h>
6#include <stdlib.h>
1709795f 7#include <stdarg.h>
46cfeac8 8#include <limits.h>
57356d63 9#include <ctype.h>
5471d09a 10#include <assert.h>
374330e2 11#include "putty.h"
12
d57f70af 13/*
14 * Parse a string block size specification. This is approximately a
15 * subset of the block size specs supported by GNU fileutils:
16 * "nk" = n kilobytes
17 * "nM" = n megabytes
18 * "nG" = n gigabytes
19 * All numbers are decimal, and suffixes refer to powers of two.
20 * Case-insensitive.
21 */
22unsigned long parse_blocksize(const char *bs)
23{
24 char *suf;
25 unsigned long r = strtoul(bs, &suf, 10);
26 if (*suf != '\0') {
27 while (isspace(*suf)) suf++;
28 switch (*suf) {
29 case 'k': case 'K':
30 r *= 1024ul;
31 break;
32 case 'm': case 'M':
33 r *= 1024ul * 1024ul;
34 break;
35 case 'g': case 'G':
36 r *= 1024ul * 1024ul * 1024ul;
37 break;
38 case '\0':
39 default:
40 break;
41 }
42 }
43 return r;
44}
45
03f64569 46/* ----------------------------------------------------------------------
47 * String handling routines.
48 */
49
57356d63 50char *dupstr(const char *s)
03f64569 51{
6d113886 52 char *p = NULL;
53 if (s) {
54 int len = strlen(s);
55 p = snewn(len + 1, char);
56 strcpy(p, s);
57 }
03f64569 58 return p;
59}
60
61/* Allocate the concatenation of N strings. Terminate arg list with NULL. */
57356d63 62char *dupcat(const char *s1, ...)
03f64569 63{
64 int len;
65 char *p, *q, *sn;
66 va_list ap;
67
68 len = strlen(s1);
69 va_start(ap, s1);
70 while (1) {
71 sn = va_arg(ap, char *);
72 if (!sn)
73 break;
74 len += strlen(sn);
75 }
76 va_end(ap);
77
3d88e64d 78 p = snewn(len + 1, char);
03f64569 79 strcpy(p, s1);
80 q = p + strlen(p);
81
82 va_start(ap, s1);
83 while (1) {
84 sn = va_arg(ap, char *);
85 if (!sn)
86 break;
87 strcpy(q, sn);
88 q += strlen(q);
89 }
90 va_end(ap);
91
92 return p;
93}
94
57356d63 95/*
96 * Do an sprintf(), but into a custom-allocated buffer.
97 *
28da9e3d 98 * Currently I'm doing this via vsnprintf. This has worked so far,
99 * but it's not good, because:
100 *
101 * - vsnprintf is not available on all platforms. There's an ifdef
102 * to use `_vsnprintf', which seems to be the local name for it
103 * on Windows. Other platforms may lack it completely, in which
104 * case it'll be time to rewrite this function in a totally
105 * different way.
106 *
107 * - technically you can't reuse a va_list like this: it is left
108 * unspecified whether advancing a va_list pointer modifies its
109 * value or something it points to, so on some platforms calling
110 * vsnprintf twice on the same va_list might fail hideously. It
111 * would be better to use the `va_copy' macro mandated by C99,
112 * but that too is not yet ubiquitous.
113 *
114 * The only `properly' portable solution I can think of is to
115 * implement my own format string scanner, which figures out an
116 * upper bound for the length of each formatting directive,
117 * allocates the buffer as it goes along, and calls sprintf() to
118 * actually process each directive. If I ever need to actually do
119 * this, some caveats:
120 *
121 * - It's very hard to find a reliable upper bound for
122 * floating-point values. %f, in particular, when supplied with
123 * a number near to the upper or lower limit of representable
124 * numbers, could easily take several hundred characters. It's
125 * probably feasible to predict this statically using the
126 * constants in <float.h>, or even to predict it dynamically by
127 * looking at the exponent of the specific float provided, but
128 * it won't be fun.
129 *
130 * - Don't forget to _check_, after calling sprintf, that it's
131 * used at most the amount of space we had available.
132 *
133 * - Fault any formatting directive we don't fully understand. The
134 * aim here is to _guarantee_ that we never overflow the buffer,
135 * because this is a security-critical function. If we see a
136 * directive we don't know about, we should panic and die rather
137 * than run any risk.
57356d63 138 */
139char *dupprintf(const char *fmt, ...)
140{
141 char *ret;
142 va_list ap;
143 va_start(ap, fmt);
144 ret = dupvprintf(fmt, ap);
145 va_end(ap);
146 return ret;
147}
148char *dupvprintf(const char *fmt, va_list ap)
149{
150 char *buf;
151 int len, size;
152
3d88e64d 153 buf = snewn(512, char);
57356d63 154 size = 512;
155
156 while (1) {
157#ifdef _WINDOWS
158#define vsnprintf _vsnprintf
159#endif
160 len = vsnprintf(buf, size, fmt, ap);
161 if (len >= 0 && len < size) {
162 /* This is the C99-specified criterion for snprintf to have
163 * been completely successful. */
164 return buf;
165 } else if (len > 0) {
166 /* This is the C99 error condition: the returned length is
167 * the required buffer size not counting the NUL. */
168 size = len + 1;
169 } else {
170 /* This is the pre-C99 glibc error condition: <0 means the
171 * buffer wasn't big enough, so we enlarge it a bit and hope. */
172 size += 512;
173 }
3d88e64d 174 buf = sresize(buf, size, char);
57356d63 175 }
176}
177
39934deb 178/*
179 * Read an entire line of text from a file. Return a buffer
180 * malloced to be as big as necessary (caller must free).
181 */
182char *fgetline(FILE *fp)
183{
184 char *ret = snewn(512, char);
185 int size = 512, len = 0;
186 while (fgets(ret + len, size - len, fp)) {
187 len += strlen(ret + len);
188 if (ret[len-1] == '\n')
189 break; /* got a newline, we're done */
190 size = len + 512;
191 ret = sresize(ret, size, char);
192 }
193 if (len == 0) { /* first fgets returned NULL */
194 sfree(ret);
195 return NULL;
196 }
197 ret[len] = '\0';
198 return ret;
199}
200
03f64569 201/* ----------------------------------------------------------------------
1549e076 202 * Base64 encoding routine. This is required in public-key writing
203 * but also in HTTP proxy handling, so it's centralised here.
204 */
205
206void base64_encode_atom(unsigned char *data, int n, char *out)
207{
208 static const char base64_chars[] =
209 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
210
211 unsigned word;
212
213 word = data[0] << 16;
214 if (n > 1)
215 word |= data[1] << 8;
216 if (n > 2)
217 word |= data[2];
218 out[0] = base64_chars[(word >> 18) & 0x3F];
219 out[1] = base64_chars[(word >> 12) & 0x3F];
220 if (n > 1)
221 out[2] = base64_chars[(word >> 6) & 0x3F];
222 else
223 out[2] = '=';
224 if (n > 2)
225 out[3] = base64_chars[word & 0x3F];
226 else
227 out[3] = '=';
228}
229
230/* ----------------------------------------------------------------------
5471d09a 231 * Generic routines to deal with send buffers: a linked list of
232 * smallish blocks, with the operations
233 *
234 * - add an arbitrary amount of data to the end of the list
235 * - remove the first N bytes from the list
236 * - return a (pointer,length) pair giving some initial data in
237 * the list, suitable for passing to a send or write system
238 * call
7983f47e 239 * - retrieve a larger amount of initial data from the list
5471d09a 240 * - return the current size of the buffer chain in bytes
241 */
242
243#define BUFFER_GRANULE 512
244
245struct bufchain_granule {
246 struct bufchain_granule *next;
247 int buflen, bufpos;
248 char buf[BUFFER_GRANULE];
249};
250
251void bufchain_init(bufchain *ch)
252{
253 ch->head = ch->tail = NULL;
254 ch->buffersize = 0;
255}
256
257void bufchain_clear(bufchain *ch)
258{
259 struct bufchain_granule *b;
260 while (ch->head) {
261 b = ch->head;
262 ch->head = ch->head->next;
263 sfree(b);
264 }
265 ch->tail = NULL;
266 ch->buffersize = 0;
267}
268
269int bufchain_size(bufchain *ch)
270{
271 return ch->buffersize;
272}
273
e0e7dff8 274void bufchain_add(bufchain *ch, const void *data, int len)
5471d09a 275{
e0e7dff8 276 const char *buf = (const char *)data;
5471d09a 277
bfa5400d 278 if (len == 0) return;
279
5471d09a 280 ch->buffersize += len;
281
282 if (ch->tail && ch->tail->buflen < BUFFER_GRANULE) {
283 int copylen = min(len, BUFFER_GRANULE - ch->tail->buflen);
284 memcpy(ch->tail->buf + ch->tail->buflen, buf, copylen);
285 buf += copylen;
286 len -= copylen;
287 ch->tail->buflen += copylen;
288 }
289 while (len > 0) {
290 int grainlen = min(len, BUFFER_GRANULE);
291 struct bufchain_granule *newbuf;
3d88e64d 292 newbuf = snew(struct bufchain_granule);
5471d09a 293 newbuf->bufpos = 0;
294 newbuf->buflen = grainlen;
295 memcpy(newbuf->buf, buf, grainlen);
296 buf += grainlen;
297 len -= grainlen;
298 if (ch->tail)
299 ch->tail->next = newbuf;
300 else
301 ch->head = ch->tail = newbuf;
302 newbuf->next = NULL;
303 ch->tail = newbuf;
304 }
305}
306
307void bufchain_consume(bufchain *ch, int len)
308{
7983f47e 309 struct bufchain_granule *tmp;
310
5471d09a 311 assert(ch->buffersize >= len);
7983f47e 312 while (len > 0) {
313 int remlen = len;
314 assert(ch->head != NULL);
315 if (remlen >= ch->head->buflen - ch->head->bufpos) {
316 remlen = ch->head->buflen - ch->head->bufpos;
317 tmp = ch->head;
318 ch->head = tmp->next;
319 sfree(tmp);
320 if (!ch->head)
321 ch->tail = NULL;
322 } else
323 ch->head->bufpos += remlen;
324 ch->buffersize -= remlen;
325 len -= remlen;
5471d09a 326 }
327}
328
329void bufchain_prefix(bufchain *ch, void **data, int *len)
330{
331 *len = ch->head->buflen - ch->head->bufpos;
332 *data = ch->head->buf + ch->head->bufpos;
333}
334
7983f47e 335void bufchain_fetch(bufchain *ch, void *data, int len)
336{
337 struct bufchain_granule *tmp;
338 char *data_c = (char *)data;
339
340 tmp = ch->head;
341
342 assert(ch->buffersize >= len);
343 while (len > 0) {
344 int remlen = len;
345
346 assert(tmp != NULL);
347 if (remlen >= tmp->buflen - tmp->bufpos)
348 remlen = tmp->buflen - tmp->bufpos;
349 memcpy(data_c, tmp->buf + tmp->bufpos, remlen);
350
351 tmp = tmp->next;
352 len -= remlen;
353 data_c += remlen;
354 }
355}
356
03f64569 357/* ----------------------------------------------------------------------
b191636d 358 * My own versions of malloc, realloc and free. Because I want
359 * malloc and realloc to bomb out and exit the program if they run
360 * out of memory, realloc to reliably call malloc if passed a NULL
361 * pointer, and free to reliably do nothing if passed a NULL
362 * pointer. We can also put trace printouts in, if we need to; and
363 * we can also replace the allocator with an ElectricFence-like
364 * one.
365 */
366
367#ifdef MINEFIELD
d0912d1f 368void *minefield_c_malloc(size_t size);
369void minefield_c_free(void *p);
370void *minefield_c_realloc(void *p, size_t size);
371#endif
374330e2 372
373#ifdef MALLOC_LOG
374static FILE *fp = NULL;
375
d7da76ca 376static char *mlog_file = NULL;
377static int mlog_line = 0;
378
32874aea 379void mlog(char *file, int line)
380{
d7da76ca 381 mlog_file = file;
382 mlog_line = line;
c662dbc0 383 if (!fp) {
374330e2 384 fp = fopen("putty_mem.log", "w");
c662dbc0 385 setvbuf(fp, NULL, _IONBF, BUFSIZ);
386 }
374330e2 387 if (fp)
32874aea 388 fprintf(fp, "%s:%d: ", file, line);
374330e2 389}
390#endif
391
46cfeac8 392void *safemalloc(size_t n, size_t size)
32874aea 393{
b191636d 394 void *p;
46cfeac8 395
396 if (n > INT_MAX / size) {
397 p = NULL;
398 } else {
399 size *= n;
b191636d 400#ifdef MINEFIELD
46cfeac8 401 p = minefield_c_malloc(size);
b191636d 402#else
46cfeac8 403 p = malloc(size);
b191636d 404#endif
46cfeac8 405 }
406
374330e2 407 if (!p) {
d7da76ca 408 char str[200];
409#ifdef MALLOC_LOG
410 sprintf(str, "Out of memory! (%s:%d, size=%d)",
411 mlog_file, mlog_line, size);
1b2ef365 412 fprintf(fp, "*** %s\n", str);
413 fclose(fp);
d7da76ca 414#else
415 strcpy(str, "Out of memory!");
416#endif
1709795f 417 modalfatalbox(str);
374330e2 418 }
419#ifdef MALLOC_LOG
420 if (fp)
421 fprintf(fp, "malloc(%d) returns %p\n", size, p);
422#endif
423 return p;
424}
425
46cfeac8 426void *saferealloc(void *ptr, size_t n, size_t size)
32874aea 427{
374330e2 428 void *p;
46cfeac8 429
430 if (n > INT_MAX / size) {
431 p = NULL;
432 } else {
433 size *= n;
434 if (!ptr) {
b191636d 435#ifdef MINEFIELD
46cfeac8 436 p = minefield_c_malloc(size);
b191636d 437#else
46cfeac8 438 p = malloc(size);
b191636d 439#endif
46cfeac8 440 } else {
b191636d 441#ifdef MINEFIELD
46cfeac8 442 p = minefield_c_realloc(ptr, size);
b191636d 443#else
46cfeac8 444 p = realloc(ptr, size);
b191636d 445#endif
46cfeac8 446 }
b191636d 447 }
46cfeac8 448
374330e2 449 if (!p) {
d7da76ca 450 char str[200];
451#ifdef MALLOC_LOG
452 sprintf(str, "Out of memory! (%s:%d, size=%d)",
453 mlog_file, mlog_line, size);
1b2ef365 454 fprintf(fp, "*** %s\n", str);
455 fclose(fp);
d7da76ca 456#else
457 strcpy(str, "Out of memory!");
458#endif
1709795f 459 modalfatalbox(str);
374330e2 460 }
461#ifdef MALLOC_LOG
462 if (fp)
463 fprintf(fp, "realloc(%p,%d) returns %p\n", ptr, size, p);
464#endif
465 return p;
466}
467
32874aea 468void safefree(void *ptr)
469{
374330e2 470 if (ptr) {
471#ifdef MALLOC_LOG
472 if (fp)
473 fprintf(fp, "free(%p)\n", ptr);
474#endif
b191636d 475#ifdef MINEFIELD
32874aea 476 minefield_c_free(ptr);
b191636d 477#else
32874aea 478 free(ptr);
b191636d 479#endif
374330e2 480 }
481#ifdef MALLOC_LOG
482 else if (fp)
483 fprintf(fp, "freeing null pointer - no action taken\n");
484#endif
485}
c82bda52 486
03f64569 487/* ----------------------------------------------------------------------
488 * Debugging routines.
489 */
490
c82bda52 491#ifdef DEBUG
d0912d1f 492extern void dputs(char *); /* defined in per-platform *misc.c */
db9c0f86 493
d0912d1f 494void debug_printf(char *fmt, ...)
32874aea 495{
57356d63 496 char *buf;
db9c0f86 497 va_list ap;
498
499 va_start(ap, fmt);
57356d63 500 buf = dupvprintf(fmt, ap);
32874aea 501 dputs(buf);
57356d63 502 sfree(buf);
c82bda52 503 va_end(ap);
504}
db9c0f86 505
506
32874aea 507void debug_memdump(void *buf, int len, int L)
508{
db9c0f86 509 int i;
510 unsigned char *p = buf;
765c4200 511 char foo[17];
db9c0f86 512 if (L) {
513 int delta;
d0912d1f 514 debug_printf("\t%d (0x%x) bytes:\n", len, len);
db9c0f86 515 delta = 15 & (int) p;
516 p -= delta;
517 len += delta;
518 }
519 for (; 0 < len; p += 16, len -= 16) {
32874aea 520 dputs(" ");
521 if (L)
d0912d1f 522 debug_printf("%p: ", p);
32874aea 523 strcpy(foo, "................"); /* sixteen dots */
db9c0f86 524 for (i = 0; i < 16 && i < len; ++i) {
525 if (&p[i] < (unsigned char *) buf) {
32874aea 526 dputs(" "); /* 3 spaces */
765c4200 527 foo[i] = ' ';
db9c0f86 528 } else {
d0912d1f 529 debug_printf("%c%02.2x",
32874aea 530 &p[i] != (unsigned char *) buf
531 && i % 4 ? '.' : ' ', p[i]
532 );
765c4200 533 if (p[i] >= ' ' && p[i] <= '~')
32874aea 534 foo[i] = (char) p[i];
db9c0f86 535 }
536 }
765c4200 537 foo[i] = '\0';
d0912d1f 538 debug_printf("%*s%s\n", (16 - i) * 3 + 2, "", foo);
db9c0f86 539 }
540}
541
32874aea 542#endif /* def DEBUG */