GTMSessionFetcher.m 178 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758
  1. /* Copyright 2014 Google Inc. All rights reserved.
  2. *
  3. * Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. *
  7. * http://www.apache.org/licenses/LICENSE-2.0
  8. *
  9. * Unless required by applicable law or agreed to in writing, software
  10. * distributed under the License is distributed on an "AS IS" BASIS,
  11. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. * See the License for the specific language governing permissions and
  13. * limitations under the License.
  14. */
  15. #if !defined(__has_feature) || !__has_feature(objc_arc)
  16. #error "This file requires ARC support."
  17. #endif
  18. #import "GTMSessionFetcher.h"
  19. #if TARGET_OS_OSX && GTMSESSION_RECONNECT_BACKGROUND_SESSIONS_ON_LAUNCH
  20. // To reconnect background sessions on Mac outside +load requires importing and linking
  21. // AppKit to access the NSApplicationDidFinishLaunching symbol.
  22. #import <AppKit/AppKit.h>
  23. #endif
  24. #import <sys/utsname.h>
  25. #ifndef STRIP_GTM_FETCH_LOGGING
  26. #error GTMSessionFetcher headers should have defaulted this if it wasn't already defined.
  27. #endif
  28. NS_ASSUME_NONNULL_BEGIN
  29. NSString *const kGTMSessionFetcherStartedNotification = @"kGTMSessionFetcherStartedNotification";
  30. NSString *const kGTMSessionFetcherStoppedNotification = @"kGTMSessionFetcherStoppedNotification";
  31. NSString *const kGTMSessionFetcherRetryDelayStartedNotification =
  32. @"kGTMSessionFetcherRetryDelayStartedNotification";
  33. NSString *const kGTMSessionFetcherRetryDelayStoppedNotification =
  34. @"kGTMSessionFetcherRetryDelayStoppedNotification";
  35. NSString *const kGTMSessionFetcherCompletionInvokedNotification =
  36. @"kGTMSessionFetcherCompletionInvokedNotification";
  37. NSString *const kGTMSessionFetcherCompletionDataKey = @"data";
  38. NSString *const kGTMSessionFetcherCompletionErrorKey = @"error";
  39. NSString *const kGTMSessionFetcherErrorDomain = @"com.google.GTMSessionFetcher";
  40. NSString *const kGTMSessionFetcherStatusDomain = @"com.google.HTTPStatus";
  41. NSString *const kGTMSessionFetcherStatusDataKey =
  42. @"data"; // data returned with a kGTMSessionFetcherStatusDomain error
  43. NSString *const kGTMSessionFetcherStatusDataContentTypeKey = @"data_content_type";
  44. NSString *const kGTMSessionFetcherNumberOfRetriesDoneKey =
  45. @"kGTMSessionFetcherNumberOfRetriesDoneKey";
  46. NSString *const kGTMSessionFetcherElapsedIntervalWithRetriesKey =
  47. @"kGTMSessionFetcherElapsedIntervalWithRetriesKey";
  48. static NSString *const kGTMSessionIdentifierPrefix = @"com.google.GTMSessionFetcher";
  49. static NSString *const kGTMSessionIdentifierDestinationFileURLMetadataKey = @"_destURL";
  50. static NSString *const kGTMSessionIdentifierBodyFileURLMetadataKey = @"_bodyURL";
  51. static NSString *const kGTMSessionIdentifierClientReconnectMetadataKey = @"_clientWillReconnect";
  52. // The default max retry interview is 10 minutes for uploads (POST/PUT/PATCH),
  53. // 1 minute for downloads.
  54. static const NSTimeInterval kUnsetMaxRetryInterval = -1.0;
  55. static const NSTimeInterval kDefaultMaxDownloadRetryInterval = 60.0;
  56. static const NSTimeInterval kDefaultMaxUploadRetryInterval = 60.0 * 10.;
  57. // The maximum data length that can be loaded to the error userInfo
  58. static const int64_t kMaximumDownloadErrorDataLength = 20000;
  59. #ifdef GTMSESSION_PERSISTED_DESTINATION_KEY
  60. // Projects using unique class names should also define a unique persisted destination key.
  61. static NSString *const kGTMSessionFetcherPersistedDestinationKey =
  62. GTMSESSION_PERSISTED_DESTINATION_KEY;
  63. #else
  64. static NSString *const kGTMSessionFetcherPersistedDestinationKey =
  65. @"com.google.GTMSessionFetcher.downloads";
  66. #endif
  67. NS_ASSUME_NONNULL_END
  68. //
  69. // GTMSessionFetcher
  70. //
  71. #if 0
  72. #define GTM_LOG_BACKGROUND_SESSION(...) GTMSESSION_LOG_DEBUG(__VA_ARGS__)
  73. #else
  74. #define GTM_LOG_BACKGROUND_SESSION(...)
  75. #endif
  76. #ifndef GTM_TARGET_SUPPORTS_APP_TRANSPORT_SECURITY
  77. #define GTM_TARGET_SUPPORTS_APP_TRANSPORT_SECURITY 1
  78. #endif
  79. #if ((defined(TARGET_OS_MACCATALYST) && TARGET_OS_MACCATALYST) || \
  80. (TARGET_OS_OSX && defined(__MAC_10_15) && __MAC_OS_X_VERSION_MIN_REQUIRED >= __MAC_10_15) || \
  81. (TARGET_OS_IOS && defined(__IPHONE_13_0) && \
  82. __IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_13_0) || \
  83. (TARGET_OS_WATCH && defined(__WATCHOS_6_0) && \
  84. __WATCH_OS_VERSION_MIN_REQUIRED >= __WATCHOS_6_0) || \
  85. (TARGET_OS_TV && defined(__TVOS_13_0) && __TVOS_VERSION_MIN_REQUIRED >= __TVOS_13_0))
  86. #define GTM_SDK_REQUIRES_TLSMINIMUMSUPPORTEDPROTOCOLVERSION 1
  87. #define GTM_SDK_SUPPORTS_TLSMINIMUMSUPPORTEDPROTOCOLVERSION 1
  88. #elif ((TARGET_OS_OSX && defined(__MAC_10_15) && __MAC_OS_X_VERSION_MAX_ALLOWED >= __MAC_10_15) || \
  89. (TARGET_OS_IOS && defined(__IPHONE_13_0) && \
  90. __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_13_0) || \
  91. (TARGET_OS_WATCH && defined(__WATCHOS_6_0) && \
  92. __WATCH_OS_VERSION_MAX_ALLOWED >= __WATCHOS_6_0) || \
  93. (TARGET_OS_TV && defined(__TVOS_13_0) && __TVOS_VERSION_MAX_ALLOWED >= __TVOS_13_0))
  94. #define GTM_SDK_REQUIRES_TLSMINIMUMSUPPORTEDPROTOCOLVERSION 0
  95. #define GTM_SDK_SUPPORTS_TLSMINIMUMSUPPORTEDPROTOCOLVERSION 1
  96. #else
  97. #define GTM_SDK_REQUIRES_TLSMINIMUMSUPPORTEDPROTOCOLVERSION 0
  98. #define GTM_SDK_SUPPORTS_TLSMINIMUMSUPPORTEDPROTOCOLVERSION 0
  99. #endif
  100. #if ((defined(TARGET_OS_MACCATALYST) && TARGET_OS_MACCATALYST) || \
  101. (TARGET_OS_OSX && defined(__MAC_10_15) && __MAC_OS_X_VERSION_MIN_REQUIRED >= __MAC_10_15) || \
  102. (TARGET_OS_IOS && defined(__IPHONE_13_0) && \
  103. __IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_13_0) || \
  104. (TARGET_OS_WATCH && defined(__WATCHOS_6_0) && \
  105. __WATCH_OS_VERSION_MIN_REQUIRED >= __WATCHOS_6_0) || \
  106. (TARGET_OS_TV && defined(__TVOS_13_0) && __TVOS_VERSION_MIN_REQUIRED >= __TVOS_13_0))
  107. #define GTM_SDK_REQUIRES_SECTRUSTEVALUATEWITHERROR 1
  108. #else
  109. #define GTM_SDK_REQUIRES_SECTRUSTEVALUATEWITHERROR 0
  110. #endif
  111. #if __has_attribute(swift_async)
  112. // Once Clang 13/Xcode 13 can be assumed, can switch to NS_SWIFT_DISABLE_ASYNC.
  113. #define GTM_SWIFT_DISABLE_ASYNC __attribute__((swift_async(none)))
  114. #else
  115. #define GTM_SWIFT_DISABLE_ASYNC
  116. #endif
  117. @interface GTMSessionFetcher ()
  118. @property(atomic, strong, readwrite, nullable) NSData *downloadedData;
  119. @property(atomic, strong, readwrite, nullable) NSData *downloadResumeData;
  120. #if GTM_BACKGROUND_TASK_FETCHING
  121. // Should always be accessed within an @synchronized(self).
  122. @property(assign, nonatomic) UIBackgroundTaskIdentifier backgroundTaskIdentifier;
  123. #endif
  124. @property(atomic, readwrite, getter=isUsingBackgroundSession) BOOL usingBackgroundSession;
  125. @end
  126. #if !GTMSESSION_BUILD_COMBINED_SOURCES
  127. @interface GTMSessionFetcher (GTMSessionFetcherLoggingInternal)
  128. - (void)logFetchWithError:(NSError *)error;
  129. - (void)logNowWithError:(nullable NSError *)error;
  130. - (NSInputStream *)loggedInputStreamForInputStream:(NSInputStream *)inputStream;
  131. - (GTMSessionFetcherBodyStreamProvider)loggedStreamProviderForStreamProvider:
  132. (GTMSessionFetcherBodyStreamProvider)streamProvider;
  133. @end
  134. #endif // !GTMSESSION_BUILD_COMBINED_SOURCES
  135. NS_ASSUME_NONNULL_BEGIN
  136. static NSTimeInterval InitialMinRetryInterval(void) {
  137. return 1.0 + ((double)(arc4random_uniform(0x0FFFF)) / (double)0x0FFFF);
  138. }
  139. static BOOL IsLocalhost(NSString *_Nullable host) {
  140. // We check if there's host, and then make the comparisons.
  141. if (host == nil) return NO;
  142. return ([host caseInsensitiveCompare:@"localhost"] == NSOrderedSame || [host isEqual:@"::1"] ||
  143. [host isEqual:@"127.0.0.1"]);
  144. }
  145. static NSDictionary *_Nullable GTMErrorUserInfoForData(NSData *_Nullable data,
  146. NSDictionary *_Nullable responseHeaders) {
  147. NSMutableDictionary *userInfo = [NSMutableDictionary dictionary];
  148. if (data.length > 0) {
  149. userInfo[kGTMSessionFetcherStatusDataKey] = data;
  150. NSString *contentType = responseHeaders[@"Content-Type"];
  151. if (contentType) {
  152. userInfo[kGTMSessionFetcherStatusDataContentTypeKey] = contentType;
  153. }
  154. }
  155. return userInfo.count > 0 ? userInfo : nil;
  156. }
  157. static GTMSessionFetcherTestBlock _Nullable gGlobalTestBlock;
  158. @implementation GTMSessionFetcher {
  159. NSMutableURLRequest *_request; // after beginFetch, changed only in delegate callbacks
  160. BOOL _useUploadTask; // immutable after beginFetch
  161. NSURL *_bodyFileURL; // immutable after beginFetch
  162. GTMSessionFetcherBodyStreamProvider _bodyStreamProvider; // immutable after beginFetch
  163. NSURLSession *_session;
  164. BOOL _shouldInvalidateSession; // immutable after beginFetch
  165. NSURLSession *_sessionNeedingInvalidation;
  166. NSURLSessionConfiguration *_configuration;
  167. NSURLSessionTask *_sessionTask;
  168. NSString *_taskDescription;
  169. float _taskPriority;
  170. NSURLResponse *_response;
  171. NSString *_sessionIdentifier;
  172. BOOL _wasCreatedFromBackgroundSession;
  173. BOOL _clientWillReconnectBackgroundSession;
  174. BOOL _didCreateSessionIdentifier;
  175. NSString *_sessionIdentifierUUID;
  176. BOOL _userRequestedBackgroundSession;
  177. BOOL _usingBackgroundSession;
  178. NSMutableData *_Nullable _downloadedData;
  179. NSError *_downloadFinishedError;
  180. NSData *_downloadResumeData; // immutable after construction
  181. NSData *_Nullable _downloadTaskErrorData; // Data for when download task fails
  182. NSURL *_destinationFileURL;
  183. int64_t _downloadedLength;
  184. NSURLCredential *_credential; // username & password
  185. NSURLCredential *_proxyCredential; // credential supplied to proxy servers
  186. BOOL _isStopNotificationNeeded; // set when start notification has been sent
  187. BOOL _isUsingTestBlock; // set when a test block was provided (remains set when the block is
  188. // released)
  189. id _userData; // retained, if set by caller
  190. NSMutableDictionary *_properties; // more data retained for caller
  191. dispatch_queue_t _callbackQueue;
  192. dispatch_group_t _callbackGroup; // read-only after creation
  193. NSOperationQueue *_delegateQueue; // immutable after beginFetch
  194. id<GTMFetcherAuthorizationProtocol> _authorizer; // immutable after beginFetch
  195. // The service object that created and monitors this fetcher, if any.
  196. id<GTMSessionFetcherServiceProtocol>
  197. _service; // immutable; set by the fetcher service upon creation
  198. NSString *_serviceHost;
  199. NSInteger _servicePriority; // immutable after beginFetch
  200. BOOL _hasStoppedFetching; // counterpart to _initialBeginFetchDate
  201. BOOL _userStoppedFetching;
  202. BOOL _isRetryEnabled; // user wants auto-retry
  203. NSTimer *_retryTimer;
  204. NSUInteger _retryCount;
  205. NSTimeInterval _maxRetryInterval; // default 60 (download) or 600 (upload) seconds
  206. NSTimeInterval _minRetryInterval; // random between 1 and 2 seconds
  207. NSTimeInterval _retryFactor; // default interval multiplier is 2
  208. NSTimeInterval _lastRetryInterval;
  209. NSDate *_initialBeginFetchDate; // date that beginFetch was first invoked; immutable after
  210. // initial beginFetch
  211. NSDate *_initialRequestDate; // date of first request to the target server (ignoring auth)
  212. BOOL _hasAttemptedAuthRefresh; // accessed only in shouldRetryNowForStatus:
  213. NSString *_comment; // comment for log
  214. NSString *_log;
  215. #if !STRIP_GTM_FETCH_LOGGING
  216. NSMutableData *_loggedStreamData;
  217. NSURL *_redirectedFromURL;
  218. NSString *_logRequestBody;
  219. NSString *_logResponseBody;
  220. BOOL _hasLoggedError;
  221. BOOL _deferResponseBodyLogging;
  222. #endif
  223. }
  224. #if !GTMSESSION_UNIT_TESTING
  225. + (void)load {
  226. #if GTMSESSION_RECONNECT_BACKGROUND_SESSIONS_ON_LAUNCH && TARGET_OS_IPHONE
  227. NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
  228. [nc addObserver:self
  229. selector:@selector(reconnectFetchersForBackgroundSessionsOnAppLaunch:)
  230. name:UIApplicationDidFinishLaunchingNotification
  231. object:nil];
  232. #elif GTMSESSION_RECONNECT_BACKGROUND_SESSIONS_ON_LAUNCH && TARGET_OS_OSX
  233. NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
  234. [nc addObserver:self
  235. selector:@selector(reconnectFetchersForBackgroundSessionsOnAppLaunch:)
  236. name:NSApplicationDidFinishLaunchingNotification
  237. object:nil];
  238. #else
  239. [self fetchersForBackgroundSessions];
  240. #endif
  241. }
  242. + (void)reconnectFetchersForBackgroundSessionsOnAppLaunch:(NSNotification *)notification {
  243. // Give all other app-did-launch handlers a chance to complete before
  244. // reconnecting the fetchers. Not doing this may lead to reconnecting
  245. // before the app delegate has a chance to run.
  246. dispatch_async(dispatch_get_main_queue(), ^{
  247. [self fetchersForBackgroundSessions];
  248. });
  249. }
  250. #endif // !GTMSESSION_UNIT_TESTING
  251. + (instancetype)fetcherWithRequest:(nullable NSURLRequest *)request {
  252. return [[self alloc] initWithRequest:request configuration:nil];
  253. }
  254. + (instancetype)fetcherWithURL:(NSURL *)requestURL {
  255. return [self fetcherWithRequest:[NSURLRequest requestWithURL:requestURL]];
  256. }
  257. + (instancetype)fetcherWithURLString:(NSString *)requestURLString {
  258. return [self fetcherWithURL:(NSURL *)[NSURL URLWithString:requestURLString]];
  259. }
  260. + (instancetype)fetcherWithDownloadResumeData:(NSData *)resumeData {
  261. GTMSessionFetcher *fetcher = [self fetcherWithRequest:nil];
  262. fetcher.comment = @"Resuming download";
  263. fetcher.downloadResumeData = resumeData;
  264. return fetcher;
  265. }
  266. + (nullable instancetype)fetcherWithSessionIdentifier:(NSString *)sessionIdentifier {
  267. GTMSESSION_ASSERT_DEBUG(sessionIdentifier != nil, @"Invalid session identifier");
  268. NSMapTable *sessionIdentifierToFetcherMap = [self sessionIdentifierToFetcherMap];
  269. GTMSessionFetcher *fetcher = [sessionIdentifierToFetcherMap objectForKey:sessionIdentifier];
  270. if (!fetcher && [sessionIdentifier hasPrefix:kGTMSessionIdentifierPrefix]) {
  271. fetcher = [self fetcherWithRequest:nil];
  272. [fetcher setSessionIdentifier:sessionIdentifier];
  273. [sessionIdentifierToFetcherMap setObject:fetcher forKey:sessionIdentifier];
  274. fetcher->_wasCreatedFromBackgroundSession = YES;
  275. [fetcher setCommentWithFormat:@"Resuming %@", fetcher && fetcher->_sessionIdentifierUUID
  276. ? fetcher->_sessionIdentifierUUID
  277. : @"?"];
  278. }
  279. return fetcher;
  280. }
  281. + (NSMapTable *)sessionIdentifierToFetcherMap {
  282. // TODO: What if a service is involved in creating the fetcher? Currently, when re-creating
  283. // fetchers, if a service was involved, it is not re-created. Should the service maintain a map?
  284. static NSMapTable *gSessionIdentifierToFetcherMap = nil;
  285. static dispatch_once_t onceToken;
  286. dispatch_once(&onceToken, ^{
  287. gSessionIdentifierToFetcherMap = [NSMapTable strongToWeakObjectsMapTable];
  288. });
  289. return gSessionIdentifierToFetcherMap;
  290. }
  291. #if !GTM_ALLOW_INSECURE_REQUESTS
  292. + (BOOL)appAllowsInsecureRequests {
  293. // If the main bundle Info.plist key NSAppTransportSecurity is present, and it specifies
  294. // NSAllowsArbitraryLoads, then we need to explicitly enforce secure schemes.
  295. #if GTM_TARGET_SUPPORTS_APP_TRANSPORT_SECURITY
  296. static BOOL allowsInsecureRequests;
  297. static dispatch_once_t onceToken;
  298. dispatch_once(&onceToken, ^{
  299. NSBundle *mainBundle = [NSBundle mainBundle];
  300. NSDictionary *appTransportSecurity =
  301. [mainBundle objectForInfoDictionaryKey:@"NSAppTransportSecurity"];
  302. allowsInsecureRequests =
  303. [[appTransportSecurity objectForKey:@"NSAllowsArbitraryLoads"] boolValue];
  304. });
  305. return allowsInsecureRequests;
  306. #else
  307. // For builds targeting iOS 8 or 10.10 and earlier, we want to require fetcher
  308. // security checks.
  309. return YES;
  310. #endif // GTM_TARGET_SUPPORTS_APP_TRANSPORT_SECURITY
  311. }
  312. #else // GTM_ALLOW_INSECURE_REQUESTS
  313. + (BOOL)appAllowsInsecureRequests {
  314. return YES;
  315. }
  316. #endif // !GTM_ALLOW_INSECURE_REQUESTS
  317. - (instancetype)init {
  318. return [self initWithRequest:nil configuration:nil];
  319. }
  320. - (instancetype)initWithRequest:(NSURLRequest *)request {
  321. return [self initWithRequest:request configuration:nil];
  322. }
  323. - (instancetype)initWithRequest:(nullable NSURLRequest *)request
  324. configuration:(nullable NSURLSessionConfiguration *)configuration {
  325. self = [super init];
  326. if (self) {
  327. #if GTM_BACKGROUND_TASK_FETCHING
  328. _backgroundTaskIdentifier = UIBackgroundTaskInvalid;
  329. #endif
  330. _request = [request mutableCopy];
  331. _configuration = configuration;
  332. NSData *bodyData = request.HTTPBody;
  333. if (bodyData) {
  334. _bodyLength = (int64_t)bodyData.length;
  335. } else {
  336. _bodyLength = NSURLSessionTransferSizeUnknown;
  337. }
  338. _callbackQueue = dispatch_get_main_queue();
  339. _callbackGroup = dispatch_group_create();
  340. _delegateQueue = [NSOperationQueue mainQueue];
  341. _minRetryInterval = InitialMinRetryInterval();
  342. _maxRetryInterval = kUnsetMaxRetryInterval;
  343. _taskPriority = -1.0f; // Valid values if set are 0.0...1.0.
  344. _testBlockAccumulateDataChunkCount = 1;
  345. #if !STRIP_GTM_FETCH_LOGGING
  346. // Encourage developers to set the comment property or use
  347. // setCommentWithFormat: by providing a default string.
  348. _comment = @"(No fetcher comment set)";
  349. #endif
  350. }
  351. return self;
  352. }
  353. - (id)copyWithZone:(NSZone *)zone {
  354. // disallow use of fetchers in a copy property
  355. [self doesNotRecognizeSelector:_cmd];
  356. return nil;
  357. }
  358. - (NSString *)description {
  359. NSString *requestStr = self.request.URL.description;
  360. if (requestStr.length == 0) {
  361. if (self.downloadResumeData.length > 0) {
  362. requestStr = @"<download resume data>";
  363. } else if (_wasCreatedFromBackgroundSession) {
  364. requestStr = @"<from bg session>";
  365. } else {
  366. requestStr = @"<no request>";
  367. }
  368. }
  369. return [NSString stringWithFormat:@"%@ %p (%@)", [self class], self, requestStr];
  370. }
  371. - (void)dealloc {
  372. GTMSESSION_ASSERT_DEBUG(!_isStopNotificationNeeded, @"unbalanced fetcher notification for %@",
  373. _request.URL);
  374. [self forgetSessionIdentifierForFetcherWithoutSyncCheck];
  375. // Note: if a session task or a retry timer was pending, then this instance
  376. // would be retained by those so it wouldn't be getting dealloc'd,
  377. // hence we don't need to stopFetch here
  378. }
  379. #pragma mark -
  380. // Begin fetching the URL (or begin a retry fetch). The delegate is retained
  381. // for the duration of the fetch connection.
  382. - (void)beginFetchWithCompletionHandler:(nullable GTMSessionFetcherCompletionHandler)handler {
  383. GTMSessionCheckNotSynchronized(self);
  384. _completionHandler = [handler copy];
  385. // The user may have called setDelegate: earlier if they want to use other
  386. // delegate-style callbacks during the fetch; otherwise, the delegate is nil,
  387. // which is fine.
  388. [self beginFetchMayDelay:YES mayAuthorize:YES mayDecorate:YES];
  389. }
  390. // Begin fetching the URL for a retry fetch. The delegate and completion handler
  391. // are already provided, and do not need to be copied.
  392. - (void)beginFetchForRetry {
  393. GTMSessionCheckNotSynchronized(self);
  394. [self beginFetchMayDelay:YES mayAuthorize:YES mayDecorate:YES];
  395. }
  396. - (GTMSessionFetcherCompletionHandler)completionHandlerWithTarget:(nullable id)target
  397. didFinishSelector:(nullable SEL)finishedSelector {
  398. GTMSessionFetcherAssertValidSelector(target, finishedSelector, @encode(GTMSessionFetcher *),
  399. @encode(NSData *), @encode(NSError *), 0);
  400. GTMSessionFetcherCompletionHandler completionHandler = ^(NSData *data, NSError *error) {
  401. if (target && finishedSelector) {
  402. id selfArg = self; // Placate ARC.
  403. NSMethodSignature *sig = [target methodSignatureForSelector:finishedSelector];
  404. NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:sig];
  405. [invocation setSelector:(SEL)finishedSelector];
  406. [invocation setTarget:target];
  407. [invocation setArgument:&selfArg atIndex:2];
  408. [invocation setArgument:&data atIndex:3];
  409. [invocation setArgument:&error atIndex:4];
  410. [invocation invoke];
  411. }
  412. };
  413. return completionHandler;
  414. }
  415. - (void)beginFetchWithDelegate:(nullable id)target
  416. didFinishSelector:(nullable SEL)finishedSelector {
  417. GTMSessionCheckNotSynchronized(self);
  418. GTMSessionFetcherCompletionHandler handler = [self completionHandlerWithTarget:target
  419. didFinishSelector:finishedSelector];
  420. [self beginFetchWithCompletionHandler:handler];
  421. }
  422. - (void)beginFetchMayDelay:(BOOL)mayDelay
  423. mayAuthorize:(BOOL)mayAuthorize
  424. mayDecorate:(BOOL)mayDecorate {
  425. // This is the internal entry point for re-starting fetches.
  426. GTMSessionCheckNotSynchronized(self);
  427. NSMutableURLRequest *fetchRequest =
  428. _request; // The request property is now externally immutable.
  429. NSURL *fetchRequestURL = fetchRequest.URL;
  430. NSString *priorSessionIdentifier = self.sessionIdentifier;
  431. // A utility block for creating error objects when we fail to start the fetch.
  432. NSError * (^beginFailureError)(NSInteger) = ^(NSInteger code) {
  433. NSString *urlString = fetchRequestURL.absoluteString;
  434. NSDictionary *userInfo =
  435. @{NSURLErrorFailingURLStringErrorKey : (urlString ? urlString : @"(missing URL)")};
  436. return [NSError errorWithDomain:kGTMSessionFetcherErrorDomain code:code userInfo:userInfo];
  437. };
  438. // Catch delegate queue maxConcurrentOperationCount values other than 1, particularly
  439. // NSOperationQueueDefaultMaxConcurrentOperationCount (-1), to avoid the additional complexity
  440. // of simultaneous or out-of-order delegate callbacks.
  441. GTMSESSION_ASSERT_DEBUG(_delegateQueue.maxConcurrentOperationCount == 1,
  442. @"delegate queue %@ should support one concurrent operation, not %ld",
  443. _delegateQueue.name, (long)_delegateQueue.maxConcurrentOperationCount);
  444. if (!_initialBeginFetchDate) {
  445. // This ivar is set only here on the initial beginFetch so need not be synchronized.
  446. _initialBeginFetchDate = [[NSDate alloc] init];
  447. }
  448. if (self.sessionTask != nil) {
  449. // If cached fetcher returned through fetcherWithSessionIdentifier:, then it's
  450. // already begun, but don't consider this a failure, since the user need not know this.
  451. if (self.sessionIdentifier != nil) {
  452. return;
  453. }
  454. GTMSESSION_ASSERT_DEBUG(NO, @"Fetch object %@ being reused; this should never happen", self);
  455. [self failToBeginFetchWithError:beginFailureError(GTMSessionFetcherErrorDownloadFailed)];
  456. return;
  457. }
  458. if (fetchRequestURL == nil && !_downloadResumeData && !priorSessionIdentifier) {
  459. GTMSESSION_ASSERT_DEBUG(NO, @"Beginning a fetch requires a request with a URL");
  460. [self failToBeginFetchWithError:beginFailureError(GTMSessionFetcherErrorDownloadFailed)];
  461. return;
  462. }
  463. // We'll respect the user's request for a background session (unless this is
  464. // an upload fetcher, which does its initial request foreground.)
  465. self.usingBackgroundSession = self.useBackgroundSession && [self canFetchWithBackgroundSession];
  466. NSURL *bodyFileURL = self.bodyFileURL;
  467. if (bodyFileURL) {
  468. NSError *fileCheckError;
  469. if (![bodyFileURL checkResourceIsReachableAndReturnError:&fileCheckError]) {
  470. // This assert fires when the file being uploaded no longer exists once
  471. // the fetcher is ready to start the upload.
  472. GTMSESSION_ASSERT_DEBUG_OR_LOG(0, @"Body file is unreachable: %@\n %@", bodyFileURL.path,
  473. fileCheckError);
  474. [self failToBeginFetchWithError:fileCheckError];
  475. return;
  476. }
  477. }
  478. NSString *requestScheme = fetchRequestURL.scheme;
  479. BOOL isDataRequest = [requestScheme isEqual:@"data"];
  480. if (isDataRequest) {
  481. // NSURLSession does not support data URLs in background sessions.
  482. #if DEBUG
  483. if (priorSessionIdentifier || self.sessionIdentifier) {
  484. GTMSESSION_LOG_DEBUG(@"Converting background to foreground session for %@", fetchRequest);
  485. }
  486. #endif
  487. // If priorSessionIdentifier is allowed to stay non-nil, a background session can
  488. // still be created.
  489. priorSessionIdentifier = nil;
  490. [self setSessionIdentifierInternal:nil];
  491. self.usingBackgroundSession = NO;
  492. }
  493. #if GTM_ALLOW_INSECURE_REQUESTS
  494. BOOL shouldCheckSecurity = NO;
  495. #else
  496. BOOL shouldCheckSecurity =
  497. (fetchRequestURL != nil && !isDataRequest && [[self class] appAllowsInsecureRequests]);
  498. #endif
  499. if (shouldCheckSecurity) {
  500. // Allow https only for requests, unless overridden by the client.
  501. //
  502. // Non-https requests may too easily be snooped, so we disallow them by default.
  503. //
  504. // file: and data: schemes are usually safe if they are hardcoded in the client or provided
  505. // by a trusted source, but since it's fairly rare to need them, it's safest to make clients
  506. // explicitly allow them.
  507. BOOL isSecure =
  508. requestScheme != nil && [requestScheme caseInsensitiveCompare:@"https"] == NSOrderedSame;
  509. if (!isSecure) {
  510. BOOL allowRequest = NO;
  511. NSString *host = fetchRequestURL.host;
  512. // Check schemes first. A file scheme request may be allowed here, or as a localhost request.
  513. for (NSString *allowedScheme in _allowedInsecureSchemes) {
  514. if (requestScheme != nil &&
  515. [requestScheme caseInsensitiveCompare:allowedScheme] == NSOrderedSame) {
  516. allowRequest = YES;
  517. break;
  518. }
  519. }
  520. if (!allowRequest) {
  521. // Check for localhost requests. Security checks only occur for non-https requests, so
  522. // this check won't happen for an https request to localhost.
  523. BOOL isLocalhostRequest =
  524. (host.length == 0 && [fetchRequestURL isFileURL]) || IsLocalhost(host);
  525. if (isLocalhostRequest) {
  526. if (self.allowLocalhostRequest) {
  527. allowRequest = YES;
  528. } else {
  529. GTMSESSION_ASSERT_DEBUG(NO,
  530. @"Fetch request for localhost but fetcher"
  531. @" allowLocalhostRequest is not set: %@",
  532. fetchRequestURL);
  533. }
  534. } else {
  535. GTMSESSION_ASSERT_DEBUG(NO,
  536. @"Insecure fetch request has a scheme (%@)"
  537. @" not found in fetcher allowedInsecureSchemes (%@): %@",
  538. requestScheme, _allowedInsecureSchemes ?: @" @[] ",
  539. fetchRequestURL);
  540. }
  541. }
  542. if (!allowRequest) {
  543. #if !DEBUG
  544. NSLog(@"Insecure fetch disallowed for %@",
  545. fetchRequestURL.description ?: @"nil request URL");
  546. #endif
  547. [self failToBeginFetchWithError:beginFailureError(GTMSessionFetcherErrorInsecureRequest)];
  548. return;
  549. }
  550. } // !isSecure
  551. } // (requestURL != nil) && !isDataRequest
  552. if (self.cookieStorage == nil) {
  553. self.cookieStorage = [[self class] staticCookieStorage];
  554. }
  555. BOOL isRecreatingSession = (self.sessionIdentifier != nil) && (fetchRequest == nil);
  556. self.canShareSession = (_service != nil) && !isRecreatingSession && !self.usingBackgroundSession;
  557. if (!self.session && self.canShareSession) {
  558. self.session = [_service sessionForFetcherCreation];
  559. // If _session is nil, then the service's session creation semaphore will block
  560. // until this fetcher invokes fetcherDidCreateSession: below, so this *must* invoke
  561. // that method, even if the session fails to be created.
  562. }
  563. if (!self.session) {
  564. // Create a session.
  565. if (!_configuration) {
  566. if (priorSessionIdentifier || self.usingBackgroundSession) {
  567. NSString *sessionIdentifier = priorSessionIdentifier;
  568. if (!sessionIdentifier) {
  569. sessionIdentifier = [self createSessionIdentifierWithMetadata:nil];
  570. }
  571. NSMapTable *sessionIdentifierToFetcherMap = [[self class] sessionIdentifierToFetcherMap];
  572. [sessionIdentifierToFetcherMap setObject:self forKey:self.sessionIdentifier];
  573. _configuration = [NSURLSessionConfiguration
  574. backgroundSessionConfigurationWithIdentifier:sessionIdentifier];
  575. self.usingBackgroundSession = YES;
  576. self.canShareSession = NO;
  577. } else {
  578. _configuration = [NSURLSessionConfiguration ephemeralSessionConfiguration];
  579. }
  580. #if !GTM_ALLOW_INSECURE_REQUESTS
  581. #if GTM_SDK_REQUIRES_TLSMINIMUMSUPPORTEDPROTOCOLVERSION
  582. _configuration.TLSMinimumSupportedProtocolVersion = tls_protocol_version_TLSv12;
  583. #elif GTM_SDK_SUPPORTS_TLSMINIMUMSUPPORTEDPROTOCOLVERSION
  584. if (@available(iOS 13, tvOS 13, watchOS 6, macOS 10.15, *)) {
  585. _configuration.TLSMinimumSupportedProtocolVersion = tls_protocol_version_TLSv12;
  586. } else {
  587. _configuration.TLSMinimumSupportedProtocol = kTLSProtocol12;
  588. }
  589. #else
  590. _configuration.TLSMinimumSupportedProtocol = kTLSProtocol12;
  591. #endif // GTM_SDK_REQUIRES_TLSMINIMUMSUPPORTEDPROTOCOLVERSION
  592. #endif
  593. } // !_configuration
  594. _configuration.HTTPCookieStorage = self.cookieStorage;
  595. if (_configurationBlock) {
  596. _configurationBlock(self, _configuration);
  597. }
  598. id<NSURLSessionDelegate> delegate = [_service sessionDelegate];
  599. if (!delegate || !self.canShareSession) {
  600. delegate = self;
  601. }
  602. self.session = [NSURLSession sessionWithConfiguration:_configuration
  603. delegate:delegate
  604. delegateQueue:self.sessionDelegateQueue];
  605. GTMSESSION_ASSERT_DEBUG(self.session, @"Couldn't create session");
  606. // Tell the service about the session created by this fetcher. This also signals the
  607. // service's semaphore to allow other fetchers to request this session.
  608. [_service fetcherDidCreateSession:self];
  609. // If this assertion fires, the client probably tried to use a session identifier that was
  610. // already used. The solution is to make the client use a unique identifier (or better yet let
  611. // the session fetcher assign the identifier).
  612. GTMSESSION_ASSERT_DEBUG(self.session.delegate == delegate, @"Couldn't assign delegate.");
  613. if (self.session) {
  614. BOOL isUsingSharedDelegate = (delegate != self);
  615. if (!isUsingSharedDelegate) {
  616. _shouldInvalidateSession = YES;
  617. }
  618. }
  619. }
  620. if (isRecreatingSession) {
  621. _shouldInvalidateSession = YES;
  622. // Let's make sure there are tasks still running or if not that we get a callback from a
  623. // completed one; otherwise, we assume the tasks failed.
  624. // This is the observed behavior perhaps 25% of the time within the Simulator running 7.0.3 on
  625. // exiting the app after starting an upload and relaunching the app if we manage to relaunch
  626. // after the task has completed, but before the system relaunches us in the background.
  627. [self.session getTasksWithCompletionHandler:^(NSArray *dataTasks, NSArray *uploadTasks,
  628. NSArray *downloadTasks) {
  629. if (dataTasks.count == 0 && uploadTasks.count == 0 && downloadTasks.count == 0) {
  630. double const kDelayInSeconds = 1.0; // We should get progress indication or completion soon
  631. dispatch_time_t checkForFeedbackDelay =
  632. dispatch_time(DISPATCH_TIME_NOW, (int64_t)(kDelayInSeconds * NSEC_PER_SEC));
  633. dispatch_after(checkForFeedbackDelay, dispatch_get_main_queue(), ^{
  634. if (!self.sessionTask && !fetchRequest) {
  635. // If our task and/or request haven't been restored, then we assume task feedback lost.
  636. [self removePersistedBackgroundSessionFromDefaults];
  637. NSError *sessionError =
  638. [NSError errorWithDomain:kGTMSessionFetcherErrorDomain
  639. code:GTMSessionFetcherErrorBackgroundFetchFailed
  640. userInfo:nil];
  641. [self failToBeginFetchWithError:sessionError];
  642. }
  643. });
  644. }
  645. }];
  646. return;
  647. }
  648. self.downloadedData = nil;
  649. self.downloadedLength = 0;
  650. if (_servicePriority == NSIntegerMin) {
  651. mayDelay = NO;
  652. }
  653. if (mayDelay && _service) {
  654. BOOL shouldFetchNow = [_service fetcherShouldBeginFetching:self];
  655. if (!shouldFetchNow) {
  656. // The fetch is deferred, but will happen later.
  657. //
  658. // If this session is held by the fetcher service, clear the session now so that we don't
  659. // assume it's still valid after the fetcher is restarted.
  660. if (self.canShareSession) {
  661. self.session = nil;
  662. }
  663. return;
  664. }
  665. }
  666. NSString *effectiveHTTPMethod = [fetchRequest valueForHTTPHeaderField:@"X-HTTP-Method-Override"];
  667. if (effectiveHTTPMethod == nil) {
  668. effectiveHTTPMethod = fetchRequest.HTTPMethod;
  669. }
  670. BOOL isEffectiveHTTPGet = (effectiveHTTPMethod == nil || [effectiveHTTPMethod isEqual:@"GET"]);
  671. BOOL needsUploadTask = (self.useUploadTask || self.bodyFileURL || self.bodyStreamProvider);
  672. if (_bodyData || self.bodyStreamProvider || fetchRequest.HTTPBodyStream) {
  673. if (isEffectiveHTTPGet) {
  674. fetchRequest.HTTPMethod = @"POST";
  675. isEffectiveHTTPGet = NO;
  676. }
  677. if (_bodyData) {
  678. if (!needsUploadTask) {
  679. fetchRequest.HTTPBody = _bodyData;
  680. }
  681. #if !STRIP_GTM_FETCH_LOGGING
  682. } else if (fetchRequest.HTTPBodyStream) {
  683. if ([self respondsToSelector:@selector(loggedInputStreamForInputStream:)]) {
  684. fetchRequest.HTTPBodyStream =
  685. [self performSelector:@selector(loggedInputStreamForInputStream:)
  686. withObject:fetchRequest.HTTPBodyStream];
  687. }
  688. #endif
  689. }
  690. }
  691. // We authorize after setting up the http method and body in the request
  692. // because OAuth 1 may need to sign the request body
  693. if (mayAuthorize && _authorizer && !isDataRequest) {
  694. BOOL isAuthorized = [_authorizer isAuthorizedRequest:fetchRequest];
  695. if (!isAuthorized) {
  696. // Authorization needed.
  697. //
  698. // If this session is held by the fetcher service, clear the session now so that we don't
  699. // assume it's still valid after authorization completes.
  700. if (self.canShareSession) {
  701. self.session = nil;
  702. }
  703. // Authorizing the request will recursively call this beginFetch:mayDelay:
  704. // or failToBeginFetchWithError:.
  705. [self authorizeRequest];
  706. return;
  707. }
  708. }
  709. if (mayDecorate && [_service respondsToSelector:@selector(decorators)]) {
  710. NSArray<id<GTMFetcherDecoratorProtocol>> *decorators = _service.decorators;
  711. if (decorators.count) {
  712. // If this session is held by the fetcher service, clear the session now so that we don't
  713. // assume it's still valid after decoration completes.
  714. //
  715. // The service will still hold on to the session, so as long as decoration doesn't take more
  716. // than 30 seconds since the last request, the service's session will be re-used when the
  717. // fetch actually starts.
  718. if (self.canShareSession) {
  719. self.session = nil;
  720. }
  721. [self applyDecoratorsAtRequestWillStart:decorators startingAtIndex:0];
  722. return;
  723. }
  724. }
  725. // set the default upload or download retry interval, if necessary
  726. if ([self isRetryEnabled] && self.maxRetryInterval <= 0) {
  727. if (isEffectiveHTTPGet || [effectiveHTTPMethod isEqual:@"HEAD"]) {
  728. [self setMaxRetryInterval:kDefaultMaxDownloadRetryInterval];
  729. } else {
  730. [self setMaxRetryInterval:kDefaultMaxUploadRetryInterval];
  731. }
  732. }
  733. // finally, start the connection
  734. NSURLSessionTask *newSessionTask;
  735. BOOL needsDataAccumulator = NO;
  736. if (_downloadResumeData) {
  737. newSessionTask = [_session downloadTaskWithResumeData:_downloadResumeData];
  738. GTMSESSION_ASSERT_DEBUG_OR_LOG(
  739. newSessionTask, @"Failed downloadTaskWithResumeData for %@, resume data %lu bytes",
  740. _session, (unsigned long)_downloadResumeData.length);
  741. } else if (_destinationFileURL && !isDataRequest) {
  742. newSessionTask = [_session downloadTaskWithRequest:fetchRequest];
  743. GTMSESSION_ASSERT_DEBUG_OR_LOG(newSessionTask, @"Failed downloadTaskWithRequest for %@, %@",
  744. _session, fetchRequest);
  745. } else if (needsUploadTask) {
  746. if (bodyFileURL) {
  747. newSessionTask = [_session uploadTaskWithRequest:fetchRequest fromFile:bodyFileURL];
  748. GTMSESSION_ASSERT_DEBUG_OR_LOG(newSessionTask,
  749. @"Failed uploadTaskWithRequest for %@, %@, file %@", _session,
  750. fetchRequest, bodyFileURL.path);
  751. } else if (self.bodyStreamProvider) {
  752. newSessionTask = [_session uploadTaskWithStreamedRequest:fetchRequest];
  753. GTMSESSION_ASSERT_DEBUG_OR_LOG(newSessionTask,
  754. @"Failed uploadTaskWithStreamedRequest for %@, %@", _session,
  755. fetchRequest);
  756. } else {
  757. GTMSESSION_ASSERT_DEBUG_OR_LOG(_bodyData != nil, @"Upload task needs body data, %@",
  758. fetchRequest);
  759. newSessionTask = [_session uploadTaskWithRequest:fetchRequest
  760. fromData:(NSData *_Nonnull)_bodyData];
  761. GTMSESSION_ASSERT_DEBUG_OR_LOG(
  762. newSessionTask, @"Failed uploadTaskWithRequest for %@, %@, body data %lu bytes", _session,
  763. fetchRequest, (unsigned long)_bodyData.length);
  764. }
  765. needsDataAccumulator = YES;
  766. } else {
  767. newSessionTask = [_session dataTaskWithRequest:fetchRequest];
  768. needsDataAccumulator = YES;
  769. GTMSESSION_ASSERT_DEBUG_OR_LOG(newSessionTask, @"Failed dataTaskWithRequest for %@, %@",
  770. _session, fetchRequest);
  771. }
  772. self.sessionTask = newSessionTask;
  773. if (!newSessionTask) {
  774. // We shouldn't get here; if we're here, an earlier assertion should have fired to explain
  775. // which session task creation failed.
  776. [self failToBeginFetchWithError:beginFailureError(GTMSessionFetcherErrorTaskCreationFailed)];
  777. return;
  778. }
  779. if (needsDataAccumulator && _accumulateDataBlock == nil) {
  780. self.downloadedData = [NSMutableData data];
  781. }
  782. if (_taskDescription) {
  783. newSessionTask.taskDescription = _taskDescription;
  784. }
  785. if (_taskPriority >= 0) {
  786. newSessionTask.priority = _taskPriority;
  787. }
  788. #if GTM_DISABLE_FETCHER_TEST_BLOCK
  789. GTMSESSION_ASSERT_DEBUG(_testBlock == nil && gGlobalTestBlock == nil, @"test blocks disabled");
  790. _testBlock = nil;
  791. #else
  792. if (!_testBlock) {
  793. if (gGlobalTestBlock) {
  794. // Note that the test block may pass nil for all of its response parameters,
  795. // indicating that the fetch should actually proceed. This is useful when the
  796. // global test block has been set, and the app is only testing a specific
  797. // fetcher. The block simulation code will then resume the task.
  798. _testBlock = gGlobalTestBlock;
  799. }
  800. }
  801. _isUsingTestBlock = (_testBlock != nil);
  802. #endif // GTM_DISABLE_FETCHER_TEST_BLOCK
  803. #if GTM_BACKGROUND_TASK_FETCHING
  804. id<GTMUIApplicationProtocol> app = [[self class] fetcherUIApplication];
  805. // Background tasks seem to interfere with out-of-process uploads and downloads.
  806. if (app && !self.skipBackgroundTask && !self.usingBackgroundSession) {
  807. // Tell UIApplication that we want to continue even when the app is in the
  808. // background.
  809. #if DEBUG
  810. NSString *bgTaskName =
  811. [NSString stringWithFormat:@"%@-%@", [self class], fetchRequest.URL.host];
  812. #else
  813. NSString *bgTaskName = @"GTMSessionFetcher";
  814. #endif
  815. // Since a request can be started from any thread, we also have to ensure the
  816. // variable for accessing it is safe across the initial thread and the handler
  817. // (incase it gets failed immediately from the app already heading into the
  818. // background).
  819. __block UIBackgroundTaskIdentifier guardedTaskID = UIBackgroundTaskInvalid;
  820. UIBackgroundTaskIdentifier returnedTaskID =
  821. [app beginBackgroundTaskWithName:bgTaskName
  822. expirationHandler:^{
  823. // Background task expiration callback - this block is always invoked by
  824. // UIApplication on the main thread.
  825. UIBackgroundTaskIdentifier localTaskID;
  826. @synchronized(self) {
  827. localTaskID = guardedTaskID;
  828. }
  829. if (localTaskID != UIBackgroundTaskInvalid) {
  830. @synchronized(self) {
  831. if (localTaskID == self.backgroundTaskIdentifier) {
  832. self.backgroundTaskIdentifier = UIBackgroundTaskInvalid;
  833. }
  834. }
  835. [app endBackgroundTask:localTaskID];
  836. }
  837. }];
  838. @synchronized(self) {
  839. guardedTaskID = returnedTaskID;
  840. self.backgroundTaskIdentifier = returnedTaskID;
  841. }
  842. }
  843. #endif
  844. if (!_initialRequestDate) {
  845. _initialRequestDate = [[NSDate alloc] init];
  846. }
  847. // We don't expect to reach here even on retry or auth until a stop notification has been sent
  848. // for the previous task, but we should ensure that we don't unbalance that.
  849. GTMSESSION_ASSERT_DEBUG(!_isStopNotificationNeeded, @"Start notification without a prior stop");
  850. [self sendStopNotificationIfNeeded];
  851. [self addPersistedBackgroundSessionToDefaults];
  852. [self setStopNotificationNeeded:YES];
  853. [self postNotificationOnMainThreadWithName:kGTMSessionFetcherStartedNotification
  854. userInfo:nil
  855. requireAsync:NO];
  856. // The service needs to know our task if it is serving as NSURLSession delegate.
  857. [_service fetcherDidBeginFetching:self];
  858. if (_testBlock) {
  859. #if !GTM_DISABLE_FETCHER_TEST_BLOCK
  860. [self simulateFetchForTestBlock];
  861. #endif
  862. } else {
  863. // We resume the session task after posting the notification since the
  864. // delegate callbacks may happen immediately if the fetch is started off
  865. // the main thread or the session delegate queue is on a background thread,
  866. // and we don't want to post a start notification after a premature finish
  867. // of the session task.
  868. [newSessionTask resume];
  869. }
  870. }
  871. NSData *_Nullable GTMDataFromInputStream(NSInputStream *inputStream, NSError **outError) {
  872. NSMutableData *data = [NSMutableData data];
  873. [inputStream open];
  874. NSInteger numberOfBytesRead = 0;
  875. while ([inputStream hasBytesAvailable]) {
  876. uint8_t buffer[512];
  877. numberOfBytesRead = [inputStream read:buffer maxLength:sizeof(buffer)];
  878. if (numberOfBytesRead > 0) {
  879. [data appendBytes:buffer length:(NSUInteger)numberOfBytesRead];
  880. } else {
  881. break;
  882. }
  883. }
  884. [inputStream close];
  885. NSError *streamError = inputStream.streamError;
  886. if (streamError) {
  887. data = nil;
  888. }
  889. if (outError) {
  890. *outError = streamError;
  891. }
  892. return data;
  893. }
  894. #if !GTM_DISABLE_FETCHER_TEST_BLOCK
  895. - (void)simulateFetchForTestBlock {
  896. // This is invoked on the same thread as the beginFetch method was.
  897. //
  898. // Callbacks will all occur on the callback queue.
  899. _testBlock(self, ^(NSURLResponse *response, NSData *responseData, NSError *error) {
  900. // Callback from test block.
  901. if (response == nil && responseData == nil && error == nil) {
  902. // Assume the fetcher should execute rather than be tested.
  903. self->_testBlock = nil;
  904. self->_isUsingTestBlock = NO;
  905. [self->_sessionTask resume];
  906. return;
  907. }
  908. GTMSessionFetcherBodyStreamProvider bodyStreamProvider = self.bodyStreamProvider;
  909. if (bodyStreamProvider) {
  910. bodyStreamProvider(^(NSInputStream *bodyStream) {
  911. // Read from the input stream into an NSData buffer. We'll drain the stream
  912. // explicitly on a background queue.
  913. [self
  914. invokeOnCallbackQueue:dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0)
  915. afterUserStopped:NO
  916. block:^{
  917. NSError *streamError;
  918. NSData *streamedData =
  919. GTMDataFromInputStream(bodyStream, &streamError);
  920. dispatch_async(dispatch_get_main_queue(), ^{
  921. // Continue callbacks on the main thread, since serial behavior
  922. // is more reliable for tests.
  923. [self
  924. simulateDataCallbacksForTestBlockWithBodyData:streamedData
  925. response:response
  926. responseData:responseData
  927. error:
  928. (error
  929. ?: streamError)];
  930. });
  931. }];
  932. });
  933. } else {
  934. // No input stream; use the supplied data or file URL.
  935. NSURL *bodyFileURL = self.bodyFileURL;
  936. if (bodyFileURL) {
  937. NSError *readError;
  938. self->_bodyData = [NSData dataWithContentsOfURL:bodyFileURL
  939. options:NSDataReadingMappedIfSafe
  940. error:&readError];
  941. error = readError;
  942. }
  943. // No stream provider.
  944. // In real fetches, nothing happens until the run loop spins, so apps have leeway to
  945. // set callbacks after they call beginFetch. We'll mirror that fetcher behavior by
  946. // delaying callbacks here at least to the next spin of the run loop. That keeps
  947. // immediate, synchronous setting of callback blocks after beginFetch working in tests.
  948. dispatch_async(dispatch_get_main_queue(), ^{
  949. [self simulateDataCallbacksForTestBlockWithBodyData:self->_bodyData
  950. response:response
  951. responseData:responseData
  952. error:error];
  953. });
  954. }
  955. });
  956. }
  957. - (void)simulateByteTransferReportWithDataLength:(int64_t)totalDataLength
  958. block:(GTMSessionFetcherSendProgressBlock)block {
  959. // This utility method simulates transfer progress with up to three callbacks.
  960. // It is used to call back to any of the progress blocks.
  961. int64_t sendReportSize = totalDataLength / 3 + 1;
  962. int64_t totalSent = 0;
  963. while (totalSent < totalDataLength) {
  964. int64_t bytesRemaining = totalDataLength - totalSent;
  965. sendReportSize = MIN(sendReportSize, bytesRemaining);
  966. totalSent += sendReportSize;
  967. [self invokeOnCallbackQueueUnlessStopped:^{
  968. block(sendReportSize, totalSent, totalDataLength);
  969. }];
  970. }
  971. }
  972. - (void)simulateDataCallbacksForTestBlockWithBodyData:(nullable NSData *)bodyData
  973. response:(NSURLResponse *)response
  974. responseData:(NSData *)suppliedData
  975. error:(NSError *)suppliedError {
  976. __block NSData *responseData = suppliedData;
  977. __block NSError *responseError = suppliedError;
  978. // This method does the test simulation of callbacks once the upload
  979. // and download data are known.
  980. @synchronized(self) {
  981. GTMSessionMonitorSynchronized(self);
  982. // Get copies of ivars we'll access in async invocations. This simulation assumes
  983. // they won't change during fetcher execution.
  984. NSURL *destinationFileURL = _destinationFileURL;
  985. GTMSessionFetcherWillRedirectBlock willRedirectBlock = _willRedirectBlock;
  986. GTMSessionFetcherDidReceiveResponseBlock didReceiveResponseBlock = _didReceiveResponseBlock;
  987. GTMSessionFetcherSendProgressBlock sendProgressBlock = _sendProgressBlock;
  988. GTMSessionFetcherDownloadProgressBlock downloadProgressBlock = _downloadProgressBlock;
  989. GTMSessionFetcherAccumulateDataBlock accumulateDataBlock = _accumulateDataBlock;
  990. GTMSessionFetcherReceivedProgressBlock receivedProgressBlock = _receivedProgressBlock;
  991. GTMSessionFetcherWillCacheURLResponseBlock willCacheURLResponseBlock =
  992. _willCacheURLResponseBlock;
  993. GTMSessionFetcherChallengeBlock challengeBlock = _challengeBlock;
  994. // Simulate receipt of redirection.
  995. if (willRedirectBlock) {
  996. __auto_type block = ^{
  997. willRedirectBlock((NSHTTPURLResponse *)response, self->_request,
  998. ^(NSURLRequest *redirectRequest){
  999. // For simulation, we'll assume
  1000. // the app will just continue.
  1001. });
  1002. };
  1003. [self invokeOnCallbackUnsynchronizedQueueAfterUserStopped:YES block:block];
  1004. }
  1005. // If the fetcher has a challenge block, simulate a challenge.
  1006. //
  1007. // It might be nice to eventually let the user determine which testBlock
  1008. // fetches get challenged rather than always executing the supplied
  1009. // challenge block.
  1010. if (challengeBlock) {
  1011. __auto_type block = ^{
  1012. NSURL *requestURL = self->_request.URL;
  1013. NSString *host = requestURL.host;
  1014. NSURLProtectionSpace *pspace =
  1015. [[NSURLProtectionSpace alloc] initWithHost:host
  1016. port:requestURL.port.integerValue
  1017. protocol:requestURL.scheme
  1018. realm:nil
  1019. authenticationMethod:NSURLAuthenticationMethodHTTPBasic];
  1020. id<NSURLAuthenticationChallengeSender> unusedSender =
  1021. (id<NSURLAuthenticationChallengeSender>)[NSNull null];
  1022. NSURLAuthenticationChallenge *challenge =
  1023. [[NSURLAuthenticationChallenge alloc] initWithProtectionSpace:pspace
  1024. proposedCredential:nil
  1025. previousFailureCount:0
  1026. failureResponse:nil
  1027. error:nil
  1028. sender:unusedSender];
  1029. challengeBlock(self, challenge,
  1030. ^(NSURLSessionAuthChallengeDisposition disposition,
  1031. NSURLCredential *_Nullable credential){
  1032. // We could change the
  1033. // responseData and responseError
  1034. // based on the disposition,
  1035. // but it's easier for apps to
  1036. // just supply the expected data
  1037. // and error
  1038. // directly to the test block. So
  1039. // this simulation ignores the
  1040. // disposition.
  1041. });
  1042. };
  1043. [self invokeOnCallbackUnsynchronizedQueueAfterUserStopped:YES block:block];
  1044. }
  1045. // Simulate receipt of an initial response.
  1046. if (response && didReceiveResponseBlock) {
  1047. __auto_type block = ^{
  1048. didReceiveResponseBlock(response, ^(NSURLSessionResponseDisposition desiredDisposition){
  1049. // For simulation, we'll assume
  1050. // the disposition is to continue.
  1051. });
  1052. };
  1053. [self invokeOnCallbackUnsynchronizedQueueAfterUserStopped:YES block:block];
  1054. }
  1055. // Simulate reporting send progress.
  1056. if (sendProgressBlock) {
  1057. __auto_type block =
  1058. ^(int64_t bytesSent, int64_t totalBytesSent, int64_t totalBytesExpectedToSend) {
  1059. // This is invoked on the callback queue unless
  1060. // stopped.
  1061. sendProgressBlock(bytesSent, totalBytesSent, totalBytesExpectedToSend);
  1062. };
  1063. [self simulateByteTransferReportWithDataLength:(int64_t)bodyData.length block:block];
  1064. }
  1065. if (destinationFileURL) {
  1066. // Simulate download to file progress.
  1067. if (downloadProgressBlock) {
  1068. __auto_type block = ^(int64_t bytesDownloaded, int64_t totalBytesDownloaded,
  1069. int64_t totalBytesExpectedToDownload) {
  1070. // This is invoked on the callback queue unless
  1071. // stopped.
  1072. downloadProgressBlock(bytesDownloaded, totalBytesDownloaded,
  1073. totalBytesExpectedToDownload);
  1074. };
  1075. [self simulateByteTransferReportWithDataLength:(int64_t)responseData.length block:block];
  1076. }
  1077. NSError *writeError;
  1078. [responseData writeToURL:destinationFileURL options:NSDataWritingAtomic error:&writeError];
  1079. if (writeError) {
  1080. // Tell the test code that writing failed.
  1081. responseError = writeError;
  1082. }
  1083. } else {
  1084. // Simulate download to NSData progress.
  1085. if ((accumulateDataBlock || receivedProgressBlock) && responseData) {
  1086. __auto_type block = ^(NSData *data, int64_t bytesReceived, int64_t totalBytesReceived,
  1087. int64_t totalBytesExpectedToReceive) {
  1088. // This is invoked on the callback queue unless stopped.
  1089. if (accumulateDataBlock) {
  1090. accumulateDataBlock(data);
  1091. }
  1092. if (receivedProgressBlock) {
  1093. receivedProgressBlock(bytesReceived, totalBytesReceived);
  1094. }
  1095. };
  1096. [self simulateByteTransferWithData:responseData block:block];
  1097. }
  1098. if (!accumulateDataBlock) {
  1099. _downloadedData = [responseData mutableCopy];
  1100. }
  1101. if (willCacheURLResponseBlock) {
  1102. // Simulate letting the client inspect and alter the cached response.
  1103. NSData *cachedData = responseData ?: [[NSData alloc] init]; // Always have non-nil data.
  1104. NSCachedURLResponse *cachedResponse =
  1105. [[NSCachedURLResponse alloc] initWithResponse:response data:cachedData];
  1106. __auto_type block = ^{
  1107. willCacheURLResponseBlock(cachedResponse, ^(NSCachedURLResponse *responseToCache){
  1108. // The app may provide an
  1109. // alternative response, or
  1110. // nil to defeat caching.
  1111. });
  1112. };
  1113. [self invokeOnCallbackUnsynchronizedQueueAfterUserStopped:YES block:block];
  1114. }
  1115. }
  1116. _response = response;
  1117. } // @synchronized(self)
  1118. NSOperationQueue *queue = self.sessionDelegateQueue;
  1119. [queue addOperationWithBlock:^{
  1120. // Rather than invoke failToBeginFetchWithError: we want to simulate completion of
  1121. // a connection that started and ended, so we'll call down to finishWithError:
  1122. NSInteger status = responseError ? responseError.code : 200;
  1123. if (status >= 200 && status <= 399) {
  1124. [self finishWithError:nil shouldRetry:NO];
  1125. } else {
  1126. [self shouldRetryNowForStatus:status
  1127. error:responseError
  1128. forceAssumeRetry:NO
  1129. response:^(BOOL shouldRetry) {
  1130. [self finishWithError:responseError shouldRetry:shouldRetry];
  1131. }];
  1132. }
  1133. }];
  1134. }
  1135. - (void)simulateByteTransferWithData:(NSData *)responseData
  1136. block:(GTMSessionFetcherSimulateByteTransferBlock)transferBlock {
  1137. // This utility method simulates transfering data to the client. It divides the data into at most
  1138. // "chunkCount" chunks and then passes each chunk along with a progress update to transferBlock.
  1139. // This function can be used with accumulateDataBlock or receivedProgressBlock.
  1140. NSUInteger chunkCount = MAX(self.testBlockAccumulateDataChunkCount, (NSUInteger)1);
  1141. NSUInteger totalDataLength = responseData.length;
  1142. NSUInteger sendDataSize = totalDataLength / chunkCount + 1;
  1143. NSUInteger totalSent = 0;
  1144. while (totalSent < totalDataLength) {
  1145. NSUInteger bytesRemaining = totalDataLength - totalSent;
  1146. sendDataSize = MIN(sendDataSize, bytesRemaining);
  1147. NSData *chunkData = [responseData subdataWithRange:NSMakeRange(totalSent, sendDataSize)];
  1148. totalSent += sendDataSize;
  1149. [self invokeOnCallbackQueueUnlessStopped:^{
  1150. transferBlock(chunkData, (int64_t)sendDataSize, (int64_t)totalSent, (int64_t)totalDataLength);
  1151. }];
  1152. }
  1153. }
  1154. #endif // !GTM_DISABLE_FETCHER_TEST_BLOCK
  1155. - (void)setSessionTask:(NSURLSessionTask *)sessionTask {
  1156. @synchronized(self) {
  1157. GTMSessionMonitorSynchronized(self);
  1158. if (_sessionTask != sessionTask) {
  1159. _sessionTask = sessionTask;
  1160. if (_sessionTask) {
  1161. // Request could be nil on restoring this fetcher from a background session.
  1162. if (!_request) {
  1163. _request = [_sessionTask.originalRequest mutableCopy];
  1164. }
  1165. }
  1166. }
  1167. } // @synchronized(self)
  1168. }
  1169. - (nullable NSURLSessionTask *)sessionTask {
  1170. @synchronized(self) {
  1171. GTMSessionMonitorSynchronized(self);
  1172. return _sessionTask;
  1173. } // @synchronized(self)
  1174. }
  1175. + (NSUserDefaults *)fetcherUserDefaults {
  1176. static NSUserDefaults *gFetcherUserDefaults = nil;
  1177. static dispatch_once_t onceToken;
  1178. dispatch_once(&onceToken, ^{
  1179. Class fetcherUserDefaultsClass = NSClassFromString(@"GTMSessionFetcherUserDefaultsFactory");
  1180. if (fetcherUserDefaultsClass) {
  1181. gFetcherUserDefaults = [fetcherUserDefaultsClass fetcherUserDefaults];
  1182. } else {
  1183. gFetcherUserDefaults = [NSUserDefaults standardUserDefaults];
  1184. }
  1185. });
  1186. return gFetcherUserDefaults;
  1187. }
  1188. - (void)addPersistedBackgroundSessionToDefaults {
  1189. NSString *sessionIdentifier = self.sessionIdentifier;
  1190. if (!sessionIdentifier) {
  1191. return;
  1192. }
  1193. NSArray *oldBackgroundSessions = [[self class] activePersistedBackgroundSessions];
  1194. if ([oldBackgroundSessions containsObject:_sessionIdentifier]) {
  1195. return;
  1196. }
  1197. NSMutableArray *newBackgroundSessions = [NSMutableArray arrayWithArray:oldBackgroundSessions];
  1198. [newBackgroundSessions addObject:sessionIdentifier];
  1199. GTM_LOG_BACKGROUND_SESSION(@"Add to background sessions: %@", newBackgroundSessions);
  1200. NSUserDefaults *userDefaults = [[self class] fetcherUserDefaults];
  1201. [userDefaults setObject:newBackgroundSessions forKey:kGTMSessionFetcherPersistedDestinationKey];
  1202. [userDefaults synchronize];
  1203. }
  1204. - (void)removePersistedBackgroundSessionFromDefaults {
  1205. NSString *sessionIdentifier = self.sessionIdentifier;
  1206. if (!sessionIdentifier) return;
  1207. NSArray *oldBackgroundSessions = [[self class] activePersistedBackgroundSessions];
  1208. if (!oldBackgroundSessions) {
  1209. return;
  1210. }
  1211. NSMutableArray *newBackgroundSessions = [NSMutableArray arrayWithArray:oldBackgroundSessions];
  1212. NSUInteger sessionIndex = [newBackgroundSessions indexOfObject:sessionIdentifier];
  1213. if (sessionIndex == NSNotFound) {
  1214. return;
  1215. }
  1216. [newBackgroundSessions removeObjectAtIndex:sessionIndex];
  1217. GTM_LOG_BACKGROUND_SESSION(@"Remove from background sessions: %@", newBackgroundSessions);
  1218. NSUserDefaults *userDefaults = [[self class] fetcherUserDefaults];
  1219. if (newBackgroundSessions.count == 0) {
  1220. [userDefaults removeObjectForKey:kGTMSessionFetcherPersistedDestinationKey];
  1221. } else {
  1222. [userDefaults setObject:newBackgroundSessions forKey:kGTMSessionFetcherPersistedDestinationKey];
  1223. }
  1224. [userDefaults synchronize];
  1225. }
  1226. + (nullable NSArray *)activePersistedBackgroundSessions {
  1227. NSUserDefaults *userDefaults = [[self class] fetcherUserDefaults];
  1228. NSArray *oldBackgroundSessions =
  1229. [userDefaults arrayForKey:kGTMSessionFetcherPersistedDestinationKey];
  1230. if (oldBackgroundSessions.count == 0) {
  1231. return nil;
  1232. }
  1233. NSMutableArray *activeBackgroundSessions = nil;
  1234. NSMapTable *sessionIdentifierToFetcherMap = [self sessionIdentifierToFetcherMap];
  1235. for (NSString *sessionIdentifier in oldBackgroundSessions) {
  1236. GTMSessionFetcher *fetcher = [sessionIdentifierToFetcherMap objectForKey:sessionIdentifier];
  1237. if (fetcher) {
  1238. if (!activeBackgroundSessions) {
  1239. activeBackgroundSessions = [[NSMutableArray alloc] init];
  1240. }
  1241. [activeBackgroundSessions addObject:sessionIdentifier];
  1242. }
  1243. }
  1244. return activeBackgroundSessions;
  1245. }
  1246. + (NSArray *)fetchersForBackgroundSessions {
  1247. NSUserDefaults *userDefaults = [[self class] fetcherUserDefaults];
  1248. NSArray *backgroundSessions =
  1249. [userDefaults arrayForKey:kGTMSessionFetcherPersistedDestinationKey];
  1250. NSMapTable *sessionIdentifierToFetcherMap = [self sessionIdentifierToFetcherMap];
  1251. NSMutableArray *fetchers = [NSMutableArray array];
  1252. for (NSString *sessionIdentifier in backgroundSessions) {
  1253. GTMSessionFetcher *fetcher = [sessionIdentifierToFetcherMap objectForKey:sessionIdentifier];
  1254. if (!fetcher) {
  1255. fetcher = [self fetcherWithSessionIdentifier:sessionIdentifier];
  1256. GTMSESSION_ASSERT_DEBUG(fetcher != nil, @"Unexpected invalid session identifier: %@",
  1257. sessionIdentifier);
  1258. if (!fetcher.clientWillReconnectBackgroundSession) {
  1259. [fetcher beginFetchWithCompletionHandler:nil];
  1260. }
  1261. }
  1262. GTM_LOG_BACKGROUND_SESSION(@"%@ restoring session %@ by creating fetcher %@ %p", [self class],
  1263. sessionIdentifier, fetcher, fetcher);
  1264. if (fetcher != nil) {
  1265. [fetchers addObject:fetcher];
  1266. }
  1267. }
  1268. return fetchers;
  1269. }
  1270. #if TARGET_OS_IPHONE && !TARGET_OS_WATCH
  1271. + (void)application:(UIApplication *)application
  1272. handleEventsForBackgroundURLSession:(NSString *)identifier
  1273. completionHandler:(GTMSessionFetcherSystemCompletionHandler)completionHandler
  1274. GTM_SWIFT_DISABLE_ASYNC {
  1275. GTMSessionFetcher *fetcher = [self fetcherWithSessionIdentifier:identifier];
  1276. if (fetcher != nil) {
  1277. fetcher.systemCompletionHandler = completionHandler;
  1278. } else {
  1279. GTM_LOG_BACKGROUND_SESSION(@"%@ did not create background session identifier: %@", [self class],
  1280. identifier);
  1281. }
  1282. }
  1283. #endif
  1284. - (nullable NSString *)sessionIdentifier {
  1285. @synchronized(self) {
  1286. GTMSessionMonitorSynchronized(self);
  1287. return _sessionIdentifier;
  1288. } // @synchronized(self)
  1289. }
  1290. - (void)setSessionIdentifier:(NSString *)sessionIdentifier {
  1291. GTMSESSION_ASSERT_DEBUG(sessionIdentifier != nil, @"Invalid session identifier");
  1292. @synchronized(self) {
  1293. GTMSessionMonitorSynchronized(self);
  1294. GTMSESSION_ASSERT_DEBUG(!_session, @"Unable to set session identifier after session created");
  1295. _sessionIdentifier = [sessionIdentifier copy];
  1296. _usingBackgroundSession = YES;
  1297. _canShareSession = NO;
  1298. [self restoreDefaultStateForSessionIdentifierMetadata];
  1299. } // @synchronized(self)
  1300. }
  1301. - (void)setSessionIdentifierInternal:(nullable NSString *)sessionIdentifier {
  1302. // This internal method only does a synchronized set of the session identifier.
  1303. // It does not have side effects on the background session, shared session, or
  1304. // session identifier metadata.
  1305. @synchronized(self) {
  1306. GTMSessionMonitorSynchronized(self);
  1307. _sessionIdentifier = [sessionIdentifier copy];
  1308. } // @synchronized(self)
  1309. }
  1310. - (nullable NSDictionary *)sessionUserInfo {
  1311. @synchronized(self) {
  1312. GTMSessionMonitorSynchronized(self);
  1313. if (_sessionUserInfo == nil) {
  1314. // We'll return the metadata dictionary with internal keys removed. This avoids the user
  1315. // re-using the userInfo dictionary later and accidentally including the internal keys.
  1316. NSMutableDictionary *metadata = [[self sessionIdentifierMetadataUnsynchronized] mutableCopy];
  1317. NSSet *keysToRemove = [metadata keysOfEntriesPassingTest:^BOOL(id key, id obj, BOOL *stop) {
  1318. return [key hasPrefix:@"_"];
  1319. }];
  1320. [metadata removeObjectsForKeys:[keysToRemove allObjects]];
  1321. if (metadata.count > 0) {
  1322. _sessionUserInfo = metadata;
  1323. }
  1324. }
  1325. return _sessionUserInfo;
  1326. } // @synchronized(self)
  1327. }
  1328. - (void)setSessionUserInfo:(nullable NSDictionary *)dictionary {
  1329. @synchronized(self) {
  1330. GTMSessionMonitorSynchronized(self);
  1331. GTMSESSION_ASSERT_DEBUG(_sessionIdentifier == nil, @"Too late to assign userInfo");
  1332. _sessionUserInfo = dictionary;
  1333. } // @synchronized(self)
  1334. }
  1335. - (nullable NSDictionary *)sessionIdentifierDefaultMetadata {
  1336. GTMSessionCheckSynchronized(self);
  1337. NSMutableDictionary *defaultUserInfo = [[NSMutableDictionary alloc] init];
  1338. if (_destinationFileURL) {
  1339. defaultUserInfo[kGTMSessionIdentifierDestinationFileURLMetadataKey] =
  1340. [_destinationFileURL absoluteString];
  1341. }
  1342. if (_bodyFileURL) {
  1343. defaultUserInfo[kGTMSessionIdentifierBodyFileURLMetadataKey] = [_bodyFileURL absoluteString];
  1344. }
  1345. if (_clientWillReconnectBackgroundSession) {
  1346. defaultUserInfo[kGTMSessionIdentifierClientReconnectMetadataKey] = @"YES";
  1347. }
  1348. return (defaultUserInfo.count > 0) ? defaultUserInfo : nil;
  1349. }
  1350. - (void)restoreDefaultStateForSessionIdentifierMetadata {
  1351. GTMSessionCheckSynchronized(self);
  1352. NSDictionary *metadata = [self sessionIdentifierMetadataUnsynchronized];
  1353. NSString *destinationFileURLString = metadata[kGTMSessionIdentifierDestinationFileURLMetadataKey];
  1354. if (destinationFileURLString) {
  1355. _destinationFileURL = [NSURL URLWithString:destinationFileURLString];
  1356. GTM_LOG_BACKGROUND_SESSION(@"Restoring destination file URL: %@", _destinationFileURL);
  1357. }
  1358. NSString *bodyFileURLString = metadata[kGTMSessionIdentifierBodyFileURLMetadataKey];
  1359. if (bodyFileURLString) {
  1360. _bodyFileURL = [NSURL URLWithString:bodyFileURLString];
  1361. GTM_LOG_BACKGROUND_SESSION(@"Restoring body file URL: %@", _bodyFileURL);
  1362. }
  1363. NSString *clientReconnectString = metadata[kGTMSessionIdentifierClientReconnectMetadataKey];
  1364. if (clientReconnectString) {
  1365. _clientWillReconnectBackgroundSession = [clientReconnectString boolValue];
  1366. GTM_LOG_BACKGROUND_SESSION(@"Restoring clientWillReconnectBackgroundSession: %@",
  1367. (_clientWillReconnectBackgroundSession ? @"YES" : @"NO"));
  1368. }
  1369. }
  1370. - (nullable NSDictionary *)sessionIdentifierMetadata {
  1371. @synchronized(self) {
  1372. GTMSessionMonitorSynchronized(self);
  1373. return [self sessionIdentifierMetadataUnsynchronized];
  1374. }
  1375. }
  1376. - (nullable NSDictionary *)sessionIdentifierMetadataUnsynchronized {
  1377. GTMSessionCheckSynchronized(self);
  1378. // Session Identifier format: "com.google.<ClassName>_<UUID>_<Metadata in JSON format>
  1379. if (!_sessionIdentifier) {
  1380. return nil;
  1381. }
  1382. NSScanner *metadataScanner = [NSScanner scannerWithString:_sessionIdentifier];
  1383. [metadataScanner setCharactersToBeSkipped:nil];
  1384. NSString *metadataString;
  1385. NSString *uuid;
  1386. if ([metadataScanner scanUpToString:@"_" intoString:NULL] &&
  1387. [metadataScanner scanString:@"_" intoString:NULL] &&
  1388. [metadataScanner scanUpToString:@"_" intoString:&uuid] &&
  1389. [metadataScanner scanString:@"_" intoString:NULL] &&
  1390. [metadataScanner scanUpToString:@"\n" intoString:&metadataString]) {
  1391. _sessionIdentifierUUID = uuid;
  1392. NSData *metadataData = [metadataString dataUsingEncoding:NSUTF8StringEncoding];
  1393. NSError *error;
  1394. NSDictionary *metadataDict = [NSJSONSerialization JSONObjectWithData:metadataData
  1395. options:0
  1396. error:&error];
  1397. GTM_LOG_BACKGROUND_SESSION(@"User Info from session identifier: %@ %@", metadataDict,
  1398. error ? error : @"");
  1399. return metadataDict;
  1400. }
  1401. return nil;
  1402. }
  1403. - (NSString *)createSessionIdentifierWithMetadata:(nullable NSDictionary *)metadataToInclude {
  1404. NSString *result;
  1405. @synchronized(self) {
  1406. GTMSessionMonitorSynchronized(self);
  1407. // Session Identifier format: "com.google.<ClassName>_<UUID>_<Metadata in JSON format>
  1408. GTMSESSION_ASSERT_DEBUG(!_sessionIdentifier, @"Session identifier already created");
  1409. _sessionIdentifierUUID = [[NSUUID UUID] UUIDString];
  1410. _sessionIdentifier =
  1411. [NSString stringWithFormat:@"%@_%@", kGTMSessionIdentifierPrefix, _sessionIdentifierUUID];
  1412. // Start with user-supplied keys so they cannot accidentally override the fetcher's keys.
  1413. NSMutableDictionary *metadataDict =
  1414. [NSMutableDictionary dictionaryWithDictionary:(NSDictionary *_Nonnull)_sessionUserInfo];
  1415. if (metadataToInclude) {
  1416. [metadataDict addEntriesFromDictionary:(NSDictionary *)metadataToInclude];
  1417. }
  1418. NSDictionary *defaultMetadataDict = [self sessionIdentifierDefaultMetadata];
  1419. if (defaultMetadataDict) {
  1420. [metadataDict addEntriesFromDictionary:defaultMetadataDict];
  1421. }
  1422. if (metadataDict.count > 0) {
  1423. NSData *metadataData = [NSJSONSerialization dataWithJSONObject:metadataDict
  1424. options:0
  1425. error:NULL];
  1426. GTMSESSION_ASSERT_DEBUG(metadataData != nil,
  1427. @"Session identifier user info failed to convert to JSON");
  1428. if (metadataData.length > 0) {
  1429. NSString *metadataString = [[NSString alloc] initWithData:metadataData
  1430. encoding:NSUTF8StringEncoding];
  1431. _sessionIdentifier = [_sessionIdentifier stringByAppendingFormat:@"_%@", metadataString];
  1432. }
  1433. }
  1434. _didCreateSessionIdentifier = YES;
  1435. result = _sessionIdentifier;
  1436. } // @synchronized(self)
  1437. return result;
  1438. }
  1439. - (void)failToBeginFetchWithError:(NSError *)error {
  1440. @synchronized(self) {
  1441. GTMSessionMonitorSynchronized(self);
  1442. _hasStoppedFetching = YES;
  1443. }
  1444. if (error == nil) {
  1445. error = [NSError errorWithDomain:kGTMSessionFetcherErrorDomain
  1446. code:GTMSessionFetcherErrorDownloadFailed
  1447. userInfo:nil];
  1448. }
  1449. [self invokeFetchCallbacksOnCallbackQueueWithData:nil
  1450. error:error
  1451. mayDecorate:YES
  1452. shouldReleaseCallbacks:YES];
  1453. [_service fetcherDidStop:self];
  1454. self.authorizer = nil;
  1455. }
  1456. + (GTMSessionCookieStorage *)staticCookieStorage {
  1457. static GTMSessionCookieStorage *gCookieStorage = nil;
  1458. static dispatch_once_t onceToken;
  1459. dispatch_once(&onceToken, ^{
  1460. gCookieStorage = [[GTMSessionCookieStorage alloc] init];
  1461. });
  1462. return gCookieStorage;
  1463. }
  1464. #if GTM_BACKGROUND_TASK_FETCHING
  1465. - (void)endBackgroundTask {
  1466. // Whenever the connection stops or background execution expires,
  1467. // we need to tell UIApplication we're done.
  1468. UIBackgroundTaskIdentifier bgTaskID;
  1469. @synchronized(self) {
  1470. bgTaskID = self.backgroundTaskIdentifier;
  1471. if (bgTaskID != UIBackgroundTaskInvalid) {
  1472. self.backgroundTaskIdentifier = UIBackgroundTaskInvalid;
  1473. }
  1474. }
  1475. if (bgTaskID != UIBackgroundTaskInvalid) {
  1476. id<GTMUIApplicationProtocol> app = [[self class] fetcherUIApplication];
  1477. [app endBackgroundTask:bgTaskID];
  1478. }
  1479. }
  1480. #endif // GTM_BACKGROUND_TASK_FETCHING
  1481. - (void)authorizeRequest {
  1482. GTMSessionCheckNotSynchronized(self);
  1483. id authorizer = self.authorizer;
  1484. SEL asyncAuthSel = @selector(authorizeRequest:delegate:didFinishSelector:);
  1485. if ([authorizer respondsToSelector:asyncAuthSel]) {
  1486. SEL callbackSel = @selector(authorizer:request:finishedWithError:);
  1487. NSMutableURLRequest *mutableRequest = [self.request mutableCopy];
  1488. [authorizer authorizeRequest:mutableRequest delegate:self didFinishSelector:callbackSel];
  1489. } else {
  1490. GTMSESSION_ASSERT_DEBUG(authorizer == nil, @"invalid authorizer for fetch");
  1491. // No authorizing possible, and authorizing happens only after any delay;
  1492. // just begin fetching
  1493. [self beginFetchMayDelay:NO mayAuthorize:NO mayDecorate:YES];
  1494. }
  1495. }
  1496. - (void)authorizer:(id<GTMFetcherAuthorizationProtocol>)auth
  1497. request:(NSMutableURLRequest *)authorizedRequest
  1498. finishedWithError:(NSError *)error {
  1499. GTMSessionCheckNotSynchronized(self);
  1500. if (error != nil) {
  1501. // We can't fetch without authorization
  1502. [self failToBeginFetchWithError:error];
  1503. } else {
  1504. @synchronized(self) {
  1505. _request = authorizedRequest;
  1506. }
  1507. [self beginFetchMayDelay:NO mayAuthorize:NO mayDecorate:YES];
  1508. }
  1509. }
  1510. - (void)applyDecoratorsAtRequestWillStart:(NSArray<id<GTMFetcherDecoratorProtocol>> *)decorators
  1511. startingAtIndex:(NSUInteger)index {
  1512. GTMSessionCheckNotSynchronized(self);
  1513. if (index >= decorators.count) {
  1514. GTMSESSION_LOG_DEBUG(@"GTMSessionFetcher decorate requestWillStart %zu decorators complete",
  1515. decorators.count);
  1516. [self beginFetchMayDelay:NO mayAuthorize:NO mayDecorate:NO];
  1517. return;
  1518. }
  1519. __weak __typeof__(self) weakSelf = self;
  1520. id<GTMFetcherDecoratorProtocol> decorator = decorators[index];
  1521. GTMSESSION_LOG_DEBUG(@"GTMSessionFetcher decorate requestWillStart %zu decorators, index %zu, "
  1522. @"retry count %zu, decorator %@",
  1523. decorators.count, index, self.retryCount, decorator);
  1524. [decorator fetcherWillStart:self
  1525. completionHandler:^(NSURLRequest *_Nullable newRequest, NSError *_Nullable error) {
  1526. GTMSESSION_LOG_DEBUG(@"GTMSessionFetcher decorator requestWillStart index %zu "
  1527. @"complete, newRequest %@, error %@",
  1528. index, newRequest, error);
  1529. __strong __typeof__(self) strongSelf = weakSelf;
  1530. if (!strongSelf) {
  1531. GTMSESSION_LOG_DEBUG(@"GTMSessionFetcher destroyed before requestWillStart "
  1532. @"decorators completed, ignoring.");
  1533. return;
  1534. }
  1535. if (error) {
  1536. [self failToBeginFetchWithError:(NSError *_Nonnull)error];
  1537. return;
  1538. }
  1539. if (newRequest) {
  1540. // Copying `NSURLRequest` should be cheap, but in case profiling shows this
  1541. // operation is prohibitively expensive, this API might need to be changed to allow
  1542. // clients to manipulate `self.request` directly.
  1543. [strongSelf updateMutableRequest:[newRequest mutableCopy]];
  1544. }
  1545. [strongSelf applyDecoratorsAtRequestWillStart:decorators startingAtIndex:index + 1];
  1546. }];
  1547. }
  1548. - (void)applyDecoratorsAtRequestDidFinish:(NSArray<id<GTMFetcherDecoratorProtocol>> *)decorators
  1549. withData:(nullable NSData *)data
  1550. error:(nullable NSError *)error
  1551. startingAtIndex:(NSUInteger)index
  1552. shouldReleaseCallbacks:(BOOL)shouldReleaseCallbacks {
  1553. GTMSessionCheckNotSynchronized(self);
  1554. if (index >= decorators.count) {
  1555. GTMSESSION_LOG_DEBUG(@"GTMSessionFetcher decorate requestDidFinish %zu decorators complete",
  1556. decorators.count);
  1557. [self invokeFetchCallbacksOnCallbackQueueWithData:data
  1558. error:error
  1559. mayDecorate:NO
  1560. shouldReleaseCallbacks:shouldReleaseCallbacks];
  1561. return;
  1562. }
  1563. __weak __typeof__(self) weakSelf = self;
  1564. id<GTMFetcherDecoratorProtocol> decorator = decorators[index];
  1565. GTMSESSION_LOG_DEBUG(@"GTMSessionFetcher decorate requestDidFinish %zu decorators, index %zu, "
  1566. @"retry count %zu, decorator %@",
  1567. decorators.count, index, self.retryCount, decorator);
  1568. [decorator fetcherDidFinish:self
  1569. withData:data
  1570. error:error
  1571. completionHandler:^{
  1572. GTMSESSION_LOG_DEBUG(
  1573. @"GTMSessionFetcher decorator requestDidFinish index %zu complete", index);
  1574. __strong __typeof__(self) strongSelf = weakSelf;
  1575. if (!strongSelf) {
  1576. GTMSESSION_LOG_DEBUG(@"GTMSessionFetcher destroyed before requestDidFinish "
  1577. @"decorators completed, ignoring.");
  1578. return;
  1579. }
  1580. [strongSelf applyDecoratorsAtRequestDidFinish:decorators
  1581. withData:data
  1582. error:error
  1583. startingAtIndex:index + 1
  1584. shouldReleaseCallbacks:shouldReleaseCallbacks];
  1585. }];
  1586. }
  1587. - (BOOL)canFetchWithBackgroundSession {
  1588. // Subclasses may override.
  1589. return YES;
  1590. }
  1591. // Returns YES if the fetcher has been started and has not yet stopped.
  1592. //
  1593. // Fetching includes waiting for authorization or for retry, waiting to be allowed by the
  1594. // service object to start the request, and actually fetching the request.
  1595. - (BOOL)isFetching {
  1596. @synchronized(self) {
  1597. GTMSessionMonitorSynchronized(self);
  1598. return [self isFetchingUnsynchronized];
  1599. }
  1600. }
  1601. - (BOOL)isFetchingUnsynchronized {
  1602. GTMSessionCheckSynchronized(self);
  1603. BOOL hasBegun = (_initialBeginFetchDate != nil);
  1604. return hasBegun && !_hasStoppedFetching;
  1605. }
  1606. - (nullable NSURLResponse *)response {
  1607. @synchronized(self) {
  1608. GTMSessionMonitorSynchronized(self);
  1609. NSURLResponse *response = [self responseUnsynchronized];
  1610. return response;
  1611. } // @synchronized(self)
  1612. }
  1613. - (nullable NSURLResponse *)responseUnsynchronized {
  1614. GTMSessionCheckSynchronized(self);
  1615. NSURLResponse *response = _sessionTask.response;
  1616. if (!response) response = _response;
  1617. return response;
  1618. }
  1619. - (NSInteger)statusCode {
  1620. @synchronized(self) {
  1621. GTMSessionMonitorSynchronized(self);
  1622. NSInteger statusCode = [self statusCodeUnsynchronized];
  1623. return statusCode;
  1624. } // @synchronized(self)
  1625. }
  1626. - (NSInteger)statusCodeUnsynchronized {
  1627. GTMSessionCheckSynchronized(self);
  1628. NSURLResponse *response = [self responseUnsynchronized];
  1629. NSInteger statusCode;
  1630. if ([response respondsToSelector:@selector(statusCode)]) {
  1631. statusCode = [(NSHTTPURLResponse *)response statusCode];
  1632. } else {
  1633. // Default to zero, in hopes of hinting "Unknown" (we can't be
  1634. // sure that things are OK enough to use 200).
  1635. statusCode = 0;
  1636. }
  1637. return statusCode;
  1638. }
  1639. - (nullable NSDictionary *)responseHeaders {
  1640. GTMSessionCheckNotSynchronized(self);
  1641. NSURLResponse *response = self.response;
  1642. if ([response respondsToSelector:@selector(allHeaderFields)]) {
  1643. NSDictionary *headers = [(NSHTTPURLResponse *)response allHeaderFields];
  1644. return headers;
  1645. }
  1646. return nil;
  1647. }
  1648. - (nullable NSDictionary *)responseHeadersUnsynchronized {
  1649. GTMSessionCheckSynchronized(self);
  1650. NSURLResponse *response = [self responseUnsynchronized];
  1651. if ([response respondsToSelector:@selector(allHeaderFields)]) {
  1652. NSDictionary *headers = [(NSHTTPURLResponse *)response allHeaderFields];
  1653. return headers;
  1654. }
  1655. return nil;
  1656. }
  1657. - (void)releaseCallbacks {
  1658. // Avoid releasing blocks in the sync section since objects dealloc'd by
  1659. // the blocks being released may call back into the fetcher or fetcher
  1660. // service.
  1661. dispatch_queue_t NS_VALID_UNTIL_END_OF_SCOPE holdCallbackQueue;
  1662. GTMSessionFetcherCompletionHandler NS_VALID_UNTIL_END_OF_SCOPE holdCompletionHandler;
  1663. @synchronized(self) {
  1664. GTMSessionMonitorSynchronized(self);
  1665. holdCallbackQueue = _callbackQueue;
  1666. holdCompletionHandler = _completionHandler;
  1667. _callbackQueue = nil;
  1668. _completionHandler = nil; // Setter overridden in upload. Setter assumed to be used externally.
  1669. }
  1670. // Set local callback pointers to nil here rather than let them release at the end of the scope
  1671. // to make any problems due to the blocks being released be a bit more obvious in a stack trace.
  1672. holdCallbackQueue = nil;
  1673. holdCompletionHandler = nil;
  1674. self.configurationBlock = nil;
  1675. self.didReceiveResponseBlock = nil;
  1676. self.challengeBlock = nil;
  1677. self.willRedirectBlock = nil;
  1678. self.sendProgressBlock = nil;
  1679. self.receivedProgressBlock = nil;
  1680. self.downloadProgressBlock = nil;
  1681. self.accumulateDataBlock = nil;
  1682. self.willCacheURLResponseBlock = nil;
  1683. self.retryBlock = nil;
  1684. self.testBlock = nil;
  1685. self.resumeDataBlock = nil;
  1686. if (@available(iOS 10.0, *)) {
  1687. self.metricsCollectionBlock = nil;
  1688. }
  1689. }
  1690. - (void)forgetSessionIdentifierForFetcher {
  1691. GTMSessionCheckSynchronized(self);
  1692. [self forgetSessionIdentifierForFetcherWithoutSyncCheck];
  1693. }
  1694. - (void)forgetSessionIdentifierForFetcherWithoutSyncCheck {
  1695. // This should be called inside a @synchronized block (except during dealloc.)
  1696. if (_sessionIdentifier) {
  1697. NSMapTable *sessionIdentifierToFetcherMap = [[self class] sessionIdentifierToFetcherMap];
  1698. [sessionIdentifierToFetcherMap removeObjectForKey:_sessionIdentifier];
  1699. _sessionIdentifier = nil;
  1700. _didCreateSessionIdentifier = NO;
  1701. }
  1702. }
  1703. // External stop method
  1704. - (void)stopFetching {
  1705. @synchronized(self) {
  1706. GTMSessionMonitorSynchronized(self);
  1707. // Prevent enqueued callbacks from executing.
  1708. _userStoppedFetching = YES;
  1709. } // @synchronized(self)
  1710. [self stopFetchReleasingCallbacks:YES];
  1711. }
  1712. // Cancel the fetch of the URL that's currently in progress.
  1713. //
  1714. // If shouldReleaseCallbacks is NO then the fetch will be retried so the callbacks
  1715. // need to still be retained.
  1716. - (void)stopFetchReleasingCallbacks:(BOOL)shouldReleaseCallbacks {
  1717. [self removePersistedBackgroundSessionFromDefaults];
  1718. id<GTMSessionFetcherServiceProtocol> service;
  1719. NSMutableURLRequest *request;
  1720. // If the task or the retry timer is all that's retaining the fetcher,
  1721. // we want to be sure this instance survives stopping at least long enough for
  1722. // the stack to unwind.
  1723. __autoreleasing GTMSessionFetcher *holdSelf = self;
  1724. BOOL hasCanceledTask = NO;
  1725. [holdSelf destroyRetryTimer];
  1726. BOOL sendStopNotification = YES;
  1727. @synchronized(self) {
  1728. GTMSessionMonitorSynchronized(self);
  1729. _hasStoppedFetching = YES;
  1730. service = _service;
  1731. request = _request;
  1732. if (_sessionTask) {
  1733. // In case cancelling the task or session calls this recursively, we want
  1734. // to ensure that we'll only release the task and delegate once,
  1735. // so first set _sessionTask to nil
  1736. //
  1737. // This may be called in a callback from the task, so use autorelease to avoid
  1738. // releasing the task in its own callback.
  1739. __autoreleasing NSURLSessionTask *oldTask = _sessionTask;
  1740. if (!_isUsingTestBlock) {
  1741. _response = _sessionTask.response;
  1742. }
  1743. _sessionTask = nil;
  1744. if ([oldTask state] != NSURLSessionTaskStateCompleted) {
  1745. // For download tasks, when the fetch is stopped, we may provide resume data that can
  1746. // be used to create a new session.
  1747. BOOL mayResume = (_resumeDataBlock &&
  1748. [oldTask respondsToSelector:@selector(cancelByProducingResumeData:)]);
  1749. if (!mayResume) {
  1750. [oldTask cancel];
  1751. // A side effect of stopping the task is that URLSession:task:didCompleteWithError:
  1752. // will be invoked asynchronously on the delegate queue.
  1753. } else {
  1754. void (^resumeBlock)(NSData *) = _resumeDataBlock;
  1755. _resumeDataBlock = nil;
  1756. // Save callbackQueue since releaseCallbacks clears it.
  1757. dispatch_queue_t callbackQueue = _callbackQueue;
  1758. dispatch_group_enter(_callbackGroup);
  1759. [(NSURLSessionDownloadTask *)oldTask cancelByProducingResumeData:^(NSData *resumeData) {
  1760. [self invokeOnCallbackQueue:callbackQueue
  1761. afterUserStopped:YES
  1762. block:^{
  1763. resumeBlock(resumeData);
  1764. dispatch_group_leave(self->_callbackGroup);
  1765. }];
  1766. }];
  1767. }
  1768. hasCanceledTask = YES;
  1769. }
  1770. }
  1771. // If the task was canceled, wait until the URLSession:task:didCompleteWithError: to call
  1772. // finishTasksAndInvalidate, since calling it immediately tends to crash, see radar 18471901.
  1773. if (_session) {
  1774. BOOL shouldInvalidate = _shouldInvalidateSession;
  1775. #if TARGET_OS_IPHONE
  1776. // Don't invalidate if we've got a systemCompletionHandler, since
  1777. // URLSessionDidFinishEventsForBackgroundURLSession: won't be called if invalidated.
  1778. shouldInvalidate = shouldInvalidate && !self.systemCompletionHandler;
  1779. #endif
  1780. if (shouldInvalidate) {
  1781. __autoreleasing NSURLSession *oldSession = _session;
  1782. _session = nil;
  1783. if (!hasCanceledTask) {
  1784. [oldSession finishTasksAndInvalidate];
  1785. } else {
  1786. sendStopNotification = NO;
  1787. _sessionNeedingInvalidation = oldSession;
  1788. }
  1789. }
  1790. }
  1791. } // @synchronized(self)
  1792. // If the NSURLSession needs to be invalidated, but needs to wait until the delegate method
  1793. // URLSession:task:didCompleteWithError: is called, delay sending the fetch stopped notification
  1794. // until then; otherwise send it now.
  1795. if (sendStopNotification) {
  1796. [self sendStopNotificationIfNeeded];
  1797. }
  1798. [_authorizer stopAuthorizationForRequest:request];
  1799. if (shouldReleaseCallbacks) {
  1800. [self releaseCallbacks];
  1801. self.authorizer = nil;
  1802. }
  1803. [service fetcherDidStop:self];
  1804. #if GTM_BACKGROUND_TASK_FETCHING
  1805. [self endBackgroundTask];
  1806. #endif
  1807. }
  1808. - (void)setStopNotificationNeeded:(BOOL)flag {
  1809. @synchronized(self) {
  1810. GTMSessionMonitorSynchronized(self);
  1811. _isStopNotificationNeeded = flag;
  1812. } // @synchronized(self)
  1813. }
  1814. - (void)sendStopNotificationIfNeeded {
  1815. BOOL sendNow = NO;
  1816. @synchronized(self) {
  1817. GTMSessionMonitorSynchronized(self);
  1818. if (_isStopNotificationNeeded) {
  1819. _isStopNotificationNeeded = NO;
  1820. sendNow = YES;
  1821. }
  1822. } // @synchronized(self)
  1823. if (sendNow) {
  1824. [self postNotificationOnMainThreadWithName:kGTMSessionFetcherStoppedNotification
  1825. userInfo:nil
  1826. requireAsync:NO];
  1827. }
  1828. }
  1829. - (void)retryFetch {
  1830. [self stopFetchReleasingCallbacks:NO];
  1831. // A retry will need a configuration with a fresh session identifier.
  1832. @synchronized(self) {
  1833. GTMSessionMonitorSynchronized(self);
  1834. if (_sessionIdentifier && _didCreateSessionIdentifier) {
  1835. [self forgetSessionIdentifierForFetcher];
  1836. _configuration = nil;
  1837. }
  1838. if (_canShareSession) {
  1839. // Force a grab of the current session from the fetcher service in case
  1840. // the service's old one has become invalid.
  1841. _session = nil;
  1842. }
  1843. } // @synchronized(self)
  1844. [self beginFetchForRetry];
  1845. }
  1846. - (BOOL)waitForCompletionWithTimeout:(NSTimeInterval)timeoutInSeconds {
  1847. // Uncovered in upload fetcher testing, because the chunk fetcher is being waited on, and gets
  1848. // released by the upload code. The uploader just holds onto it with an ivar, and that gets
  1849. // nilled in the chunk fetcher callback.
  1850. // Used once in while loop just to avoid unused variable compiler warning.
  1851. __autoreleasing GTMSessionFetcher *holdSelf = self;
  1852. NSDate *giveUpDate = [NSDate dateWithTimeIntervalSinceNow:timeoutInSeconds];
  1853. BOOL shouldSpinRunLoop =
  1854. ([NSThread isMainThread] &&
  1855. (!self.callbackQueue || self.callbackQueue == dispatch_get_main_queue()));
  1856. BOOL expired = NO;
  1857. // Loop until the callbacks have been called and released, and until
  1858. // the connection is no longer pending, until there are no callback dispatches
  1859. // in flight, or until the timeout has expired.
  1860. int64_t delta = (int64_t)(100 * NSEC_PER_MSEC); // 100 ms
  1861. while (1) {
  1862. BOOL isTaskInProgress =
  1863. (holdSelf->_sessionTask && [_sessionTask state] != NSURLSessionTaskStateCompleted);
  1864. BOOL needsToCallCompletion = (_completionHandler != nil);
  1865. BOOL isCallbackInProgress =
  1866. (_callbackGroup &&
  1867. dispatch_group_wait(_callbackGroup, dispatch_time(DISPATCH_TIME_NOW, delta)));
  1868. if (!isTaskInProgress && !needsToCallCompletion && !isCallbackInProgress) break;
  1869. expired = ([giveUpDate timeIntervalSinceNow] < 0);
  1870. if (expired) {
  1871. GTMSESSION_LOG_DEBUG(@"GTMSessionFetcher waitForCompletionWithTimeout:%0.1f expired -- "
  1872. @"%@%@%@",
  1873. timeoutInSeconds, isTaskInProgress ? @"taskInProgress " : @"",
  1874. needsToCallCompletion ? @"needsToCallCompletion " : @"",
  1875. isCallbackInProgress ? @"isCallbackInProgress" : @"");
  1876. break;
  1877. }
  1878. // Run the current run loop 1/1000 of a second to give the networking
  1879. // code a chance to work
  1880. const NSTimeInterval kSpinInterval = 0.001;
  1881. if (shouldSpinRunLoop) {
  1882. NSDate *stopDate = [NSDate dateWithTimeIntervalSinceNow:kSpinInterval];
  1883. [[NSRunLoop currentRunLoop] runUntilDate:stopDate];
  1884. } else {
  1885. [NSThread sleepForTimeInterval:kSpinInterval];
  1886. }
  1887. }
  1888. return !expired;
  1889. }
  1890. + (void)setGlobalTestBlock:(nullable GTMSessionFetcherTestBlock)block {
  1891. #if GTM_DISABLE_FETCHER_TEST_BLOCK
  1892. GTMSESSION_ASSERT_DEBUG(block == nil, @"test blocks disabled");
  1893. #endif
  1894. gGlobalTestBlock = [block copy];
  1895. }
  1896. #if GTM_BACKGROUND_TASK_FETCHING
  1897. static _Nullable id<GTMUIApplicationProtocol> gSubstituteUIApp;
  1898. + (void)setSubstituteUIApplication:(nullable id<GTMUIApplicationProtocol>)app {
  1899. gSubstituteUIApp = app;
  1900. }
  1901. + (nullable id<GTMUIApplicationProtocol>)substituteUIApplication {
  1902. return gSubstituteUIApp;
  1903. }
  1904. + (nullable id<GTMUIApplicationProtocol>)fetcherUIApplication {
  1905. id<GTMUIApplicationProtocol> app = gSubstituteUIApp;
  1906. if (app) return app;
  1907. // iOS App extensions should not call [UIApplication sharedApplication], even
  1908. // if UIApplication responds to it.
  1909. static Class applicationClass = nil;
  1910. static dispatch_once_t onceToken;
  1911. dispatch_once(&onceToken, ^{
  1912. BOOL isAppExtension = [[[NSBundle mainBundle] bundlePath] hasSuffix:@".appex"];
  1913. if (!isAppExtension) {
  1914. Class cls = NSClassFromString(@"UIApplication");
  1915. if (cls && [cls respondsToSelector:NSSelectorFromString(@"sharedApplication")]) {
  1916. applicationClass = cls;
  1917. }
  1918. }
  1919. });
  1920. if (applicationClass) {
  1921. app = (id<GTMUIApplicationProtocol>)[applicationClass sharedApplication];
  1922. }
  1923. return app;
  1924. }
  1925. #endif // GTM_BACKGROUND_TASK_FETCHING
  1926. #pragma mark NSURLSession Delegate Methods
  1927. // NSURLSession documentation indicates that redirectRequest can be passed to the handler
  1928. // but empirically redirectRequest lacks the HTTP body, so passing it will break POSTs.
  1929. // Instead, we construct a new request, a copy of the original, with overrides from the
  1930. // redirect.
  1931. - (void)URLSession:(NSURLSession *)session
  1932. task:(NSURLSessionTask *)task
  1933. willPerformHTTPRedirection:(NSHTTPURLResponse *)redirectResponse
  1934. newRequest:(NSURLRequest *)redirectRequest
  1935. completionHandler:(void (^)(NSURLRequest *_Nullable))handler {
  1936. [self setSessionTask:task];
  1937. GTM_LOG_SESSION_DELEGATE(
  1938. @"%@ %p URLSession:%@ task:%@ willPerformHTTPRedirection:%@ newRequest:%@", [self class],
  1939. self, session, task, redirectResponse, redirectRequest);
  1940. if ([self userStoppedFetching]) {
  1941. handler(nil);
  1942. return;
  1943. }
  1944. if (redirectRequest && redirectResponse) {
  1945. // Copy the original request, including the body.
  1946. NSURLRequest *originalRequest = self.request;
  1947. NSMutableURLRequest *newRequest = [originalRequest mutableCopy];
  1948. // The new requests's URL overrides the original's URL.
  1949. [newRequest setURL:[GTMSessionFetcher redirectURLWithOriginalRequestURL:originalRequest.URL
  1950. redirectRequestURL:redirectRequest.URL]];
  1951. // Any headers in the redirect override headers in the original.
  1952. NSDictionary *redirectHeaders = redirectRequest.allHTTPHeaderFields;
  1953. for (NSString *key in redirectHeaders) {
  1954. NSString *value = [redirectHeaders objectForKey:key];
  1955. [newRequest setValue:value forHTTPHeaderField:key];
  1956. }
  1957. redirectRequest = newRequest;
  1958. // Log the response we just received
  1959. [self setResponse:redirectResponse];
  1960. [self logNowWithError:nil];
  1961. GTMSessionFetcherWillRedirectBlock willRedirectBlock = self.willRedirectBlock;
  1962. if (willRedirectBlock) {
  1963. @synchronized(self) {
  1964. GTMSessionMonitorSynchronized(self);
  1965. __auto_type block = ^{
  1966. willRedirectBlock(redirectResponse, redirectRequest, ^(NSURLRequest *clientRequest) {
  1967. // Update the request for future logging.
  1968. [self updateMutableRequest:[clientRequest mutableCopy]];
  1969. handler(clientRequest);
  1970. });
  1971. };
  1972. [self invokeOnCallbackQueueAfterUserStopped:YES block:block];
  1973. } // @synchronized(self)
  1974. return;
  1975. }
  1976. // Continues here if the client did not provide a redirect block.
  1977. // Update the request for future logging.
  1978. [self updateMutableRequest:[redirectRequest mutableCopy]];
  1979. }
  1980. handler(redirectRequest);
  1981. }
  1982. - (void)URLSession:(NSURLSession *)session
  1983. dataTask:(NSURLSessionDataTask *)dataTask
  1984. didReceiveResponse:(NSURLResponse *)response
  1985. completionHandler:(void (^)(NSURLSessionResponseDisposition disposition))handler {
  1986. [self setSessionTask:dataTask];
  1987. GTM_LOG_SESSION_DELEGATE(@"%@ %p URLSession:%@ dataTask:%@ didReceiveResponse:%@", [self class],
  1988. self, session, dataTask, response);
  1989. __auto_type accumulateAndFinish = ^(NSURLSessionResponseDisposition dispositionValue) {
  1990. // This method is called when the server has determined that it
  1991. // has enough information to create the NSURLResponse
  1992. // it can be called multiple times, for example in the case of a
  1993. // redirect, so each time we reset the data.
  1994. @synchronized(self) {
  1995. GTMSessionMonitorSynchronized(self);
  1996. BOOL hadPreviousData = self->_downloadedLength > 0;
  1997. [self->_downloadedData setLength:0];
  1998. self->_downloadedLength = 0;
  1999. if (hadPreviousData && (dispositionValue != NSURLSessionResponseCancel)) {
  2000. // Tell the accumulate block to discard prior data.
  2001. GTMSessionFetcherAccumulateDataBlock accumulateBlock = self->_accumulateDataBlock;
  2002. if (accumulateBlock) {
  2003. [self invokeOnCallbackQueueUnlessStopped:^{
  2004. accumulateBlock(nil);
  2005. }];
  2006. }
  2007. }
  2008. } // @synchronized(self)
  2009. handler(dispositionValue);
  2010. };
  2011. GTMSessionFetcherDidReceiveResponseBlock receivedResponseBlock;
  2012. @synchronized(self) {
  2013. GTMSessionMonitorSynchronized(self);
  2014. receivedResponseBlock = _didReceiveResponseBlock;
  2015. if (receivedResponseBlock) {
  2016. // We will ultimately need to call back to NSURLSession's handler with the disposition value
  2017. // for this delegate method even if the user has stopped the fetcher.
  2018. __auto_type block = ^{
  2019. receivedResponseBlock(response, ^(NSURLSessionResponseDisposition desiredDisposition) {
  2020. accumulateAndFinish(desiredDisposition);
  2021. });
  2022. };
  2023. [self invokeOnCallbackQueueAfterUserStopped:YES block:block];
  2024. }
  2025. } // @synchronized(self)
  2026. if (receivedResponseBlock == nil) {
  2027. accumulateAndFinish(NSURLSessionResponseAllow);
  2028. }
  2029. }
  2030. - (void)URLSession:(NSURLSession *)session
  2031. dataTask:(NSURLSessionDataTask *)dataTask
  2032. didBecomeDownloadTask:(NSURLSessionDownloadTask *)downloadTask {
  2033. GTM_LOG_SESSION_DELEGATE(@"%@ %p URLSession:%@ dataTask:%@ didBecomeDownloadTask:%@",
  2034. [self class], self, session, dataTask, downloadTask);
  2035. [self setSessionTask:downloadTask];
  2036. }
  2037. - (void)URLSession:(NSURLSession *)session
  2038. task:(NSURLSessionTask *)task
  2039. didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge
  2040. completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition,
  2041. NSURLCredential *_Nullable credential))handler {
  2042. [self setSessionTask:task];
  2043. GTM_LOG_SESSION_DELEGATE(@"%@ %p URLSession:%@ task:%@ didReceiveChallenge:%@", [self class],
  2044. self, session, task, challenge);
  2045. GTMSessionFetcherChallengeBlock challengeBlock = self.challengeBlock;
  2046. if (challengeBlock) {
  2047. // The fetcher user has provided custom challenge handling.
  2048. //
  2049. // We will ultimately need to call back to NSURLSession's handler with the disposition value
  2050. // for this delegate method even if the user has stopped the fetcher.
  2051. @synchronized(self) {
  2052. GTMSessionMonitorSynchronized(self);
  2053. [self invokeOnCallbackQueueAfterUserStopped:YES
  2054. block:^{
  2055. challengeBlock(self, challenge, handler);
  2056. }];
  2057. }
  2058. } else {
  2059. // No challenge block was provided by the client.
  2060. [self respondToChallenge:challenge completionHandler:handler];
  2061. }
  2062. }
  2063. - (void)respondToChallenge:(NSURLAuthenticationChallenge *)challenge
  2064. completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition,
  2065. NSURLCredential *_Nullable credential))handler {
  2066. @synchronized(self) {
  2067. GTMSessionMonitorSynchronized(self);
  2068. NSInteger previousFailureCount = [challenge previousFailureCount];
  2069. if (previousFailureCount <= 2) {
  2070. NSURLProtectionSpace *protectionSpace = [challenge protectionSpace];
  2071. NSString *authenticationMethod = [protectionSpace authenticationMethod];
  2072. if ([authenticationMethod isEqual:NSURLAuthenticationMethodServerTrust]) {
  2073. // SSL.
  2074. //
  2075. // Background sessions seem to require an explicit check of the server trust object
  2076. // rather than default handling.
  2077. SecTrustRef serverTrust = challenge.protectionSpace.serverTrust;
  2078. if (serverTrust == NULL) {
  2079. // No server trust information is available.
  2080. handler(NSURLSessionAuthChallengePerformDefaultHandling, nil);
  2081. } else {
  2082. // Server trust information is available.
  2083. __auto_type callback = ^(SecTrustRef trustRef, BOOL allow) {
  2084. if (allow) {
  2085. NSURLCredential *trustCredential = [NSURLCredential credentialForTrust:trustRef];
  2086. handler(NSURLSessionAuthChallengeUseCredential, trustCredential);
  2087. } else {
  2088. GTMSESSION_LOG_DEBUG(@"Cancelling authentication challenge for %@",
  2089. self->_request.URL);
  2090. handler(NSURLSessionAuthChallengeCancelAuthenticationChallenge, nil);
  2091. }
  2092. };
  2093. if (_allowInvalidServerCertificates) {
  2094. callback(serverTrust, YES);
  2095. } else {
  2096. [[self class] evaluateServerTrust:serverTrust
  2097. forRequest:_request
  2098. completionHandler:callback];
  2099. }
  2100. }
  2101. return;
  2102. }
  2103. NSURLCredential *credential = _credential;
  2104. if ([[challenge protectionSpace] isProxy] && _proxyCredential != nil) {
  2105. credential = _proxyCredential;
  2106. }
  2107. if (credential) {
  2108. handler(NSURLSessionAuthChallengeUseCredential, credential);
  2109. } else {
  2110. // The credential is still nil; tell the OS to use the default handling. This is needed
  2111. // for things that can come out of the keychain (proxies, client certificates, etc.).
  2112. //
  2113. // Note: Looking up a credential with NSURLCredentialStorage's
  2114. // defaultCredentialForProtectionSpace: is *not* the same invoking the handler with
  2115. // NSURLSessionAuthChallengePerformDefaultHandling. In the case of
  2116. // NSURLAuthenticationMethodClientCertificate, you can get nil back from
  2117. // NSURLCredentialStorage, while using this code path instead works.
  2118. handler(NSURLSessionAuthChallengePerformDefaultHandling, nil);
  2119. }
  2120. } else {
  2121. // We've failed auth 3 times. The completion handler will be called with code
  2122. // NSURLErrorCancelled.
  2123. handler(NSURLSessionAuthChallengeCancelAuthenticationChallenge, nil);
  2124. }
  2125. } // @synchronized(self)
  2126. }
  2127. // Return redirect URL based on the original request URL and redirect request URL.
  2128. //
  2129. // Method disallows any scheme changes between the original request URL and redirect request URL
  2130. // aside from "http" to "https". If a change in scheme is detected the redirect URL inherits the
  2131. // scheme from the original request URL.
  2132. + (nullable NSURL *)redirectURLWithOriginalRequestURL:(nullable NSURL *)originalRequestURL
  2133. redirectRequestURL:(nullable NSURL *)redirectRequestURL {
  2134. // In the case of an NSURLSession redirect, neither URL should ever be nil; as a sanity check
  2135. // if either is nil return the other URL.
  2136. if (!redirectRequestURL) return originalRequestURL;
  2137. if (!originalRequestURL) return redirectRequestURL;
  2138. NSString *originalScheme = originalRequestURL.scheme;
  2139. NSString *redirectScheme = redirectRequestURL.scheme;
  2140. BOOL insecureToSecureRedirect =
  2141. (originalScheme != nil && [originalScheme caseInsensitiveCompare:@"http"] == NSOrderedSame &&
  2142. redirectScheme != nil && [redirectScheme caseInsensitiveCompare:@"https"] == NSOrderedSame);
  2143. // This can't really be nil for the inputs, but to keep the analyzer happy
  2144. // for the -caseInsensitiveCompare: call below, give it a value if it were.
  2145. if (!originalScheme) originalScheme = @"https";
  2146. // Check for changes to the scheme and disallow any changes except for http to https.
  2147. if (!insecureToSecureRedirect &&
  2148. (redirectScheme.length != originalScheme.length ||
  2149. [redirectScheme caseInsensitiveCompare:originalScheme] != NSOrderedSame)) {
  2150. NSURLComponents *components =
  2151. [NSURLComponents componentsWithURL:(NSURL *_Nonnull)redirectRequestURL
  2152. resolvingAgainstBaseURL:NO];
  2153. components.scheme = originalScheme;
  2154. return components.URL;
  2155. }
  2156. return redirectRequestURL;
  2157. }
  2158. // Validate the certificate chain.
  2159. //
  2160. // This may become a public method if it appears to be useful to users.
  2161. + (void)evaluateServerTrust:(SecTrustRef)serverTrust
  2162. forRequest:(NSURLRequest *)request
  2163. completionHandler:(void (^)(SecTrustRef trustRef, BOOL allow))handler {
  2164. // Retain the trust object to avoid a SecTrustEvaluate() crash on iOS 7.
  2165. CFRetain(serverTrust);
  2166. // Evaluate the certificate chain.
  2167. //
  2168. // The delegate queue may be the main thread. Trust evaluation could cause some
  2169. // blocking network activity, so we must evaluate async, as documented at
  2170. // https://developer.apple.com/library/ios/technotes/tn2232/
  2171. //
  2172. // We must also avoid multiple uses of the trust object, per docs:
  2173. // "It is not safe to call this function concurrently with any other function that uses
  2174. // the same trust management object, or to re-enter this function for the same trust
  2175. // management object."
  2176. //
  2177. // SecTrustEvaluateAsync both does sync execution of Evaluate and calls back on the
  2178. // queue passed to it, according to at sources in
  2179. // http://www.opensource.apple.com/source/libsecurity_keychain/libsecurity_keychain-55050.9/lib/SecTrust.cpp
  2180. // It would require a global serial queue to ensure the evaluate happens only on a
  2181. // single thread at a time, so we'll stick with using SecTrustEvaluate on a background
  2182. // thread.
  2183. dispatch_queue_t evaluateBackgroundQueue =
  2184. dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
  2185. dispatch_async(evaluateBackgroundQueue, ^{
  2186. // It looks like the implementation of SecTrustEvaluate() on Mac grabs a global lock,
  2187. // so it may be redundant for us to also lock, but it's easy to synchronize here
  2188. // anyway.
  2189. BOOL shouldAllow;
  2190. #if GTM_SDK_REQUIRES_SECTRUSTEVALUATEWITHERROR
  2191. CFErrorRef errorRef = NULL;
  2192. @synchronized([GTMSessionFetcher class]) {
  2193. GTMSessionMonitorSynchronized([GTMSessionFetcher class]);
  2194. // SecTrustEvaluateWithError handles both the "proceed" and "unspecified" cases,
  2195. // so it is not necessary to check the trust result the evaluation returns true.
  2196. shouldAllow = SecTrustEvaluateWithError(serverTrust, &errorRef);
  2197. }
  2198. if (errorRef) {
  2199. GTMSESSION_LOG_DEBUG(@"Error %d evaluating trust for %@", (int)CFErrorGetCode(errorRef),
  2200. request);
  2201. CFRelease(errorRef);
  2202. }
  2203. #else
  2204. SecTrustResultType trustEval = kSecTrustResultInvalid;
  2205. OSStatus trustError;
  2206. @synchronized([GTMSessionFetcher class]) {
  2207. GTMSessionMonitorSynchronized([GTMSessionFetcher class]);
  2208. trustError = SecTrustEvaluate(serverTrust, &trustEval);
  2209. }
  2210. if (trustError != errSecSuccess) {
  2211. GTMSESSION_LOG_DEBUG(@"Error %d evaluating trust for %@",
  2212. (int)trustError, request);
  2213. shouldAllow = NO;
  2214. } else {
  2215. // Having a trust level "unspecified" by the user is the usual result, described at
  2216. // https://developer.apple.com/library/mac/qa/qa1360
  2217. if (trustEval == kSecTrustResultUnspecified
  2218. || trustEval == kSecTrustResultProceed) {
  2219. shouldAllow = YES;
  2220. } else {
  2221. shouldAllow = NO;
  2222. GTMSESSION_LOG_DEBUG(@"Challenge SecTrustResultType %u for %@, properties: %@",
  2223. trustEval, request.URL.host,
  2224. CFBridgingRelease(SecTrustCopyProperties(serverTrust)));
  2225. }
  2226. }
  2227. #endif // GTM_SDK_REQUIRES_SECTRUSTEVALUATEWITHERROR
  2228. handler(serverTrust, shouldAllow);
  2229. CFRelease(serverTrust);
  2230. });
  2231. }
  2232. - (void)invokeOnCallbackQueueUnlessStopped:(void (^)(void))block {
  2233. [self invokeOnCallbackQueueAfterUserStopped:NO block:block];
  2234. }
  2235. - (void)invokeOnCallbackQueueAfterUserStopped:(BOOL)afterStopped block:(void (^)(void))block {
  2236. GTMSessionCheckSynchronized(self);
  2237. [self invokeOnCallbackUnsynchronizedQueueAfterUserStopped:afterStopped block:block];
  2238. }
  2239. - (void)invokeOnCallbackUnsynchronizedQueueAfterUserStopped:(BOOL)afterStopped
  2240. block:(void (^)(void))block {
  2241. // testBlock simulation code may not be synchronizing when this is invoked.
  2242. [self invokeOnCallbackQueue:_callbackQueue afterUserStopped:afterStopped block:block];
  2243. }
  2244. - (void)invokeOnCallbackQueue:(dispatch_queue_t)callbackQueue
  2245. afterUserStopped:(BOOL)afterStopped
  2246. block:(void (^)(void))block {
  2247. if (callbackQueue) {
  2248. dispatch_group_async(_callbackGroup, callbackQueue, ^{
  2249. if (!afterStopped) {
  2250. NSDate *serviceStoppedAllDate = [self->_service stoppedAllFetchersDate];
  2251. @synchronized(self) {
  2252. GTMSessionMonitorSynchronized(self);
  2253. // Avoid a race between stopFetching and the callback.
  2254. if (self->_userStoppedFetching) {
  2255. return;
  2256. }
  2257. // Also avoid calling back if the service has stopped all fetchers
  2258. // since this one was created. The fetcher may have stopped before
  2259. // stopAllFetchers was invoked, so _userStoppedFetching wasn't set,
  2260. // but the app still won't expect the callback to fire after
  2261. // the service's stopAllFetchers was invoked.
  2262. if (serviceStoppedAllDate &&
  2263. [self->_initialBeginFetchDate compare:serviceStoppedAllDate] != NSOrderedDescending) {
  2264. // stopAllFetchers was called after this fetcher began.
  2265. return;
  2266. }
  2267. } // @synchronized(self)
  2268. }
  2269. block();
  2270. });
  2271. }
  2272. }
  2273. - (void)invokeFetchCallbacksOnCallbackQueueWithData:(nullable NSData *)data
  2274. error:(nullable NSError *)error
  2275. mayDecorate:(BOOL)mayDecorate
  2276. shouldReleaseCallbacks:(BOOL)shouldReleaseCallbacks {
  2277. if (mayDecorate && [_service respondsToSelector:@selector(decorators)]) {
  2278. NSArray<id<GTMFetcherDecoratorProtocol>> *decorators = _service.decorators;
  2279. if (decorators.count) {
  2280. [self applyDecoratorsAtRequestDidFinish:decorators
  2281. withData:data
  2282. error:error
  2283. startingAtIndex:0
  2284. shouldReleaseCallbacks:shouldReleaseCallbacks];
  2285. return;
  2286. }
  2287. }
  2288. GTMSESSION_LOG_DEBUG(@"GTMSessionFetcher invoking fetch callbacks, data %@, error %@", data,
  2289. error);
  2290. // Callbacks will be released in the method stopFetchReleasingCallbacks:
  2291. GTMSessionFetcherCompletionHandler handler;
  2292. @synchronized(self) {
  2293. GTMSessionMonitorSynchronized(self);
  2294. handler = _completionHandler;
  2295. if (handler) {
  2296. [self invokeOnCallbackQueueUnlessStopped:^{
  2297. handler(data, error);
  2298. // Post a notification, primarily to allow code to collect responses for
  2299. // testing.
  2300. //
  2301. // The observing code is not likely on the fetcher's callback
  2302. // queue, so this posts explicitly to the main queue.
  2303. NSMutableDictionary *userInfo = [NSMutableDictionary dictionary];
  2304. if (data) {
  2305. userInfo[kGTMSessionFetcherCompletionDataKey] = data;
  2306. }
  2307. if (error) {
  2308. userInfo[kGTMSessionFetcherCompletionErrorKey] = error;
  2309. }
  2310. [self postNotificationOnMainThreadWithName:kGTMSessionFetcherCompletionInvokedNotification
  2311. userInfo:userInfo
  2312. requireAsync:NO];
  2313. }];
  2314. }
  2315. } // @synchronized(self)
  2316. if (shouldReleaseCallbacks) {
  2317. [self releaseCallbacks];
  2318. }
  2319. }
  2320. - (void)postNotificationOnMainThreadWithName:(NSString *)noteName
  2321. userInfo:(nullable NSDictionary *)userInfo
  2322. requireAsync:(BOOL)requireAsync {
  2323. dispatch_block_t postBlock = ^{
  2324. [[NSNotificationCenter defaultCenter] postNotificationName:noteName
  2325. object:self
  2326. userInfo:userInfo];
  2327. };
  2328. if ([NSThread isMainThread] && !requireAsync) {
  2329. // Post synchronously for compatibility with older code using the fetcher.
  2330. // Avoid calling out to other code from inside a sync block to avoid risk
  2331. // of a deadlock or of recursive sync.
  2332. GTMSessionCheckNotSynchronized(self);
  2333. postBlock();
  2334. } else {
  2335. dispatch_async(dispatch_get_main_queue(), postBlock);
  2336. }
  2337. }
  2338. - (void)URLSession:(NSURLSession *)session
  2339. task:(NSURLSessionTask *)uploadTask
  2340. needNewBodyStream:(void (^)(NSInputStream *_Nullable bodyStream))completionHandler {
  2341. [self setSessionTask:uploadTask];
  2342. GTM_LOG_SESSION_DELEGATE(@"%@ %p URLSession:%@ task:%@ needNewBodyStream:", [self class], self,
  2343. session, uploadTask);
  2344. @synchronized(self) {
  2345. GTMSessionMonitorSynchronized(self);
  2346. GTMSessionFetcherBodyStreamProvider provider = _bodyStreamProvider;
  2347. #if !STRIP_GTM_FETCH_LOGGING
  2348. if ([self respondsToSelector:@selector(loggedStreamProviderForStreamProvider:)]) {
  2349. provider = [self performSelector:@selector(loggedStreamProviderForStreamProvider:)
  2350. withObject:provider];
  2351. }
  2352. #endif
  2353. if (provider) {
  2354. [self invokeOnCallbackQueueUnlessStopped:^{
  2355. provider(completionHandler);
  2356. }];
  2357. } else {
  2358. GTMSESSION_ASSERT_DEBUG(NO, @"NSURLSession expects a stream provider");
  2359. completionHandler(nil);
  2360. }
  2361. } // @synchronized(self)
  2362. }
  2363. - (void)URLSession:(NSURLSession *)session
  2364. task:(NSURLSessionTask *)task
  2365. didSendBodyData:(int64_t)bytesSent
  2366. totalBytesSent:(int64_t)totalBytesSent
  2367. totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend {
  2368. [self setSessionTask:task];
  2369. GTM_LOG_SESSION_DELEGATE(@"%@ %p URLSession:%@ task:%@ didSendBodyData:%lld"
  2370. @" totalBytesSent:%lld totalBytesExpectedToSend:%lld",
  2371. [self class], self, session, task, bytesSent, totalBytesSent,
  2372. totalBytesExpectedToSend);
  2373. @synchronized(self) {
  2374. GTMSessionMonitorSynchronized(self);
  2375. if (!_sendProgressBlock) {
  2376. return;
  2377. }
  2378. // We won't hold on to send progress block; it's ok to not send it if the upload finishes.
  2379. [self invokeOnCallbackQueueUnlessStopped:^{
  2380. GTMSessionFetcherSendProgressBlock progressBlock;
  2381. @synchronized(self) {
  2382. GTMSessionMonitorSynchronized(self);
  2383. progressBlock = self->_sendProgressBlock;
  2384. }
  2385. if (progressBlock) {
  2386. progressBlock(bytesSent, totalBytesSent, totalBytesExpectedToSend);
  2387. }
  2388. }];
  2389. } // @synchronized(self)
  2390. }
  2391. - (void)URLSession:(NSURLSession *)session
  2392. dataTask:(NSURLSessionDataTask *)dataTask
  2393. didReceiveData:(NSData *)data {
  2394. [self setSessionTask:dataTask];
  2395. NSUInteger bufferLength = data.length;
  2396. GTM_LOG_SESSION_DELEGATE(@"%@ %p URLSession:%@ dataTask:%@ didReceiveData:%p (%llu bytes)",
  2397. [self class], self, session, dataTask, data,
  2398. (unsigned long long)bufferLength);
  2399. if (bufferLength == 0) {
  2400. // Observed on completing an out-of-process upload.
  2401. return;
  2402. }
  2403. @synchronized(self) {
  2404. GTMSessionMonitorSynchronized(self);
  2405. GTMSessionFetcherAccumulateDataBlock accumulateBlock = _accumulateDataBlock;
  2406. if (accumulateBlock) {
  2407. // Let the client accumulate the data.
  2408. _downloadedLength += bufferLength;
  2409. [self invokeOnCallbackQueueUnlessStopped:^{
  2410. accumulateBlock(data);
  2411. }];
  2412. } else if (!_userStoppedFetching) {
  2413. // Append to the mutable data buffer unless the fetch has been cancelled.
  2414. // Resumed upload tasks may not yet have a data buffer.
  2415. if (_downloadedData == nil) {
  2416. // Using NSClassFromString for iOS 6 compatibility.
  2417. GTMSESSION_ASSERT_DEBUG(
  2418. ![dataTask isKindOfClass:NSClassFromString(@"NSURLSessionDownloadTask")],
  2419. @"Resumed download tasks should not receive data bytes");
  2420. _downloadedData = [[NSMutableData alloc] init];
  2421. }
  2422. [_downloadedData appendData:data];
  2423. _downloadedLength = (int64_t)_downloadedData.length;
  2424. // We won't hold on to receivedProgressBlock here; it's ok to not send
  2425. // it if the transfer finishes.
  2426. if (_receivedProgressBlock) {
  2427. [self invokeOnCallbackQueueUnlessStopped:^{
  2428. GTMSessionFetcherReceivedProgressBlock progressBlock;
  2429. @synchronized(self) {
  2430. GTMSessionMonitorSynchronized(self);
  2431. progressBlock = self->_receivedProgressBlock;
  2432. }
  2433. if (progressBlock) {
  2434. progressBlock((int64_t)bufferLength, self->_downloadedLength);
  2435. }
  2436. }];
  2437. }
  2438. }
  2439. } // @synchronized(self)
  2440. }
  2441. - (void)URLSession:(NSURLSession *)session
  2442. dataTask:(NSURLSessionDataTask *)dataTask
  2443. willCacheResponse:(NSCachedURLResponse *)proposedResponse
  2444. completionHandler:(void (^)(NSCachedURLResponse *cachedResponse))completionHandler
  2445. GTM_SWIFT_DISABLE_ASYNC {
  2446. GTM_LOG_SESSION_DELEGATE(@"%@ %p URLSession:%@ dataTask:%@ willCacheResponse:%@ %@", [self class],
  2447. self, session, dataTask, proposedResponse, proposedResponse.response);
  2448. GTMSessionFetcherWillCacheURLResponseBlock callback;
  2449. @synchronized(self) {
  2450. GTMSessionMonitorSynchronized(self);
  2451. callback = _willCacheURLResponseBlock;
  2452. if (callback) {
  2453. [self invokeOnCallbackQueueAfterUserStopped:YES
  2454. block:^{
  2455. callback(proposedResponse, completionHandler);
  2456. }];
  2457. }
  2458. } // @synchronized(self)
  2459. if (!callback) {
  2460. completionHandler(proposedResponse);
  2461. }
  2462. }
  2463. - (void)URLSession:(NSURLSession *)session
  2464. downloadTask:(NSURLSessionDownloadTask *)downloadTask
  2465. didWriteData:(int64_t)bytesWritten
  2466. totalBytesWritten:(int64_t)totalBytesWritten
  2467. totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite {
  2468. GTM_LOG_SESSION_DELEGATE(@"%@ %p URLSession:%@ downloadTask:%@ didWriteData:%lld"
  2469. @" bytesWritten:%lld totalBytesExpectedToWrite:%lld",
  2470. [self class], self, session, downloadTask, bytesWritten,
  2471. totalBytesWritten, totalBytesExpectedToWrite);
  2472. [self setSessionTask:downloadTask];
  2473. @synchronized(self) {
  2474. GTMSessionMonitorSynchronized(self);
  2475. if ((totalBytesExpectedToWrite != NSURLSessionTransferSizeUnknown) &&
  2476. (totalBytesExpectedToWrite < totalBytesWritten)) {
  2477. // Have observed cases were bytesWritten == totalBytesExpectedToWrite,
  2478. // but totalBytesWritten > totalBytesExpectedToWrite, so setting to unkown in these cases.
  2479. totalBytesExpectedToWrite = NSURLSessionTransferSizeUnknown;
  2480. }
  2481. GTMSessionFetcherDownloadProgressBlock progressBlock;
  2482. progressBlock = self->_downloadProgressBlock;
  2483. if (progressBlock) {
  2484. [self invokeOnCallbackQueueUnlessStopped:^{
  2485. progressBlock(bytesWritten, totalBytesWritten, totalBytesExpectedToWrite);
  2486. }];
  2487. }
  2488. } // @synchronized(self)
  2489. }
  2490. - (void)URLSession:(NSURLSession *)session
  2491. downloadTask:(NSURLSessionDownloadTask *)downloadTask
  2492. didResumeAtOffset:(int64_t)fileOffset
  2493. expectedTotalBytes:(int64_t)expectedTotalBytes {
  2494. GTM_LOG_SESSION_DELEGATE(@"%@ %p URLSession:%@ downloadTask:%@ didResumeAtOffset:%lld"
  2495. @" expectedTotalBytes:%lld",
  2496. [self class], self, session, downloadTask, fileOffset,
  2497. expectedTotalBytes);
  2498. [self setSessionTask:downloadTask];
  2499. }
  2500. - (void)URLSession:(NSURLSession *)session
  2501. downloadTask:(NSURLSessionDownloadTask *)downloadTask
  2502. didFinishDownloadingToURL:(NSURL *)downloadLocationURL {
  2503. // Download may have relaunched app, so update _sessionTask.
  2504. [self setSessionTask:downloadTask];
  2505. GTM_LOG_SESSION_DELEGATE(@"%@ %p URLSession:%@ downloadTask:%@ didFinishDownloadingToURL:%@",
  2506. [self class], self, session, downloadTask, downloadLocationURL);
  2507. NSNumber *fileSizeNum;
  2508. [downloadLocationURL getResourceValue:&fileSizeNum forKey:NSURLFileSizeKey error:NULL];
  2509. @synchronized(self) {
  2510. GTMSessionMonitorSynchronized(self);
  2511. NSURL *destinationURL = _destinationFileURL;
  2512. _downloadedLength = fileSizeNum.longLongValue;
  2513. // Overwrite any previous file at the destination URL.
  2514. NSFileManager *fileMgr = [NSFileManager defaultManager];
  2515. NSError *removeError;
  2516. if (![fileMgr removeItemAtURL:destinationURL error:&removeError] &&
  2517. removeError.code != NSFileNoSuchFileError) {
  2518. GTMSESSION_LOG_DEBUG(@"Could not remove previous file at %@ due to %@",
  2519. downloadLocationURL.path, removeError);
  2520. }
  2521. NSInteger statusCode = [self statusCodeUnsynchronized];
  2522. if (statusCode < 200 || statusCode > 399) {
  2523. // In OS X 10.11, the response body is written to a file even on a server
  2524. // status error. For convenience of the fetcher client, we'll skip saving the
  2525. // downloaded body to the destination URL so that clients do not need to know
  2526. // to delete the file following fetch errors.
  2527. GTMSESSION_LOG_DEBUG(@"Abandoning download due to status %ld, file %@", (long)statusCode,
  2528. downloadLocationURL.path);
  2529. // On error code, add the contents of the temporary file to _downloadTaskErrorData
  2530. // This way fetcher clients have access to error details possibly passed by the server.
  2531. if (_downloadedLength > 0 && _downloadedLength <= kMaximumDownloadErrorDataLength) {
  2532. _downloadTaskErrorData = [NSData dataWithContentsOfURL:downloadLocationURL];
  2533. } else if (_downloadedLength > kMaximumDownloadErrorDataLength) {
  2534. GTMSESSION_LOG_DEBUG(@"Download error data for file %@ not passed to userInfo due to size "
  2535. @"%lld",
  2536. downloadLocationURL.path, _downloadedLength);
  2537. }
  2538. } else {
  2539. NSError *moveError;
  2540. NSURL *destinationFolderURL = [destinationURL URLByDeletingLastPathComponent];
  2541. BOOL didMoveDownload = NO;
  2542. if ([fileMgr createDirectoryAtURL:destinationFolderURL
  2543. withIntermediateDirectories:YES
  2544. attributes:nil
  2545. error:&moveError]) {
  2546. didMoveDownload = [fileMgr moveItemAtURL:downloadLocationURL
  2547. toURL:destinationURL
  2548. error:&moveError];
  2549. }
  2550. if (!didMoveDownload) {
  2551. _downloadFinishedError = moveError;
  2552. }
  2553. GTM_LOG_BACKGROUND_SESSION(@"%@ %p Moved download from \"%@\" to \"%@\" %@", [self class],
  2554. self, downloadLocationURL.path, destinationURL.path,
  2555. error ? error : @"");
  2556. }
  2557. } // @synchronized(self)
  2558. }
  2559. /* Sent as the last message related to a specific task. Error may be
  2560. * nil, which implies that no error occurred and this task is complete.
  2561. */
  2562. - (void)URLSession:(NSURLSession *)session
  2563. task:(NSURLSessionTask *)task
  2564. didCompleteWithError:(NSError *)error {
  2565. [self setSessionTask:task];
  2566. GTM_LOG_SESSION_DELEGATE(@"%@ %p URLSession:%@ task:%@ didCompleteWithError:%@", [self class],
  2567. self, session, task, error);
  2568. NSInteger status = self.statusCode;
  2569. BOOL forceAssumeRetry = NO;
  2570. BOOL succeeded = NO;
  2571. @synchronized(self) {
  2572. GTMSessionMonitorSynchronized(self);
  2573. #if !GTM_DISABLE_FETCHER_TEST_BLOCK
  2574. // The task is never resumed when a testBlock is used. When the session is destroyed,
  2575. // we should ignore the callback, since the testBlock support code itself invokes
  2576. // shouldRetryNowForStatus: and finishWithError:shouldRetry:
  2577. if (_isUsingTestBlock) return;
  2578. #endif
  2579. if (error == nil) {
  2580. error = _downloadFinishedError;
  2581. }
  2582. succeeded = (error == nil && status >= 0 && status < 300);
  2583. if (succeeded) {
  2584. // Succeeded.
  2585. _bodyLength = task.countOfBytesSent;
  2586. }
  2587. } // @synchronized(self)
  2588. if (succeeded) {
  2589. [self finishWithError:nil shouldRetry:NO];
  2590. return;
  2591. }
  2592. // For background redirects, no delegate method is called, so we cannot restore a stripped
  2593. // Authorization header, so if a 403 ("Forbidden") was generated due to a missing OAuth 2 header,
  2594. // set the current request's URL to the redirected URL, so we in effect restore the Authorization
  2595. // header.
  2596. if ((status == 403) && self.usingBackgroundSession) {
  2597. NSURL *redirectURL = self.response.URL;
  2598. NSURLRequest *request = self.request;
  2599. if (![request.URL isEqual:redirectURL]) {
  2600. NSString *authorizationHeader = [request.allHTTPHeaderFields objectForKey:@"Authorization"];
  2601. if (authorizationHeader != nil) {
  2602. NSMutableURLRequest *mutableRequest = [request mutableCopy];
  2603. mutableRequest.URL = redirectURL;
  2604. [self updateMutableRequest:mutableRequest];
  2605. // Avoid assuming the session is still valid.
  2606. self.session = nil;
  2607. forceAssumeRetry = YES;
  2608. }
  2609. }
  2610. }
  2611. // If invalidating the session was deferred in stopFetchReleasingCallbacks: then do it now.
  2612. NSURLSession *oldSession = self.sessionNeedingInvalidation;
  2613. if (oldSession) {
  2614. [self setSessionNeedingInvalidation:NULL];
  2615. [oldSession finishTasksAndInvalidate];
  2616. }
  2617. // Failed.
  2618. [self shouldRetryNowForStatus:status
  2619. error:error
  2620. forceAssumeRetry:forceAssumeRetry
  2621. response:^(BOOL shouldRetry) {
  2622. [self finishWithError:error shouldRetry:shouldRetry];
  2623. }];
  2624. }
  2625. - (void)URLSession:(NSURLSession *)session
  2626. task:(NSURLSessionTask *)task
  2627. didFinishCollectingMetrics:(NSURLSessionTaskMetrics *)metrics
  2628. API_AVAILABLE(ios(10.0), macosx(10.12), tvos(10.0), watchos(6.0)) {
  2629. @synchronized(self) {
  2630. GTMSessionMonitorSynchronized(self);
  2631. GTMSessionFetcherMetricsCollectionBlock metricsCollectionBlock = _metricsCollectionBlock;
  2632. if (metricsCollectionBlock) {
  2633. [self invokeOnCallbackQueueUnlessStopped:^{
  2634. metricsCollectionBlock(metrics);
  2635. }];
  2636. }
  2637. }
  2638. }
  2639. #if TARGET_OS_IPHONE
  2640. - (void)URLSessionDidFinishEventsForBackgroundURLSession:(NSURLSession *)session {
  2641. GTM_LOG_SESSION_DELEGATE(@"%@ %p URLSessionDidFinishEventsForBackgroundURLSession:%@",
  2642. [self class], self, session);
  2643. [self removePersistedBackgroundSessionFromDefaults];
  2644. GTMSessionFetcherSystemCompletionHandler handler;
  2645. @synchronized(self) {
  2646. GTMSessionMonitorSynchronized(self);
  2647. handler = self.systemCompletionHandler;
  2648. self.systemCompletionHandler = nil;
  2649. } // @synchronized(self)
  2650. if (handler) {
  2651. GTM_LOG_BACKGROUND_SESSION(@"%@ %p Calling system completionHandler", [self class], self);
  2652. handler();
  2653. @synchronized(self) {
  2654. GTMSessionMonitorSynchronized(self);
  2655. NSURLSession *oldSession = _session;
  2656. _session = nil;
  2657. if (_shouldInvalidateSession) {
  2658. [oldSession finishTasksAndInvalidate];
  2659. }
  2660. } // @synchronized(self)
  2661. }
  2662. }
  2663. #endif
  2664. - (void)URLSession:(NSURLSession *)session didBecomeInvalidWithError:(nullable NSError *)error {
  2665. // This may happen repeatedly for retries. On authentication callbacks, the retry
  2666. // may begin before the prior session sends the didBecomeInvalid delegate message.
  2667. GTM_LOG_SESSION_DELEGATE(@"%@ %p URLSession:%@ didBecomeInvalidWithError:%@", [self class], self,
  2668. session, error);
  2669. if (session == (NSURLSession *)self.session) {
  2670. GTM_LOG_SESSION_DELEGATE(@" Unexpected retained invalid session: %@", session);
  2671. self.session = nil;
  2672. }
  2673. }
  2674. - (void)finishWithError:(nullable NSError *)error shouldRetry:(BOOL)shouldRetry {
  2675. [self removePersistedBackgroundSessionFromDefaults];
  2676. BOOL shouldStopFetching = YES;
  2677. NSData *downloadedData = nil;
  2678. #if !STRIP_GTM_FETCH_LOGGING
  2679. BOOL shouldDeferLogging = NO;
  2680. #endif
  2681. BOOL shouldBeginRetryTimer = NO;
  2682. NSInteger status = [self statusCode];
  2683. NSURL *destinationURL = self.destinationFileURL;
  2684. BOOL fetchSucceeded = (error == nil && status >= 0 && status < 300);
  2685. #if !STRIP_GTM_FETCH_LOGGING
  2686. if (!fetchSucceeded) {
  2687. if (!shouldDeferLogging && !self.hasLoggedError) {
  2688. [self logNowWithError:error];
  2689. self.hasLoggedError = YES;
  2690. }
  2691. }
  2692. #endif // !STRIP_GTM_FETCH_LOGGING
  2693. @synchronized(self) {
  2694. GTMSessionMonitorSynchronized(self);
  2695. #if !STRIP_GTM_FETCH_LOGGING
  2696. shouldDeferLogging = _deferResponseBodyLogging;
  2697. #endif
  2698. if (fetchSucceeded) {
  2699. // Success
  2700. if ((_downloadedData.length > 0) && (destinationURL != nil)) {
  2701. // Overwrite any previous file at the destination URL.
  2702. NSFileManager *fileMgr = [NSFileManager defaultManager];
  2703. [fileMgr removeItemAtURL:destinationURL error:NULL];
  2704. NSURL *destinationFolderURL = [destinationURL URLByDeletingLastPathComponent];
  2705. BOOL didMoveDownload = NO;
  2706. if ([fileMgr createDirectoryAtURL:destinationFolderURL
  2707. withIntermediateDirectories:YES
  2708. attributes:nil
  2709. error:&error]) {
  2710. didMoveDownload = [_downloadedData writeToURL:destinationURL
  2711. options:NSDataWritingAtomic
  2712. error:&error];
  2713. }
  2714. if (didMoveDownload) {
  2715. _downloadedData = nil;
  2716. } else {
  2717. _downloadFinishedError = error;
  2718. }
  2719. }
  2720. downloadedData = _downloadedData;
  2721. } else {
  2722. // Unsuccessful with error or status over 300. Retry or notify the delegate of failure
  2723. if (shouldRetry) {
  2724. // Retrying.
  2725. shouldBeginRetryTimer = YES;
  2726. shouldStopFetching = NO;
  2727. } else {
  2728. if (error == nil) {
  2729. // Create an error.
  2730. NSDictionary *userInfo = GTMErrorUserInfoForData(
  2731. _downloadedData.length > 0 ? _downloadedData : _downloadTaskErrorData,
  2732. [self responseHeadersUnsynchronized]);
  2733. error = [NSError errorWithDomain:kGTMSessionFetcherStatusDomain
  2734. code:status
  2735. userInfo:userInfo];
  2736. } else {
  2737. // If the error had resume data, and the client supplied a resume block, pass the
  2738. // data to the client.
  2739. void (^resumeBlock)(NSData *) = _resumeDataBlock;
  2740. _resumeDataBlock = nil;
  2741. if (resumeBlock) {
  2742. NSData *resumeData = [error.userInfo objectForKey:NSURLSessionDownloadTaskResumeData];
  2743. if (resumeData) {
  2744. [self invokeOnCallbackQueueAfterUserStopped:YES
  2745. block:^{
  2746. resumeBlock(resumeData);
  2747. }];
  2748. }
  2749. }
  2750. }
  2751. if (_downloadedData.length > 0) {
  2752. downloadedData = _downloadedData;
  2753. }
  2754. // If the error occurred after retries, report the number and duration of the
  2755. // retries. This provides a clue to a developer looking at the error description
  2756. // that the fetcher did retry before failing with this error.
  2757. if (_retryCount > 0) {
  2758. NSMutableDictionary *userInfoWithRetries =
  2759. [NSMutableDictionary dictionaryWithDictionary:(NSDictionary *)error.userInfo];
  2760. NSTimeInterval timeSinceInitialRequest = -[_initialRequestDate timeIntervalSinceNow];
  2761. [userInfoWithRetries setObject:@(timeSinceInitialRequest)
  2762. forKey:kGTMSessionFetcherElapsedIntervalWithRetriesKey];
  2763. [userInfoWithRetries setObject:@(_retryCount)
  2764. forKey:kGTMSessionFetcherNumberOfRetriesDoneKey];
  2765. error = [NSError errorWithDomain:(NSString *)error.domain
  2766. code:error.code
  2767. userInfo:userInfoWithRetries];
  2768. }
  2769. }
  2770. }
  2771. } // @synchronized(self)
  2772. if (shouldBeginRetryTimer) {
  2773. [self beginRetryTimer];
  2774. }
  2775. // We want to send the stop notification before calling the delegate's
  2776. // callback selector, since the callback selector may release all of
  2777. // the fetcher properties that the client is using to track the fetches.
  2778. //
  2779. // We'll also stop now so that, to any observers watching the notifications,
  2780. // it doesn't look like our wait for a retry (which may be long,
  2781. // 30 seconds or more) is part of the network activity.
  2782. [self sendStopNotificationIfNeeded];
  2783. if (shouldStopFetching) {
  2784. // The upload subclass doesn't want to release callbacks until upload chunks have completed.
  2785. BOOL shouldRelease = [self shouldReleaseCallbacksUponCompletion];
  2786. [self invokeFetchCallbacksOnCallbackQueueWithData:downloadedData
  2787. error:error
  2788. mayDecorate:YES
  2789. shouldReleaseCallbacks:shouldRelease];
  2790. [self stopFetchReleasingCallbacks:NO];
  2791. }
  2792. #if !STRIP_GTM_FETCH_LOGGING
  2793. // _hasLoggedError is only set by this method
  2794. if (!shouldDeferLogging && !_hasLoggedError) {
  2795. [self logNowWithError:error];
  2796. }
  2797. #endif
  2798. }
  2799. - (BOOL)shouldReleaseCallbacksUponCompletion {
  2800. // A subclass can override this to keep callbacks around after the
  2801. // connection has finished successfully
  2802. return YES;
  2803. }
  2804. - (void)logNowWithError:(nullable NSError *)error {
  2805. GTMSessionCheckNotSynchronized(self);
  2806. // If the logging category is available, then log the current request,
  2807. // response, data, and error
  2808. if ([self respondsToSelector:@selector(logFetchWithError:)]) {
  2809. [self performSelector:@selector(logFetchWithError:) withObject:error];
  2810. }
  2811. }
  2812. #pragma mark Retries
  2813. - (BOOL)isRetryError:(NSError *)error {
  2814. struct RetryRecord {
  2815. __unsafe_unretained NSString *const domain;
  2816. NSInteger code;
  2817. };
  2818. struct RetryRecord retries[] = {
  2819. {kGTMSessionFetcherStatusDomain, 408}, // request timeout
  2820. {kGTMSessionFetcherStatusDomain, 502}, // failure gatewaying to another server
  2821. {kGTMSessionFetcherStatusDomain, 503}, // service unavailable
  2822. {kGTMSessionFetcherStatusDomain, 504}, // request timeout
  2823. {NSURLErrorDomain, NSURLErrorTimedOut},
  2824. {NSURLErrorDomain, NSURLErrorNetworkConnectionLost},
  2825. {nil, 0}};
  2826. // NSError's isEqual always returns false for equal but distinct instances
  2827. // of NSError, so we have to compare the domain and code values explicitly
  2828. NSString *domain = error.domain;
  2829. NSInteger code = error.code;
  2830. for (int idx = 0; retries[idx].domain != nil; idx++) {
  2831. if (code == retries[idx].code && [domain isEqual:retries[idx].domain]) {
  2832. return YES;
  2833. }
  2834. }
  2835. return NO;
  2836. }
  2837. // shouldRetryNowForStatus:error: responds with YES if the user has enabled retries
  2838. // and the status or error is one that is suitable for retrying. "Suitable"
  2839. // means either the isRetryError:'s list contains the status or error, or the
  2840. // user's retry block is present and returns YES when called, or the
  2841. // authorizer may be able to fix.
  2842. - (void)shouldRetryNowForStatus:(NSInteger)status
  2843. error:(NSError *)error
  2844. forceAssumeRetry:(BOOL)forceAssumeRetry
  2845. response:(GTMSessionFetcherRetryResponse)response {
  2846. // Determine if a refreshed authorizer may avoid an authorization error
  2847. BOOL willRetry = NO;
  2848. // We assume _authorizer is immutable after beginFetch, and _hasAttemptedAuthRefresh is modified
  2849. // only in this method, and this method is invoked on the serial delegate queue.
  2850. //
  2851. // We want to avoid calling the authorizer from inside a sync block.
  2852. BOOL isFirstAuthError = (_authorizer != nil && !_hasAttemptedAuthRefresh &&
  2853. status == GTMSessionFetcherStatusUnauthorized); // 401
  2854. BOOL hasPrimed = NO;
  2855. if (isFirstAuthError) {
  2856. if ([_authorizer respondsToSelector:@selector(primeForRefresh)]) {
  2857. hasPrimed = [_authorizer primeForRefresh];
  2858. }
  2859. }
  2860. BOOL shouldRetryForAuthRefresh = NO;
  2861. if (hasPrimed) {
  2862. shouldRetryForAuthRefresh = YES;
  2863. _hasAttemptedAuthRefresh = YES;
  2864. [self updateRequestValue:nil forHTTPHeaderField:@"Authorization"];
  2865. }
  2866. @synchronized(self) {
  2867. GTMSessionMonitorSynchronized(self);
  2868. BOOL shouldDoRetry = [self isRetryEnabledUnsynchronized];
  2869. if (shouldDoRetry && ![self hasRetryAfterInterval]) {
  2870. // Determine if we're doing exponential backoff retries
  2871. shouldDoRetry = [self nextRetryIntervalUnsynchronized] < _maxRetryInterval;
  2872. if (shouldDoRetry) {
  2873. // If an explicit max retry interval was set, we expect repeated backoffs to take
  2874. // up to roughly twice that for repeated fast failures. If the initial attempt is
  2875. // already more than 3 times the max retry interval, then failures have taken a long time
  2876. // (such as from network timeouts) so don't retry again to avoid the app becoming
  2877. // unexpectedly unresponsive.
  2878. if (_maxRetryInterval > 0) {
  2879. NSTimeInterval maxAllowedIntervalBeforeRetry = _maxRetryInterval * 3;
  2880. NSTimeInterval timeSinceInitialRequest = -[_initialRequestDate timeIntervalSinceNow];
  2881. if (timeSinceInitialRequest > maxAllowedIntervalBeforeRetry) {
  2882. shouldDoRetry = NO;
  2883. }
  2884. }
  2885. }
  2886. }
  2887. BOOL canRetry = shouldRetryForAuthRefresh || forceAssumeRetry || shouldDoRetry;
  2888. if (canRetry) {
  2889. NSDictionary *userInfo =
  2890. GTMErrorUserInfoForData(_downloadedData, [self responseHeadersUnsynchronized]);
  2891. NSError *statusError = [NSError errorWithDomain:kGTMSessionFetcherStatusDomain
  2892. code:status
  2893. userInfo:userInfo];
  2894. if (error == nil) {
  2895. error = statusError;
  2896. }
  2897. willRetry = shouldRetryForAuthRefresh || forceAssumeRetry || [self isRetryError:error] ||
  2898. ((error != statusError) && [self isRetryError:statusError]);
  2899. // If the user has installed a retry callback, consult that.
  2900. GTMSessionFetcherRetryBlock retryBlock = _retryBlock;
  2901. if (retryBlock) {
  2902. [self invokeOnCallbackQueueUnlessStopped:^{
  2903. retryBlock(willRetry, error, response);
  2904. }];
  2905. return;
  2906. }
  2907. }
  2908. } // @synchronized(self)
  2909. response(willRetry);
  2910. }
  2911. - (BOOL)hasRetryAfterInterval {
  2912. GTMSessionCheckSynchronized(self);
  2913. NSDictionary *responseHeaders = [self responseHeadersUnsynchronized];
  2914. NSString *retryAfterValue = [responseHeaders valueForKey:@"Retry-After"];
  2915. return (retryAfterValue != nil);
  2916. }
  2917. - (NSTimeInterval)retryAfterInterval {
  2918. GTMSessionCheckSynchronized(self);
  2919. NSDictionary *responseHeaders = [self responseHeadersUnsynchronized];
  2920. NSString *retryAfterValue = [responseHeaders valueForKey:@"Retry-After"];
  2921. if (retryAfterValue == nil) {
  2922. return 0;
  2923. }
  2924. // Retry-After formatted as HTTP-date | delta-seconds
  2925. // Reference: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html
  2926. NSDateFormatter *rfc1123DateFormatter = [[NSDateFormatter alloc] init];
  2927. rfc1123DateFormatter.locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];
  2928. rfc1123DateFormatter.timeZone = [NSTimeZone timeZoneWithAbbreviation:@"GMT"];
  2929. rfc1123DateFormatter.dateFormat = @"EEE',' dd MMM yyyy HH':'mm':'ss z";
  2930. NSDate *retryAfterDate = [rfc1123DateFormatter dateFromString:retryAfterValue];
  2931. NSTimeInterval retryAfterInterval =
  2932. (retryAfterDate != nil) ? retryAfterDate.timeIntervalSinceNow : retryAfterValue.intValue;
  2933. retryAfterInterval = MAX(0, retryAfterInterval);
  2934. return retryAfterInterval;
  2935. }
  2936. - (void)beginRetryTimer {
  2937. if (![NSThread isMainThread]) {
  2938. // Defer creating and starting the timer until we're on the main thread to ensure it has
  2939. // a run loop.
  2940. dispatch_group_async(_callbackGroup, dispatch_get_main_queue(), ^{
  2941. [self beginRetryTimer];
  2942. });
  2943. return;
  2944. }
  2945. [self destroyRetryTimer];
  2946. #if GTM_BACKGROUND_TASK_FETCHING
  2947. // Don't keep a background task active while awaiting retry, which can lead to the
  2948. // app exceeding the allotted time for keeping the background task open, causing the
  2949. // system to terminate the app. When the retry starts, a new background task will
  2950. // be created.
  2951. [self endBackgroundTask];
  2952. #endif // GTM_BACKGROUND_TASK_FETCHING
  2953. @synchronized(self) {
  2954. GTMSessionMonitorSynchronized(self);
  2955. NSTimeInterval nextInterval = [self nextRetryIntervalUnsynchronized];
  2956. NSTimeInterval maxInterval = _maxRetryInterval;
  2957. NSTimeInterval newInterval = MIN(nextInterval, (maxInterval > 0 ? maxInterval : DBL_MAX));
  2958. NSTimeInterval newIntervalTolerance = (newInterval / 10) > 1.0 ?: 1.0;
  2959. _lastRetryInterval = newInterval;
  2960. _retryTimer = [NSTimer timerWithTimeInterval:newInterval
  2961. target:self
  2962. selector:@selector(retryTimerFired:)
  2963. userInfo:nil
  2964. repeats:NO];
  2965. _retryTimer.tolerance = newIntervalTolerance;
  2966. [[NSRunLoop mainRunLoop] addTimer:_retryTimer forMode:NSDefaultRunLoopMode];
  2967. } // @synchronized(self)
  2968. [self postNotificationOnMainThreadWithName:kGTMSessionFetcherRetryDelayStartedNotification
  2969. userInfo:nil
  2970. requireAsync:NO];
  2971. }
  2972. - (void)retryTimerFired:(NSTimer *)timer {
  2973. [self destroyRetryTimer];
  2974. @synchronized(self) {
  2975. GTMSessionMonitorSynchronized(self);
  2976. _retryCount++;
  2977. } // @synchronized(self)
  2978. NSOperationQueue *queue = self.sessionDelegateQueue;
  2979. [queue addOperationWithBlock:^{
  2980. [self retryFetch];
  2981. }];
  2982. }
  2983. - (void)destroyRetryTimer {
  2984. BOOL shouldNotify = NO;
  2985. @synchronized(self) {
  2986. GTMSessionMonitorSynchronized(self);
  2987. if (_retryTimer) {
  2988. [_retryTimer invalidate];
  2989. _retryTimer = nil;
  2990. shouldNotify = YES;
  2991. }
  2992. }
  2993. if (shouldNotify) {
  2994. [self postNotificationOnMainThreadWithName:kGTMSessionFetcherRetryDelayStoppedNotification
  2995. userInfo:nil
  2996. requireAsync:NO];
  2997. }
  2998. }
  2999. - (NSUInteger)retryCount {
  3000. @synchronized(self) {
  3001. GTMSessionMonitorSynchronized(self);
  3002. return _retryCount;
  3003. } // @synchronized(self)
  3004. }
  3005. - (NSTimeInterval)nextRetryInterval {
  3006. @synchronized(self) {
  3007. GTMSessionMonitorSynchronized(self);
  3008. NSTimeInterval interval = [self nextRetryIntervalUnsynchronized];
  3009. return interval;
  3010. } // @synchronized(self)
  3011. }
  3012. - (NSTimeInterval)nextRetryIntervalUnsynchronized {
  3013. GTMSessionCheckSynchronized(self);
  3014. NSInteger statusCode = [self statusCodeUnsynchronized];
  3015. if ((statusCode == 503) && [self hasRetryAfterInterval]) {
  3016. NSTimeInterval secs = [self retryAfterInterval];
  3017. return secs;
  3018. }
  3019. // The next wait interval is the factor (2.0) times the last interval,
  3020. // but never less than the minimum interval.
  3021. NSTimeInterval secs = _lastRetryInterval * _retryFactor;
  3022. if (_maxRetryInterval > 0) {
  3023. secs = MIN(secs, _maxRetryInterval);
  3024. }
  3025. secs = MAX(secs, _minRetryInterval);
  3026. return secs;
  3027. }
  3028. - (NSTimer *)retryTimer {
  3029. @synchronized(self) {
  3030. GTMSessionMonitorSynchronized(self);
  3031. return _retryTimer;
  3032. } // @synchronized(self)
  3033. }
  3034. - (BOOL)isRetryEnabled {
  3035. @synchronized(self) {
  3036. GTMSessionMonitorSynchronized(self);
  3037. return _isRetryEnabled;
  3038. } // @synchronized(self)
  3039. }
  3040. - (BOOL)isRetryEnabledUnsynchronized {
  3041. GTMSessionCheckSynchronized(self);
  3042. return _isRetryEnabled;
  3043. }
  3044. - (void)setRetryEnabled:(BOOL)flag {
  3045. @synchronized(self) {
  3046. GTMSessionMonitorSynchronized(self);
  3047. if (flag && !_isRetryEnabled) {
  3048. // We defer initializing these until the user calls setRetryEnabled
  3049. // to avoid using the random number generator if it's not needed.
  3050. // However, this means min and max intervals for this fetcher are reset
  3051. // as a side effect of calling setRetryEnabled.
  3052. //
  3053. // Make an initial retry interval random between 1.0 and 2.0 seconds
  3054. _minRetryInterval = InitialMinRetryInterval();
  3055. _maxRetryInterval = kUnsetMaxRetryInterval;
  3056. _retryFactor = 2.0;
  3057. _lastRetryInterval = 0.0;
  3058. }
  3059. _isRetryEnabled = flag;
  3060. } // @synchronized(self)
  3061. };
  3062. - (NSTimeInterval)maxRetryInterval {
  3063. @synchronized(self) {
  3064. GTMSessionMonitorSynchronized(self);
  3065. return _maxRetryInterval;
  3066. } // @synchronized(self)
  3067. }
  3068. - (void)setMaxRetryInterval:(NSTimeInterval)secs {
  3069. @synchronized(self) {
  3070. GTMSessionMonitorSynchronized(self);
  3071. if (secs > 0) {
  3072. _maxRetryInterval = secs;
  3073. } else {
  3074. _maxRetryInterval = kUnsetMaxRetryInterval;
  3075. }
  3076. } // @synchronized(self)
  3077. }
  3078. - (double)minRetryInterval {
  3079. @synchronized(self) {
  3080. GTMSessionMonitorSynchronized(self);
  3081. return _minRetryInterval;
  3082. } // @synchronized(self)
  3083. }
  3084. - (void)setMinRetryInterval:(NSTimeInterval)secs {
  3085. @synchronized(self) {
  3086. GTMSessionMonitorSynchronized(self);
  3087. if (secs > 0) {
  3088. _minRetryInterval = secs;
  3089. } else {
  3090. // Set min interval to a random value between 1.0 and 2.0 seconds
  3091. // so that if multiple clients start retrying at the same time, they'll
  3092. // repeat at different times and avoid overloading the server
  3093. _minRetryInterval = InitialMinRetryInterval();
  3094. }
  3095. } // @synchronized(self)
  3096. }
  3097. #pragma mark iOS System Completion Handlers
  3098. #if TARGET_OS_IPHONE
  3099. static NSMutableDictionary *gSystemCompletionHandlers = nil;
  3100. - (nullable GTMSessionFetcherSystemCompletionHandler)systemCompletionHandler {
  3101. return [[self class] systemCompletionHandlerForSessionIdentifier:_sessionIdentifier];
  3102. }
  3103. - (void)setSystemCompletionHandler:
  3104. (nullable GTMSessionFetcherSystemCompletionHandler)systemCompletionHandler {
  3105. [[self class] setSystemCompletionHandler:systemCompletionHandler
  3106. forSessionIdentifier:_sessionIdentifier];
  3107. }
  3108. + (void)setSystemCompletionHandler:
  3109. (nullable GTMSessionFetcherSystemCompletionHandler)systemCompletionHandler
  3110. forSessionIdentifier:(NSString *)sessionIdentifier {
  3111. if (!sessionIdentifier) {
  3112. NSLog(@"%s with nil identifier", __PRETTY_FUNCTION__);
  3113. return;
  3114. }
  3115. @synchronized([GTMSessionFetcher class]) {
  3116. if (gSystemCompletionHandlers == nil && systemCompletionHandler != nil) {
  3117. gSystemCompletionHandlers = [[NSMutableDictionary alloc] init];
  3118. }
  3119. // Use setValue: to remove the object if completionHandler is nil.
  3120. [gSystemCompletionHandlers setValue:systemCompletionHandler forKey:sessionIdentifier];
  3121. }
  3122. }
  3123. + (nullable GTMSessionFetcherSystemCompletionHandler)systemCompletionHandlerForSessionIdentifier:
  3124. (NSString *)sessionIdentifier {
  3125. if (!sessionIdentifier) {
  3126. return nil;
  3127. }
  3128. @synchronized([GTMSessionFetcher class]) {
  3129. return [gSystemCompletionHandlers objectForKey:sessionIdentifier];
  3130. }
  3131. }
  3132. #endif // TARGET_OS_IPHONE
  3133. #pragma mark Getters and Setters
  3134. // clang-format off
  3135. // Don't re-format the @synthesize blocks:
  3136. @synthesize downloadResumeData = _downloadResumeData,
  3137. configuration = _configuration,
  3138. configurationBlock = _configurationBlock,
  3139. sessionTask = _sessionTask,
  3140. wasCreatedFromBackgroundSession = _wasCreatedFromBackgroundSession,
  3141. clientWillReconnectBackgroundSession = _clientWillReconnectBackgroundSession,
  3142. sessionUserInfo = _sessionUserInfo,
  3143. taskDescription = _taskDescription,
  3144. taskPriority = _taskPriority,
  3145. usingBackgroundSession = _usingBackgroundSession,
  3146. canShareSession = _canShareSession,
  3147. completionHandler = _completionHandler,
  3148. credential = _credential,
  3149. proxyCredential = _proxyCredential,
  3150. bodyData = _bodyData,
  3151. bodyLength = _bodyLength,
  3152. service = _service,
  3153. serviceHost = _serviceHost,
  3154. accumulateDataBlock = _accumulateDataBlock,
  3155. receivedProgressBlock = _receivedProgressBlock,
  3156. downloadProgressBlock = _downloadProgressBlock,
  3157. resumeDataBlock = _resumeDataBlock,
  3158. didReceiveResponseBlock = _didReceiveResponseBlock,
  3159. challengeBlock = _challengeBlock,
  3160. willRedirectBlock = _willRedirectBlock,
  3161. sendProgressBlock = _sendProgressBlock,
  3162. willCacheURLResponseBlock = _willCacheURLResponseBlock,
  3163. retryBlock = _retryBlock,
  3164. metricsCollectionBlock = _metricsCollectionBlock,
  3165. retryFactor = _retryFactor,
  3166. allowedInsecureSchemes = _allowedInsecureSchemes,
  3167. allowLocalhostRequest = _allowLocalhostRequest,
  3168. allowInvalidServerCertificates = _allowInvalidServerCertificates,
  3169. cookieStorage = _cookieStorage,
  3170. callbackQueue = _callbackQueue,
  3171. initialBeginFetchDate = _initialBeginFetchDate,
  3172. testBlock = _testBlock,
  3173. testBlockAccumulateDataChunkCount = _testBlockAccumulateDataChunkCount,
  3174. comment = _comment,
  3175. log = _log;
  3176. #if !STRIP_GTM_FETCH_LOGGING
  3177. @synthesize redirectedFromURL = _redirectedFromURL,
  3178. logRequestBody = _logRequestBody,
  3179. logResponseBody = _logResponseBody,
  3180. hasLoggedError = _hasLoggedError;
  3181. #endif
  3182. #if GTM_BACKGROUND_TASK_FETCHING
  3183. @synthesize backgroundTaskIdentifier = _backgroundTaskIdentifier,
  3184. skipBackgroundTask = _skipBackgroundTask;
  3185. #endif
  3186. // clang-format on
  3187. - (nullable NSURLRequest *)request {
  3188. @synchronized(self) {
  3189. GTMSessionMonitorSynchronized(self);
  3190. return [_request copy];
  3191. } // @synchronized(self)
  3192. }
  3193. - (void)setRequest:(nullable NSURLRequest *)request {
  3194. @synchronized(self) {
  3195. GTMSessionMonitorSynchronized(self);
  3196. if (![self isFetchingUnsynchronized]) {
  3197. _request = [request mutableCopy];
  3198. } else {
  3199. GTMSESSION_ASSERT_DEBUG(0, @"request may not be set after beginFetch has been invoked");
  3200. }
  3201. } // @synchronized(self)
  3202. }
  3203. - (nullable NSMutableURLRequest *)mutableRequestForTesting {
  3204. // Allow tests only to modify the request, useful during retries.
  3205. return _request;
  3206. }
  3207. // Internal method for updating the request property such as on redirects.
  3208. - (void)updateMutableRequest:(nullable NSMutableURLRequest *)request {
  3209. @synchronized(self) {
  3210. GTMSessionMonitorSynchronized(self);
  3211. _request = request;
  3212. } // @synchronized(self)
  3213. }
  3214. // Set a header field value on the request. Header field value changes will not
  3215. // affect a fetch after the fetch has begun.
  3216. - (void)setRequestValue:(nullable NSString *)value forHTTPHeaderField:(NSString *)field {
  3217. if (![self isFetching]) {
  3218. [self updateRequestValue:value forHTTPHeaderField:field];
  3219. } else {
  3220. GTMSESSION_ASSERT_DEBUG(0, @"request may not be set after beginFetch has been invoked");
  3221. }
  3222. }
  3223. // Internal method for updating request headers.
  3224. - (void)updateRequestValue:(nullable NSString *)value forHTTPHeaderField:(NSString *)field {
  3225. @synchronized(self) {
  3226. GTMSessionMonitorSynchronized(self);
  3227. [_request setValue:value forHTTPHeaderField:field];
  3228. } // @synchronized(self)
  3229. }
  3230. - (void)setResponse:(nullable NSURLResponse *)response {
  3231. @synchronized(self) {
  3232. GTMSessionMonitorSynchronized(self);
  3233. _response = response;
  3234. } // @synchronized(self)
  3235. }
  3236. - (int64_t)bodyLength {
  3237. @synchronized(self) {
  3238. GTMSessionMonitorSynchronized(self);
  3239. if (_bodyLength == NSURLSessionTransferSizeUnknown) {
  3240. if (_bodyData) {
  3241. _bodyLength = (int64_t)_bodyData.length;
  3242. } else if (_bodyFileURL) {
  3243. NSNumber *fileSizeNum = nil;
  3244. NSError *fileSizeError = nil;
  3245. if ([_bodyFileURL getResourceValue:&fileSizeNum
  3246. forKey:NSURLFileSizeKey
  3247. error:&fileSizeError]) {
  3248. _bodyLength = [fileSizeNum longLongValue];
  3249. }
  3250. }
  3251. }
  3252. return _bodyLength;
  3253. } // @synchronized(self)
  3254. }
  3255. - (BOOL)useUploadTask {
  3256. @synchronized(self) {
  3257. GTMSessionMonitorSynchronized(self);
  3258. return _useUploadTask;
  3259. } // @synchronized(self)
  3260. }
  3261. - (void)setUseUploadTask:(BOOL)flag {
  3262. @synchronized(self) {
  3263. GTMSessionMonitorSynchronized(self);
  3264. if (flag != _useUploadTask) {
  3265. GTMSESSION_ASSERT_DEBUG(![self isFetchingUnsynchronized],
  3266. @"useUploadTask should not change after beginFetch has been invoked");
  3267. _useUploadTask = flag;
  3268. }
  3269. } // @synchronized(self)
  3270. }
  3271. - (nullable NSURL *)bodyFileURL {
  3272. @synchronized(self) {
  3273. GTMSessionMonitorSynchronized(self);
  3274. return _bodyFileURL;
  3275. } // @synchronized(self)
  3276. }
  3277. - (void)setBodyFileURL:(nullable NSURL *)fileURL {
  3278. @synchronized(self) {
  3279. GTMSessionMonitorSynchronized(self);
  3280. // The comparison here is a trivial optimization and forgiveness for any client that
  3281. // repeatedly sets the property, so it just uses pointer comparison rather than isEqual:.
  3282. if (fileURL != _bodyFileURL) {
  3283. GTMSESSION_ASSERT_DEBUG(![self isFetchingUnsynchronized],
  3284. @"fileURL should not change after beginFetch has been invoked");
  3285. _bodyFileURL = fileURL;
  3286. }
  3287. } // @synchronized(self)
  3288. }
  3289. - (nullable GTMSessionFetcherBodyStreamProvider)bodyStreamProvider {
  3290. @synchronized(self) {
  3291. GTMSessionMonitorSynchronized(self);
  3292. return _bodyStreamProvider;
  3293. } // @synchronized(self)
  3294. }
  3295. - (void)setBodyStreamProvider:(nullable GTMSessionFetcherBodyStreamProvider)block {
  3296. @synchronized(self) {
  3297. GTMSessionMonitorSynchronized(self);
  3298. GTMSESSION_ASSERT_DEBUG(![self isFetchingUnsynchronized],
  3299. @"stream provider should not change after beginFetch has been invoked");
  3300. _bodyStreamProvider = [block copy];
  3301. } // @synchronized(self)
  3302. }
  3303. - (nullable id<GTMFetcherAuthorizationProtocol>)authorizer {
  3304. @synchronized(self) {
  3305. GTMSessionMonitorSynchronized(self);
  3306. return _authorizer;
  3307. } // @synchronized(self)
  3308. }
  3309. - (void)setAuthorizer:(nullable id<GTMFetcherAuthorizationProtocol>)authorizer {
  3310. @synchronized(self) {
  3311. GTMSessionMonitorSynchronized(self);
  3312. if (authorizer != _authorizer) {
  3313. if ([self isFetchingUnsynchronized]) {
  3314. GTMSESSION_ASSERT_DEBUG(0,
  3315. @"authorizer should not change after beginFetch has been invoked");
  3316. } else {
  3317. _authorizer = authorizer;
  3318. }
  3319. }
  3320. } // @synchronized(self)
  3321. }
  3322. - (nullable NSData *)downloadedData {
  3323. @synchronized(self) {
  3324. GTMSessionMonitorSynchronized(self);
  3325. return _downloadedData;
  3326. } // @synchronized(self)
  3327. }
  3328. - (void)setDownloadedData:(nullable NSData *)data {
  3329. @synchronized(self) {
  3330. GTMSessionMonitorSynchronized(self);
  3331. _downloadedData = [data mutableCopy];
  3332. } // @synchronized(self)
  3333. }
  3334. - (int64_t)downloadedLength {
  3335. @synchronized(self) {
  3336. GTMSessionMonitorSynchronized(self);
  3337. return _downloadedLength;
  3338. } // @synchronized(self)
  3339. }
  3340. - (void)setDownloadedLength:(int64_t)length {
  3341. @synchronized(self) {
  3342. GTMSessionMonitorSynchronized(self);
  3343. _downloadedLength = length;
  3344. } // @synchronized(self)
  3345. }
  3346. - (nonnull dispatch_queue_t)callbackQueue {
  3347. @synchronized(self) {
  3348. GTMSessionMonitorSynchronized(self);
  3349. return _callbackQueue;
  3350. } // @synchronized(self)
  3351. }
  3352. - (void)setCallbackQueue:(nullable dispatch_queue_t)queue {
  3353. @synchronized(self) {
  3354. GTMSessionMonitorSynchronized(self);
  3355. _callbackQueue = queue ?: dispatch_get_main_queue();
  3356. } // @synchronized(self)
  3357. }
  3358. - (nullable NSURLSession *)session {
  3359. @synchronized(self) {
  3360. GTMSessionMonitorSynchronized(self);
  3361. return _session;
  3362. } // @synchronized(self)
  3363. }
  3364. - (NSInteger)servicePriority {
  3365. @synchronized(self) {
  3366. GTMSessionMonitorSynchronized(self);
  3367. return _servicePriority;
  3368. } // @synchronized(self)
  3369. }
  3370. - (void)setServicePriority:(NSInteger)value {
  3371. @synchronized(self) {
  3372. GTMSessionMonitorSynchronized(self);
  3373. if (value != _servicePriority) {
  3374. GTMSESSION_ASSERT_DEBUG(
  3375. ![self isFetchingUnsynchronized],
  3376. @"servicePriority should not change after beginFetch has been invoked");
  3377. _servicePriority = value;
  3378. }
  3379. } // @synchronized(self)
  3380. }
  3381. - (void)setSession:(nullable NSURLSession *)session {
  3382. @synchronized(self) {
  3383. GTMSessionMonitorSynchronized(self);
  3384. _session = session;
  3385. } // @synchronized(self)
  3386. }
  3387. - (BOOL)canShareSession {
  3388. @synchronized(self) {
  3389. GTMSessionMonitorSynchronized(self);
  3390. return _canShareSession;
  3391. } // @synchronized(self)
  3392. }
  3393. - (void)setCanShareSession:(BOOL)flag {
  3394. @synchronized(self) {
  3395. GTMSessionMonitorSynchronized(self);
  3396. _canShareSession = flag;
  3397. } // @synchronized(self)
  3398. }
  3399. - (BOOL)useBackgroundSession {
  3400. // This reflects if the user requested a background session, not necessarily
  3401. // if one was created. That is tracked with _usingBackgroundSession.
  3402. @synchronized(self) {
  3403. GTMSessionMonitorSynchronized(self);
  3404. return _userRequestedBackgroundSession;
  3405. } // @synchronized(self)
  3406. }
  3407. - (void)setUseBackgroundSession:(BOOL)flag {
  3408. @synchronized(self) {
  3409. GTMSessionMonitorSynchronized(self);
  3410. if (flag != _userRequestedBackgroundSession) {
  3411. GTMSESSION_ASSERT_DEBUG(
  3412. ![self isFetchingUnsynchronized],
  3413. @"useBackgroundSession should not change after beginFetch has been invoked");
  3414. _userRequestedBackgroundSession = flag;
  3415. }
  3416. } // @synchronized(self)
  3417. }
  3418. - (BOOL)isUsingBackgroundSession {
  3419. @synchronized(self) {
  3420. GTMSessionMonitorSynchronized(self);
  3421. return _usingBackgroundSession;
  3422. } // @synchronized(self)
  3423. }
  3424. - (void)setUsingBackgroundSession:(BOOL)flag {
  3425. @synchronized(self) {
  3426. GTMSessionMonitorSynchronized(self);
  3427. _usingBackgroundSession = flag;
  3428. } // @synchronized(self)
  3429. }
  3430. - (nullable NSURLSession *)sessionNeedingInvalidation {
  3431. @synchronized(self) {
  3432. GTMSessionMonitorSynchronized(self);
  3433. return _sessionNeedingInvalidation;
  3434. } // @synchronized(self)
  3435. }
  3436. - (void)setSessionNeedingInvalidation:(nullable NSURLSession *)session {
  3437. @synchronized(self) {
  3438. GTMSessionMonitorSynchronized(self);
  3439. _sessionNeedingInvalidation = session;
  3440. } // @synchronized(self)
  3441. }
  3442. - (nonnull NSOperationQueue *)sessionDelegateQueue {
  3443. @synchronized(self) {
  3444. GTMSessionMonitorSynchronized(self);
  3445. return _delegateQueue;
  3446. } // @synchronized(self)
  3447. }
  3448. - (void)setSessionDelegateQueue:(nullable NSOperationQueue *)queue {
  3449. @synchronized(self) {
  3450. GTMSessionMonitorSynchronized(self);
  3451. if (queue != _delegateQueue) {
  3452. if ([self isFetchingUnsynchronized]) {
  3453. GTMSESSION_ASSERT_DEBUG(0, @"sessionDelegateQueue should not change after fetch begins");
  3454. } else {
  3455. _delegateQueue = queue ?: [NSOperationQueue mainQueue];
  3456. }
  3457. }
  3458. } // @synchronized(self)
  3459. }
  3460. - (BOOL)userStoppedFetching {
  3461. @synchronized(self) {
  3462. GTMSessionMonitorSynchronized(self);
  3463. return _userStoppedFetching;
  3464. } // @synchronized(self)
  3465. }
  3466. - (nullable id)userData {
  3467. @synchronized(self) {
  3468. GTMSessionMonitorSynchronized(self);
  3469. return _userData;
  3470. } // @synchronized(self)
  3471. }
  3472. - (void)setUserData:(nullable id)theObj {
  3473. @synchronized(self) {
  3474. GTMSessionMonitorSynchronized(self);
  3475. _userData = theObj;
  3476. } // @synchronized(self)
  3477. }
  3478. - (nullable NSURL *)destinationFileURL {
  3479. @synchronized(self) {
  3480. GTMSessionMonitorSynchronized(self);
  3481. return _destinationFileURL;
  3482. } // @synchronized(self)
  3483. }
  3484. - (void)setDestinationFileURL:(nullable NSURL *)destinationFileURL {
  3485. @synchronized(self) {
  3486. GTMSessionMonitorSynchronized(self);
  3487. if (((_destinationFileURL == nil) && (destinationFileURL == nil)) ||
  3488. [_destinationFileURL isEqual:destinationFileURL]) {
  3489. return;
  3490. }
  3491. if (_sessionIdentifier) {
  3492. // This is something we don't expect to happen in production.
  3493. // However if it ever happen, leave a system log.
  3494. NSLog(@"%@: Destination File URL changed from (%@) to (%@) after session identifier has "
  3495. @"been created.",
  3496. [self class], _destinationFileURL, destinationFileURL);
  3497. #if DEBUG
  3498. // On both the simulator and devices, the path can change to the download file, but the name
  3499. // shouldn't change. Technically, this isn't supported in the fetcher, but the change of
  3500. // URL is expected to happen only across development runs through Xcode.
  3501. NSString *oldFilename = [_destinationFileURL lastPathComponent];
  3502. NSString *newFilename = [destinationFileURL lastPathComponent];
  3503. #pragma unused(oldFilename)
  3504. #pragma unused(newFilename)
  3505. GTMSESSION_ASSERT_DEBUG(
  3506. [oldFilename isEqualToString:newFilename],
  3507. @"Destination File URL cannot be changed after session identifier has been created");
  3508. #endif
  3509. }
  3510. _destinationFileURL = destinationFileURL;
  3511. } // @synchronized(self)
  3512. }
  3513. - (void)setProperties:(nullable NSDictionary *)dict {
  3514. @synchronized(self) {
  3515. GTMSessionMonitorSynchronized(self);
  3516. _properties = [dict mutableCopy];
  3517. } // @synchronized(self)
  3518. }
  3519. - (nullable NSDictionary *)properties {
  3520. @synchronized(self) {
  3521. GTMSessionMonitorSynchronized(self);
  3522. return _properties;
  3523. } // @synchronized(self)
  3524. }
  3525. - (void)setProperty:(nullable id)obj forKey:(NSString *)key {
  3526. @synchronized(self) {
  3527. GTMSessionMonitorSynchronized(self);
  3528. if (_properties == nil && obj != nil) {
  3529. _properties = [[NSMutableDictionary alloc] init];
  3530. }
  3531. [_properties setValue:obj forKey:key];
  3532. } // @synchronized(self)
  3533. }
  3534. - (nullable id)propertyForKey:(NSString *)key {
  3535. @synchronized(self) {
  3536. GTMSessionMonitorSynchronized(self);
  3537. return [_properties objectForKey:key];
  3538. } // @synchronized(self)
  3539. }
  3540. - (void)addPropertiesFromDictionary:(NSDictionary *)dict {
  3541. @synchronized(self) {
  3542. GTMSessionMonitorSynchronized(self);
  3543. if (_properties == nil && dict != nil) {
  3544. [self setProperties:[dict mutableCopy]];
  3545. } else {
  3546. [_properties addEntriesFromDictionary:dict];
  3547. }
  3548. } // @synchronized(self)
  3549. }
  3550. - (void)setCommentWithFormat:(id)format, ... {
  3551. #if !STRIP_GTM_FETCH_LOGGING
  3552. NSString *result = format;
  3553. if (format) {
  3554. va_list argList;
  3555. va_start(argList, format);
  3556. result = [[NSString alloc] initWithFormat:format arguments:argList];
  3557. va_end(argList);
  3558. }
  3559. [self setComment:result];
  3560. #endif
  3561. }
  3562. #if !STRIP_GTM_FETCH_LOGGING
  3563. - (NSData *)loggedStreamData {
  3564. return _loggedStreamData;
  3565. }
  3566. - (void)appendLoggedStreamData:dataToAdd {
  3567. if (!_loggedStreamData) {
  3568. _loggedStreamData = [NSMutableData data];
  3569. }
  3570. [_loggedStreamData appendData:dataToAdd];
  3571. }
  3572. - (void)clearLoggedStreamData {
  3573. _loggedStreamData = nil;
  3574. }
  3575. - (void)setDeferResponseBodyLogging:(BOOL)deferResponseBodyLogging {
  3576. @synchronized(self) {
  3577. GTMSessionMonitorSynchronized(self);
  3578. if (deferResponseBodyLogging != _deferResponseBodyLogging) {
  3579. _deferResponseBodyLogging = deferResponseBodyLogging;
  3580. if (!deferResponseBodyLogging && !self.hasLoggedError) {
  3581. [_delegateQueue addOperationWithBlock:^{
  3582. [self logNowWithError:nil];
  3583. }];
  3584. }
  3585. }
  3586. } // @synchronized(self)
  3587. }
  3588. - (BOOL)deferResponseBodyLogging {
  3589. @synchronized(self) {
  3590. GTMSessionMonitorSynchronized(self);
  3591. return _deferResponseBodyLogging;
  3592. } // @synchronized(self)
  3593. }
  3594. #else
  3595. + (void)setLoggingEnabled:(BOOL)flag {
  3596. }
  3597. + (BOOL)isLoggingEnabled {
  3598. return NO;
  3599. }
  3600. #endif // STRIP_GTM_FETCH_LOGGING
  3601. @end
  3602. @implementation GTMSessionFetcher (BackwardsCompatibilityOnly)
  3603. - (void)setCookieStorageMethod:(NSInteger)method {
  3604. // For backwards compatibility with the old fetcher, we'll support the old constants.
  3605. //
  3606. // Clients using the GTMSessionFetcher class should set the cookie storage explicitly
  3607. // themselves.
  3608. NSHTTPCookieStorage *storage = nil;
  3609. switch (method) {
  3610. case 0: // kGTMHTTPFetcherCookieStorageMethodStatic
  3611. // nil storage will use [[self class] staticCookieStorage] when the fetch begins.
  3612. break;
  3613. case 1: // kGTMHTTPFetcherCookieStorageMethodFetchHistory
  3614. // Do nothing; use whatever was set by the fetcher service.
  3615. return;
  3616. case 2: // kGTMHTTPFetcherCookieStorageMethodSystemDefault
  3617. storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
  3618. break;
  3619. case 3: // kGTMHTTPFetcherCookieStorageMethodNone
  3620. // Create temporary storage for this fetcher only.
  3621. storage = [[GTMSessionCookieStorage alloc] init];
  3622. break;
  3623. default:
  3624. GTMSESSION_ASSERT_DEBUG(0, @"Invalid cookie storage method: %d", (int)method);
  3625. }
  3626. self.cookieStorage = storage;
  3627. }
  3628. @end
  3629. @implementation GTMSessionCookieStorage {
  3630. NSMutableArray *_cookies;
  3631. NSHTTPCookieAcceptPolicy _policy;
  3632. }
  3633. - (id)init {
  3634. self = [super init];
  3635. if (self != nil) {
  3636. _cookies = [[NSMutableArray alloc] init];
  3637. }
  3638. return self;
  3639. }
  3640. - (nullable NSArray *)cookies {
  3641. @synchronized(self) {
  3642. GTMSessionMonitorSynchronized(self);
  3643. return [_cookies copy];
  3644. } // @synchronized(self)
  3645. }
  3646. - (void)setCookie:(NSHTTPCookie *)cookie {
  3647. if (!cookie) return;
  3648. if (_policy == NSHTTPCookieAcceptPolicyNever) return;
  3649. @synchronized(self) {
  3650. GTMSessionMonitorSynchronized(self);
  3651. [self internalSetCookie:cookie];
  3652. } // @synchronized(self)
  3653. }
  3654. // Note: this should only be called from inside a @synchronized(self) block.
  3655. - (void)internalSetCookie:(NSHTTPCookie *)newCookie {
  3656. GTMSessionCheckSynchronized(self);
  3657. if (_policy == NSHTTPCookieAcceptPolicyNever) return;
  3658. BOOL isValidCookie =
  3659. (newCookie.name.length > 0 && newCookie.domain.length > 0 && newCookie.path.length > 0);
  3660. GTMSESSION_ASSERT_DEBUG(isValidCookie, @"invalid cookie: %@", newCookie);
  3661. if (isValidCookie) {
  3662. // Remove the cookie if it's currently in the array.
  3663. NSHTTPCookie *oldCookie = [self cookieMatchingCookie:newCookie];
  3664. if (oldCookie) {
  3665. [_cookies removeObjectIdenticalTo:oldCookie];
  3666. }
  3667. if (![[self class] hasCookieExpired:newCookie]) {
  3668. [_cookies addObject:newCookie];
  3669. }
  3670. }
  3671. }
  3672. // Add all cookies in the new cookie array to the storage,
  3673. // replacing stored cookies as appropriate.
  3674. //
  3675. // Side effect: removes expired cookies from the storage array.
  3676. - (void)setCookies:(nullable NSArray *)newCookies {
  3677. @synchronized(self) {
  3678. GTMSessionMonitorSynchronized(self);
  3679. [self removeExpiredCookies];
  3680. for (NSHTTPCookie *newCookie in newCookies) {
  3681. [self internalSetCookie:newCookie];
  3682. }
  3683. } // @synchronized(self)
  3684. }
  3685. - (void)setCookies:(NSArray *)cookies
  3686. forURL:(nullable NSURL *)URL
  3687. mainDocumentURL:(nullable NSURL *)mainDocumentURL {
  3688. @synchronized(self) {
  3689. GTMSessionMonitorSynchronized(self);
  3690. if (_policy == NSHTTPCookieAcceptPolicyNever) {
  3691. return;
  3692. }
  3693. if (_policy == NSHTTPCookieAcceptPolicyOnlyFromMainDocumentDomain) {
  3694. NSString *mainHost = mainDocumentURL.host;
  3695. NSString *associatedHost = URL.host;
  3696. if (!mainHost || ![associatedHost hasSuffix:mainHost]) {
  3697. return;
  3698. }
  3699. }
  3700. } // @synchronized(self)
  3701. [self setCookies:cookies];
  3702. }
  3703. - (void)deleteCookie:(NSHTTPCookie *)cookie {
  3704. if (!cookie) return;
  3705. @synchronized(self) {
  3706. GTMSessionMonitorSynchronized(self);
  3707. NSHTTPCookie *foundCookie = [self cookieMatchingCookie:cookie];
  3708. if (foundCookie) {
  3709. [_cookies removeObjectIdenticalTo:foundCookie];
  3710. }
  3711. } // @synchronized(self)
  3712. }
  3713. // Retrieve all cookies appropriate for the given URL, considering
  3714. // domain, path, cookie name, expiration, security setting.
  3715. // Side effect: removed expired cookies from the storage array.
  3716. - (nullable NSArray *)cookiesForURL:(NSURL *)theURL {
  3717. NSMutableArray *foundCookies = nil;
  3718. @synchronized(self) {
  3719. GTMSessionMonitorSynchronized(self);
  3720. [self removeExpiredCookies];
  3721. // We'll prepend "." to the desired domain, since we want the
  3722. // actual domain "nytimes.com" to still match the cookie domain
  3723. // ".nytimes.com" when we check it below with hasSuffix.
  3724. NSString *host = theURL.host.lowercaseString;
  3725. NSString *path = theURL.path;
  3726. NSString *scheme = [theURL scheme];
  3727. NSString *requestingDomain = nil;
  3728. BOOL isLocalhostRetrieval = NO;
  3729. if (IsLocalhost(host)) {
  3730. isLocalhostRetrieval = YES;
  3731. } else {
  3732. if (host.length > 0) {
  3733. requestingDomain = [@"." stringByAppendingString:host];
  3734. }
  3735. }
  3736. for (NSHTTPCookie *storedCookie in _cookies) {
  3737. NSString *cookieDomain = storedCookie.domain.lowercaseString;
  3738. NSString *cookiePath = storedCookie.path;
  3739. BOOL cookieIsSecure = [storedCookie isSecure];
  3740. BOOL isDomainOK;
  3741. if (isLocalhostRetrieval) {
  3742. // Prior to 10.5.6, the domain stored into NSHTTPCookies for localhost
  3743. // is "localhost.local"
  3744. isDomainOK = (IsLocalhost(cookieDomain) || [cookieDomain isEqual:@"localhost.local"]);
  3745. } else {
  3746. // Ensure we're matching exact domain names. We prepended a dot to the
  3747. // requesting domain, so we can also prepend one here if needed before
  3748. // checking if the request contains the cookie domain.
  3749. if (![cookieDomain hasPrefix:@"."]) {
  3750. cookieDomain = [@"." stringByAppendingString:cookieDomain];
  3751. }
  3752. isDomainOK = [requestingDomain hasSuffix:cookieDomain];
  3753. }
  3754. BOOL isPathOK = [cookiePath isEqual:@"/"] || [path hasPrefix:cookiePath];
  3755. BOOL isSecureOK =
  3756. (!cookieIsSecure || [scheme caseInsensitiveCompare:@"https"] == NSOrderedSame);
  3757. if (isDomainOK && isPathOK && isSecureOK) {
  3758. if (foundCookies == nil) {
  3759. foundCookies = [NSMutableArray array];
  3760. }
  3761. [foundCookies addObject:storedCookie];
  3762. }
  3763. }
  3764. } // @synchronized(self)
  3765. return foundCookies;
  3766. }
  3767. // Override methods from the NSHTTPCookieStorage (NSURLSessionTaskAdditions) category.
  3768. - (void)storeCookies:(NSArray *)cookies forTask:(NSURLSessionTask *)task {
  3769. NSURLRequest *currentRequest = task.currentRequest;
  3770. [self setCookies:cookies forURL:currentRequest.URL mainDocumentURL:nil];
  3771. }
  3772. - (void)getCookiesForTask:(NSURLSessionTask *)task
  3773. completionHandler:(void (^)(NSArray<NSHTTPCookie *> *))completionHandler {
  3774. if (completionHandler) {
  3775. NSURLRequest *currentRequest = task.currentRequest;
  3776. NSURL *currentRequestURL = currentRequest.URL;
  3777. NSArray *cookies = [self cookiesForURL:currentRequestURL];
  3778. completionHandler(cookies);
  3779. }
  3780. }
  3781. // Return a cookie from the array with the same name, domain, and path as the
  3782. // given cookie, or else return nil if none found.
  3783. //
  3784. // Both the cookie being tested and all cookies in the storage array should
  3785. // be valid (non-nil name, domains, paths).
  3786. //
  3787. // Note: this should only be called from inside a @synchronized(self) block
  3788. - (nullable NSHTTPCookie *)cookieMatchingCookie:(NSHTTPCookie *)cookie {
  3789. GTMSessionCheckSynchronized(self);
  3790. NSString *name = cookie.name;
  3791. NSString *domain = cookie.domain;
  3792. NSString *path = cookie.path;
  3793. GTMSESSION_ASSERT_DEBUG(name && domain && path,
  3794. @"Invalid stored cookie (name:%@ domain:%@ path:%@)", name, domain, path);
  3795. for (NSHTTPCookie *storedCookie in _cookies) {
  3796. if ([storedCookie.name isEqual:name] && [storedCookie.domain isEqual:domain] &&
  3797. [storedCookie.path isEqual:path]) {
  3798. return storedCookie;
  3799. }
  3800. }
  3801. return nil;
  3802. }
  3803. // Internal routine to remove any expired cookies from the array, excluding
  3804. // cookies with nil expirations.
  3805. //
  3806. // Note: this should only be called from inside a @synchronized(self) block
  3807. - (void)removeExpiredCookies {
  3808. GTMSessionCheckSynchronized(self);
  3809. // Count backwards since we're deleting items from the array
  3810. for (NSInteger idx = (NSInteger)_cookies.count - 1; idx >= 0; idx--) {
  3811. NSHTTPCookie *storedCookie = [_cookies objectAtIndex:(NSUInteger)idx];
  3812. if ([[self class] hasCookieExpired:storedCookie]) {
  3813. [_cookies removeObjectAtIndex:(NSUInteger)idx];
  3814. }
  3815. }
  3816. }
  3817. + (BOOL)hasCookieExpired:(NSHTTPCookie *)cookie {
  3818. NSDate *expiresDate = [cookie expiresDate];
  3819. if (expiresDate == nil) {
  3820. // Cookies seem to have a Expires property even when the expiresDate method returns nil.
  3821. id expiresVal = [[cookie properties] objectForKey:NSHTTPCookieExpires];
  3822. if ([expiresVal isKindOfClass:[NSDate class]]) {
  3823. expiresDate = expiresVal;
  3824. }
  3825. }
  3826. BOOL hasExpired = (expiresDate != nil && [expiresDate timeIntervalSinceNow] < 0);
  3827. return hasExpired;
  3828. }
  3829. - (void)removeAllCookies {
  3830. @synchronized(self) {
  3831. GTMSessionMonitorSynchronized(self);
  3832. [_cookies removeAllObjects];
  3833. } // @synchronized(self)
  3834. }
  3835. - (NSHTTPCookieAcceptPolicy)cookieAcceptPolicy {
  3836. @synchronized(self) {
  3837. GTMSessionMonitorSynchronized(self);
  3838. return _policy;
  3839. } // @synchronized(self)
  3840. }
  3841. - (void)setCookieAcceptPolicy:(NSHTTPCookieAcceptPolicy)cookieAcceptPolicy {
  3842. @synchronized(self) {
  3843. GTMSessionMonitorSynchronized(self);
  3844. _policy = cookieAcceptPolicy;
  3845. } // @synchronized(self)
  3846. }
  3847. @end
  3848. void GTMSessionFetcherAssertValidSelector(id _Nullable obj, SEL _Nullable sel, ...) {
  3849. // Verify that the object's selector is implemented with the proper
  3850. // number and type of arguments
  3851. #if DEBUG
  3852. va_list argList;
  3853. va_start(argList, sel);
  3854. if (obj && sel) {
  3855. // Check that the selector is implemented
  3856. if (![obj respondsToSelector:sel]) {
  3857. NSLog(@"\"%@\" selector \"%@\" is unimplemented or misnamed",
  3858. NSStringFromClass([(id)obj class]), NSStringFromSelector((SEL)sel));
  3859. NSCAssert(0, @"callback selector unimplemented or misnamed");
  3860. } else {
  3861. const char *expectedArgType;
  3862. unsigned int argCount = 2; // skip self and _cmd
  3863. NSMethodSignature *sig = [obj methodSignatureForSelector:sel];
  3864. // Check that each expected argument is present and of the correct type
  3865. while ((expectedArgType = va_arg(argList, const char *)) != 0) {
  3866. if ([sig numberOfArguments] > argCount) {
  3867. const char *foundArgType = [sig getArgumentTypeAtIndex:argCount];
  3868. if (0 != strncmp(foundArgType, expectedArgType, strlen(expectedArgType))) {
  3869. NSLog(@"\"%@\" selector \"%@\" argument %d should be type %s",
  3870. NSStringFromClass([(id)obj class]), NSStringFromSelector((SEL)sel),
  3871. (argCount - 2), expectedArgType);
  3872. NSCAssert(0, @"callback selector argument type mistake");
  3873. }
  3874. }
  3875. argCount++;
  3876. }
  3877. // Check that the proper number of arguments are present in the selector
  3878. if (argCount != [sig numberOfArguments]) {
  3879. NSLog(@"\"%@\" selector \"%@\" should have %d arguments",
  3880. NSStringFromClass([(id)obj class]), NSStringFromSelector((SEL)sel), (argCount - 2));
  3881. NSCAssert(0, @"callback selector arguments incorrect");
  3882. }
  3883. }
  3884. }
  3885. va_end(argList);
  3886. #endif
  3887. }
  3888. NSString *GTMFetcherCleanedUserAgentString(NSString *str) {
  3889. // Reference http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html
  3890. // and http://www-archive.mozilla.org/build/user-agent-strings.html
  3891. if (str == nil) return @"";
  3892. NSMutableString *result = [NSMutableString stringWithString:str];
  3893. // Replace spaces and commas with underscores
  3894. [result replaceOccurrencesOfString:@" "
  3895. withString:@"_"
  3896. options:0
  3897. range:NSMakeRange(0, result.length)];
  3898. [result replaceOccurrencesOfString:@","
  3899. withString:@"_"
  3900. options:0
  3901. range:NSMakeRange(0, result.length)];
  3902. // Delete http token separators and remaining whitespace
  3903. static NSCharacterSet *charsToDelete = nil;
  3904. if (charsToDelete == nil) {
  3905. // Make a set of unwanted characters
  3906. NSString *const kSeparators = @"()<>@;:\\\"/[]?={}";
  3907. NSMutableCharacterSet *mutableChars =
  3908. [[NSCharacterSet whitespaceAndNewlineCharacterSet] mutableCopy];
  3909. [mutableChars addCharactersInString:kSeparators];
  3910. charsToDelete = [mutableChars copy]; // hang on to an immutable copy
  3911. }
  3912. while (1) {
  3913. NSRange separatorRange = [result rangeOfCharacterFromSet:charsToDelete];
  3914. if (separatorRange.location == NSNotFound) break;
  3915. [result deleteCharactersInRange:separatorRange];
  3916. };
  3917. return result;
  3918. }
  3919. NSString *GTMFetcherSystemVersionString(void) {
  3920. static NSString *sSavedSystemString;
  3921. static dispatch_once_t onceToken;
  3922. dispatch_once(&onceToken, ^{
  3923. #if TARGET_OS_WATCH
  3924. // watchOS - WKInterfaceDevice
  3925. WKInterfaceDevice *currentDevice = [WKInterfaceDevice currentDevice];
  3926. NSString *rawModel = [currentDevice model];
  3927. NSString *model = GTMFetcherCleanedUserAgentString(rawModel);
  3928. NSString *systemVersion = [currentDevice systemVersion];
  3929. #if TARGET_OS_SIMULATOR
  3930. NSString *hardwareModel = @"sim";
  3931. #else
  3932. NSString *hardwareModel;
  3933. struct utsname unameRecord;
  3934. if (uname(&unameRecord) == 0) {
  3935. NSString *machineName = @(unameRecord.machine);
  3936. hardwareModel = GTMFetcherCleanedUserAgentString(machineName);
  3937. }
  3938. if (hardwareModel.length == 0) {
  3939. hardwareModel = @"unk";
  3940. }
  3941. #endif
  3942. sSavedSystemString =
  3943. [[NSString alloc] initWithFormat:@"%@/%@ hw/%@", model, systemVersion, hardwareModel];
  3944. // Example: Apple_Watch/3.0 hw/Watch1_2
  3945. #elif TARGET_OS_TV || TARGET_OS_IOS
  3946. // iOS and tvOS have UIDevice, use that.
  3947. UIDevice *currentDevice = [UIDevice currentDevice];
  3948. NSString *rawModel = [currentDevice model];
  3949. NSString *model = GTMFetcherCleanedUserAgentString(rawModel);
  3950. NSString *systemVersion = [currentDevice systemVersion];
  3951. #if TARGET_OS_SIMULATOR
  3952. NSString *hardwareModel = @"sim";
  3953. #else
  3954. NSString *hardwareModel;
  3955. struct utsname unameRecord;
  3956. if (uname(&unameRecord) == 0) {
  3957. NSString *machineName = @(unameRecord.machine);
  3958. hardwareModel = GTMFetcherCleanedUserAgentString(machineName);
  3959. }
  3960. if (hardwareModel.length == 0) {
  3961. hardwareModel = @"unk";
  3962. }
  3963. #endif
  3964. sSavedSystemString = [[NSString alloc] initWithFormat:@"%@/%@ hw/%@",
  3965. model, systemVersion, hardwareModel];
  3966. // Example: iPod_Touch/2.2 hw/iPod1_1
  3967. // Example: Apple_TV/9.2 hw/AppleTV5,3
  3968. #elif TARGET_OS_OSX
  3969. // Mac build
  3970. NSProcessInfo *procInfo = [NSProcessInfo processInfo];
  3971. NSString *versString;
  3972. NSOperatingSystemVersion version = procInfo.operatingSystemVersion;
  3973. versString = [NSString stringWithFormat:@"%ld.%ld.%ld", (long)version.majorVersion,
  3974. (long)version.minorVersion, (long)version.patchVersion];
  3975. sSavedSystemString = [[NSString alloc] initWithFormat:@"MacOSX/%@", versString];
  3976. #elif defined(_SYS_UTSNAME_H)
  3977. // Foundation-only build
  3978. struct utsname unameRecord;
  3979. uname(&unameRecord);
  3980. sSavedSystemString = [NSString stringWithFormat:@"%s/%s",
  3981. unameRecord.sysname, unameRecord.release]; // "Darwin/8.11.1"
  3982. #else
  3983. #error No branch taken for a default user agent
  3984. #endif
  3985. });
  3986. return sSavedSystemString;
  3987. }
  3988. NSString *GTMFetcherStandardUserAgentString(NSBundle *_Nullable bundle) {
  3989. NSString *result = [NSString stringWithFormat:@"%@ %@", GTMFetcherApplicationIdentifier(bundle),
  3990. GTMFetcherSystemVersionString()];
  3991. return result;
  3992. }
  3993. NSString *GTMFetcherApplicationIdentifier(NSBundle *_Nullable bundle) {
  3994. @synchronized([GTMSessionFetcher class]) {
  3995. static NSMutableDictionary *sAppIDMap = nil;
  3996. // If there's a bundle ID, use that; otherwise, use the process name
  3997. if (bundle == nil) {
  3998. bundle = [NSBundle mainBundle];
  3999. }
  4000. NSString *bundleID = [bundle bundleIdentifier];
  4001. if (bundleID == nil) {
  4002. bundleID = @"";
  4003. }
  4004. NSString *identifier = [sAppIDMap objectForKey:bundleID];
  4005. if (identifier) return identifier;
  4006. // Apps may add a string to the info.plist to uniquely identify different builds.
  4007. identifier = [bundle objectForInfoDictionaryKey:@"GTMUserAgentID"];
  4008. if (identifier.length == 0) {
  4009. if (bundleID.length > 0) {
  4010. identifier = bundleID;
  4011. } else {
  4012. // Fall back on the procname, prefixed by "proc" to flag that it's
  4013. // autogenerated and perhaps unreliable
  4014. NSString *procName = [[NSProcessInfo processInfo] processName];
  4015. identifier = [NSString stringWithFormat:@"proc_%@", procName];
  4016. }
  4017. }
  4018. // Clean up whitespace and special characters
  4019. identifier = GTMFetcherCleanedUserAgentString(identifier);
  4020. // If there's a version number, append that
  4021. NSString *version = [bundle objectForInfoDictionaryKey:@"GTMUserAgentVersion"];
  4022. if (version.length == 0) {
  4023. version = [bundle objectForInfoDictionaryKey:@"CFBundleShortVersionString"];
  4024. if (version.length == 0) {
  4025. version = [bundle objectForInfoDictionaryKey:@"CFBundleVersion"];
  4026. }
  4027. }
  4028. // Clean up whitespace and special characters
  4029. version = GTMFetcherCleanedUserAgentString(version);
  4030. // Glue the two together (cleanup done above or else cleanup would strip the
  4031. // slash)
  4032. if (version.length > 0) {
  4033. identifier = [identifier stringByAppendingFormat:@"/%@", version];
  4034. }
  4035. if (sAppIDMap == nil) {
  4036. sAppIDMap = [[NSMutableDictionary alloc] init];
  4037. }
  4038. [sAppIDMap setObject:identifier forKey:bundleID];
  4039. return identifier;
  4040. }
  4041. }
  4042. #if DEBUG && (!defined(NS_BLOCK_ASSERTIONS) || GTMSESSION_ASSERT_AS_LOG)
  4043. @implementation GTMSessionSyncMonitorInternal {
  4044. NSValue *_objectKey; // The synchronize target object.
  4045. const char *_functionName; // The function containing the monitored sync block.
  4046. }
  4047. - (instancetype)initWithSynchronizationObject:(id)object
  4048. allowRecursive:(BOOL)allowRecursive
  4049. functionName:(const char *)functionName {
  4050. self = [super init];
  4051. if (self) {
  4052. Class threadKey = [GTMSessionSyncMonitorInternal class];
  4053. _objectKey = [NSValue valueWithNonretainedObject:object];
  4054. _functionName = functionName;
  4055. NSMutableDictionary *threadDict = [NSThread currentThread].threadDictionary;
  4056. NSMutableDictionary *counters = threadDict[threadKey];
  4057. if (counters == nil) {
  4058. counters = [NSMutableDictionary dictionary];
  4059. threadDict[(id)threadKey] = counters;
  4060. }
  4061. NSCountedSet *functionNamesCounter = counters[_objectKey];
  4062. NSUInteger numberOfSyncingFunctions = functionNamesCounter.count;
  4063. if (!allowRecursive) {
  4064. BOOL isTopLevelSyncScope = (numberOfSyncingFunctions == 0);
  4065. NSArray *stack = [NSThread callStackSymbols];
  4066. GTMSESSION_ASSERT_DEBUG(isTopLevelSyncScope,
  4067. @"*** Recursive sync on %@ at %s; previous sync at %@\n%@",
  4068. [object class], functionName, functionNamesCounter.allObjects,
  4069. [stack subarrayWithRange:NSMakeRange(1, stack.count - 1)]);
  4070. }
  4071. if (!functionNamesCounter) {
  4072. functionNamesCounter = [NSCountedSet set];
  4073. counters[_objectKey] = functionNamesCounter;
  4074. }
  4075. [functionNamesCounter addObject:(id _Nonnull) @(functionName)];
  4076. }
  4077. return self;
  4078. }
  4079. - (void)dealloc {
  4080. Class threadKey = [GTMSessionSyncMonitorInternal class];
  4081. NSMutableDictionary *threadDict = [NSThread currentThread].threadDictionary;
  4082. NSMutableDictionary *counters = threadDict[threadKey];
  4083. NSCountedSet *functionNamesCounter = counters[_objectKey];
  4084. NSString *functionNameStr = @(_functionName);
  4085. NSUInteger numberOfSyncsByThisFunction = [functionNamesCounter countForObject:functionNameStr];
  4086. NSArray *stack = [NSThread callStackSymbols];
  4087. GTMSESSION_ASSERT_DEBUG(numberOfSyncsByThisFunction > 0, @"Sync not found on %@ at %s\n%@",
  4088. [_objectKey.nonretainedObjectValue class], _functionName,
  4089. [stack subarrayWithRange:NSMakeRange(1, stack.count - 1)]);
  4090. [functionNamesCounter removeObject:functionNameStr];
  4091. if (functionNamesCounter.count == 0) {
  4092. [counters removeObjectForKey:_objectKey];
  4093. }
  4094. }
  4095. + (nullable NSArray *)functionsHoldingSynchronizationOnObject:(id)object {
  4096. Class threadKey = [GTMSessionSyncMonitorInternal class];
  4097. NSValue *localObjectKey = [NSValue valueWithNonretainedObject:object];
  4098. NSMutableDictionary *threadDict = [NSThread currentThread].threadDictionary;
  4099. NSMutableDictionary *counters = threadDict[threadKey];
  4100. NSCountedSet *functionNamesCounter = counters[localObjectKey];
  4101. return functionNamesCounter.count > 0 ? functionNamesCounter.allObjects : nil;
  4102. }
  4103. @end
  4104. #endif // DEBUG && (!defined(NS_BLOCK_ASSERTIONS) || GTMSESSION_ASSERT_AS_LOG)
  4105. NS_ASSUME_NONNULL_END