channel.c 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140
  1. /* * Copyright (c) 2012-2013, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file channel.c
  5. * \brief OR-to-OR channel abstraction layer
  6. **/
  7. /*
  8. * Define this so channel.h gives us things only channel_t subclasses
  9. * should touch.
  10. */
  11. #define TOR_CHANNEL_INTERNAL_
  12. #include "or.h"
  13. #include "channel.h"
  14. #include "channeltls.h"
  15. #include "circuitbuild.h"
  16. #include "circuitlist.h"
  17. #include "circuitstats.h"
  18. #include "connection_or.h" /* For var_cell_free() */
  19. #include "circuitmux.h"
  20. #include "entrynodes.h"
  21. #include "geoip.h"
  22. #include "nodelist.h"
  23. #include "relay.h"
  24. #include "rephist.h"
  25. #include "router.h"
  26. #include "routerlist.h"
  27. /* Cell queue structure */
  28. typedef struct cell_queue_entry_s cell_queue_entry_t;
  29. struct cell_queue_entry_s {
  30. TOR_SIMPLEQ_ENTRY(cell_queue_entry_s) next;
  31. enum {
  32. CELL_QUEUE_FIXED,
  33. CELL_QUEUE_VAR,
  34. CELL_QUEUE_PACKED
  35. } type;
  36. union {
  37. struct {
  38. cell_t *cell;
  39. } fixed;
  40. struct {
  41. var_cell_t *var_cell;
  42. } var;
  43. struct {
  44. packed_cell_t *packed_cell;
  45. } packed;
  46. } u;
  47. };
  48. /* Global lists of channels */
  49. /* All channel_t instances */
  50. static smartlist_t *all_channels = NULL;
  51. /* All channel_t instances not in ERROR or CLOSED states */
  52. static smartlist_t *active_channels = NULL;
  53. /* All channel_t instances in ERROR or CLOSED states */
  54. static smartlist_t *finished_channels = NULL;
  55. /* All channel_listener_t instances */
  56. static smartlist_t *all_listeners = NULL;
  57. /* All channel_listener_t instances in LISTENING state */
  58. static smartlist_t *active_listeners = NULL;
  59. /* All channel_listener_t instances in LISTENING state */
  60. static smartlist_t *finished_listeners = NULL;
  61. /* Counter for ID numbers */
  62. static uint64_t n_channels_allocated = 0;
  63. /* Digest->channel map
  64. *
  65. * Similar to the one used in connection_or.c, this maps from the identity
  66. * digest of a remote endpoint to a channel_t to that endpoint. Channels
  67. * should be placed here when registered and removed when they close or error.
  68. * If more than one channel exists, follow the next_with_same_id pointer
  69. * as a linked list.
  70. */
  71. HT_HEAD(channel_idmap, channel_idmap_entry_s) channel_identity_map =
  72. HT_INITIALIZER();
  73. typedef struct channel_idmap_entry_s {
  74. HT_ENTRY(channel_idmap_entry_s) node;
  75. uint8_t digest[DIGEST_LEN];
  76. TOR_LIST_HEAD(channel_list_s, channel_s) channel_list;
  77. } channel_idmap_entry_t;
  78. static INLINE unsigned
  79. channel_idmap_hash(const channel_idmap_entry_t *ent)
  80. {
  81. const unsigned *a = (const unsigned *)ent->digest;
  82. #if SIZEOF_INT == 4
  83. return a[0] ^ a[1] ^ a[2] ^ a[3] ^ a[4];
  84. #elif SIZEOF_INT == 8
  85. return a[0] ^ a[1];
  86. #endif
  87. }
  88. static INLINE int
  89. channel_idmap_eq(const channel_idmap_entry_t *a,
  90. const channel_idmap_entry_t *b)
  91. {
  92. return tor_memeq(a->digest, b->digest, DIGEST_LEN);
  93. }
  94. HT_PROTOTYPE(channel_idmap, channel_idmap_entry_s, node, channel_idmap_hash,
  95. channel_idmap_eq);
  96. HT_GENERATE(channel_idmap, channel_idmap_entry_s, node, channel_idmap_hash,
  97. channel_idmap_eq, 0.5, tor_malloc, tor_realloc, tor_free_);
  98. static cell_queue_entry_t * cell_queue_entry_dup(cell_queue_entry_t *q);
  99. static void cell_queue_entry_free(cell_queue_entry_t *q, int handed_off);
  100. static int cell_queue_entry_is_padding(cell_queue_entry_t *q);
  101. static cell_queue_entry_t *
  102. cell_queue_entry_new_fixed(cell_t *cell);
  103. static cell_queue_entry_t *
  104. cell_queue_entry_new_var(var_cell_t *var_cell);
  105. /* Functions to maintain the digest map */
  106. static void channel_add_to_digest_map(channel_t *chan);
  107. static void channel_remove_from_digest_map(channel_t *chan);
  108. /*
  109. * Flush cells from just the outgoing queue without trying to get them
  110. * from circuits; used internall by channel_flush_some_cells().
  111. */
  112. static ssize_t
  113. channel_flush_some_cells_from_outgoing_queue(channel_t *chan,
  114. ssize_t num_cells);
  115. static void channel_force_free(channel_t *chan);
  116. static void
  117. channel_free_list(smartlist_t *channels, int mark_for_close);
  118. static void
  119. channel_listener_free_list(smartlist_t *channels, int mark_for_close);
  120. static void channel_listener_force_free(channel_listener_t *chan_l);
  121. static void
  122. channel_write_cell_queue_entry(channel_t *chan, cell_queue_entry_t *q);
  123. /***********************************
  124. * Channel state utility functions *
  125. **********************************/
  126. /**
  127. * Indicate whether a given channel state is valid
  128. */
  129. int
  130. channel_state_is_valid(channel_state_t state)
  131. {
  132. int is_valid;
  133. switch (state) {
  134. case CHANNEL_STATE_CLOSED:
  135. case CHANNEL_STATE_CLOSING:
  136. case CHANNEL_STATE_ERROR:
  137. case CHANNEL_STATE_MAINT:
  138. case CHANNEL_STATE_OPENING:
  139. case CHANNEL_STATE_OPEN:
  140. is_valid = 1;
  141. break;
  142. case CHANNEL_STATE_LAST:
  143. default:
  144. is_valid = 0;
  145. }
  146. return is_valid;
  147. }
  148. /**
  149. * Indicate whether a given channel listener state is valid
  150. */
  151. int
  152. channel_listener_state_is_valid(channel_listener_state_t state)
  153. {
  154. int is_valid;
  155. switch (state) {
  156. case CHANNEL_LISTENER_STATE_CLOSED:
  157. case CHANNEL_LISTENER_STATE_LISTENING:
  158. case CHANNEL_LISTENER_STATE_CLOSING:
  159. case CHANNEL_LISTENER_STATE_ERROR:
  160. is_valid = 1;
  161. break;
  162. case CHANNEL_LISTENER_STATE_LAST:
  163. default:
  164. is_valid = 0;
  165. }
  166. return is_valid;
  167. }
  168. /**
  169. * Indicate whether a channel state transition is valid
  170. *
  171. * This function takes two channel states and indicates whether a
  172. * transition between them is permitted (see the state definitions and
  173. * transition table in or.h at the channel_state_t typedef).
  174. */
  175. int
  176. channel_state_can_transition(channel_state_t from, channel_state_t to)
  177. {
  178. int is_valid;
  179. switch (from) {
  180. case CHANNEL_STATE_CLOSED:
  181. is_valid = (to == CHANNEL_STATE_OPENING);
  182. break;
  183. case CHANNEL_STATE_CLOSING:
  184. is_valid = (to == CHANNEL_STATE_CLOSED ||
  185. to == CHANNEL_STATE_ERROR);
  186. break;
  187. case CHANNEL_STATE_ERROR:
  188. is_valid = 0;
  189. break;
  190. case CHANNEL_STATE_MAINT:
  191. is_valid = (to == CHANNEL_STATE_CLOSING ||
  192. to == CHANNEL_STATE_ERROR ||
  193. to == CHANNEL_STATE_OPEN);
  194. break;
  195. case CHANNEL_STATE_OPENING:
  196. is_valid = (to == CHANNEL_STATE_CLOSING ||
  197. to == CHANNEL_STATE_ERROR ||
  198. to == CHANNEL_STATE_OPEN);
  199. break;
  200. case CHANNEL_STATE_OPEN:
  201. is_valid = (to == CHANNEL_STATE_CLOSING ||
  202. to == CHANNEL_STATE_ERROR ||
  203. to == CHANNEL_STATE_MAINT);
  204. break;
  205. case CHANNEL_STATE_LAST:
  206. default:
  207. is_valid = 0;
  208. }
  209. return is_valid;
  210. }
  211. /**
  212. * Indicate whether a channel listener state transition is valid
  213. *
  214. * This function takes two channel listener states and indicates whether a
  215. * transition between them is permitted (see the state definitions and
  216. * transition table in or.h at the channel_listener_state_t typedef).
  217. */
  218. int
  219. channel_listener_state_can_transition(channel_listener_state_t from,
  220. channel_listener_state_t to)
  221. {
  222. int is_valid;
  223. switch (from) {
  224. case CHANNEL_LISTENER_STATE_CLOSED:
  225. is_valid = (to == CHANNEL_LISTENER_STATE_LISTENING);
  226. break;
  227. case CHANNEL_LISTENER_STATE_CLOSING:
  228. is_valid = (to == CHANNEL_LISTENER_STATE_CLOSED ||
  229. to == CHANNEL_LISTENER_STATE_ERROR);
  230. break;
  231. case CHANNEL_LISTENER_STATE_ERROR:
  232. is_valid = 0;
  233. break;
  234. case CHANNEL_LISTENER_STATE_LISTENING:
  235. is_valid = (to == CHANNEL_LISTENER_STATE_CLOSING ||
  236. to == CHANNEL_LISTENER_STATE_ERROR);
  237. break;
  238. case CHANNEL_LISTENER_STATE_LAST:
  239. default:
  240. is_valid = 0;
  241. }
  242. return is_valid;
  243. }
  244. /**
  245. * Return a human-readable description for a channel state
  246. */
  247. const char *
  248. channel_state_to_string(channel_state_t state)
  249. {
  250. const char *descr;
  251. switch (state) {
  252. case CHANNEL_STATE_CLOSED:
  253. descr = "closed";
  254. break;
  255. case CHANNEL_STATE_CLOSING:
  256. descr = "closing";
  257. break;
  258. case CHANNEL_STATE_ERROR:
  259. descr = "channel error";
  260. break;
  261. case CHANNEL_STATE_MAINT:
  262. descr = "temporarily suspended for maintenance";
  263. break;
  264. case CHANNEL_STATE_OPENING:
  265. descr = "opening";
  266. break;
  267. case CHANNEL_STATE_OPEN:
  268. descr = "open";
  269. break;
  270. case CHANNEL_STATE_LAST:
  271. default:
  272. descr = "unknown or invalid channel state";
  273. }
  274. return descr;
  275. }
  276. /**
  277. * Return a human-readable description for a channel listenier state
  278. */
  279. const char *
  280. channel_listener_state_to_string(channel_listener_state_t state)
  281. {
  282. const char *descr;
  283. switch (state) {
  284. case CHANNEL_LISTENER_STATE_CLOSED:
  285. descr = "closed";
  286. break;
  287. case CHANNEL_LISTENER_STATE_CLOSING:
  288. descr = "closing";
  289. break;
  290. case CHANNEL_LISTENER_STATE_ERROR:
  291. descr = "channel listener error";
  292. break;
  293. case CHANNEL_LISTENER_STATE_LISTENING:
  294. descr = "listening";
  295. break;
  296. case CHANNEL_LISTENER_STATE_LAST:
  297. default:
  298. descr = "unknown or invalid channel listener state";
  299. }
  300. return descr;
  301. }
  302. /***************************************
  303. * Channel registration/unregistration *
  304. ***************************************/
  305. /**
  306. * Register a channel
  307. *
  308. * This function registers a newly created channel in the global lists/maps
  309. * of active channels.
  310. */
  311. void
  312. channel_register(channel_t *chan)
  313. {
  314. tor_assert(chan);
  315. /* No-op if already registered */
  316. if (chan->registered) return;
  317. log_debug(LD_CHANNEL,
  318. "Registering channel %p (ID " U64_FORMAT ") "
  319. "in state %s (%d) with digest %s",
  320. chan, U64_PRINTF_ARG(chan->global_identifier),
  321. channel_state_to_string(chan->state), chan->state,
  322. hex_str(chan->identity_digest, DIGEST_LEN));
  323. /* Make sure we have all_channels, then add it */
  324. if (!all_channels) all_channels = smartlist_new();
  325. smartlist_add(all_channels, chan);
  326. /* Is it finished? */
  327. if (chan->state == CHANNEL_STATE_CLOSED ||
  328. chan->state == CHANNEL_STATE_ERROR) {
  329. /* Put it in the finished list, creating it if necessary */
  330. if (!finished_channels) finished_channels = smartlist_new();
  331. smartlist_add(finished_channels, chan);
  332. } else {
  333. /* Put it in the active list, creating it if necessary */
  334. if (!active_channels) active_channels = smartlist_new();
  335. smartlist_add(active_channels, chan);
  336. if (chan->state != CHANNEL_STATE_CLOSING) {
  337. /* It should have a digest set */
  338. if (!tor_digest_is_zero(chan->identity_digest)) {
  339. /* Yeah, we're good, add it to the map */
  340. channel_add_to_digest_map(chan);
  341. } else {
  342. log_info(LD_CHANNEL,
  343. "Channel %p (global ID " U64_FORMAT ") "
  344. "in state %s (%d) registered with no identity digest",
  345. chan, U64_PRINTF_ARG(chan->global_identifier),
  346. channel_state_to_string(chan->state), chan->state);
  347. }
  348. }
  349. }
  350. /* Mark it as registered */
  351. chan->registered = 1;
  352. }
  353. /**
  354. * Unregister a channel
  355. *
  356. * This function removes a channel from the global lists and maps and is used
  357. * when freeing a closed/errored channel.
  358. */
  359. void
  360. channel_unregister(channel_t *chan)
  361. {
  362. tor_assert(chan);
  363. /* No-op if not registered */
  364. if (!(chan->registered)) return;
  365. /* Is it finished? */
  366. if (chan->state == CHANNEL_STATE_CLOSED ||
  367. chan->state == CHANNEL_STATE_ERROR) {
  368. /* Get it out of the finished list */
  369. if (finished_channels) smartlist_remove(finished_channels, chan);
  370. } else {
  371. /* Get it out of the active list */
  372. if (active_channels) smartlist_remove(active_channels, chan);
  373. }
  374. /* Get it out of all_channels */
  375. if (all_channels) smartlist_remove(all_channels, chan);
  376. /* Mark it as unregistered */
  377. chan->registered = 0;
  378. /* Should it be in the digest map? */
  379. if (!tor_digest_is_zero(chan->identity_digest) &&
  380. !(chan->state == CHANNEL_STATE_CLOSING ||
  381. chan->state == CHANNEL_STATE_CLOSED ||
  382. chan->state == CHANNEL_STATE_ERROR)) {
  383. /* Remove it */
  384. channel_remove_from_digest_map(chan);
  385. }
  386. }
  387. /**
  388. * Register a channel listener
  389. *
  390. * This function registers a newly created channel listner in the global
  391. * lists/maps of active channel listeners.
  392. */
  393. void
  394. channel_listener_register(channel_listener_t *chan_l)
  395. {
  396. tor_assert(chan_l);
  397. /* No-op if already registered */
  398. if (chan_l->registered) return;
  399. log_debug(LD_CHANNEL,
  400. "Registering channel listener %p (ID " U64_FORMAT ") "
  401. "in state %s (%d)",
  402. chan_l, U64_PRINTF_ARG(chan_l->global_identifier),
  403. channel_listener_state_to_string(chan_l->state),
  404. chan_l->state);
  405. /* Make sure we have all_channels, then add it */
  406. if (!all_listeners) all_listeners = smartlist_new();
  407. smartlist_add(all_listeners, chan_l);
  408. /* Is it finished? */
  409. if (chan_l->state == CHANNEL_LISTENER_STATE_CLOSED ||
  410. chan_l->state == CHANNEL_LISTENER_STATE_ERROR) {
  411. /* Put it in the finished list, creating it if necessary */
  412. if (!finished_listeners) finished_listeners = smartlist_new();
  413. smartlist_add(finished_listeners, chan_l);
  414. } else {
  415. /* Put it in the active list, creating it if necessary */
  416. if (!active_listeners) active_listeners = smartlist_new();
  417. smartlist_add(active_listeners, chan_l);
  418. }
  419. /* Mark it as registered */
  420. chan_l->registered = 1;
  421. }
  422. /**
  423. * Unregister a channel listener
  424. *
  425. * This function removes a channel listener from the global lists and maps
  426. * and is used when freeing a closed/errored channel listener.
  427. */
  428. void
  429. channel_listener_unregister(channel_listener_t *chan_l)
  430. {
  431. tor_assert(chan_l);
  432. /* No-op if not registered */
  433. if (!(chan_l->registered)) return;
  434. /* Is it finished? */
  435. if (chan_l->state == CHANNEL_LISTENER_STATE_CLOSED ||
  436. chan_l->state == CHANNEL_LISTENER_STATE_ERROR) {
  437. /* Get it out of the finished list */
  438. if (finished_listeners) smartlist_remove(finished_listeners, chan_l);
  439. } else {
  440. /* Get it out of the active list */
  441. if (active_listeners) smartlist_remove(active_listeners, chan_l);
  442. }
  443. /* Get it out of all_channels */
  444. if (all_listeners) smartlist_remove(all_listeners, chan_l);
  445. /* Mark it as unregistered */
  446. chan_l->registered = 0;
  447. }
  448. /*********************************
  449. * Channel digest map maintenance
  450. *********************************/
  451. /**
  452. * Add a channel to the digest map
  453. *
  454. * This function adds a channel to the digest map and inserts it into the
  455. * correct linked list if channels with that remote endpoint identity digest
  456. * already exist.
  457. */
  458. static void
  459. channel_add_to_digest_map(channel_t *chan)
  460. {
  461. channel_idmap_entry_t *ent, search;
  462. tor_assert(chan);
  463. /* Assert that the state makes sense */
  464. tor_assert(!(chan->state == CHANNEL_STATE_CLOSING ||
  465. chan->state == CHANNEL_STATE_CLOSED ||
  466. chan->state == CHANNEL_STATE_ERROR));
  467. /* Assert that there is a digest */
  468. tor_assert(!tor_digest_is_zero(chan->identity_digest));
  469. memcpy(search.digest, chan->identity_digest, DIGEST_LEN);
  470. ent = HT_FIND(channel_idmap, &channel_identity_map, &search);
  471. if (! ent) {
  472. ent = tor_malloc(sizeof(channel_idmap_entry_t));
  473. memcpy(ent->digest, chan->identity_digest, DIGEST_LEN);
  474. TOR_LIST_INIT(&ent->channel_list);
  475. HT_INSERT(channel_idmap, &channel_identity_map, ent);
  476. }
  477. TOR_LIST_INSERT_HEAD(&ent->channel_list, chan, next_with_same_id);
  478. log_debug(LD_CHANNEL,
  479. "Added channel %p (global ID " U64_FORMAT ") "
  480. "to identity map in state %s (%d) with digest %s",
  481. chan, U64_PRINTF_ARG(chan->global_identifier),
  482. channel_state_to_string(chan->state), chan->state,
  483. hex_str(chan->identity_digest, DIGEST_LEN));
  484. }
  485. /**
  486. * Remove a channel from the digest map
  487. *
  488. * This function removes a channel from the digest map and the linked list of
  489. * channels for that digest if more than one exists.
  490. */
  491. static void
  492. channel_remove_from_digest_map(channel_t *chan)
  493. {
  494. channel_idmap_entry_t *ent, search;
  495. tor_assert(chan);
  496. /* Assert that there is a digest */
  497. tor_assert(!tor_digest_is_zero(chan->identity_digest));
  498. #if 0
  499. /* Make sure we have a map */
  500. if (!channel_identity_map) {
  501. /*
  502. * No identity map, so we can't find it by definition. This
  503. * case is similar to digestmap_get() failing below.
  504. */
  505. log_warn(LD_BUG,
  506. "Trying to remove channel %p (global ID " U64_FORMAT ") "
  507. "with digest %s from identity map, but didn't have any identity "
  508. "map",
  509. chan, U64_PRINTF_ARG(chan->global_identifier),
  510. hex_str(chan->identity_digest, DIGEST_LEN));
  511. /* Clear out its next/prev pointers */
  512. if (chan->next_with_same_id) {
  513. chan->next_with_same_id->prev_with_same_id = chan->prev_with_same_id;
  514. }
  515. if (chan->prev_with_same_id) {
  516. chan->prev_with_same_id->next_with_same_id = chan->next_with_same_id;
  517. }
  518. chan->next_with_same_id = NULL;
  519. chan->prev_with_same_id = NULL;
  520. return;
  521. }
  522. #endif
  523. /* Pull it out of its list, wherever that list is */
  524. TOR_LIST_REMOVE(chan, next_with_same_id);
  525. memcpy(search.digest, chan->identity_digest, DIGEST_LEN);
  526. ent = HT_FIND(channel_idmap, &channel_identity_map, &search);
  527. /* Look for it in the map */
  528. if (ent) {
  529. /* Okay, it's here */
  530. if (TOR_LIST_EMPTY(&ent->channel_list)) {
  531. HT_REMOVE(channel_idmap, &channel_identity_map, ent);
  532. tor_free(ent);
  533. }
  534. log_debug(LD_CHANNEL,
  535. "Removed channel %p (global ID " U64_FORMAT ") from "
  536. "identity map in state %s (%d) with digest %s",
  537. chan, U64_PRINTF_ARG(chan->global_identifier),
  538. channel_state_to_string(chan->state), chan->state,
  539. hex_str(chan->identity_digest, DIGEST_LEN));
  540. } else {
  541. /* Shouldn't happen */
  542. log_warn(LD_BUG,
  543. "Trying to remove channel %p (global ID " U64_FORMAT ") with "
  544. "digest %s from identity map, but couldn't find any with "
  545. "that digest",
  546. chan, U64_PRINTF_ARG(chan->global_identifier),
  547. hex_str(chan->identity_digest, DIGEST_LEN));
  548. }
  549. }
  550. /****************************
  551. * Channel lookup functions *
  552. ***************************/
  553. /**
  554. * Find channel by global ID
  555. *
  556. * This function searches for a channel by the global_identifier assigned
  557. * at initialization time. This identifier is unique for the lifetime of the
  558. * Tor process.
  559. */
  560. channel_t *
  561. channel_find_by_global_id(uint64_t global_identifier)
  562. {
  563. channel_t *rv = NULL;
  564. if (all_channels && smartlist_len(all_channels) > 0) {
  565. SMARTLIST_FOREACH_BEGIN(all_channels, channel_t *, curr) {
  566. if (curr->global_identifier == global_identifier) {
  567. rv = curr;
  568. break;
  569. }
  570. } SMARTLIST_FOREACH_END(curr);
  571. }
  572. return rv;
  573. }
  574. /**
  575. * Find channel by digest of the remote endpoint
  576. *
  577. * This function looks up a channel by the digest of its remote endpoint in
  578. * the channel digest map. It's possible that more than one channel to a
  579. * given endpoint exists. Use channel_next_with_digest() to walk the list.
  580. */
  581. channel_t *
  582. channel_find_by_remote_digest(const char *identity_digest)
  583. {
  584. channel_t *rv = NULL;
  585. channel_idmap_entry_t *ent, search;
  586. tor_assert(identity_digest);
  587. memcpy(search.digest, identity_digest, DIGEST_LEN);
  588. ent = HT_FIND(channel_idmap, &channel_identity_map, &search);
  589. if (ent) {
  590. rv = TOR_LIST_FIRST(&ent->channel_list);
  591. }
  592. return rv;
  593. }
  594. /**
  595. * Get next channel with digest
  596. *
  597. * This function takes a channel and finds the next channel in the list
  598. * with the same digest.
  599. */
  600. channel_t *
  601. channel_next_with_digest(channel_t *chan)
  602. {
  603. tor_assert(chan);
  604. return TOR_LIST_NEXT(chan, next_with_same_id);
  605. }
  606. /**
  607. * Initialize a channel
  608. *
  609. * This function should be called by subclasses to set up some per-channel
  610. * variables. I.e., this is the superclass constructor. Before this, the
  611. * channel should be allocated with tor_malloc_zero().
  612. */
  613. void
  614. channel_init(channel_t *chan)
  615. {
  616. tor_assert(chan);
  617. /* Assign an ID and bump the counter */
  618. chan->global_identifier = n_channels_allocated++;
  619. /* Init timestamp */
  620. chan->timestamp_last_added_nonpadding = time(NULL);
  621. /* Init next_circ_id */
  622. chan->next_circ_id = crypto_rand_int(1 << 15);
  623. /* Initialize queues. */
  624. TOR_SIMPLEQ_INIT(&chan->incoming_queue);
  625. TOR_SIMPLEQ_INIT(&chan->outgoing_queue);
  626. /* Initialize list entries. */
  627. memset(&chan->next_with_same_id, 0, sizeof(chan->next_with_same_id));
  628. /* Timestamp it */
  629. channel_timestamp_created(chan);
  630. /* It hasn't been open yet. */
  631. chan->has_been_open = 0;
  632. }
  633. /**
  634. * Initialize a channel listener
  635. *
  636. * This function should be called by subclasses to set up some per-channel
  637. * variables. I.e., this is the superclass constructor. Before this, the
  638. * channel listener should be allocated with tor_malloc_zero().
  639. */
  640. void
  641. channel_init_listener(channel_listener_t *chan_l)
  642. {
  643. tor_assert(chan_l);
  644. /* Assign an ID and bump the counter */
  645. chan_l->global_identifier = n_channels_allocated++;
  646. /* Timestamp it */
  647. channel_listener_timestamp_created(chan_l);
  648. }
  649. /**
  650. * Free a channel; nothing outside of channel.c and subclasses should call
  651. * this - it frees channels after they have closed and been unregistered.
  652. */
  653. void
  654. channel_free(channel_t *chan)
  655. {
  656. if (!chan) return;
  657. /* It must be closed or errored */
  658. tor_assert(chan->state == CHANNEL_STATE_CLOSED ||
  659. chan->state == CHANNEL_STATE_ERROR);
  660. /* It must be deregistered */
  661. tor_assert(!(chan->registered));
  662. log_debug(LD_CHANNEL,
  663. "Freeing channel " U64_FORMAT " at %p",
  664. U64_PRINTF_ARG(chan->global_identifier), chan);
  665. /*
  666. * Get rid of cmux policy before we do anything, so cmux policies don't
  667. * see channels in weird half-freed states.
  668. */
  669. if (chan->cmux) {
  670. circuitmux_set_policy(chan->cmux, NULL);
  671. }
  672. /* Call a free method if there is one */
  673. if (chan->free) chan->free(chan);
  674. channel_clear_remote_end(chan);
  675. /* Get rid of cmux */
  676. if (chan->cmux) {
  677. circuitmux_detach_all_circuits(chan->cmux);
  678. circuitmux_free(chan->cmux);
  679. chan->cmux = NULL;
  680. }
  681. /* We're in CLOSED or ERROR, so the cell queue is already empty */
  682. tor_free(chan);
  683. }
  684. /**
  685. * Free a channel listener; nothing outside of channel.c and subclasses
  686. * should call this - it frees channel listeners after they have closed and
  687. * been unregistered.
  688. */
  689. void
  690. channel_listener_free(channel_listener_t *chan_l)
  691. {
  692. if (!chan_l) return;
  693. log_debug(LD_CHANNEL,
  694. "Freeing channel_listener_t " U64_FORMAT " at %p",
  695. U64_PRINTF_ARG(chan_l->global_identifier),
  696. chan_l);
  697. /* It must be closed or errored */
  698. tor_assert(chan_l->state == CHANNEL_LISTENER_STATE_CLOSED ||
  699. chan_l->state == CHANNEL_LISTENER_STATE_ERROR);
  700. /* It must be deregistered */
  701. tor_assert(!(chan_l->registered));
  702. /* Call a free method if there is one */
  703. if (chan_l->free) chan_l->free(chan_l);
  704. /*
  705. * We're in CLOSED or ERROR, so the incoming channel queue is already
  706. * empty.
  707. */
  708. tor_free(chan_l);
  709. }
  710. /**
  711. * Free a channel and skip the state/registration asserts; this internal-
  712. * use-only function should be called only from channel_free_all() when
  713. * shutting down the Tor process.
  714. */
  715. static void
  716. channel_force_free(channel_t *chan)
  717. {
  718. cell_queue_entry_t *cell, *cell_tmp;
  719. tor_assert(chan);
  720. log_debug(LD_CHANNEL,
  721. "Force-freeing channel " U64_FORMAT " at %p",
  722. U64_PRINTF_ARG(chan->global_identifier), chan);
  723. /*
  724. * Get rid of cmux policy before we do anything, so cmux policies don't
  725. * see channels in weird half-freed states.
  726. */
  727. if (chan->cmux) {
  728. circuitmux_set_policy(chan->cmux, NULL);
  729. }
  730. /* Call a free method if there is one */
  731. if (chan->free) chan->free(chan);
  732. channel_clear_remote_end(chan);
  733. /* Get rid of cmux */
  734. if (chan->cmux) {
  735. circuitmux_free(chan->cmux);
  736. chan->cmux = NULL;
  737. }
  738. /* We might still have a cell queue; kill it */
  739. TOR_SIMPLEQ_FOREACH_SAFE(cell, &chan->incoming_queue, next, cell_tmp) {
  740. cell_queue_entry_free(cell, 0);
  741. }
  742. TOR_SIMPLEQ_INIT(&chan->incoming_queue);
  743. /* Outgoing cell queue is similar, but we can have to free packed cells */
  744. TOR_SIMPLEQ_FOREACH_SAFE(cell, &chan->outgoing_queue, next, cell_tmp) {
  745. cell_queue_entry_free(cell, 0);
  746. }
  747. TOR_SIMPLEQ_INIT(&chan->outgoing_queue);
  748. tor_free(chan);
  749. }
  750. /**
  751. * Free a channel listener and skip the state/reigstration asserts; this
  752. * internal-use-only function should be called only from channel_free_all()
  753. * when shutting down the Tor process.
  754. */
  755. static void
  756. channel_listener_force_free(channel_listener_t *chan_l)
  757. {
  758. tor_assert(chan_l);
  759. log_debug(LD_CHANNEL,
  760. "Force-freeing channel_listener_t " U64_FORMAT " at %p",
  761. U64_PRINTF_ARG(chan_l->global_identifier),
  762. chan_l);
  763. /* Call a free method if there is one */
  764. if (chan_l->free) chan_l->free(chan_l);
  765. /*
  766. * The incoming list just gets emptied and freed; we request close on
  767. * any channels we find there, but since we got called while shutting
  768. * down they will get deregistered and freed elsewhere anyway.
  769. */
  770. if (chan_l->incoming_list) {
  771. SMARTLIST_FOREACH_BEGIN(chan_l->incoming_list,
  772. channel_t *, qchan) {
  773. channel_mark_for_close(qchan);
  774. } SMARTLIST_FOREACH_END(qchan);
  775. smartlist_free(chan_l->incoming_list);
  776. chan_l->incoming_list = NULL;
  777. }
  778. tor_free(chan_l);
  779. }
  780. /**
  781. * Return the current registered listener for a channel listener
  782. *
  783. * This function returns a function pointer to the current registered
  784. * handler for new incoming channels on a channel listener.
  785. */
  786. channel_listener_fn_ptr
  787. channel_listener_get_listener_fn(channel_listener_t *chan_l)
  788. {
  789. tor_assert(chan_l);
  790. if (chan_l->state == CHANNEL_LISTENER_STATE_LISTENING)
  791. return chan_l->listener;
  792. return NULL;
  793. }
  794. /**
  795. * Set the listener for a channel listener
  796. *
  797. * This function sets the handler for new incoming channels on a channel
  798. * listener.
  799. */
  800. void
  801. channel_listener_set_listener_fn(channel_listener_t *chan_l,
  802. channel_listener_fn_ptr listener)
  803. {
  804. tor_assert(chan_l);
  805. tor_assert(chan_l->state == CHANNEL_LISTENER_STATE_LISTENING);
  806. log_debug(LD_CHANNEL,
  807. "Setting listener callback for channel listener %p "
  808. "(global ID " U64_FORMAT ") to %p",
  809. chan_l, U64_PRINTF_ARG(chan_l->global_identifier),
  810. listener);
  811. chan_l->listener = listener;
  812. if (chan_l->listener) channel_listener_process_incoming(chan_l);
  813. }
  814. /**
  815. * Return the fixed-length cell handler for a channel
  816. *
  817. * This function gets the handler for incoming fixed-length cells installed
  818. * on a channel.
  819. */
  820. channel_cell_handler_fn_ptr
  821. channel_get_cell_handler(channel_t *chan)
  822. {
  823. tor_assert(chan);
  824. if (chan->state == CHANNEL_STATE_OPENING ||
  825. chan->state == CHANNEL_STATE_OPEN ||
  826. chan->state == CHANNEL_STATE_MAINT)
  827. return chan->cell_handler;
  828. return NULL;
  829. }
  830. /**
  831. * Return the variable-length cell handler for a channel
  832. *
  833. * This function gets the handler for incoming variable-length cells
  834. * installed on a channel.
  835. */
  836. channel_var_cell_handler_fn_ptr
  837. channel_get_var_cell_handler(channel_t *chan)
  838. {
  839. tor_assert(chan);
  840. if (chan->state == CHANNEL_STATE_OPENING ||
  841. chan->state == CHANNEL_STATE_OPEN ||
  842. chan->state == CHANNEL_STATE_MAINT)
  843. return chan->var_cell_handler;
  844. return NULL;
  845. }
  846. /**
  847. * Set both cell handlers for a channel
  848. *
  849. * This function sets both the fixed-length and variable length cell handlers
  850. * for a channel and processes any incoming cells that had been blocked in the
  851. * queue because none were available.
  852. */
  853. void
  854. channel_set_cell_handlers(channel_t *chan,
  855. channel_cell_handler_fn_ptr cell_handler,
  856. channel_var_cell_handler_fn_ptr
  857. var_cell_handler)
  858. {
  859. int try_again = 0;
  860. tor_assert(chan);
  861. tor_assert(chan->state == CHANNEL_STATE_OPENING ||
  862. chan->state == CHANNEL_STATE_OPEN ||
  863. chan->state == CHANNEL_STATE_MAINT);
  864. log_debug(LD_CHANNEL,
  865. "Setting cell_handler callback for channel %p to %p",
  866. chan, cell_handler);
  867. log_debug(LD_CHANNEL,
  868. "Setting var_cell_handler callback for channel %p to %p",
  869. chan, var_cell_handler);
  870. /* Should we try the queue? */
  871. if (cell_handler &&
  872. cell_handler != chan->cell_handler) try_again = 1;
  873. if (var_cell_handler &&
  874. var_cell_handler != chan->var_cell_handler) try_again = 1;
  875. /* Change them */
  876. chan->cell_handler = cell_handler;
  877. chan->var_cell_handler = var_cell_handler;
  878. /* Re-run the queue if we have one and there's any reason to */
  879. if (! TOR_SIMPLEQ_EMPTY(&chan->incoming_queue) &&
  880. try_again &&
  881. (chan->cell_handler ||
  882. chan->var_cell_handler)) channel_process_cells(chan);
  883. }
  884. /*
  885. * On closing channels
  886. *
  887. * There are three functions that close channels, for use in
  888. * different circumstances:
  889. *
  890. * - Use channel_mark_for_close() for most cases
  891. * - Use channel_close_from_lower_layer() if you are connection_or.c
  892. * and the other end closes the underlying connection.
  893. * - Use channel_close_for_error() if you are connection_or.c and
  894. * some sort of error has occurred.
  895. */
  896. /**
  897. * Mark a channel for closure
  898. *
  899. * This function tries to close a channel_t; it will go into the CLOSING
  900. * state, and eventually the lower layer should put it into the CLOSED or
  901. * ERROR state. Then, channel_run_cleanup() will eventually free it.
  902. */
  903. void
  904. channel_mark_for_close(channel_t *chan)
  905. {
  906. tor_assert(chan != NULL);
  907. tor_assert(chan->close != NULL);
  908. /* If it's already in CLOSING, CLOSED or ERROR, this is a no-op */
  909. if (chan->state == CHANNEL_STATE_CLOSING ||
  910. chan->state == CHANNEL_STATE_CLOSED ||
  911. chan->state == CHANNEL_STATE_ERROR) return;
  912. log_debug(LD_CHANNEL,
  913. "Closing channel %p (global ID " U64_FORMAT ") "
  914. "by request",
  915. chan, U64_PRINTF_ARG(chan->global_identifier));
  916. /* Note closing by request from above */
  917. chan->reason_for_closing = CHANNEL_CLOSE_REQUESTED;
  918. /* Change state to CLOSING */
  919. channel_change_state(chan, CHANNEL_STATE_CLOSING);
  920. /* Tell the lower layer */
  921. chan->close(chan);
  922. /*
  923. * It's up to the lower layer to change state to CLOSED or ERROR when we're
  924. * ready; we'll try to free channels that are in the finished list from
  925. * channel_run_cleanup(). The lower layer should do this by calling
  926. * channel_closed().
  927. */
  928. }
  929. /**
  930. * Mark a channel listener for closure
  931. *
  932. * This function tries to close a channel_listener_t; it will go into the
  933. * CLOSING state, and eventually the lower layer should put it into the CLOSED
  934. * or ERROR state. Then, channel_run_cleanup() will eventually free it.
  935. */
  936. void
  937. channel_listener_mark_for_close(channel_listener_t *chan_l)
  938. {
  939. tor_assert(chan_l != NULL);
  940. tor_assert(chan_l->close != NULL);
  941. /* If it's already in CLOSING, CLOSED or ERROR, this is a no-op */
  942. if (chan_l->state == CHANNEL_LISTENER_STATE_CLOSING ||
  943. chan_l->state == CHANNEL_LISTENER_STATE_CLOSED ||
  944. chan_l->state == CHANNEL_LISTENER_STATE_ERROR) return;
  945. log_debug(LD_CHANNEL,
  946. "Closing channel listener %p (global ID " U64_FORMAT ") "
  947. "by request",
  948. chan_l, U64_PRINTF_ARG(chan_l->global_identifier));
  949. /* Note closing by request from above */
  950. chan_l->reason_for_closing = CHANNEL_LISTENER_CLOSE_REQUESTED;
  951. /* Change state to CLOSING */
  952. channel_listener_change_state(chan_l, CHANNEL_LISTENER_STATE_CLOSING);
  953. /* Tell the lower layer */
  954. chan_l->close(chan_l);
  955. /*
  956. * It's up to the lower layer to change state to CLOSED or ERROR when we're
  957. * ready; we'll try to free channels that are in the finished list from
  958. * channel_run_cleanup(). The lower layer should do this by calling
  959. * channel_listener_closed().
  960. */
  961. }
  962. /**
  963. * Close a channel from the lower layer
  964. *
  965. * Notify the channel code that the channel is being closed due to a non-error
  966. * condition in the lower layer. This does not call the close() method, since
  967. * the lower layer already knows.
  968. */
  969. void
  970. channel_close_from_lower_layer(channel_t *chan)
  971. {
  972. tor_assert(chan != NULL);
  973. /* If it's already in CLOSING, CLOSED or ERROR, this is a no-op */
  974. if (chan->state == CHANNEL_STATE_CLOSING ||
  975. chan->state == CHANNEL_STATE_CLOSED ||
  976. chan->state == CHANNEL_STATE_ERROR) return;
  977. log_debug(LD_CHANNEL,
  978. "Closing channel %p (global ID " U64_FORMAT ") "
  979. "due to lower-layer event",
  980. chan, U64_PRINTF_ARG(chan->global_identifier));
  981. /* Note closing by event from below */
  982. chan->reason_for_closing = CHANNEL_CLOSE_FROM_BELOW;
  983. /* Change state to CLOSING */
  984. channel_change_state(chan, CHANNEL_STATE_CLOSING);
  985. }
  986. /**
  987. * Close a channel listener from the lower layer
  988. *
  989. * Notify the channel code that the channel listener is being closed due to a
  990. * non-error condition in the lower layer. This does not call the close()
  991. * method, since the lower layer already knows.
  992. */
  993. void
  994. channel_listener_close_from_lower_layer(channel_listener_t *chan_l)
  995. {
  996. tor_assert(chan_l != NULL);
  997. /* If it's already in CLOSING, CLOSED or ERROR, this is a no-op */
  998. if (chan_l->state == CHANNEL_LISTENER_STATE_CLOSING ||
  999. chan_l->state == CHANNEL_LISTENER_STATE_CLOSED ||
  1000. chan_l->state == CHANNEL_LISTENER_STATE_ERROR) return;
  1001. log_debug(LD_CHANNEL,
  1002. "Closing channel listener %p (global ID " U64_FORMAT ") "
  1003. "due to lower-layer event",
  1004. chan_l, U64_PRINTF_ARG(chan_l->global_identifier));
  1005. /* Note closing by event from below */
  1006. chan_l->reason_for_closing = CHANNEL_LISTENER_CLOSE_FROM_BELOW;
  1007. /* Change state to CLOSING */
  1008. channel_listener_change_state(chan_l, CHANNEL_LISTENER_STATE_CLOSING);
  1009. }
  1010. /**
  1011. * Notify that the channel is being closed due to an error condition
  1012. *
  1013. * This function is called by the lower layer implementing the transport
  1014. * when a channel must be closed due to an error condition. This does not
  1015. * call the channel's close method, since the lower layer already knows.
  1016. */
  1017. void
  1018. channel_close_for_error(channel_t *chan)
  1019. {
  1020. tor_assert(chan != NULL);
  1021. /* If it's already in CLOSING, CLOSED or ERROR, this is a no-op */
  1022. if (chan->state == CHANNEL_STATE_CLOSING ||
  1023. chan->state == CHANNEL_STATE_CLOSED ||
  1024. chan->state == CHANNEL_STATE_ERROR) return;
  1025. log_debug(LD_CHANNEL,
  1026. "Closing channel %p due to lower-layer error",
  1027. chan);
  1028. /* Note closing by event from below */
  1029. chan->reason_for_closing = CHANNEL_CLOSE_FOR_ERROR;
  1030. /* Change state to CLOSING */
  1031. channel_change_state(chan, CHANNEL_STATE_CLOSING);
  1032. }
  1033. /**
  1034. * Notify that the channel listener is being closed due to an error condition
  1035. *
  1036. * This function is called by the lower layer implementing the transport
  1037. * when a channel listener must be closed due to an error condition. This
  1038. * does not call the channel listener's close method, since the lower layer
  1039. * already knows.
  1040. */
  1041. void
  1042. channel_listener_close_for_error(channel_listener_t *chan_l)
  1043. {
  1044. tor_assert(chan_l != NULL);
  1045. /* If it's already in CLOSING, CLOSED or ERROR, this is a no-op */
  1046. if (chan_l->state == CHANNEL_LISTENER_STATE_CLOSING ||
  1047. chan_l->state == CHANNEL_LISTENER_STATE_CLOSED ||
  1048. chan_l->state == CHANNEL_LISTENER_STATE_ERROR) return;
  1049. log_debug(LD_CHANNEL,
  1050. "Closing channel listener %p (global ID " U64_FORMAT ") "
  1051. "due to lower-layer error",
  1052. chan_l, U64_PRINTF_ARG(chan_l->global_identifier));
  1053. /* Note closing by event from below */
  1054. chan_l->reason_for_closing = CHANNEL_LISTENER_CLOSE_FOR_ERROR;
  1055. /* Change state to CLOSING */
  1056. channel_listener_change_state(chan_l, CHANNEL_LISTENER_STATE_CLOSING);
  1057. }
  1058. /**
  1059. * Notify that the lower layer is finished closing the channel
  1060. *
  1061. * This function should be called by the lower layer when a channel
  1062. * is finished closing and it should be regarded as inactive and
  1063. * freed by the channel code.
  1064. */
  1065. void
  1066. channel_closed(channel_t *chan)
  1067. {
  1068. tor_assert(chan);
  1069. tor_assert(chan->state == CHANNEL_STATE_CLOSING ||
  1070. chan->state == CHANNEL_STATE_CLOSED ||
  1071. chan->state == CHANNEL_STATE_ERROR);
  1072. /* No-op if already inactive */
  1073. if (chan->state == CHANNEL_STATE_CLOSED ||
  1074. chan->state == CHANNEL_STATE_ERROR) return;
  1075. /* Inform any pending (not attached) circs that they should
  1076. * give up. */
  1077. if (! chan->has_been_open)
  1078. circuit_n_chan_done(chan, 0);
  1079. /* Now close all the attached circuits on it. */
  1080. circuit_unlink_all_from_channel(chan, END_CIRC_REASON_CHANNEL_CLOSED);
  1081. if (chan->reason_for_closing != CHANNEL_CLOSE_FOR_ERROR) {
  1082. channel_change_state(chan, CHANNEL_STATE_CLOSED);
  1083. } else {
  1084. channel_change_state(chan, CHANNEL_STATE_ERROR);
  1085. }
  1086. }
  1087. /**
  1088. * Notify that the lower layer is finished closing the channel listener
  1089. *
  1090. * This function should be called by the lower layer when a channel listener
  1091. * is finished closing and it should be regarded as inactive and
  1092. * freed by the channel code.
  1093. */
  1094. void
  1095. channel_listener_closed(channel_listener_t *chan_l)
  1096. {
  1097. tor_assert(chan_l);
  1098. tor_assert(chan_l->state == CHANNEL_LISTENER_STATE_CLOSING ||
  1099. chan_l->state == CHANNEL_LISTENER_STATE_CLOSED ||
  1100. chan_l->state == CHANNEL_LISTENER_STATE_ERROR);
  1101. /* No-op if already inactive */
  1102. if (chan_l->state == CHANNEL_LISTENER_STATE_CLOSED ||
  1103. chan_l->state == CHANNEL_LISTENER_STATE_ERROR) return;
  1104. if (chan_l->reason_for_closing != CHANNEL_LISTENER_CLOSE_FOR_ERROR) {
  1105. channel_listener_change_state(chan_l, CHANNEL_LISTENER_STATE_CLOSED);
  1106. } else {
  1107. channel_listener_change_state(chan_l, CHANNEL_LISTENER_STATE_ERROR);
  1108. }
  1109. }
  1110. /**
  1111. * Clear the identity_digest of a channel
  1112. *
  1113. * This function clears the identity digest of the remote endpoint for a
  1114. * channel; this is intended for use by the lower layer.
  1115. */
  1116. void
  1117. channel_clear_identity_digest(channel_t *chan)
  1118. {
  1119. int state_not_in_map;
  1120. tor_assert(chan);
  1121. log_debug(LD_CHANNEL,
  1122. "Clearing remote endpoint digest on channel %p with "
  1123. "global ID " U64_FORMAT,
  1124. chan, U64_PRINTF_ARG(chan->global_identifier));
  1125. state_not_in_map =
  1126. (chan->state == CHANNEL_STATE_CLOSING ||
  1127. chan->state == CHANNEL_STATE_CLOSED ||
  1128. chan->state == CHANNEL_STATE_ERROR);
  1129. if (!state_not_in_map && chan->registered &&
  1130. !tor_digest_is_zero(chan->identity_digest))
  1131. /* if it's registered get it out of the digest map */
  1132. channel_remove_from_digest_map(chan);
  1133. memset(chan->identity_digest, 0,
  1134. sizeof(chan->identity_digest));
  1135. }
  1136. /**
  1137. * Set the identity_digest of a channel
  1138. *
  1139. * This function sets the identity digest of the remote endpoint for a
  1140. * channel; this is intended for use by the lower layer.
  1141. */
  1142. void
  1143. channel_set_identity_digest(channel_t *chan,
  1144. const char *identity_digest)
  1145. {
  1146. int was_in_digest_map, should_be_in_digest_map, state_not_in_map;
  1147. tor_assert(chan);
  1148. log_debug(LD_CHANNEL,
  1149. "Setting remote endpoint digest on channel %p with "
  1150. "global ID " U64_FORMAT " to digest %s",
  1151. chan, U64_PRINTF_ARG(chan->global_identifier),
  1152. identity_digest ?
  1153. hex_str(identity_digest, DIGEST_LEN) : "(null)");
  1154. state_not_in_map =
  1155. (chan->state == CHANNEL_STATE_CLOSING ||
  1156. chan->state == CHANNEL_STATE_CLOSED ||
  1157. chan->state == CHANNEL_STATE_ERROR);
  1158. was_in_digest_map =
  1159. !state_not_in_map &&
  1160. chan->registered &&
  1161. !tor_digest_is_zero(chan->identity_digest);
  1162. should_be_in_digest_map =
  1163. !state_not_in_map &&
  1164. chan->registered &&
  1165. (identity_digest &&
  1166. !tor_digest_is_zero(identity_digest));
  1167. if (was_in_digest_map)
  1168. /* We should always remove it; we'll add it back if we're writing
  1169. * in a new digest.
  1170. */
  1171. channel_remove_from_digest_map(chan);
  1172. if (identity_digest) {
  1173. memcpy(chan->identity_digest,
  1174. identity_digest,
  1175. sizeof(chan->identity_digest));
  1176. } else {
  1177. memset(chan->identity_digest, 0,
  1178. sizeof(chan->identity_digest));
  1179. }
  1180. /* Put it in the digest map if we should */
  1181. if (should_be_in_digest_map)
  1182. channel_add_to_digest_map(chan);
  1183. }
  1184. /**
  1185. * Clear the remote end metadata (identity_digest/nickname) of a channel
  1186. *
  1187. * This function clears all the remote end info from a channel; this is
  1188. * intended for use by the lower layer.
  1189. */
  1190. void
  1191. channel_clear_remote_end(channel_t *chan)
  1192. {
  1193. int state_not_in_map;
  1194. tor_assert(chan);
  1195. log_debug(LD_CHANNEL,
  1196. "Clearing remote endpoint identity on channel %p with "
  1197. "global ID " U64_FORMAT,
  1198. chan, U64_PRINTF_ARG(chan->global_identifier));
  1199. state_not_in_map =
  1200. (chan->state == CHANNEL_STATE_CLOSING ||
  1201. chan->state == CHANNEL_STATE_CLOSED ||
  1202. chan->state == CHANNEL_STATE_ERROR);
  1203. if (!state_not_in_map && chan->registered &&
  1204. !tor_digest_is_zero(chan->identity_digest))
  1205. /* if it's registered get it out of the digest map */
  1206. channel_remove_from_digest_map(chan);
  1207. memset(chan->identity_digest, 0,
  1208. sizeof(chan->identity_digest));
  1209. tor_free(chan->nickname);
  1210. }
  1211. /**
  1212. * Set the remote end metadata (identity_digest/nickname) of a channel
  1213. *
  1214. * This function sets new remote end info on a channel; this is intended
  1215. * for use by the lower layer.
  1216. */
  1217. void
  1218. channel_set_remote_end(channel_t *chan,
  1219. const char *identity_digest,
  1220. const char *nickname)
  1221. {
  1222. int was_in_digest_map, should_be_in_digest_map, state_not_in_map;
  1223. tor_assert(chan);
  1224. log_debug(LD_CHANNEL,
  1225. "Setting remote endpoint identity on channel %p with "
  1226. "global ID " U64_FORMAT " to nickname %s, digest %s",
  1227. chan, U64_PRINTF_ARG(chan->global_identifier),
  1228. nickname ? nickname : "(null)",
  1229. identity_digest ?
  1230. hex_str(identity_digest, DIGEST_LEN) : "(null)");
  1231. state_not_in_map =
  1232. (chan->state == CHANNEL_STATE_CLOSING ||
  1233. chan->state == CHANNEL_STATE_CLOSED ||
  1234. chan->state == CHANNEL_STATE_ERROR);
  1235. was_in_digest_map =
  1236. !state_not_in_map &&
  1237. chan->registered &&
  1238. !tor_digest_is_zero(chan->identity_digest);
  1239. should_be_in_digest_map =
  1240. !state_not_in_map &&
  1241. chan->registered &&
  1242. (identity_digest &&
  1243. !tor_digest_is_zero(identity_digest));
  1244. if (was_in_digest_map)
  1245. /* We should always remove it; we'll add it back if we're writing
  1246. * in a new digest.
  1247. */
  1248. channel_remove_from_digest_map(chan);
  1249. if (identity_digest) {
  1250. memcpy(chan->identity_digest,
  1251. identity_digest,
  1252. sizeof(chan->identity_digest));
  1253. } else {
  1254. memset(chan->identity_digest, 0,
  1255. sizeof(chan->identity_digest));
  1256. }
  1257. tor_free(chan->nickname);
  1258. if (nickname)
  1259. chan->nickname = tor_strdup(nickname);
  1260. /* Put it in the digest map if we should */
  1261. if (should_be_in_digest_map)
  1262. channel_add_to_digest_map(chan);
  1263. }
  1264. /**
  1265. * Duplicate a cell queue entry; this is a shallow copy intended for use
  1266. * in channel_write_cell_queue_entry().
  1267. */
  1268. static cell_queue_entry_t *
  1269. cell_queue_entry_dup(cell_queue_entry_t *q)
  1270. {
  1271. cell_queue_entry_t *rv = NULL;
  1272. tor_assert(q);
  1273. rv = tor_malloc(sizeof(*rv));
  1274. memcpy(rv, q, sizeof(*rv));
  1275. return rv;
  1276. }
  1277. /**
  1278. * Free a cell_queue_entry_t; the handed_off parameter indicates whether
  1279. * the contents were passed to the lower layer (it is responsible for
  1280. * them) or not (we should free).
  1281. */
  1282. static void
  1283. cell_queue_entry_free(cell_queue_entry_t *q, int handed_off)
  1284. {
  1285. if (!q) return;
  1286. if (!handed_off) {
  1287. /*
  1288. * If we handed it off, the recipient becomes responsible (or
  1289. * with packed cells the channel_t subclass calls packed_cell
  1290. * free after writing out its contents; see, e.g.,
  1291. * channel_tls_write_packed_cell_method(). Otherwise, we have
  1292. * to take care of it here if possible.
  1293. */
  1294. switch (q->type) {
  1295. case CELL_QUEUE_FIXED:
  1296. if (q->u.fixed.cell) {
  1297. /*
  1298. * There doesn't seem to be a cell_free() function anywhere in the
  1299. * pre-channel code; just use tor_free()
  1300. */
  1301. tor_free(q->u.fixed.cell);
  1302. }
  1303. break;
  1304. case CELL_QUEUE_PACKED:
  1305. if (q->u.packed.packed_cell) {
  1306. packed_cell_free(q->u.packed.packed_cell);
  1307. }
  1308. break;
  1309. case CELL_QUEUE_VAR:
  1310. if (q->u.var.var_cell) {
  1311. /*
  1312. * This one's in connection_or.c; it'd be nice to figure out the
  1313. * whole flow of cells from one end to the other and factor the
  1314. * cell memory management functions like this out of the specific
  1315. * TLS lower layer.
  1316. */
  1317. var_cell_free(q->u.var.var_cell);
  1318. }
  1319. break;
  1320. default:
  1321. /*
  1322. * Nothing we can do if we don't know the type; this will
  1323. * have been warned about elsewhere.
  1324. */
  1325. break;
  1326. }
  1327. }
  1328. tor_free(q);
  1329. }
  1330. /**
  1331. * Check whether a cell queue entry is padding; this is a helper function
  1332. * for channel_write_cell_queue_entry()
  1333. */
  1334. static int
  1335. cell_queue_entry_is_padding(cell_queue_entry_t *q)
  1336. {
  1337. tor_assert(q);
  1338. if (q->type == CELL_QUEUE_FIXED) {
  1339. if (q->u.fixed.cell) {
  1340. if (q->u.fixed.cell->command == CELL_PADDING ||
  1341. q->u.fixed.cell->command == CELL_VPADDING) {
  1342. return 1;
  1343. }
  1344. }
  1345. } else if (q->type == CELL_QUEUE_VAR) {
  1346. if (q->u.var.var_cell) {
  1347. if (q->u.var.var_cell->command == CELL_PADDING ||
  1348. q->u.var.var_cell->command == CELL_VPADDING) {
  1349. return 1;
  1350. }
  1351. }
  1352. }
  1353. return 0;
  1354. }
  1355. /**
  1356. * Allocate a new cell queue entry for a fixed-size cell
  1357. */
  1358. static cell_queue_entry_t *
  1359. cell_queue_entry_new_fixed(cell_t *cell)
  1360. {
  1361. cell_queue_entry_t *q = NULL;
  1362. tor_assert(cell);
  1363. q = tor_malloc(sizeof(*q));
  1364. q->type = CELL_QUEUE_FIXED;
  1365. q->u.fixed.cell = cell;
  1366. return q;
  1367. }
  1368. /**
  1369. * Allocate a new cell queue entry for a variable-size cell
  1370. */
  1371. static cell_queue_entry_t *
  1372. cell_queue_entry_new_var(var_cell_t *var_cell)
  1373. {
  1374. cell_queue_entry_t *q = NULL;
  1375. tor_assert(var_cell);
  1376. q = tor_malloc(sizeof(*q));
  1377. q->type = CELL_QUEUE_VAR;
  1378. q->u.var.var_cell = var_cell;
  1379. return q;
  1380. }
  1381. /**
  1382. * Write to a channel based on a cell_queue_entry_t
  1383. *
  1384. * Given a cell_queue_entry_t filled out by the caller, try to send the cell
  1385. * and queue it if we can't.
  1386. */
  1387. static void
  1388. channel_write_cell_queue_entry(channel_t *chan, cell_queue_entry_t *q)
  1389. {
  1390. int result = 0, sent = 0;
  1391. cell_queue_entry_t *tmp = NULL;
  1392. tor_assert(chan);
  1393. tor_assert(q);
  1394. /* Assert that the state makes sense for a cell write */
  1395. tor_assert(chan->state == CHANNEL_STATE_OPENING ||
  1396. chan->state == CHANNEL_STATE_OPEN ||
  1397. chan->state == CHANNEL_STATE_MAINT);
  1398. /* Increment the timestamp unless it's padding */
  1399. if (!cell_queue_entry_is_padding(q)) {
  1400. chan->timestamp_last_added_nonpadding = approx_time();
  1401. }
  1402. /* Can we send it right out? If so, try */
  1403. if (TOR_SIMPLEQ_EMPTY(&chan->outgoing_queue) &&
  1404. chan->state == CHANNEL_STATE_OPEN) {
  1405. /* Pick the right write function for this cell type and save the result */
  1406. switch (q->type) {
  1407. case CELL_QUEUE_FIXED:
  1408. tor_assert(chan->write_cell);
  1409. tor_assert(q->u.fixed.cell);
  1410. result = chan->write_cell(chan, q->u.fixed.cell);
  1411. break;
  1412. case CELL_QUEUE_PACKED:
  1413. tor_assert(chan->write_packed_cell);
  1414. tor_assert(q->u.packed.packed_cell);
  1415. result = chan->write_packed_cell(chan, q->u.packed.packed_cell);
  1416. break;
  1417. case CELL_QUEUE_VAR:
  1418. tor_assert(chan->write_var_cell);
  1419. tor_assert(q->u.var.var_cell);
  1420. result = chan->write_var_cell(chan, q->u.var.var_cell);
  1421. break;
  1422. default:
  1423. tor_assert(1);
  1424. }
  1425. /* Check if we got it out */
  1426. if (result > 0) {
  1427. sent = 1;
  1428. /* Timestamp for transmission */
  1429. channel_timestamp_xmit(chan);
  1430. /* If we're here the queue is empty, so it's drained too */
  1431. channel_timestamp_drained(chan);
  1432. /* Update the counter */
  1433. ++(chan->n_cells_xmitted);
  1434. }
  1435. }
  1436. if (!sent) {
  1437. /* Not sent, queue it */
  1438. /*
  1439. * We have to copy the queue entry passed in, since the caller probably
  1440. * used the stack.
  1441. */
  1442. tmp = cell_queue_entry_dup(q);
  1443. TOR_SIMPLEQ_INSERT_TAIL(&chan->outgoing_queue, tmp, next);
  1444. /* Try to process the queue? */
  1445. if (chan->state == CHANNEL_STATE_OPEN) channel_flush_cells(chan);
  1446. }
  1447. }
  1448. /**
  1449. * Write a cell to a channel
  1450. *
  1451. * Write a fixed-length cell to a channel using the write_cell() method.
  1452. * This is equivalent to the pre-channels connection_or_write_cell_to_buf();
  1453. * it is called by the transport-independent code to deliver a cell to a
  1454. * channel for transmission.
  1455. */
  1456. void
  1457. channel_write_cell(channel_t *chan, cell_t *cell)
  1458. {
  1459. cell_queue_entry_t q;
  1460. tor_assert(chan);
  1461. tor_assert(cell);
  1462. if (chan->state == CHANNEL_STATE_CLOSING) {
  1463. log_debug(LD_CHANNEL, "Discarding cell_t %p on closing channel %p with "
  1464. "global ID "U64_FORMAT, cell, chan,
  1465. U64_PRINTF_ARG(chan->global_identifier));
  1466. tor_free(cell);
  1467. return;
  1468. }
  1469. log_debug(LD_CHANNEL,
  1470. "Writing cell_t %p to channel %p with global ID "
  1471. U64_FORMAT,
  1472. cell, chan, U64_PRINTF_ARG(chan->global_identifier));
  1473. q.type = CELL_QUEUE_FIXED;
  1474. q.u.fixed.cell = cell;
  1475. channel_write_cell_queue_entry(chan, &q);
  1476. }
  1477. /**
  1478. * Write a packed cell to a channel
  1479. *
  1480. * Write a packed cell to a channel using the write_cell() method. This is
  1481. * called by the transport-independent code to deliver a packed cell to a
  1482. * channel for transmission.
  1483. */
  1484. void
  1485. channel_write_packed_cell(channel_t *chan, packed_cell_t *packed_cell)
  1486. {
  1487. cell_queue_entry_t q;
  1488. tor_assert(chan);
  1489. tor_assert(packed_cell);
  1490. if (chan->state == CHANNEL_STATE_CLOSING) {
  1491. log_debug(LD_CHANNEL, "Discarding packed_cell_t %p on closing channel %p "
  1492. "with global ID "U64_FORMAT, packed_cell, chan,
  1493. U64_PRINTF_ARG(chan->global_identifier));
  1494. packed_cell_free(packed_cell);
  1495. return;
  1496. }
  1497. log_debug(LD_CHANNEL,
  1498. "Writing packed_cell_t %p to channel %p with global ID "
  1499. U64_FORMAT,
  1500. packed_cell, chan,
  1501. U64_PRINTF_ARG(chan->global_identifier));
  1502. q.type = CELL_QUEUE_PACKED;
  1503. q.u.packed.packed_cell = packed_cell;
  1504. channel_write_cell_queue_entry(chan, &q);
  1505. }
  1506. /**
  1507. * Write a variable-length cell to a channel
  1508. *
  1509. * Write a variable-length cell to a channel using the write_cell() method.
  1510. * This is equivalent to the pre-channels
  1511. * connection_or_write_var_cell_to_buf(); it's called by the transport-
  1512. * independent code to deliver a var_cell to a channel for transmission.
  1513. */
  1514. void
  1515. channel_write_var_cell(channel_t *chan, var_cell_t *var_cell)
  1516. {
  1517. cell_queue_entry_t q;
  1518. tor_assert(chan);
  1519. tor_assert(var_cell);
  1520. if (chan->state == CHANNEL_STATE_CLOSING) {
  1521. log_debug(LD_CHANNEL, "Discarding var_cell_t %p on closing channel %p "
  1522. "with global ID "U64_FORMAT, var_cell, chan,
  1523. U64_PRINTF_ARG(chan->global_identifier));
  1524. var_cell_free(var_cell);
  1525. return;
  1526. }
  1527. log_debug(LD_CHANNEL,
  1528. "Writing var_cell_t %p to channel %p with global ID "
  1529. U64_FORMAT,
  1530. var_cell, chan,
  1531. U64_PRINTF_ARG(chan->global_identifier));
  1532. q.type = CELL_QUEUE_VAR;
  1533. q.u.var.var_cell = var_cell;
  1534. channel_write_cell_queue_entry(chan, &q);
  1535. }
  1536. /**
  1537. * Change channel state
  1538. *
  1539. * This internal and subclass use only function is used to change channel
  1540. * state, performing all transition validity checks and whatever actions
  1541. * are appropriate to the state transition in question.
  1542. */
  1543. void
  1544. channel_change_state(channel_t *chan, channel_state_t to_state)
  1545. {
  1546. channel_state_t from_state;
  1547. unsigned char was_active, is_active;
  1548. unsigned char was_in_id_map, is_in_id_map;
  1549. tor_assert(chan);
  1550. from_state = chan->state;
  1551. tor_assert(channel_state_is_valid(from_state));
  1552. tor_assert(channel_state_is_valid(to_state));
  1553. tor_assert(channel_state_can_transition(chan->state, to_state));
  1554. /* Check for no-op transitions */
  1555. if (from_state == to_state) {
  1556. log_debug(LD_CHANNEL,
  1557. "Got no-op transition from \"%s\" to itself on channel %p"
  1558. "(global ID " U64_FORMAT ")",
  1559. channel_state_to_string(to_state),
  1560. chan, U64_PRINTF_ARG(chan->global_identifier));
  1561. return;
  1562. }
  1563. /* If we're going to a closing or closed state, we must have a reason set */
  1564. if (to_state == CHANNEL_STATE_CLOSING ||
  1565. to_state == CHANNEL_STATE_CLOSED ||
  1566. to_state == CHANNEL_STATE_ERROR) {
  1567. tor_assert(chan->reason_for_closing != CHANNEL_NOT_CLOSING);
  1568. }
  1569. /*
  1570. * We need to maintain the queues here for some transitions:
  1571. * when we enter CHANNEL_STATE_OPEN (especially from CHANNEL_STATE_MAINT)
  1572. * we may have a backlog of cells to transmit, so drain the queues in
  1573. * that case, and when going to CHANNEL_STATE_CLOSED the subclass
  1574. * should have made sure to finish sending things (or gone to
  1575. * CHANNEL_STATE_ERROR if not possible), so we assert for that here.
  1576. */
  1577. log_debug(LD_CHANNEL,
  1578. "Changing state of channel %p (global ID " U64_FORMAT
  1579. ") from \"%s\" to \"%s\"",
  1580. chan,
  1581. U64_PRINTF_ARG(chan->global_identifier),
  1582. channel_state_to_string(chan->state),
  1583. channel_state_to_string(to_state));
  1584. chan->state = to_state;
  1585. /* Need to add to the right lists if the channel is registered */
  1586. if (chan->registered) {
  1587. was_active = !(from_state == CHANNEL_STATE_CLOSED ||
  1588. from_state == CHANNEL_STATE_ERROR);
  1589. is_active = !(to_state == CHANNEL_STATE_CLOSED ||
  1590. to_state == CHANNEL_STATE_ERROR);
  1591. /* Need to take off active list and put on finished list? */
  1592. if (was_active && !is_active) {
  1593. if (active_channels) smartlist_remove(active_channels, chan);
  1594. if (!finished_channels) finished_channels = smartlist_new();
  1595. smartlist_add(finished_channels, chan);
  1596. }
  1597. /* Need to put on active list? */
  1598. else if (!was_active && is_active) {
  1599. if (finished_channels) smartlist_remove(finished_channels, chan);
  1600. if (!active_channels) active_channels = smartlist_new();
  1601. smartlist_add(active_channels, chan);
  1602. }
  1603. if (!tor_digest_is_zero(chan->identity_digest)) {
  1604. /* Now we need to handle the identity map */
  1605. was_in_id_map = !(from_state == CHANNEL_STATE_CLOSING ||
  1606. from_state == CHANNEL_STATE_CLOSED ||
  1607. from_state == CHANNEL_STATE_ERROR);
  1608. is_in_id_map = !(to_state == CHANNEL_STATE_CLOSING ||
  1609. to_state == CHANNEL_STATE_CLOSED ||
  1610. to_state == CHANNEL_STATE_ERROR);
  1611. if (!was_in_id_map && is_in_id_map) channel_add_to_digest_map(chan);
  1612. else if (was_in_id_map && !is_in_id_map)
  1613. channel_remove_from_digest_map(chan);
  1614. }
  1615. }
  1616. /* Tell circuits if we opened and stuff */
  1617. if (to_state == CHANNEL_STATE_OPEN) {
  1618. channel_do_open_actions(chan);
  1619. chan->has_been_open = 1;
  1620. /* Check for queued cells to process */
  1621. if (! TOR_SIMPLEQ_EMPTY(&chan->incoming_queue))
  1622. channel_process_cells(chan);
  1623. if (! TOR_SIMPLEQ_EMPTY(&chan->outgoing_queue))
  1624. channel_flush_cells(chan);
  1625. } else if (to_state == CHANNEL_STATE_CLOSED ||
  1626. to_state == CHANNEL_STATE_ERROR) {
  1627. /* Assert that all queues are empty */
  1628. tor_assert(TOR_SIMPLEQ_EMPTY(&chan->incoming_queue));
  1629. tor_assert(TOR_SIMPLEQ_EMPTY(&chan->outgoing_queue));
  1630. }
  1631. }
  1632. /**
  1633. * Change channel listener state
  1634. *
  1635. * This internal and subclass use only function is used to change channel
  1636. * listener state, performing all transition validity checks and whatever
  1637. * actions are appropriate to the state transition in question.
  1638. */
  1639. void
  1640. channel_listener_change_state(channel_listener_t *chan_l,
  1641. channel_listener_state_t to_state)
  1642. {
  1643. channel_listener_state_t from_state;
  1644. unsigned char was_active, is_active;
  1645. tor_assert(chan_l);
  1646. from_state = chan_l->state;
  1647. tor_assert(channel_listener_state_is_valid(from_state));
  1648. tor_assert(channel_listener_state_is_valid(to_state));
  1649. tor_assert(channel_listener_state_can_transition(chan_l->state, to_state));
  1650. /* Check for no-op transitions */
  1651. if (from_state == to_state) {
  1652. log_debug(LD_CHANNEL,
  1653. "Got no-op transition from \"%s\" to itself on channel "
  1654. "listener %p (global ID " U64_FORMAT ")",
  1655. channel_listener_state_to_string(to_state),
  1656. chan_l, U64_PRINTF_ARG(chan_l->global_identifier));
  1657. return;
  1658. }
  1659. /* If we're going to a closing or closed state, we must have a reason set */
  1660. if (to_state == CHANNEL_LISTENER_STATE_CLOSING ||
  1661. to_state == CHANNEL_LISTENER_STATE_CLOSED ||
  1662. to_state == CHANNEL_LISTENER_STATE_ERROR) {
  1663. tor_assert(chan_l->reason_for_closing != CHANNEL_LISTENER_NOT_CLOSING);
  1664. }
  1665. /*
  1666. * We need to maintain the queues here for some transitions:
  1667. * when we enter CHANNEL_STATE_OPEN (especially from CHANNEL_STATE_MAINT)
  1668. * we may have a backlog of cells to transmit, so drain the queues in
  1669. * that case, and when going to CHANNEL_STATE_CLOSED the subclass
  1670. * should have made sure to finish sending things (or gone to
  1671. * CHANNEL_STATE_ERROR if not possible), so we assert for that here.
  1672. */
  1673. log_debug(LD_CHANNEL,
  1674. "Changing state of channel listener %p (global ID " U64_FORMAT
  1675. "from \"%s\" to \"%s\"",
  1676. chan_l, U64_PRINTF_ARG(chan_l->global_identifier),
  1677. channel_listener_state_to_string(chan_l->state),
  1678. channel_listener_state_to_string(to_state));
  1679. chan_l->state = to_state;
  1680. /* Need to add to the right lists if the channel listener is registered */
  1681. if (chan_l->registered) {
  1682. was_active = !(from_state == CHANNEL_LISTENER_STATE_CLOSED ||
  1683. from_state == CHANNEL_LISTENER_STATE_ERROR);
  1684. is_active = !(to_state == CHANNEL_LISTENER_STATE_CLOSED ||
  1685. to_state == CHANNEL_LISTENER_STATE_ERROR);
  1686. /* Need to take off active list and put on finished list? */
  1687. if (was_active && !is_active) {
  1688. if (active_listeners) smartlist_remove(active_listeners, chan_l);
  1689. if (!finished_listeners) finished_listeners = smartlist_new();
  1690. smartlist_add(finished_listeners, chan_l);
  1691. }
  1692. /* Need to put on active list? */
  1693. else if (!was_active && is_active) {
  1694. if (finished_listeners) smartlist_remove(finished_listeners, chan_l);
  1695. if (!active_listeners) active_listeners = smartlist_new();
  1696. smartlist_add(active_listeners, chan_l);
  1697. }
  1698. }
  1699. if (to_state == CHANNEL_LISTENER_STATE_CLOSED ||
  1700. to_state == CHANNEL_LISTENER_STATE_ERROR) {
  1701. /* Assert that the queue is empty */
  1702. tor_assert(!(chan_l->incoming_list) ||
  1703. smartlist_len(chan_l->incoming_list) == 0);
  1704. }
  1705. }
  1706. /**
  1707. * Try to flush cells to the lower layer
  1708. *
  1709. * this is called by the lower layer to indicate that it wants more cells;
  1710. * it will try to write up to num_cells cells from the channel's cell queue or
  1711. * from circuits active on that channel, or as many as it has available if
  1712. * num_cells == -1.
  1713. */
  1714. #define MAX_CELLS_TO_GET_FROM_CIRCUITS_FOR_UNLIMITED 256
  1715. ssize_t
  1716. channel_flush_some_cells(channel_t *chan, ssize_t num_cells)
  1717. {
  1718. unsigned int unlimited = 0;
  1719. ssize_t flushed = 0;
  1720. int num_cells_from_circs, clamped_num_cells;
  1721. tor_assert(chan);
  1722. if (num_cells < 0) unlimited = 1;
  1723. if (!unlimited && num_cells <= flushed) goto done;
  1724. /* If we aren't in CHANNEL_STATE_OPEN, nothing goes through */
  1725. if (chan->state == CHANNEL_STATE_OPEN) {
  1726. /* Try to flush as much as we can that's already queued */
  1727. flushed += channel_flush_some_cells_from_outgoing_queue(chan,
  1728. (unlimited ? -1 : num_cells - flushed));
  1729. if (!unlimited && num_cells <= flushed) goto done;
  1730. if (circuitmux_num_cells(chan->cmux) > 0) {
  1731. /* Calculate number of cells, including clamp */
  1732. if (unlimited) {
  1733. clamped_num_cells = MAX_CELLS_TO_GET_FROM_CIRCUITS_FOR_UNLIMITED;
  1734. } else {
  1735. if (num_cells - flushed >
  1736. MAX_CELLS_TO_GET_FROM_CIRCUITS_FOR_UNLIMITED) {
  1737. clamped_num_cells = MAX_CELLS_TO_GET_FROM_CIRCUITS_FOR_UNLIMITED;
  1738. } else {
  1739. clamped_num_cells = (int)(num_cells - flushed);
  1740. }
  1741. }
  1742. /* Try to get more cells from any active circuits */
  1743. num_cells_from_circs = channel_flush_from_first_active_circuit(
  1744. chan, clamped_num_cells);
  1745. /* If it claims we got some, process the queue again */
  1746. if (num_cells_from_circs > 0) {
  1747. flushed += channel_flush_some_cells_from_outgoing_queue(chan,
  1748. (unlimited ? -1 : num_cells - flushed));
  1749. }
  1750. }
  1751. }
  1752. done:
  1753. return flushed;
  1754. }
  1755. /**
  1756. * Flush cells from just the channel's outgoing cell queue
  1757. *
  1758. * This gets called from channel_flush_some_cells() above to flush cells
  1759. * just from the queue without trying for active_circuits.
  1760. */
  1761. static ssize_t
  1762. channel_flush_some_cells_from_outgoing_queue(channel_t *chan,
  1763. ssize_t num_cells)
  1764. {
  1765. unsigned int unlimited = 0;
  1766. ssize_t flushed = 0;
  1767. cell_queue_entry_t *q = NULL;
  1768. tor_assert(chan);
  1769. tor_assert(chan->write_cell);
  1770. tor_assert(chan->write_packed_cell);
  1771. tor_assert(chan->write_var_cell);
  1772. if (num_cells < 0) unlimited = 1;
  1773. if (!unlimited && num_cells <= flushed) return 0;
  1774. /* If we aren't in CHANNEL_STATE_OPEN, nothing goes through */
  1775. if (chan->state == CHANNEL_STATE_OPEN) {
  1776. while ((unlimited || num_cells > flushed) &&
  1777. NULL != (q = TOR_SIMPLEQ_FIRST(&chan->outgoing_queue))) {
  1778. if (1) {
  1779. /*
  1780. * Okay, we have a good queue entry, try to give it to the lower
  1781. * layer.
  1782. */
  1783. switch (q->type) {
  1784. case CELL_QUEUE_FIXED:
  1785. if (q->u.fixed.cell) {
  1786. if (chan->write_cell(chan,
  1787. q->u.fixed.cell)) {
  1788. ++flushed;
  1789. channel_timestamp_xmit(chan);
  1790. ++(chan->n_cells_xmitted);
  1791. cell_queue_entry_free(q, 1);
  1792. q = NULL;
  1793. }
  1794. /* Else couldn't write it; leave it on the queue */
  1795. } else {
  1796. /* This shouldn't happen */
  1797. log_info(LD_CHANNEL,
  1798. "Saw broken cell queue entry of type CELL_QUEUE_FIXED "
  1799. "with no cell on channel %p "
  1800. "(global ID " U64_FORMAT ").",
  1801. chan, U64_PRINTF_ARG(chan->global_identifier));
  1802. /* Throw it away */
  1803. cell_queue_entry_free(q, 0);
  1804. q = NULL;
  1805. }
  1806. break;
  1807. case CELL_QUEUE_PACKED:
  1808. if (q->u.packed.packed_cell) {
  1809. if (chan->write_packed_cell(chan,
  1810. q->u.packed.packed_cell)) {
  1811. ++flushed;
  1812. channel_timestamp_xmit(chan);
  1813. ++(chan->n_cells_xmitted);
  1814. cell_queue_entry_free(q, 1);
  1815. q = NULL;
  1816. }
  1817. /* Else couldn't write it; leave it on the queue */
  1818. } else {
  1819. /* This shouldn't happen */
  1820. log_info(LD_CHANNEL,
  1821. "Saw broken cell queue entry of type CELL_QUEUE_PACKED "
  1822. "with no cell on channel %p "
  1823. "(global ID " U64_FORMAT ").",
  1824. chan, U64_PRINTF_ARG(chan->global_identifier));
  1825. /* Throw it away */
  1826. cell_queue_entry_free(q, 0);
  1827. q = NULL;
  1828. }
  1829. break;
  1830. case CELL_QUEUE_VAR:
  1831. if (q->u.var.var_cell) {
  1832. if (chan->write_var_cell(chan,
  1833. q->u.var.var_cell)) {
  1834. ++flushed;
  1835. channel_timestamp_xmit(chan);
  1836. ++(chan->n_cells_xmitted);
  1837. cell_queue_entry_free(q, 1);
  1838. q = NULL;
  1839. }
  1840. /* Else couldn't write it; leave it on the queue */
  1841. } else {
  1842. /* This shouldn't happen */
  1843. log_info(LD_CHANNEL,
  1844. "Saw broken cell queue entry of type CELL_QUEUE_VAR "
  1845. "with no cell on channel %p "
  1846. "(global ID " U64_FORMAT ").",
  1847. chan, U64_PRINTF_ARG(chan->global_identifier));
  1848. /* Throw it away */
  1849. cell_queue_entry_free(q, 0);
  1850. q = NULL;
  1851. }
  1852. break;
  1853. default:
  1854. /* Unknown type, log and free it */
  1855. log_info(LD_CHANNEL,
  1856. "Saw an unknown cell queue entry type %d on channel %p "
  1857. "(global ID " U64_FORMAT "; ignoring it."
  1858. " Someone should fix this.",
  1859. q->type, chan, U64_PRINTF_ARG(chan->global_identifier));
  1860. cell_queue_entry_free(q, 0);
  1861. q = NULL;
  1862. }
  1863. /* if q got NULLed out, we used it and should remove the queue entry */
  1864. if (!q) TOR_SIMPLEQ_REMOVE_HEAD(&chan->outgoing_queue, next);
  1865. /* No cell removed from list, so we can't go on any further */
  1866. else break;
  1867. }
  1868. }
  1869. }
  1870. /* Did we drain the queue? */
  1871. if (TOR_SIMPLEQ_EMPTY(&chan->outgoing_queue)) {
  1872. channel_timestamp_drained(chan);
  1873. }
  1874. return flushed;
  1875. }
  1876. /**
  1877. * Flush as many cells as we possibly can from the queue
  1878. *
  1879. * This tries to flush as many cells from the queue as the lower layer
  1880. * will take. It just calls channel_flush_some_cells_from_outgoing_queue()
  1881. * in unlimited mode.
  1882. */
  1883. void
  1884. channel_flush_cells(channel_t *chan)
  1885. {
  1886. channel_flush_some_cells_from_outgoing_queue(chan, -1);
  1887. }
  1888. /**
  1889. * Check if any cells are available
  1890. *
  1891. * This gets used from the lower layer to check if any more cells are
  1892. * available.
  1893. */
  1894. int
  1895. channel_more_to_flush(channel_t *chan)
  1896. {
  1897. tor_assert(chan);
  1898. /* Check if we have any queued */
  1899. if (! TOR_SIMPLEQ_EMPTY(&chan->incoming_queue))
  1900. return 1;
  1901. /* Check if any circuits would like to queue some */
  1902. if (circuitmux_num_cells(chan->cmux) > 0) return 1;
  1903. /* Else no */
  1904. return 0;
  1905. }
  1906. /**
  1907. * Notify the channel we're done flushing the output in the lower layer
  1908. *
  1909. * Connection.c will call this when we've flushed the output; there's some
  1910. * dirreq-related maintenance to do.
  1911. */
  1912. void
  1913. channel_notify_flushed(channel_t *chan)
  1914. {
  1915. tor_assert(chan);
  1916. if (chan->dirreq_id != 0)
  1917. geoip_change_dirreq_state(chan->dirreq_id,
  1918. DIRREQ_TUNNELED,
  1919. DIRREQ_CHANNEL_BUFFER_FLUSHED);
  1920. }
  1921. /**
  1922. * Process the queue of incoming channels on a listener
  1923. *
  1924. * Use a listener's registered callback to process as many entries in the
  1925. * queue of incoming channels as possible.
  1926. */
  1927. void
  1928. channel_listener_process_incoming(channel_listener_t *listener)
  1929. {
  1930. tor_assert(listener);
  1931. /*
  1932. * CHANNEL_LISTENER_STATE_CLOSING permitted because we drain the queue
  1933. * while closing a listener.
  1934. */
  1935. tor_assert(listener->state == CHANNEL_LISTENER_STATE_LISTENING ||
  1936. listener->state == CHANNEL_LISTENER_STATE_CLOSING);
  1937. tor_assert(listener->listener);
  1938. log_debug(LD_CHANNEL,
  1939. "Processing queue of incoming connections for channel "
  1940. "listener %p (global ID " U64_FORMAT ")",
  1941. listener, U64_PRINTF_ARG(listener->global_identifier));
  1942. if (!(listener->incoming_list)) return;
  1943. SMARTLIST_FOREACH_BEGIN(listener->incoming_list,
  1944. channel_t *, chan) {
  1945. tor_assert(chan);
  1946. log_debug(LD_CHANNEL,
  1947. "Handling incoming channel %p (" U64_FORMAT ") "
  1948. "for listener %p (" U64_FORMAT ")",
  1949. chan,
  1950. U64_PRINTF_ARG(chan->global_identifier),
  1951. listener,
  1952. U64_PRINTF_ARG(listener->global_identifier));
  1953. /* Make sure this is set correctly */
  1954. channel_mark_incoming(chan);
  1955. listener->listener(listener, chan);
  1956. } SMARTLIST_FOREACH_END(chan);
  1957. smartlist_free(listener->incoming_list);
  1958. listener->incoming_list = NULL;
  1959. }
  1960. /**
  1961. * Take actions required when a channel becomes open
  1962. *
  1963. * Handle actions we should do when we know a channel is open; a lot of
  1964. * this comes from the old connection_or_set_state_open() of connection_or.c.
  1965. *
  1966. * Because of this mechanism, future channel_t subclasses should take care
  1967. * not to change a channel to from CHANNEL_STATE_OPENING to CHANNEL_STATE_OPEN
  1968. * until there is positive confirmation that the network is operational.
  1969. * In particular, anything UDP-based should not make this transition until a
  1970. * packet is received from the other side.
  1971. */
  1972. void
  1973. channel_do_open_actions(channel_t *chan)
  1974. {
  1975. tor_addr_t remote_addr;
  1976. int started_here, not_using = 0;
  1977. time_t now = time(NULL);
  1978. tor_assert(chan);
  1979. started_here = channel_is_outgoing(chan);
  1980. if (started_here) {
  1981. circuit_build_times_network_is_live(&circ_times);
  1982. rep_hist_note_connect_succeeded(chan->identity_digest, now);
  1983. if (entry_guard_register_connect_status(
  1984. chan->identity_digest, 1, 0, now) < 0) {
  1985. /* Close any circuits pending on this channel. We leave it in state
  1986. * 'open' though, because it didn't actually *fail* -- we just
  1987. * chose not to use it. */
  1988. log_debug(LD_OR,
  1989. "New entry guard was reachable, but closing this "
  1990. "connection so we can retry the earlier entry guards.");
  1991. circuit_n_chan_done(chan, 0);
  1992. not_using = 1;
  1993. }
  1994. router_set_status(chan->identity_digest, 1);
  1995. } else {
  1996. /* only report it to the geoip module if it's not a known router */
  1997. if (!router_get_by_id_digest(chan->identity_digest)) {
  1998. if (channel_get_addr_if_possible(chan, &remote_addr)) {
  1999. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &remote_addr,
  2000. now);
  2001. }
  2002. /* Otherwise the underlying transport can't tell us this, so skip it */
  2003. }
  2004. }
  2005. if (!not_using) circuit_n_chan_done(chan, 1);
  2006. }
  2007. /**
  2008. * Queue an incoming channel on a listener
  2009. *
  2010. * Internal and subclass use only function to queue an incoming channel from
  2011. * a listener. A subclass of channel_listener_t should call this when a new
  2012. * incoming channel is created.
  2013. */
  2014. void
  2015. channel_listener_queue_incoming(channel_listener_t *listener,
  2016. channel_t *incoming)
  2017. {
  2018. int need_to_queue = 0;
  2019. tor_assert(listener);
  2020. tor_assert(listener->state == CHANNEL_LISTENER_STATE_LISTENING);
  2021. tor_assert(incoming);
  2022. log_debug(LD_CHANNEL,
  2023. "Queueing incoming channel %p (global ID " U64_FORMAT ") on "
  2024. "channel listener %p (global ID " U64_FORMAT ")",
  2025. incoming, U64_PRINTF_ARG(incoming->global_identifier),
  2026. listener, U64_PRINTF_ARG(listener->global_identifier));
  2027. /* Do we need to queue it, or can we just call the listener right away? */
  2028. if (!(listener->listener)) need_to_queue = 1;
  2029. if (listener->incoming_list &&
  2030. (smartlist_len(listener->incoming_list) > 0))
  2031. need_to_queue = 1;
  2032. /* If we need to queue and have no queue, create one */
  2033. if (need_to_queue && !(listener->incoming_list)) {
  2034. listener->incoming_list = smartlist_new();
  2035. }
  2036. /* Bump the counter and timestamp it */
  2037. channel_listener_timestamp_active(listener);
  2038. channel_listener_timestamp_accepted(listener);
  2039. ++(listener->n_accepted);
  2040. /* If we don't need to queue, process it right away */
  2041. if (!need_to_queue) {
  2042. tor_assert(listener->listener);
  2043. listener->listener(listener, incoming);
  2044. }
  2045. /*
  2046. * Otherwise, we need to queue; queue and then process the queue if
  2047. * we can.
  2048. */
  2049. else {
  2050. tor_assert(listener->incoming_list);
  2051. smartlist_add(listener->incoming_list, incoming);
  2052. if (listener->listener) channel_listener_process_incoming(listener);
  2053. }
  2054. }
  2055. /**
  2056. * Process queued incoming cells
  2057. *
  2058. * Process as many queued cells as we can from the incoming
  2059. * cell queue.
  2060. */
  2061. void
  2062. channel_process_cells(channel_t *chan)
  2063. {
  2064. cell_queue_entry_t *q;
  2065. tor_assert(chan);
  2066. tor_assert(chan->state == CHANNEL_STATE_CLOSING ||
  2067. chan->state == CHANNEL_STATE_MAINT ||
  2068. chan->state == CHANNEL_STATE_OPEN);
  2069. log_debug(LD_CHANNEL,
  2070. "Processing as many incoming cells as we can for channel %p",
  2071. chan);
  2072. /* Nothing we can do if we have no registered cell handlers */
  2073. if (!(chan->cell_handler ||
  2074. chan->var_cell_handler)) return;
  2075. /* Nothing we can do if we have no cells */
  2076. if (TOR_SIMPLEQ_EMPTY(&chan->incoming_queue)) return;
  2077. /*
  2078. * Process cells until we're done or find one we have no current handler
  2079. * for.
  2080. */
  2081. while (NULL != (q = TOR_SIMPLEQ_FIRST(&chan->incoming_queue))) {
  2082. tor_assert(q);
  2083. tor_assert(q->type == CELL_QUEUE_FIXED ||
  2084. q->type == CELL_QUEUE_VAR);
  2085. if (q->type == CELL_QUEUE_FIXED &&
  2086. chan->cell_handler) {
  2087. /* Handle a fixed-length cell */
  2088. TOR_SIMPLEQ_REMOVE_HEAD(&chan->incoming_queue, next);
  2089. tor_assert(q->u.fixed.cell);
  2090. log_debug(LD_CHANNEL,
  2091. "Processing incoming cell_t %p for channel %p (global ID "
  2092. U64_FORMAT ")",
  2093. q->u.fixed.cell, chan,
  2094. U64_PRINTF_ARG(chan->global_identifier));
  2095. chan->cell_handler(chan, q->u.fixed.cell);
  2096. tor_free(q);
  2097. } else if (q->type == CELL_QUEUE_VAR &&
  2098. chan->var_cell_handler) {
  2099. /* Handle a variable-length cell */
  2100. TOR_SIMPLEQ_REMOVE_HEAD(&chan->incoming_queue, next);
  2101. tor_assert(q->u.var.var_cell);
  2102. log_debug(LD_CHANNEL,
  2103. "Processing incoming var_cell_t %p for channel %p (global ID "
  2104. U64_FORMAT ")",
  2105. q->u.var.var_cell, chan,
  2106. U64_PRINTF_ARG(chan->global_identifier));
  2107. chan->var_cell_handler(chan, q->u.var.var_cell);
  2108. tor_free(q);
  2109. } else {
  2110. /* Can't handle this one */
  2111. break;
  2112. }
  2113. }
  2114. }
  2115. /**
  2116. * Queue incoming cell
  2117. *
  2118. * This should be called by a channel_t subclass to queue an incoming fixed-
  2119. * length cell for processing, and process it if possible.
  2120. */
  2121. void
  2122. channel_queue_cell(channel_t *chan, cell_t *cell)
  2123. {
  2124. int need_to_queue = 0;
  2125. cell_queue_entry_t *q;
  2126. tor_assert(chan);
  2127. tor_assert(cell);
  2128. tor_assert(chan->state == CHANNEL_STATE_OPEN);
  2129. /* Do we need to queue it, or can we just call the handler right away? */
  2130. if (!(chan->cell_handler)) need_to_queue = 1;
  2131. if (! TOR_SIMPLEQ_EMPTY(&chan->incoming_queue))
  2132. need_to_queue = 1;
  2133. /* Timestamp for receiving */
  2134. channel_timestamp_recv(chan);
  2135. /* Update the counter */
  2136. ++(chan->n_cells_recved);
  2137. /* If we don't need to queue we can just call cell_handler */
  2138. if (!need_to_queue) {
  2139. tor_assert(chan->cell_handler);
  2140. log_debug(LD_CHANNEL,
  2141. "Directly handling incoming cell_t %p for channel %p "
  2142. "(global ID " U64_FORMAT ")",
  2143. cell, chan,
  2144. U64_PRINTF_ARG(chan->global_identifier));
  2145. chan->cell_handler(chan, cell);
  2146. } else {
  2147. /* Otherwise queue it and then process the queue if possible. */
  2148. q = cell_queue_entry_new_fixed(cell);
  2149. log_debug(LD_CHANNEL,
  2150. "Queueing incoming cell_t %p for channel %p "
  2151. "(global ID " U64_FORMAT ")",
  2152. cell, chan,
  2153. U64_PRINTF_ARG(chan->global_identifier));
  2154. TOR_SIMPLEQ_INSERT_TAIL(&chan->incoming_queue, q, next);
  2155. if (chan->cell_handler ||
  2156. chan->var_cell_handler) {
  2157. channel_process_cells(chan);
  2158. }
  2159. }
  2160. }
  2161. /**
  2162. * Queue incoming variable-length cell
  2163. *
  2164. * This should be called by a channel_t subclass to queue an incoming
  2165. * variable-length cell for processing, and process it if possible.
  2166. */
  2167. void
  2168. channel_queue_var_cell(channel_t *chan, var_cell_t *var_cell)
  2169. {
  2170. int need_to_queue = 0;
  2171. cell_queue_entry_t *q;
  2172. tor_assert(chan);
  2173. tor_assert(var_cell);
  2174. tor_assert(chan->state == CHANNEL_STATE_OPEN);
  2175. /* Do we need to queue it, or can we just call the handler right away? */
  2176. if (!(chan->var_cell_handler)) need_to_queue = 1;
  2177. if (! TOR_SIMPLEQ_EMPTY(&chan->incoming_queue))
  2178. need_to_queue = 1;
  2179. /* Timestamp for receiving */
  2180. channel_timestamp_recv(chan);
  2181. /* Update the counter */
  2182. ++(chan->n_cells_recved);
  2183. /* If we don't need to queue we can just call cell_handler */
  2184. if (!need_to_queue) {
  2185. tor_assert(chan->var_cell_handler);
  2186. log_debug(LD_CHANNEL,
  2187. "Directly handling incoming var_cell_t %p for channel %p "
  2188. "(global ID " U64_FORMAT ")",
  2189. var_cell, chan,
  2190. U64_PRINTF_ARG(chan->global_identifier));
  2191. chan->var_cell_handler(chan, var_cell);
  2192. } else {
  2193. /* Otherwise queue it and then process the queue if possible. */
  2194. q = cell_queue_entry_new_var(var_cell);
  2195. log_debug(LD_CHANNEL,
  2196. "Queueing incoming var_cell_t %p for channel %p "
  2197. "(global ID " U64_FORMAT ")",
  2198. var_cell, chan,
  2199. U64_PRINTF_ARG(chan->global_identifier));
  2200. TOR_SIMPLEQ_INSERT_TAIL(&chan->incoming_queue, q, next);
  2201. if (chan->cell_handler ||
  2202. chan->var_cell_handler) {
  2203. channel_process_cells(chan);
  2204. }
  2205. }
  2206. }
  2207. /**
  2208. * Send destroy cell on a channel
  2209. *
  2210. * Write a destroy cell with circ ID <b>circ_id</b> and reason <b>reason</b>
  2211. * onto channel <b>chan</b>. Don't perform range-checking on reason:
  2212. * we may want to propagate reasons from other cells.
  2213. */
  2214. int
  2215. channel_send_destroy(circid_t circ_id, channel_t *chan, int reason)
  2216. {
  2217. cell_t cell;
  2218. tor_assert(chan);
  2219. if (circ_id == 0) {
  2220. log_warn(LD_BUG, "Attempted to send a destroy cell for circID 0 "
  2221. "on a channel " U64_FORMAT " at %p in state %s (%d)",
  2222. U64_PRINTF_ARG(chan->global_identifier),
  2223. chan, channel_state_to_string(chan->state),
  2224. chan->state);
  2225. return 0;
  2226. }
  2227. /* Check to make sure we can send on this channel first */
  2228. if (!(chan->state == CHANNEL_STATE_CLOSING ||
  2229. chan->state == CHANNEL_STATE_CLOSED ||
  2230. chan->state == CHANNEL_STATE_ERROR)) {
  2231. memset(&cell, 0, sizeof(cell_t));
  2232. cell.circ_id = circ_id;
  2233. cell.command = CELL_DESTROY;
  2234. cell.payload[0] = (uint8_t) reason;
  2235. log_debug(LD_OR,
  2236. "Sending destroy (circID %u) on channel %p "
  2237. "(global ID " U64_FORMAT ")",
  2238. (unsigned)circ_id, chan,
  2239. U64_PRINTF_ARG(chan->global_identifier));
  2240. channel_write_cell(chan, &cell);
  2241. } else {
  2242. log_warn(LD_BUG,
  2243. "Someone called channel_send_destroy() for circID %u "
  2244. "on a channel " U64_FORMAT " at %p in state %s (%d)",
  2245. (unsigned)circ_id, U64_PRINTF_ARG(chan->global_identifier),
  2246. chan, channel_state_to_string(chan->state),
  2247. chan->state);
  2248. }
  2249. return 0;
  2250. }
  2251. /**
  2252. * Dump channel statistics to the log
  2253. *
  2254. * This is called from dumpstats() in main.c and spams the log with
  2255. * statistics on channels.
  2256. */
  2257. void
  2258. channel_dumpstats(int severity)
  2259. {
  2260. if (all_channels && smartlist_len(all_channels) > 0) {
  2261. tor_log(severity, LD_GENERAL,
  2262. "Dumping statistics about %d channels:",
  2263. smartlist_len(all_channels));
  2264. tor_log(severity, LD_GENERAL,
  2265. "%d are active, and %d are done and waiting for cleanup",
  2266. (active_channels != NULL) ?
  2267. smartlist_len(active_channels) : 0,
  2268. (finished_channels != NULL) ?
  2269. smartlist_len(finished_channels) : 0);
  2270. SMARTLIST_FOREACH(all_channels, channel_t *, chan,
  2271. channel_dump_statistics(chan, severity));
  2272. tor_log(severity, LD_GENERAL,
  2273. "Done spamming about channels now");
  2274. } else {
  2275. tor_log(severity, LD_GENERAL,
  2276. "No channels to dump");
  2277. }
  2278. }
  2279. /**
  2280. * Dump channel listener statistics to the log
  2281. *
  2282. * This is called from dumpstats() in main.c and spams the log with
  2283. * statistics on channel listeners.
  2284. */
  2285. void
  2286. channel_listener_dumpstats(int severity)
  2287. {
  2288. if (all_listeners && smartlist_len(all_listeners) > 0) {
  2289. tor_log(severity, LD_GENERAL,
  2290. "Dumping statistics about %d channel listeners:",
  2291. smartlist_len(all_listeners));
  2292. tor_log(severity, LD_GENERAL,
  2293. "%d are active and %d are done and waiting for cleanup",
  2294. (active_listeners != NULL) ?
  2295. smartlist_len(active_listeners) : 0,
  2296. (finished_listeners != NULL) ?
  2297. smartlist_len(finished_listeners) : 0);
  2298. SMARTLIST_FOREACH(all_listeners, channel_listener_t *, chan_l,
  2299. channel_listener_dump_statistics(chan_l, severity));
  2300. tor_log(severity, LD_GENERAL,
  2301. "Done spamming about channel listeners now");
  2302. } else {
  2303. tor_log(severity, LD_GENERAL,
  2304. "No channel listeners to dump");
  2305. }
  2306. }
  2307. /**
  2308. * Set the cmux policy on all active channels
  2309. */
  2310. void
  2311. channel_set_cmux_policy_everywhere(circuitmux_policy_t *pol)
  2312. {
  2313. if (!active_channels) return;
  2314. SMARTLIST_FOREACH_BEGIN(active_channels, channel_t *, curr) {
  2315. if (curr->cmux) {
  2316. circuitmux_set_policy(curr->cmux, pol);
  2317. }
  2318. } SMARTLIST_FOREACH_END(curr);
  2319. }
  2320. /**
  2321. * Clean up channels
  2322. *
  2323. * This gets called periodically from run_scheduled_events() in main.c;
  2324. * it cleans up after closed channels.
  2325. */
  2326. void
  2327. channel_run_cleanup(void)
  2328. {
  2329. channel_t *tmp = NULL;
  2330. /* Check if we need to do anything */
  2331. if (!finished_channels || smartlist_len(finished_channels) == 0) return;
  2332. /* Iterate through finished_channels and get rid of them */
  2333. SMARTLIST_FOREACH_BEGIN(finished_channels, channel_t *, curr) {
  2334. tmp = curr;
  2335. /* Remove it from the list */
  2336. SMARTLIST_DEL_CURRENT(finished_channels, curr);
  2337. /* Also unregister it */
  2338. channel_unregister(tmp);
  2339. /* ... and free it */
  2340. channel_free(tmp);
  2341. } SMARTLIST_FOREACH_END(curr);
  2342. }
  2343. /**
  2344. * Clean up channel listeners
  2345. *
  2346. * This gets called periodically from run_scheduled_events() in main.c;
  2347. * it cleans up after closed channel listeners.
  2348. */
  2349. void
  2350. channel_listener_run_cleanup(void)
  2351. {
  2352. channel_listener_t *tmp = NULL;
  2353. /* Check if we need to do anything */
  2354. if (!finished_listeners || smartlist_len(finished_listeners) == 0) return;
  2355. /* Iterate through finished_channels and get rid of them */
  2356. SMARTLIST_FOREACH_BEGIN(finished_listeners, channel_listener_t *, curr) {
  2357. tmp = curr;
  2358. /* Remove it from the list */
  2359. SMARTLIST_DEL_CURRENT(finished_listeners, curr);
  2360. /* Also unregister it */
  2361. channel_listener_unregister(tmp);
  2362. /* ... and free it */
  2363. channel_listener_free(tmp);
  2364. } SMARTLIST_FOREACH_END(curr);
  2365. }
  2366. /**
  2367. * Free a list of channels for channel_free_all()
  2368. */
  2369. static void
  2370. channel_free_list(smartlist_t *channels, int mark_for_close)
  2371. {
  2372. if (!channels) return;
  2373. SMARTLIST_FOREACH_BEGIN(channels, channel_t *, curr) {
  2374. /* Deregister and free it */
  2375. tor_assert(curr);
  2376. log_debug(LD_CHANNEL,
  2377. "Cleaning up channel %p (global ID " U64_FORMAT ") "
  2378. "in state %s (%d)",
  2379. curr, U64_PRINTF_ARG(curr->global_identifier),
  2380. channel_state_to_string(curr->state), curr->state);
  2381. /* Detach circuits early so they can find the channel */
  2382. if (curr->cmux) {
  2383. circuitmux_detach_all_circuits(curr->cmux);
  2384. }
  2385. channel_unregister(curr);
  2386. if (mark_for_close) {
  2387. if (!(curr->state == CHANNEL_STATE_CLOSING ||
  2388. curr->state == CHANNEL_STATE_CLOSED ||
  2389. curr->state == CHANNEL_STATE_ERROR)) {
  2390. channel_mark_for_close(curr);
  2391. }
  2392. channel_force_free(curr);
  2393. } else channel_free(curr);
  2394. } SMARTLIST_FOREACH_END(curr);
  2395. }
  2396. /**
  2397. * Free a list of channel listeners for channel_free_all()
  2398. */
  2399. static void
  2400. channel_listener_free_list(smartlist_t *listeners, int mark_for_close)
  2401. {
  2402. if (!listeners) return;
  2403. SMARTLIST_FOREACH_BEGIN(listeners, channel_listener_t *, curr) {
  2404. /* Deregister and free it */
  2405. tor_assert(curr);
  2406. log_debug(LD_CHANNEL,
  2407. "Cleaning up channel listener %p (global ID " U64_FORMAT ") "
  2408. "in state %s (%d)",
  2409. curr, U64_PRINTF_ARG(curr->global_identifier),
  2410. channel_listener_state_to_string(curr->state), curr->state);
  2411. channel_listener_unregister(curr);
  2412. if (mark_for_close) {
  2413. if (!(curr->state == CHANNEL_LISTENER_STATE_CLOSING ||
  2414. curr->state == CHANNEL_LISTENER_STATE_CLOSED ||
  2415. curr->state == CHANNEL_LISTENER_STATE_ERROR)) {
  2416. channel_listener_mark_for_close(curr);
  2417. }
  2418. channel_listener_force_free(curr);
  2419. } else channel_listener_free(curr);
  2420. } SMARTLIST_FOREACH_END(curr);
  2421. }
  2422. /**
  2423. * Close all channels and free everything
  2424. *
  2425. * This gets called from tor_free_all() in main.c to clean up on exit.
  2426. * It will close all registered channels and free associated storage,
  2427. * then free the all_channels, active_channels, listening_channels and
  2428. * finished_channels lists and also channel_identity_map.
  2429. */
  2430. void
  2431. channel_free_all(void)
  2432. {
  2433. log_debug(LD_CHANNEL,
  2434. "Shutting down channels...");
  2435. /* First, let's go for finished channels */
  2436. if (finished_channels) {
  2437. channel_free_list(finished_channels, 0);
  2438. smartlist_free(finished_channels);
  2439. finished_channels = NULL;
  2440. }
  2441. /* Now the finished listeners */
  2442. if (finished_listeners) {
  2443. channel_listener_free_list(finished_listeners, 0);
  2444. smartlist_free(finished_listeners);
  2445. finished_listeners = NULL;
  2446. }
  2447. /* Now all active channels */
  2448. if (active_channels) {
  2449. channel_free_list(active_channels, 1);
  2450. smartlist_free(active_channels);
  2451. active_channels = NULL;
  2452. }
  2453. /* Now all active listeners */
  2454. if (active_listeners) {
  2455. channel_listener_free_list(active_listeners, 1);
  2456. smartlist_free(active_listeners);
  2457. active_listeners = NULL;
  2458. }
  2459. /* Now all channels, in case any are left over */
  2460. if (all_channels) {
  2461. channel_free_list(all_channels, 1);
  2462. smartlist_free(all_channels);
  2463. all_channels = NULL;
  2464. }
  2465. /* Now all listeners, in case any are left over */
  2466. if (all_listeners) {
  2467. channel_listener_free_list(all_listeners, 1);
  2468. smartlist_free(all_listeners);
  2469. all_listeners = NULL;
  2470. }
  2471. /* Now free channel_identity_map */
  2472. log_debug(LD_CHANNEL,
  2473. "Freeing channel_identity_map");
  2474. /* Geez, anything still left over just won't die ... let it leak then */
  2475. HT_CLEAR(channel_idmap, &channel_identity_map);
  2476. log_debug(LD_CHANNEL,
  2477. "Done cleaning up after channels");
  2478. }
  2479. /**
  2480. * Connect to a given addr/port/digest
  2481. *
  2482. * This sets up a new outgoing channel; in the future if multiple
  2483. * channel_t subclasses are available, this is where the selection policy
  2484. * should go. It may also be desirable to fold port into tor_addr_t
  2485. * or make a new type including a tor_addr_t and port, so we have a
  2486. * single abstract object encapsulating all the protocol details of
  2487. * how to contact an OR.
  2488. */
  2489. channel_t *
  2490. channel_connect(const tor_addr_t *addr, uint16_t port,
  2491. const char *id_digest)
  2492. {
  2493. return channel_tls_connect(addr, port, id_digest);
  2494. }
  2495. /**
  2496. * Decide which of two channels to prefer for extending a circuit
  2497. *
  2498. * This function is called while extending a circuit and returns true iff
  2499. * a is 'better' than b. The most important criterion here is that a
  2500. * canonical channel is always better than a non-canonical one, but the
  2501. * number of circuits and the age are used as tie-breakers.
  2502. *
  2503. * This is based on the former connection_or_is_better() of connection_or.c
  2504. */
  2505. int
  2506. channel_is_better(time_t now, channel_t *a, channel_t *b,
  2507. int forgive_new_connections)
  2508. {
  2509. int a_grace, b_grace;
  2510. int a_is_canonical, b_is_canonical;
  2511. int a_has_circs, b_has_circs;
  2512. /*
  2513. * Do not definitively deprecate a new channel with no circuits on it
  2514. * until this much time has passed.
  2515. */
  2516. #define NEW_CHAN_GRACE_PERIOD (15*60)
  2517. tor_assert(a);
  2518. tor_assert(b);
  2519. /* Check if one is canonical and the other isn't first */
  2520. a_is_canonical = channel_is_canonical(a);
  2521. b_is_canonical = channel_is_canonical(b);
  2522. if (a_is_canonical && !b_is_canonical) return 1;
  2523. if (!a_is_canonical && b_is_canonical) return 0;
  2524. /*
  2525. * Okay, if we're here they tied on canonicity. Next we check if
  2526. * they have any circuits, and if one does and the other doesn't,
  2527. * we prefer the one that does, unless we are forgiving and the
  2528. * one that has no circuits is in its grace period.
  2529. */
  2530. a_has_circs = (channel_num_circuits(a) > 0);
  2531. b_has_circs = (channel_num_circuits(b) > 0);
  2532. a_grace = (forgive_new_connections &&
  2533. (now < channel_when_created(a) + NEW_CHAN_GRACE_PERIOD));
  2534. b_grace = (forgive_new_connections &&
  2535. (now < channel_when_created(b) + NEW_CHAN_GRACE_PERIOD));
  2536. if (a_has_circs && !b_has_circs && !b_grace) return 1;
  2537. if (!a_has_circs && b_has_circs && !a_grace) return 0;
  2538. /* They tied on circuits too; just prefer whichever is newer */
  2539. if (channel_when_created(a) > channel_when_created(b)) return 1;
  2540. else return 0;
  2541. }
  2542. /**
  2543. * Get a channel to extend a circuit
  2544. *
  2545. * Pick a suitable channel to extend a circuit to given the desired digest
  2546. * the address we believe is correct for that digest; this tries to see
  2547. * if we already have one for the requested endpoint, but if there is no good
  2548. * channel, set *msg_out to a message describing the channel's state
  2549. * and our next action, and set *launch_out to a boolean indicated whether
  2550. * the caller should try to launch a new channel with channel_connect().
  2551. */
  2552. channel_t *
  2553. channel_get_for_extend(const char *digest,
  2554. const tor_addr_t *target_addr,
  2555. const char **msg_out,
  2556. int *launch_out)
  2557. {
  2558. channel_t *chan, *best = NULL;
  2559. int n_inprogress_goodaddr = 0, n_old = 0;
  2560. int n_noncanonical = 0, n_possible = 0;
  2561. time_t now = approx_time();
  2562. tor_assert(msg_out);
  2563. tor_assert(launch_out);
  2564. chan = channel_find_by_remote_digest(digest);
  2565. /* Walk the list, unrefing the old one and refing the new at each
  2566. * iteration.
  2567. */
  2568. for (; chan; chan = channel_next_with_digest(chan)) {
  2569. tor_assert(tor_memeq(chan->identity_digest,
  2570. digest, DIGEST_LEN));
  2571. if (chan->state == CHANNEL_STATE_CLOSING ||
  2572. chan->state == CHANNEL_STATE_CLOSED ||
  2573. chan->state == CHANNEL_STATE_ERROR)
  2574. continue;
  2575. /* Never return a channel on which the other end appears to be
  2576. * a client. */
  2577. if (channel_is_client(chan)) {
  2578. continue;
  2579. }
  2580. /* Never return a non-open connection. */
  2581. if (chan->state != CHANNEL_STATE_OPEN) {
  2582. /* If the address matches, don't launch a new connection for this
  2583. * circuit. */
  2584. if (channel_matches_target_addr_for_extend(chan, target_addr))
  2585. ++n_inprogress_goodaddr;
  2586. continue;
  2587. }
  2588. /* Never return a connection that shouldn't be used for circs. */
  2589. if (channel_is_bad_for_new_circs(chan)) {
  2590. ++n_old;
  2591. continue;
  2592. }
  2593. /* Never return a non-canonical connection using a recent link protocol
  2594. * if the address is not what we wanted.
  2595. *
  2596. * The channel_is_canonical_is_reliable() function asks the lower layer
  2597. * if we should trust channel_is_canonical(). The below is from the
  2598. * comments of the old circuit_or_get_for_extend() and applies when
  2599. * the lower-layer transport is channel_tls_t.
  2600. *
  2601. * (For old link protocols, we can't rely on is_canonical getting
  2602. * set properly if we're talking to the right address, since we might
  2603. * have an out-of-date descriptor, and we will get no NETINFO cell to
  2604. * tell us about the right address.)
  2605. */
  2606. if (!channel_is_canonical(chan) &&
  2607. channel_is_canonical_is_reliable(chan) &&
  2608. !channel_matches_target_addr_for_extend(chan, target_addr)) {
  2609. ++n_noncanonical;
  2610. continue;
  2611. }
  2612. ++n_possible;
  2613. if (!best) {
  2614. best = chan; /* If we have no 'best' so far, this one is good enough. */
  2615. continue;
  2616. }
  2617. if (channel_is_better(now, chan, best, 0))
  2618. best = chan;
  2619. }
  2620. if (best) {
  2621. *msg_out = "Connection is fine; using it.";
  2622. *launch_out = 0;
  2623. return best;
  2624. } else if (n_inprogress_goodaddr) {
  2625. *msg_out = "Connection in progress; waiting.";
  2626. *launch_out = 0;
  2627. return NULL;
  2628. } else if (n_old || n_noncanonical) {
  2629. *msg_out = "Connections all too old, or too non-canonical. "
  2630. " Launching a new one.";
  2631. *launch_out = 1;
  2632. return NULL;
  2633. } else {
  2634. *msg_out = "Not connected. Connecting.";
  2635. *launch_out = 1;
  2636. return NULL;
  2637. }
  2638. }
  2639. /**
  2640. * Describe the transport subclass for a channel
  2641. *
  2642. * Invoke a method to get a string description of the lower-layer
  2643. * transport for this channel.
  2644. */
  2645. const char *
  2646. channel_describe_transport(channel_t *chan)
  2647. {
  2648. tor_assert(chan);
  2649. tor_assert(chan->describe_transport);
  2650. return chan->describe_transport(chan);
  2651. }
  2652. /**
  2653. * Describe the transport subclass for a channel listener
  2654. *
  2655. * Invoke a method to get a string description of the lower-layer
  2656. * transport for this channel listener.
  2657. */
  2658. const char *
  2659. channel_listener_describe_transport(channel_listener_t *chan_l)
  2660. {
  2661. tor_assert(chan_l);
  2662. tor_assert(chan_l->describe_transport);
  2663. return chan_l->describe_transport(chan_l);
  2664. }
  2665. /**
  2666. * Return the number of entries in <b>queue</b>
  2667. */
  2668. static int
  2669. chan_cell_queue_len(const chan_cell_queue_t *queue)
  2670. {
  2671. int r = 0;
  2672. cell_queue_entry_t *cell;
  2673. TOR_SIMPLEQ_FOREACH(cell, queue, next)
  2674. ++r;
  2675. return r;
  2676. }
  2677. /**
  2678. * Dump channel statistics
  2679. *
  2680. * Dump statistics for one channel to the log
  2681. */
  2682. void
  2683. channel_dump_statistics(channel_t *chan, int severity)
  2684. {
  2685. double avg, interval, age;
  2686. time_t now = time(NULL);
  2687. tor_addr_t remote_addr;
  2688. int have_remote_addr;
  2689. char *remote_addr_str;
  2690. tor_assert(chan);
  2691. age = (double)(now - chan->timestamp_created);
  2692. tor_log(severity, LD_GENERAL,
  2693. "Channel " U64_FORMAT " (at %p) with transport %s is in state "
  2694. "%s (%d)",
  2695. U64_PRINTF_ARG(chan->global_identifier), chan,
  2696. channel_describe_transport(chan),
  2697. channel_state_to_string(chan->state), chan->state);
  2698. tor_log(severity, LD_GENERAL,
  2699. " * Channel " U64_FORMAT " was created at " U64_FORMAT
  2700. " (" U64_FORMAT " seconds ago) "
  2701. "and last active at " U64_FORMAT " (" U64_FORMAT " seconds ago)",
  2702. U64_PRINTF_ARG(chan->global_identifier),
  2703. U64_PRINTF_ARG(chan->timestamp_created),
  2704. U64_PRINTF_ARG(now - chan->timestamp_created),
  2705. U64_PRINTF_ARG(chan->timestamp_active),
  2706. U64_PRINTF_ARG(now - chan->timestamp_active));
  2707. /* Handle digest and nickname */
  2708. if (!tor_digest_is_zero(chan->identity_digest)) {
  2709. if (chan->nickname) {
  2710. tor_log(severity, LD_GENERAL,
  2711. " * Channel " U64_FORMAT " says it is connected "
  2712. "to an OR with digest %s and nickname %s",
  2713. U64_PRINTF_ARG(chan->global_identifier),
  2714. hex_str(chan->identity_digest, DIGEST_LEN),
  2715. chan->nickname);
  2716. } else {
  2717. tor_log(severity, LD_GENERAL,
  2718. " * Channel " U64_FORMAT " says it is connected "
  2719. "to an OR with digest %s and no known nickname",
  2720. U64_PRINTF_ARG(chan->global_identifier),
  2721. hex_str(chan->identity_digest, DIGEST_LEN));
  2722. }
  2723. } else {
  2724. if (chan->nickname) {
  2725. tor_log(severity, LD_GENERAL,
  2726. " * Channel " U64_FORMAT " does not know the digest"
  2727. " of the OR it is connected to, but reports its nickname is %s",
  2728. U64_PRINTF_ARG(chan->global_identifier),
  2729. chan->nickname);
  2730. } else {
  2731. tor_log(severity, LD_GENERAL,
  2732. " * Channel " U64_FORMAT " does not know the digest"
  2733. " or the nickname of the OR it is connected to",
  2734. U64_PRINTF_ARG(chan->global_identifier));
  2735. }
  2736. }
  2737. /* Handle remote address and descriptions */
  2738. have_remote_addr = channel_get_addr_if_possible(chan, &remote_addr);
  2739. if (have_remote_addr) {
  2740. char *actual = tor_strdup(channel_get_actual_remote_descr(chan));
  2741. remote_addr_str = tor_dup_addr(&remote_addr);
  2742. tor_log(severity, LD_GENERAL,
  2743. " * Channel " U64_FORMAT " says its remote address"
  2744. " is %s, and gives a canonical description of \"%s\" and an "
  2745. "actual description of \"%s\"",
  2746. U64_PRINTF_ARG(chan->global_identifier),
  2747. remote_addr_str,
  2748. channel_get_canonical_remote_descr(chan),
  2749. actual);
  2750. tor_free(remote_addr_str);
  2751. tor_free(actual);
  2752. } else {
  2753. char *actual = tor_strdup(channel_get_actual_remote_descr(chan));
  2754. tor_log(severity, LD_GENERAL,
  2755. " * Channel " U64_FORMAT " does not know its remote "
  2756. "address, but gives a canonical description of \"%s\" and an "
  2757. "actual description of \"%s\"",
  2758. U64_PRINTF_ARG(chan->global_identifier),
  2759. channel_get_canonical_remote_descr(chan),
  2760. actual);
  2761. tor_free(actual);
  2762. }
  2763. /* Handle marks */
  2764. tor_log(severity, LD_GENERAL,
  2765. " * Channel " U64_FORMAT " has these marks: %s %s %s "
  2766. "%s %s %s",
  2767. U64_PRINTF_ARG(chan->global_identifier),
  2768. channel_is_bad_for_new_circs(chan) ?
  2769. "bad_for_new_circs" : "!bad_for_new_circs",
  2770. channel_is_canonical(chan) ?
  2771. "canonical" : "!canonical",
  2772. channel_is_canonical_is_reliable(chan) ?
  2773. "is_canonical_is_reliable" :
  2774. "!is_canonical_is_reliable",
  2775. channel_is_client(chan) ?
  2776. "client" : "!client",
  2777. channel_is_local(chan) ?
  2778. "local" : "!local",
  2779. channel_is_incoming(chan) ?
  2780. "incoming" : "outgoing");
  2781. /* Describe queues */
  2782. tor_log(severity, LD_GENERAL,
  2783. " * Channel " U64_FORMAT " has %d queued incoming cells"
  2784. " and %d queued outgoing cells",
  2785. U64_PRINTF_ARG(chan->global_identifier),
  2786. chan_cell_queue_len(&chan->incoming_queue),
  2787. chan_cell_queue_len(&chan->outgoing_queue));
  2788. /* Describe circuits */
  2789. tor_log(severity, LD_GENERAL,
  2790. " * Channel " U64_FORMAT " has %d active circuits out of"
  2791. " %d in total",
  2792. U64_PRINTF_ARG(chan->global_identifier),
  2793. (chan->cmux != NULL) ?
  2794. circuitmux_num_active_circuits(chan->cmux) : 0,
  2795. (chan->cmux != NULL) ?
  2796. circuitmux_num_circuits(chan->cmux) : 0);
  2797. /* Describe timestamps */
  2798. tor_log(severity, LD_GENERAL,
  2799. " * Channel " U64_FORMAT " was last used by a "
  2800. "client at " U64_FORMAT " (" U64_FORMAT " seconds ago)",
  2801. U64_PRINTF_ARG(chan->global_identifier),
  2802. U64_PRINTF_ARG(chan->timestamp_client),
  2803. U64_PRINTF_ARG(now - chan->timestamp_client));
  2804. tor_log(severity, LD_GENERAL,
  2805. " * Channel " U64_FORMAT " was last drained at "
  2806. U64_FORMAT " (" U64_FORMAT " seconds ago)",
  2807. U64_PRINTF_ARG(chan->global_identifier),
  2808. U64_PRINTF_ARG(chan->timestamp_drained),
  2809. U64_PRINTF_ARG(now - chan->timestamp_drained));
  2810. tor_log(severity, LD_GENERAL,
  2811. " * Channel " U64_FORMAT " last received a cell "
  2812. "at " U64_FORMAT " (" U64_FORMAT " seconds ago)",
  2813. U64_PRINTF_ARG(chan->global_identifier),
  2814. U64_PRINTF_ARG(chan->timestamp_recv),
  2815. U64_PRINTF_ARG(now - chan->timestamp_recv));
  2816. tor_log(severity, LD_GENERAL,
  2817. " * Channel " U64_FORMAT " last trasmitted a cell "
  2818. "at " U64_FORMAT " (" U64_FORMAT " seconds ago)",
  2819. U64_PRINTF_ARG(chan->global_identifier),
  2820. U64_PRINTF_ARG(chan->timestamp_xmit),
  2821. U64_PRINTF_ARG(now - chan->timestamp_xmit));
  2822. /* Describe counters and rates */
  2823. tor_log(severity, LD_GENERAL,
  2824. " * Channel " U64_FORMAT " has received "
  2825. U64_FORMAT " cells and transmitted " U64_FORMAT,
  2826. U64_PRINTF_ARG(chan->global_identifier),
  2827. U64_PRINTF_ARG(chan->n_cells_recved),
  2828. U64_PRINTF_ARG(chan->n_cells_xmitted));
  2829. if (now > chan->timestamp_created &&
  2830. chan->timestamp_created > 0) {
  2831. if (chan->n_cells_recved > 0) {
  2832. avg = (double)(chan->n_cells_recved) / age;
  2833. if (avg >= 1.0) {
  2834. tor_log(severity, LD_GENERAL,
  2835. " * Channel " U64_FORMAT " has averaged %f "
  2836. "cells received per second",
  2837. U64_PRINTF_ARG(chan->global_identifier), avg);
  2838. } else if (avg >= 0.0) {
  2839. interval = 1.0 / avg;
  2840. tor_log(severity, LD_GENERAL,
  2841. " * Channel " U64_FORMAT " has averaged %f "
  2842. "seconds between received cells",
  2843. U64_PRINTF_ARG(chan->global_identifier), interval);
  2844. }
  2845. }
  2846. if (chan->n_cells_xmitted > 0) {
  2847. avg = (double)(chan->n_cells_xmitted) / age;
  2848. if (avg >= 1.0) {
  2849. tor_log(severity, LD_GENERAL,
  2850. " * Channel " U64_FORMAT " has averaged %f "
  2851. "cells transmitted per second",
  2852. U64_PRINTF_ARG(chan->global_identifier), avg);
  2853. } else if (avg >= 0.0) {
  2854. interval = 1.0 / avg;
  2855. tor_log(severity, LD_GENERAL,
  2856. " * Channel " U64_FORMAT " has averaged %f "
  2857. "seconds between transmitted cells",
  2858. U64_PRINTF_ARG(chan->global_identifier), interval);
  2859. }
  2860. }
  2861. }
  2862. /* Dump anything the lower layer has to say */
  2863. channel_dump_transport_statistics(chan, severity);
  2864. }
  2865. /**
  2866. * Dump channel listener statistics
  2867. *
  2868. * Dump statistics for one channel listener to the log
  2869. */
  2870. void
  2871. channel_listener_dump_statistics(channel_listener_t *chan_l, int severity)
  2872. {
  2873. double avg, interval, age;
  2874. time_t now = time(NULL);
  2875. tor_assert(chan_l);
  2876. age = (double)(now - chan_l->timestamp_created);
  2877. tor_log(severity, LD_GENERAL,
  2878. "Channel listener " U64_FORMAT " (at %p) with transport %s is in "
  2879. "state %s (%d)",
  2880. U64_PRINTF_ARG(chan_l->global_identifier), chan_l,
  2881. channel_listener_describe_transport(chan_l),
  2882. channel_listener_state_to_string(chan_l->state), chan_l->state);
  2883. tor_log(severity, LD_GENERAL,
  2884. " * Channel listener " U64_FORMAT " was created at " U64_FORMAT
  2885. " (" U64_FORMAT " seconds ago) "
  2886. "and last active at " U64_FORMAT " (" U64_FORMAT " seconds ago)",
  2887. U64_PRINTF_ARG(chan_l->global_identifier),
  2888. U64_PRINTF_ARG(chan_l->timestamp_created),
  2889. U64_PRINTF_ARG(now - chan_l->timestamp_created),
  2890. U64_PRINTF_ARG(chan_l->timestamp_active),
  2891. U64_PRINTF_ARG(now - chan_l->timestamp_active));
  2892. tor_log(severity, LD_GENERAL,
  2893. " * Channel listener " U64_FORMAT " last accepted an incoming "
  2894. "channel at " U64_FORMAT " (" U64_FORMAT " seconds ago) "
  2895. "and has accepted " U64_FORMAT " channels in total",
  2896. U64_PRINTF_ARG(chan_l->global_identifier),
  2897. U64_PRINTF_ARG(chan_l->timestamp_accepted),
  2898. U64_PRINTF_ARG(now - chan_l->timestamp_accepted),
  2899. U64_PRINTF_ARG(chan_l->n_accepted));
  2900. /*
  2901. * If it's sensible to do so, get the rate of incoming channels on this
  2902. * listener
  2903. */
  2904. if (now > chan_l->timestamp_created &&
  2905. chan_l->timestamp_created > 0 &&
  2906. chan_l->n_accepted > 0) {
  2907. avg = (double)(chan_l->n_accepted) / age;
  2908. if (avg >= 1.0) {
  2909. tor_log(severity, LD_GENERAL,
  2910. " * Channel listener " U64_FORMAT " has averaged %f incoming "
  2911. "channels per second",
  2912. U64_PRINTF_ARG(chan_l->global_identifier), avg);
  2913. } else if (avg >= 0.0) {
  2914. interval = 1.0 / avg;
  2915. tor_log(severity, LD_GENERAL,
  2916. " * Channel listener " U64_FORMAT " has averaged %f seconds "
  2917. "between incoming channels",
  2918. U64_PRINTF_ARG(chan_l->global_identifier), interval);
  2919. }
  2920. }
  2921. /* Dump anything the lower layer has to say */
  2922. channel_listener_dump_transport_statistics(chan_l, severity);
  2923. }
  2924. /**
  2925. * Invoke transport-specific stats dump for channel
  2926. *
  2927. * If there is a lower-layer statistics dump method, invoke it
  2928. */
  2929. void
  2930. channel_dump_transport_statistics(channel_t *chan, int severity)
  2931. {
  2932. tor_assert(chan);
  2933. if (chan->dumpstats) chan->dumpstats(chan, severity);
  2934. }
  2935. /**
  2936. * Invoke transport-specific stats dump for channel listener
  2937. *
  2938. * If there is a lower-layer statistics dump method, invoke it
  2939. */
  2940. void
  2941. channel_listener_dump_transport_statistics(channel_listener_t *chan_l,
  2942. int severity)
  2943. {
  2944. tor_assert(chan_l);
  2945. if (chan_l->dumpstats) chan_l->dumpstats(chan_l, severity);
  2946. }
  2947. /**
  2948. * Return text description of the remote endpoint
  2949. *
  2950. * This function return a test provided by the lower layer of the remote
  2951. * endpoint for this channel; it should specify the actual address connected
  2952. * to/from.
  2953. *
  2954. * Subsequent calls to channel_get_{actual,canonical}_remote_{address,descr}
  2955. * may invalidate the return value from this function.
  2956. */
  2957. const char *
  2958. channel_get_actual_remote_descr(channel_t *chan)
  2959. {
  2960. tor_assert(chan);
  2961. tor_assert(chan->get_remote_descr);
  2962. /* Param 1 indicates the actual description */
  2963. return chan->get_remote_descr(chan, GRD_FLAG_ORIGINAL);
  2964. }
  2965. /**
  2966. * Return the text address of the remote endpoint.
  2967. *
  2968. * Subsequent calls to channel_get_{actual,canonical}_remote_{address,descr}
  2969. * may invalidate the return value from this function.
  2970. */
  2971. const char *
  2972. channel_get_actual_remote_address(channel_t *chan)
  2973. {
  2974. /* Param 1 indicates the actual description */
  2975. return chan->get_remote_descr(chan, GRD_FLAG_ORIGINAL|GRD_FLAG_ADDR_ONLY);
  2976. }
  2977. /**
  2978. * Return text description of the remote endpoint canonical address
  2979. *
  2980. * This function return a test provided by the lower layer of the remote
  2981. * endpoint for this channel; it should use the known canonical address for
  2982. * this OR's identity digest if possible.
  2983. *
  2984. * Subsequent calls to channel_get_{actual,canonical}_remote_{address,descr}
  2985. * may invalidate the return value from this function.
  2986. */
  2987. const char *
  2988. channel_get_canonical_remote_descr(channel_t *chan)
  2989. {
  2990. tor_assert(chan);
  2991. tor_assert(chan->get_remote_descr);
  2992. /* Param 0 indicates the canonicalized description */
  2993. return chan->get_remote_descr(chan, 0);
  2994. }
  2995. /**
  2996. * Get remote address if possible.
  2997. *
  2998. * Write the remote address out to a tor_addr_t if the underlying transport
  2999. * supports this operation, and return 1. Return 0 if the underlying transport
  3000. * doesn't let us do this.
  3001. */
  3002. int
  3003. channel_get_addr_if_possible(channel_t *chan, tor_addr_t *addr_out)
  3004. {
  3005. tor_assert(chan);
  3006. tor_assert(addr_out);
  3007. if (chan->get_remote_addr)
  3008. return chan->get_remote_addr(chan, addr_out);
  3009. /* Else no support, method not implemented */
  3010. else return 0;
  3011. }
  3012. /**
  3013. * Check if there are outgoing queue writes on this channel
  3014. *
  3015. * Indicate if either we have queued cells, or if not, whether the underlying
  3016. * lower-layer transport thinks it has an output queue.
  3017. */
  3018. int
  3019. channel_has_queued_writes(channel_t *chan)
  3020. {
  3021. int has_writes = 0;
  3022. tor_assert(chan);
  3023. tor_assert(chan->has_queued_writes);
  3024. if (! TOR_SIMPLEQ_EMPTY(&chan->outgoing_queue)) {
  3025. has_writes = 1;
  3026. } else {
  3027. /* Check with the lower layer */
  3028. has_writes = chan->has_queued_writes(chan);
  3029. }
  3030. return has_writes;
  3031. }
  3032. /**
  3033. * Check the is_bad_for_new_circs flag
  3034. *
  3035. * This function returns the is_bad_for_new_circs flag of the specified
  3036. * channel.
  3037. */
  3038. int
  3039. channel_is_bad_for_new_circs(channel_t *chan)
  3040. {
  3041. tor_assert(chan);
  3042. return chan->is_bad_for_new_circs;
  3043. }
  3044. /**
  3045. * Mark a channel as bad for new circuits
  3046. *
  3047. * Set the is_bad_for_new_circs_flag on chan.
  3048. */
  3049. void
  3050. channel_mark_bad_for_new_circs(channel_t *chan)
  3051. {
  3052. tor_assert(chan);
  3053. chan->is_bad_for_new_circs = 1;
  3054. }
  3055. /**
  3056. * Get the client flag
  3057. *
  3058. * This returns the client flag of a channel, which will be set if
  3059. * command_process_create_cell() in command.c thinks this is a connection
  3060. * from a client.
  3061. */
  3062. int
  3063. channel_is_client(channel_t *chan)
  3064. {
  3065. tor_assert(chan);
  3066. return chan->is_client;
  3067. }
  3068. /**
  3069. * Set the client flag
  3070. *
  3071. * Mark a channel as being from a client
  3072. */
  3073. void
  3074. channel_mark_client(channel_t *chan)
  3075. {
  3076. tor_assert(chan);
  3077. chan->is_client = 1;
  3078. }
  3079. /**
  3080. * Get the canonical flag for a channel
  3081. *
  3082. * This returns the is_canonical for a channel; this flag is determined by
  3083. * the lower layer and can't be set in a transport-independent way.
  3084. */
  3085. int
  3086. channel_is_canonical(channel_t *chan)
  3087. {
  3088. tor_assert(chan);
  3089. tor_assert(chan->is_canonical);
  3090. return chan->is_canonical(chan, 0);
  3091. }
  3092. /**
  3093. * Test if the canonical flag is reliable
  3094. *
  3095. * This function asks if the lower layer thinks it's safe to trust the
  3096. * result of channel_is_canonical()
  3097. */
  3098. int
  3099. channel_is_canonical_is_reliable(channel_t *chan)
  3100. {
  3101. tor_assert(chan);
  3102. tor_assert(chan->is_canonical);
  3103. return chan->is_canonical(chan, 1);
  3104. }
  3105. /**
  3106. * Test incoming flag
  3107. *
  3108. * This function gets the incoming flag; this is set when a listener spawns
  3109. * a channel. If this returns true the channel was remotely initiated.
  3110. */
  3111. int
  3112. channel_is_incoming(channel_t *chan)
  3113. {
  3114. tor_assert(chan);
  3115. return chan->is_incoming;
  3116. }
  3117. /**
  3118. * Set the incoming flag
  3119. *
  3120. * This function is called when a channel arrives on a listening channel
  3121. * to mark it as incoming.
  3122. */
  3123. void
  3124. channel_mark_incoming(channel_t *chan)
  3125. {
  3126. tor_assert(chan);
  3127. chan->is_incoming = 1;
  3128. }
  3129. /**
  3130. * Test local flag
  3131. *
  3132. * This function gets the local flag; the lower layer should set this when
  3133. * setting up the channel if is_local_addr() is true for all of the
  3134. * destinations it will communicate with on behalf of this channel. It's
  3135. * used to decide whether to declare the network reachable when seeing incoming
  3136. * traffic on the channel.
  3137. */
  3138. int
  3139. channel_is_local(channel_t *chan)
  3140. {
  3141. tor_assert(chan);
  3142. return chan->is_local;
  3143. }
  3144. /**
  3145. * Set the local flag
  3146. *
  3147. * This internal-only function should be called by the lower layer if the
  3148. * channel is to a local address. See channel_is_local() above or the
  3149. * description of the is_local bit in channel.h
  3150. */
  3151. void
  3152. channel_mark_local(channel_t *chan)
  3153. {
  3154. tor_assert(chan);
  3155. chan->is_local = 1;
  3156. }
  3157. /**
  3158. * Test outgoing flag
  3159. *
  3160. * This function gets the outgoing flag; this is the inverse of the incoming
  3161. * bit set when a listener spawns a channel. If this returns true the channel
  3162. * was locally initiated.
  3163. */
  3164. int
  3165. channel_is_outgoing(channel_t *chan)
  3166. {
  3167. tor_assert(chan);
  3168. return !(chan->is_incoming);
  3169. }
  3170. /**
  3171. * Mark a channel as outgoing
  3172. *
  3173. * This function clears the incoming flag and thus marks a channel as
  3174. * outgoing.
  3175. */
  3176. void
  3177. channel_mark_outgoing(channel_t *chan)
  3178. {
  3179. tor_assert(chan);
  3180. chan->is_incoming = 0;
  3181. }
  3182. /*********************
  3183. * Timestamp updates *
  3184. ********************/
  3185. /**
  3186. * Update the created timestamp for a channel
  3187. *
  3188. * This updates the channel's created timestamp and should only be called
  3189. * from channel_init().
  3190. */
  3191. void
  3192. channel_timestamp_created(channel_t *chan)
  3193. {
  3194. time_t now = time(NULL);
  3195. tor_assert(chan);
  3196. chan->timestamp_created = now;
  3197. }
  3198. /**
  3199. * Update the created timestamp for a channel listener
  3200. *
  3201. * This updates the channel listener's created timestamp and should only be
  3202. * called from channel_init_listener().
  3203. */
  3204. void
  3205. channel_listener_timestamp_created(channel_listener_t *chan_l)
  3206. {
  3207. time_t now = time(NULL);
  3208. tor_assert(chan_l);
  3209. chan_l->timestamp_created = now;
  3210. }
  3211. /**
  3212. * Update the last active timestamp for a channel
  3213. *
  3214. * This function updates the channel's last active timestamp; it should be
  3215. * called by the lower layer whenever there is activity on the channel which
  3216. * does not lead to a cell being transmitted or received; the active timestamp
  3217. * is also updated from channel_timestamp_recv() and channel_timestamp_xmit(),
  3218. * but it should be updated for things like the v3 handshake and stuff that
  3219. * produce activity only visible to the lower layer.
  3220. */
  3221. void
  3222. channel_timestamp_active(channel_t *chan)
  3223. {
  3224. time_t now = time(NULL);
  3225. tor_assert(chan);
  3226. chan->timestamp_active = now;
  3227. }
  3228. /**
  3229. * Update the last active timestamp for a channel listener
  3230. */
  3231. void
  3232. channel_listener_timestamp_active(channel_listener_t *chan_l)
  3233. {
  3234. time_t now = time(NULL);
  3235. tor_assert(chan_l);
  3236. chan_l->timestamp_active = now;
  3237. }
  3238. /**
  3239. * Update the last accepted timestamp.
  3240. *
  3241. * This function updates the channel listener's last accepted timestamp; it
  3242. * should be called whenever a new incoming channel is accepted on a
  3243. * listener.
  3244. */
  3245. void
  3246. channel_listener_timestamp_accepted(channel_listener_t *chan_l)
  3247. {
  3248. time_t now = time(NULL);
  3249. tor_assert(chan_l);
  3250. chan_l->timestamp_active = now;
  3251. chan_l->timestamp_accepted = now;
  3252. }
  3253. /**
  3254. * Update client timestamp
  3255. *
  3256. * This function is called by relay.c to timestamp a channel that appears to
  3257. * be used as a client.
  3258. */
  3259. void
  3260. channel_timestamp_client(channel_t *chan)
  3261. {
  3262. time_t now = time(NULL);
  3263. tor_assert(chan);
  3264. chan->timestamp_client = now;
  3265. }
  3266. /**
  3267. * Update the last drained timestamp
  3268. *
  3269. * This is called whenever we transmit a cell which leaves the outgoing cell
  3270. * queue completely empty. It also updates the xmit time and the active time.
  3271. */
  3272. void
  3273. channel_timestamp_drained(channel_t *chan)
  3274. {
  3275. time_t now = time(NULL);
  3276. tor_assert(chan);
  3277. chan->timestamp_active = now;
  3278. chan->timestamp_drained = now;
  3279. chan->timestamp_xmit = now;
  3280. }
  3281. /**
  3282. * Update the recv timestamp
  3283. *
  3284. * This is called whenever we get an incoming cell from the lower layer.
  3285. * This also updates the active timestamp.
  3286. */
  3287. void
  3288. channel_timestamp_recv(channel_t *chan)
  3289. {
  3290. time_t now = time(NULL);
  3291. tor_assert(chan);
  3292. chan->timestamp_active = now;
  3293. chan->timestamp_recv = now;
  3294. }
  3295. /**
  3296. * Update the xmit timestamp
  3297. * This is called whenever we pass an outgoing cell to the lower layer. This
  3298. * also updates the active timestamp.
  3299. */
  3300. void
  3301. channel_timestamp_xmit(channel_t *chan)
  3302. {
  3303. time_t now = time(NULL);
  3304. tor_assert(chan);
  3305. chan->timestamp_active = now;
  3306. chan->timestamp_xmit = now;
  3307. }
  3308. /***************************************************************
  3309. * Timestamp queries - see above for definitions of timestamps *
  3310. **************************************************************/
  3311. /**
  3312. * Query created timestamp for a channel
  3313. */
  3314. time_t
  3315. channel_when_created(channel_t *chan)
  3316. {
  3317. tor_assert(chan);
  3318. return chan->timestamp_created;
  3319. }
  3320. /**
  3321. * Query created timestamp for a channel listener
  3322. */
  3323. time_t
  3324. channel_listener_when_created(channel_listener_t *chan_l)
  3325. {
  3326. tor_assert(chan_l);
  3327. return chan_l->timestamp_created;
  3328. }
  3329. /**
  3330. * Query last active timestamp for a channel
  3331. */
  3332. time_t
  3333. channel_when_last_active(channel_t *chan)
  3334. {
  3335. tor_assert(chan);
  3336. return chan->timestamp_active;
  3337. }
  3338. /**
  3339. * Query last active timestamp for a channel listener
  3340. */
  3341. time_t
  3342. channel_listener_when_last_active(channel_listener_t *chan_l)
  3343. {
  3344. tor_assert(chan_l);
  3345. return chan_l->timestamp_active;
  3346. }
  3347. /**
  3348. * Query last accepted timestamp for a channel listener
  3349. */
  3350. time_t
  3351. channel_listener_when_last_accepted(channel_listener_t *chan_l)
  3352. {
  3353. tor_assert(chan_l);
  3354. return chan_l->timestamp_accepted;
  3355. }
  3356. /**
  3357. * Query client timestamp
  3358. */
  3359. time_t
  3360. channel_when_last_client(channel_t *chan)
  3361. {
  3362. tor_assert(chan);
  3363. return chan->timestamp_client;
  3364. }
  3365. /**
  3366. * Query drained timestamp
  3367. */
  3368. time_t
  3369. channel_when_last_drained(channel_t *chan)
  3370. {
  3371. tor_assert(chan);
  3372. return chan->timestamp_drained;
  3373. }
  3374. /**
  3375. * Query recv timestamp
  3376. */
  3377. time_t
  3378. channel_when_last_recv(channel_t *chan)
  3379. {
  3380. tor_assert(chan);
  3381. return chan->timestamp_recv;
  3382. }
  3383. /**
  3384. * Query xmit timestamp
  3385. */
  3386. time_t
  3387. channel_when_last_xmit(channel_t *chan)
  3388. {
  3389. tor_assert(chan);
  3390. return chan->timestamp_xmit;
  3391. }
  3392. /**
  3393. * Query accepted counter
  3394. */
  3395. uint64_t
  3396. channel_listener_count_accepted(channel_listener_t *chan_l)
  3397. {
  3398. tor_assert(chan_l);
  3399. return chan_l->n_accepted;
  3400. }
  3401. /**
  3402. * Query received cell counter
  3403. */
  3404. uint64_t
  3405. channel_count_recved(channel_t *chan)
  3406. {
  3407. tor_assert(chan);
  3408. return chan->n_cells_recved;
  3409. }
  3410. /**
  3411. * Query transmitted cell counter
  3412. */
  3413. uint64_t
  3414. channel_count_xmitted(channel_t *chan)
  3415. {
  3416. tor_assert(chan);
  3417. return chan->n_cells_xmitted;
  3418. }
  3419. /**
  3420. * Check if a channel matches an extend_info_t
  3421. *
  3422. * This function calls the lower layer and asks if this channel matches a
  3423. * given extend_info_t.
  3424. */
  3425. int
  3426. channel_matches_extend_info(channel_t *chan, extend_info_t *extend_info)
  3427. {
  3428. tor_assert(chan);
  3429. tor_assert(chan->matches_extend_info);
  3430. tor_assert(extend_info);
  3431. return chan->matches_extend_info(chan, extend_info);
  3432. }
  3433. /**
  3434. * Check if a channel matches a given target address; return true iff we do.
  3435. *
  3436. * This function calls into the lower layer and asks if this channel thinks
  3437. * it matches a given target address for circuit extension purposes.
  3438. */
  3439. int
  3440. channel_matches_target_addr_for_extend(channel_t *chan,
  3441. const tor_addr_t *target)
  3442. {
  3443. tor_assert(chan);
  3444. tor_assert(chan->matches_target);
  3445. tor_assert(target);
  3446. return chan->matches_target(chan, target);
  3447. }
  3448. /**
  3449. * Return the total number of circuits used by a channel
  3450. *
  3451. * @param chan Channel to query
  3452. * @return Number of circuits using this as n_chan or p_chan
  3453. */
  3454. unsigned int
  3455. channel_num_circuits(channel_t *chan)
  3456. {
  3457. tor_assert(chan);
  3458. return chan->num_n_circuits +
  3459. chan->num_p_circuits;
  3460. }
  3461. /**
  3462. * Set up circuit ID generation
  3463. *
  3464. * This is called when setting up a channel and replaces the old
  3465. * connection_or_set_circid_type()
  3466. */
  3467. void
  3468. channel_set_circid_type(channel_t *chan,
  3469. crypto_pk_t *identity_rcvd,
  3470. int consider_identity)
  3471. {
  3472. int started_here;
  3473. crypto_pk_t *our_identity;
  3474. tor_assert(chan);
  3475. started_here = channel_is_outgoing(chan);
  3476. if (! consider_identity) {
  3477. if (started_here)
  3478. chan->circ_id_type = CIRC_ID_TYPE_HIGHER;
  3479. else
  3480. chan->circ_id_type = CIRC_ID_TYPE_LOWER;
  3481. return;
  3482. }
  3483. our_identity = started_here ?
  3484. get_tlsclient_identity_key() : get_server_identity_key();
  3485. if (identity_rcvd) {
  3486. if (crypto_pk_cmp_keys(our_identity, identity_rcvd) < 0) {
  3487. chan->circ_id_type = CIRC_ID_TYPE_LOWER;
  3488. } else {
  3489. chan->circ_id_type = CIRC_ID_TYPE_HIGHER;
  3490. }
  3491. } else {
  3492. chan->circ_id_type = CIRC_ID_TYPE_NEITHER;
  3493. }
  3494. }