connection.c 128 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942
  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 connection.c
  8. * \brief General high-level functions to handle reading and writing
  9. * on connections.
  10. **/
  11. #include "or.h"
  12. #include "buffers.h"
  13. #include "circuitbuild.h"
  14. #include "circuitlist.h"
  15. #include "circuituse.h"
  16. #include "config.h"
  17. #include "connection.h"
  18. #include "connection_edge.h"
  19. #include "connection_or.h"
  20. #include "control.h"
  21. #include "cpuworker.h"
  22. #include "directory.h"
  23. #include "dirserv.h"
  24. #include "dns.h"
  25. #include "dnsserv.h"
  26. #include "geoip.h"
  27. #include "main.h"
  28. #include "policies.h"
  29. #include "reasons.h"
  30. #include "relay.h"
  31. #include "rendclient.h"
  32. #include "rendcommon.h"
  33. #include "rephist.h"
  34. #include "router.h"
  35. #include "routerparse.h"
  36. #ifdef USE_BUFFEREVENTS
  37. #include <event2/event.h>
  38. #endif
  39. static connection_t *connection_create_listener(
  40. struct sockaddr *listensockaddr,
  41. socklen_t listensocklen, int type,
  42. char* address);
  43. static void connection_init(time_t now, connection_t *conn, int type,
  44. int socket_family);
  45. static int connection_init_accepted_conn(connection_t *conn,
  46. uint8_t listener_type);
  47. static int connection_handle_listener_read(connection_t *conn, int new_type);
  48. #ifndef USE_BUFFEREVENTS
  49. static int connection_bucket_should_increase(int bucket,
  50. or_connection_t *conn);
  51. #endif
  52. static int connection_finished_flushing(connection_t *conn);
  53. static int connection_flushed_some(connection_t *conn);
  54. static int connection_finished_connecting(connection_t *conn);
  55. static int connection_reached_eof(connection_t *conn);
  56. static int connection_read_to_buf(connection_t *conn, int *max_to_read,
  57. int *socket_error);
  58. static int connection_process_inbuf(connection_t *conn, int package_partial);
  59. static void client_check_address_changed(int sock);
  60. static void set_constrained_socket_buffers(int sock, int size);
  61. static const char *connection_proxy_state_to_string(int state);
  62. static int connection_read_https_proxy_response(connection_t *conn);
  63. static void connection_send_socks5_connect(connection_t *conn);
  64. /** The last IPv4 address that our network interface seemed to have been
  65. * binding to, in host order. We use this to detect when our IP changes. */
  66. static uint32_t last_interface_ip = 0;
  67. /** A list of uint32_ts for addresses we've used in outgoing connections.
  68. * Used to detect IP address changes. */
  69. static smartlist_t *outgoing_addrs = NULL;
  70. /**************************************************************/
  71. /**
  72. * Return the human-readable name for the connection type <b>type</b>
  73. */
  74. const char *
  75. conn_type_to_string(int type)
  76. {
  77. static char buf[64];
  78. switch (type) {
  79. case CONN_TYPE_OR_LISTENER: return "OR listener";
  80. case CONN_TYPE_OR: return "OR";
  81. case CONN_TYPE_EXIT: return "Exit";
  82. case CONN_TYPE_AP_LISTENER: return "Socks listener";
  83. case CONN_TYPE_AP_TRANS_LISTENER:
  84. return "Transparent pf/netfilter listener";
  85. case CONN_TYPE_AP_NATD_LISTENER: return "Transparent natd listener";
  86. case CONN_TYPE_AP_DNS_LISTENER: return "DNS listener";
  87. case CONN_TYPE_AP: return "Socks";
  88. case CONN_TYPE_DIR_LISTENER: return "Directory listener";
  89. case CONN_TYPE_DIR: return "Directory";
  90. case CONN_TYPE_CPUWORKER: return "CPU worker";
  91. case CONN_TYPE_CONTROL_LISTENER: return "Control listener";
  92. case CONN_TYPE_CONTROL: return "Control";
  93. default:
  94. log_warn(LD_BUG, "unknown connection type %d", type);
  95. tor_snprintf(buf, sizeof(buf), "unknown [%d]", type);
  96. return buf;
  97. }
  98. }
  99. /**
  100. * Return the human-readable name for the connection state <b>state</b>
  101. * for the connection type <b>type</b>
  102. */
  103. const char *
  104. conn_state_to_string(int type, int state)
  105. {
  106. static char buf[96];
  107. switch (type) {
  108. case CONN_TYPE_OR_LISTENER:
  109. case CONN_TYPE_AP_LISTENER:
  110. case CONN_TYPE_AP_TRANS_LISTENER:
  111. case CONN_TYPE_AP_NATD_LISTENER:
  112. case CONN_TYPE_AP_DNS_LISTENER:
  113. case CONN_TYPE_DIR_LISTENER:
  114. case CONN_TYPE_CONTROL_LISTENER:
  115. if (state == LISTENER_STATE_READY)
  116. return "ready";
  117. break;
  118. case CONN_TYPE_OR:
  119. switch (state) {
  120. case OR_CONN_STATE_CONNECTING: return "connect()ing";
  121. case OR_CONN_STATE_PROXY_HANDSHAKING: return "handshaking (proxy)";
  122. case OR_CONN_STATE_TLS_HANDSHAKING: return "handshaking (TLS)";
  123. case OR_CONN_STATE_TLS_CLIENT_RENEGOTIATING:
  124. return "renegotiating (TLS)";
  125. case OR_CONN_STATE_TLS_SERVER_RENEGOTIATING:
  126. return "waiting for renegotiation (TLS)";
  127. case OR_CONN_STATE_OR_HANDSHAKING: return "handshaking (Tor)";
  128. case OR_CONN_STATE_OPEN: return "open";
  129. }
  130. break;
  131. case CONN_TYPE_EXIT:
  132. switch (state) {
  133. case EXIT_CONN_STATE_RESOLVING: return "waiting for dest info";
  134. case EXIT_CONN_STATE_CONNECTING: return "connecting";
  135. case EXIT_CONN_STATE_OPEN: return "open";
  136. case EXIT_CONN_STATE_RESOLVEFAILED: return "resolve failed";
  137. }
  138. break;
  139. case CONN_TYPE_AP:
  140. switch (state) {
  141. case AP_CONN_STATE_SOCKS_WAIT: return "waiting for socks info";
  142. case AP_CONN_STATE_NATD_WAIT: return "waiting for natd dest info";
  143. case AP_CONN_STATE_RENDDESC_WAIT: return "waiting for rendezvous desc";
  144. case AP_CONN_STATE_CONTROLLER_WAIT: return "waiting for controller";
  145. case AP_CONN_STATE_CIRCUIT_WAIT: return "waiting for circuit";
  146. case AP_CONN_STATE_CONNECT_WAIT: return "waiting for connect response";
  147. case AP_CONN_STATE_RESOLVE_WAIT: return "waiting for resolve response";
  148. case AP_CONN_STATE_OPEN: return "open";
  149. }
  150. break;
  151. case CONN_TYPE_DIR:
  152. switch (state) {
  153. case DIR_CONN_STATE_CONNECTING: return "connecting";
  154. case DIR_CONN_STATE_CLIENT_SENDING: return "client sending";
  155. case DIR_CONN_STATE_CLIENT_READING: return "client reading";
  156. case DIR_CONN_STATE_CLIENT_FINISHED: return "client finished";
  157. case DIR_CONN_STATE_SERVER_COMMAND_WAIT: return "waiting for command";
  158. case DIR_CONN_STATE_SERVER_WRITING: return "writing";
  159. }
  160. break;
  161. case CONN_TYPE_CPUWORKER:
  162. switch (state) {
  163. case CPUWORKER_STATE_IDLE: return "idle";
  164. case CPUWORKER_STATE_BUSY_ONION: return "busy with onion";
  165. }
  166. break;
  167. case CONN_TYPE_CONTROL:
  168. switch (state) {
  169. case CONTROL_CONN_STATE_OPEN: return "open (protocol v1)";
  170. case CONTROL_CONN_STATE_NEEDAUTH:
  171. return "waiting for authentication (protocol v1)";
  172. }
  173. break;
  174. }
  175. log_warn(LD_BUG, "unknown connection state %d (type %d)", state, type);
  176. tor_snprintf(buf, sizeof(buf),
  177. "unknown state [%d] on unknown [%s] connection",
  178. state, conn_type_to_string(type));
  179. return buf;
  180. }
  181. #ifdef USE_BUFFEREVENTS
  182. /** Return true iff the connection's type is one that can use a
  183. bufferevent-based implementation. */
  184. int
  185. connection_type_uses_bufferevent(connection_t *conn)
  186. {
  187. switch (conn->type) {
  188. case CONN_TYPE_AP:
  189. case CONN_TYPE_EXIT:
  190. case CONN_TYPE_DIR:
  191. case CONN_TYPE_CONTROL:
  192. case CONN_TYPE_OR:
  193. case CONN_TYPE_CPUWORKER:
  194. return 1;
  195. default:
  196. return 0;
  197. }
  198. }
  199. #endif
  200. /** Allocate and return a new dir_connection_t, initialized as by
  201. * connection_init(). */
  202. dir_connection_t *
  203. dir_connection_new(int socket_family)
  204. {
  205. dir_connection_t *dir_conn = tor_malloc_zero(sizeof(dir_connection_t));
  206. connection_init(time(NULL), TO_CONN(dir_conn), CONN_TYPE_DIR, socket_family);
  207. return dir_conn;
  208. }
  209. /** Allocate and return a new or_connection_t, initialized as by
  210. * connection_init(). */
  211. or_connection_t *
  212. or_connection_new(int socket_family)
  213. {
  214. or_connection_t *or_conn = tor_malloc_zero(sizeof(or_connection_t));
  215. time_t now = time(NULL);
  216. connection_init(now, TO_CONN(or_conn), CONN_TYPE_OR, socket_family);
  217. or_conn->timestamp_last_added_nonpadding = time(NULL);
  218. or_conn->next_circ_id = crypto_rand_int(1<<15);
  219. or_conn->active_circuit_pqueue = smartlist_create();
  220. or_conn->active_circuit_pqueue_last_recalibrated = cell_ewma_get_tick();
  221. return or_conn;
  222. }
  223. /** Allocate and return a new edge_connection_t, initialized as by
  224. * connection_init(). */
  225. edge_connection_t *
  226. edge_connection_new(int type, int socket_family)
  227. {
  228. edge_connection_t *edge_conn = tor_malloc_zero(sizeof(edge_connection_t));
  229. tor_assert(type == CONN_TYPE_EXIT || type == CONN_TYPE_AP);
  230. connection_init(time(NULL), TO_CONN(edge_conn), type, socket_family);
  231. if (type == CONN_TYPE_AP)
  232. edge_conn->socks_request = tor_malloc_zero(sizeof(socks_request_t));
  233. return edge_conn;
  234. }
  235. /** Allocate and return a new control_connection_t, initialized as by
  236. * connection_init(). */
  237. control_connection_t *
  238. control_connection_new(int socket_family)
  239. {
  240. control_connection_t *control_conn =
  241. tor_malloc_zero(sizeof(control_connection_t));
  242. connection_init(time(NULL),
  243. TO_CONN(control_conn), CONN_TYPE_CONTROL, socket_family);
  244. log_notice(LD_CONTROL, "New control connection opened.");
  245. return control_conn;
  246. }
  247. /** Allocate, initialize, and return a new connection_t subtype of <b>type</b>
  248. * to make or receive connections of address family <b>socket_family</b>. The
  249. * type should be one of the CONN_TYPE_* constants. */
  250. connection_t *
  251. connection_new(int type, int socket_family)
  252. {
  253. switch (type) {
  254. case CONN_TYPE_OR:
  255. return TO_CONN(or_connection_new(socket_family));
  256. case CONN_TYPE_EXIT:
  257. case CONN_TYPE_AP:
  258. return TO_CONN(edge_connection_new(type, socket_family));
  259. case CONN_TYPE_DIR:
  260. return TO_CONN(dir_connection_new(socket_family));
  261. case CONN_TYPE_CONTROL:
  262. return TO_CONN(control_connection_new(socket_family));
  263. default: {
  264. connection_t *conn = tor_malloc_zero(sizeof(connection_t));
  265. connection_init(time(NULL), conn, type, socket_family);
  266. return conn;
  267. }
  268. }
  269. }
  270. /** Initializes conn. (you must call connection_add() to link it into the main
  271. * array).
  272. *
  273. * Set conn-\>type to <b>type</b>. Set conn-\>s and conn-\>conn_array_index to
  274. * -1 to signify they are not yet assigned.
  275. *
  276. * If conn is not a listener type, allocate buffers for it. If it's
  277. * an AP type, allocate space to store the socks_request.
  278. *
  279. * Assign a pseudorandom next_circ_id between 0 and 2**15.
  280. *
  281. * Initialize conn's timestamps to now.
  282. */
  283. static void
  284. connection_init(time_t now, connection_t *conn, int type, int socket_family)
  285. {
  286. static uint64_t n_connections_allocated = 1;
  287. switch (type) {
  288. case CONN_TYPE_OR:
  289. conn->magic = OR_CONNECTION_MAGIC;
  290. break;
  291. case CONN_TYPE_EXIT:
  292. case CONN_TYPE_AP:
  293. conn->magic = EDGE_CONNECTION_MAGIC;
  294. break;
  295. case CONN_TYPE_DIR:
  296. conn->magic = DIR_CONNECTION_MAGIC;
  297. break;
  298. case CONN_TYPE_CONTROL:
  299. conn->magic = CONTROL_CONNECTION_MAGIC;
  300. break;
  301. default:
  302. conn->magic = BASE_CONNECTION_MAGIC;
  303. break;
  304. }
  305. conn->s = -1; /* give it a default of 'not used' */
  306. conn->conn_array_index = -1; /* also default to 'not used' */
  307. conn->global_identifier = n_connections_allocated++;
  308. conn->type = type;
  309. conn->socket_family = socket_family;
  310. #ifndef USE_BUFFEREVENTS
  311. if (!connection_is_listener(conn)) {
  312. /* listeners never use their buf */
  313. conn->inbuf = buf_new();
  314. conn->outbuf = buf_new();
  315. }
  316. #endif
  317. conn->timestamp_created = now;
  318. conn->timestamp_lastread = now;
  319. conn->timestamp_lastwritten = now;
  320. }
  321. /** Create a link between <b>conn_a</b> and <b>conn_b</b>. */
  322. void
  323. connection_link_connections(connection_t *conn_a, connection_t *conn_b)
  324. {
  325. tor_assert(conn_a->s < 0);
  326. tor_assert(conn_b->s < 0);
  327. conn_a->linked = 1;
  328. conn_b->linked = 1;
  329. conn_a->linked_conn = conn_b;
  330. conn_b->linked_conn = conn_a;
  331. }
  332. /** Deallocate memory used by <b>conn</b>. Deallocate its buffers if
  333. * necessary, close its socket if necessary, and mark the directory as dirty
  334. * if <b>conn</b> is an OR or OP connection.
  335. */
  336. static void
  337. _connection_free(connection_t *conn)
  338. {
  339. void *mem;
  340. size_t memlen;
  341. if (!conn)
  342. return;
  343. switch (conn->type) {
  344. case CONN_TYPE_OR:
  345. tor_assert(conn->magic == OR_CONNECTION_MAGIC);
  346. mem = TO_OR_CONN(conn);
  347. memlen = sizeof(or_connection_t);
  348. break;
  349. case CONN_TYPE_AP:
  350. case CONN_TYPE_EXIT:
  351. tor_assert(conn->magic == EDGE_CONNECTION_MAGIC);
  352. mem = TO_EDGE_CONN(conn);
  353. memlen = sizeof(edge_connection_t);
  354. break;
  355. case CONN_TYPE_DIR:
  356. tor_assert(conn->magic == DIR_CONNECTION_MAGIC);
  357. mem = TO_DIR_CONN(conn);
  358. memlen = sizeof(dir_connection_t);
  359. break;
  360. case CONN_TYPE_CONTROL:
  361. tor_assert(conn->magic == CONTROL_CONNECTION_MAGIC);
  362. mem = TO_CONTROL_CONN(conn);
  363. memlen = sizeof(control_connection_t);
  364. break;
  365. default:
  366. tor_assert(conn->magic == BASE_CONNECTION_MAGIC);
  367. mem = conn;
  368. memlen = sizeof(connection_t);
  369. break;
  370. }
  371. if (conn->linked) {
  372. log_info(LD_GENERAL, "Freeing linked %s connection [%s] with %d "
  373. "bytes on inbuf, %d on outbuf.",
  374. conn_type_to_string(conn->type),
  375. conn_state_to_string(conn->type, conn->state),
  376. (int)connection_get_inbuf_len(conn),
  377. (int)connection_get_outbuf_len(conn));
  378. }
  379. if (!connection_is_listener(conn)) {
  380. buf_free(conn->inbuf);
  381. buf_free(conn->outbuf);
  382. } else {
  383. if (conn->socket_family == AF_UNIX) {
  384. /* For now only control ports can be Unix domain sockets
  385. * and listeners at the same time */
  386. tor_assert(conn->type == CONN_TYPE_CONTROL_LISTENER);
  387. if (unlink(conn->address) < 0 && errno != ENOENT) {
  388. log_warn(LD_NET, "Could not unlink %s: %s", conn->address,
  389. strerror(errno));
  390. }
  391. }
  392. }
  393. tor_free(conn->address);
  394. if (connection_speaks_cells(conn)) {
  395. or_connection_t *or_conn = TO_OR_CONN(conn);
  396. tor_tls_free(or_conn->tls);
  397. or_conn->tls = NULL;
  398. or_handshake_state_free(or_conn->handshake_state);
  399. or_conn->handshake_state = NULL;
  400. smartlist_free(or_conn->active_circuit_pqueue);
  401. tor_free(or_conn->nickname);
  402. }
  403. if (CONN_IS_EDGE(conn)) {
  404. edge_connection_t *edge_conn = TO_EDGE_CONN(conn);
  405. tor_free(edge_conn->chosen_exit_name);
  406. if (edge_conn->socks_request) {
  407. memset(edge_conn->socks_request, 0xcc, sizeof(socks_request_t));
  408. tor_free(edge_conn->socks_request);
  409. }
  410. rend_data_free(edge_conn->rend_data);
  411. }
  412. if (conn->type == CONN_TYPE_CONTROL) {
  413. control_connection_t *control_conn = TO_CONTROL_CONN(conn);
  414. tor_free(control_conn->incoming_cmd);
  415. }
  416. tor_free(conn->read_event); /* Probably already freed by connection_free. */
  417. tor_free(conn->write_event); /* Probably already freed by connection_free. */
  418. IF_HAS_BUFFEREVENT(conn, {
  419. /* This was a workaround to handle bugs in some old versions of libevent
  420. * where callbacks can occur after calling bufferevent_free(). Setting
  421. * the callbacks to NULL prevented this. It shouldn't be necessary any
  422. * more, but let's not tempt fate for now. */
  423. bufferevent_setcb(conn->bufev, NULL, NULL, NULL, NULL);
  424. bufferevent_free(conn->bufev);
  425. conn->bufev = NULL;
  426. });
  427. if (conn->type == CONN_TYPE_DIR) {
  428. dir_connection_t *dir_conn = TO_DIR_CONN(conn);
  429. tor_free(dir_conn->requested_resource);
  430. tor_zlib_free(dir_conn->zlib_state);
  431. if (dir_conn->fingerprint_stack) {
  432. SMARTLIST_FOREACH(dir_conn->fingerprint_stack, char *, cp, tor_free(cp));
  433. smartlist_free(dir_conn->fingerprint_stack);
  434. }
  435. cached_dir_decref(dir_conn->cached_dir);
  436. rend_data_free(dir_conn->rend_data);
  437. }
  438. if (conn->s >= 0) {
  439. log_debug(LD_NET,"closing fd %d.",conn->s);
  440. tor_close_socket(conn->s);
  441. conn->s = -1;
  442. }
  443. if (conn->type == CONN_TYPE_OR &&
  444. !tor_digest_is_zero(TO_OR_CONN(conn)->identity_digest)) {
  445. log_warn(LD_BUG, "called on OR conn with non-zeroed identity_digest");
  446. connection_or_remove_from_identity_map(TO_OR_CONN(conn));
  447. }
  448. #ifdef USE_BUFFEREVENTS
  449. if (conn->type == CONN_TYPE_OR && TO_OR_CONN(conn)->bucket_cfg) {
  450. ev_token_bucket_cfg_free(TO_OR_CONN(conn)->bucket_cfg);
  451. }
  452. #endif
  453. memset(mem, 0xCC, memlen); /* poison memory */
  454. tor_free(mem);
  455. }
  456. /** Make sure <b>conn</b> isn't in any of the global conn lists; then free it.
  457. */
  458. void
  459. connection_free(connection_t *conn)
  460. {
  461. if (!conn)
  462. return;
  463. tor_assert(!connection_is_on_closeable_list(conn));
  464. tor_assert(!connection_in_array(conn));
  465. if (conn->linked_conn) {
  466. log_err(LD_BUG, "Called with conn->linked_conn still set.");
  467. tor_fragile_assert();
  468. conn->linked_conn->linked_conn = NULL;
  469. if (! conn->linked_conn->marked_for_close &&
  470. conn->linked_conn->reading_from_linked_conn)
  471. connection_start_reading(conn->linked_conn);
  472. conn->linked_conn = NULL;
  473. }
  474. if (connection_speaks_cells(conn)) {
  475. if (!tor_digest_is_zero(TO_OR_CONN(conn)->identity_digest)) {
  476. connection_or_remove_from_identity_map(TO_OR_CONN(conn));
  477. }
  478. }
  479. if (conn->type == CONN_TYPE_CONTROL) {
  480. TO_CONTROL_CONN(conn)->event_mask = 0;
  481. control_update_global_event_mask();
  482. }
  483. connection_unregister_events(conn);
  484. _connection_free(conn);
  485. }
  486. /** Call _connection_free() on every connection in our array, and release all
  487. * storage held by connection.c. This is used by cpuworkers and dnsworkers
  488. * when they fork, so they don't keep resources held open (especially
  489. * sockets).
  490. *
  491. * Don't do the checks in connection_free(), because they will
  492. * fail.
  493. */
  494. void
  495. connection_free_all(void)
  496. {
  497. smartlist_t *conns = get_connection_array();
  498. /* We don't want to log any messages to controllers. */
  499. SMARTLIST_FOREACH(conns, connection_t *, conn,
  500. if (conn->type == CONN_TYPE_CONTROL)
  501. TO_CONTROL_CONN(conn)->event_mask = 0);
  502. control_update_global_event_mask();
  503. /* Unlink everything from the identity map. */
  504. connection_or_clear_identity_map();
  505. SMARTLIST_FOREACH(conns, connection_t *, conn, _connection_free(conn));
  506. if (outgoing_addrs) {
  507. SMARTLIST_FOREACH(outgoing_addrs, void*, addr, tor_free(addr));
  508. smartlist_free(outgoing_addrs);
  509. outgoing_addrs = NULL;
  510. }
  511. }
  512. /** Do any cleanup needed:
  513. * - Directory conns that failed to fetch a rendezvous descriptor
  514. * need to inform pending rendezvous streams.
  515. * - OR conns need to call rep_hist_note_*() to record status.
  516. * - AP conns need to send a socks reject if necessary.
  517. * - Exit conns need to call connection_dns_remove() if necessary.
  518. * - AP and Exit conns need to send an end cell if they can.
  519. * - DNS conns need to fail any resolves that are pending on them.
  520. * - OR and edge connections need to be unlinked from circuits.
  521. */
  522. void
  523. connection_about_to_close_connection(connection_t *conn)
  524. {
  525. circuit_t *circ;
  526. dir_connection_t *dir_conn;
  527. or_connection_t *or_conn;
  528. edge_connection_t *edge_conn;
  529. time_t now = time(NULL);
  530. tor_assert(conn->marked_for_close);
  531. if (CONN_IS_EDGE(conn)) {
  532. edge_conn = TO_EDGE_CONN(conn);
  533. if (!edge_conn->edge_has_sent_end) {
  534. log_warn(LD_BUG, "(Harmless.) Edge connection (marked at %s:%d) "
  535. "hasn't sent end yet?",
  536. conn->marked_for_close_file, conn->marked_for_close);
  537. tor_fragile_assert();
  538. }
  539. }
  540. switch (conn->type) {
  541. case CONN_TYPE_DIR:
  542. dir_conn = TO_DIR_CONN(conn);
  543. if (conn->state < DIR_CONN_STATE_CLIENT_FINISHED) {
  544. /* It's a directory connection and connecting or fetching
  545. * failed: forget about this router, and maybe try again. */
  546. connection_dir_request_failed(dir_conn);
  547. }
  548. /* If we were trying to fetch a v2 rend desc and did not succeed,
  549. * retry as needed. (If a fetch is successful, the connection state
  550. * is changed to DIR_PURPOSE_HAS_FETCHED_RENDDESC to mark that
  551. * refetching is unnecessary.) */
  552. if (conn->purpose == DIR_PURPOSE_FETCH_RENDDESC_V2 &&
  553. dir_conn->rend_data &&
  554. strlen(dir_conn->rend_data->onion_address) ==
  555. REND_SERVICE_ID_LEN_BASE32)
  556. rend_client_refetch_v2_renddesc(dir_conn->rend_data);
  557. break;
  558. case CONN_TYPE_OR:
  559. or_conn = TO_OR_CONN(conn);
  560. /* Remember why we're closing this connection. */
  561. if (conn->state != OR_CONN_STATE_OPEN) {
  562. /* Inform any pending (not attached) circs that they should
  563. * give up. */
  564. circuit_n_conn_done(TO_OR_CONN(conn), 0);
  565. /* now mark things down as needed */
  566. if (connection_or_nonopen_was_started_here(or_conn)) {
  567. or_options_t *options = get_options();
  568. rep_hist_note_connect_failed(or_conn->identity_digest, now);
  569. entry_guard_register_connect_status(or_conn->identity_digest,0,
  570. !options->HTTPSProxy, now);
  571. if (conn->state >= OR_CONN_STATE_TLS_HANDSHAKING) {
  572. int reason = tls_error_to_orconn_end_reason(or_conn->tls_error);
  573. control_event_or_conn_status(or_conn, OR_CONN_EVENT_FAILED,
  574. reason);
  575. if (!authdir_mode_tests_reachability(options))
  576. control_event_bootstrap_problem(
  577. orconn_end_reason_to_control_string(reason), reason);
  578. }
  579. }
  580. } else if (conn->hold_open_until_flushed) {
  581. /* We only set hold_open_until_flushed when we're intentionally
  582. * closing a connection. */
  583. rep_hist_note_disconnect(or_conn->identity_digest, now);
  584. control_event_or_conn_status(or_conn, OR_CONN_EVENT_CLOSED,
  585. tls_error_to_orconn_end_reason(or_conn->tls_error));
  586. } else if (!tor_digest_is_zero(or_conn->identity_digest)) {
  587. rep_hist_note_connection_died(or_conn->identity_digest, now);
  588. control_event_or_conn_status(or_conn, OR_CONN_EVENT_CLOSED,
  589. tls_error_to_orconn_end_reason(or_conn->tls_error));
  590. }
  591. /* Now close all the attached circuits on it. */
  592. circuit_unlink_all_from_or_conn(TO_OR_CONN(conn),
  593. END_CIRC_REASON_OR_CONN_CLOSED);
  594. break;
  595. case CONN_TYPE_AP:
  596. edge_conn = TO_EDGE_CONN(conn);
  597. if (edge_conn->socks_request->has_finished == 0) {
  598. /* since conn gets removed right after this function finishes,
  599. * there's no point trying to send back a reply at this point. */
  600. log_warn(LD_BUG,"Closing stream (marked at %s:%d) without sending"
  601. " back a socks reply.",
  602. conn->marked_for_close_file, conn->marked_for_close);
  603. }
  604. if (!edge_conn->end_reason) {
  605. log_warn(LD_BUG,"Closing stream (marked at %s:%d) without having"
  606. " set end_reason.",
  607. conn->marked_for_close_file, conn->marked_for_close);
  608. }
  609. if (edge_conn->dns_server_request) {
  610. log_warn(LD_BUG,"Closing stream (marked at %s:%d) without having"
  611. " replied to DNS request.",
  612. conn->marked_for_close_file, conn->marked_for_close);
  613. dnsserv_reject_request(edge_conn);
  614. }
  615. control_event_stream_bandwidth(edge_conn);
  616. control_event_stream_status(edge_conn, STREAM_EVENT_CLOSED,
  617. edge_conn->end_reason);
  618. circ = circuit_get_by_edge_conn(edge_conn);
  619. if (circ)
  620. circuit_detach_stream(circ, edge_conn);
  621. break;
  622. case CONN_TYPE_EXIT:
  623. edge_conn = TO_EDGE_CONN(conn);
  624. circ = circuit_get_by_edge_conn(edge_conn);
  625. if (circ)
  626. circuit_detach_stream(circ, edge_conn);
  627. if (conn->state == EXIT_CONN_STATE_RESOLVING) {
  628. connection_dns_remove(edge_conn);
  629. }
  630. break;
  631. }
  632. }
  633. /** Return true iff connection_close_immediate() has been called on this
  634. * connection. */
  635. #define CONN_IS_CLOSED(c) \
  636. ((c)->linked ? ((c)->linked_conn_is_closed) : ((c)->s < 0))
  637. /** Close the underlying socket for <b>conn</b>, so we don't try to
  638. * flush it. Must be used in conjunction with (right before)
  639. * connection_mark_for_close().
  640. */
  641. void
  642. connection_close_immediate(connection_t *conn)
  643. {
  644. assert_connection_ok(conn,0);
  645. if (CONN_IS_CLOSED(conn)) {
  646. log_err(LD_BUG,"Attempt to close already-closed connection.");
  647. tor_fragile_assert();
  648. return;
  649. }
  650. if (conn->outbuf_flushlen) {
  651. log_info(LD_NET,"fd %d, type %s, state %s, %d bytes on outbuf.",
  652. conn->s, conn_type_to_string(conn->type),
  653. conn_state_to_string(conn->type, conn->state),
  654. (int)conn->outbuf_flushlen);
  655. }
  656. connection_unregister_events(conn);
  657. if (conn->s >= 0)
  658. tor_close_socket(conn->s);
  659. conn->s = -1;
  660. if (conn->linked)
  661. conn->linked_conn_is_closed = 1;
  662. if (conn->outbuf)
  663. buf_clear(conn->outbuf);
  664. conn->outbuf_flushlen = 0;
  665. }
  666. /** Mark <b>conn</b> to be closed next time we loop through
  667. * conn_close_if_marked() in main.c. */
  668. void
  669. _connection_mark_for_close(connection_t *conn, int line, const char *file)
  670. {
  671. assert_connection_ok(conn,0);
  672. tor_assert(line);
  673. tor_assert(line < 1<<16); /* marked_for_close can only fit a uint16_t. */
  674. tor_assert(file);
  675. if (conn->marked_for_close) {
  676. log(LOG_WARN,LD_BUG,"Duplicate call to connection_mark_for_close at %s:%d"
  677. " (first at %s:%d)", file, line, conn->marked_for_close_file,
  678. conn->marked_for_close);
  679. tor_fragile_assert();
  680. return;
  681. }
  682. conn->marked_for_close = line;
  683. conn->marked_for_close_file = file;
  684. add_connection_to_closeable_list(conn);
  685. /* in case we're going to be held-open-til-flushed, reset
  686. * the number of seconds since last successful write, so
  687. * we get our whole 15 seconds */
  688. conn->timestamp_lastwritten = time(NULL);
  689. }
  690. /** Find each connection that has hold_open_until_flushed set to
  691. * 1 but hasn't written in the past 15 seconds, and set
  692. * hold_open_until_flushed to 0. This means it will get cleaned
  693. * up in the next loop through close_if_marked() in main.c.
  694. */
  695. void
  696. connection_expire_held_open(void)
  697. {
  698. time_t now;
  699. smartlist_t *conns = get_connection_array();
  700. now = time(NULL);
  701. SMARTLIST_FOREACH(conns, connection_t *, conn,
  702. {
  703. /* If we've been holding the connection open, but we haven't written
  704. * for 15 seconds...
  705. */
  706. if (conn->hold_open_until_flushed) {
  707. tor_assert(conn->marked_for_close);
  708. if (now - conn->timestamp_lastwritten >= 15) {
  709. int severity;
  710. if (conn->type == CONN_TYPE_EXIT ||
  711. (conn->type == CONN_TYPE_DIR &&
  712. conn->purpose == DIR_PURPOSE_SERVER))
  713. severity = LOG_INFO;
  714. else
  715. severity = LOG_NOTICE;
  716. log_fn(severity, LD_NET,
  717. "Giving up on marked_for_close conn that's been flushing "
  718. "for 15s (fd %d, type %s, state %s).",
  719. conn->s, conn_type_to_string(conn->type),
  720. conn_state_to_string(conn->type, conn->state));
  721. conn->hold_open_until_flushed = 0;
  722. }
  723. }
  724. });
  725. }
  726. /** Create an AF_INET listenaddr struct.
  727. * <b>listenaddress</b> provides the host and optionally the port information
  728. * for the new structure. If no port is provided in <b>listenaddress</b> then
  729. * <b>listenport</b> is used.
  730. *
  731. * If not NULL <b>readable_address</b> will contain a copy of the host part of
  732. * <b>listenaddress</b>.
  733. *
  734. * The listenaddr struct has to be freed by the caller.
  735. */
  736. static struct sockaddr_in *
  737. create_inet_sockaddr(const char *listenaddress, uint16_t listenport,
  738. char **readable_address, socklen_t *socklen_out) {
  739. struct sockaddr_in *listenaddr = NULL;
  740. uint32_t addr;
  741. uint16_t usePort = 0;
  742. if (parse_addr_port(LOG_WARN,
  743. listenaddress, readable_address, &addr, &usePort)<0) {
  744. log_warn(LD_CONFIG,
  745. "Error parsing/resolving ListenAddress %s", listenaddress);
  746. goto err;
  747. }
  748. if (usePort==0)
  749. usePort = listenport;
  750. listenaddr = tor_malloc_zero(sizeof(struct sockaddr_in));
  751. listenaddr->sin_addr.s_addr = htonl(addr);
  752. listenaddr->sin_family = AF_INET;
  753. listenaddr->sin_port = htons((uint16_t) usePort);
  754. *socklen_out = sizeof(struct sockaddr_in);
  755. return listenaddr;
  756. err:
  757. tor_free(listenaddr);
  758. return NULL;
  759. }
  760. #ifdef HAVE_SYS_UN_H
  761. /** Create an AF_UNIX listenaddr struct.
  762. * <b>listenaddress</b> provides the path to the Unix socket.
  763. *
  764. * Eventually <b>listenaddress</b> will also optionally contain user, group,
  765. * and file permissions for the new socket. But not yet. XXX
  766. * Also, since we do not create the socket here the information doesn't help
  767. * here.
  768. *
  769. * If not NULL <b>readable_address</b> will contain a copy of the path part of
  770. * <b>listenaddress</b>.
  771. *
  772. * The listenaddr struct has to be freed by the caller.
  773. */
  774. static struct sockaddr_un *
  775. create_unix_sockaddr(const char *listenaddress, char **readable_address,
  776. socklen_t *len_out)
  777. {
  778. struct sockaddr_un *sockaddr = NULL;
  779. sockaddr = tor_malloc_zero(sizeof(struct sockaddr_un));
  780. sockaddr->sun_family = AF_UNIX;
  781. strncpy(sockaddr->sun_path, listenaddress, sizeof(sockaddr->sun_path));
  782. if (readable_address)
  783. *readable_address = tor_strdup(listenaddress);
  784. *len_out = sizeof(struct sockaddr_un);
  785. return sockaddr;
  786. }
  787. #else
  788. static struct sockaddr *
  789. create_unix_sockaddr(const char *listenaddress, char **readable_address,
  790. socklen_t *len_out)
  791. {
  792. (void)listenaddress;
  793. (void)readable_address;
  794. log_fn(LOG_ERR, LD_BUG,
  795. "Unix domain sockets not supported, yet we tried to create one.");
  796. *len_out = 0;
  797. tor_assert(0);
  798. };
  799. #endif /* HAVE_SYS_UN_H */
  800. /** Warn that an accept or a connect has failed because we're running up
  801. * against our ulimit. Rate-limit these warnings so that we don't spam
  802. * the log. */
  803. static void
  804. warn_too_many_conns(void)
  805. {
  806. #define WARN_TOO_MANY_CONNS_INTERVAL (6*60*60)
  807. static ratelim_t last_warned = RATELIM_INIT(WARN_TOO_MANY_CONNS_INTERVAL);
  808. char *m;
  809. if ((m = rate_limit_log(&last_warned, approx_time()))) {
  810. int n_conns = get_n_open_sockets();
  811. log_warn(LD_NET,"Failing because we have %d connections already. Please "
  812. "raise your ulimit -n.%s", n_conns, m);
  813. tor_free(m);
  814. control_event_general_status(LOG_WARN, "TOO_MANY_CONNECTIONS CURRENT=%d",
  815. n_conns);
  816. }
  817. }
  818. /** Bind a new non-blocking socket listening to the socket described
  819. * by <b>listensockaddr</b>.
  820. *
  821. * <b>address</b> is only used for logging purposes and to add the information
  822. * to the conn.
  823. */
  824. static connection_t *
  825. connection_create_listener(struct sockaddr *listensockaddr, socklen_t socklen,
  826. int type, char* address)
  827. {
  828. connection_t *conn;
  829. int s; /* the socket we're going to make */
  830. uint16_t usePort = 0;
  831. int start_reading = 0;
  832. if (get_n_open_sockets() >= get_options()->_ConnLimit-1) {
  833. warn_too_many_conns();
  834. return NULL;
  835. }
  836. if (listensockaddr->sa_family == AF_INET) {
  837. int is_tcp = (type != CONN_TYPE_AP_DNS_LISTENER);
  838. #ifndef MS_WINDOWS
  839. int one=1;
  840. #endif
  841. if (is_tcp)
  842. start_reading = 1;
  843. usePort = ntohs( (uint16_t)
  844. ((struct sockaddr_in *)listensockaddr)->sin_port);
  845. log_notice(LD_NET, "Opening %s on %s:%d",
  846. conn_type_to_string(type), address, usePort);
  847. s = tor_open_socket(PF_INET,
  848. is_tcp ? SOCK_STREAM : SOCK_DGRAM,
  849. is_tcp ? IPPROTO_TCP: IPPROTO_UDP);
  850. if (s < 0) {
  851. log_warn(LD_NET,"Socket creation failed.");
  852. goto err;
  853. }
  854. #ifndef MS_WINDOWS
  855. /* REUSEADDR on normal places means you can rebind to the port
  856. * right after somebody else has let it go. But REUSEADDR on win32
  857. * means you can bind to the port _even when somebody else
  858. * already has it bound_. So, don't do that on Win32. */
  859. setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (void*) &one,
  860. (socklen_t)sizeof(one));
  861. #endif
  862. if (bind(s,listensockaddr,socklen) < 0) {
  863. const char *helpfulhint = "";
  864. int e = tor_socket_errno(s);
  865. if (ERRNO_IS_EADDRINUSE(e))
  866. helpfulhint = ". Is Tor already running?";
  867. log_warn(LD_NET, "Could not bind to %s:%u: %s%s", address, usePort,
  868. tor_socket_strerror(e), helpfulhint);
  869. tor_close_socket(s);
  870. goto err;
  871. }
  872. if (is_tcp) {
  873. if (listen(s,SOMAXCONN) < 0) {
  874. log_warn(LD_NET, "Could not listen on %s:%u: %s", address, usePort,
  875. tor_socket_strerror(tor_socket_errno(s)));
  876. tor_close_socket(s);
  877. goto err;
  878. }
  879. }
  880. #ifdef HAVE_SYS_UN_H
  881. } else if (listensockaddr->sa_family == AF_UNIX) {
  882. start_reading = 1;
  883. /* For now only control ports can be Unix domain sockets
  884. * and listeners at the same time */
  885. tor_assert(type == CONN_TYPE_CONTROL_LISTENER);
  886. log_notice(LD_NET, "Opening %s on %s",
  887. conn_type_to_string(type), address);
  888. if (unlink(address) < 0 && errno != ENOENT) {
  889. log_warn(LD_NET, "Could not unlink %s: %s", address,
  890. strerror(errno));
  891. goto err;
  892. }
  893. s = tor_open_socket(AF_UNIX, SOCK_STREAM, 0);
  894. if (s < 0) {
  895. log_warn(LD_NET,"Socket creation failed: %s.", strerror(errno));
  896. goto err;
  897. }
  898. if (bind(s, listensockaddr, (socklen_t)sizeof(struct sockaddr_un)) == -1) {
  899. log_warn(LD_NET,"Bind to %s failed: %s.", address,
  900. tor_socket_strerror(tor_socket_errno(s)));
  901. goto err;
  902. }
  903. if (listen(s,SOMAXCONN) < 0) {
  904. log_warn(LD_NET, "Could not listen on %s: %s", address,
  905. tor_socket_strerror(tor_socket_errno(s)));
  906. tor_close_socket(s);
  907. goto err;
  908. }
  909. #endif /* HAVE_SYS_UN_H */
  910. } else {
  911. log_err(LD_BUG,"Got unexpected address family %d.",
  912. listensockaddr->sa_family);
  913. tor_assert(0);
  914. }
  915. set_socket_nonblocking(s);
  916. conn = connection_new(type, listensockaddr->sa_family);
  917. conn->socket_family = listensockaddr->sa_family;
  918. conn->s = s;
  919. conn->address = tor_strdup(address);
  920. conn->port = usePort;
  921. if (connection_add(conn) < 0) { /* no space, forget it */
  922. log_warn(LD_NET,"connection_add for listener failed. Giving up.");
  923. connection_free(conn);
  924. goto err;
  925. }
  926. log_debug(LD_NET,"%s listening on port %u.",
  927. conn_type_to_string(type), usePort);
  928. conn->state = LISTENER_STATE_READY;
  929. if (start_reading) {
  930. connection_start_reading(conn);
  931. } else {
  932. tor_assert(type == CONN_TYPE_AP_DNS_LISTENER);
  933. dnsserv_configure_listener(conn);
  934. }
  935. return conn;
  936. err:
  937. return NULL;
  938. }
  939. /** Do basic sanity checking on a newly received socket. Return 0
  940. * if it looks ok, else return -1. */
  941. static int
  942. check_sockaddr(struct sockaddr *sa, int len, int level)
  943. {
  944. int ok = 1;
  945. if (sa->sa_family == AF_INET) {
  946. struct sockaddr_in *sin=(struct sockaddr_in*)sa;
  947. if (len != sizeof(struct sockaddr_in)) {
  948. log_fn(level, LD_NET, "Length of address not as expected: %d vs %d",
  949. len,(int)sizeof(struct sockaddr_in));
  950. ok = 0;
  951. }
  952. if (sin->sin_addr.s_addr == 0 || sin->sin_port == 0) {
  953. log_fn(level, LD_NET,
  954. "Address for new connection has address/port equal to zero.");
  955. ok = 0;
  956. }
  957. } else if (sa->sa_family == AF_INET6) {
  958. struct sockaddr_in6 *sin6=(struct sockaddr_in6*)sa;
  959. if (len != sizeof(struct sockaddr_in6)) {
  960. log_fn(level, LD_NET, "Length of address not as expected: %d vs %d",
  961. len,(int)sizeof(struct sockaddr_in6));
  962. ok = 0;
  963. }
  964. if (tor_mem_is_zero((void*)sin6->sin6_addr.s6_addr, 16) ||
  965. sin6->sin6_port == 0) {
  966. log_fn(level, LD_NET,
  967. "Address for new connection has address/port equal to zero.");
  968. ok = 0;
  969. }
  970. } else {
  971. ok = 0;
  972. }
  973. return ok ? 0 : -1;
  974. }
  975. /** Check whether the socket family from an accepted socket <b>got</b> is the
  976. * same as the one that <b>listener</b> is waiting for. If it isn't, log
  977. * a useful message and return -1. Else return 0.
  978. *
  979. * This is annoying, but can apparently happen on some Darwins. */
  980. static int
  981. check_sockaddr_family_match(sa_family_t got, connection_t *listener)
  982. {
  983. if (got != listener->socket_family) {
  984. log_info(LD_BUG, "A listener connection returned a socket with a "
  985. "mismatched family. %s for addr_family %d gave us a socket "
  986. "with address family %d. Dropping.",
  987. conn_type_to_string(listener->type),
  988. (int)listener->socket_family,
  989. (int)got);
  990. return -1;
  991. }
  992. return 0;
  993. }
  994. /** The listener connection <b>conn</b> told poll() it wanted to read.
  995. * Call accept() on conn-\>s, and add the new connection if necessary.
  996. */
  997. static int
  998. connection_handle_listener_read(connection_t *conn, int new_type)
  999. {
  1000. int news; /* the new socket */
  1001. connection_t *newconn;
  1002. /* information about the remote peer when connecting to other routers */
  1003. char addrbuf[256];
  1004. struct sockaddr *remote = (struct sockaddr*)addrbuf;
  1005. /* length of the remote address. Must be whatever accept() needs. */
  1006. socklen_t remotelen = (socklen_t)sizeof(addrbuf);
  1007. or_options_t *options = get_options();
  1008. tor_assert((size_t)remotelen >= sizeof(struct sockaddr_in));
  1009. memset(addrbuf, 0, sizeof(addrbuf));
  1010. news = tor_accept_socket(conn->s,remote,&remotelen);
  1011. if (news < 0) { /* accept() error */
  1012. int e = tor_socket_errno(conn->s);
  1013. if (ERRNO_IS_ACCEPT_EAGAIN(e)) {
  1014. return 0; /* he hung up before we could accept(). that's fine. */
  1015. } else if (ERRNO_IS_ACCEPT_RESOURCE_LIMIT(e)) {
  1016. warn_too_many_conns();
  1017. return 0;
  1018. }
  1019. /* else there was a real error. */
  1020. log_warn(LD_NET,"accept() failed: %s. Closing listener.",
  1021. tor_socket_strerror(e));
  1022. connection_mark_for_close(conn);
  1023. return -1;
  1024. }
  1025. log_debug(LD_NET,
  1026. "Connection accepted on socket %d (child of fd %d).",
  1027. news,conn->s);
  1028. set_socket_nonblocking(news);
  1029. if (options->ConstrainedSockets)
  1030. set_constrained_socket_buffers(news, (int)options->ConstrainedSockSize);
  1031. if (check_sockaddr_family_match(remote->sa_family, conn) < 0) {
  1032. tor_close_socket(news);
  1033. return 0;
  1034. }
  1035. if (conn->socket_family == AF_INET || conn->socket_family == AF_INET6) {
  1036. tor_addr_t addr;
  1037. uint16_t port;
  1038. if (check_sockaddr(remote, remotelen, LOG_INFO)<0) {
  1039. log_info(LD_NET,
  1040. "accept() returned a strange address; trying getsockname().");
  1041. remotelen=sizeof(addrbuf);
  1042. memset(addrbuf, 0, sizeof(addrbuf));
  1043. if (getsockname(news, remote, &remotelen)<0) {
  1044. int e = tor_socket_errno(news);
  1045. log_warn(LD_NET, "getsockname() for new connection failed: %s",
  1046. tor_socket_strerror(e));
  1047. } else {
  1048. if (check_sockaddr((struct sockaddr*)addrbuf, remotelen,
  1049. LOG_WARN) < 0) {
  1050. log_warn(LD_NET,"Something's wrong with this conn. Closing it.");
  1051. tor_close_socket(news);
  1052. return 0;
  1053. }
  1054. }
  1055. }
  1056. if (check_sockaddr_family_match(remote->sa_family, conn) < 0) {
  1057. tor_close_socket(news);
  1058. return 0;
  1059. }
  1060. tor_addr_from_sockaddr(&addr, remote, &port);
  1061. /* process entrance policies here, before we even create the connection */
  1062. if (new_type == CONN_TYPE_AP) {
  1063. /* check sockspolicy to see if we should accept it */
  1064. if (socks_policy_permits_address(&addr) == 0) {
  1065. log_notice(LD_APP,
  1066. "Denying socks connection from untrusted address %s.",
  1067. fmt_addr(&addr));
  1068. tor_close_socket(news);
  1069. return 0;
  1070. }
  1071. }
  1072. if (new_type == CONN_TYPE_DIR) {
  1073. /* check dirpolicy to see if we should accept it */
  1074. if (dir_policy_permits_address(&addr) == 0) {
  1075. log_notice(LD_DIRSERV,"Denying dir connection from address %s.",
  1076. fmt_addr(&addr));
  1077. tor_close_socket(news);
  1078. return 0;
  1079. }
  1080. }
  1081. newconn = connection_new(new_type, conn->socket_family);
  1082. newconn->s = news;
  1083. /* remember the remote address */
  1084. tor_addr_copy(&newconn->addr, &addr);
  1085. newconn->port = port;
  1086. newconn->address = tor_dup_addr(&addr);
  1087. } else if (conn->socket_family == AF_UNIX) {
  1088. /* For now only control ports can be Unix domain sockets
  1089. * and listeners at the same time */
  1090. tor_assert(conn->type == CONN_TYPE_CONTROL_LISTENER);
  1091. newconn = connection_new(new_type, conn->socket_family);
  1092. newconn->s = news;
  1093. /* remember the remote address -- do we have anything sane to put here? */
  1094. tor_addr_make_unspec(&newconn->addr);
  1095. newconn->port = 1;
  1096. newconn->address = tor_strdup(conn->address);
  1097. } else {
  1098. tor_assert(0);
  1099. };
  1100. if (connection_add(newconn) < 0) { /* no space, forget it */
  1101. connection_free(newconn);
  1102. return 0; /* no need to tear down the parent */
  1103. }
  1104. if (connection_init_accepted_conn(newconn, conn->type) < 0) {
  1105. connection_mark_for_close(newconn);
  1106. return 0;
  1107. }
  1108. return 0;
  1109. }
  1110. /** Initialize states for newly accepted connection <b>conn</b>.
  1111. * If conn is an OR, start the TLS handshake.
  1112. * If conn is a transparent AP, get its original destination
  1113. * and place it in circuit_wait.
  1114. */
  1115. static int
  1116. connection_init_accepted_conn(connection_t *conn, uint8_t listener_type)
  1117. {
  1118. connection_start_reading(conn);
  1119. switch (conn->type) {
  1120. case CONN_TYPE_OR:
  1121. control_event_or_conn_status(TO_OR_CONN(conn), OR_CONN_EVENT_NEW, 0);
  1122. return connection_tls_start_handshake(TO_OR_CONN(conn), 1);
  1123. case CONN_TYPE_AP:
  1124. switch (listener_type) {
  1125. case CONN_TYPE_AP_LISTENER:
  1126. conn->state = AP_CONN_STATE_SOCKS_WAIT;
  1127. break;
  1128. case CONN_TYPE_AP_TRANS_LISTENER:
  1129. conn->state = AP_CONN_STATE_CIRCUIT_WAIT;
  1130. return connection_ap_process_transparent(TO_EDGE_CONN(conn));
  1131. case CONN_TYPE_AP_NATD_LISTENER:
  1132. conn->state = AP_CONN_STATE_NATD_WAIT;
  1133. break;
  1134. }
  1135. break;
  1136. case CONN_TYPE_DIR:
  1137. conn->purpose = DIR_PURPOSE_SERVER;
  1138. conn->state = DIR_CONN_STATE_SERVER_COMMAND_WAIT;
  1139. break;
  1140. case CONN_TYPE_CONTROL:
  1141. conn->state = CONTROL_CONN_STATE_NEEDAUTH;
  1142. break;
  1143. }
  1144. return 0;
  1145. }
  1146. /** Take conn, make a nonblocking socket; try to connect to
  1147. * addr:port (they arrive in *host order*). If fail, return -1 and if
  1148. * applicable put your best guess about errno into *<b>socket_error</b>.
  1149. * Else assign s to conn-\>s: if connected return 1, if EAGAIN return 0.
  1150. *
  1151. * address is used to make the logs useful.
  1152. *
  1153. * On success, add conn to the list of polled connections.
  1154. */
  1155. int
  1156. connection_connect(connection_t *conn, const char *address,
  1157. const tor_addr_t *addr, uint16_t port, int *socket_error)
  1158. {
  1159. int s, inprogress = 0;
  1160. char addrbuf[256];
  1161. struct sockaddr *dest_addr = (struct sockaddr*) addrbuf;
  1162. int dest_addr_len;
  1163. or_options_t *options = get_options();
  1164. int protocol_family;
  1165. if (get_n_open_sockets() >= get_options()->_ConnLimit-1) {
  1166. warn_too_many_conns();
  1167. return -1;
  1168. }
  1169. if (tor_addr_family(addr) == AF_INET6)
  1170. protocol_family = PF_INET6;
  1171. else
  1172. protocol_family = PF_INET;
  1173. s = tor_open_socket(protocol_family,SOCK_STREAM,IPPROTO_TCP);
  1174. if (s < 0) {
  1175. *socket_error = tor_socket_errno(-1);
  1176. log_warn(LD_NET,"Error creating network socket: %s",
  1177. tor_socket_strerror(*socket_error));
  1178. return -1;
  1179. }
  1180. if (options->OutboundBindAddress && !tor_addr_is_loopback(addr)) {
  1181. struct sockaddr_in ext_addr;
  1182. memset(&ext_addr, 0, sizeof(ext_addr));
  1183. ext_addr.sin_family = AF_INET;
  1184. ext_addr.sin_port = 0;
  1185. if (!tor_inet_aton(options->OutboundBindAddress, &ext_addr.sin_addr)) {
  1186. log_warn(LD_CONFIG,"Outbound bind address '%s' didn't parse. Ignoring.",
  1187. options->OutboundBindAddress);
  1188. } else {
  1189. if (bind(s, (struct sockaddr*)&ext_addr,
  1190. (socklen_t)sizeof(ext_addr)) < 0) {
  1191. *socket_error = tor_socket_errno(s);
  1192. log_warn(LD_NET,"Error binding network socket: %s",
  1193. tor_socket_strerror(*socket_error));
  1194. tor_close_socket(s);
  1195. return -1;
  1196. }
  1197. }
  1198. }
  1199. set_socket_nonblocking(s);
  1200. if (options->ConstrainedSockets)
  1201. set_constrained_socket_buffers(s, (int)options->ConstrainedSockSize);
  1202. memset(addrbuf,0,sizeof(addrbuf));
  1203. dest_addr = (struct sockaddr*) addrbuf;
  1204. dest_addr_len = tor_addr_to_sockaddr(addr, port, dest_addr, sizeof(addrbuf));
  1205. tor_assert(dest_addr_len > 0);
  1206. log_debug(LD_NET, "Connecting to %s:%u.",
  1207. escaped_safe_str_client(address), port);
  1208. if (connect(s, dest_addr, (socklen_t)dest_addr_len) < 0) {
  1209. int e = tor_socket_errno(s);
  1210. if (!ERRNO_IS_CONN_EINPROGRESS(e)) {
  1211. /* yuck. kill it. */
  1212. *socket_error = e;
  1213. log_info(LD_NET,
  1214. "connect() to %s:%u failed: %s",
  1215. escaped_safe_str_client(address),
  1216. port, tor_socket_strerror(e));
  1217. tor_close_socket(s);
  1218. return -1;
  1219. } else {
  1220. inprogress = 1;
  1221. }
  1222. }
  1223. if (!server_mode(options))
  1224. client_check_address_changed(s);
  1225. /* it succeeded. we're connected. */
  1226. log_fn(inprogress?LOG_DEBUG:LOG_INFO, LD_NET,
  1227. "Connection to %s:%u %s (sock %d).",
  1228. escaped_safe_str_client(address),
  1229. port, inprogress?"in progress":"established", s);
  1230. conn->s = s;
  1231. if (connection_add_connecting(conn) < 0) /* no space, forget it */
  1232. return -1;
  1233. return inprogress ? 0 : 1;
  1234. }
  1235. /** Convert state number to string representation for logging purposes.
  1236. */
  1237. static const char *
  1238. connection_proxy_state_to_string(int state)
  1239. {
  1240. static const char *unknown = "???";
  1241. static const char *states[] = {
  1242. "PROXY_NONE",
  1243. "PROXY_HTTPS_WANT_CONNECT_OK",
  1244. "PROXY_SOCKS4_WANT_CONNECT_OK",
  1245. "PROXY_SOCKS5_WANT_AUTH_METHOD_NONE",
  1246. "PROXY_SOCKS5_WANT_AUTH_METHOD_RFC1929",
  1247. "PROXY_SOCKS5_WANT_AUTH_RFC1929_OK",
  1248. "PROXY_SOCKS5_WANT_CONNECT_OK",
  1249. "PROXY_CONNECTED",
  1250. };
  1251. if (state < PROXY_NONE || state > PROXY_CONNECTED)
  1252. return unknown;
  1253. return states[state];
  1254. }
  1255. /** Write a proxy request of <b>type</b> (socks4, socks5, https) to conn
  1256. * for conn->addr:conn->port, authenticating with the auth details given
  1257. * in the configuration (if available). SOCKS 5 and HTTP CONNECT proxies
  1258. * support authentication.
  1259. *
  1260. * Returns -1 if conn->addr is incompatible with the proxy protocol, and
  1261. * 0 otherwise.
  1262. *
  1263. * Use connection_read_proxy_handshake() to complete the handshake.
  1264. */
  1265. int
  1266. connection_proxy_connect(connection_t *conn, int type)
  1267. {
  1268. or_options_t *options;
  1269. tor_assert(conn);
  1270. options = get_options();
  1271. switch (type) {
  1272. case PROXY_CONNECT: {
  1273. char buf[1024];
  1274. char *base64_authenticator=NULL;
  1275. const char *authenticator = options->HTTPSProxyAuthenticator;
  1276. /* Send HTTP CONNECT and authentication (if available) in
  1277. * one request */
  1278. if (authenticator) {
  1279. base64_authenticator = alloc_http_authenticator(authenticator);
  1280. if (!base64_authenticator)
  1281. log_warn(LD_OR, "Encoding https authenticator failed");
  1282. }
  1283. if (base64_authenticator) {
  1284. tor_snprintf(buf, sizeof(buf), "CONNECT %s:%d HTTP/1.1\r\n"
  1285. "Proxy-Authorization: Basic %s\r\n\r\n",
  1286. fmt_addr(&conn->addr),
  1287. conn->port, base64_authenticator);
  1288. tor_free(base64_authenticator);
  1289. } else {
  1290. tor_snprintf(buf, sizeof(buf), "CONNECT %s:%d HTTP/1.0\r\n\r\n",
  1291. fmt_addr(&conn->addr), conn->port);
  1292. }
  1293. connection_write_to_buf(buf, strlen(buf), conn);
  1294. conn->proxy_state = PROXY_HTTPS_WANT_CONNECT_OK;
  1295. break;
  1296. }
  1297. case PROXY_SOCKS4: {
  1298. unsigned char buf[9];
  1299. uint16_t portn;
  1300. uint32_t ip4addr;
  1301. /* Send a SOCKS4 connect request with empty user id */
  1302. if (tor_addr_family(&conn->addr) != AF_INET) {
  1303. log_warn(LD_NET, "SOCKS4 client is incompatible with IPv6");
  1304. return -1;
  1305. }
  1306. ip4addr = tor_addr_to_ipv4n(&conn->addr);
  1307. portn = htons(conn->port);
  1308. buf[0] = 4; /* version */
  1309. buf[1] = SOCKS_COMMAND_CONNECT; /* command */
  1310. memcpy(buf + 2, &portn, 2); /* port */
  1311. memcpy(buf + 4, &ip4addr, 4); /* addr */
  1312. buf[8] = 0; /* userid (empty) */
  1313. connection_write_to_buf((char *)buf, sizeof(buf), conn);
  1314. conn->proxy_state = PROXY_SOCKS4_WANT_CONNECT_OK;
  1315. break;
  1316. }
  1317. case PROXY_SOCKS5: {
  1318. unsigned char buf[4]; /* fields: vers, num methods, method list */
  1319. /* Send a SOCKS5 greeting (connect request must wait) */
  1320. buf[0] = 5; /* version */
  1321. /* number of auth methods */
  1322. if (options->Socks5ProxyUsername) {
  1323. buf[1] = 2;
  1324. buf[2] = 0x00; /* no authentication */
  1325. buf[3] = 0x02; /* rfc1929 Username/Passwd auth */
  1326. conn->proxy_state = PROXY_SOCKS5_WANT_AUTH_METHOD_RFC1929;
  1327. } else {
  1328. buf[1] = 1;
  1329. buf[2] = 0x00; /* no authentication */
  1330. conn->proxy_state = PROXY_SOCKS5_WANT_AUTH_METHOD_NONE;
  1331. }
  1332. connection_write_to_buf((char *)buf, 2 + buf[1], conn);
  1333. break;
  1334. }
  1335. default:
  1336. log_err(LD_BUG, "Invalid proxy protocol, %d", type);
  1337. tor_fragile_assert();
  1338. return -1;
  1339. }
  1340. log_debug(LD_NET, "set state %s",
  1341. connection_proxy_state_to_string(conn->proxy_state));
  1342. return 0;
  1343. }
  1344. /** Read conn's inbuf. If the http response from the proxy is all
  1345. * here, make sure it's good news, then return 1. If it's bad news,
  1346. * return -1. Else return 0 and hope for better luck next time.
  1347. */
  1348. static int
  1349. connection_read_https_proxy_response(connection_t *conn)
  1350. {
  1351. char *headers;
  1352. char *reason=NULL;
  1353. int status_code;
  1354. time_t date_header;
  1355. switch (fetch_from_buf_http(conn->inbuf,
  1356. &headers, MAX_HEADERS_SIZE,
  1357. NULL, NULL, 10000, 0)) {
  1358. case -1: /* overflow */
  1359. log_warn(LD_PROTOCOL,
  1360. "Your https proxy sent back an oversized response. Closing.");
  1361. return -1;
  1362. case 0:
  1363. log_info(LD_NET,"https proxy response not all here yet. Waiting.");
  1364. return 0;
  1365. /* case 1, fall through */
  1366. }
  1367. if (parse_http_response(headers, &status_code, &date_header,
  1368. NULL, &reason) < 0) {
  1369. log_warn(LD_NET,
  1370. "Unparseable headers from proxy (connecting to '%s'). Closing.",
  1371. conn->address);
  1372. tor_free(headers);
  1373. return -1;
  1374. }
  1375. if (!reason) reason = tor_strdup("[no reason given]");
  1376. if (status_code == 200) {
  1377. log_info(LD_NET,
  1378. "HTTPS connect to '%s' successful! (200 %s) Starting TLS.",
  1379. conn->address, escaped(reason));
  1380. tor_free(reason);
  1381. return 1;
  1382. }
  1383. /* else, bad news on the status code */
  1384. log_warn(LD_NET,
  1385. "The https proxy sent back an unexpected status code %d (%s). "
  1386. "Closing.",
  1387. status_code, escaped(reason));
  1388. tor_free(reason);
  1389. return -1;
  1390. }
  1391. /** Send SOCKS5 CONNECT command to <b>conn</b>, copying <b>conn->addr</b>
  1392. * and <b>conn->port</b> into the request.
  1393. */
  1394. static void
  1395. connection_send_socks5_connect(connection_t *conn)
  1396. {
  1397. unsigned char buf[1024];
  1398. size_t reqsize = 6;
  1399. uint16_t port = htons(conn->port);
  1400. buf[0] = 5; /* version */
  1401. buf[1] = SOCKS_COMMAND_CONNECT; /* command */
  1402. buf[2] = 0; /* reserved */
  1403. if (tor_addr_family(&conn->addr) == AF_INET) {
  1404. uint32_t addr = tor_addr_to_ipv4n(&conn->addr);
  1405. buf[3] = 1;
  1406. reqsize += 4;
  1407. memcpy(buf + 4, &addr, 4);
  1408. memcpy(buf + 8, &port, 2);
  1409. } else { /* AF_INET6 */
  1410. buf[3] = 4;
  1411. reqsize += 16;
  1412. memcpy(buf + 4, tor_addr_to_in6(&conn->addr), 16);
  1413. memcpy(buf + 20, &port, 2);
  1414. }
  1415. connection_write_to_buf((char *)buf, reqsize, conn);
  1416. conn->proxy_state = PROXY_SOCKS5_WANT_CONNECT_OK;
  1417. }
  1418. /** DOCDOC */
  1419. static int
  1420. connection_fetch_from_buf_socks_client(connection_t *conn,
  1421. int state, char **reason)
  1422. {
  1423. IF_HAS_BUFFEREVENT(conn, {
  1424. struct evbuffer *input = bufferevent_get_input(conn->bufev);
  1425. return fetch_from_evbuffer_socks_client(input, state, reason);
  1426. }) ELSE_IF_NO_BUFFEREVENT {
  1427. return fetch_from_buf_socks_client(conn->inbuf, state, reason);
  1428. }
  1429. }
  1430. /** Call this from connection_*_process_inbuf() to advance the proxy
  1431. * handshake.
  1432. *
  1433. * No matter what proxy protocol is used, if this function returns 1, the
  1434. * handshake is complete, and the data remaining on inbuf may contain the
  1435. * start of the communication with the requested server.
  1436. *
  1437. * Returns 0 if the current buffer contains an incomplete response, and -1
  1438. * on error.
  1439. */
  1440. int
  1441. connection_read_proxy_handshake(connection_t *conn)
  1442. {
  1443. int ret = 0;
  1444. char *reason = NULL;
  1445. log_debug(LD_NET, "enter state %s",
  1446. connection_proxy_state_to_string(conn->proxy_state));
  1447. switch (conn->proxy_state) {
  1448. case PROXY_HTTPS_WANT_CONNECT_OK:
  1449. ret = connection_read_https_proxy_response(conn);
  1450. if (ret == 1)
  1451. conn->proxy_state = PROXY_CONNECTED;
  1452. break;
  1453. case PROXY_SOCKS4_WANT_CONNECT_OK:
  1454. ret = connection_fetch_from_buf_socks_client(conn,
  1455. conn->proxy_state,
  1456. &reason);
  1457. if (ret == 1)
  1458. conn->proxy_state = PROXY_CONNECTED;
  1459. break;
  1460. case PROXY_SOCKS5_WANT_AUTH_METHOD_NONE:
  1461. ret = connection_fetch_from_buf_socks_client(conn,
  1462. conn->proxy_state,
  1463. &reason);
  1464. /* no auth needed, do connect */
  1465. if (ret == 1) {
  1466. connection_send_socks5_connect(conn);
  1467. ret = 0;
  1468. }
  1469. break;
  1470. case PROXY_SOCKS5_WANT_AUTH_METHOD_RFC1929:
  1471. ret = connection_fetch_from_buf_socks_client(conn,
  1472. conn->proxy_state,
  1473. &reason);
  1474. /* send auth if needed, otherwise do connect */
  1475. if (ret == 1) {
  1476. connection_send_socks5_connect(conn);
  1477. ret = 0;
  1478. } else if (ret == 2) {
  1479. unsigned char buf[1024];
  1480. size_t reqsize, usize, psize;
  1481. const char *user, *pass;
  1482. user = get_options()->Socks5ProxyUsername;
  1483. pass = get_options()->Socks5ProxyPassword;
  1484. tor_assert(user && pass);
  1485. /* XXX len of user and pass must be <= 255 !!! */
  1486. usize = strlen(user);
  1487. psize = strlen(pass);
  1488. tor_assert(usize <= 255 && psize <= 255);
  1489. reqsize = 3 + usize + psize;
  1490. buf[0] = 1; /* negotiation version */
  1491. buf[1] = usize;
  1492. memcpy(buf + 2, user, usize);
  1493. buf[2 + usize] = psize;
  1494. memcpy(buf + 3 + usize, pass, psize);
  1495. connection_write_to_buf((char *)buf, reqsize, conn);
  1496. conn->proxy_state = PROXY_SOCKS5_WANT_AUTH_RFC1929_OK;
  1497. ret = 0;
  1498. }
  1499. break;
  1500. case PROXY_SOCKS5_WANT_AUTH_RFC1929_OK:
  1501. ret = connection_fetch_from_buf_socks_client(conn,
  1502. conn->proxy_state,
  1503. &reason);
  1504. /* send the connect request */
  1505. if (ret == 1) {
  1506. connection_send_socks5_connect(conn);
  1507. ret = 0;
  1508. }
  1509. break;
  1510. case PROXY_SOCKS5_WANT_CONNECT_OK:
  1511. ret = connection_fetch_from_buf_socks_client(conn,
  1512. conn->proxy_state,
  1513. &reason);
  1514. if (ret == 1)
  1515. conn->proxy_state = PROXY_CONNECTED;
  1516. break;
  1517. default:
  1518. log_err(LD_BUG, "Invalid proxy_state for reading, %d",
  1519. conn->proxy_state);
  1520. tor_fragile_assert();
  1521. ret = -1;
  1522. break;
  1523. }
  1524. log_debug(LD_NET, "leaving state %s",
  1525. connection_proxy_state_to_string(conn->proxy_state));
  1526. if (ret < 0) {
  1527. if (reason) {
  1528. log_warn(LD_NET, "Proxy Client: unable to connect to %s:%d (%s)",
  1529. conn->address, conn->port, escaped(reason));
  1530. tor_free(reason);
  1531. } else {
  1532. log_warn(LD_NET, "Proxy Client: unable to connect to %s:%d",
  1533. conn->address, conn->port);
  1534. }
  1535. } else if (ret == 1) {
  1536. log_info(LD_NET, "Proxy Client: connection to %s:%d successful",
  1537. conn->address, conn->port);
  1538. }
  1539. return ret;
  1540. }
  1541. /**
  1542. * Launch any configured listener connections of type <b>type</b>. (A
  1543. * listener is configured if <b>port_option</b> is non-zero. If any
  1544. * ListenAddress configuration options are given in <b>cfg</b>, create a
  1545. * connection binding to each one. Otherwise, create a single
  1546. * connection binding to the address <b>default_addr</b>.)
  1547. *
  1548. * Only launch the listeners of this type that are not already open, and
  1549. * only close listeners that are no longer wanted. Existing listeners
  1550. * that are still configured are not touched.
  1551. *
  1552. * If <b>disable_all_conns</b> is set, then never open new conns, and
  1553. * close the existing ones.
  1554. *
  1555. * Add all old conns that should be closed to <b>replaced_conns</b>.
  1556. * Add all new connections to <b>new_conns</b>.
  1557. */
  1558. static int
  1559. retry_listeners(int type, config_line_t *cfg,
  1560. int port_option, const char *default_addr,
  1561. smartlist_t *replaced_conns,
  1562. smartlist_t *new_conns,
  1563. int disable_all_conns,
  1564. int socket_family)
  1565. {
  1566. smartlist_t *launch = smartlist_create(), *conns;
  1567. int free_launch_elts = 1;
  1568. int r;
  1569. config_line_t *c;
  1570. connection_t *conn;
  1571. config_line_t *line;
  1572. tor_assert(socket_family == AF_INET || socket_family == AF_UNIX);
  1573. if (cfg && port_option) {
  1574. for (c = cfg; c; c = c->next) {
  1575. smartlist_add(launch, c);
  1576. }
  1577. free_launch_elts = 0;
  1578. } else if (port_option) {
  1579. line = tor_malloc_zero(sizeof(config_line_t));
  1580. line->key = tor_strdup("");
  1581. line->value = tor_strdup(default_addr);
  1582. smartlist_add(launch, line);
  1583. }
  1584. /*
  1585. SMARTLIST_FOREACH(launch, config_line_t *, l,
  1586. log_fn(LOG_NOTICE, "#%s#%s", l->key, l->value));
  1587. */
  1588. conns = get_connection_array();
  1589. SMARTLIST_FOREACH(conns, connection_t *, conn,
  1590. {
  1591. if (conn->type != type ||
  1592. conn->socket_family != socket_family ||
  1593. conn->marked_for_close)
  1594. continue;
  1595. /* Okay, so this is a listener. Is it configured? */
  1596. line = NULL;
  1597. SMARTLIST_FOREACH(launch, config_line_t *, wanted,
  1598. {
  1599. char *address=NULL;
  1600. uint16_t port;
  1601. switch (socket_family) {
  1602. case AF_INET:
  1603. if (!parse_addr_port(LOG_WARN,
  1604. wanted->value, &address, NULL, &port)) {
  1605. int addr_matches = !strcasecmp(address, conn->address);
  1606. tor_free(address);
  1607. if (! port)
  1608. port = port_option;
  1609. if (port == conn->port && addr_matches) {
  1610. line = wanted;
  1611. break;
  1612. }
  1613. }
  1614. break;
  1615. case AF_UNIX:
  1616. if (!strcasecmp(wanted->value, conn->address)) {
  1617. line = wanted;
  1618. break;
  1619. }
  1620. break;
  1621. default:
  1622. tor_assert(0);
  1623. }
  1624. });
  1625. if (!line || disable_all_conns) {
  1626. /* This one isn't configured. Close it. */
  1627. log_notice(LD_NET, "Closing no-longer-configured %s on %s:%d",
  1628. conn_type_to_string(type), conn->address, conn->port);
  1629. if (replaced_conns) {
  1630. smartlist_add(replaced_conns, conn);
  1631. } else {
  1632. connection_close_immediate(conn);
  1633. connection_mark_for_close(conn);
  1634. }
  1635. } else {
  1636. /* It's configured; we don't need to launch it. */
  1637. // log_debug(LD_NET, "Already have %s on %s:%d",
  1638. // conn_type_to_string(type), conn->address, conn->port);
  1639. smartlist_remove(launch, line);
  1640. if (free_launch_elts)
  1641. config_free_lines(line);
  1642. }
  1643. });
  1644. /* Now open all the listeners that are configured but not opened. */
  1645. r = 0;
  1646. if (!disable_all_conns) {
  1647. SMARTLIST_FOREACH_BEGIN(launch, config_line_t *, cfg_line) {
  1648. char *address = NULL;
  1649. struct sockaddr *listensockaddr;
  1650. socklen_t listensocklen = 0;
  1651. switch (socket_family) {
  1652. case AF_INET:
  1653. listensockaddr = (struct sockaddr *)
  1654. create_inet_sockaddr(cfg_line->value,
  1655. (uint16_t) port_option,
  1656. &address, &listensocklen);
  1657. break;
  1658. case AF_UNIX:
  1659. listensockaddr = (struct sockaddr *)
  1660. create_unix_sockaddr(cfg_line->value,
  1661. &address, &listensocklen);
  1662. break;
  1663. default:
  1664. tor_assert(0);
  1665. }
  1666. if (listensockaddr) {
  1667. conn = connection_create_listener(listensockaddr, listensocklen,
  1668. type, address);
  1669. tor_free(listensockaddr);
  1670. tor_free(address);
  1671. } else
  1672. conn = NULL;
  1673. if (!conn) {
  1674. r = -1;
  1675. } else {
  1676. if (new_conns)
  1677. smartlist_add(new_conns, conn);
  1678. }
  1679. } SMARTLIST_FOREACH_END(cfg_line);
  1680. }
  1681. if (free_launch_elts) {
  1682. SMARTLIST_FOREACH(launch, config_line_t *, cfg_line,
  1683. config_free_lines(cfg_line));
  1684. }
  1685. smartlist_free(launch);
  1686. return r;
  1687. }
  1688. /** Launch listeners for each port you should have open. Only launch
  1689. * listeners who are not already open, and only close listeners we no longer
  1690. * want.
  1691. *
  1692. * Add all old conns that should be closed to <b>replaced_conns</b>.
  1693. * Add all new connections to <b>new_conns</b>.
  1694. */
  1695. int
  1696. retry_all_listeners(smartlist_t *replaced_conns,
  1697. smartlist_t *new_conns)
  1698. {
  1699. or_options_t *options = get_options();
  1700. if (retry_listeners(CONN_TYPE_OR_LISTENER, options->ORListenAddress,
  1701. options->ORPort, "0.0.0.0",
  1702. replaced_conns, new_conns, options->ClientOnly,
  1703. AF_INET)<0)
  1704. return -1;
  1705. if (retry_listeners(CONN_TYPE_DIR_LISTENER, options->DirListenAddress,
  1706. options->DirPort, "0.0.0.0",
  1707. replaced_conns, new_conns, options->ClientOnly,
  1708. AF_INET)<0)
  1709. return -1;
  1710. if (retry_listeners(CONN_TYPE_AP_LISTENER, options->SocksListenAddress,
  1711. options->SocksPort, "127.0.0.1",
  1712. replaced_conns, new_conns, 0,
  1713. AF_INET)<0)
  1714. return -1;
  1715. if (retry_listeners(CONN_TYPE_AP_TRANS_LISTENER, options->TransListenAddress,
  1716. options->TransPort, "127.0.0.1",
  1717. replaced_conns, new_conns, 0,
  1718. AF_INET)<0)
  1719. return -1;
  1720. if (retry_listeners(CONN_TYPE_AP_NATD_LISTENER, options->NATDListenAddress,
  1721. options->NATDPort, "127.0.0.1",
  1722. replaced_conns, new_conns, 0,
  1723. AF_INET)<0)
  1724. return -1;
  1725. if (retry_listeners(CONN_TYPE_AP_DNS_LISTENER, options->DNSListenAddress,
  1726. options->DNSPort, "127.0.0.1",
  1727. replaced_conns, new_conns, 0,
  1728. AF_INET)<0)
  1729. return -1;
  1730. if (retry_listeners(CONN_TYPE_CONTROL_LISTENER,
  1731. options->ControlListenAddress,
  1732. options->ControlPort, "127.0.0.1",
  1733. replaced_conns, new_conns, 0,
  1734. AF_INET)<0)
  1735. return -1;
  1736. if (retry_listeners(CONN_TYPE_CONTROL_LISTENER,
  1737. options->ControlSocket,
  1738. options->ControlSocket ? 1 : 0, NULL,
  1739. replaced_conns, new_conns, 0,
  1740. AF_UNIX)<0)
  1741. return -1;
  1742. return 0;
  1743. }
  1744. /** Return 1 if we should apply rate limiting to <b>conn</b>,
  1745. * and 0 otherwise. Right now this just checks if it's an internal
  1746. * IP address or an internal connection. */
  1747. static int
  1748. connection_is_rate_limited(connection_t *conn)
  1749. {
  1750. if (conn->linked || /* internal connection */
  1751. tor_addr_family(&conn->addr) == AF_UNSPEC || /* no address */
  1752. tor_addr_is_internal(&conn->addr, 0)) /* internal address */
  1753. return 0;
  1754. else
  1755. return 1;
  1756. }
  1757. #ifdef USE_BUFFEREVENTS
  1758. static struct bufferevent_rate_limit_group *global_rate_limit = NULL;
  1759. #else
  1760. extern int global_read_bucket, global_write_bucket;
  1761. extern int global_relayed_read_bucket, global_relayed_write_bucket;
  1762. /** Did either global write bucket run dry last second? If so,
  1763. * we are likely to run dry again this second, so be stingy with the
  1764. * tokens we just put in. */
  1765. static int write_buckets_empty_last_second = 0;
  1766. #endif
  1767. /** How many seconds of no active local circuits will make the
  1768. * connection revert to the "relayed" bandwidth class? */
  1769. #define CLIENT_IDLE_TIME_FOR_PRIORITY 30
  1770. #ifndef USE_BUFFEREVENTS
  1771. /** Return 1 if <b>conn</b> should use tokens from the "relayed"
  1772. * bandwidth rates, else 0. Currently, only OR conns with bandwidth
  1773. * class 1, and directory conns that are serving data out, count.
  1774. */
  1775. static int
  1776. connection_counts_as_relayed_traffic(connection_t *conn, time_t now)
  1777. {
  1778. if (conn->type == CONN_TYPE_OR &&
  1779. TO_OR_CONN(conn)->client_used + CLIENT_IDLE_TIME_FOR_PRIORITY < now)
  1780. return 1;
  1781. if (conn->type == CONN_TYPE_DIR && DIR_CONN_IS_SERVER(conn))
  1782. return 1;
  1783. return 0;
  1784. }
  1785. /** Helper function to decide how many bytes out of <b>global_bucket</b>
  1786. * we're willing to use for this transaction. <b>base</b> is the size
  1787. * of a cell on the network; <b>priority</b> says whether we should
  1788. * write many of them or just a few; and <b>conn_bucket</b> (if
  1789. * non-negative) provides an upper limit for our answer. */
  1790. static ssize_t
  1791. connection_bucket_round_robin(int base, int priority,
  1792. ssize_t global_bucket, ssize_t conn_bucket)
  1793. {
  1794. ssize_t at_most;
  1795. ssize_t num_bytes_high = (priority ? 32 : 16) * base;
  1796. ssize_t num_bytes_low = (priority ? 4 : 2) * base;
  1797. /* Do a rudimentary round-robin so one circuit can't hog a connection.
  1798. * Pick at most 32 cells, at least 4 cells if possible, and if we're in
  1799. * the middle pick 1/8 of the available bandwidth. */
  1800. at_most = global_bucket / 8;
  1801. at_most -= (at_most % base); /* round down */
  1802. if (at_most > num_bytes_high) /* 16 KB, or 8 KB for low-priority */
  1803. at_most = num_bytes_high;
  1804. else if (at_most < num_bytes_low) /* 2 KB, or 1 KB for low-priority */
  1805. at_most = num_bytes_low;
  1806. if (at_most > global_bucket)
  1807. at_most = global_bucket;
  1808. if (conn_bucket >= 0 && at_most > conn_bucket)
  1809. at_most = conn_bucket;
  1810. if (at_most < 0)
  1811. return 0;
  1812. return at_most;
  1813. }
  1814. /** How many bytes at most can we read onto this connection? */
  1815. static ssize_t
  1816. connection_bucket_read_limit(connection_t *conn, time_t now)
  1817. {
  1818. int base = connection_speaks_cells(conn) ?
  1819. CELL_NETWORK_SIZE : RELAY_PAYLOAD_SIZE;
  1820. int priority = conn->type != CONN_TYPE_DIR;
  1821. int conn_bucket = -1;
  1822. int global_bucket = global_read_bucket;
  1823. if (connection_speaks_cells(conn)) {
  1824. or_connection_t *or_conn = TO_OR_CONN(conn);
  1825. if (conn->state == OR_CONN_STATE_OPEN)
  1826. conn_bucket = or_conn->read_bucket;
  1827. }
  1828. if (!connection_is_rate_limited(conn)) {
  1829. /* be willing to read on local conns even if our buckets are empty */
  1830. return conn_bucket>=0 ? conn_bucket : 1<<14;
  1831. }
  1832. if (connection_counts_as_relayed_traffic(conn, now) &&
  1833. global_relayed_read_bucket <= global_read_bucket)
  1834. global_bucket = global_relayed_read_bucket;
  1835. return connection_bucket_round_robin(base, priority,
  1836. global_bucket, conn_bucket);
  1837. }
  1838. /** How many bytes at most can we write onto this connection? */
  1839. ssize_t
  1840. connection_bucket_write_limit(connection_t *conn, time_t now)
  1841. {
  1842. int base = connection_speaks_cells(conn) ?
  1843. CELL_NETWORK_SIZE : RELAY_PAYLOAD_SIZE;
  1844. int priority = conn->type != CONN_TYPE_DIR;
  1845. int conn_bucket = (int)conn->outbuf_flushlen;
  1846. int global_bucket = global_write_bucket;
  1847. if (!connection_is_rate_limited(conn)) {
  1848. /* be willing to write to local conns even if our buckets are empty */
  1849. return conn->outbuf_flushlen;
  1850. }
  1851. if (connection_speaks_cells(conn)) {
  1852. /* use the per-conn write limit if it's lower, but if it's less
  1853. * than zero just use zero */
  1854. or_connection_t *or_conn = TO_OR_CONN(conn);
  1855. if (conn->state == OR_CONN_STATE_OPEN)
  1856. if (or_conn->write_bucket < conn_bucket)
  1857. conn_bucket = or_conn->write_bucket >= 0 ?
  1858. or_conn->write_bucket : 0;
  1859. }
  1860. if (connection_counts_as_relayed_traffic(conn, now) &&
  1861. global_relayed_write_bucket <= global_write_bucket)
  1862. global_bucket = global_relayed_write_bucket;
  1863. return connection_bucket_round_robin(base, priority,
  1864. global_bucket, conn_bucket);
  1865. }
  1866. #else
  1867. static ssize_t
  1868. connection_bucket_read_limit(connection_t *conn, time_t now)
  1869. {
  1870. (void) now;
  1871. return bufferevent_get_max_to_read(conn->bufev);
  1872. }
  1873. ssize_t
  1874. connection_bucket_write_limit(connection_t *conn, time_t now)
  1875. {
  1876. (void) now;
  1877. return bufferevent_get_max_to_write(conn->bufev);
  1878. }
  1879. #endif
  1880. /** Return 1 if the global write buckets are low enough that we
  1881. * shouldn't send <b>attempt</b> bytes of low-priority directory stuff
  1882. * out to <b>conn</b>. Else return 0.
  1883. * Priority is 1 for v1 requests (directories and running-routers),
  1884. * and 2 for v2 requests (statuses and descriptors). But see FFFF in
  1885. * directory_handle_command_get() for why we don't use priority 2 yet.
  1886. *
  1887. * There are a lot of parameters we could use here:
  1888. * - global_relayed_write_bucket. Low is bad.
  1889. * - global_write_bucket. Low is bad.
  1890. * - bandwidthrate. Low is bad.
  1891. * - bandwidthburst. Not a big factor?
  1892. * - attempt. High is bad.
  1893. * - total bytes queued on outbufs. High is bad. But I'm wary of
  1894. * using this, since a few slow-flushing queues will pump up the
  1895. * number without meaning what we meant to mean. What we really
  1896. * mean is "total directory bytes added to outbufs recently", but
  1897. * that's harder to quantify and harder to keep track of.
  1898. */
  1899. int
  1900. global_write_bucket_low(connection_t *conn, size_t attempt, int priority)
  1901. {
  1902. #ifdef USE_BUFFEREVENTS
  1903. ssize_t smaller_bucket = bufferevent_get_max_to_write(conn->bufev);
  1904. #else
  1905. int smaller_bucket = global_write_bucket < global_relayed_write_bucket ?
  1906. global_write_bucket : global_relayed_write_bucket;
  1907. #endif
  1908. if (authdir_mode(get_options()) && priority>1)
  1909. return 0; /* there's always room to answer v2 if we're an auth dir */
  1910. if (!connection_is_rate_limited(conn))
  1911. return 0; /* local conns don't get limited */
  1912. if (smaller_bucket < (int)attempt)
  1913. return 1; /* not enough space no matter the priority */
  1914. #ifndef USE_BUFFEREVENTS
  1915. if (write_buckets_empty_last_second)
  1916. return 1; /* we're already hitting our limits, no more please */
  1917. #endif
  1918. if (priority == 1) { /* old-style v1 query */
  1919. /* Could we handle *two* of these requests within the next two seconds? */
  1920. or_options_t *options = get_options();
  1921. int64_t can_write = (int64_t)smaller_bucket
  1922. + 2*(options->RelayBandwidthRate ? options->RelayBandwidthRate :
  1923. options->BandwidthRate);
  1924. if (can_write < 2*(int64_t)attempt)
  1925. return 1;
  1926. } else { /* v2 query */
  1927. /* no further constraints yet */
  1928. }
  1929. return 0;
  1930. }
  1931. #ifndef USE_BUFFEREVENTS
  1932. /** We just read <b>num_read</b> and wrote <b>num_written</b> bytes
  1933. * onto <b>conn</b>. Decrement buckets appropriately. */
  1934. static void
  1935. connection_buckets_decrement(connection_t *conn, time_t now,
  1936. size_t num_read, size_t num_written)
  1937. {
  1938. if (num_written >= INT_MAX || num_read >= INT_MAX) {
  1939. log_err(LD_BUG, "Value out of range. num_read=%lu, num_written=%lu, "
  1940. "connection type=%s, state=%s",
  1941. (unsigned long)num_read, (unsigned long)num_written,
  1942. conn_type_to_string(conn->type),
  1943. conn_state_to_string(conn->type, conn->state));
  1944. if (num_written >= INT_MAX) num_written = 1;
  1945. if (num_read >= INT_MAX) num_read = 1;
  1946. tor_fragile_assert();
  1947. }
  1948. /* Count bytes of answering direct and tunneled directory requests */
  1949. if (conn->type == CONN_TYPE_DIR && conn->purpose == DIR_PURPOSE_SERVER) {
  1950. if (num_read > 0)
  1951. rep_hist_note_dir_bytes_read(num_read, now);
  1952. if (num_written > 0)
  1953. rep_hist_note_dir_bytes_written(num_written, now);
  1954. }
  1955. if (!connection_is_rate_limited(conn))
  1956. return; /* local IPs are free */
  1957. if (conn->type == CONN_TYPE_OR)
  1958. rep_hist_note_or_conn_bytes(conn->global_identifier, num_read,
  1959. num_written, now);
  1960. if (num_read > 0) {
  1961. rep_hist_note_bytes_read(num_read, now);
  1962. }
  1963. if (num_written > 0) {
  1964. rep_hist_note_bytes_written(num_written, now);
  1965. }
  1966. if (conn->type == CONN_TYPE_EXIT)
  1967. rep_hist_note_exit_bytes(conn->port, num_written, num_read);
  1968. if (connection_counts_as_relayed_traffic(conn, now)) {
  1969. global_relayed_read_bucket -= (int)num_read;
  1970. global_relayed_write_bucket -= (int)num_written;
  1971. }
  1972. global_read_bucket -= (int)num_read;
  1973. global_write_bucket -= (int)num_written;
  1974. if (connection_speaks_cells(conn) && conn->state == OR_CONN_STATE_OPEN) {
  1975. TO_OR_CONN(conn)->read_bucket -= (int)num_read;
  1976. TO_OR_CONN(conn)->write_bucket -= (int)num_written;
  1977. }
  1978. }
  1979. /** If we have exhausted our global buckets, or the buckets for conn,
  1980. * stop reading. */
  1981. static void
  1982. connection_consider_empty_read_buckets(connection_t *conn)
  1983. {
  1984. const char *reason;
  1985. if (global_read_bucket <= 0) {
  1986. reason = "global read bucket exhausted. Pausing.";
  1987. } else if (connection_counts_as_relayed_traffic(conn, approx_time()) &&
  1988. global_relayed_read_bucket <= 0) {
  1989. reason = "global relayed read bucket exhausted. Pausing.";
  1990. } else if (connection_speaks_cells(conn) &&
  1991. conn->state == OR_CONN_STATE_OPEN &&
  1992. TO_OR_CONN(conn)->read_bucket <= 0) {
  1993. reason = "connection read bucket exhausted. Pausing.";
  1994. } else
  1995. return; /* all good, no need to stop it */
  1996. LOG_FN_CONN(conn, (LOG_DEBUG, LD_NET, "%s", reason));
  1997. conn->read_blocked_on_bw = 1;
  1998. connection_stop_reading(conn);
  1999. }
  2000. /** If we have exhausted our global buckets, or the buckets for conn,
  2001. * stop writing. */
  2002. static void
  2003. connection_consider_empty_write_buckets(connection_t *conn)
  2004. {
  2005. const char *reason;
  2006. if (global_write_bucket <= 0) {
  2007. reason = "global write bucket exhausted. Pausing.";
  2008. } else if (connection_counts_as_relayed_traffic(conn, approx_time()) &&
  2009. global_relayed_write_bucket <= 0) {
  2010. reason = "global relayed write bucket exhausted. Pausing.";
  2011. } else if (connection_speaks_cells(conn) &&
  2012. conn->state == OR_CONN_STATE_OPEN &&
  2013. TO_OR_CONN(conn)->write_bucket <= 0) {
  2014. reason = "connection write bucket exhausted. Pausing.";
  2015. } else
  2016. return; /* all good, no need to stop it */
  2017. LOG_FN_CONN(conn, (LOG_DEBUG, LD_NET, "%s", reason));
  2018. conn->write_blocked_on_bw = 1;
  2019. connection_stop_writing(conn);
  2020. }
  2021. /** Initialize the global read bucket to options-\>BandwidthBurst. */
  2022. void
  2023. connection_bucket_init(void)
  2024. {
  2025. or_options_t *options = get_options();
  2026. /* start it at max traffic */
  2027. global_read_bucket = (int)options->BandwidthBurst;
  2028. global_write_bucket = (int)options->BandwidthBurst;
  2029. if (options->RelayBandwidthRate) {
  2030. global_relayed_read_bucket = (int)options->RelayBandwidthBurst;
  2031. global_relayed_write_bucket = (int)options->RelayBandwidthBurst;
  2032. } else {
  2033. global_relayed_read_bucket = (int)options->BandwidthBurst;
  2034. global_relayed_write_bucket = (int)options->BandwidthBurst;
  2035. }
  2036. }
  2037. /** Refill a single <b>bucket</b> called <b>name</b> with bandwidth rate
  2038. * <b>rate</b> and bandwidth burst <b>burst</b>, assuming that
  2039. * <b>seconds_elapsed</b> seconds have passed since the last call.
  2040. **/
  2041. static void
  2042. connection_bucket_refill_helper(int *bucket, int rate, int burst,
  2043. int seconds_elapsed, const char *name)
  2044. {
  2045. int starting_bucket = *bucket;
  2046. if (starting_bucket < burst && seconds_elapsed) {
  2047. if (((burst - starting_bucket)/seconds_elapsed) < rate) {
  2048. *bucket = burst; /* We would overflow the bucket; just set it to
  2049. * the maximum. */
  2050. } else {
  2051. int incr = rate*seconds_elapsed;
  2052. *bucket += incr;
  2053. if (*bucket > burst || *bucket < starting_bucket) {
  2054. /* If we overflow the burst, or underflow our starting bucket,
  2055. * cap the bucket value to burst. */
  2056. /* XXXX this might be redundant now, but it doesn't show up
  2057. * in profiles. Remove it after analysis. */
  2058. *bucket = burst;
  2059. }
  2060. }
  2061. log(LOG_DEBUG, LD_NET,"%s now %d.", name, *bucket);
  2062. }
  2063. }
  2064. /** A second has rolled over; increment buckets appropriately. */
  2065. void
  2066. connection_bucket_refill(int seconds_elapsed, time_t now)
  2067. {
  2068. or_options_t *options = get_options();
  2069. smartlist_t *conns = get_connection_array();
  2070. int relayrate, relayburst;
  2071. if (options->RelayBandwidthRate) {
  2072. relayrate = (int)options->RelayBandwidthRate;
  2073. relayburst = (int)options->RelayBandwidthBurst;
  2074. } else {
  2075. relayrate = (int)options->BandwidthRate;
  2076. relayburst = (int)options->BandwidthBurst;
  2077. }
  2078. tor_assert(seconds_elapsed >= 0);
  2079. write_buckets_empty_last_second =
  2080. global_relayed_write_bucket <= 0 || global_write_bucket <= 0;
  2081. /* refill the global buckets */
  2082. connection_bucket_refill_helper(&global_read_bucket,
  2083. (int)options->BandwidthRate,
  2084. (int)options->BandwidthBurst,
  2085. seconds_elapsed, "global_read_bucket");
  2086. connection_bucket_refill_helper(&global_write_bucket,
  2087. (int)options->BandwidthRate,
  2088. (int)options->BandwidthBurst,
  2089. seconds_elapsed, "global_write_bucket");
  2090. connection_bucket_refill_helper(&global_relayed_read_bucket,
  2091. relayrate, relayburst, seconds_elapsed,
  2092. "global_relayed_read_bucket");
  2093. connection_bucket_refill_helper(&global_relayed_write_bucket,
  2094. relayrate, relayburst, seconds_elapsed,
  2095. "global_relayed_write_bucket");
  2096. /* refill the per-connection buckets */
  2097. SMARTLIST_FOREACH(conns, connection_t *, conn,
  2098. {
  2099. if (connection_speaks_cells(conn)) {
  2100. or_connection_t *or_conn = TO_OR_CONN(conn);
  2101. if (connection_bucket_should_increase(or_conn->read_bucket, or_conn)) {
  2102. connection_bucket_refill_helper(&or_conn->read_bucket,
  2103. or_conn->bandwidthrate,
  2104. or_conn->bandwidthburst,
  2105. seconds_elapsed,
  2106. "or_conn->read_bucket");
  2107. }
  2108. if (connection_bucket_should_increase(or_conn->write_bucket, or_conn)) {
  2109. connection_bucket_refill_helper(&or_conn->write_bucket,
  2110. or_conn->bandwidthrate,
  2111. or_conn->bandwidthburst,
  2112. seconds_elapsed,
  2113. "or_conn->write_bucket");
  2114. }
  2115. }
  2116. if (conn->read_blocked_on_bw == 1 /* marked to turn reading back on now */
  2117. && global_read_bucket > 0 /* and we're allowed to read */
  2118. && (!connection_counts_as_relayed_traffic(conn, now) ||
  2119. global_relayed_read_bucket > 0) /* even if we're relayed traffic */
  2120. && (!connection_speaks_cells(conn) ||
  2121. conn->state != OR_CONN_STATE_OPEN ||
  2122. TO_OR_CONN(conn)->read_bucket > 0)) {
  2123. /* and either a non-cell conn or a cell conn with non-empty bucket */
  2124. LOG_FN_CONN(conn, (LOG_DEBUG,LD_NET,
  2125. "waking up conn (fd %d) for read", conn->s));
  2126. conn->read_blocked_on_bw = 0;
  2127. connection_start_reading(conn);
  2128. }
  2129. if (conn->write_blocked_on_bw == 1
  2130. && global_write_bucket > 0 /* and we're allowed to write */
  2131. && (!connection_counts_as_relayed_traffic(conn, now) ||
  2132. global_relayed_write_bucket > 0) /* even if it's relayed traffic */
  2133. && (!connection_speaks_cells(conn) ||
  2134. conn->state != OR_CONN_STATE_OPEN ||
  2135. TO_OR_CONN(conn)->write_bucket > 0)) {
  2136. LOG_FN_CONN(conn, (LOG_DEBUG,LD_NET,
  2137. "waking up conn (fd %d) for write", conn->s));
  2138. conn->write_blocked_on_bw = 0;
  2139. connection_start_writing(conn);
  2140. }
  2141. });
  2142. }
  2143. /** Is the <b>bucket</b> for connection <b>conn</b> low enough that we
  2144. * should add another pile of tokens to it?
  2145. */
  2146. static int
  2147. connection_bucket_should_increase(int bucket, or_connection_t *conn)
  2148. {
  2149. tor_assert(conn);
  2150. if (conn->_base.state != OR_CONN_STATE_OPEN)
  2151. return 0; /* only open connections play the rate limiting game */
  2152. if (bucket >= conn->bandwidthburst)
  2153. return 0;
  2154. return 1;
  2155. }
  2156. #else
  2157. static void
  2158. connection_buckets_decrement(connection_t *conn, time_t now,
  2159. size_t num_read, size_t num_written)
  2160. {
  2161. (void) conn;
  2162. (void) now;
  2163. (void) num_read;
  2164. (void) num_written;
  2165. /* Libevent does this for us. */
  2166. }
  2167. void
  2168. connection_bucket_refill(int seconds_elapsed, time_t now)
  2169. {
  2170. (void) seconds_elapsed;
  2171. (void) now;
  2172. /* Libevent does this for us. */
  2173. }
  2174. void
  2175. connection_bucket_init(void)
  2176. {
  2177. or_options_t *options = get_options();
  2178. const struct timeval *tick = tor_libevent_get_one_tick_timeout();
  2179. struct ev_token_bucket_cfg *bucket_cfg;
  2180. uint64_t rate, burst;
  2181. if (options->RelayBandwidthRate) {
  2182. rate = options->RelayBandwidthRate;
  2183. burst = options->RelayBandwidthBurst;
  2184. } else {
  2185. rate = options->BandwidthRate;
  2186. burst = options->BandwidthBurst;
  2187. }
  2188. rate /= TOR_LIBEVENT_TICKS_PER_SECOND;
  2189. bucket_cfg = ev_token_bucket_cfg_new((uint32_t)rate, (uint32_t)burst,
  2190. (uint32_t)rate, (uint32_t)burst,
  2191. tick);
  2192. if (!global_rate_limit) {
  2193. global_rate_limit =
  2194. bufferevent_rate_limit_group_new(tor_libevent_get_base(), bucket_cfg);
  2195. } else {
  2196. bufferevent_rate_limit_group_set_cfg(global_rate_limit, bucket_cfg);
  2197. }
  2198. ev_token_bucket_cfg_free(bucket_cfg);
  2199. }
  2200. void
  2201. connection_get_rate_limit_totals(uint64_t *read_out, uint64_t *written_out)
  2202. {
  2203. if (global_rate_limit == NULL) {
  2204. *read_out = *written_out = 0;
  2205. } else {
  2206. bufferevent_rate_limit_group_get_totals(
  2207. global_rate_limit, read_out, written_out);
  2208. }
  2209. }
  2210. /** DOCDOC */
  2211. void
  2212. connection_enable_rate_limiting(connection_t *conn)
  2213. {
  2214. if (conn->bufev) {
  2215. if (!global_rate_limit)
  2216. connection_bucket_init();
  2217. bufferevent_add_to_rate_limit_group(conn->bufev, global_rate_limit);
  2218. }
  2219. }
  2220. static void
  2221. connection_consider_empty_write_buckets(connection_t *conn)
  2222. {
  2223. (void) conn;
  2224. }
  2225. static void
  2226. connection_consider_empty_read_buckets(connection_t *conn)
  2227. {
  2228. (void) conn;
  2229. }
  2230. #endif
  2231. /** Read bytes from conn-\>s and process them.
  2232. *
  2233. * This function gets called from conn_read() in main.c, either
  2234. * when poll() has declared that conn wants to read, or (for OR conns)
  2235. * when there are pending TLS bytes.
  2236. *
  2237. * It calls connection_read_to_buf() to bring in any new bytes,
  2238. * and then calls connection_process_inbuf() to process them.
  2239. *
  2240. * Mark the connection and return -1 if you want to close it, else
  2241. * return 0.
  2242. */
  2243. static int
  2244. connection_handle_read_impl(connection_t *conn)
  2245. {
  2246. int max_to_read=-1, try_to_read;
  2247. size_t before, n_read = 0;
  2248. int socket_error = 0;
  2249. if (conn->marked_for_close)
  2250. return 0; /* do nothing */
  2251. conn->timestamp_lastread = approx_time();
  2252. switch (conn->type) {
  2253. case CONN_TYPE_OR_LISTENER:
  2254. return connection_handle_listener_read(conn, CONN_TYPE_OR);
  2255. case CONN_TYPE_AP_LISTENER:
  2256. case CONN_TYPE_AP_TRANS_LISTENER:
  2257. case CONN_TYPE_AP_NATD_LISTENER:
  2258. return connection_handle_listener_read(conn, CONN_TYPE_AP);
  2259. case CONN_TYPE_DIR_LISTENER:
  2260. return connection_handle_listener_read(conn, CONN_TYPE_DIR);
  2261. case CONN_TYPE_CONTROL_LISTENER:
  2262. return connection_handle_listener_read(conn, CONN_TYPE_CONTROL);
  2263. case CONN_TYPE_AP_DNS_LISTENER:
  2264. /* This should never happen; eventdns.c handles the reads here. */
  2265. tor_fragile_assert();
  2266. return 0;
  2267. }
  2268. loop_again:
  2269. try_to_read = max_to_read;
  2270. tor_assert(!conn->marked_for_close);
  2271. before = buf_datalen(conn->inbuf);
  2272. if (connection_read_to_buf(conn, &max_to_read, &socket_error) < 0) {
  2273. /* There's a read error; kill the connection.*/
  2274. if (conn->type == CONN_TYPE_OR &&
  2275. conn->state == OR_CONN_STATE_CONNECTING) {
  2276. connection_or_connect_failed(TO_OR_CONN(conn),
  2277. errno_to_orconn_end_reason(socket_error),
  2278. tor_socket_strerror(socket_error));
  2279. }
  2280. if (CONN_IS_EDGE(conn)) {
  2281. edge_connection_t *edge_conn = TO_EDGE_CONN(conn);
  2282. connection_edge_end_errno(edge_conn);
  2283. if (edge_conn->socks_request) /* broken, don't send a socks reply back */
  2284. edge_conn->socks_request->has_finished = 1;
  2285. }
  2286. connection_close_immediate(conn); /* Don't flush; connection is dead. */
  2287. connection_mark_for_close(conn);
  2288. return -1;
  2289. }
  2290. n_read += buf_datalen(conn->inbuf) - before;
  2291. if (CONN_IS_EDGE(conn) && try_to_read != max_to_read) {
  2292. /* instruct it not to try to package partial cells. */
  2293. if (connection_process_inbuf(conn, 0) < 0) {
  2294. return -1;
  2295. }
  2296. if (!conn->marked_for_close &&
  2297. connection_is_reading(conn) &&
  2298. !conn->inbuf_reached_eof &&
  2299. max_to_read > 0)
  2300. goto loop_again; /* try reading again, in case more is here now */
  2301. }
  2302. /* one last try, packaging partial cells and all. */
  2303. if (!conn->marked_for_close &&
  2304. connection_process_inbuf(conn, 1) < 0) {
  2305. return -1;
  2306. }
  2307. if (conn->linked_conn) {
  2308. /* The other side's handle_write() will never actually get called, so
  2309. * we need to invoke the appropriate callbacks ourself. */
  2310. connection_t *linked = conn->linked_conn;
  2311. if (n_read) {
  2312. /* Probably a no-op, since linked conns typically don't count for
  2313. * bandwidth rate limiting. But do it anyway so we can keep stats
  2314. * accurately. Note that since we read the bytes from conn, and
  2315. * we're writing the bytes onto the linked connection, we count
  2316. * these as <i>written</i> bytes. */
  2317. connection_buckets_decrement(linked, approx_time(), 0, n_read);
  2318. if (connection_flushed_some(linked) < 0)
  2319. connection_mark_for_close(linked);
  2320. if (!connection_wants_to_flush(linked))
  2321. connection_finished_flushing(linked);
  2322. }
  2323. if (!buf_datalen(linked->outbuf) && conn->active_on_link)
  2324. connection_stop_reading_from_linked_conn(conn);
  2325. }
  2326. /* If we hit the EOF, call connection_reached_eof(). */
  2327. if (!conn->marked_for_close &&
  2328. conn->inbuf_reached_eof &&
  2329. connection_reached_eof(conn) < 0) {
  2330. return -1;
  2331. }
  2332. return 0;
  2333. }
  2334. int
  2335. connection_handle_read(connection_t *conn)
  2336. {
  2337. int res;
  2338. tor_gettimeofday_cache_clear();
  2339. res = connection_handle_read_impl(conn);
  2340. return res;
  2341. }
  2342. /** Pull in new bytes from conn-\>s or conn-\>linked_conn onto conn-\>inbuf,
  2343. * either directly or via TLS. Reduce the token buckets by the number of bytes
  2344. * read.
  2345. *
  2346. * If *max_to_read is -1, then decide it ourselves, else go with the
  2347. * value passed to us. When returning, if it's changed, subtract the
  2348. * number of bytes we read from *max_to_read.
  2349. *
  2350. * Return -1 if we want to break conn, else return 0.
  2351. */
  2352. static int
  2353. connection_read_to_buf(connection_t *conn, int *max_to_read, int *socket_error)
  2354. {
  2355. int result;
  2356. ssize_t at_most = *max_to_read;
  2357. size_t slack_in_buf, more_to_read;
  2358. size_t n_read = 0, n_written = 0;
  2359. if (at_most == -1) { /* we need to initialize it */
  2360. /* how many bytes are we allowed to read? */
  2361. at_most = connection_bucket_read_limit(conn, approx_time());
  2362. }
  2363. slack_in_buf = buf_slack(conn->inbuf);
  2364. again:
  2365. if ((size_t)at_most > slack_in_buf && slack_in_buf >= 1024) {
  2366. more_to_read = at_most - slack_in_buf;
  2367. at_most = slack_in_buf;
  2368. } else {
  2369. more_to_read = 0;
  2370. }
  2371. if (connection_speaks_cells(conn) &&
  2372. conn->state > OR_CONN_STATE_PROXY_HANDSHAKING) {
  2373. int pending;
  2374. or_connection_t *or_conn = TO_OR_CONN(conn);
  2375. size_t initial_size;
  2376. if (conn->state == OR_CONN_STATE_TLS_HANDSHAKING ||
  2377. conn->state == OR_CONN_STATE_TLS_CLIENT_RENEGOTIATING) {
  2378. /* continue handshaking even if global token bucket is empty */
  2379. return connection_tls_continue_handshake(or_conn);
  2380. }
  2381. log_debug(LD_NET,
  2382. "%d: starting, inbuf_datalen %ld (%d pending in tls object)."
  2383. " at_most %ld.",
  2384. conn->s,(long)buf_datalen(conn->inbuf),
  2385. tor_tls_get_pending_bytes(or_conn->tls), (long)at_most);
  2386. initial_size = buf_datalen(conn->inbuf);
  2387. /* else open, or closing */
  2388. result = read_to_buf_tls(or_conn->tls, at_most, conn->inbuf);
  2389. if (TOR_TLS_IS_ERROR(result) || result == TOR_TLS_CLOSE)
  2390. or_conn->tls_error = result;
  2391. else
  2392. or_conn->tls_error = 0;
  2393. switch (result) {
  2394. case TOR_TLS_CLOSE:
  2395. case TOR_TLS_ERROR_IO:
  2396. log_debug(LD_NET,"TLS connection closed %son read. Closing. "
  2397. "(Nickname %s, address %s)",
  2398. result == TOR_TLS_CLOSE ? "cleanly " : "",
  2399. or_conn->nickname ? or_conn->nickname : "not set",
  2400. conn->address);
  2401. return result;
  2402. CASE_TOR_TLS_ERROR_ANY_NONIO:
  2403. log_debug(LD_NET,"tls error [%s]. breaking (nickname %s, address %s).",
  2404. tor_tls_err_to_string(result),
  2405. or_conn->nickname ? or_conn->nickname : "not set",
  2406. conn->address);
  2407. return result;
  2408. case TOR_TLS_WANTWRITE:
  2409. connection_start_writing(conn);
  2410. return 0;
  2411. case TOR_TLS_WANTREAD: /* we're already reading */
  2412. case TOR_TLS_DONE: /* no data read, so nothing to process */
  2413. result = 0;
  2414. break; /* so we call bucket_decrement below */
  2415. default:
  2416. break;
  2417. }
  2418. pending = tor_tls_get_pending_bytes(or_conn->tls);
  2419. if (pending) {
  2420. /* If we have any pending bytes, we read them now. This *can*
  2421. * take us over our read allotment, but really we shouldn't be
  2422. * believing that SSL bytes are the same as TCP bytes anyway. */
  2423. int r2 = read_to_buf_tls(or_conn->tls, pending, conn->inbuf);
  2424. if (r2<0) {
  2425. log_warn(LD_BUG, "apparently, reading pending bytes can fail.");
  2426. return -1;
  2427. }
  2428. }
  2429. result = (int)(buf_datalen(conn->inbuf)-initial_size);
  2430. tor_tls_get_n_raw_bytes(or_conn->tls, &n_read, &n_written);
  2431. log_debug(LD_GENERAL, "After TLS read of %d: %ld read, %ld written",
  2432. result, (long)n_read, (long)n_written);
  2433. } else if (conn->linked) {
  2434. if (conn->linked_conn) {
  2435. result = move_buf_to_buf(conn->inbuf, conn->linked_conn->outbuf,
  2436. &conn->linked_conn->outbuf_flushlen);
  2437. } else {
  2438. result = 0;
  2439. }
  2440. //log_notice(LD_GENERAL, "Moved %d bytes on an internal link!", result);
  2441. /* If the other side has disappeared, or if it's been marked for close and
  2442. * we flushed its outbuf, then we should set our inbuf_reached_eof. */
  2443. if (!conn->linked_conn ||
  2444. (conn->linked_conn->marked_for_close &&
  2445. buf_datalen(conn->linked_conn->outbuf) == 0))
  2446. conn->inbuf_reached_eof = 1;
  2447. n_read = (size_t) result;
  2448. } else {
  2449. /* !connection_speaks_cells, !conn->linked_conn. */
  2450. int reached_eof = 0;
  2451. CONN_LOG_PROTECT(conn,
  2452. result = read_to_buf(conn->s, at_most, conn->inbuf, &reached_eof,
  2453. socket_error));
  2454. if (reached_eof)
  2455. conn->inbuf_reached_eof = 1;
  2456. // log_fn(LOG_DEBUG,"read_to_buf returned %d.",read_result);
  2457. if (result < 0)
  2458. return -1;
  2459. n_read = (size_t) result;
  2460. }
  2461. if (n_read > 0) { /* change *max_to_read */
  2462. /*XXXX022 check for overflow*/
  2463. *max_to_read = (int)(at_most - n_read);
  2464. }
  2465. if (conn->type == CONN_TYPE_AP) {
  2466. edge_connection_t *edge_conn = TO_EDGE_CONN(conn);
  2467. /*XXXX022 check for overflow*/
  2468. edge_conn->n_read += (int)n_read;
  2469. }
  2470. connection_buckets_decrement(conn, approx_time(), n_read, n_written);
  2471. if (more_to_read && result == at_most) {
  2472. slack_in_buf = buf_slack(conn->inbuf);
  2473. at_most = more_to_read;
  2474. goto again;
  2475. }
  2476. /* Call even if result is 0, since the global read bucket may
  2477. * have reached 0 on a different conn, and this guy needs to
  2478. * know to stop reading. */
  2479. connection_consider_empty_read_buckets(conn);
  2480. if (n_written > 0 && connection_is_writing(conn))
  2481. connection_consider_empty_write_buckets(conn);
  2482. return 0;
  2483. }
  2484. #ifdef USE_BUFFEREVENTS
  2485. /* XXXX These generic versions could be simplified by making them
  2486. type-specific */
  2487. /** Callback: Invoked whenever bytes are added to or drained from an input
  2488. * evbuffer. Used to track the number of bytes read. */
  2489. static void
  2490. evbuffer_inbuf_callback(struct evbuffer *buf,
  2491. const struct evbuffer_cb_info *info, void *arg)
  2492. {
  2493. connection_t *conn = arg;
  2494. (void) buf;
  2495. /* XXXX These need to get real counts on the non-nested TLS case. - NM */
  2496. if (info->n_added) {
  2497. time_t now = approx_time();
  2498. conn->timestamp_lastread = now;
  2499. connection_buckets_decrement(conn, now, info->n_added, 0);
  2500. connection_consider_empty_read_buckets(conn);
  2501. if (conn->type == CONN_TYPE_AP) {
  2502. edge_connection_t *edge_conn = TO_EDGE_CONN(conn);
  2503. /*XXXX022 check for overflow*/
  2504. edge_conn->n_read += (int)info->n_added;
  2505. }
  2506. }
  2507. }
  2508. /** Callback: Invoked whenever bytes are added to or drained from an output
  2509. * evbuffer. Used to track the number of bytes written. */
  2510. static void
  2511. evbuffer_outbuf_callback(struct evbuffer *buf,
  2512. const struct evbuffer_cb_info *info, void *arg)
  2513. {
  2514. connection_t *conn = arg;
  2515. (void)buf;
  2516. if (info->n_deleted) {
  2517. time_t now = approx_time();
  2518. conn->timestamp_lastwritten = now;
  2519. connection_buckets_decrement(conn, now, 0, info->n_deleted);
  2520. connection_consider_empty_write_buckets(conn);
  2521. if (conn->type == CONN_TYPE_AP) {
  2522. edge_connection_t *edge_conn = TO_EDGE_CONN(conn);
  2523. /*XXXX022 check for overflow*/
  2524. edge_conn->n_written += (int)info->n_deleted;
  2525. }
  2526. }
  2527. }
  2528. /** Callback: invoked whenever a bufferevent has read data. */
  2529. void
  2530. connection_handle_read_cb(struct bufferevent *bufev, void *arg)
  2531. {
  2532. connection_t *conn = arg;
  2533. (void) bufev;
  2534. if (!conn->marked_for_close)
  2535. if (connection_process_inbuf(conn, 1)<0) /* XXXX Always 1? */
  2536. connection_mark_for_close(conn);
  2537. }
  2538. /** Callback: invoked whenever a bufferevent has written data. */
  2539. void
  2540. connection_handle_write_cb(struct bufferevent *bufev, void *arg)
  2541. {
  2542. connection_t *conn = arg;
  2543. struct evbuffer *output;
  2544. if (connection_flushed_some(conn)<0) {
  2545. connection_mark_for_close(conn);
  2546. return;
  2547. }
  2548. output = bufferevent_get_output(bufev);
  2549. if (!evbuffer_get_length(output)) {
  2550. connection_finished_flushing(conn);
  2551. if (conn->marked_for_close && conn->hold_open_until_flushed) {
  2552. conn->hold_open_until_flushed = 0;
  2553. if (conn->linked) {
  2554. /* send eof */
  2555. bufferevent_flush(conn->bufev, EV_WRITE, BEV_FINISHED);
  2556. }
  2557. }
  2558. }
  2559. }
  2560. /** Callback: invoked whenever a bufferevent has had an event (like a
  2561. * connection, or an eof, or an error) occur. */
  2562. void
  2563. connection_handle_event_cb(struct bufferevent *bufev, short event, void *arg)
  2564. {
  2565. connection_t *conn = arg;
  2566. (void) bufev;
  2567. if (event & BEV_EVENT_CONNECTED) {
  2568. tor_assert(connection_state_is_connecting(conn));
  2569. if (connection_finished_connecting(conn)<0)
  2570. return;
  2571. }
  2572. if (event & BEV_EVENT_EOF) {
  2573. if (!conn->marked_for_close) {
  2574. conn->inbuf_reached_eof = 1;
  2575. if (connection_reached_eof(conn)<0)
  2576. return;
  2577. }
  2578. }
  2579. if (event & BEV_EVENT_ERROR) {
  2580. int socket_error = evutil_socket_geterror(conn->s);
  2581. if (conn->type == CONN_TYPE_OR &&
  2582. conn->state == OR_CONN_STATE_CONNECTING) {
  2583. connection_or_connect_failed(TO_OR_CONN(conn),
  2584. errno_to_orconn_end_reason(socket_error),
  2585. tor_socket_strerror(socket_error));
  2586. } else if (CONN_IS_EDGE(conn)) {
  2587. edge_connection_t *edge_conn = TO_EDGE_CONN(conn);
  2588. if (!edge_conn->edge_has_sent_end)
  2589. connection_edge_end_errno(edge_conn);
  2590. if (edge_conn->socks_request) /* broken, don't send a socks reply back */
  2591. edge_conn->socks_request->has_finished = 1;
  2592. }
  2593. connection_close_immediate(conn); /* Connection is dead. */
  2594. if (!conn->marked_for_close)
  2595. connection_mark_for_close(conn);
  2596. }
  2597. }
  2598. /** Set up the generic callbacks for the bufferevent on <b>conn</b>. */
  2599. void
  2600. connection_configure_bufferevent_callbacks(connection_t *conn)
  2601. {
  2602. struct bufferevent *bufev;
  2603. struct evbuffer *input, *output;
  2604. tor_assert(conn->bufev);
  2605. bufev = conn->bufev;
  2606. bufferevent_setcb(bufev,
  2607. connection_handle_read_cb,
  2608. connection_handle_write_cb,
  2609. connection_handle_event_cb,
  2610. conn);
  2611. input = bufferevent_get_input(bufev);
  2612. output = bufferevent_get_output(bufev);
  2613. evbuffer_add_cb(input, evbuffer_inbuf_callback, conn);
  2614. evbuffer_add_cb(output, evbuffer_outbuf_callback, conn);
  2615. }
  2616. #endif
  2617. /** A pass-through to fetch_from_buf. */
  2618. int
  2619. connection_fetch_from_buf(char *string, size_t len, connection_t *conn)
  2620. {
  2621. IF_HAS_BUFFEREVENT(conn, {
  2622. /* XXX overflow -seb */
  2623. return (int)bufferevent_read(conn->bufev, string, len);
  2624. }) ELSE_IF_NO_BUFFEREVENT {
  2625. return fetch_from_buf(string, len, conn->inbuf);
  2626. }
  2627. }
  2628. /** As fetch_from_buf_line(), but read from a connection's input buffer. */
  2629. int
  2630. connection_fetch_from_buf_line(connection_t *conn, char *data,
  2631. size_t *data_len)
  2632. {
  2633. IF_HAS_BUFFEREVENT(conn, {
  2634. int r;
  2635. size_t eol_len=0;
  2636. struct evbuffer *input = bufferevent_get_input(conn->bufev);
  2637. struct evbuffer_ptr ptr =
  2638. evbuffer_search_eol(input, NULL, &eol_len, EVBUFFER_EOL_LF);
  2639. if (ptr.pos == -1)
  2640. return 0; /* No EOL found. */
  2641. if ((size_t)ptr.pos+eol_len >= *data_len) {
  2642. return -1; /* Too long */
  2643. }
  2644. *data_len = ptr.pos+eol_len;
  2645. r = evbuffer_remove(input, data, ptr.pos+eol_len);
  2646. tor_assert(r >= 0);
  2647. data[ptr.pos+eol_len] = '\0';
  2648. return 1;
  2649. }) ELSE_IF_NO_BUFFEREVENT {
  2650. return fetch_from_buf_line(conn->inbuf, data, data_len);
  2651. }
  2652. }
  2653. /** As fetch_from_buf_http, but fetches from a conncetion's input buffer_t or
  2654. * its bufferevent as appropriate. */
  2655. int
  2656. connection_fetch_from_buf_http(connection_t *conn,
  2657. char **headers_out, size_t max_headerlen,
  2658. char **body_out, size_t *body_used,
  2659. size_t max_bodylen, int force_complete)
  2660. {
  2661. IF_HAS_BUFFEREVENT(conn, {
  2662. struct evbuffer *input = bufferevent_get_input(conn->bufev);
  2663. return fetch_from_evbuffer_http(input, headers_out, max_headerlen,
  2664. body_out, body_used, max_bodylen, force_complete);
  2665. }) ELSE_IF_NO_BUFFEREVENT {
  2666. return fetch_from_buf_http(conn->inbuf, headers_out, max_headerlen,
  2667. body_out, body_used, max_bodylen, force_complete);
  2668. }
  2669. }
  2670. /** Return conn-\>outbuf_flushlen: how many bytes conn wants to flush
  2671. * from its outbuf. */
  2672. int
  2673. connection_wants_to_flush(connection_t *conn)
  2674. {
  2675. return conn->outbuf_flushlen > 0;
  2676. }
  2677. /** Are there too many bytes on edge connection <b>conn</b>'s outbuf to
  2678. * send back a relay-level sendme yet? Return 1 if so, 0 if not. Used by
  2679. * connection_edge_consider_sending_sendme().
  2680. */
  2681. int
  2682. connection_outbuf_too_full(connection_t *conn)
  2683. {
  2684. return (conn->outbuf_flushlen > 10*CELL_PAYLOAD_SIZE);
  2685. }
  2686. /** Try to flush more bytes onto conn-\>s.
  2687. *
  2688. * This function gets called either from conn_write() in main.c
  2689. * when poll() has declared that conn wants to write, or below
  2690. * from connection_write_to_buf() when an entire TLS record is ready.
  2691. *
  2692. * Update conn-\>timestamp_lastwritten to now, and call flush_buf
  2693. * or flush_buf_tls appropriately. If it succeeds and there are no more
  2694. * more bytes on conn->outbuf, then call connection_finished_flushing
  2695. * on it too.
  2696. *
  2697. * If <b>force</b>, then write as many bytes as possible, ignoring bandwidth
  2698. * limits. (Used for flushing messages to controller connections on fatal
  2699. * errors.)
  2700. *
  2701. * Mark the connection and return -1 if you want to close it, else
  2702. * return 0.
  2703. */
  2704. static int
  2705. connection_handle_write_impl(connection_t *conn, int force)
  2706. {
  2707. int e;
  2708. socklen_t len=(socklen_t)sizeof(e);
  2709. int result;
  2710. ssize_t max_to_write;
  2711. time_t now = approx_time();
  2712. size_t n_read = 0, n_written = 0;
  2713. tor_assert(!connection_is_listener(conn));
  2714. if (conn->marked_for_close || conn->s < 0)
  2715. return 0; /* do nothing */
  2716. if (conn->in_flushed_some) {
  2717. log_warn(LD_BUG, "called recursively from inside conn->in_flushed_some");
  2718. return 0;
  2719. }
  2720. conn->timestamp_lastwritten = now;
  2721. /* Sometimes, "writable" means "connected". */
  2722. if (connection_state_is_connecting(conn)) {
  2723. if (getsockopt(conn->s, SOL_SOCKET, SO_ERROR, (void*)&e, &len) < 0) {
  2724. log_warn(LD_BUG,
  2725. "getsockopt() syscall failed?! Please report to tor-ops.");
  2726. if (CONN_IS_EDGE(conn))
  2727. connection_edge_end_errno(TO_EDGE_CONN(conn));
  2728. connection_mark_for_close(conn);
  2729. return -1;
  2730. }
  2731. if (e) {
  2732. /* some sort of error, but maybe just inprogress still */
  2733. if (!ERRNO_IS_CONN_EINPROGRESS(e)) {
  2734. log_info(LD_NET,"in-progress connect failed. Removing. (%s)",
  2735. tor_socket_strerror(e));
  2736. if (CONN_IS_EDGE(conn))
  2737. connection_edge_end_errno(TO_EDGE_CONN(conn));
  2738. if (conn->type == CONN_TYPE_OR)
  2739. connection_or_connect_failed(TO_OR_CONN(conn),
  2740. errno_to_orconn_end_reason(e),
  2741. tor_socket_strerror(e));
  2742. connection_close_immediate(conn);
  2743. connection_mark_for_close(conn);
  2744. return -1;
  2745. } else {
  2746. return 0; /* no change, see if next time is better */
  2747. }
  2748. }
  2749. /* The connection is successful. */
  2750. if (connection_finished_connecting(conn)<0)
  2751. return -1;
  2752. }
  2753. max_to_write = force ? (ssize_t)conn->outbuf_flushlen
  2754. : connection_bucket_write_limit(conn, now);
  2755. if (connection_speaks_cells(conn) &&
  2756. conn->state > OR_CONN_STATE_PROXY_HANDSHAKING) {
  2757. or_connection_t *or_conn = TO_OR_CONN(conn);
  2758. if (conn->state == OR_CONN_STATE_TLS_HANDSHAKING ||
  2759. conn->state == OR_CONN_STATE_TLS_CLIENT_RENEGOTIATING) {
  2760. connection_stop_writing(conn);
  2761. if (connection_tls_continue_handshake(or_conn) < 0) {
  2762. /* Don't flush; connection is dead. */
  2763. connection_close_immediate(conn);
  2764. connection_mark_for_close(conn);
  2765. return -1;
  2766. }
  2767. return 0;
  2768. } else if (conn->state == OR_CONN_STATE_TLS_SERVER_RENEGOTIATING) {
  2769. return connection_handle_read(conn);
  2770. }
  2771. /* else open, or closing */
  2772. result = flush_buf_tls(or_conn->tls, conn->outbuf,
  2773. max_to_write, &conn->outbuf_flushlen);
  2774. /* If we just flushed the last bytes, check if this tunneled dir
  2775. * request is done. */
  2776. /* XXXX move this to flushed_some or finished_flushing -NM */
  2777. if (buf_datalen(conn->outbuf) == 0 && conn->dirreq_id)
  2778. geoip_change_dirreq_state(conn->dirreq_id, DIRREQ_TUNNELED,
  2779. DIRREQ_OR_CONN_BUFFER_FLUSHED);
  2780. switch (result) {
  2781. CASE_TOR_TLS_ERROR_ANY:
  2782. case TOR_TLS_CLOSE:
  2783. log_info(LD_NET,result!=TOR_TLS_CLOSE?
  2784. "tls error. breaking.":"TLS connection closed on flush");
  2785. /* Don't flush; connection is dead. */
  2786. connection_close_immediate(conn);
  2787. connection_mark_for_close(conn);
  2788. return -1;
  2789. case TOR_TLS_WANTWRITE:
  2790. log_debug(LD_NET,"wanted write.");
  2791. /* we're already writing */
  2792. return 0;
  2793. case TOR_TLS_WANTREAD:
  2794. /* Make sure to avoid a loop if the receive buckets are empty. */
  2795. log_debug(LD_NET,"wanted read.");
  2796. if (!connection_is_reading(conn)) {
  2797. connection_stop_writing(conn);
  2798. conn->write_blocked_on_bw = 1;
  2799. /* we'll start reading again when we get more tokens in our
  2800. * read bucket; then we'll start writing again too.
  2801. */
  2802. }
  2803. /* else no problem, we're already reading */
  2804. return 0;
  2805. /* case TOR_TLS_DONE:
  2806. * for TOR_TLS_DONE, fall through to check if the flushlen
  2807. * is empty, so we can stop writing.
  2808. */
  2809. }
  2810. tor_tls_get_n_raw_bytes(or_conn->tls, &n_read, &n_written);
  2811. log_debug(LD_GENERAL, "After TLS write of %d: %ld read, %ld written",
  2812. result, (long)n_read, (long)n_written);
  2813. } else {
  2814. CONN_LOG_PROTECT(conn,
  2815. result = flush_buf(conn->s, conn->outbuf,
  2816. max_to_write, &conn->outbuf_flushlen));
  2817. if (result < 0) {
  2818. if (CONN_IS_EDGE(conn))
  2819. connection_edge_end_errno(TO_EDGE_CONN(conn));
  2820. connection_close_immediate(conn); /* Don't flush; connection is dead. */
  2821. connection_mark_for_close(conn);
  2822. return -1;
  2823. }
  2824. n_written = (size_t) result;
  2825. }
  2826. if (conn->type == CONN_TYPE_AP) {
  2827. edge_connection_t *edge_conn = TO_EDGE_CONN(conn);
  2828. /*XXXX022 check for overflow.*/
  2829. edge_conn->n_written += (int)n_written;
  2830. }
  2831. connection_buckets_decrement(conn, approx_time(), n_read, n_written);
  2832. if (result > 0) {
  2833. /* If we wrote any bytes from our buffer, then call the appropriate
  2834. * functions. */
  2835. if (connection_flushed_some(conn) < 0)
  2836. connection_mark_for_close(conn);
  2837. }
  2838. if (!connection_wants_to_flush(conn)) { /* it's done flushing */
  2839. if (connection_finished_flushing(conn) < 0) {
  2840. /* already marked */
  2841. return -1;
  2842. }
  2843. return 0;
  2844. }
  2845. /* Call even if result is 0, since the global write bucket may
  2846. * have reached 0 on a different conn, and this guy needs to
  2847. * know to stop writing. */
  2848. connection_consider_empty_write_buckets(conn);
  2849. if (n_read > 0 && connection_is_reading(conn))
  2850. connection_consider_empty_read_buckets(conn);
  2851. return 0;
  2852. }
  2853. int
  2854. connection_handle_write(connection_t *conn, int force)
  2855. {
  2856. int res;
  2857. tor_gettimeofday_cache_clear();
  2858. res = connection_handle_write_impl(conn, force);
  2859. return res;
  2860. }
  2861. /** OpenSSL TLS record size is 16383; this is close. The goal here is to
  2862. * push data out as soon as we know there's enough for a TLS record, so
  2863. * during periods of high load we won't read entire megabytes from
  2864. * input before pushing any data out. It also has the feature of not
  2865. * growing huge outbufs unless something is slow. */
  2866. #define MIN_TLS_FLUSHLEN 15872
  2867. /** Append <b>len</b> bytes of <b>string</b> onto <b>conn</b>'s
  2868. * outbuf, and ask it to start writing.
  2869. *
  2870. * If <b>zlib</b> is nonzero, this is a directory connection that should get
  2871. * its contents compressed or decompressed as they're written. If zlib is
  2872. * negative, this is the last data to be compressed, and the connection's zlib
  2873. * state should be flushed.
  2874. *
  2875. * If it's an OR conn and an entire TLS record is ready, then try to
  2876. * flush the record now. Similarly, if it's a local control connection
  2877. * and a 64k chunk is ready, try to flush it all, so we don't end up with
  2878. * many megabytes of controller info queued at once.
  2879. */
  2880. void
  2881. _connection_write_to_buf_impl(const char *string, size_t len,
  2882. connection_t *conn, int zlib)
  2883. {
  2884. /* XXXX This function really needs to return -1 on failure. */
  2885. int r;
  2886. size_t old_datalen;
  2887. if (!len && !(zlib<0))
  2888. return;
  2889. /* if it's marked for close, only allow write if we mean to flush it */
  2890. if (conn->marked_for_close && !conn->hold_open_until_flushed)
  2891. return;
  2892. IF_HAS_BUFFEREVENT(conn, {
  2893. if (zlib) {
  2894. int done = zlib < 0;
  2895. r = write_to_evbuffer_zlib(bufferevent_get_output(conn->bufev),
  2896. TO_DIR_CONN(conn)->zlib_state,
  2897. string, len, done);
  2898. } else {
  2899. r = bufferevent_write(conn->bufev, string, len);
  2900. }
  2901. if (r < 0) {
  2902. /* XXXX mark for close? */
  2903. log_warn(LD_NET, "bufferevent_write failed! That shouldn't happen.");
  2904. }
  2905. return;
  2906. });
  2907. old_datalen = buf_datalen(conn->outbuf);
  2908. if (zlib) {
  2909. dir_connection_t *dir_conn = TO_DIR_CONN(conn);
  2910. int done = zlib < 0;
  2911. CONN_LOG_PROTECT(conn, r = write_to_buf_zlib(conn->outbuf,
  2912. dir_conn->zlib_state,
  2913. string, len, done));
  2914. } else {
  2915. CONN_LOG_PROTECT(conn, r = write_to_buf(string, len, conn->outbuf));
  2916. }
  2917. if (r < 0) {
  2918. if (CONN_IS_EDGE(conn)) {
  2919. /* if it failed, it means we have our package/delivery windows set
  2920. wrong compared to our max outbuf size. close the whole circuit. */
  2921. log_warn(LD_NET,
  2922. "write_to_buf failed. Closing circuit (fd %d).", conn->s);
  2923. circuit_mark_for_close(circuit_get_by_edge_conn(TO_EDGE_CONN(conn)),
  2924. END_CIRC_REASON_INTERNAL);
  2925. } else {
  2926. log_warn(LD_NET,
  2927. "write_to_buf failed. Closing connection (fd %d).", conn->s);
  2928. connection_mark_for_close(conn);
  2929. }
  2930. return;
  2931. }
  2932. connection_start_writing(conn);
  2933. if (zlib) {
  2934. conn->outbuf_flushlen += buf_datalen(conn->outbuf) - old_datalen;
  2935. } else {
  2936. ssize_t extra = 0;
  2937. conn->outbuf_flushlen += len;
  2938. /* Should we try flushing the outbuf now? */
  2939. if (conn->in_flushed_some) {
  2940. /* Don't flush the outbuf when the reason we're writing more stuff is
  2941. * _because_ we flushed the outbuf. That's unfair. */
  2942. return;
  2943. }
  2944. if (conn->type == CONN_TYPE_OR &&
  2945. conn->outbuf_flushlen-len < MIN_TLS_FLUSHLEN &&
  2946. conn->outbuf_flushlen >= MIN_TLS_FLUSHLEN) {
  2947. /* We just pushed outbuf_flushlen to MIN_TLS_FLUSHLEN or above;
  2948. * we can send out a full TLS frame now if we like. */
  2949. extra = conn->outbuf_flushlen - MIN_TLS_FLUSHLEN;
  2950. conn->outbuf_flushlen = MIN_TLS_FLUSHLEN;
  2951. } else if (conn->type == CONN_TYPE_CONTROL &&
  2952. !connection_is_rate_limited(conn) &&
  2953. conn->outbuf_flushlen-len < 1<<16 &&
  2954. conn->outbuf_flushlen >= 1<<16) {
  2955. /* just try to flush all of it */
  2956. } else
  2957. return; /* no need to try flushing */
  2958. if (connection_handle_write(conn, 0) < 0) {
  2959. if (!conn->marked_for_close) {
  2960. /* this connection is broken. remove it. */
  2961. log_warn(LD_BUG, "unhandled error on write for "
  2962. "conn (type %d, fd %d); removing",
  2963. conn->type, conn->s);
  2964. tor_fragile_assert();
  2965. /* do a close-immediate here, so we don't try to flush */
  2966. connection_close_immediate(conn);
  2967. }
  2968. return;
  2969. }
  2970. if (extra) {
  2971. conn->outbuf_flushlen += extra;
  2972. connection_start_writing(conn);
  2973. }
  2974. }
  2975. }
  2976. /** Return a connection with given type, address, port, and purpose;
  2977. * or NULL if no such connection exists. */
  2978. connection_t *
  2979. connection_get_by_type_addr_port_purpose(int type,
  2980. const tor_addr_t *addr, uint16_t port,
  2981. int purpose)
  2982. {
  2983. smartlist_t *conns = get_connection_array();
  2984. SMARTLIST_FOREACH(conns, connection_t *, conn,
  2985. {
  2986. if (conn->type == type &&
  2987. tor_addr_eq(&conn->addr, addr) &&
  2988. conn->port == port &&
  2989. conn->purpose == purpose &&
  2990. !conn->marked_for_close)
  2991. return conn;
  2992. });
  2993. return NULL;
  2994. }
  2995. /** Return the stream with id <b>id</b> if it is not already marked for
  2996. * close.
  2997. */
  2998. connection_t *
  2999. connection_get_by_global_id(uint64_t id)
  3000. {
  3001. smartlist_t *conns = get_connection_array();
  3002. SMARTLIST_FOREACH(conns, connection_t *, conn,
  3003. {
  3004. if (conn->global_identifier == id)
  3005. return conn;
  3006. });
  3007. return NULL;
  3008. }
  3009. /** Return a connection of type <b>type</b> that is not marked for close.
  3010. */
  3011. connection_t *
  3012. connection_get_by_type(int type)
  3013. {
  3014. smartlist_t *conns = get_connection_array();
  3015. SMARTLIST_FOREACH(conns, connection_t *, conn,
  3016. {
  3017. if (conn->type == type && !conn->marked_for_close)
  3018. return conn;
  3019. });
  3020. return NULL;
  3021. }
  3022. /** Return a connection of type <b>type</b> that is in state <b>state</b>,
  3023. * and that is not marked for close.
  3024. */
  3025. connection_t *
  3026. connection_get_by_type_state(int type, int state)
  3027. {
  3028. smartlist_t *conns = get_connection_array();
  3029. SMARTLIST_FOREACH(conns, connection_t *, conn,
  3030. {
  3031. if (conn->type == type && conn->state == state && !conn->marked_for_close)
  3032. return conn;
  3033. });
  3034. return NULL;
  3035. }
  3036. /** Return a connection of type <b>type</b> that has rendquery equal
  3037. * to <b>rendquery</b>, and that is not marked for close. If state
  3038. * is non-zero, conn must be of that state too.
  3039. */
  3040. connection_t *
  3041. connection_get_by_type_state_rendquery(int type, int state,
  3042. const char *rendquery)
  3043. {
  3044. smartlist_t *conns = get_connection_array();
  3045. tor_assert(type == CONN_TYPE_DIR ||
  3046. type == CONN_TYPE_AP || type == CONN_TYPE_EXIT);
  3047. tor_assert(rendquery);
  3048. SMARTLIST_FOREACH(conns, connection_t *, conn,
  3049. {
  3050. if (conn->type == type &&
  3051. !conn->marked_for_close &&
  3052. (!state || state == conn->state)) {
  3053. if (type == CONN_TYPE_DIR &&
  3054. TO_DIR_CONN(conn)->rend_data &&
  3055. !rend_cmp_service_ids(rendquery,
  3056. TO_DIR_CONN(conn)->rend_data->onion_address))
  3057. return conn;
  3058. else if (CONN_IS_EDGE(conn) &&
  3059. TO_EDGE_CONN(conn)->rend_data &&
  3060. !rend_cmp_service_ids(rendquery,
  3061. TO_EDGE_CONN(conn)->rend_data->onion_address))
  3062. return conn;
  3063. }
  3064. });
  3065. return NULL;
  3066. }
  3067. /** Return a directory connection (if any one exists) that is fetching
  3068. * the item described by <b>state</b>/<b>resource</b> */
  3069. dir_connection_t *
  3070. connection_dir_get_by_purpose_and_resource(int purpose,
  3071. const char *resource)
  3072. {
  3073. smartlist_t *conns = get_connection_array();
  3074. SMARTLIST_FOREACH_BEGIN(conns, connection_t *, conn) {
  3075. dir_connection_t *dirconn;
  3076. if (conn->type != CONN_TYPE_DIR || conn->marked_for_close ||
  3077. conn->purpose != purpose)
  3078. continue;
  3079. dirconn = TO_DIR_CONN(conn);
  3080. if (dirconn->requested_resource == NULL) {
  3081. if (resource == NULL)
  3082. return dirconn;
  3083. } else if (resource) {
  3084. if (0 == strcmp(resource, dirconn->requested_resource))
  3085. return dirconn;
  3086. }
  3087. } SMARTLIST_FOREACH_END(conn);
  3088. return NULL;
  3089. }
  3090. /** Return an open, non-marked connection of a given type and purpose, or NULL
  3091. * if no such connection exists. */
  3092. connection_t *
  3093. connection_get_by_type_purpose(int type, int purpose)
  3094. {
  3095. smartlist_t *conns = get_connection_array();
  3096. SMARTLIST_FOREACH(conns, connection_t *, conn,
  3097. {
  3098. if (conn->type == type &&
  3099. !conn->marked_for_close &&
  3100. (purpose == conn->purpose))
  3101. return conn;
  3102. });
  3103. return NULL;
  3104. }
  3105. /** Return 1 if <b>conn</b> is a listener conn, else return 0. */
  3106. int
  3107. connection_is_listener(connection_t *conn)
  3108. {
  3109. if (conn->type == CONN_TYPE_OR_LISTENER ||
  3110. conn->type == CONN_TYPE_AP_LISTENER ||
  3111. conn->type == CONN_TYPE_AP_TRANS_LISTENER ||
  3112. conn->type == CONN_TYPE_AP_DNS_LISTENER ||
  3113. conn->type == CONN_TYPE_AP_NATD_LISTENER ||
  3114. conn->type == CONN_TYPE_DIR_LISTENER ||
  3115. conn->type == CONN_TYPE_CONTROL_LISTENER)
  3116. return 1;
  3117. return 0;
  3118. }
  3119. /** Return 1 if <b>conn</b> is in state "open" and is not marked
  3120. * for close, else return 0.
  3121. */
  3122. int
  3123. connection_state_is_open(connection_t *conn)
  3124. {
  3125. tor_assert(conn);
  3126. if (conn->marked_for_close)
  3127. return 0;
  3128. if ((conn->type == CONN_TYPE_OR && conn->state == OR_CONN_STATE_OPEN) ||
  3129. (conn->type == CONN_TYPE_AP && conn->state == AP_CONN_STATE_OPEN) ||
  3130. (conn->type == CONN_TYPE_EXIT && conn->state == EXIT_CONN_STATE_OPEN) ||
  3131. (conn->type == CONN_TYPE_CONTROL &&
  3132. conn->state == CONTROL_CONN_STATE_OPEN))
  3133. return 1;
  3134. return 0;
  3135. }
  3136. /** Return 1 if conn is in 'connecting' state, else return 0. */
  3137. int
  3138. connection_state_is_connecting(connection_t *conn)
  3139. {
  3140. tor_assert(conn);
  3141. if (conn->marked_for_close)
  3142. return 0;
  3143. switch (conn->type)
  3144. {
  3145. case CONN_TYPE_OR:
  3146. return conn->state == OR_CONN_STATE_CONNECTING;
  3147. case CONN_TYPE_EXIT:
  3148. return conn->state == EXIT_CONN_STATE_CONNECTING;
  3149. case CONN_TYPE_DIR:
  3150. return conn->state == DIR_CONN_STATE_CONNECTING;
  3151. }
  3152. return 0;
  3153. }
  3154. /** Allocates a base64'ed authenticator for use in http or https
  3155. * auth, based on the input string <b>authenticator</b>. Returns it
  3156. * if success, else returns NULL. */
  3157. char *
  3158. alloc_http_authenticator(const char *authenticator)
  3159. {
  3160. /* an authenticator in Basic authentication
  3161. * is just the string "username:password" */
  3162. const size_t authenticator_length = strlen(authenticator);
  3163. /* The base64_encode function needs a minimum buffer length
  3164. * of 66 bytes. */
  3165. const size_t base64_authenticator_length = (authenticator_length/48+1)*66;
  3166. char *base64_authenticator = tor_malloc(base64_authenticator_length);
  3167. if (base64_encode(base64_authenticator, base64_authenticator_length,
  3168. authenticator, authenticator_length) < 0) {
  3169. tor_free(base64_authenticator); /* free and set to null */
  3170. } else {
  3171. /* remove extra \n at end of encoding */
  3172. base64_authenticator[strlen(base64_authenticator) - 1] = 0;
  3173. }
  3174. return base64_authenticator;
  3175. }
  3176. /** Given a socket handle, check whether the local address (sockname) of the
  3177. * socket is one that we've connected from before. If so, double-check
  3178. * whether our address has changed and we need to generate keys. If we do,
  3179. * call init_keys().
  3180. */
  3181. static void
  3182. client_check_address_changed(int sock)
  3183. {
  3184. uint32_t iface_ip, ip_out; /* host order */
  3185. struct sockaddr_in out_addr;
  3186. socklen_t out_addr_len = (socklen_t) sizeof(out_addr);
  3187. uint32_t *ip; /* host order */
  3188. if (!last_interface_ip)
  3189. get_interface_address(LOG_INFO, &last_interface_ip);
  3190. if (!outgoing_addrs)
  3191. outgoing_addrs = smartlist_create();
  3192. if (getsockname(sock, (struct sockaddr*)&out_addr, &out_addr_len)<0) {
  3193. int e = tor_socket_errno(sock);
  3194. log_warn(LD_NET, "getsockname() to check for address change failed: %s",
  3195. tor_socket_strerror(e));
  3196. return;
  3197. }
  3198. /* If we've used this address previously, we're okay. */
  3199. ip_out = ntohl(out_addr.sin_addr.s_addr);
  3200. SMARTLIST_FOREACH(outgoing_addrs, uint32_t*, ip_ptr,
  3201. if (*ip_ptr == ip_out) return;
  3202. );
  3203. /* Uh-oh. We haven't connected from this address before. Has the interface
  3204. * address changed? */
  3205. if (get_interface_address(LOG_INFO, &iface_ip)<0)
  3206. return;
  3207. ip = tor_malloc(sizeof(uint32_t));
  3208. *ip = ip_out;
  3209. if (iface_ip == last_interface_ip) {
  3210. /* Nope, it hasn't changed. Add this address to the list. */
  3211. smartlist_add(outgoing_addrs, ip);
  3212. } else {
  3213. /* The interface changed. We're a client, so we need to regenerate our
  3214. * keys. First, reset the state. */
  3215. log(LOG_NOTICE, LD_NET, "Our IP address has changed. Rotating keys...");
  3216. last_interface_ip = iface_ip;
  3217. SMARTLIST_FOREACH(outgoing_addrs, void*, ip_ptr, tor_free(ip_ptr));
  3218. smartlist_clear(outgoing_addrs);
  3219. smartlist_add(outgoing_addrs, ip);
  3220. /* Okay, now change our keys. */
  3221. ip_address_changed(1);
  3222. }
  3223. }
  3224. /** Some systems have limited system buffers for recv and xmit on
  3225. * sockets allocated in a virtual server or similar environment. For a Tor
  3226. * server this can produce the "Error creating network socket: No buffer
  3227. * space available" error once all available TCP buffer space is consumed.
  3228. * This method will attempt to constrain the buffers allocated for the socket
  3229. * to the desired size to stay below system TCP buffer limits.
  3230. */
  3231. static void
  3232. set_constrained_socket_buffers(int sock, int size)
  3233. {
  3234. void *sz = (void*)&size;
  3235. socklen_t sz_sz = (socklen_t) sizeof(size);
  3236. if (setsockopt(sock, SOL_SOCKET, SO_SNDBUF, sz, sz_sz) < 0) {
  3237. int e = tor_socket_errno(sock);
  3238. log_warn(LD_NET, "setsockopt() to constrain send "
  3239. "buffer to %d bytes failed: %s", size, tor_socket_strerror(e));
  3240. }
  3241. if (setsockopt(sock, SOL_SOCKET, SO_RCVBUF, sz, sz_sz) < 0) {
  3242. int e = tor_socket_errno(sock);
  3243. log_warn(LD_NET, "setsockopt() to constrain recv "
  3244. "buffer to %d bytes failed: %s", size, tor_socket_strerror(e));
  3245. }
  3246. }
  3247. /** Process new bytes that have arrived on conn-\>inbuf.
  3248. *
  3249. * This function just passes conn to the connection-specific
  3250. * connection_*_process_inbuf() function. It also passes in
  3251. * package_partial if wanted.
  3252. */
  3253. static int
  3254. connection_process_inbuf(connection_t *conn, int package_partial)
  3255. {
  3256. tor_assert(conn);
  3257. switch (conn->type) {
  3258. case CONN_TYPE_OR:
  3259. return connection_or_process_inbuf(TO_OR_CONN(conn));
  3260. case CONN_TYPE_EXIT:
  3261. case CONN_TYPE_AP:
  3262. return connection_edge_process_inbuf(TO_EDGE_CONN(conn),
  3263. package_partial);
  3264. case CONN_TYPE_DIR:
  3265. return connection_dir_process_inbuf(TO_DIR_CONN(conn));
  3266. case CONN_TYPE_CPUWORKER:
  3267. return connection_cpu_process_inbuf(conn);
  3268. case CONN_TYPE_CONTROL:
  3269. return connection_control_process_inbuf(TO_CONTROL_CONN(conn));
  3270. default:
  3271. log_err(LD_BUG,"got unexpected conn type %d.", conn->type);
  3272. tor_fragile_assert();
  3273. return -1;
  3274. }
  3275. }
  3276. /** Called whenever we've written data on a connection. */
  3277. static int
  3278. connection_flushed_some(connection_t *conn)
  3279. {
  3280. int r = 0;
  3281. tor_assert(!conn->in_flushed_some);
  3282. conn->in_flushed_some = 1;
  3283. if (conn->type == CONN_TYPE_DIR &&
  3284. conn->state == DIR_CONN_STATE_SERVER_WRITING) {
  3285. r = connection_dirserv_flushed_some(TO_DIR_CONN(conn));
  3286. } else if (conn->type == CONN_TYPE_OR) {
  3287. r = connection_or_flushed_some(TO_OR_CONN(conn));
  3288. }
  3289. conn->in_flushed_some = 0;
  3290. return r;
  3291. }
  3292. /** We just finished flushing bytes from conn-\>outbuf, and there
  3293. * are no more bytes remaining.
  3294. *
  3295. * This function just passes conn to the connection-specific
  3296. * connection_*_finished_flushing() function.
  3297. */
  3298. static int
  3299. connection_finished_flushing(connection_t *conn)
  3300. {
  3301. tor_assert(conn);
  3302. /* If the connection is closed, don't try to do anything more here. */
  3303. if (CONN_IS_CLOSED(conn))
  3304. return 0;
  3305. // log_fn(LOG_DEBUG,"entered. Socket %u.", conn->s);
  3306. IF_HAS_NO_BUFFEREVENT(conn)
  3307. connection_stop_writing(conn);
  3308. switch (conn->type) {
  3309. case CONN_TYPE_OR:
  3310. return connection_or_finished_flushing(TO_OR_CONN(conn));
  3311. case CONN_TYPE_AP:
  3312. case CONN_TYPE_EXIT:
  3313. return connection_edge_finished_flushing(TO_EDGE_CONN(conn));
  3314. case CONN_TYPE_DIR:
  3315. return connection_dir_finished_flushing(TO_DIR_CONN(conn));
  3316. case CONN_TYPE_CPUWORKER:
  3317. return connection_cpu_finished_flushing(conn);
  3318. case CONN_TYPE_CONTROL:
  3319. return connection_control_finished_flushing(TO_CONTROL_CONN(conn));
  3320. default:
  3321. log_err(LD_BUG,"got unexpected conn type %d.", conn->type);
  3322. tor_fragile_assert();
  3323. return -1;
  3324. }
  3325. }
  3326. /** Called when our attempt to connect() to another server has just
  3327. * succeeded.
  3328. *
  3329. * This function just passes conn to the connection-specific
  3330. * connection_*_finished_connecting() function.
  3331. */
  3332. static int
  3333. connection_finished_connecting(connection_t *conn)
  3334. {
  3335. tor_assert(conn);
  3336. switch (conn->type)
  3337. {
  3338. case CONN_TYPE_OR:
  3339. return connection_or_finished_connecting(TO_OR_CONN(conn));
  3340. case CONN_TYPE_EXIT:
  3341. return connection_edge_finished_connecting(TO_EDGE_CONN(conn));
  3342. case CONN_TYPE_DIR:
  3343. return connection_dir_finished_connecting(TO_DIR_CONN(conn));
  3344. default:
  3345. log_err(LD_BUG,"got unexpected conn type %d.", conn->type);
  3346. tor_fragile_assert();
  3347. return -1;
  3348. }
  3349. }
  3350. /** Callback: invoked when a connection reaches an EOF event. */
  3351. static int
  3352. connection_reached_eof(connection_t *conn)
  3353. {
  3354. switch (conn->type) {
  3355. case CONN_TYPE_OR:
  3356. return connection_or_reached_eof(TO_OR_CONN(conn));
  3357. case CONN_TYPE_AP:
  3358. case CONN_TYPE_EXIT:
  3359. return connection_edge_reached_eof(TO_EDGE_CONN(conn));
  3360. case CONN_TYPE_DIR:
  3361. return connection_dir_reached_eof(TO_DIR_CONN(conn));
  3362. case CONN_TYPE_CPUWORKER:
  3363. return connection_cpu_reached_eof(conn);
  3364. case CONN_TYPE_CONTROL:
  3365. return connection_control_reached_eof(TO_CONTROL_CONN(conn));
  3366. default:
  3367. log_err(LD_BUG,"got unexpected conn type %d.", conn->type);
  3368. tor_fragile_assert();
  3369. return -1;
  3370. }
  3371. }
  3372. /** Log how many bytes are used by buffers of different kinds and sizes. */
  3373. void
  3374. connection_dump_buffer_mem_stats(int severity)
  3375. {
  3376. uint64_t used_by_type[_CONN_TYPE_MAX+1];
  3377. uint64_t alloc_by_type[_CONN_TYPE_MAX+1];
  3378. int n_conns_by_type[_CONN_TYPE_MAX+1];
  3379. uint64_t total_alloc = 0;
  3380. uint64_t total_used = 0;
  3381. int i;
  3382. smartlist_t *conns = get_connection_array();
  3383. memset(used_by_type, 0, sizeof(used_by_type));
  3384. memset(alloc_by_type, 0, sizeof(alloc_by_type));
  3385. memset(n_conns_by_type, 0, sizeof(n_conns_by_type));
  3386. SMARTLIST_FOREACH(conns, connection_t *, c,
  3387. {
  3388. int tp = c->type;
  3389. ++n_conns_by_type[tp];
  3390. if (c->inbuf) {
  3391. used_by_type[tp] += buf_datalen(c->inbuf);
  3392. alloc_by_type[tp] += buf_allocation(c->inbuf);
  3393. }
  3394. if (c->outbuf) {
  3395. used_by_type[tp] += buf_datalen(c->outbuf);
  3396. alloc_by_type[tp] += buf_allocation(c->outbuf);
  3397. }
  3398. });
  3399. for (i=0; i <= _CONN_TYPE_MAX; ++i) {
  3400. total_used += used_by_type[i];
  3401. total_alloc += alloc_by_type[i];
  3402. }
  3403. log(severity, LD_GENERAL,
  3404. "In buffers for %d connections: "U64_FORMAT" used/"U64_FORMAT" allocated",
  3405. smartlist_len(conns),
  3406. U64_PRINTF_ARG(total_used), U64_PRINTF_ARG(total_alloc));
  3407. for (i=_CONN_TYPE_MIN; i <= _CONN_TYPE_MAX; ++i) {
  3408. if (!n_conns_by_type[i])
  3409. continue;
  3410. log(severity, LD_GENERAL,
  3411. " For %d %s connections: "U64_FORMAT" used/"U64_FORMAT" allocated",
  3412. n_conns_by_type[i], conn_type_to_string(i),
  3413. U64_PRINTF_ARG(used_by_type[i]), U64_PRINTF_ARG(alloc_by_type[i]));
  3414. }
  3415. }
  3416. /** Verify that connection <b>conn</b> has all of its invariants
  3417. * correct. Trigger an assert if anything is invalid.
  3418. */
  3419. void
  3420. assert_connection_ok(connection_t *conn, time_t now)
  3421. {
  3422. (void) now; /* XXXX unused. */
  3423. tor_assert(conn);
  3424. tor_assert(conn->type >= _CONN_TYPE_MIN);
  3425. tor_assert(conn->type <= _CONN_TYPE_MAX);
  3426. #ifdef USE_BUFFEREVENTS
  3427. if (conn->bufev) {
  3428. tor_assert(conn->read_event == NULL);
  3429. tor_assert(conn->write_event == NULL);
  3430. tor_assert(conn->inbuf == NULL);
  3431. tor_assert(conn->outbuf == NULL);
  3432. }
  3433. #endif
  3434. switch (conn->type) {
  3435. case CONN_TYPE_OR:
  3436. tor_assert(conn->magic == OR_CONNECTION_MAGIC);
  3437. break;
  3438. case CONN_TYPE_AP:
  3439. case CONN_TYPE_EXIT:
  3440. tor_assert(conn->magic == EDGE_CONNECTION_MAGIC);
  3441. break;
  3442. case CONN_TYPE_DIR:
  3443. tor_assert(conn->magic == DIR_CONNECTION_MAGIC);
  3444. break;
  3445. case CONN_TYPE_CONTROL:
  3446. tor_assert(conn->magic == CONTROL_CONNECTION_MAGIC);
  3447. break;
  3448. default:
  3449. tor_assert(conn->magic == BASE_CONNECTION_MAGIC);
  3450. break;
  3451. }
  3452. if (conn->linked_conn) {
  3453. tor_assert(conn->linked_conn->linked_conn == conn);
  3454. tor_assert(conn->linked);
  3455. }
  3456. if (conn->linked)
  3457. tor_assert(conn->s < 0);
  3458. if (conn->outbuf_flushlen > 0) {
  3459. tor_assert(connection_is_writing(conn) || conn->write_blocked_on_bw ||
  3460. (CONN_IS_EDGE(conn) && TO_EDGE_CONN(conn)->edge_blocked_on_circ));
  3461. }
  3462. if (conn->hold_open_until_flushed)
  3463. tor_assert(conn->marked_for_close);
  3464. /* XXXX check: read_blocked_on_bw, write_blocked_on_bw, s, conn_array_index,
  3465. * marked_for_close. */
  3466. /* buffers */
  3467. if (conn->inbuf)
  3468. assert_buf_ok(conn->inbuf);
  3469. if (conn->outbuf)
  3470. assert_buf_ok(conn->outbuf);
  3471. if (conn->type == CONN_TYPE_OR) {
  3472. or_connection_t *or_conn = TO_OR_CONN(conn);
  3473. if (conn->state == OR_CONN_STATE_OPEN) {
  3474. /* tor_assert(conn->bandwidth > 0); */
  3475. /* the above isn't necessarily true: if we just did a TLS
  3476. * handshake but we didn't recognize the other peer, or it
  3477. * gave a bad cert/etc, then we won't have assigned bandwidth,
  3478. * yet it will be open. -RD
  3479. */
  3480. // tor_assert(conn->read_bucket >= 0);
  3481. }
  3482. // tor_assert(conn->addr && conn->port);
  3483. tor_assert(conn->address);
  3484. if (conn->state > OR_CONN_STATE_PROXY_HANDSHAKING)
  3485. tor_assert(or_conn->tls);
  3486. }
  3487. if (CONN_IS_EDGE(conn)) {
  3488. edge_connection_t *edge_conn = TO_EDGE_CONN(conn);
  3489. if (edge_conn->chosen_exit_optional || edge_conn->chosen_exit_retries) {
  3490. tor_assert(conn->type == CONN_TYPE_AP);
  3491. tor_assert(edge_conn->chosen_exit_name);
  3492. }
  3493. /* XXX unchecked: package window, deliver window. */
  3494. if (conn->type == CONN_TYPE_AP) {
  3495. tor_assert(edge_conn->socks_request);
  3496. if (conn->state == AP_CONN_STATE_OPEN) {
  3497. tor_assert(edge_conn->socks_request->has_finished);
  3498. if (!conn->marked_for_close) {
  3499. tor_assert(edge_conn->cpath_layer);
  3500. assert_cpath_layer_ok(edge_conn->cpath_layer);
  3501. }
  3502. }
  3503. }
  3504. if (conn->type == CONN_TYPE_EXIT) {
  3505. tor_assert(conn->purpose == EXIT_PURPOSE_CONNECT ||
  3506. conn->purpose == EXIT_PURPOSE_RESOLVE);
  3507. }
  3508. } else if (conn->type == CONN_TYPE_DIR) {
  3509. } else {
  3510. /* Purpose is only used for dir and exit types currently */
  3511. tor_assert(!conn->purpose);
  3512. }
  3513. switch (conn->type)
  3514. {
  3515. case CONN_TYPE_OR_LISTENER:
  3516. case CONN_TYPE_AP_LISTENER:
  3517. case CONN_TYPE_AP_TRANS_LISTENER:
  3518. case CONN_TYPE_AP_NATD_LISTENER:
  3519. case CONN_TYPE_DIR_LISTENER:
  3520. case CONN_TYPE_CONTROL_LISTENER:
  3521. case CONN_TYPE_AP_DNS_LISTENER:
  3522. tor_assert(conn->state == LISTENER_STATE_READY);
  3523. break;
  3524. case CONN_TYPE_OR:
  3525. tor_assert(conn->state >= _OR_CONN_STATE_MIN);
  3526. tor_assert(conn->state <= _OR_CONN_STATE_MAX);
  3527. tor_assert(TO_OR_CONN(conn)->n_circuits >= 0);
  3528. break;
  3529. case CONN_TYPE_EXIT:
  3530. tor_assert(conn->state >= _EXIT_CONN_STATE_MIN);
  3531. tor_assert(conn->state <= _EXIT_CONN_STATE_MAX);
  3532. tor_assert(conn->purpose >= _EXIT_PURPOSE_MIN);
  3533. tor_assert(conn->purpose <= _EXIT_PURPOSE_MAX);
  3534. break;
  3535. case CONN_TYPE_AP:
  3536. tor_assert(conn->state >= _AP_CONN_STATE_MIN);
  3537. tor_assert(conn->state <= _AP_CONN_STATE_MAX);
  3538. tor_assert(TO_EDGE_CONN(conn)->socks_request);
  3539. break;
  3540. case CONN_TYPE_DIR:
  3541. tor_assert(conn->state >= _DIR_CONN_STATE_MIN);
  3542. tor_assert(conn->state <= _DIR_CONN_STATE_MAX);
  3543. tor_assert(conn->purpose >= _DIR_PURPOSE_MIN);
  3544. tor_assert(conn->purpose <= _DIR_PURPOSE_MAX);
  3545. break;
  3546. case CONN_TYPE_CPUWORKER:
  3547. tor_assert(conn->state >= _CPUWORKER_STATE_MIN);
  3548. tor_assert(conn->state <= _CPUWORKER_STATE_MAX);
  3549. break;
  3550. case CONN_TYPE_CONTROL:
  3551. tor_assert(conn->state >= _CONTROL_CONN_STATE_MIN);
  3552. tor_assert(conn->state <= _CONTROL_CONN_STATE_MAX);
  3553. break;
  3554. default:
  3555. tor_assert(0);
  3556. }
  3557. }