buffers.c 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2011, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file buffers.c
  8. * \brief Implements a generic interface buffer. Buffers are
  9. * fairly opaque string holders that can read to or flush from:
  10. * memory, file descriptors, or TLS connections.
  11. **/
  12. #define BUFFERS_PRIVATE
  13. #include "or.h"
  14. #include "buffers.h"
  15. #include "config.h"
  16. #include "connection_edge.h"
  17. #include "connection_or.h"
  18. #include "control.h"
  19. #include "reasons.h"
  20. #include "../common/util.h"
  21. #include "../common/torlog.h"
  22. #ifdef HAVE_UNISTD_H
  23. #include <unistd.h>
  24. #endif
  25. //#define PARANOIA
  26. #ifdef PARANOIA
  27. /** Helper: If PARANOIA is defined, assert that the buffer in local variable
  28. * <b>buf</b> is well-formed. */
  29. #define check() STMT_BEGIN assert_buf_ok(buf); STMT_END
  30. #else
  31. #define check() STMT_NIL
  32. #endif
  33. /* Implementation notes:
  34. *
  35. * After flirting with memmove, and dallying with ring-buffers, we're finally
  36. * getting up to speed with the 1970s and implementing buffers as a linked
  37. * list of small chunks. Each buffer has such a list; data is removed from
  38. * the head of the list, and added at the tail. The list is singly linked,
  39. * and the buffer keeps a pointer to the head and the tail.
  40. *
  41. * Every chunk, except the tail, contains at least one byte of data. Data in
  42. * each chunk is contiguous.
  43. *
  44. * When you need to treat the first N characters on a buffer as a contiguous
  45. * string, use the buf_pullup function to make them so. Don't do this more
  46. * than necessary.
  47. *
  48. * The major free Unix kernels have handled buffers like this since, like,
  49. * forever.
  50. */
  51. static int parse_socks(const char *data, size_t datalen, socks_request_t *req,
  52. int log_sockstype, int safe_socks, ssize_t *drain_out,
  53. size_t *want_length_out);
  54. static int parse_socks_client(const uint8_t *data, size_t datalen,
  55. int state, char **reason,
  56. ssize_t *drain_out);
  57. /* Chunk manipulation functions */
  58. /** A single chunk on a buffer or in a freelist. */
  59. typedef struct chunk_t {
  60. struct chunk_t *next; /**< The next chunk on the buffer or freelist. */
  61. size_t datalen; /**< The number of bytes stored in this chunk */
  62. size_t memlen; /**< The number of usable bytes of storage in <b>mem</b>. */
  63. char *data; /**< A pointer to the first byte of data stored in <b>mem</b>. */
  64. char mem[FLEXIBLE_ARRAY_MEMBER]; /**< The actual memory used for storage in
  65. * this chunk. */
  66. } chunk_t;
  67. #define CHUNK_HEADER_LEN STRUCT_OFFSET(chunk_t, mem[0])
  68. /** Return the number of bytes needed to allocate a chunk to hold
  69. * <b>memlen</b> bytes. */
  70. #define CHUNK_ALLOC_SIZE(memlen) (CHUNK_HEADER_LEN + (memlen))
  71. /** Return the number of usable bytes in a chunk allocated with
  72. * malloc(<b>memlen</b>). */
  73. #define CHUNK_SIZE_WITH_ALLOC(memlen) ((memlen) - CHUNK_HEADER_LEN)
  74. /** Return the next character in <b>chunk</b> onto which data can be appended.
  75. * If the chunk is full, this might be off the end of chunk->mem. */
  76. static INLINE char *
  77. CHUNK_WRITE_PTR(chunk_t *chunk)
  78. {
  79. return chunk->data + chunk->datalen;
  80. }
  81. /** Return the number of bytes that can be written onto <b>chunk</b> without
  82. * running out of space. */
  83. static INLINE size_t
  84. CHUNK_REMAINING_CAPACITY(const chunk_t *chunk)
  85. {
  86. return (chunk->mem + chunk->memlen) - (chunk->data + chunk->datalen);
  87. }
  88. /** Move all bytes stored in <b>chunk</b> to the front of <b>chunk</b>->mem,
  89. * to free up space at the end. */
  90. static INLINE void
  91. chunk_repack(chunk_t *chunk)
  92. {
  93. if (chunk->datalen && chunk->data != &chunk->mem[0]) {
  94. memmove(chunk->mem, chunk->data, chunk->datalen);
  95. }
  96. chunk->data = &chunk->mem[0];
  97. }
  98. #ifdef ENABLE_BUF_FREELISTS
  99. /** A freelist of chunks. */
  100. typedef struct chunk_freelist_t {
  101. size_t alloc_size; /**< What size chunks does this freelist hold? */
  102. int max_length; /**< Never allow more than this number of chunks in the
  103. * freelist. */
  104. int slack; /**< When trimming the freelist, leave this number of extra
  105. * chunks beyond lowest_length.*/
  106. int cur_length; /**< How many chunks on the freelist now? */
  107. int lowest_length; /**< What's the smallest value of cur_length since the
  108. * last time we cleaned this freelist? */
  109. uint64_t n_alloc;
  110. uint64_t n_free;
  111. uint64_t n_hit;
  112. chunk_t *head; /**< First chunk on the freelist. */
  113. } chunk_freelist_t;
  114. /** Macro to help define freelists. */
  115. #define FL(a,m,s) { a, m, s, 0, 0, 0, 0, 0, NULL }
  116. /** Static array of freelists, sorted by alloc_len, terminated by an entry
  117. * with alloc_size of 0. */
  118. static chunk_freelist_t freelists[] = {
  119. FL(4096, 256, 8), FL(8192, 128, 4), FL(16384, 64, 4), FL(32768, 32, 2),
  120. FL(0, 0, 0)
  121. };
  122. #undef FL
  123. /** How many times have we looked for a chunk of a size that no freelist
  124. * could help with? */
  125. static uint64_t n_freelist_miss = 0;
  126. static void assert_freelist_ok(chunk_freelist_t *fl);
  127. /** Return the freelist to hold chunks of size <b>alloc</b>, or NULL if
  128. * no freelist exists for that size. */
  129. static INLINE chunk_freelist_t *
  130. get_freelist(size_t alloc)
  131. {
  132. int i;
  133. for (i=0; freelists[i].alloc_size <= alloc; ++i) {
  134. if (freelists[i].alloc_size == alloc) {
  135. return &freelists[i];
  136. }
  137. }
  138. return NULL;
  139. }
  140. /** Deallocate a chunk or put it on a freelist */
  141. static void
  142. chunk_free_unchecked(chunk_t *chunk)
  143. {
  144. size_t alloc;
  145. chunk_freelist_t *freelist;
  146. alloc = CHUNK_ALLOC_SIZE(chunk->memlen);
  147. freelist = get_freelist(alloc);
  148. if (freelist && freelist->cur_length < freelist->max_length) {
  149. chunk->next = freelist->head;
  150. freelist->head = chunk;
  151. ++freelist->cur_length;
  152. } else {
  153. if (freelist)
  154. ++freelist->n_free;
  155. tor_free(chunk);
  156. }
  157. }
  158. /** Allocate a new chunk with a given allocation size, or get one from the
  159. * freelist. Note that a chunk with allocation size A can actually hold only
  160. * CHUNK_SIZE_WITH_ALLOC(A) bytes in its mem field. */
  161. static INLINE chunk_t *
  162. chunk_new_with_alloc_size(size_t alloc)
  163. {
  164. chunk_t *ch;
  165. chunk_freelist_t *freelist;
  166. tor_assert(alloc >= sizeof(chunk_t));
  167. freelist = get_freelist(alloc);
  168. if (freelist && freelist->head) {
  169. ch = freelist->head;
  170. freelist->head = ch->next;
  171. if (--freelist->cur_length < freelist->lowest_length)
  172. freelist->lowest_length = freelist->cur_length;
  173. ++freelist->n_hit;
  174. } else {
  175. /* XXXX take advantage of tor_malloc_roundup, once we know how that
  176. * affects freelists. */
  177. if (freelist)
  178. ++freelist->n_alloc;
  179. else
  180. ++n_freelist_miss;
  181. ch = tor_malloc(alloc);
  182. }
  183. ch->next = NULL;
  184. ch->datalen = 0;
  185. ch->memlen = CHUNK_SIZE_WITH_ALLOC(alloc);
  186. ch->data = &ch->mem[0];
  187. return ch;
  188. }
  189. #else
  190. static void
  191. chunk_free_unchecked(chunk_t *chunk)
  192. {
  193. tor_free(chunk);
  194. }
  195. static INLINE chunk_t *
  196. chunk_new_with_alloc_size(size_t alloc)
  197. {
  198. chunk_t *ch;
  199. ch = tor_malloc_roundup(&alloc);
  200. ch->next = NULL;
  201. ch->datalen = 0;
  202. ch->memlen = CHUNK_SIZE_WITH_ALLOC(alloc);
  203. ch->data = &ch->mem[0];
  204. return ch;
  205. }
  206. #endif
  207. /** Expand <b>chunk</b> until it can hold <b>sz</b> bytes, and return a
  208. * new pointer to <b>chunk</b>. Old pointers are no longer valid. */
  209. static INLINE chunk_t *
  210. chunk_grow(chunk_t *chunk, size_t sz)
  211. {
  212. off_t offset;
  213. tor_assert(sz > chunk->memlen);
  214. offset = chunk->data - chunk->mem;
  215. chunk = tor_realloc(chunk, CHUNK_ALLOC_SIZE(sz));
  216. chunk->memlen = sz;
  217. chunk->data = chunk->mem + offset;
  218. return chunk;
  219. }
  220. /** If a read onto the end of a chunk would be smaller than this number, then
  221. * just start a new chunk. */
  222. #define MIN_READ_LEN 8
  223. /** Every chunk should take up at least this many bytes. */
  224. #define MIN_CHUNK_ALLOC 256
  225. /** No chunk should take up more than this many bytes. */
  226. #define MAX_CHUNK_ALLOC 65536
  227. /** Return the allocation size we'd like to use to hold <b>target</b>
  228. * bytes. */
  229. static INLINE size_t
  230. preferred_chunk_size(size_t target)
  231. {
  232. size_t sz = MIN_CHUNK_ALLOC;
  233. while (CHUNK_SIZE_WITH_ALLOC(sz) < target) {
  234. sz <<= 1;
  235. }
  236. return sz;
  237. }
  238. /** Remove from the freelists most chunks that have not been used since the
  239. * last call to buf_shrink_freelists(). */
  240. void
  241. buf_shrink_freelists(int free_all)
  242. {
  243. #ifdef ENABLE_BUF_FREELISTS
  244. int i;
  245. disable_control_logging();
  246. for (i = 0; freelists[i].alloc_size; ++i) {
  247. int slack = freelists[i].slack;
  248. assert_freelist_ok(&freelists[i]);
  249. if (free_all || freelists[i].lowest_length > slack) {
  250. int n_to_free = free_all ? freelists[i].cur_length :
  251. (freelists[i].lowest_length - slack);
  252. int n_to_skip = freelists[i].cur_length - n_to_free;
  253. int orig_length = freelists[i].cur_length;
  254. int orig_n_to_free = n_to_free, n_freed=0;
  255. int orig_n_to_skip = n_to_skip;
  256. int new_length = n_to_skip;
  257. chunk_t **chp = &freelists[i].head;
  258. chunk_t *chunk;
  259. while (n_to_skip) {
  260. if (! (*chp)->next) {
  261. log_warn(LD_BUG, "I wanted to skip %d chunks in the freelist for "
  262. "%d-byte chunks, but only found %d. (Length %d)",
  263. orig_n_to_skip, (int)freelists[i].alloc_size,
  264. orig_n_to_skip-n_to_skip, freelists[i].cur_length);
  265. assert_freelist_ok(&freelists[i]);
  266. goto done;
  267. }
  268. // tor_assert((*chp)->next);
  269. chp = &(*chp)->next;
  270. --n_to_skip;
  271. }
  272. chunk = *chp;
  273. *chp = NULL;
  274. while (chunk) {
  275. chunk_t *next = chunk->next;
  276. tor_free(chunk);
  277. chunk = next;
  278. --n_to_free;
  279. ++n_freed;
  280. ++freelists[i].n_free;
  281. }
  282. if (n_to_free) {
  283. log_warn(LD_BUG, "Freelist length for %d-byte chunks may have been "
  284. "messed up somehow.", (int)freelists[i].alloc_size);
  285. log_warn(LD_BUG, "There were %d chunks at the start. I decided to "
  286. "keep %d. I wanted to free %d. I freed %d. I somehow think "
  287. "I have %d left to free.",
  288. freelists[i].cur_length, n_to_skip, orig_n_to_free,
  289. n_freed, n_to_free);
  290. }
  291. // tor_assert(!n_to_free);
  292. freelists[i].cur_length = new_length;
  293. log_info(LD_MM, "Cleaned freelist for %d-byte chunks: original "
  294. "length %d, kept %d, dropped %d.",
  295. (int)freelists[i].alloc_size, orig_length,
  296. orig_n_to_skip, orig_n_to_free);
  297. }
  298. freelists[i].lowest_length = freelists[i].cur_length;
  299. assert_freelist_ok(&freelists[i]);
  300. }
  301. done:
  302. enable_control_logging();
  303. #else
  304. (void) free_all;
  305. #endif
  306. }
  307. /** Describe the current status of the freelists at log level <b>severity</b>.
  308. */
  309. void
  310. buf_dump_freelist_sizes(int severity)
  311. {
  312. #ifdef ENABLE_BUF_FREELISTS
  313. int i;
  314. log(severity, LD_MM, "====== Buffer freelists:");
  315. for (i = 0; freelists[i].alloc_size; ++i) {
  316. uint64_t total = ((uint64_t)freelists[i].cur_length) *
  317. freelists[i].alloc_size;
  318. log(severity, LD_MM,
  319. U64_FORMAT" bytes in %d %d-byte chunks ["U64_FORMAT
  320. " misses; "U64_FORMAT" frees; "U64_FORMAT" hits]",
  321. U64_PRINTF_ARG(total),
  322. freelists[i].cur_length, (int)freelists[i].alloc_size,
  323. U64_PRINTF_ARG(freelists[i].n_alloc),
  324. U64_PRINTF_ARG(freelists[i].n_free),
  325. U64_PRINTF_ARG(freelists[i].n_hit));
  326. }
  327. log(severity, LD_MM, U64_FORMAT" allocations in non-freelist sizes",
  328. U64_PRINTF_ARG(n_freelist_miss));
  329. #else
  330. (void)severity;
  331. #endif
  332. }
  333. /** Magic value for buf_t.magic, to catch pointer errors. */
  334. #define BUFFER_MAGIC 0xB0FFF312u
  335. /** A resizeable buffer, optimized for reading and writing. */
  336. struct buf_t {
  337. uint32_t magic; /**< Magic cookie for debugging: Must be set to
  338. * BUFFER_MAGIC. */
  339. size_t datalen; /**< How many bytes is this buffer holding right now? */
  340. size_t default_chunk_size; /**< Don't allocate any chunks smaller than
  341. * this for this buffer. */
  342. chunk_t *head; /**< First chunk in the list, or NULL for none. */
  343. chunk_t *tail; /**< Last chunk in the list, or NULL for none. */
  344. };
  345. /** Collapse data from the first N chunks from <b>buf</b> into buf->head,
  346. * growing it as necessary, until buf->head has the first <b>bytes</b> bytes
  347. * of data from the buffer, or until buf->head has all the data in <b>buf</b>.
  348. *
  349. * If <b>nulterminate</b> is true, ensure that there is a 0 byte in
  350. * buf->head->mem right after all the data. */
  351. static void
  352. buf_pullup(buf_t *buf, size_t bytes, int nulterminate)
  353. {
  354. chunk_t *dest, *src;
  355. size_t capacity;
  356. if (!buf->head)
  357. return;
  358. check();
  359. if (buf->datalen < bytes)
  360. bytes = buf->datalen;
  361. if (nulterminate) {
  362. capacity = bytes + 1;
  363. if (buf->head->datalen >= bytes && CHUNK_REMAINING_CAPACITY(buf->head)) {
  364. *CHUNK_WRITE_PTR(buf->head) = '\0';
  365. return;
  366. }
  367. } else {
  368. capacity = bytes;
  369. if (buf->head->datalen >= bytes)
  370. return;
  371. }
  372. if (buf->head->memlen >= capacity) {
  373. /* We don't need to grow the first chunk, but we might need to repack it.*/
  374. if (CHUNK_REMAINING_CAPACITY(buf->head) < capacity-buf->datalen)
  375. chunk_repack(buf->head);
  376. tor_assert(CHUNK_REMAINING_CAPACITY(buf->head) >= capacity-buf->datalen);
  377. } else {
  378. chunk_t *newhead;
  379. size_t newsize;
  380. /* We need to grow the chunk. */
  381. chunk_repack(buf->head);
  382. newsize = CHUNK_SIZE_WITH_ALLOC(preferred_chunk_size(capacity));
  383. newhead = chunk_grow(buf->head, newsize);
  384. tor_assert(newhead->memlen >= capacity);
  385. if (newhead != buf->head) {
  386. if (buf->tail == buf->head)
  387. buf->tail = newhead;
  388. buf->head = newhead;
  389. }
  390. }
  391. dest = buf->head;
  392. while (dest->datalen < bytes) {
  393. size_t n = bytes - dest->datalen;
  394. src = dest->next;
  395. tor_assert(src);
  396. if (n > src->datalen) {
  397. memcpy(CHUNK_WRITE_PTR(dest), src->data, src->datalen);
  398. dest->datalen += src->datalen;
  399. dest->next = src->next;
  400. if (buf->tail == src)
  401. buf->tail = dest;
  402. chunk_free_unchecked(src);
  403. } else {
  404. memcpy(CHUNK_WRITE_PTR(dest), src->data, n);
  405. dest->datalen += n;
  406. src->data += n;
  407. src->datalen -= n;
  408. tor_assert(dest->datalen == bytes);
  409. }
  410. }
  411. if (nulterminate) {
  412. tor_assert(CHUNK_REMAINING_CAPACITY(buf->head));
  413. *CHUNK_WRITE_PTR(buf->head) = '\0';
  414. }
  415. check();
  416. }
  417. /** Resize buf so it won't hold extra memory that we haven't been
  418. * using lately.
  419. */
  420. void
  421. buf_shrink(buf_t *buf)
  422. {
  423. (void)buf;
  424. }
  425. /** Remove the first <b>n</b> bytes from buf. */
  426. static INLINE void
  427. buf_remove_from_front(buf_t *buf, size_t n)
  428. {
  429. tor_assert(buf->datalen >= n);
  430. while (n) {
  431. tor_assert(buf->head);
  432. if (buf->head->datalen > n) {
  433. buf->head->datalen -= n;
  434. buf->head->data += n;
  435. buf->datalen -= n;
  436. return;
  437. } else {
  438. chunk_t *victim = buf->head;
  439. n -= victim->datalen;
  440. buf->datalen -= victim->datalen;
  441. buf->head = victim->next;
  442. if (buf->tail == victim)
  443. buf->tail = NULL;
  444. chunk_free_unchecked(victim);
  445. }
  446. }
  447. check();
  448. }
  449. /** Create and return a new buf with default chunk capacity <b>size</b>.
  450. */
  451. buf_t *
  452. buf_new_with_capacity(size_t size)
  453. {
  454. buf_t *b = buf_new();
  455. b->default_chunk_size = preferred_chunk_size(size);
  456. return b;
  457. }
  458. /** Allocate and return a new buffer with default capacity. */
  459. buf_t *
  460. buf_new(void)
  461. {
  462. buf_t *buf = tor_malloc_zero(sizeof(buf_t));
  463. buf->magic = BUFFER_MAGIC;
  464. buf->default_chunk_size = 4096;
  465. return buf;
  466. }
  467. /** Remove all data from <b>buf</b>. */
  468. void
  469. buf_clear(buf_t *buf)
  470. {
  471. chunk_t *chunk, *next;
  472. buf->datalen = 0;
  473. for (chunk = buf->head; chunk; chunk = next) {
  474. next = chunk->next;
  475. chunk_free_unchecked(chunk);
  476. }
  477. buf->head = buf->tail = NULL;
  478. }
  479. /** Return the number of bytes stored in <b>buf</b> */
  480. size_t
  481. buf_datalen(const buf_t *buf)
  482. {
  483. return buf->datalen;
  484. }
  485. /** Return the total length of all chunks used in <b>buf</b>. */
  486. size_t
  487. buf_allocation(const buf_t *buf)
  488. {
  489. size_t total = 0;
  490. const chunk_t *chunk;
  491. for (chunk = buf->head; chunk; chunk = chunk->next) {
  492. total += chunk->memlen;
  493. }
  494. return total;
  495. }
  496. /** Return the number of bytes that can be added to <b>buf</b> without
  497. * performing any additional allocation. */
  498. size_t
  499. buf_slack(const buf_t *buf)
  500. {
  501. if (!buf->tail)
  502. return 0;
  503. else
  504. return CHUNK_REMAINING_CAPACITY(buf->tail);
  505. }
  506. /** Release storage held by <b>buf</b>. */
  507. void
  508. buf_free(buf_t *buf)
  509. {
  510. if (!buf)
  511. return;
  512. buf_clear(buf);
  513. buf->magic = 0xdeadbeef;
  514. tor_free(buf);
  515. }
  516. /** Return a new copy of <b>in_chunk</b> */
  517. static chunk_t *
  518. chunk_copy(const chunk_t *in_chunk)
  519. {
  520. chunk_t *newch = tor_memdup(in_chunk, CHUNK_ALLOC_SIZE(in_chunk->memlen));
  521. newch->next = NULL;
  522. if (in_chunk->data) {
  523. off_t offset = in_chunk->data - in_chunk->mem;
  524. newch->data = newch->mem + offset;
  525. }
  526. return newch;
  527. }
  528. /** Return a new copy of <b>buf</b> */
  529. buf_t *
  530. buf_copy(const buf_t *buf)
  531. {
  532. chunk_t *ch;
  533. buf_t *out = buf_new();
  534. out->default_chunk_size = buf->default_chunk_size;
  535. for (ch = buf->head; ch; ch = ch->next) {
  536. chunk_t *newch = chunk_copy(ch);
  537. if (out->tail) {
  538. out->tail->next = newch;
  539. out->tail = newch;
  540. } else {
  541. out->head = out->tail = newch;
  542. }
  543. }
  544. out->datalen = buf->datalen;
  545. return out;
  546. }
  547. /** Append a new chunk with enough capacity to hold <b>capacity</b> bytes to
  548. * the tail of <b>buf</b>. If <b>capped</b>, don't allocate a chunk bigger
  549. * than MAX_CHUNK_ALLOC. */
  550. static chunk_t *
  551. buf_add_chunk_with_capacity(buf_t *buf, size_t capacity, int capped)
  552. {
  553. chunk_t *chunk;
  554. if (CHUNK_ALLOC_SIZE(capacity) < buf->default_chunk_size) {
  555. chunk = chunk_new_with_alloc_size(buf->default_chunk_size);
  556. } else if (capped && CHUNK_ALLOC_SIZE(capacity) > MAX_CHUNK_ALLOC) {
  557. chunk = chunk_new_with_alloc_size(MAX_CHUNK_ALLOC);
  558. } else {
  559. chunk = chunk_new_with_alloc_size(preferred_chunk_size(capacity));
  560. }
  561. if (buf->tail) {
  562. tor_assert(buf->head);
  563. buf->tail->next = chunk;
  564. buf->tail = chunk;
  565. } else {
  566. tor_assert(!buf->head);
  567. buf->head = buf->tail = chunk;
  568. }
  569. check();
  570. return chunk;
  571. }
  572. /** Read up to <b>at_most</b> bytes from the socket <b>fd</b> into
  573. * <b>chunk</b> (which must be on <b>buf</b>). If we get an EOF, set
  574. * *<b>reached_eof</b> to 1. Return -1 on error, 0 on eof or blocking,
  575. * and the number of bytes read otherwise. */
  576. static INLINE int
  577. read_to_chunk(buf_t *buf, chunk_t *chunk, tor_socket_t fd, size_t at_most,
  578. int *reached_eof, int *socket_error)
  579. {
  580. ssize_t read_result;
  581. if (at_most > CHUNK_REMAINING_CAPACITY(chunk))
  582. at_most = CHUNK_REMAINING_CAPACITY(chunk);
  583. read_result = tor_socket_recv(fd, CHUNK_WRITE_PTR(chunk), at_most, 0);
  584. if (read_result < 0) {
  585. int e = tor_socket_errno(fd);
  586. if (!ERRNO_IS_EAGAIN(e)) { /* it's a real error */
  587. #ifdef MS_WINDOWS
  588. if (e == WSAENOBUFS)
  589. log_warn(LD_NET,"recv() failed: WSAENOBUFS. Not enough ram?");
  590. #endif
  591. *socket_error = e;
  592. return -1;
  593. }
  594. return 0; /* would block. */
  595. } else if (read_result == 0) {
  596. log_debug(LD_NET,"Encountered eof on fd %d", (int)fd);
  597. *reached_eof = 1;
  598. return 0;
  599. } else { /* actually got bytes. */
  600. buf->datalen += read_result;
  601. chunk->datalen += read_result;
  602. log_debug(LD_NET,"Read %ld bytes. %d on inbuf.", (long)read_result,
  603. (int)buf->datalen);
  604. tor_assert(read_result < INT_MAX);
  605. return (int)read_result;
  606. }
  607. }
  608. /** As read_to_chunk(), but return (negative) error code on error, blocking,
  609. * or TLS, and the number of bytes read otherwise. */
  610. static INLINE int
  611. read_to_chunk_tls(buf_t *buf, chunk_t *chunk, tor_tls_t *tls,
  612. size_t at_most)
  613. {
  614. int read_result;
  615. tor_assert(CHUNK_REMAINING_CAPACITY(chunk) >= at_most);
  616. read_result = tor_tls_read(tls, CHUNK_WRITE_PTR(chunk), at_most);
  617. if (read_result < 0)
  618. return read_result;
  619. buf->datalen += read_result;
  620. chunk->datalen += read_result;
  621. return read_result;
  622. }
  623. /** Read from socket <b>s</b>, writing onto end of <b>buf</b>. Read at most
  624. * <b>at_most</b> bytes, growing the buffer as necessary. If recv() returns 0
  625. * (because of EOF), set *<b>reached_eof</b> to 1 and return 0. Return -1 on
  626. * error; else return the number of bytes read.
  627. */
  628. /* XXXX023 indicate "read blocked" somehow? */
  629. int
  630. read_to_buf(tor_socket_t s, size_t at_most, buf_t *buf, int *reached_eof,
  631. int *socket_error)
  632. {
  633. /* XXXX023 It's stupid to overload the return values for these functions:
  634. * "error status" and "number of bytes read" are not mutually exclusive.
  635. */
  636. int r = 0;
  637. size_t total_read = 0;
  638. check();
  639. tor_assert(reached_eof);
  640. tor_assert(s >= 0);
  641. while (at_most > total_read) {
  642. size_t readlen = at_most - total_read;
  643. chunk_t *chunk;
  644. if (!buf->tail || CHUNK_REMAINING_CAPACITY(buf->tail) < MIN_READ_LEN) {
  645. chunk = buf_add_chunk_with_capacity(buf, at_most, 1);
  646. if (readlen > chunk->memlen)
  647. readlen = chunk->memlen;
  648. } else {
  649. size_t cap = CHUNK_REMAINING_CAPACITY(buf->tail);
  650. chunk = buf->tail;
  651. if (cap < readlen)
  652. readlen = cap;
  653. }
  654. r = read_to_chunk(buf, chunk, s, readlen, reached_eof, socket_error);
  655. check();
  656. if (r < 0)
  657. return r; /* Error */
  658. tor_assert(total_read+r < INT_MAX);
  659. total_read += r;
  660. if ((size_t)r < readlen) { /* eof, block, or no more to read. */
  661. break;
  662. }
  663. }
  664. return (int)total_read;
  665. }
  666. /** As read_to_buf, but reads from a TLS connection, and returns a TLS
  667. * status value rather than the number of bytes read.
  668. *
  669. * Using TLS on OR connections complicates matters in two ways.
  670. *
  671. * First, a TLS stream has its own read buffer independent of the
  672. * connection's read buffer. (TLS needs to read an entire frame from
  673. * the network before it can decrypt any data. Thus, trying to read 1
  674. * byte from TLS can require that several KB be read from the network
  675. * and decrypted. The extra data is stored in TLS's decrypt buffer.)
  676. * Because the data hasn't been read by Tor (it's still inside the TLS),
  677. * this means that sometimes a connection "has stuff to read" even when
  678. * poll() didn't return POLLIN. The tor_tls_get_pending_bytes function is
  679. * used in connection.c to detect TLS objects with non-empty internal
  680. * buffers and read from them again.
  681. *
  682. * Second, the TLS stream's events do not correspond directly to network
  683. * events: sometimes, before a TLS stream can read, the network must be
  684. * ready to write -- or vice versa.
  685. */
  686. int
  687. read_to_buf_tls(tor_tls_t *tls, size_t at_most, buf_t *buf)
  688. {
  689. int r = 0;
  690. size_t total_read = 0;
  691. check();
  692. while (at_most > total_read) {
  693. size_t readlen = at_most - total_read;
  694. chunk_t *chunk;
  695. if (!buf->tail || CHUNK_REMAINING_CAPACITY(buf->tail) < MIN_READ_LEN) {
  696. chunk = buf_add_chunk_with_capacity(buf, at_most, 1);
  697. if (readlen > chunk->memlen)
  698. readlen = chunk->memlen;
  699. } else {
  700. size_t cap = CHUNK_REMAINING_CAPACITY(buf->tail);
  701. chunk = buf->tail;
  702. if (cap < readlen)
  703. readlen = cap;
  704. }
  705. r = read_to_chunk_tls(buf, chunk, tls, readlen);
  706. check();
  707. if (r < 0)
  708. return r; /* Error */
  709. tor_assert(total_read+r < INT_MAX);
  710. total_read += r;
  711. if ((size_t)r < readlen) /* eof, block, or no more to read. */
  712. break;
  713. }
  714. return (int)total_read;
  715. }
  716. /** Helper for flush_buf(): try to write <b>sz</b> bytes from chunk
  717. * <b>chunk</b> of buffer <b>buf</b> onto socket <b>s</b>. On success, deduct
  718. * the bytes written from *<b>buf_flushlen</b>. Return the number of bytes
  719. * written on success, 0 on blocking, -1 on failure.
  720. */
  721. static INLINE int
  722. flush_chunk(tor_socket_t s, buf_t *buf, chunk_t *chunk, size_t sz,
  723. size_t *buf_flushlen)
  724. {
  725. ssize_t write_result;
  726. if (sz > chunk->datalen)
  727. sz = chunk->datalen;
  728. write_result = tor_socket_send(s, chunk->data, sz, 0);
  729. if (write_result < 0) {
  730. int e = tor_socket_errno(s);
  731. if (!ERRNO_IS_EAGAIN(e)) { /* it's a real error */
  732. #ifdef MS_WINDOWS
  733. if (e == WSAENOBUFS)
  734. log_warn(LD_NET,"write() failed: WSAENOBUFS. Not enough ram?");
  735. #endif
  736. return -1;
  737. }
  738. log_debug(LD_NET,"write() would block, returning.");
  739. return 0;
  740. } else {
  741. *buf_flushlen -= write_result;
  742. buf_remove_from_front(buf, write_result);
  743. tor_assert(write_result < INT_MAX);
  744. return (int)write_result;
  745. }
  746. }
  747. /** Helper for flush_buf_tls(): try to write <b>sz</b> bytes from chunk
  748. * <b>chunk</b> of buffer <b>buf</b> onto socket <b>s</b>. (Tries to write
  749. * more if there is a forced pending write size.) On success, deduct the
  750. * bytes written from *<b>buf_flushlen</b>. Return the number of bytes
  751. * written on success, and a TOR_TLS error code on failure or blocking.
  752. */
  753. static INLINE int
  754. flush_chunk_tls(tor_tls_t *tls, buf_t *buf, chunk_t *chunk,
  755. size_t sz, size_t *buf_flushlen)
  756. {
  757. int r;
  758. size_t forced;
  759. char *data;
  760. forced = tor_tls_get_forced_write_size(tls);
  761. if (forced > sz)
  762. sz = forced;
  763. if (chunk) {
  764. data = chunk->data;
  765. tor_assert(sz <= chunk->datalen);
  766. } else {
  767. data = NULL;
  768. tor_assert(sz == 0);
  769. }
  770. r = tor_tls_write(tls, data, sz);
  771. if (r < 0)
  772. return r;
  773. if (*buf_flushlen > (size_t)r)
  774. *buf_flushlen -= r;
  775. else
  776. *buf_flushlen = 0;
  777. buf_remove_from_front(buf, r);
  778. log_debug(LD_NET,"flushed %d bytes, %d ready to flush, %d remain.",
  779. r,(int)*buf_flushlen,(int)buf->datalen);
  780. return r;
  781. }
  782. /** Write data from <b>buf</b> to the socket <b>s</b>. Write at most
  783. * <b>sz</b> bytes, decrement *<b>buf_flushlen</b> by
  784. * the number of bytes actually written, and remove the written bytes
  785. * from the buffer. Return the number of bytes written on success,
  786. * -1 on failure. Return 0 if write() would block.
  787. */
  788. int
  789. flush_buf(tor_socket_t s, buf_t *buf, size_t sz, size_t *buf_flushlen)
  790. {
  791. /* XXXX023 It's stupid to overload the return values for these functions:
  792. * "error status" and "number of bytes flushed" are not mutually exclusive.
  793. */
  794. int r;
  795. size_t flushed = 0;
  796. tor_assert(buf_flushlen);
  797. tor_assert(s >= 0);
  798. tor_assert(*buf_flushlen <= buf->datalen);
  799. tor_assert(sz <= *buf_flushlen);
  800. check();
  801. while (sz) {
  802. size_t flushlen0;
  803. tor_assert(buf->head);
  804. if (buf->head->datalen >= sz)
  805. flushlen0 = sz;
  806. else
  807. flushlen0 = buf->head->datalen;
  808. r = flush_chunk(s, buf, buf->head, flushlen0, buf_flushlen);
  809. check();
  810. if (r < 0)
  811. return r;
  812. flushed += r;
  813. sz -= r;
  814. if (r == 0 || (size_t)r < flushlen0) /* can't flush any more now. */
  815. break;
  816. }
  817. tor_assert(flushed < INT_MAX);
  818. return (int)flushed;
  819. }
  820. /** As flush_buf(), but writes data to a TLS connection. Can write more than
  821. * <b>flushlen</b> bytes.
  822. */
  823. int
  824. flush_buf_tls(tor_tls_t *tls, buf_t *buf, size_t flushlen,
  825. size_t *buf_flushlen)
  826. {
  827. int r;
  828. size_t flushed = 0;
  829. ssize_t sz;
  830. tor_assert(buf_flushlen);
  831. tor_assert(*buf_flushlen <= buf->datalen);
  832. tor_assert(flushlen <= *buf_flushlen);
  833. sz = (ssize_t) flushlen;
  834. /* we want to let tls write even if flushlen is zero, because it might
  835. * have a partial record pending */
  836. check_no_tls_errors();
  837. check();
  838. do {
  839. size_t flushlen0;
  840. if (buf->head) {
  841. if ((ssize_t)buf->head->datalen >= sz)
  842. flushlen0 = sz;
  843. else
  844. flushlen0 = buf->head->datalen;
  845. } else {
  846. flushlen0 = 0;
  847. }
  848. r = flush_chunk_tls(tls, buf, buf->head, flushlen0, buf_flushlen);
  849. check();
  850. if (r < 0)
  851. return r;
  852. flushed += r;
  853. sz -= r;
  854. if (r == 0) /* Can't flush any more now. */
  855. break;
  856. } while (sz > 0);
  857. tor_assert(flushed < INT_MAX);
  858. return (int)flushed;
  859. }
  860. /** Append <b>string_len</b> bytes from <b>string</b> to the end of
  861. * <b>buf</b>.
  862. *
  863. * Return the new length of the buffer on success, -1 on failure.
  864. */
  865. int
  866. write_to_buf(const char *string, size_t string_len, buf_t *buf)
  867. {
  868. if (!string_len)
  869. return (int)buf->datalen;
  870. check();
  871. while (string_len) {
  872. size_t copy;
  873. if (!buf->tail || !CHUNK_REMAINING_CAPACITY(buf->tail))
  874. buf_add_chunk_with_capacity(buf, string_len, 1);
  875. copy = CHUNK_REMAINING_CAPACITY(buf->tail);
  876. if (copy > string_len)
  877. copy = string_len;
  878. memcpy(CHUNK_WRITE_PTR(buf->tail), string, copy);
  879. string_len -= copy;
  880. string += copy;
  881. buf->datalen += copy;
  882. buf->tail->datalen += copy;
  883. }
  884. check();
  885. tor_assert(buf->datalen < INT_MAX);
  886. return (int)buf->datalen;
  887. }
  888. /** Helper: copy the first <b>string_len</b> bytes from <b>buf</b>
  889. * onto <b>string</b>.
  890. */
  891. static INLINE void
  892. peek_from_buf(char *string, size_t string_len, const buf_t *buf)
  893. {
  894. chunk_t *chunk;
  895. tor_assert(string);
  896. /* make sure we don't ask for too much */
  897. tor_assert(string_len <= buf->datalen);
  898. /* assert_buf_ok(buf); */
  899. chunk = buf->head;
  900. while (string_len) {
  901. size_t copy = string_len;
  902. tor_assert(chunk);
  903. if (chunk->datalen < copy)
  904. copy = chunk->datalen;
  905. memcpy(string, chunk->data, copy);
  906. string_len -= copy;
  907. string += copy;
  908. chunk = chunk->next;
  909. }
  910. }
  911. /** Remove <b>string_len</b> bytes from the front of <b>buf</b>, and store
  912. * them into <b>string</b>. Return the new buffer size. <b>string_len</b>
  913. * must be \<= the number of bytes on the buffer.
  914. */
  915. int
  916. fetch_from_buf(char *string, size_t string_len, buf_t *buf)
  917. {
  918. /* There must be string_len bytes in buf; write them onto string,
  919. * then memmove buf back (that is, remove them from buf).
  920. *
  921. * Return the number of bytes still on the buffer. */
  922. check();
  923. peek_from_buf(string, string_len, buf);
  924. buf_remove_from_front(buf, string_len);
  925. check();
  926. tor_assert(buf->datalen < INT_MAX);
  927. return (int)buf->datalen;
  928. }
  929. /** Check <b>buf</b> for a variable-length cell according to the rules of link
  930. * protocol version <b>linkproto</b>. If one is found, pull it off the buffer
  931. * and assign a newly allocated var_cell_t to *<b>out</b>, and return 1.
  932. * Return 0 if whatever is on the start of buf_t is not a variable-length
  933. * cell. Return 1 and set *<b>out</b> to NULL if there seems to be the start
  934. * of a variable-length cell on <b>buf</b>, but the whole thing isn't there
  935. * yet. */
  936. int
  937. fetch_var_cell_from_buf(buf_t *buf, var_cell_t **out, int linkproto)
  938. {
  939. char hdr[VAR_CELL_HEADER_SIZE];
  940. var_cell_t *result;
  941. uint8_t command;
  942. uint16_t length;
  943. /* If linkproto is unknown (0) or v2 (2), variable-length cells work as
  944. * implemented here. If it's 1, there are no variable-length cells. Tor
  945. * does not support other versions right now, and so can't negotiate them.
  946. */
  947. if (linkproto == 1)
  948. return 0;
  949. check();
  950. *out = NULL;
  951. if (buf->datalen < VAR_CELL_HEADER_SIZE)
  952. return 0;
  953. peek_from_buf(hdr, sizeof(hdr), buf);
  954. command = get_uint8(hdr+2);
  955. if (!(CELL_COMMAND_IS_VAR_LENGTH(command)))
  956. return 0;
  957. length = ntohs(get_uint16(hdr+3));
  958. if (buf->datalen < (size_t)(VAR_CELL_HEADER_SIZE+length))
  959. return 1;
  960. result = var_cell_new(length);
  961. result->command = command;
  962. result->circ_id = ntohs(get_uint16(hdr));
  963. buf_remove_from_front(buf, VAR_CELL_HEADER_SIZE);
  964. peek_from_buf((char*) result->payload, length, buf);
  965. buf_remove_from_front(buf, length);
  966. check();
  967. *out = result;
  968. return 1;
  969. }
  970. #ifdef USE_BUFFEREVENTS
  971. /** Try to read <b>n</b> bytes from <b>buf</b> at <b>pos</b> (which may be
  972. * NULL for the start of the buffer), copying the data only if necessary. Set
  973. * *<b>data_out</b> to a pointer to the desired bytes. Set <b>free_out</b>
  974. * to 1 if we needed to malloc *<b>data</b> because the original bytes were
  975. * noncontiguous; 0 otherwise. Return the number of bytes actually available
  976. * at *<b>data_out</b>.
  977. */
  978. static ssize_t
  979. inspect_evbuffer(struct evbuffer *buf, char **data_out, size_t n,
  980. int *free_out, struct evbuffer_ptr *pos)
  981. {
  982. int n_vecs, i;
  983. if (evbuffer_get_length(buf) < n)
  984. n = evbuffer_get_length(buf);
  985. if (n == 0)
  986. return 0;
  987. n_vecs = evbuffer_peek(buf, n, pos, NULL, 0);
  988. tor_assert(n_vecs > 0);
  989. if (n_vecs == 1) {
  990. struct evbuffer_iovec v;
  991. i = evbuffer_peek(buf, n, pos, &v, 1);
  992. tor_assert(i == 1);
  993. *data_out = v.iov_base;
  994. *free_out = 0;
  995. return v.iov_len;
  996. } else {
  997. ev_ssize_t copied;
  998. *data_out = tor_malloc(n);
  999. *free_out = 1;
  1000. copied = evbuffer_copyout(buf, *data_out, n);
  1001. tor_assert(copied >= 0 && (size_t)copied == n);
  1002. return copied;
  1003. }
  1004. }
  1005. /** As fetch_var_cell_from_buf, buf works on an evbuffer. */
  1006. int
  1007. fetch_var_cell_from_evbuffer(struct evbuffer *buf, var_cell_t **out,
  1008. int linkproto)
  1009. {
  1010. char *hdr = NULL;
  1011. int free_hdr = 0;
  1012. size_t n;
  1013. size_t buf_len;
  1014. uint8_t command;
  1015. uint16_t cell_length;
  1016. var_cell_t *cell;
  1017. int result = 0;
  1018. if (linkproto == 1)
  1019. return 0;
  1020. *out = NULL;
  1021. buf_len = evbuffer_get_length(buf);
  1022. if (buf_len < VAR_CELL_HEADER_SIZE)
  1023. return 0;
  1024. n = inspect_evbuffer(buf, &hdr, VAR_CELL_HEADER_SIZE, &free_hdr, NULL);
  1025. tor_assert(n >= VAR_CELL_HEADER_SIZE);
  1026. command = get_uint8(hdr+2);
  1027. if (!(CELL_COMMAND_IS_VAR_LENGTH(command))) {
  1028. goto done;
  1029. }
  1030. cell_length = ntohs(get_uint16(hdr+3));
  1031. if (buf_len < (size_t)(VAR_CELL_HEADER_SIZE+cell_length)) {
  1032. result = 1; /* Not all here yet. */
  1033. goto done;
  1034. }
  1035. cell = var_cell_new(cell_length);
  1036. cell->command = command;
  1037. cell->circ_id = ntohs(get_uint16(hdr));
  1038. evbuffer_drain(buf, VAR_CELL_HEADER_SIZE);
  1039. evbuffer_remove(buf, cell->payload, cell_length);
  1040. *out = cell;
  1041. result = 1;
  1042. done:
  1043. if (free_hdr && hdr)
  1044. tor_free(hdr);
  1045. return result;
  1046. }
  1047. #endif
  1048. /** Move up to *<b>buf_flushlen</b> bytes from <b>buf_in</b> to
  1049. * <b>buf_out</b>, and modify *<b>buf_flushlen</b> appropriately.
  1050. * Return the number of bytes actually copied.
  1051. */
  1052. int
  1053. move_buf_to_buf(buf_t *buf_out, buf_t *buf_in, size_t *buf_flushlen)
  1054. {
  1055. /* We can do way better here, but this doesn't turn up in any profiles. */
  1056. char b[4096];
  1057. size_t cp, len;
  1058. len = *buf_flushlen;
  1059. if (len > buf_in->datalen)
  1060. len = buf_in->datalen;
  1061. cp = len; /* Remember the number of bytes we intend to copy. */
  1062. tor_assert(cp < INT_MAX);
  1063. while (len) {
  1064. /* This isn't the most efficient implementation one could imagine, since
  1065. * it does two copies instead of 1, but I kinda doubt that this will be
  1066. * critical path. */
  1067. size_t n = len > sizeof(b) ? sizeof(b) : len;
  1068. fetch_from_buf(b, n, buf_in);
  1069. write_to_buf(b, n, buf_out);
  1070. len -= n;
  1071. }
  1072. *buf_flushlen -= cp;
  1073. return (int)cp;
  1074. }
  1075. /** Internal structure: represents a position in a buffer. */
  1076. typedef struct buf_pos_t {
  1077. const chunk_t *chunk; /**< Which chunk are we pointing to? */
  1078. int pos;/**< Which character inside the chunk's data are we pointing to? */
  1079. size_t chunk_pos; /**< Total length of all previous chunks. */
  1080. } buf_pos_t;
  1081. /** Initialize <b>out</b> to point to the first character of <b>buf</b>.*/
  1082. static void
  1083. buf_pos_init(const buf_t *buf, buf_pos_t *out)
  1084. {
  1085. out->chunk = buf->head;
  1086. out->pos = 0;
  1087. out->chunk_pos = 0;
  1088. }
  1089. /** Advance <b>out</b> to the first appearance of <b>ch</b> at the current
  1090. * position of <b>out</b>, or later. Return -1 if no instances are found;
  1091. * otherwise returns the absolute position of the character. */
  1092. static off_t
  1093. buf_find_pos_of_char(char ch, buf_pos_t *out)
  1094. {
  1095. const chunk_t *chunk;
  1096. int pos;
  1097. tor_assert(out);
  1098. if (out->chunk) {
  1099. if (out->chunk->datalen) {
  1100. tor_assert(out->pos < (off_t)out->chunk->datalen);
  1101. } else {
  1102. tor_assert(out->pos == 0);
  1103. }
  1104. }
  1105. pos = out->pos;
  1106. for (chunk = out->chunk; chunk; chunk = chunk->next) {
  1107. char *cp = memchr(chunk->data+pos, ch, chunk->datalen - pos);
  1108. if (cp) {
  1109. out->chunk = chunk;
  1110. tor_assert(cp - chunk->data < INT_MAX);
  1111. out->pos = (int)(cp - chunk->data);
  1112. return out->chunk_pos + out->pos;
  1113. } else {
  1114. out->chunk_pos += chunk->datalen;
  1115. pos = 0;
  1116. }
  1117. }
  1118. return -1;
  1119. }
  1120. /** Advance <b>pos</b> by a single character, if there are any more characters
  1121. * in the buffer. Returns 0 on success, -1 on failure. */
  1122. static INLINE int
  1123. buf_pos_inc(buf_pos_t *pos)
  1124. {
  1125. ++pos->pos;
  1126. if (pos->pos == (off_t)pos->chunk->datalen) {
  1127. if (!pos->chunk->next)
  1128. return -1;
  1129. pos->chunk_pos += pos->chunk->datalen;
  1130. pos->chunk = pos->chunk->next;
  1131. pos->pos = 0;
  1132. }
  1133. return 0;
  1134. }
  1135. /** Return true iff the <b>n</b>-character string in <b>s</b> appears
  1136. * (verbatim) at <b>pos</b>. */
  1137. static int
  1138. buf_matches_at_pos(const buf_pos_t *pos, const char *s, size_t n)
  1139. {
  1140. buf_pos_t p;
  1141. if (!n)
  1142. return 1;
  1143. memcpy(&p, pos, sizeof(p));
  1144. while (1) {
  1145. char ch = p.chunk->data[p.pos];
  1146. if (ch != *s)
  1147. return 0;
  1148. ++s;
  1149. /* If we're out of characters that don't match, we match. Check this
  1150. * _before_ we test incrementing pos, in case we're at the end of the
  1151. * string. */
  1152. if (--n == 0)
  1153. return 1;
  1154. if (buf_pos_inc(&p)<0)
  1155. return 0;
  1156. }
  1157. }
  1158. /** Return the first position in <b>buf</b> at which the <b>n</b>-character
  1159. * string <b>s</b> occurs, or -1 if it does not occur. */
  1160. /*private*/ int
  1161. buf_find_string_offset(const buf_t *buf, const char *s, size_t n)
  1162. {
  1163. buf_pos_t pos;
  1164. buf_pos_init(buf, &pos);
  1165. while (buf_find_pos_of_char(*s, &pos) >= 0) {
  1166. if (buf_matches_at_pos(&pos, s, n)) {
  1167. tor_assert(pos.chunk_pos + pos.pos < INT_MAX);
  1168. return (int)(pos.chunk_pos + pos.pos);
  1169. } else {
  1170. if (buf_pos_inc(&pos)<0)
  1171. return -1;
  1172. }
  1173. }
  1174. return -1;
  1175. }
  1176. /** There is a (possibly incomplete) http statement on <b>buf</b>, of the
  1177. * form "\%s\\r\\n\\r\\n\%s", headers, body. (body may contain NULs.)
  1178. * If a) the headers include a Content-Length field and all bytes in
  1179. * the body are present, or b) there's no Content-Length field and
  1180. * all headers are present, then:
  1181. *
  1182. * - strdup headers into <b>*headers_out</b>, and NUL-terminate it.
  1183. * - memdup body into <b>*body_out</b>, and NUL-terminate it.
  1184. * - Then remove them from <b>buf</b>, and return 1.
  1185. *
  1186. * - If headers or body is NULL, discard that part of the buf.
  1187. * - If a headers or body doesn't fit in the arg, return -1.
  1188. * (We ensure that the headers or body don't exceed max len,
  1189. * _even if_ we're planning to discard them.)
  1190. * - If force_complete is true, then succeed even if not all of the
  1191. * content has arrived.
  1192. *
  1193. * Else, change nothing and return 0.
  1194. */
  1195. int
  1196. fetch_from_buf_http(buf_t *buf,
  1197. char **headers_out, size_t max_headerlen,
  1198. char **body_out, size_t *body_used, size_t max_bodylen,
  1199. int force_complete)
  1200. {
  1201. char *headers, *p;
  1202. size_t headerlen, bodylen, contentlen;
  1203. int crlf_offset;
  1204. check();
  1205. if (!buf->head)
  1206. return 0;
  1207. crlf_offset = buf_find_string_offset(buf, "\r\n\r\n", 4);
  1208. if (crlf_offset > (int)max_headerlen ||
  1209. (crlf_offset < 0 && buf->datalen > max_headerlen)) {
  1210. log_debug(LD_HTTP,"headers too long.");
  1211. return -1;
  1212. } else if (crlf_offset < 0) {
  1213. log_debug(LD_HTTP,"headers not all here yet.");
  1214. return 0;
  1215. }
  1216. /* Okay, we have a full header. Make sure it all appears in the first
  1217. * chunk. */
  1218. if ((int)buf->head->datalen < crlf_offset + 4)
  1219. buf_pullup(buf, crlf_offset+4, 0);
  1220. headerlen = crlf_offset + 4;
  1221. headers = buf->head->data;
  1222. bodylen = buf->datalen - headerlen;
  1223. log_debug(LD_HTTP,"headerlen %d, bodylen %d.", (int)headerlen, (int)bodylen);
  1224. if (max_headerlen <= headerlen) {
  1225. log_warn(LD_HTTP,"headerlen %d larger than %d. Failing.",
  1226. (int)headerlen, (int)max_headerlen-1);
  1227. return -1;
  1228. }
  1229. if (max_bodylen <= bodylen) {
  1230. log_warn(LD_HTTP,"bodylen %d larger than %d. Failing.",
  1231. (int)bodylen, (int)max_bodylen-1);
  1232. return -1;
  1233. }
  1234. #define CONTENT_LENGTH "\r\nContent-Length: "
  1235. p = (char*) tor_memstr(headers, headerlen, CONTENT_LENGTH);
  1236. if (p) {
  1237. int i;
  1238. i = atoi(p+strlen(CONTENT_LENGTH));
  1239. if (i < 0) {
  1240. log_warn(LD_PROTOCOL, "Content-Length is less than zero; it looks like "
  1241. "someone is trying to crash us.");
  1242. return -1;
  1243. }
  1244. contentlen = i;
  1245. /* if content-length is malformed, then our body length is 0. fine. */
  1246. log_debug(LD_HTTP,"Got a contentlen of %d.",(int)contentlen);
  1247. if (bodylen < contentlen) {
  1248. if (!force_complete) {
  1249. log_debug(LD_HTTP,"body not all here yet.");
  1250. return 0; /* not all there yet */
  1251. }
  1252. }
  1253. if (bodylen > contentlen) {
  1254. bodylen = contentlen;
  1255. log_debug(LD_HTTP,"bodylen reduced to %d.",(int)bodylen);
  1256. }
  1257. }
  1258. /* all happy. copy into the appropriate places, and return 1 */
  1259. if (headers_out) {
  1260. *headers_out = tor_malloc(headerlen+1);
  1261. fetch_from_buf(*headers_out, headerlen, buf);
  1262. (*headers_out)[headerlen] = 0; /* NUL terminate it */
  1263. }
  1264. if (body_out) {
  1265. tor_assert(body_used);
  1266. *body_used = bodylen;
  1267. *body_out = tor_malloc(bodylen+1);
  1268. fetch_from_buf(*body_out, bodylen, buf);
  1269. (*body_out)[bodylen] = 0; /* NUL terminate it */
  1270. }
  1271. check();
  1272. return 1;
  1273. }
  1274. #ifdef USE_BUFFEREVENTS
  1275. /** As fetch_from_buf_http, buf works on an evbuffer. */
  1276. int
  1277. fetch_from_evbuffer_http(struct evbuffer *buf,
  1278. char **headers_out, size_t max_headerlen,
  1279. char **body_out, size_t *body_used, size_t max_bodylen,
  1280. int force_complete)
  1281. {
  1282. struct evbuffer_ptr crlf, content_length;
  1283. size_t headerlen, bodylen, contentlen;
  1284. /* Find the first \r\n\r\n in the buffer */
  1285. crlf = evbuffer_search(buf, "\r\n\r\n", 4, NULL);
  1286. if (crlf.pos < 0) {
  1287. /* We didn't find one. */
  1288. if (evbuffer_get_length(buf) > max_headerlen)
  1289. return -1; /* Headers too long. */
  1290. return 0; /* Headers not here yet. */
  1291. } else if (crlf.pos > (int)max_headerlen) {
  1292. return -1; /* Headers too long. */
  1293. }
  1294. headerlen = crlf.pos + 4; /* Skip over the \r\n\r\n */
  1295. bodylen = evbuffer_get_length(buf) - headerlen;
  1296. if (bodylen > max_bodylen)
  1297. return -1; /* body too long */
  1298. /* Look for the first occurrence of CONTENT_LENGTH insize buf before the
  1299. * crlfcrlf */
  1300. content_length = evbuffer_search_range(buf, CONTENT_LENGTH,
  1301. strlen(CONTENT_LENGTH), NULL, &crlf);
  1302. if (content_length.pos >= 0) {
  1303. /* We found a content_length: parse it and figure out if the body is here
  1304. * yet. */
  1305. struct evbuffer_ptr eol;
  1306. char *data = NULL;
  1307. int free_data = 0;
  1308. int n, i;
  1309. n = evbuffer_ptr_set(buf, &content_length, strlen(CONTENT_LENGTH),
  1310. EVBUFFER_PTR_ADD);
  1311. tor_assert(n == 0);
  1312. eol = evbuffer_search_eol(buf, &content_length, NULL, EVBUFFER_EOL_CRLF);
  1313. tor_assert(eol.pos > content_length.pos);
  1314. tor_assert(eol.pos <= crlf.pos);
  1315. inspect_evbuffer(buf, &data, eol.pos - content_length.pos, &free_data,
  1316. &content_length);
  1317. i = atoi(data);
  1318. if (free_data)
  1319. tor_free(data);
  1320. if (i < 0) {
  1321. log_warn(LD_PROTOCOL, "Content-Length is less than zero; it looks like "
  1322. "someone is trying to crash us.");
  1323. return -1;
  1324. }
  1325. contentlen = i;
  1326. /* if content-length is malformed, then our body length is 0. fine. */
  1327. log_debug(LD_HTTP,"Got a contentlen of %d.",(int)contentlen);
  1328. if (bodylen < contentlen) {
  1329. if (!force_complete) {
  1330. log_debug(LD_HTTP,"body not all here yet.");
  1331. return 0; /* not all there yet */
  1332. }
  1333. }
  1334. if (bodylen > contentlen) {
  1335. bodylen = contentlen;
  1336. log_debug(LD_HTTP,"bodylen reduced to %d.",(int)bodylen);
  1337. }
  1338. }
  1339. if (headers_out) {
  1340. *headers_out = tor_malloc(headerlen+1);
  1341. evbuffer_remove(buf, *headers_out, headerlen);
  1342. (*headers_out)[headerlen] = '\0';
  1343. }
  1344. if (body_out) {
  1345. tor_assert(headers_out);
  1346. tor_assert(body_used);
  1347. *body_used = bodylen;
  1348. *body_out = tor_malloc(bodylen+1);
  1349. evbuffer_remove(buf, *body_out, bodylen);
  1350. (*body_out)[bodylen] = '\0';
  1351. }
  1352. return 1;
  1353. }
  1354. #endif
  1355. /**
  1356. * Wait this many seconds before warning the user about using SOCKS unsafely
  1357. * again (requires that WarnUnsafeSocks is turned on). */
  1358. #define SOCKS_WARN_INTERVAL 5
  1359. /** Warn that the user application has made an unsafe socks request using
  1360. * protocol <b>socks_protocol</b> on port <b>port</b>. Don't warn more than
  1361. * once per SOCKS_WARN_INTERVAL, unless <b>safe_socks</b> is set. */
  1362. static void
  1363. log_unsafe_socks_warning(int socks_protocol, const char *address,
  1364. uint16_t port, int safe_socks)
  1365. {
  1366. static ratelim_t socks_ratelim = RATELIM_INIT(SOCKS_WARN_INTERVAL);
  1367. const or_options_t *options = get_options();
  1368. char *m = NULL;
  1369. if (! options->WarnUnsafeSocks)
  1370. return;
  1371. if (safe_socks || (m = rate_limit_log(&socks_ratelim, approx_time()))) {
  1372. log_warn(LD_APP,
  1373. "Your application (using socks%d to port %d) is giving "
  1374. "Tor only an IP address. Applications that do DNS resolves "
  1375. "themselves may leak information. Consider using Socks4A "
  1376. "(e.g. via privoxy or socat) instead. For more information, "
  1377. "please see https://wiki.torproject.org/TheOnionRouter/"
  1378. "TorFAQ#SOCKSAndDNS.%s%s",
  1379. socks_protocol,
  1380. (int)port,
  1381. safe_socks ? " Rejecting." : "",
  1382. m ? m : "");
  1383. tor_free(m);
  1384. }
  1385. control_event_client_status(LOG_WARN,
  1386. "DANGEROUS_SOCKS PROTOCOL=SOCKS%d ADDRESS=%s:%d",
  1387. socks_protocol, address, (int)port);
  1388. }
  1389. /** Do not attempt to parse socks messages longer than this. This value is
  1390. * actually significantly higher than the longest possible socks message. */
  1391. #define MAX_SOCKS_MESSAGE_LEN 512
  1392. /** Return a new socks_request_t. */
  1393. socks_request_t *
  1394. socks_request_new(void)
  1395. {
  1396. return tor_malloc_zero(sizeof(socks_request_t));
  1397. }
  1398. /** Free all storage held in the socks_request_t <b>req</b>. */
  1399. void
  1400. socks_request_free(socks_request_t *req)
  1401. {
  1402. if (!req)
  1403. return;
  1404. if (req->username) {
  1405. memset(req->username, 0x10, req->usernamelen);
  1406. tor_free(req->username);
  1407. }
  1408. if (req->password) {
  1409. memset(req->password, 0x04, req->passwordlen);
  1410. tor_free(req->password);
  1411. }
  1412. memset(req, 0xCC, sizeof(socks_request_t));
  1413. tor_free(req);
  1414. }
  1415. /** There is a (possibly incomplete) socks handshake on <b>buf</b>, of one
  1416. * of the forms
  1417. * - socks4: "socksheader username\\0"
  1418. * - socks4a: "socksheader username\\0 destaddr\\0"
  1419. * - socks5 phase one: "version #methods methods"
  1420. * - socks5 phase two: "version command 0 addresstype..."
  1421. * If it's a complete and valid handshake, and destaddr fits in
  1422. * MAX_SOCKS_ADDR_LEN bytes, then pull the handshake off the buf,
  1423. * assign to <b>req</b>, and return 1.
  1424. *
  1425. * If it's invalid or too big, return -1.
  1426. *
  1427. * Else it's not all there yet, leave buf alone and return 0.
  1428. *
  1429. * If you want to specify the socks reply, write it into <b>req->reply</b>
  1430. * and set <b>req->replylen</b>, else leave <b>req->replylen</b> alone.
  1431. *
  1432. * If <b>log_sockstype</b> is non-zero, then do a notice-level log of whether
  1433. * the connection is possibly leaking DNS requests locally or not.
  1434. *
  1435. * If <b>safe_socks</b> is true, then reject unsafe socks protocols.
  1436. *
  1437. * If returning 0 or -1, <b>req->address</b> and <b>req->port</b> are
  1438. * undefined.
  1439. */
  1440. int
  1441. fetch_from_buf_socks(buf_t *buf, socks_request_t *req,
  1442. int log_sockstype, int safe_socks)
  1443. {
  1444. int res;
  1445. ssize_t n_drain;
  1446. size_t want_length = 128;
  1447. if (buf->datalen < 2) /* version and another byte */
  1448. return 0;
  1449. do {
  1450. n_drain = 0;
  1451. buf_pullup(buf, want_length, 0);
  1452. tor_assert(buf->head && buf->head->datalen >= 2);
  1453. want_length = 0;
  1454. res = parse_socks(buf->head->data, buf->head->datalen, req, log_sockstype,
  1455. safe_socks, &n_drain, &want_length);
  1456. if (n_drain < 0)
  1457. buf_clear(buf);
  1458. else if (n_drain > 0)
  1459. buf_remove_from_front(buf, n_drain);
  1460. } while (res == 0 && buf->head && want_length < buf->datalen &&
  1461. buf->datalen >= 2);
  1462. return res;
  1463. }
  1464. #ifdef USE_BUFFEREVENTS
  1465. /* As fetch_from_buf_socks(), but targets an evbuffer instead. */
  1466. int
  1467. fetch_from_evbuffer_socks(struct evbuffer *buf, socks_request_t *req,
  1468. int log_sockstype, int safe_socks)
  1469. {
  1470. char *data;
  1471. ssize_t n_drain;
  1472. size_t datalen, buflen, want_length;
  1473. int res;
  1474. buflen = evbuffer_get_length(buf);
  1475. if (buflen < 2)
  1476. return 0;
  1477. {
  1478. /* See if we can find the socks request in the first chunk of the buffer.
  1479. */
  1480. struct evbuffer_iovec v;
  1481. int i;
  1482. n_drain = 0;
  1483. i = evbuffer_peek(buf, -1, NULL, &v, 1);
  1484. tor_assert(i == 1);
  1485. data = v.iov_base;
  1486. datalen = v.iov_len;
  1487. want_length = 0;
  1488. res = parse_socks(data, datalen, req, log_sockstype,
  1489. safe_socks, &n_drain, &want_length);
  1490. if (n_drain < 0)
  1491. evbuffer_drain(buf, evbuffer_get_length(buf));
  1492. else if (n_drain > 0)
  1493. evbuffer_drain(buf, n_drain);
  1494. if (res)
  1495. return res;
  1496. }
  1497. /* Okay, the first chunk of the buffer didn't have a complete socks request.
  1498. * That means that either we don't have a whole socks request at all, or
  1499. * it's gotten split up. We're going to try passing parse_socks() bigger
  1500. * and bigger chunks until either it says "Okay, I got it", or it says it
  1501. * will need more data than we currently have. */
  1502. /* Loop while we have more data that we haven't given parse_socks() yet. */
  1503. do {
  1504. int free_data = 0;
  1505. const size_t last_wanted = want_length;
  1506. n_drain = 0;
  1507. data = NULL;
  1508. datalen = inspect_evbuffer(buf, &data, want_length, &free_data, NULL);
  1509. want_length = 0;
  1510. res = parse_socks(data, datalen, req, log_sockstype,
  1511. safe_socks, &n_drain, &want_length);
  1512. if (free_data)
  1513. tor_free(data);
  1514. if (n_drain < 0)
  1515. evbuffer_drain(buf, evbuffer_get_length(buf));
  1516. else if (n_drain > 0)
  1517. evbuffer_drain(buf, n_drain);
  1518. if (res == 0 && n_drain == 0 && want_length <= last_wanted) {
  1519. /* If we drained nothing, and we didn't ask for more than last time,
  1520. * then we probably wanted more data than the buffer actually had,
  1521. * and we're finding out that we're not satisified with it. It's
  1522. * time to break until we have more data. */
  1523. break;
  1524. }
  1525. buflen = evbuffer_get_length(buf);
  1526. } while (res == 0 && want_length <= buflen && buflen >= 2);
  1527. return res;
  1528. }
  1529. #endif
  1530. /** Implementation helper to implement fetch_from_*_socks. Instead of looking
  1531. * at a buffer's contents, we look at the <b>datalen</b> bytes of data in
  1532. * <b>data</b>. Instead of removing data from the buffer, we set
  1533. * <b>drain_out</b> to the amount of data that should be removed (or -1 if the
  1534. * buffer should be cleared). Instead of pulling more data into the first
  1535. * chunk of the buffer, we set *<b>want_length_out</b> to the number of bytes
  1536. * we'd like to see in the input buffer, if they're available. */
  1537. static int
  1538. parse_socks(const char *data, size_t datalen, socks_request_t *req,
  1539. int log_sockstype, int safe_socks, ssize_t *drain_out,
  1540. size_t *want_length_out)
  1541. {
  1542. unsigned int len;
  1543. char tmpbuf[TOR_ADDR_BUF_LEN+1];
  1544. tor_addr_t destaddr;
  1545. uint32_t destip;
  1546. uint8_t socksver;
  1547. char *next, *startaddr;
  1548. unsigned char usernamelen, passlen;
  1549. struct in_addr in;
  1550. if (datalen < 2) {
  1551. /* We always need at least 2 bytes. */
  1552. *want_length_out = 2;
  1553. return 0;
  1554. }
  1555. if (req->socks_version == 5 && !req->got_auth) {
  1556. /* See if we have received authentication. Strictly speaking, we should
  1557. also check whether we actually negotiated username/password
  1558. authentication. But some broken clients will send us authentication
  1559. even if we negotiated SOCKS_NO_AUTH. */
  1560. if (*data == 1) { /* username/pass version 1 */
  1561. /* Format is: authversion [1 byte] == 1
  1562. usernamelen [1 byte]
  1563. username [usernamelen bytes]
  1564. passlen [1 byte]
  1565. password [passlen bytes] */
  1566. usernamelen = (unsigned char)*(data + 1);
  1567. if (datalen < 2u + usernamelen + 1u) {
  1568. *want_length_out = 2u + usernamelen + 1u;
  1569. return 0;
  1570. }
  1571. passlen = (unsigned char)*(data + 2u + usernamelen);
  1572. if (datalen < 2u + usernamelen + 1u + passlen) {
  1573. *want_length_out = 2u + usernamelen + 1u + passlen;
  1574. return 0;
  1575. }
  1576. req->replylen = 2; /* 2 bytes of response */
  1577. req->reply[0] = 5;
  1578. req->reply[1] = 0; /* authentication successful */
  1579. log_debug(LD_APP,
  1580. "socks5: Accepted username/password without checking.");
  1581. if (usernamelen) {
  1582. req->username = tor_memdup(data+2u, usernamelen);
  1583. req->usernamelen = usernamelen;
  1584. }
  1585. if (passlen) {
  1586. req->password = tor_memdup(data+3u+usernamelen, passlen);
  1587. req->passwordlen = passlen;
  1588. }
  1589. *drain_out = 2u + usernamelen + 1u + passlen;
  1590. req->got_auth = 1;
  1591. *want_length_out = 7; /* Minimal socks5 sommand. */
  1592. return 0;
  1593. } else if (req->auth_type == SOCKS_USER_PASS) {
  1594. /* unknown version byte */
  1595. log_warn(LD_APP, "Socks5 username/password version %d not recognized; "
  1596. "rejecting.", (int)*data);
  1597. return -1;
  1598. }
  1599. }
  1600. socksver = *data;
  1601. switch (socksver) { /* which version of socks? */
  1602. case 5: /* socks5 */
  1603. if (req->socks_version != 5) { /* we need to negotiate a method */
  1604. unsigned char nummethods = (unsigned char)*(data+1);
  1605. int r=0;
  1606. tor_assert(!req->socks_version);
  1607. if (datalen < 2u+nummethods) {
  1608. *want_length_out = 2u+nummethods;
  1609. return 0;
  1610. }
  1611. if (!nummethods)
  1612. return -1;
  1613. req->replylen = 2; /* 2 bytes of response */
  1614. req->reply[0] = 5; /* socks5 reply */
  1615. if (memchr(data+2, SOCKS_NO_AUTH, nummethods)) {
  1616. req->reply[1] = SOCKS_NO_AUTH; /* tell client to use "none" auth
  1617. method */
  1618. req->socks_version = 5; /* remember we've already negotiated auth */
  1619. log_debug(LD_APP,"socks5: accepted method 0 (no authentication)");
  1620. r=0;
  1621. } else if (memchr(data+2, SOCKS_USER_PASS, nummethods)) {
  1622. req->auth_type = SOCKS_USER_PASS;
  1623. req->reply[1] = SOCKS_USER_PASS; /* tell client to use "user/pass"
  1624. auth method */
  1625. req->socks_version = 5; /* remember we've already negotiated auth */
  1626. log_debug(LD_APP,"socks5: accepted method 2 (username/password)");
  1627. r=0;
  1628. } else {
  1629. log_warn(LD_APP,
  1630. "socks5: offered methods don't include 'no auth' or "
  1631. "username/password. Rejecting.");
  1632. req->reply[1] = '\xFF'; /* reject all methods */
  1633. r=-1;
  1634. }
  1635. /* Remove packet from buf. Some SOCKS clients will have sent extra
  1636. * junk at this point; let's hope it's an authentication message. */
  1637. *drain_out = 2u + nummethods;
  1638. return r;
  1639. }
  1640. if (req->auth_type != SOCKS_NO_AUTH && !req->got_auth) {
  1641. log_warn(LD_APP,
  1642. "socks5: negotiated authentication, but none provided");
  1643. return -1;
  1644. }
  1645. /* we know the method; read in the request */
  1646. log_debug(LD_APP,"socks5: checking request");
  1647. if (datalen < 7) {/* basic info plus >=1 for addr plus 2 for port */
  1648. *want_length_out = 7;
  1649. return 0; /* not yet */
  1650. }
  1651. req->command = (unsigned char) *(data+1);
  1652. if (req->command != SOCKS_COMMAND_CONNECT &&
  1653. req->command != SOCKS_COMMAND_RESOLVE &&
  1654. req->command != SOCKS_COMMAND_RESOLVE_PTR) {
  1655. /* not a connect or resolve or a resolve_ptr? we don't support it. */
  1656. log_warn(LD_APP,"socks5: command %d not recognized. Rejecting.",
  1657. req->command);
  1658. return -1;
  1659. }
  1660. switch (*(data+3)) { /* address type */
  1661. case 1: /* IPv4 address */
  1662. case 4: /* IPv6 address */ {
  1663. const int is_v6 = *(data+3) == 4;
  1664. const unsigned addrlen = is_v6 ? 16 : 4;
  1665. log_debug(LD_APP,"socks5: ipv4 address type");
  1666. if (datalen < 6+addrlen) {/* ip/port there? */
  1667. *want_length_out = 6+addrlen;
  1668. return 0; /* not yet */
  1669. }
  1670. if (is_v6)
  1671. tor_addr_from_ipv6_bytes(&destaddr, data+4);
  1672. else
  1673. tor_addr_from_ipv4n(&destaddr, get_uint32(data+4));
  1674. tor_addr_to_str(tmpbuf, &destaddr, sizeof(tmpbuf), 1);
  1675. if (strlen(tmpbuf)+1 > MAX_SOCKS_ADDR_LEN) {
  1676. log_warn(LD_APP,
  1677. "socks5 IP takes %d bytes, which doesn't fit in %d. "
  1678. "Rejecting.",
  1679. (int)strlen(tmpbuf)+1,(int)MAX_SOCKS_ADDR_LEN);
  1680. return -1;
  1681. }
  1682. strlcpy(req->address,tmpbuf,sizeof(req->address));
  1683. req->port = ntohs(get_uint16(data+4+addrlen));
  1684. *drain_out = 6+addrlen;
  1685. if (req->command != SOCKS_COMMAND_RESOLVE_PTR &&
  1686. !addressmap_have_mapping(req->address,0)) {
  1687. log_unsafe_socks_warning(5, req->address, req->port, safe_socks);
  1688. if (safe_socks)
  1689. return -1;
  1690. }
  1691. return 1;
  1692. }
  1693. case 3: /* fqdn */
  1694. log_debug(LD_APP,"socks5: fqdn address type");
  1695. if (req->command == SOCKS_COMMAND_RESOLVE_PTR) {
  1696. log_warn(LD_APP, "socks5 received RESOLVE_PTR command with "
  1697. "hostname type. Rejecting.");
  1698. return -1;
  1699. }
  1700. len = (unsigned char)*(data+4);
  1701. if (datalen < 7+len) { /* addr/port there? */
  1702. *want_length_out = 7+len;
  1703. return 0; /* not yet */
  1704. }
  1705. if (len+1 > MAX_SOCKS_ADDR_LEN) {
  1706. log_warn(LD_APP,
  1707. "socks5 hostname is %d bytes, which doesn't fit in "
  1708. "%d. Rejecting.", len+1,MAX_SOCKS_ADDR_LEN);
  1709. return -1;
  1710. }
  1711. memcpy(req->address,data+5,len);
  1712. req->address[len] = 0;
  1713. req->port = ntohs(get_uint16(data+5+len));
  1714. *drain_out = 5+len+2;
  1715. if (!tor_strisprint(req->address) || strchr(req->address,'\"')) {
  1716. log_warn(LD_PROTOCOL,
  1717. "Your application (using socks5 to port %d) gave Tor "
  1718. "a malformed hostname: %s. Rejecting the connection.",
  1719. req->port, escaped(req->address));
  1720. return -1;
  1721. }
  1722. if (log_sockstype)
  1723. log_notice(LD_APP,
  1724. "Your application (using socks5 to port %d) gave "
  1725. "Tor a hostname, which means Tor will do the DNS resolve "
  1726. "for you. This is good.", req->port);
  1727. return 1;
  1728. default: /* unsupported */
  1729. log_warn(LD_APP,"socks5: unsupported address type %d. Rejecting.",
  1730. (int) *(data+3));
  1731. return -1;
  1732. }
  1733. tor_assert(0);
  1734. case 4: { /* socks4 */
  1735. enum {socks4, socks4a} socks4_prot = socks4a;
  1736. const char *authstart, *authend;
  1737. /* http://ss5.sourceforge.net/socks4.protocol.txt */
  1738. /* http://ss5.sourceforge.net/socks4A.protocol.txt */
  1739. req->socks_version = 4;
  1740. if (datalen < SOCKS4_NETWORK_LEN) {/* basic info available? */
  1741. *want_length_out = SOCKS4_NETWORK_LEN;
  1742. return 0; /* not yet */
  1743. }
  1744. // buf_pullup(buf, 1280, 0);
  1745. req->command = (unsigned char) *(data+1);
  1746. if (req->command != SOCKS_COMMAND_CONNECT &&
  1747. req->command != SOCKS_COMMAND_RESOLVE) {
  1748. /* not a connect or resolve? we don't support it. (No resolve_ptr with
  1749. * socks4.) */
  1750. log_warn(LD_APP,"socks4: command %d not recognized. Rejecting.",
  1751. req->command);
  1752. return -1;
  1753. }
  1754. req->port = ntohs(get_uint16(data+2));
  1755. destip = ntohl(get_uint32(data+4));
  1756. if ((!req->port && req->command!=SOCKS_COMMAND_RESOLVE) || !destip) {
  1757. log_warn(LD_APP,"socks4: Port or DestIP is zero. Rejecting.");
  1758. return -1;
  1759. }
  1760. if (destip >> 8) {
  1761. log_debug(LD_APP,"socks4: destip not in form 0.0.0.x.");
  1762. in.s_addr = htonl(destip);
  1763. tor_inet_ntoa(&in,tmpbuf,sizeof(tmpbuf));
  1764. if (strlen(tmpbuf)+1 > MAX_SOCKS_ADDR_LEN) {
  1765. log_debug(LD_APP,"socks4 addr (%d bytes) too long. Rejecting.",
  1766. (int)strlen(tmpbuf));
  1767. return -1;
  1768. }
  1769. log_debug(LD_APP,
  1770. "socks4: successfully read destip (%s)",
  1771. safe_str_client(tmpbuf));
  1772. socks4_prot = socks4;
  1773. }
  1774. authstart = data + SOCKS4_NETWORK_LEN;
  1775. next = memchr(authstart, 0,
  1776. datalen-SOCKS4_NETWORK_LEN);
  1777. if (!next) {
  1778. if (datalen >= 1024) {
  1779. log_debug(LD_APP, "Socks4 user name too long; rejecting.");
  1780. return -1;
  1781. }
  1782. log_debug(LD_APP,"socks4: Username not here yet.");
  1783. *want_length_out = datalen+1024; /* More than we need, but safe */
  1784. return 0;
  1785. }
  1786. authend = next;
  1787. tor_assert(next < data+datalen);
  1788. startaddr = NULL;
  1789. if (socks4_prot != socks4a &&
  1790. !addressmap_have_mapping(tmpbuf,0)) {
  1791. log_unsafe_socks_warning(4, tmpbuf, req->port, safe_socks);
  1792. if (safe_socks)
  1793. return -1;
  1794. }
  1795. if (socks4_prot == socks4a) {
  1796. if (next+1 == data+datalen) {
  1797. log_debug(LD_APP,"socks4: No part of destaddr here yet.");
  1798. *want_length_out = datalen + 1024; /* More than we need, but safe */
  1799. return 0;
  1800. }
  1801. startaddr = next+1;
  1802. next = memchr(startaddr, 0, data + datalen - startaddr);
  1803. if (!next) {
  1804. if (datalen >= 1024) {
  1805. log_debug(LD_APP,"socks4: Destaddr too long.");
  1806. return -1;
  1807. }
  1808. log_debug(LD_APP,"socks4: Destaddr not all here yet.");
  1809. *want_length_out = datalen + 1024; /* More than we need, but safe */
  1810. return 0;
  1811. }
  1812. if (MAX_SOCKS_ADDR_LEN <= next-startaddr) {
  1813. log_warn(LD_APP,"socks4: Destaddr too long. Rejecting.");
  1814. return -1;
  1815. }
  1816. // tor_assert(next < buf->cur+buf->datalen);
  1817. if (log_sockstype)
  1818. log_notice(LD_APP,
  1819. "Your application (using socks4a to port %d) gave "
  1820. "Tor a hostname, which means Tor will do the DNS resolve "
  1821. "for you. This is good.", req->port);
  1822. }
  1823. log_debug(LD_APP,"socks4: Everything is here. Success.");
  1824. strlcpy(req->address, startaddr ? startaddr : tmpbuf,
  1825. sizeof(req->address));
  1826. if (!tor_strisprint(req->address) || strchr(req->address,'\"')) {
  1827. log_warn(LD_PROTOCOL,
  1828. "Your application (using socks4 to port %d) gave Tor "
  1829. "a malformed hostname: %s. Rejecting the connection.",
  1830. req->port, escaped(req->address));
  1831. return -1;
  1832. }
  1833. if (authend != authstart) {
  1834. req->got_auth = 1;
  1835. req->usernamelen = authend - authstart;
  1836. req->username = tor_memdup(authstart, authend - authstart);
  1837. }
  1838. /* next points to the final \0 on inbuf */
  1839. *drain_out = next - data + 1;
  1840. return 1;
  1841. }
  1842. case 'G': /* get */
  1843. case 'H': /* head */
  1844. case 'P': /* put/post */
  1845. case 'C': /* connect */
  1846. strlcpy((char*)req->reply,
  1847. "HTTP/1.0 501 Tor is not an HTTP Proxy\r\n"
  1848. "Content-Type: text/html; charset=iso-8859-1\r\n\r\n"
  1849. "<html>\n"
  1850. "<head>\n"
  1851. "<title>Tor is not an HTTP Proxy</title>\n"
  1852. "</head>\n"
  1853. "<body>\n"
  1854. "<h1>Tor is not an HTTP Proxy</h1>\n"
  1855. "<p>\n"
  1856. "It appears you have configured your web browser to use Tor as an HTTP proxy."
  1857. "\n"
  1858. "This is not correct: Tor is a SOCKS proxy, not an HTTP proxy.\n"
  1859. "Please configure your client accordingly.\n"
  1860. "</p>\n"
  1861. "<p>\n"
  1862. "See <a href=\"https://www.torproject.org/documentation.html\">"
  1863. "https://www.torproject.org/documentation.html</a> for more "
  1864. "information.\n"
  1865. "<!-- Plus this comment, to make the body response more than 512 bytes, so "
  1866. " IE will be willing to display it. Comment comment comment comment "
  1867. " comment comment comment comment comment comment comment comment.-->\n"
  1868. "</p>\n"
  1869. "</body>\n"
  1870. "</html>\n"
  1871. , MAX_SOCKS_REPLY_LEN);
  1872. req->replylen = strlen((char*)req->reply)+1;
  1873. /* fall through */
  1874. default: /* version is not socks4 or socks5 */
  1875. log_warn(LD_APP,
  1876. "Socks version %d not recognized. (Tor is not an http proxy.)",
  1877. *(data));
  1878. {
  1879. /* Tell the controller the first 8 bytes. */
  1880. char *tmp = tor_strndup(data, datalen < 8 ? datalen : 8);
  1881. control_event_client_status(LOG_WARN,
  1882. "SOCKS_UNKNOWN_PROTOCOL DATA=\"%s\"",
  1883. escaped(tmp));
  1884. tor_free(tmp);
  1885. }
  1886. return -1;
  1887. }
  1888. }
  1889. /** Inspect a reply from SOCKS server stored in <b>buf</b> according
  1890. * to <b>state</b>, removing the protocol data upon success. Return 0 on
  1891. * incomplete response, 1 on success and -1 on error, in which case
  1892. * <b>reason</b> is set to a descriptive message (free() when finished
  1893. * with it).
  1894. *
  1895. * As a special case, 2 is returned when user/pass is required
  1896. * during SOCKS5 handshake and user/pass is configured.
  1897. */
  1898. int
  1899. fetch_from_buf_socks_client(buf_t *buf, int state, char **reason)
  1900. {
  1901. ssize_t drain = 0;
  1902. int r;
  1903. if (buf->datalen < 2)
  1904. return 0;
  1905. buf_pullup(buf, MAX_SOCKS_MESSAGE_LEN, 0);
  1906. tor_assert(buf->head && buf->head->datalen >= 2);
  1907. r = parse_socks_client((uint8_t*)buf->head->data, buf->head->datalen,
  1908. state, reason, &drain);
  1909. if (drain > 0)
  1910. buf_remove_from_front(buf, drain);
  1911. else if (drain < 0)
  1912. buf_clear(buf);
  1913. return r;
  1914. }
  1915. #ifdef USE_BUFFEREVENTS
  1916. /** As fetch_from_buf_socks_client, buf works on an evbuffer */
  1917. int
  1918. fetch_from_evbuffer_socks_client(struct evbuffer *buf, int state,
  1919. char **reason)
  1920. {
  1921. ssize_t drain = 0;
  1922. uint8_t *data;
  1923. size_t datalen;
  1924. int r;
  1925. /* Linearize the SOCKS response in the buffer, up to 128 bytes.
  1926. * (parse_socks_client shouldn't need to see anything beyond that.) */
  1927. datalen = evbuffer_get_length(buf);
  1928. if (datalen > MAX_SOCKS_MESSAGE_LEN)
  1929. datalen = MAX_SOCKS_MESSAGE_LEN;
  1930. data = evbuffer_pullup(buf, datalen);
  1931. r = parse_socks_client(data, datalen, state, reason, &drain);
  1932. if (drain > 0)
  1933. evbuffer_drain(buf, drain);
  1934. else if (drain < 0)
  1935. evbuffer_drain(buf, evbuffer_get_length(buf));
  1936. return r;
  1937. }
  1938. #endif
  1939. /** Implementation logic for fetch_from_*_socks_client. */
  1940. static int
  1941. parse_socks_client(const uint8_t *data, size_t datalen,
  1942. int state, char **reason,
  1943. ssize_t *drain_out)
  1944. {
  1945. unsigned int addrlen;
  1946. *drain_out = 0;
  1947. if (datalen < 2)
  1948. return 0;
  1949. switch (state) {
  1950. case PROXY_SOCKS4_WANT_CONNECT_OK:
  1951. /* Wait for the complete response */
  1952. if (datalen < 8)
  1953. return 0;
  1954. if (data[1] != 0x5a) {
  1955. *reason = tor_strdup(socks4_response_code_to_string(data[1]));
  1956. return -1;
  1957. }
  1958. /* Success */
  1959. *drain_out = 8;
  1960. return 1;
  1961. case PROXY_SOCKS5_WANT_AUTH_METHOD_NONE:
  1962. /* we don't have any credentials */
  1963. if (data[1] != 0x00) {
  1964. *reason = tor_strdup("server doesn't support any of our "
  1965. "available authentication methods");
  1966. return -1;
  1967. }
  1968. log_info(LD_NET, "SOCKS 5 client: continuing without authentication");
  1969. *drain_out = -1;
  1970. return 1;
  1971. case PROXY_SOCKS5_WANT_AUTH_METHOD_RFC1929:
  1972. /* we have a username and password. return 1 if we can proceed without
  1973. * providing authentication, or 2 otherwise. */
  1974. switch (data[1]) {
  1975. case 0x00:
  1976. log_info(LD_NET, "SOCKS 5 client: we have auth details but server "
  1977. "doesn't require authentication.");
  1978. *drain_out = -1;
  1979. return 1;
  1980. case 0x02:
  1981. log_info(LD_NET, "SOCKS 5 client: need authentication.");
  1982. *drain_out = -1;
  1983. return 2;
  1984. /* fall through */
  1985. }
  1986. *reason = tor_strdup("server doesn't support any of our available "
  1987. "authentication methods");
  1988. return -1;
  1989. case PROXY_SOCKS5_WANT_AUTH_RFC1929_OK:
  1990. /* handle server reply to rfc1929 authentication */
  1991. if (data[1] != 0x00) {
  1992. *reason = tor_strdup("authentication failed");
  1993. return -1;
  1994. }
  1995. log_info(LD_NET, "SOCKS 5 client: authentication successful.");
  1996. *drain_out = -1;
  1997. return 1;
  1998. case PROXY_SOCKS5_WANT_CONNECT_OK:
  1999. /* response is variable length. BND.ADDR, etc, isn't needed
  2000. * (don't bother with buf_pullup()), but make sure to eat all
  2001. * the data used */
  2002. /* wait for address type field to arrive */
  2003. if (datalen < 4)
  2004. return 0;
  2005. switch (data[3]) {
  2006. case 0x01: /* ip4 */
  2007. addrlen = 4;
  2008. break;
  2009. case 0x04: /* ip6 */
  2010. addrlen = 16;
  2011. break;
  2012. case 0x03: /* fqdn (can this happen here?) */
  2013. if (datalen < 5)
  2014. return 0;
  2015. addrlen = 1 + data[4];
  2016. break;
  2017. default:
  2018. *reason = tor_strdup("invalid response to connect request");
  2019. return -1;
  2020. }
  2021. /* wait for address and port */
  2022. if (datalen < 6 + addrlen)
  2023. return 0;
  2024. if (data[1] != 0x00) {
  2025. *reason = tor_strdup(socks5_response_code_to_string(data[1]));
  2026. return -1;
  2027. }
  2028. *drain_out = 6 + addrlen;
  2029. return 1;
  2030. }
  2031. /* shouldn't get here... */
  2032. tor_assert(0);
  2033. return -1;
  2034. }
  2035. /** Return 1 iff buf looks more like it has an (obsolete) v0 controller
  2036. * command on it than any valid v1 controller command. */
  2037. int
  2038. peek_buf_has_control0_command(buf_t *buf)
  2039. {
  2040. if (buf->datalen >= 4) {
  2041. char header[4];
  2042. uint16_t cmd;
  2043. peek_from_buf(header, sizeof(header), buf);
  2044. cmd = ntohs(get_uint16(header+2));
  2045. if (cmd <= 0x14)
  2046. return 1; /* This is definitely not a v1 control command. */
  2047. }
  2048. return 0;
  2049. }
  2050. #ifdef USE_BUFFEREVENTS
  2051. int
  2052. peek_evbuffer_has_control0_command(struct evbuffer *buf)
  2053. {
  2054. int result = 0;
  2055. if (evbuffer_get_length(buf) >= 4) {
  2056. int free_out = 0;
  2057. char *data = NULL;
  2058. size_t n = inspect_evbuffer(buf, &data, 4, &free_out, NULL);
  2059. uint16_t cmd;
  2060. tor_assert(n >= 4);
  2061. cmd = ntohs(get_uint16(data+2));
  2062. if (cmd <= 0x14)
  2063. result = 1;
  2064. if (free_out)
  2065. tor_free(data);
  2066. }
  2067. return result;
  2068. }
  2069. #endif
  2070. /** Return the index within <b>buf</b> at which <b>ch</b> first appears,
  2071. * or -1 if <b>ch</b> does not appear on buf. */
  2072. static off_t
  2073. buf_find_offset_of_char(buf_t *buf, char ch)
  2074. {
  2075. chunk_t *chunk;
  2076. off_t offset = 0;
  2077. for (chunk = buf->head; chunk; chunk = chunk->next) {
  2078. char *cp = memchr(chunk->data, ch, chunk->datalen);
  2079. if (cp)
  2080. return offset + (cp - chunk->data);
  2081. else
  2082. offset += chunk->datalen;
  2083. }
  2084. return -1;
  2085. }
  2086. /** Try to read a single LF-terminated line from <b>buf</b>, and write it
  2087. * (including the LF), NUL-terminated, into the *<b>data_len</b> byte buffer
  2088. * at <b>data_out</b>. Set *<b>data_len</b> to the number of bytes in the
  2089. * line, not counting the terminating NUL. Return 1 if we read a whole line,
  2090. * return 0 if we don't have a whole line yet, and return -1 if the line
  2091. * length exceeds *<b>data_len</b>.
  2092. */
  2093. int
  2094. fetch_from_buf_line(buf_t *buf, char *data_out, size_t *data_len)
  2095. {
  2096. size_t sz;
  2097. off_t offset;
  2098. if (!buf->head)
  2099. return 0;
  2100. offset = buf_find_offset_of_char(buf, '\n');
  2101. if (offset < 0)
  2102. return 0;
  2103. sz = (size_t) offset;
  2104. if (sz+2 > *data_len) {
  2105. *data_len = sz + 2;
  2106. return -1;
  2107. }
  2108. fetch_from_buf(data_out, sz+1, buf);
  2109. data_out[sz+1] = '\0';
  2110. *data_len = sz+1;
  2111. return 1;
  2112. }
  2113. /** Compress on uncompress the <b>data_len</b> bytes in <b>data</b> using the
  2114. * zlib state <b>state</b>, appending the result to <b>buf</b>. If
  2115. * <b>done</b> is true, flush the data in the state and finish the
  2116. * compression/uncompression. Return -1 on failure, 0 on success. */
  2117. int
  2118. write_to_buf_zlib(buf_t *buf, tor_zlib_state_t *state,
  2119. const char *data, size_t data_len,
  2120. int done)
  2121. {
  2122. char *next;
  2123. size_t old_avail, avail;
  2124. int over = 0;
  2125. do {
  2126. int need_new_chunk = 0;
  2127. if (!buf->tail || ! CHUNK_REMAINING_CAPACITY(buf->tail)) {
  2128. size_t cap = data_len / 4;
  2129. buf_add_chunk_with_capacity(buf, cap, 1);
  2130. }
  2131. next = CHUNK_WRITE_PTR(buf->tail);
  2132. avail = old_avail = CHUNK_REMAINING_CAPACITY(buf->tail);
  2133. switch (tor_zlib_process(state, &next, &avail, &data, &data_len, done)) {
  2134. case TOR_ZLIB_DONE:
  2135. over = 1;
  2136. break;
  2137. case TOR_ZLIB_ERR:
  2138. return -1;
  2139. case TOR_ZLIB_OK:
  2140. if (data_len == 0)
  2141. over = 1;
  2142. break;
  2143. case TOR_ZLIB_BUF_FULL:
  2144. if (avail) {
  2145. /* Zlib says we need more room (ZLIB_BUF_FULL). Start a new chunk
  2146. * automatically, whether were going to or not. */
  2147. need_new_chunk = 1;
  2148. }
  2149. break;
  2150. }
  2151. buf->datalen += old_avail - avail;
  2152. buf->tail->datalen += old_avail - avail;
  2153. if (need_new_chunk) {
  2154. buf_add_chunk_with_capacity(buf, data_len/4, 1);
  2155. }
  2156. } while (!over);
  2157. check();
  2158. return 0;
  2159. }
  2160. #ifdef USE_BUFFEREVENTS
  2161. int
  2162. write_to_evbuffer_zlib(struct evbuffer *buf, tor_zlib_state_t *state,
  2163. const char *data, size_t data_len,
  2164. int done)
  2165. {
  2166. char *next;
  2167. size_t old_avail, avail;
  2168. int over = 0, n;
  2169. struct evbuffer_iovec vec[1];
  2170. do {
  2171. {
  2172. size_t cap = data_len / 4;
  2173. if (cap < 128)
  2174. cap = 128;
  2175. /* XXXX NM this strategy is fragmentation-prone. We should really have
  2176. * two iovecs, and write first into the one, and then into the
  2177. * second if the first gets full. */
  2178. n = evbuffer_reserve_space(buf, cap, vec, 1);
  2179. tor_assert(n == 1);
  2180. }
  2181. next = vec[0].iov_base;
  2182. avail = old_avail = vec[0].iov_len;
  2183. switch (tor_zlib_process(state, &next, &avail, &data, &data_len, done)) {
  2184. case TOR_ZLIB_DONE:
  2185. over = 1;
  2186. break;
  2187. case TOR_ZLIB_ERR:
  2188. return -1;
  2189. case TOR_ZLIB_OK:
  2190. if (data_len == 0)
  2191. over = 1;
  2192. break;
  2193. case TOR_ZLIB_BUF_FULL:
  2194. if (avail) {
  2195. /* Zlib says we need more room (ZLIB_BUF_FULL). Start a new chunk
  2196. * automatically, whether were going to or not. */
  2197. }
  2198. break;
  2199. }
  2200. /* XXXX possible infinite loop on BUF_FULL. */
  2201. vec[0].iov_len = old_avail - avail;
  2202. evbuffer_commit_space(buf, vec, 1);
  2203. } while (!over);
  2204. check();
  2205. return 0;
  2206. }
  2207. #endif
  2208. /** Set *<b>output</b> to contain a copy of the data in *<b>input</b> */
  2209. int
  2210. generic_buffer_set_to_copy(generic_buffer_t **output,
  2211. const generic_buffer_t *input)
  2212. {
  2213. #ifdef USE_BUFFEREVENTS
  2214. struct evbuffer_ptr ptr;
  2215. size_t remaining = evbuffer_get_length(input);
  2216. if (*output) {
  2217. evbuffer_drain(*output, evbuffer_get_length(*output));
  2218. } else {
  2219. if (!(*output = evbuffer_new()))
  2220. return -1;
  2221. }
  2222. evbuffer_ptr_set((struct evbuffer*)input, &ptr, 0, EVBUFFER_PTR_SET);
  2223. while (remaining) {
  2224. struct evbuffer_iovec v[4];
  2225. int n_used, i;
  2226. n_used = evbuffer_peek((struct evbuffer*)input, -1, &ptr, v, 4);
  2227. if (n_used < 0)
  2228. return -1;
  2229. for (i=0;i<n_used;++i) {
  2230. evbuffer_add(*output, v[i].iov_base, v[i].iov_len);
  2231. tor_assert(v[i].iov_len <= remaining);
  2232. remaining -= v[i].iov_len;
  2233. evbuffer_ptr_set((struct evbuffer*)input,
  2234. &ptr, v[i].iov_len, EVBUFFER_PTR_ADD);
  2235. }
  2236. }
  2237. #else
  2238. if (*output)
  2239. buf_free(*output);
  2240. *output = buf_copy(input);
  2241. #endif
  2242. return 0;
  2243. }
  2244. /** Log an error and exit if <b>buf</b> is corrupted.
  2245. */
  2246. void
  2247. assert_buf_ok(buf_t *buf)
  2248. {
  2249. tor_assert(buf);
  2250. tor_assert(buf->magic == BUFFER_MAGIC);
  2251. if (! buf->head) {
  2252. tor_assert(!buf->tail);
  2253. tor_assert(buf->datalen == 0);
  2254. } else {
  2255. chunk_t *ch;
  2256. size_t total = 0;
  2257. tor_assert(buf->tail);
  2258. for (ch = buf->head; ch; ch = ch->next) {
  2259. total += ch->datalen;
  2260. tor_assert(ch->datalen <= ch->memlen);
  2261. tor_assert(ch->data >= &ch->mem[0]);
  2262. tor_assert(ch->data < &ch->mem[0]+ch->memlen);
  2263. tor_assert(ch->data+ch->datalen <= &ch->mem[0] + ch->memlen);
  2264. if (!ch->next)
  2265. tor_assert(ch == buf->tail);
  2266. }
  2267. tor_assert(buf->datalen == total);
  2268. }
  2269. }
  2270. #ifdef ENABLE_BUF_FREELISTS
  2271. /** Log an error and exit if <b>fl</b> is corrupted.
  2272. */
  2273. static void
  2274. assert_freelist_ok(chunk_freelist_t *fl)
  2275. {
  2276. chunk_t *ch;
  2277. int n;
  2278. tor_assert(fl->alloc_size > 0);
  2279. n = 0;
  2280. for (ch = fl->head; ch; ch = ch->next) {
  2281. tor_assert(CHUNK_ALLOC_SIZE(ch->memlen) == fl->alloc_size);
  2282. ++n;
  2283. }
  2284. tor_assert(n == fl->cur_length);
  2285. tor_assert(n >= fl->lowest_length);
  2286. tor_assert(n <= fl->max_length);
  2287. }
  2288. #endif