misc.c 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262
  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(void *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. /*
  339. * Do an sprintf(), but into a custom-allocated buffer.
  340. *
  341. * Currently I'm doing this via vsnprintf. This has worked so far,
  342. * but it's not good, because vsnprintf is not available on all
  343. * platforms. There's an ifdef to use `_vsnprintf', which seems
  344. * to be the local name for it on Windows. Other platforms may
  345. * lack it completely, in which case it'll be time to rewrite
  346. * this function in a totally different way.
  347. *
  348. * The only `properly' portable solution I can think of is to
  349. * implement my own format string scanner, which figures out an
  350. * upper bound for the length of each formatting directive,
  351. * allocates the buffer as it goes along, and calls sprintf() to
  352. * actually process each directive. If I ever need to actually do
  353. * this, some caveats:
  354. *
  355. * - It's very hard to find a reliable upper bound for
  356. * floating-point values. %f, in particular, when supplied with
  357. * a number near to the upper or lower limit of representable
  358. * numbers, could easily take several hundred characters. It's
  359. * probably feasible to predict this statically using the
  360. * constants in <float.h>, or even to predict it dynamically by
  361. * looking at the exponent of the specific float provided, but
  362. * it won't be fun.
  363. *
  364. * - Don't forget to _check_, after calling sprintf, that it's
  365. * used at most the amount of space we had available.
  366. *
  367. * - Fault any formatting directive we don't fully understand. The
  368. * aim here is to _guarantee_ that we never overflow the buffer,
  369. * because this is a security-critical function. If we see a
  370. * directive we don't know about, we should panic and die rather
  371. * than run any risk.
  372. */
  373. static char *dupvprintf_inner(char *buf, int oldlen, int *oldsize,
  374. const char *fmt, va_list ap)
  375. {
  376. int len, size, newsize;
  377. assert(*oldsize >= oldlen);
  378. size = *oldsize - oldlen;
  379. if (size == 0) {
  380. size = 512;
  381. newsize = oldlen + size;
  382. buf = sresize(buf, newsize, char);
  383. } else {
  384. newsize = *oldsize;
  385. }
  386. while (1) {
  387. #if defined _WINDOWS && !defined __WINE__ && _MSC_VER < 1900 /* 1900 == VS2015 has real snprintf */
  388. #define vsnprintf _vsnprintf
  389. #endif
  390. #ifdef va_copy
  391. /* Use the `va_copy' macro mandated by C99, if present.
  392. * XXX some environments may have this as __va_copy() */
  393. va_list aq;
  394. va_copy(aq, ap);
  395. len = vsnprintf(buf + oldlen, size, fmt, aq);
  396. va_end(aq);
  397. #else
  398. /* Ugh. No va_copy macro, so do something nasty.
  399. * Technically, you can't reuse a va_list like this: it is left
  400. * unspecified whether advancing a va_list pointer modifies its
  401. * value or something it points to, so on some platforms calling
  402. * vsnprintf twice on the same va_list might fail hideously
  403. * (indeed, it has been observed to).
  404. * XXX the autoconf manual suggests that using memcpy() will give
  405. * "maximum portability". */
  406. len = vsnprintf(buf + oldlen, size, fmt, ap);
  407. #endif
  408. if (len >= 0 && len < size) {
  409. /* This is the C99-specified criterion for snprintf to have
  410. * been completely successful. */
  411. *oldsize = newsize;
  412. return buf;
  413. } else if (len > 0) {
  414. /* This is the C99 error condition: the returned length is
  415. * the required buffer size not counting the NUL. */
  416. size = len + 1;
  417. } else {
  418. /* This is the pre-C99 glibc error condition: <0 means the
  419. * buffer wasn't big enough, so we enlarge it a bit and hope. */
  420. size += 512;
  421. }
  422. newsize = oldlen + size;
  423. buf = sresize(buf, newsize, char);
  424. }
  425. }
  426. char *dupvprintf(const char *fmt, va_list ap)
  427. {
  428. int size = 0;
  429. return dupvprintf_inner(NULL, 0, &size, fmt, ap);
  430. }
  431. char *dupprintf(const char *fmt, ...)
  432. {
  433. char *ret;
  434. va_list ap;
  435. va_start(ap, fmt);
  436. ret = dupvprintf(fmt, ap);
  437. va_end(ap);
  438. return ret;
  439. }
  440. struct strbuf {
  441. char *s;
  442. int len, size;
  443. };
  444. strbuf *strbuf_new(void)
  445. {
  446. strbuf *buf = snew(strbuf);
  447. buf->len = 0;
  448. buf->size = 512;
  449. buf->s = snewn(buf->size, char);
  450. *buf->s = '\0';
  451. return buf;
  452. }
  453. void strbuf_free(strbuf *buf)
  454. {
  455. sfree(buf->s);
  456. sfree(buf);
  457. }
  458. char *strbuf_str(strbuf *buf)
  459. {
  460. return buf->s;
  461. }
  462. char *strbuf_to_str(strbuf *buf)
  463. {
  464. char *ret = buf->s;
  465. sfree(buf);
  466. return ret;
  467. }
  468. void strbuf_catfv(strbuf *buf, const char *fmt, va_list ap)
  469. {
  470. buf->s = dupvprintf_inner(buf->s, buf->len, &buf->size, fmt, ap);
  471. buf->len += strlen(buf->s + buf->len);
  472. }
  473. void strbuf_catf(strbuf *buf, const char *fmt, ...)
  474. {
  475. va_list ap;
  476. va_start(ap, fmt);
  477. strbuf_catfv(buf, fmt, ap);
  478. va_end(ap);
  479. }
  480. /*
  481. * Read an entire line of text from a file. Return a buffer
  482. * malloced to be as big as necessary (caller must free).
  483. */
  484. char *fgetline(FILE *fp)
  485. {
  486. char *ret = snewn(512, char);
  487. int size = 512, len = 0;
  488. while (fgets(ret + len, size - len, fp)) {
  489. len += strlen(ret + len);
  490. if (len > 0 && ret[len-1] == '\n')
  491. break; /* got a newline, we're done */
  492. size = len + 512;
  493. ret = sresize(ret, size, char);
  494. }
  495. if (len == 0) { /* first fgets returned NULL */
  496. sfree(ret);
  497. return NULL;
  498. }
  499. ret[len] = '\0';
  500. return ret;
  501. }
  502. /*
  503. * Perl-style 'chomp', for a line we just read with fgetline. Unlike
  504. * Perl chomp, however, we're deliberately forgiving of strange
  505. * line-ending conventions. Also we forgive NULL on input, so you can
  506. * just write 'line = chomp(fgetline(fp));' and not bother checking
  507. * for NULL until afterwards.
  508. */
  509. char *chomp(char *str)
  510. {
  511. if (str) {
  512. int len = strlen(str);
  513. while (len > 0 && (str[len-1] == '\r' || str[len-1] == '\n'))
  514. len--;
  515. str[len] = '\0';
  516. }
  517. return str;
  518. }
  519. /* ----------------------------------------------------------------------
  520. * Core base64 encoding and decoding routines.
  521. */
  522. void base64_encode_atom(const unsigned char *data, int n, char *out)
  523. {
  524. static const char base64_chars[] =
  525. "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
  526. unsigned word;
  527. word = data[0] << 16;
  528. if (n > 1)
  529. word |= data[1] << 8;
  530. if (n > 2)
  531. word |= data[2];
  532. out[0] = base64_chars[(word >> 18) & 0x3F];
  533. out[1] = base64_chars[(word >> 12) & 0x3F];
  534. if (n > 1)
  535. out[2] = base64_chars[(word >> 6) & 0x3F];
  536. else
  537. out[2] = '=';
  538. if (n > 2)
  539. out[3] = base64_chars[word & 0x3F];
  540. else
  541. out[3] = '=';
  542. }
  543. int base64_decode_atom(const char *atom, unsigned char *out)
  544. {
  545. int vals[4];
  546. int i, v, len;
  547. unsigned word;
  548. char c;
  549. for (i = 0; i < 4; i++) {
  550. c = atom[i];
  551. if (c >= 'A' && c <= 'Z')
  552. v = c - 'A';
  553. else if (c >= 'a' && c <= 'z')
  554. v = c - 'a' + 26;
  555. else if (c >= '0' && c <= '9')
  556. v = c - '0' + 52;
  557. else if (c == '+')
  558. v = 62;
  559. else if (c == '/')
  560. v = 63;
  561. else if (c == '=')
  562. v = -1;
  563. else
  564. return 0; /* invalid atom */
  565. vals[i] = v;
  566. }
  567. if (vals[0] == -1 || vals[1] == -1)
  568. return 0;
  569. if (vals[2] == -1 && vals[3] != -1)
  570. return 0;
  571. if (vals[3] != -1)
  572. len = 3;
  573. else if (vals[2] != -1)
  574. len = 2;
  575. else
  576. len = 1;
  577. word = ((vals[0] << 18) |
  578. (vals[1] << 12) | ((vals[2] & 0x3F) << 6) | (vals[3] & 0x3F));
  579. out[0] = (word >> 16) & 0xFF;
  580. if (len > 1)
  581. out[1] = (word >> 8) & 0xFF;
  582. if (len > 2)
  583. out[2] = word & 0xFF;
  584. return len;
  585. }
  586. /* ----------------------------------------------------------------------
  587. * Generic routines to deal with send buffers: a linked list of
  588. * smallish blocks, with the operations
  589. *
  590. * - add an arbitrary amount of data to the end of the list
  591. * - remove the first N bytes from the list
  592. * - return a (pointer,length) pair giving some initial data in
  593. * the list, suitable for passing to a send or write system
  594. * call
  595. * - retrieve a larger amount of initial data from the list
  596. * - return the current size of the buffer chain in bytes
  597. */
  598. /* MP:
  599. * Default granule of 512 leads to low performance.
  600. */
  601. #define BUFFER_MIN_GRANULE 512*2*32
  602. struct bufchain_granule {
  603. struct bufchain_granule *next;
  604. char *bufpos, *bufend, *bufmax;
  605. };
  606. void bufchain_init(bufchain *ch)
  607. {
  608. ch->head = ch->tail = NULL;
  609. ch->buffersize = 0;
  610. }
  611. void bufchain_clear(bufchain *ch)
  612. {
  613. struct bufchain_granule *b;
  614. while (ch->head) {
  615. b = ch->head;
  616. ch->head = ch->head->next;
  617. sfree(b);
  618. }
  619. ch->tail = NULL;
  620. ch->buffersize = 0;
  621. }
  622. int bufchain_size(bufchain *ch)
  623. {
  624. return ch->buffersize;
  625. }
  626. void bufchain_add(bufchain *ch, const void *data, int len)
  627. {
  628. const char *buf = (const char *)data;
  629. if (len == 0) return;
  630. ch->buffersize += len;
  631. while (len > 0) {
  632. if (ch->tail && ch->tail->bufend < ch->tail->bufmax) {
  633. int copylen = min(len, ch->tail->bufmax - ch->tail->bufend);
  634. memcpy(ch->tail->bufend, buf, copylen);
  635. buf += copylen;
  636. len -= copylen;
  637. ch->tail->bufend += copylen;
  638. }
  639. if (len > 0) {
  640. int grainlen =
  641. max(sizeof(struct bufchain_granule) + len, BUFFER_MIN_GRANULE);
  642. struct bufchain_granule *newbuf;
  643. newbuf = smalloc(grainlen);
  644. newbuf->bufpos = newbuf->bufend =
  645. (char *)newbuf + sizeof(struct bufchain_granule);
  646. newbuf->bufmax = (char *)newbuf + grainlen;
  647. newbuf->next = NULL;
  648. if (ch->tail)
  649. ch->tail->next = newbuf;
  650. else
  651. ch->head = newbuf;
  652. ch->tail = newbuf;
  653. }
  654. }
  655. }
  656. void bufchain_consume(bufchain *ch, int len)
  657. {
  658. struct bufchain_granule *tmp;
  659. assert(ch->buffersize >= len);
  660. while (len > 0) {
  661. int remlen = len;
  662. assert(ch->head != NULL);
  663. if (remlen >= ch->head->bufend - ch->head->bufpos) {
  664. remlen = ch->head->bufend - ch->head->bufpos;
  665. tmp = ch->head;
  666. ch->head = tmp->next;
  667. if (!ch->head)
  668. ch->tail = NULL;
  669. sfree(tmp);
  670. } else
  671. ch->head->bufpos += remlen;
  672. ch->buffersize -= remlen;
  673. len -= remlen;
  674. }
  675. }
  676. void bufchain_prefix(bufchain *ch, void **data, int *len)
  677. {
  678. *len = ch->head->bufend - ch->head->bufpos;
  679. *data = ch->head->bufpos;
  680. }
  681. void bufchain_fetch(bufchain *ch, void *data, int len)
  682. {
  683. struct bufchain_granule *tmp;
  684. char *data_c = (char *)data;
  685. tmp = ch->head;
  686. assert(ch->buffersize >= len);
  687. while (len > 0) {
  688. int remlen = len;
  689. assert(tmp != NULL);
  690. if (remlen >= tmp->bufend - tmp->bufpos)
  691. remlen = tmp->bufend - tmp->bufpos;
  692. memcpy(data_c, tmp->bufpos, remlen);
  693. tmp = tmp->next;
  694. len -= remlen;
  695. data_c += remlen;
  696. }
  697. }
  698. /* ----------------------------------------------------------------------
  699. * My own versions of malloc, realloc and free. Because I want
  700. * malloc and realloc to bomb out and exit the program if they run
  701. * out of memory, realloc to reliably call malloc if passed a NULL
  702. * pointer, and free to reliably do nothing if passed a NULL
  703. * pointer. We can also put trace printouts in, if we need to; and
  704. * we can also replace the allocator with an ElectricFence-like
  705. * one.
  706. */
  707. #ifdef MINEFIELD
  708. void *minefield_c_malloc(size_t size);
  709. void minefield_c_free(void *p);
  710. void *minefield_c_realloc(void *p, size_t size);
  711. #endif
  712. #ifdef MALLOC_LOG
  713. static FILE *fp = NULL;
  714. static char *mlog_file = NULL;
  715. static int mlog_line = 0;
  716. void mlog(char *file, int line)
  717. {
  718. mlog_file = file;
  719. mlog_line = line;
  720. if (!fp) {
  721. fp = fopen("putty_mem.log", "w");
  722. setvbuf(fp, NULL, _IONBF, BUFSIZ);
  723. }
  724. if (fp)
  725. fprintf(fp, "%s:%d: ", file, line);
  726. }
  727. #endif
  728. void *safemalloc(size_t n, size_t size)
  729. {
  730. void *p;
  731. if (n > INT_MAX / size) {
  732. p = NULL;
  733. } else {
  734. size *= n;
  735. if (size == 0) size = 1;
  736. #ifdef MINEFIELD
  737. p = minefield_c_malloc(size);
  738. #else
  739. p = malloc(size);
  740. #endif
  741. }
  742. if (!p) {
  743. char str[200];
  744. #ifdef MALLOC_LOG
  745. sprintf(str, "Out of memory! (%s:%d, size=%d)",
  746. mlog_file, mlog_line, size);
  747. fprintf(fp, "*** %s\n", str);
  748. fclose(fp);
  749. #else
  750. strcpy(str, "Out of memory!");
  751. #endif
  752. modalfatalbox("%s", str);
  753. }
  754. #ifdef MALLOC_LOG
  755. if (fp)
  756. fprintf(fp, "malloc(%d) returns %p\n", size, p);
  757. #endif
  758. return p;
  759. }
  760. void *saferealloc(void *ptr, size_t n, size_t size)
  761. {
  762. void *p;
  763. if (n > INT_MAX / size) {
  764. p = NULL;
  765. } else {
  766. size *= n;
  767. if (!ptr) {
  768. #ifdef MINEFIELD
  769. p = minefield_c_malloc(size);
  770. #else
  771. p = malloc(size);
  772. #endif
  773. } else {
  774. #ifdef MINEFIELD
  775. p = minefield_c_realloc(ptr, size);
  776. #else
  777. p = realloc(ptr, size);
  778. #endif
  779. }
  780. }
  781. if (!p) {
  782. char str[200];
  783. #ifdef MALLOC_LOG
  784. sprintf(str, "Out of memory! (%s:%d, size=%d)",
  785. mlog_file, mlog_line, size);
  786. fprintf(fp, "*** %s\n", str);
  787. fclose(fp);
  788. #else
  789. strcpy(str, "Out of memory!");
  790. #endif
  791. modalfatalbox("%s", str);
  792. }
  793. #ifdef MALLOC_LOG
  794. if (fp)
  795. fprintf(fp, "realloc(%p,%d) returns %p\n", ptr, size, p);
  796. #endif
  797. return p;
  798. }
  799. void safefree(void *ptr)
  800. {
  801. if (ptr) {
  802. #ifdef MALLOC_LOG
  803. if (fp)
  804. fprintf(fp, "free(%p)\n", ptr);
  805. #endif
  806. #ifdef MINEFIELD
  807. minefield_c_free(ptr);
  808. #else
  809. free(ptr);
  810. #endif
  811. }
  812. #ifdef MALLOC_LOG
  813. else if (fp)
  814. fprintf(fp, "freeing null pointer - no action taken\n");
  815. #endif
  816. }
  817. /* ----------------------------------------------------------------------
  818. * Debugging routines.
  819. */
  820. #ifdef DEBUG
  821. extern void dputs(const char *); /* defined in per-platform *misc.c */
  822. void debug_printf(const char *fmt, ...)
  823. {
  824. char *buf;
  825. va_list ap;
  826. va_start(ap, fmt);
  827. buf = dupvprintf(fmt, ap);
  828. dputs(buf);
  829. sfree(buf);
  830. va_end(ap);
  831. }
  832. void debug_memdump(const void *buf, int len, int L)
  833. {
  834. int i;
  835. const unsigned char *p = buf;
  836. char foo[17];
  837. if (L) {
  838. int delta;
  839. debug_printf("\t%d (0x%x) bytes:\n", len, len);
  840. delta = 15 & (uintptr_t)p;
  841. p -= delta;
  842. len += delta;
  843. }
  844. for (; 0 < len; p += 16, len -= 16) {
  845. dputs(" ");
  846. if (L)
  847. debug_printf("%p: ", p);
  848. strcpy(foo, "................"); /* sixteen dots */
  849. for (i = 0; i < 16 && i < len; ++i) {
  850. if (&p[i] < (unsigned char *) buf) {
  851. dputs(" "); /* 3 spaces */
  852. foo[i] = ' ';
  853. } else {
  854. debug_printf("%c%02.2x",
  855. &p[i] != (unsigned char *) buf
  856. && i % 4 ? '.' : ' ', p[i]
  857. );
  858. if (p[i] >= ' ' && p[i] <= '~')
  859. foo[i] = (char) p[i];
  860. }
  861. }
  862. foo[i] = '\0';
  863. debug_printf("%*s%s\n", (16 - i) * 3 + 2, "", foo);
  864. }
  865. }
  866. #endif /* def DEBUG */
  867. /*
  868. * Determine whether or not a Conf represents a session which can
  869. * sensibly be launched right now.
  870. */
  871. int conf_launchable(Conf *conf)
  872. {
  873. if (conf_get_int(conf, CONF_protocol) == PROT_SERIAL)
  874. return conf_get_str(conf, CONF_serline)[0] != 0;
  875. else
  876. return conf_get_str(conf, CONF_host)[0] != 0;
  877. }
  878. char const *conf_dest(Conf *conf)
  879. {
  880. if (conf_get_int(conf, CONF_protocol) == PROT_SERIAL)
  881. return conf_get_str(conf, CONF_serline);
  882. else
  883. return conf_get_str(conf, CONF_host);
  884. }
  885. #ifndef PLATFORM_HAS_SMEMCLR
  886. /*
  887. * Securely wipe memory.
  888. *
  889. * The actual wiping is no different from what memset would do: the
  890. * point of 'securely' is to try to be sure over-clever compilers
  891. * won't optimise away memsets on variables that are about to be freed
  892. * or go out of scope. See
  893. * https://buildsecurityin.us-cert.gov/bsi-rules/home/g1/771-BSI.html
  894. *
  895. * Some platforms (e.g. Windows) may provide their own version of this
  896. * function.
  897. */
  898. void smemclr(void *b, size_t n) {
  899. volatile char *vp;
  900. if (b && n > 0) {
  901. /*
  902. * Zero out the memory.
  903. */
  904. memset(b, 0, n);
  905. /*
  906. * Perform a volatile access to the object, forcing the
  907. * compiler to admit that the previous memset was important.
  908. *
  909. * This while loop should in practice run for zero iterations
  910. * (since we know we just zeroed the object out), but in
  911. * theory (as far as the compiler knows) it might range over
  912. * the whole object. (If we had just written, say, '*vp =
  913. * *vp;', a compiler could in principle have 'helpfully'
  914. * optimised the memset into only zeroing out the first byte.
  915. * This should be robust.)
  916. */
  917. vp = b;
  918. while (*vp) vp++;
  919. }
  920. }
  921. #endif
  922. /*
  923. * Validate a manual host key specification (either entered in the
  924. * GUI, or via -hostkey). If valid, we return TRUE, and update 'key'
  925. * to contain a canonicalised version of the key string in 'key'
  926. * (which is guaranteed to take up at most as much space as the
  927. * original version), suitable for putting into the Conf. If not
  928. * valid, we return FALSE.
  929. */
  930. int validate_manual_hostkey(char *key)
  931. {
  932. char *p, *q, *r, *s;
  933. /*
  934. * Step through the string word by word, looking for a word that's
  935. * in one of the formats we like.
  936. */
  937. p = key;
  938. while ((p += strspn(p, " \t"))[0]) {
  939. q = p;
  940. p += strcspn(p, " \t");
  941. if (*p) *p++ = '\0';
  942. /*
  943. * Now q is our word.
  944. */
  945. if (strlen(q) == 16*3 - 1 &&
  946. q[strspn(q, "0123456789abcdefABCDEF:")] == 0) {
  947. /*
  948. * Might be a key fingerprint. Check the colons are in the
  949. * right places, and if so, return the same fingerprint
  950. * canonicalised into lowercase.
  951. */
  952. int i;
  953. for (i = 0; i < 16; i++)
  954. if (q[3*i] == ':' || q[3*i+1] == ':')
  955. goto not_fingerprint; /* sorry */
  956. for (i = 0; i < 15; i++)
  957. if (q[3*i+2] != ':')
  958. goto not_fingerprint; /* sorry */
  959. for (i = 0; i < 16*3 - 1; i++)
  960. key[i] = tolower(q[i]);
  961. key[16*3 - 1] = '\0';
  962. return TRUE;
  963. }
  964. not_fingerprint:;
  965. /*
  966. * Before we check for a public-key blob, trim newlines out of
  967. * the middle of the word, in case someone's managed to paste
  968. * in a public-key blob _with_ them.
  969. */
  970. for (r = s = q; *r; r++)
  971. if (*r != '\n' && *r != '\r')
  972. *s++ = *r;
  973. *s = '\0';
  974. if (strlen(q) % 4 == 0 && strlen(q) > 2*4 &&
  975. q[strspn(q, "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
  976. "abcdefghijklmnopqrstuvwxyz+/=")] == 0) {
  977. /*
  978. * Might be a base64-encoded SSH-2 public key blob. Check
  979. * that it starts with a sensible algorithm string. No
  980. * canonicalisation is necessary for this string type.
  981. *
  982. * The algorithm string must be at most 64 characters long
  983. * (RFC 4251 section 6).
  984. */
  985. unsigned char decoded[6];
  986. unsigned alglen;
  987. int minlen;
  988. int len = 0;
  989. len += base64_decode_atom(q, decoded+len);
  990. if (len < 3)
  991. goto not_ssh2_blob; /* sorry */
  992. len += base64_decode_atom(q+4, decoded+len);
  993. if (len < 4)
  994. goto not_ssh2_blob; /* sorry */
  995. alglen = GET_32BIT_MSB_FIRST(decoded);
  996. if (alglen > 64)
  997. goto not_ssh2_blob; /* sorry */
  998. minlen = ((alglen + 4) + 2) / 3;
  999. if (strlen(q) < minlen)
  1000. goto not_ssh2_blob; /* sorry */
  1001. strcpy(key, q);
  1002. return TRUE;
  1003. }
  1004. not_ssh2_blob:;
  1005. }
  1006. return FALSE;
  1007. }
  1008. int smemeq(const void *av, const void *bv, size_t len)
  1009. {
  1010. const unsigned char *a = (const unsigned char *)av;
  1011. const unsigned char *b = (const unsigned char *)bv;
  1012. unsigned val = 0;
  1013. while (len-- > 0) {
  1014. val |= *a++ ^ *b++;
  1015. }
  1016. /* Now val is 0 iff we want to return 1, and in the range
  1017. * 0x01..0xFF iff we want to return 0. So subtracting from 0x100
  1018. * will clear bit 8 iff we want to return 0, and leave it set iff
  1019. * we want to return 1, so then we can just shift down. */
  1020. return (0x100 - val) >> 8;
  1021. }
  1022. int match_ssh_id(int stringlen, const void *string, const char *id)
  1023. {
  1024. int idlen = strlen(id);
  1025. return (idlen == stringlen && !memcmp(string, id, idlen));
  1026. }
  1027. void *get_ssh_string(int *datalen, const void **data, int *stringlen)
  1028. {
  1029. void *ret;
  1030. unsigned int len;
  1031. if (*datalen < 4)
  1032. return NULL;
  1033. len = GET_32BIT_MSB_FIRST((const unsigned char *)*data);
  1034. if (*datalen - 4 < len)
  1035. return NULL;
  1036. ret = (void *)((const char *)*data + 4);
  1037. *datalen -= len + 4;
  1038. *data = (const char *)*data + len + 4;
  1039. *stringlen = len;
  1040. return ret;
  1041. }
  1042. int get_ssh_uint32(int *datalen, const void **data, unsigned *ret)
  1043. {
  1044. if (*datalen < 4)
  1045. return FALSE;
  1046. *ret = GET_32BIT_MSB_FIRST((const unsigned char *)*data);
  1047. *datalen -= 4;
  1048. *data = (const char *)*data + 4;
  1049. return TRUE;
  1050. }
  1051. int strstartswith(const char *s, const char *t)
  1052. {
  1053. return !memcmp(s, t, strlen(t));
  1054. }
  1055. int strendswith(const char *s, const char *t)
  1056. {
  1057. size_t slen = strlen(s), tlen = strlen(t);
  1058. return slen >= tlen && !strcmp(s + (slen - tlen), t);
  1059. }
  1060. char *buildinfo(const char *newline)
  1061. {
  1062. strbuf *buf = strbuf_new();
  1063. extern const char commitid[]; /* in commitid.c */
  1064. strbuf_catf(buf, "Build platform: %d-bit %s",
  1065. (int)(CHAR_BIT * sizeof(void *)),
  1066. BUILDINFO_PLATFORM);
  1067. #ifdef __clang_version__
  1068. #define FOUND_COMPILER
  1069. strbuf_catf(buf, "%sCompiler: clang %s", newline, __clang_version__);
  1070. #elif defined __GNUC__ && defined __VERSION__
  1071. #define FOUND_COMPILER
  1072. strbuf_catf(buf, "%sCompiler: gcc %s", newline, __VERSION__);
  1073. #endif
  1074. #if defined _MSC_VER
  1075. #ifndef FOUND_COMPILER
  1076. #define FOUND_COMPILER
  1077. strbuf_catf(buf, "%sCompiler: ", newline);
  1078. #else
  1079. strbuf_catf(buf, ", emulating ");
  1080. #endif
  1081. strbuf_catf(buf, "Visual Studio", newline);
  1082. #if _MSC_VER == 1900
  1083. strbuf_catf(buf, " 2015 / MSVC++ 14.0");
  1084. #elif _MSC_VER == 1800
  1085. strbuf_catf(buf, " 2013 / MSVC++ 12.0");
  1086. #elif _MSC_VER == 1700
  1087. strbuf_catf(buf, " 2012 / MSVC++ 11.0");
  1088. #elif _MSC_VER == 1600
  1089. strbuf_catf(buf, " 2010 / MSVC++ 10.0");
  1090. #elif _MSC_VER == 1500
  1091. strbuf_catf(buf, " 2008 / MSVC++ 9.0");
  1092. #elif _MSC_VER == 1400
  1093. strbuf_catf(buf, " 2005 / MSVC++ 8.0");
  1094. #elif _MSC_VER == 1310
  1095. strbuf_catf(buf, " 2003 / MSVC++ 7.1");
  1096. #elif _MSC_VER == 1300
  1097. strbuf_catf(buf, " 2003 / MSVC++ 7.0");
  1098. #else
  1099. strbuf_catf(buf, ", unrecognised version");
  1100. #endif
  1101. strbuf_catf(buf, " (_MSC_VER=%d)", (int)_MSC_VER);
  1102. #endif
  1103. #ifdef BUILDINFO_GTK
  1104. {
  1105. char *gtk_buildinfo = buildinfo_gtk_version();
  1106. if (gtk_buildinfo) {
  1107. strbuf_catf(buf, "%sCompiled against GTK version %s",
  1108. newline, gtk_buildinfo);
  1109. sfree(gtk_buildinfo);
  1110. }
  1111. }
  1112. #endif
  1113. #if defined _WINDOWS && defined MINEFIELD
  1114. strbuf_catf(buf, "%sBuild option: MINEFIELD", newline);
  1115. #endif
  1116. #ifdef NO_SECURITY
  1117. strbuf_catf(buf, "%sBuild option: NO_SECURITY", newline);
  1118. #endif
  1119. #ifdef NO_SECUREZEROMEMORY
  1120. strbuf_catf(buf, "%sBuild option: NO_SECUREZEROMEMORY", newline);
  1121. #endif
  1122. #ifdef NO_IPV6
  1123. strbuf_catf(buf, "%sBuild option: NO_IPV6", newline);
  1124. #endif
  1125. #ifdef NO_GSSAPI
  1126. strbuf_catf(buf, "%sBuild option: NO_GSSAPI", newline);
  1127. #endif
  1128. #ifdef STATIC_GSSAPI
  1129. strbuf_catf(buf, "%sBuild option: STATIC_GSSAPI", newline);
  1130. #endif
  1131. #ifdef UNPROTECT
  1132. strbuf_catf(buf, "%sBuild option: UNPROTECT", newline);
  1133. #endif
  1134. #ifdef FUZZING
  1135. strbuf_catf(buf, "%sBuild option: FUZZING", newline);
  1136. #endif
  1137. #ifdef DEBUG
  1138. strbuf_catf(buf, "%sBuild option: DEBUG", newline);
  1139. #endif
  1140. strbuf_catf(buf, "%sSource commit: %s", newline, commitid);
  1141. return strbuf_to_str(buf);
  1142. }
  1143. #ifdef MPEXT
  1144. #include "version.h"
  1145. const char * get_putty_version()
  1146. {
  1147. return TEXTVER;
  1148. }
  1149. #endif