misc.c 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308
  1. /*
  2. * Platform-independent routines shared between all PuTTY programs.
  3. */
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <stdarg.h>
  7. #include <limits.h>
  8. #include <ctype.h>
  9. #include <assert.h>
  10. #include "putty.h"
  11. #include "misc.h"
  12. /*
  13. * Parse a string block size specification. This is approximately a
  14. * subset of the block size specs supported by GNU fileutils:
  15. * "nk" = n kilobytes
  16. * "nM" = n megabytes
  17. * "nG" = n gigabytes
  18. * All numbers are decimal, and suffixes refer to powers of two.
  19. * Case-insensitive.
  20. */
  21. unsigned long parse_blocksize(const char *bs)
  22. {
  23. char *suf;
  24. unsigned long r = strtoul(bs, &suf, 10);
  25. if (*suf != '\0') {
  26. while (*suf && isspace((unsigned char)*suf)) suf++;
  27. switch (*suf) {
  28. case 'k': case 'K':
  29. r *= 1024ul;
  30. break;
  31. case 'm': case 'M':
  32. r *= 1024ul * 1024ul;
  33. break;
  34. case 'g': case 'G':
  35. r *= 1024ul * 1024ul * 1024ul;
  36. break;
  37. case '\0':
  38. default:
  39. break;
  40. }
  41. }
  42. return r;
  43. }
  44. /*
  45. * Parse a ^C style character specification.
  46. * Returns NULL in `next' if we didn't recognise it as a control character,
  47. * in which case `c' should be ignored.
  48. * The precise current parsing is an oddity inherited from the terminal
  49. * answerback-string parsing code. All sequences start with ^; all except
  50. * ^<123> are two characters. The ones that are worth keeping are probably:
  51. * ^? 127
  52. * ^@A-Z[\]^_ 0-31
  53. * a-z 1-26
  54. * <num> specified by number (decimal, 0octal, 0xHEX)
  55. * ~ ^ escape
  56. */
  57. char ctrlparse(char *s, char **next)
  58. {
  59. char c = 0;
  60. if (*s != '^') {
  61. *next = NULL;
  62. } else {
  63. s++;
  64. if (*s == '\0') {
  65. *next = NULL;
  66. } else if (*s == '<') {
  67. s++;
  68. c = (char)strtol(s, next, 0);
  69. if ((*next == s) || (**next != '>')) {
  70. c = 0;
  71. *next = NULL;
  72. } else
  73. (*next)++;
  74. } else if (*s >= 'a' && *s <= 'z') {
  75. c = (*s - ('a' - 1));
  76. *next = s+1;
  77. } else if ((*s >= '@' && *s <= '_') || *s == '?' || (*s & 0x80)) {
  78. c = ('@' ^ *s);
  79. *next = s+1;
  80. } else if (*s == '~') {
  81. c = '^';
  82. *next = s+1;
  83. }
  84. }
  85. return c;
  86. }
  87. /*
  88. * Find a character in a string, unless it's a colon contained within
  89. * square brackets. Used for untangling strings of the form
  90. * 'host:port', where host can be an IPv6 literal.
  91. *
  92. * We provide several variants of this function, with semantics like
  93. * various standard string.h functions.
  94. */
  95. static const char *host_strchr_internal(const char *s, const char *set,
  96. int first)
  97. {
  98. int brackets = 0;
  99. const char *ret = NULL;
  100. while (1) {
  101. if (!*s)
  102. return ret;
  103. if (*s == '[')
  104. brackets++;
  105. else if (*s == ']' && brackets > 0)
  106. brackets--;
  107. else if (brackets && *s == ':')
  108. /* never match */ ;
  109. else if (strchr(set, *s)) {
  110. ret = s;
  111. if (first)
  112. return ret;
  113. }
  114. s++;
  115. }
  116. }
  117. size_t host_strcspn(const char *s, const char *set)
  118. {
  119. const char *answer = host_strchr_internal(s, set, TRUE);
  120. if (answer)
  121. return answer - s;
  122. else
  123. return strlen(s);
  124. }
  125. char *host_strchr(const char *s, int c)
  126. {
  127. char set[2];
  128. set[0] = c;
  129. set[1] = '\0';
  130. return (char *) host_strchr_internal(s, set, TRUE);
  131. }
  132. char *host_strrchr(const char *s, int c)
  133. {
  134. char set[2];
  135. set[0] = c;
  136. set[1] = '\0';
  137. return (char *) host_strchr_internal(s, set, FALSE);
  138. }
  139. #ifdef TEST_HOST_STRFOO
  140. int main(void)
  141. {
  142. int passes = 0, fails = 0;
  143. #define TEST1(func, string, arg2, suffix, result) do \
  144. { \
  145. const char *str = string; \
  146. unsigned ret = func(string, arg2) suffix; \
  147. if (ret == result) { \
  148. passes++; \
  149. } else { \
  150. printf("fail: %s(%s,%s)%s = %u, expected %u\n", \
  151. #func, #string, #arg2, #suffix, ret, \
  152. (unsigned)result); \
  153. fails++; \
  154. } \
  155. } while (0)
  156. TEST1(host_strchr, "[1:2:3]:4:5", ':', -str, 7);
  157. TEST1(host_strrchr, "[1:2:3]:4:5", ':', -str, 9);
  158. TEST1(host_strcspn, "[1:2:3]:4:5", "/:",, 7);
  159. TEST1(host_strchr, "[1:2:3]", ':', == NULL, 1);
  160. TEST1(host_strrchr, "[1:2:3]", ':', == NULL, 1);
  161. TEST1(host_strcspn, "[1:2:3]", "/:",, 7);
  162. TEST1(host_strcspn, "[1:2/3]", "/:",, 4);
  163. TEST1(host_strcspn, "[1:2:3]/", "/:",, 7);
  164. printf("passed %d failed %d total %d\n", passes, fails, passes+fails);
  165. return fails != 0 ? 1 : 0;
  166. }
  167. /* Stubs to stop the rest of this module causing compile failures. */
  168. void modalfatalbox(const char *fmt, ...) {}
  169. int conf_get_int(Conf *conf, int primary) { return 0; }
  170. char *conf_get_str(Conf *conf, int primary) { return NULL; }
  171. #endif /* TEST_HOST_STRFOO */
  172. /*
  173. * Trim square brackets off the outside of an IPv6 address literal.
  174. * Leave all other strings unchanged. Returns a fresh dynamically
  175. * allocated string.
  176. */
  177. char *host_strduptrim(const char *s)
  178. {
  179. if (s[0] == '[') {
  180. const char *p = s+1;
  181. int colons = 0;
  182. while (*p && *p != ']') {
  183. if (isxdigit((unsigned char)*p))
  184. /* OK */;
  185. else if (*p == ':')
  186. colons++;
  187. else
  188. break;
  189. p++;
  190. }
  191. if (*p == ']' && !p[1] && colons > 1) {
  192. /*
  193. * This looks like an IPv6 address literal (hex digits and
  194. * at least two colons, contained in square brackets).
  195. * Trim off the brackets.
  196. */
  197. return dupprintf("%.*s", (int)(p - (s+1)), s+1);
  198. }
  199. }
  200. /*
  201. * Any other shape of string is simply duplicated.
  202. */
  203. return dupstr(s);
  204. }
  205. prompts_t *new_prompts(Frontend *frontend)
  206. {
  207. prompts_t *p = snew(prompts_t);
  208. p->prompts = NULL;
  209. p->n_prompts = 0;
  210. p->frontend = frontend;
  211. p->data = NULL;
  212. p->to_server = TRUE; /* to be on the safe side */
  213. p->name = p->instruction = NULL;
  214. p->name_reqd = p->instr_reqd = FALSE;
  215. return p;
  216. }
  217. void add_prompt(prompts_t *p, char *promptstr, int echo)
  218. {
  219. prompt_t *pr = snew(prompt_t);
  220. pr->prompt = promptstr;
  221. pr->echo = echo;
  222. pr->result = NULL;
  223. pr->resultsize = 0;
  224. p->n_prompts++;
  225. p->prompts = sresize(p->prompts, p->n_prompts, prompt_t *);
  226. p->prompts[p->n_prompts-1] = pr;
  227. }
  228. void prompt_ensure_result_size(prompt_t *pr, int newlen)
  229. {
  230. if ((int)pr->resultsize < newlen) {
  231. char *newbuf;
  232. newlen = newlen * 5 / 4 + 512; /* avoid too many small allocs */
  233. /*
  234. * We don't use sresize / realloc here, because we will be
  235. * storing sensitive stuff like passwords in here, and we want
  236. * to make sure that the data doesn't get copied around in
  237. * memory without the old copy being destroyed.
  238. */
  239. newbuf = snewn(newlen, char);
  240. memcpy(newbuf, pr->result, pr->resultsize);
  241. smemclr(pr->result, pr->resultsize);
  242. sfree(pr->result);
  243. pr->result = newbuf;
  244. pr->resultsize = newlen;
  245. }
  246. }
  247. void prompt_set_result(prompt_t *pr, const char *newstr)
  248. {
  249. prompt_ensure_result_size(pr, strlen(newstr) + 1);
  250. strcpy(pr->result, newstr);
  251. }
  252. void free_prompts(prompts_t *p)
  253. {
  254. size_t i;
  255. for (i=0; i < p->n_prompts; i++) {
  256. prompt_t *pr = p->prompts[i];
  257. smemclr(pr->result, pr->resultsize); /* burn the evidence */
  258. sfree(pr->result);
  259. sfree(pr->prompt);
  260. sfree(pr);
  261. }
  262. sfree(p->prompts);
  263. sfree(p->name);
  264. sfree(p->instruction);
  265. sfree(p);
  266. }
  267. /* ----------------------------------------------------------------------
  268. * String handling routines.
  269. */
  270. char *dupstr(const char *s)
  271. {
  272. char *p = NULL;
  273. if (s) {
  274. int len = strlen(s);
  275. p = snewn(len + 1, char);
  276. strcpy(p, s);
  277. }
  278. return p;
  279. }
  280. /* Allocate the concatenation of N strings. Terminate arg list with NULL. */
  281. char *dupcat(const char *s1, ...)
  282. {
  283. int len;
  284. char *p, *q, *sn;
  285. va_list ap;
  286. len = strlen(s1);
  287. va_start(ap, s1);
  288. while (1) {
  289. sn = va_arg(ap, char *);
  290. if (!sn)
  291. break;
  292. len += strlen(sn);
  293. }
  294. va_end(ap);
  295. p = snewn(len + 1, char);
  296. strcpy(p, s1);
  297. q = p + strlen(p);
  298. va_start(ap, s1);
  299. while (1) {
  300. sn = va_arg(ap, char *);
  301. if (!sn)
  302. break;
  303. strcpy(q, sn);
  304. q += strlen(q);
  305. }
  306. va_end(ap);
  307. return p;
  308. }
  309. void burnstr(char *string) /* sfree(str), only clear it first */
  310. {
  311. if (string) {
  312. smemclr(string, strlen(string));
  313. sfree(string);
  314. }
  315. }
  316. int toint(unsigned u)
  317. {
  318. /*
  319. * Convert an unsigned to an int, without running into the
  320. * undefined behaviour which happens by the strict C standard if
  321. * the value overflows. You'd hope that sensible compilers would
  322. * do the sensible thing in response to a cast, but actually I
  323. * don't trust modern compilers not to do silly things like
  324. * assuming that _obviously_ you wouldn't have caused an overflow
  325. * and so they can elide an 'if (i < 0)' test immediately after
  326. * the cast.
  327. *
  328. * Sensible compilers ought of course to optimise this entire
  329. * function into 'just return the input value'!
  330. */
  331. if (u <= (unsigned)INT_MAX)
  332. return (int)u;
  333. else if (u >= (unsigned)INT_MIN) /* wrap in cast _to_ unsigned is OK */
  334. return INT_MIN + (int)(u - (unsigned)INT_MIN);
  335. else
  336. return INT_MIN; /* fallback; should never occur on binary machines */
  337. }
  338. int string_length_for_printf(size_t s)
  339. {
  340. /* Truncate absurdly long strings (should one show up) to fit
  341. * within a positive 'int', which is what the "%.*s" format will
  342. * expect. */
  343. if (s > INT_MAX)
  344. return INT_MAX;
  345. return s;
  346. }
  347. /*
  348. * Do an sprintf(), but into a custom-allocated buffer.
  349. *
  350. * Currently I'm doing this via vsnprintf. This has worked so far,
  351. * but it's not good, because vsnprintf is not available on all
  352. * platforms. There's an ifdef to use `_vsnprintf', which seems
  353. * to be the local name for it on Windows. Other platforms may
  354. * lack it completely, in which case it'll be time to rewrite
  355. * this function in a totally different way.
  356. *
  357. * The only `properly' portable solution I can think of is to
  358. * implement my own format string scanner, which figures out an
  359. * upper bound for the length of each formatting directive,
  360. * allocates the buffer as it goes along, and calls sprintf() to
  361. * actually process each directive. If I ever need to actually do
  362. * this, some caveats:
  363. *
  364. * - It's very hard to find a reliable upper bound for
  365. * floating-point values. %f, in particular, when supplied with
  366. * a number near to the upper or lower limit of representable
  367. * numbers, could easily take several hundred characters. It's
  368. * probably feasible to predict this statically using the
  369. * constants in <float.h>, or even to predict it dynamically by
  370. * looking at the exponent of the specific float provided, but
  371. * it won't be fun.
  372. *
  373. * - Don't forget to _check_, after calling sprintf, that it's
  374. * used at most the amount of space we had available.
  375. *
  376. * - Fault any formatting directive we don't fully understand. The
  377. * aim here is to _guarantee_ that we never overflow the buffer,
  378. * because this is a security-critical function. If we see a
  379. * directive we don't know about, we should panic and die rather
  380. * than run any risk.
  381. */
  382. static char *dupvprintf_inner(char *buf, int oldlen, int *oldsize,
  383. const char *fmt, va_list ap)
  384. {
  385. int len, size, newsize;
  386. assert(*oldsize >= oldlen);
  387. size = *oldsize - oldlen;
  388. if (size == 0) {
  389. size = 512;
  390. newsize = oldlen + size;
  391. buf = sresize(buf, newsize, char);
  392. } else {
  393. newsize = *oldsize;
  394. }
  395. while (1) {
  396. #if defined _WINDOWS && !defined __WINE__ && _MSC_VER < 1900 /* 1900 == VS2015 has real snprintf */
  397. #define vsnprintf _vsnprintf
  398. #endif
  399. #ifdef va_copy
  400. /* Use the `va_copy' macro mandated by C99, if present.
  401. * XXX some environments may have this as __va_copy() */
  402. va_list aq;
  403. va_copy(aq, ap);
  404. len = vsnprintf(buf + oldlen, size, fmt, aq);
  405. va_end(aq);
  406. #else
  407. /* Ugh. No va_copy macro, so do something nasty.
  408. * Technically, you can't reuse a va_list like this: it is left
  409. * unspecified whether advancing a va_list pointer modifies its
  410. * value or something it points to, so on some platforms calling
  411. * vsnprintf twice on the same va_list might fail hideously
  412. * (indeed, it has been observed to).
  413. * XXX the autoconf manual suggests that using memcpy() will give
  414. * "maximum portability". */
  415. len = vsnprintf(buf + oldlen, size, fmt, ap);
  416. #endif
  417. if (len >= 0 && len < size) {
  418. /* This is the C99-specified criterion for snprintf to have
  419. * been completely successful. */
  420. *oldsize = newsize;
  421. return buf;
  422. } else if (len > 0) {
  423. /* This is the C99 error condition: the returned length is
  424. * the required buffer size not counting the NUL. */
  425. size = len + 1;
  426. } else {
  427. /* This is the pre-C99 glibc error condition: <0 means the
  428. * buffer wasn't big enough, so we enlarge it a bit and hope. */
  429. size += 512;
  430. }
  431. newsize = oldlen + size;
  432. buf = sresize(buf, newsize, char);
  433. }
  434. }
  435. char *dupvprintf(const char *fmt, va_list ap)
  436. {
  437. int size = 0;
  438. return dupvprintf_inner(NULL, 0, &size, fmt, ap);
  439. }
  440. char *dupprintf(const char *fmt, ...)
  441. {
  442. char *ret;
  443. va_list ap;
  444. va_start(ap, fmt);
  445. ret = dupvprintf(fmt, ap);
  446. va_end(ap);
  447. return ret;
  448. }
  449. struct strbuf_impl {
  450. int size;
  451. struct strbuf visible;
  452. };
  453. #define STRBUF_SET_PTR(buf, ptr) \
  454. ((buf)->visible.s = (ptr), \
  455. (buf)->visible.u = (unsigned char *)(buf)->visible.s)
  456. void *strbuf_append(strbuf *buf_o, size_t len)
  457. {
  458. struct strbuf_impl *buf = FROMFIELD(buf_o, struct strbuf_impl, visible);
  459. char *toret;
  460. if (buf->size < buf->visible.len + len + 1) {
  461. buf->size = (buf->visible.len + len + 1) * 5 / 4 + 512;
  462. STRBUF_SET_PTR(buf, sresize(buf->visible.s, buf->size, char));
  463. }
  464. toret = buf->visible.s + buf->visible.len;
  465. buf->visible.len += len;
  466. buf->visible.s[buf->visible.len] = '\0';
  467. return toret;
  468. }
  469. static void strbuf_BinarySink_write(
  470. BinarySink *bs, const void *data, size_t len)
  471. {
  472. strbuf *buf_o = BinarySink_DOWNCAST(bs, strbuf);
  473. memcpy(strbuf_append(buf_o, len), data, len);
  474. }
  475. strbuf *strbuf_new(void)
  476. {
  477. struct strbuf_impl *buf = snew(struct strbuf_impl);
  478. BinarySink_INIT(&buf->visible, strbuf_BinarySink_write);
  479. buf->visible.len = 0;
  480. buf->size = 512;
  481. STRBUF_SET_PTR(buf, snewn(buf->size, char));
  482. *buf->visible.s = '\0';
  483. return &buf->visible;
  484. }
  485. void strbuf_free(strbuf *buf_o)
  486. {
  487. struct strbuf_impl *buf = FROMFIELD(buf_o, struct strbuf_impl, visible);
  488. if (buf->visible.s) {
  489. smemclr(buf->visible.s, buf->size);
  490. sfree(buf->visible.s);
  491. }
  492. sfree(buf);
  493. }
  494. char *strbuf_to_str(strbuf *buf_o)
  495. {
  496. struct strbuf_impl *buf = FROMFIELD(buf_o, struct strbuf_impl, visible);
  497. char *ret = buf->visible.s;
  498. sfree(buf);
  499. return ret;
  500. }
  501. void strbuf_catfv(strbuf *buf_o, const char *fmt, va_list ap)
  502. {
  503. struct strbuf_impl *buf = FROMFIELD(buf_o, struct strbuf_impl, visible);
  504. STRBUF_SET_PTR(buf, dupvprintf_inner(buf->visible.s, buf->visible.len,
  505. &buf->size, fmt, ap));
  506. buf->visible.len += strlen(buf->visible.s + buf->visible.len);
  507. }
  508. void strbuf_catf(strbuf *buf_o, const char *fmt, ...)
  509. {
  510. va_list ap;
  511. va_start(ap, fmt);
  512. strbuf_catfv(buf_o, fmt, ap);
  513. va_end(ap);
  514. }
  515. strbuf *strbuf_new_for_agent_query(void)
  516. {
  517. strbuf *buf = strbuf_new();
  518. put_uint32(buf, 0); /* reserve space for length field */
  519. return buf;
  520. }
  521. void strbuf_finalise_agent_query(strbuf *buf_o)
  522. {
  523. struct strbuf_impl *buf = FROMFIELD(buf_o, struct strbuf_impl, visible);
  524. assert(buf->visible.len >= 5);
  525. PUT_32BIT_MSB_FIRST(buf->visible.u, buf->visible.len - 4);
  526. }
  527. /*
  528. * Read an entire line of text from a file. Return a buffer
  529. * malloced to be as big as necessary (caller must free).
  530. */
  531. char *fgetline(FILE *fp)
  532. {
  533. char *ret = snewn(512, char);
  534. int size = 512, len = 0;
  535. while (fgets(ret + len, size - len, fp)) {
  536. len += strlen(ret + len);
  537. if (len > 0 && ret[len-1] == '\n')
  538. break; /* got a newline, we're done */
  539. size = len + 512;
  540. ret = sresize(ret, size, char);
  541. }
  542. if (len == 0) { /* first fgets returned NULL */
  543. sfree(ret);
  544. return NULL;
  545. }
  546. ret[len] = '\0';
  547. return ret;
  548. }
  549. /*
  550. * Perl-style 'chomp', for a line we just read with fgetline. Unlike
  551. * Perl chomp, however, we're deliberately forgiving of strange
  552. * line-ending conventions. Also we forgive NULL on input, so you can
  553. * just write 'line = chomp(fgetline(fp));' and not bother checking
  554. * for NULL until afterwards.
  555. */
  556. char *chomp(char *str)
  557. {
  558. if (str) {
  559. int len = strlen(str);
  560. while (len > 0 && (str[len-1] == '\r' || str[len-1] == '\n'))
  561. len--;
  562. str[len] = '\0';
  563. }
  564. return str;
  565. }
  566. /* ----------------------------------------------------------------------
  567. * Core base64 encoding and decoding routines.
  568. */
  569. void base64_encode_atom(const unsigned char *data, int n, char *out)
  570. {
  571. static const char base64_chars[] =
  572. "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
  573. unsigned word;
  574. word = data[0] << 16;
  575. if (n > 1)
  576. word |= data[1] << 8;
  577. if (n > 2)
  578. word |= data[2];
  579. out[0] = base64_chars[(word >> 18) & 0x3F];
  580. out[1] = base64_chars[(word >> 12) & 0x3F];
  581. if (n > 1)
  582. out[2] = base64_chars[(word >> 6) & 0x3F];
  583. else
  584. out[2] = '=';
  585. if (n > 2)
  586. out[3] = base64_chars[word & 0x3F];
  587. else
  588. out[3] = '=';
  589. }
  590. int base64_decode_atom(const char *atom, unsigned char *out)
  591. {
  592. int vals[4];
  593. int i, v, len;
  594. unsigned word;
  595. char c;
  596. for (i = 0; i < 4; i++) {
  597. c = atom[i];
  598. if (c >= 'A' && c <= 'Z')
  599. v = c - 'A';
  600. else if (c >= 'a' && c <= 'z')
  601. v = c - 'a' + 26;
  602. else if (c >= '0' && c <= '9')
  603. v = c - '0' + 52;
  604. else if (c == '+')
  605. v = 62;
  606. else if (c == '/')
  607. v = 63;
  608. else if (c == '=')
  609. v = -1;
  610. else
  611. return 0; /* invalid atom */
  612. vals[i] = v;
  613. }
  614. if (vals[0] == -1 || vals[1] == -1)
  615. return 0;
  616. if (vals[2] == -1 && vals[3] != -1)
  617. return 0;
  618. if (vals[3] != -1)
  619. len = 3;
  620. else if (vals[2] != -1)
  621. len = 2;
  622. else
  623. len = 1;
  624. word = ((vals[0] << 18) |
  625. (vals[1] << 12) | ((vals[2] & 0x3F) << 6) | (vals[3] & 0x3F));
  626. out[0] = (word >> 16) & 0xFF;
  627. if (len > 1)
  628. out[1] = (word >> 8) & 0xFF;
  629. if (len > 2)
  630. out[2] = word & 0xFF;
  631. return len;
  632. }
  633. /* ----------------------------------------------------------------------
  634. * Generic routines to deal with send buffers: a linked list of
  635. * smallish blocks, with the operations
  636. *
  637. * - add an arbitrary amount of data to the end of the list
  638. * - remove the first N bytes from the list
  639. * - return a (pointer,length) pair giving some initial data in
  640. * the list, suitable for passing to a send or write system
  641. * call
  642. * - retrieve a larger amount of initial data from the list
  643. * - return the current size of the buffer chain in bytes
  644. */
  645. #define BUFFER_MIN_GRANULE 512
  646. struct bufchain_granule {
  647. struct bufchain_granule *next;
  648. char *bufpos, *bufend, *bufmax;
  649. };
  650. void bufchain_init(bufchain *ch)
  651. {
  652. ch->head = ch->tail = NULL;
  653. ch->buffersize = 0;
  654. }
  655. void bufchain_clear(bufchain *ch)
  656. {
  657. struct bufchain_granule *b;
  658. while (ch->head) {
  659. b = ch->head;
  660. ch->head = ch->head->next;
  661. sfree(b);
  662. }
  663. ch->tail = NULL;
  664. ch->buffersize = 0;
  665. }
  666. int bufchain_size(bufchain *ch)
  667. {
  668. return ch->buffersize;
  669. }
  670. void bufchain_add(bufchain *ch, const void *data, int len)
  671. {
  672. const char *buf = (const char *)data;
  673. if (len == 0) return;
  674. ch->buffersize += len;
  675. while (len > 0) {
  676. if (ch->tail && ch->tail->bufend < ch->tail->bufmax) {
  677. int copylen = min(len, ch->tail->bufmax - ch->tail->bufend);
  678. memcpy(ch->tail->bufend, buf, copylen);
  679. buf += copylen;
  680. len -= copylen;
  681. ch->tail->bufend += copylen;
  682. }
  683. if (len > 0) {
  684. int grainlen =
  685. max(sizeof(struct bufchain_granule) + len, BUFFER_MIN_GRANULE);
  686. struct bufchain_granule *newbuf;
  687. newbuf = smalloc(grainlen);
  688. newbuf->bufpos = newbuf->bufend =
  689. (char *)newbuf + sizeof(struct bufchain_granule);
  690. newbuf->bufmax = (char *)newbuf + grainlen;
  691. newbuf->next = NULL;
  692. if (ch->tail)
  693. ch->tail->next = newbuf;
  694. else
  695. ch->head = newbuf;
  696. ch->tail = newbuf;
  697. }
  698. }
  699. }
  700. void bufchain_consume(bufchain *ch, int len)
  701. {
  702. struct bufchain_granule *tmp;
  703. assert(ch->buffersize >= len);
  704. while (len > 0) {
  705. int remlen = len;
  706. assert(ch->head != NULL);
  707. if (remlen >= ch->head->bufend - ch->head->bufpos) {
  708. remlen = ch->head->bufend - ch->head->bufpos;
  709. tmp = ch->head;
  710. ch->head = tmp->next;
  711. if (!ch->head)
  712. ch->tail = NULL;
  713. sfree(tmp);
  714. } else
  715. ch->head->bufpos += remlen;
  716. ch->buffersize -= remlen;
  717. len -= remlen;
  718. }
  719. }
  720. void bufchain_prefix(bufchain *ch, void **data, int *len)
  721. {
  722. *len = ch->head->bufend - ch->head->bufpos;
  723. *data = ch->head->bufpos;
  724. }
  725. void bufchain_fetch(bufchain *ch, void *data, int len)
  726. {
  727. struct bufchain_granule *tmp;
  728. char *data_c = (char *)data;
  729. tmp = ch->head;
  730. assert(ch->buffersize >= len);
  731. while (len > 0) {
  732. int remlen = len;
  733. assert(tmp != NULL);
  734. if (remlen >= tmp->bufend - tmp->bufpos)
  735. remlen = tmp->bufend - tmp->bufpos;
  736. memcpy(data_c, tmp->bufpos, remlen);
  737. tmp = tmp->next;
  738. len -= remlen;
  739. data_c += remlen;
  740. }
  741. }
  742. void bufchain_fetch_consume(bufchain *ch, void *data, int len)
  743. {
  744. bufchain_fetch(ch, data, len);
  745. bufchain_consume(ch, len);
  746. }
  747. int bufchain_try_fetch_consume(bufchain *ch, void *data, int len)
  748. {
  749. if (ch->buffersize >= len) {
  750. bufchain_fetch_consume(ch, data, len);
  751. return TRUE;
  752. } else {
  753. return FALSE;
  754. }
  755. }
  756. /* ----------------------------------------------------------------------
  757. * My own versions of malloc, realloc and free. Because I want
  758. * malloc and realloc to bomb out and exit the program if they run
  759. * out of memory, realloc to reliably call malloc if passed a NULL
  760. * pointer, and free to reliably do nothing if passed a NULL
  761. * pointer. We can also put trace printouts in, if we need to; and
  762. * we can also replace the allocator with an ElectricFence-like
  763. * one.
  764. */
  765. #ifdef MINEFIELD
  766. void *minefield_c_malloc(size_t size);
  767. void minefield_c_free(void *p);
  768. void *minefield_c_realloc(void *p, size_t size);
  769. #endif
  770. #ifdef MALLOC_LOG
  771. static FILE *fp = NULL;
  772. static char *mlog_file = NULL;
  773. static int mlog_line = 0;
  774. void mlog(char *file, int line)
  775. {
  776. mlog_file = file;
  777. mlog_line = line;
  778. if (!fp) {
  779. fp = fopen("putty_mem.log", "w");
  780. setvbuf(fp, NULL, _IONBF, BUFSIZ);
  781. }
  782. if (fp)
  783. fprintf(fp, "%s:%d: ", file, line);
  784. }
  785. #endif
  786. void *safemalloc(size_t n, size_t size)
  787. {
  788. void *p;
  789. if (n > INT_MAX / size) {
  790. p = NULL;
  791. } else {
  792. size *= n;
  793. if (size == 0) size = 1;
  794. #ifdef MINEFIELD
  795. p = minefield_c_malloc(size);
  796. #else
  797. p = malloc(size);
  798. #endif
  799. }
  800. if (!p) {
  801. char str[200];
  802. #ifdef MALLOC_LOG
  803. sprintf(str, "Out of memory! (%s:%d, size=%d)",
  804. mlog_file, mlog_line, size);
  805. fprintf(fp, "*** %s\n", str);
  806. fclose(fp);
  807. #else
  808. strcpy(str, "Out of memory!");
  809. #endif
  810. modalfatalbox("%s", str);
  811. }
  812. #ifdef MALLOC_LOG
  813. if (fp)
  814. fprintf(fp, "malloc(%d) returns %p\n", size, p);
  815. #endif
  816. return p;
  817. }
  818. void *saferealloc(void *ptr, size_t n, size_t size)
  819. {
  820. void *p;
  821. if (n > INT_MAX / size) {
  822. p = NULL;
  823. } else {
  824. size *= n;
  825. if (!ptr) {
  826. #ifdef MINEFIELD
  827. p = minefield_c_malloc(size);
  828. #else
  829. p = malloc(size);
  830. #endif
  831. } else {
  832. #ifdef MINEFIELD
  833. p = minefield_c_realloc(ptr, size);
  834. #else
  835. p = realloc(ptr, size);
  836. #endif
  837. }
  838. }
  839. if (!p) {
  840. char str[200];
  841. #ifdef MALLOC_LOG
  842. sprintf(str, "Out of memory! (%s:%d, size=%d)",
  843. mlog_file, mlog_line, size);
  844. fprintf(fp, "*** %s\n", str);
  845. fclose(fp);
  846. #else
  847. strcpy(str, "Out of memory!");
  848. #endif
  849. modalfatalbox("%s", str);
  850. }
  851. #ifdef MALLOC_LOG
  852. if (fp)
  853. fprintf(fp, "realloc(%p,%d) returns %p\n", ptr, size, p);
  854. #endif
  855. return p;
  856. }
  857. void safefree(void *ptr)
  858. {
  859. if (ptr) {
  860. #ifdef MALLOC_LOG
  861. if (fp)
  862. fprintf(fp, "free(%p)\n", ptr);
  863. #endif
  864. #ifdef MINEFIELD
  865. minefield_c_free(ptr);
  866. #else
  867. free(ptr);
  868. #endif
  869. }
  870. #ifdef MALLOC_LOG
  871. else if (fp)
  872. fprintf(fp, "freeing null pointer - no action taken\n");
  873. #endif
  874. }
  875. /* ----------------------------------------------------------------------
  876. * Debugging routines.
  877. */
  878. #ifdef DEBUG
  879. extern void dputs(const char *); /* defined in per-platform *misc.c */
  880. void debug_printf(const char *fmt, ...)
  881. {
  882. char *buf;
  883. va_list ap;
  884. va_start(ap, fmt);
  885. buf = dupvprintf(fmt, ap);
  886. dputs(buf);
  887. sfree(buf);
  888. va_end(ap);
  889. }
  890. void debug_memdump(const void *buf, int len, int L)
  891. {
  892. int i;
  893. const unsigned char *p = buf;
  894. char foo[17];
  895. if (L) {
  896. int delta;
  897. debug_printf("\t%d (0x%x) bytes:\n", len, len);
  898. delta = 15 & (uintptr_t)p;
  899. p -= delta;
  900. len += delta;
  901. }
  902. for (; 0 < len; p += 16, len -= 16) {
  903. dputs(" ");
  904. if (L)
  905. debug_printf("%p: ", p);
  906. strcpy(foo, "................"); /* sixteen dots */
  907. for (i = 0; i < 16 && i < len; ++i) {
  908. if (&p[i] < (unsigned char *) buf) {
  909. dputs(" "); /* 3 spaces */
  910. foo[i] = ' ';
  911. } else {
  912. debug_printf("%c%02.2x",
  913. &p[i] != (unsigned char *) buf
  914. && i % 4 ? '.' : ' ', p[i]
  915. );
  916. if (p[i] >= ' ' && p[i] <= '~')
  917. foo[i] = (char) p[i];
  918. }
  919. }
  920. foo[i] = '\0';
  921. debug_printf("%*s%s\n", (16 - i) * 3 + 2, "", foo);
  922. }
  923. }
  924. #endif /* def DEBUG */
  925. /*
  926. * Determine whether or not a Conf represents a session which can
  927. * sensibly be launched right now.
  928. */
  929. int conf_launchable(Conf *conf)
  930. {
  931. if (conf_get_int(conf, CONF_protocol) == PROT_SERIAL)
  932. return conf_get_str(conf, CONF_serline)[0] != 0;
  933. else
  934. return conf_get_str(conf, CONF_host)[0] != 0;
  935. }
  936. char const *conf_dest(Conf *conf)
  937. {
  938. if (conf_get_int(conf, CONF_protocol) == PROT_SERIAL)
  939. return conf_get_str(conf, CONF_serline);
  940. else
  941. return conf_get_str(conf, CONF_host);
  942. }
  943. #ifndef PLATFORM_HAS_SMEMCLR
  944. /*
  945. * Securely wipe memory.
  946. *
  947. * The actual wiping is no different from what memset would do: the
  948. * point of 'securely' is to try to be sure over-clever compilers
  949. * won't optimise away memsets on variables that are about to be freed
  950. * or go out of scope. See
  951. * https://buildsecurityin.us-cert.gov/bsi-rules/home/g1/771-BSI.html
  952. *
  953. * Some platforms (e.g. Windows) may provide their own version of this
  954. * function.
  955. */
  956. void smemclr(void *b, size_t n) {
  957. volatile char *vp;
  958. if (b && n > 0) {
  959. /*
  960. * Zero out the memory.
  961. */
  962. memset(b, 0, n);
  963. /*
  964. * Perform a volatile access to the object, forcing the
  965. * compiler to admit that the previous memset was important.
  966. *
  967. * This while loop should in practice run for zero iterations
  968. * (since we know we just zeroed the object out), but in
  969. * theory (as far as the compiler knows) it might range over
  970. * the whole object. (If we had just written, say, '*vp =
  971. * *vp;', a compiler could in principle have 'helpfully'
  972. * optimised the memset into only zeroing out the first byte.
  973. * This should be robust.)
  974. */
  975. vp = b;
  976. while (*vp) vp++;
  977. }
  978. }
  979. #endif
  980. /*
  981. * Validate a manual host key specification (either entered in the
  982. * GUI, or via -hostkey). If valid, we return TRUE, and update 'key'
  983. * to contain a canonicalised version of the key string in 'key'
  984. * (which is guaranteed to take up at most as much space as the
  985. * original version), suitable for putting into the Conf. If not
  986. * valid, we return FALSE.
  987. */
  988. int validate_manual_hostkey(char *key)
  989. {
  990. char *p, *q, *r, *s;
  991. /*
  992. * Step through the string word by word, looking for a word that's
  993. * in one of the formats we like.
  994. */
  995. p = key;
  996. while ((p += strspn(p, " \t"))[0]) {
  997. q = p;
  998. p += strcspn(p, " \t");
  999. if (*p) *p++ = '\0';
  1000. /*
  1001. * Now q is our word.
  1002. */
  1003. if (strlen(q) == 16*3 - 1 &&
  1004. q[strspn(q, "0123456789abcdefABCDEF:")] == 0) {
  1005. /*
  1006. * Might be a key fingerprint. Check the colons are in the
  1007. * right places, and if so, return the same fingerprint
  1008. * canonicalised into lowercase.
  1009. */
  1010. int i;
  1011. for (i = 0; i < 16; i++)
  1012. if (q[3*i] == ':' || q[3*i+1] == ':')
  1013. goto not_fingerprint; /* sorry */
  1014. for (i = 0; i < 15; i++)
  1015. if (q[3*i+2] != ':')
  1016. goto not_fingerprint; /* sorry */
  1017. for (i = 0; i < 16*3 - 1; i++)
  1018. key[i] = tolower(q[i]);
  1019. key[16*3 - 1] = '\0';
  1020. return TRUE;
  1021. }
  1022. not_fingerprint:;
  1023. /*
  1024. * Before we check for a public-key blob, trim newlines out of
  1025. * the middle of the word, in case someone's managed to paste
  1026. * in a public-key blob _with_ them.
  1027. */
  1028. for (r = s = q; *r; r++)
  1029. if (*r != '\n' && *r != '\r')
  1030. *s++ = *r;
  1031. *s = '\0';
  1032. if (strlen(q) % 4 == 0 && strlen(q) > 2*4 &&
  1033. q[strspn(q, "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
  1034. "abcdefghijklmnopqrstuvwxyz+/=")] == 0) {
  1035. /*
  1036. * Might be a base64-encoded SSH-2 public key blob. Check
  1037. * that it starts with a sensible algorithm string. No
  1038. * canonicalisation is necessary for this string type.
  1039. *
  1040. * The algorithm string must be at most 64 characters long
  1041. * (RFC 4251 section 6).
  1042. */
  1043. unsigned char decoded[6];
  1044. unsigned alglen;
  1045. int minlen;
  1046. int len = 0;
  1047. len += base64_decode_atom(q, decoded+len);
  1048. if (len < 3)
  1049. goto not_ssh2_blob; /* sorry */
  1050. len += base64_decode_atom(q+4, decoded+len);
  1051. if (len < 4)
  1052. goto not_ssh2_blob; /* sorry */
  1053. alglen = GET_32BIT_MSB_FIRST(decoded);
  1054. if (alglen > 64)
  1055. goto not_ssh2_blob; /* sorry */
  1056. minlen = ((alglen + 4) + 2) / 3;
  1057. if (strlen(q) < minlen)
  1058. goto not_ssh2_blob; /* sorry */
  1059. strcpy(key, q);
  1060. return TRUE;
  1061. }
  1062. not_ssh2_blob:;
  1063. }
  1064. return FALSE;
  1065. }
  1066. int smemeq(const void *av, const void *bv, size_t len)
  1067. {
  1068. const unsigned char *a = (const unsigned char *)av;
  1069. const unsigned char *b = (const unsigned char *)bv;
  1070. unsigned val = 0;
  1071. while (len-- > 0) {
  1072. val |= *a++ ^ *b++;
  1073. }
  1074. /* Now val is 0 iff we want to return 1, and in the range
  1075. * 0x01..0xFF iff we want to return 0. So subtracting from 0x100
  1076. * will clear bit 8 iff we want to return 0, and leave it set iff
  1077. * we want to return 1, so then we can just shift down. */
  1078. return (0x100 - val) >> 8;
  1079. }
  1080. ptrlen make_ptrlen(const void *ptr, size_t len)
  1081. {
  1082. ptrlen pl;
  1083. pl.ptr = ptr;
  1084. pl.len = len;
  1085. return pl;
  1086. }
  1087. int ptrlen_eq_string(ptrlen pl, const char *str)
  1088. {
  1089. size_t len = strlen(str);
  1090. return (pl.len == len && !memcmp(pl.ptr, str, len));
  1091. }
  1092. char *mkstr(ptrlen pl)
  1093. {
  1094. char *p = snewn(pl.len + 1, char);
  1095. memcpy(p, pl.ptr, pl.len);
  1096. p[pl.len] = '\0';
  1097. return p;
  1098. }
  1099. int strstartswith(const char *s, const char *t)
  1100. {
  1101. return !memcmp(s, t, strlen(t));
  1102. }
  1103. int strendswith(const char *s, const char *t)
  1104. {
  1105. size_t slen = strlen(s), tlen = strlen(t);
  1106. return slen >= tlen && !strcmp(s + (slen - tlen), t);
  1107. }
  1108. char *buildinfo(const char *newline)
  1109. {
  1110. strbuf *buf = strbuf_new();
  1111. extern const char commitid[]; /* in commitid.c */
  1112. strbuf_catf(buf, "Build platform: %d-bit %s",
  1113. (int)(CHAR_BIT * sizeof(void *)),
  1114. BUILDINFO_PLATFORM);
  1115. #ifdef __clang_version__
  1116. #define FOUND_COMPILER
  1117. strbuf_catf(buf, "%sCompiler: clang %s", newline, __clang_version__);
  1118. #elif defined __GNUC__ && defined __VERSION__
  1119. #define FOUND_COMPILER
  1120. strbuf_catf(buf, "%sCompiler: gcc %s", newline, __VERSION__);
  1121. #endif
  1122. #if defined _MSC_VER
  1123. #ifndef FOUND_COMPILER
  1124. #define FOUND_COMPILER
  1125. strbuf_catf(buf, "%sCompiler: ", newline);
  1126. #else
  1127. strbuf_catf(buf, ", emulating ");
  1128. #endif
  1129. strbuf_catf(buf, "Visual Studio", newline);
  1130. #if _MSC_VER == 1900
  1131. strbuf_catf(buf, " 2015 / MSVC++ 14.0");
  1132. #elif _MSC_VER == 1912
  1133. strbuf_catf(buf, " 2017 / MSVC++ 14.12");
  1134. #elif _MSC_VER == 1800
  1135. strbuf_catf(buf, " 2013 / MSVC++ 12.0");
  1136. #elif _MSC_VER == 1700
  1137. strbuf_catf(buf, " 2012 / MSVC++ 11.0");
  1138. #elif _MSC_VER == 1600
  1139. strbuf_catf(buf, " 2010 / MSVC++ 10.0");
  1140. #elif _MSC_VER == 1500
  1141. strbuf_catf(buf, " 2008 / MSVC++ 9.0");
  1142. #elif _MSC_VER == 1400
  1143. strbuf_catf(buf, " 2005 / MSVC++ 8.0");
  1144. #elif _MSC_VER == 1310
  1145. strbuf_catf(buf, " 2003 / MSVC++ 7.1");
  1146. #elif _MSC_VER == 1300
  1147. strbuf_catf(buf, " 2003 / MSVC++ 7.0");
  1148. #else
  1149. strbuf_catf(buf, ", unrecognised version");
  1150. #endif
  1151. strbuf_catf(buf, " (_MSC_VER=%d)", (int)_MSC_VER);
  1152. #endif
  1153. #ifdef BUILDINFO_GTK
  1154. {
  1155. char *gtk_buildinfo = buildinfo_gtk_version();
  1156. if (gtk_buildinfo) {
  1157. strbuf_catf(buf, "%sCompiled against GTK version %s",
  1158. newline, gtk_buildinfo);
  1159. sfree(gtk_buildinfo);
  1160. }
  1161. }
  1162. #endif
  1163. #if defined _WINDOWS && defined MINEFIELD
  1164. strbuf_catf(buf, "%sBuild option: MINEFIELD", newline);
  1165. #endif
  1166. #ifdef NO_SECURITY
  1167. strbuf_catf(buf, "%sBuild option: NO_SECURITY", newline);
  1168. #endif
  1169. #ifdef NO_SECUREZEROMEMORY
  1170. strbuf_catf(buf, "%sBuild option: NO_SECUREZEROMEMORY", newline);
  1171. #endif
  1172. #ifdef NO_IPV6
  1173. strbuf_catf(buf, "%sBuild option: NO_IPV6", newline);
  1174. #endif
  1175. #ifdef NO_GSSAPI
  1176. strbuf_catf(buf, "%sBuild option: NO_GSSAPI", newline);
  1177. #endif
  1178. #ifdef STATIC_GSSAPI
  1179. strbuf_catf(buf, "%sBuild option: STATIC_GSSAPI", newline);
  1180. #endif
  1181. #ifdef UNPROTECT
  1182. strbuf_catf(buf, "%sBuild option: UNPROTECT", newline);
  1183. #endif
  1184. #ifdef FUZZING
  1185. strbuf_catf(buf, "%sBuild option: FUZZING", newline);
  1186. #endif
  1187. #ifdef DEBUG
  1188. strbuf_catf(buf, "%sBuild option: DEBUG", newline);
  1189. #endif
  1190. strbuf_catf(buf, "%sSource commit: %s", newline, commitid);
  1191. return strbuf_to_str(buf);
  1192. }