1
0

FtpControlSocket.cpp 183 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401
  1. //---------------------------------------------------------------------------
  2. #include "stdafx.h"
  3. #include "FtpControlSocket.h"
  4. #include "mainthread.h"
  5. #include "transfersocket.h"
  6. #include "asyncproxysocketlayer.h"
  7. #include "AsyncSslSocketLayer.h"
  8. #ifndef MPEXT_NO_GSS
  9. #include "AsyncGssSocketLayer.h"
  10. #endif
  11. #include "filezillaapi.h"
  12. #include <WideStrUtils.hpp>
  13. class CFtpControlSocket::CFileTransferData : public CFtpControlSocket::t_operation::COpData
  14. {
  15. public:
  16. CFileTransferData()
  17. {
  18. pDirectoryListing=0;
  19. nGotTransferEndReply=0;
  20. nWaitNextOpState=0;
  21. nMKDOpState=-1;
  22. hasRemoteDate = false;
  23. pFileSize=0;
  24. bUseAbsolutePaths = FALSE;
  25. bTriedPortPasvOnce = FALSE;
  26. askOnResumeFail = false;
  27. };
  28. ~CFileTransferData()
  29. {
  30. if (pDirectoryListing)
  31. delete pDirectoryListing;
  32. pDirectoryListing=0;
  33. delete pFileSize;
  34. };
  35. CString rawpwd;
  36. t_transferfile transferfile;
  37. t_transferdata transferdata;
  38. CString host;
  39. int port;
  40. BOOL bPasv;
  41. int nGotTransferEndReply;
  42. t_directory *pDirectoryListing;
  43. int nWaitNextOpState;
  44. CServerPath MKDCurrent;
  45. std::list<CString> MKDSegments;
  46. int nMKDOpState;
  47. bool hasRemoteDate;
  48. t_directory::t_direntry::t_date remoteDate;
  49. //CTime *pFileTime; //Used when downloading and OPTION_PRESERVEDOWNLOADFILETIME is set or when LIST fails
  50. _int64 *pFileSize; //Used when LIST failes
  51. BOOL bUseAbsolutePaths;
  52. BOOL bTriedPortPasvOnce;
  53. #ifndef MPEXT_NO_ZLIB
  54. int newZlibLevel;
  55. #endif
  56. bool askOnResumeFail;
  57. };
  58. class CFtpControlSocket::CLogonData:public CFtpControlSocket::t_operation::COpData
  59. {
  60. public:
  61. CLogonData()
  62. {
  63. waitForAsyncRequest = false;
  64. gotPassword = false;
  65. }
  66. virtual ~CLogonData()
  67. {
  68. }
  69. bool waitForAsyncRequest;
  70. bool gotPassword;
  71. };
  72. class CFtpControlSocket::CListData:public CFtpControlSocket::t_operation::COpData
  73. {
  74. public:
  75. CListData()
  76. {
  77. pDirectoryListing = 0;
  78. bTriedPortPasvOnce = FALSE;
  79. lastCmdSentCDUP = false;
  80. }
  81. virtual ~CListData()
  82. {
  83. if (pDirectoryListing)
  84. delete pDirectoryListing;
  85. }
  86. CString rawpwd;
  87. CServerPath path;
  88. CString fileName;
  89. CString subdir;
  90. BOOL bPasv;
  91. CString host;
  92. UINT port;
  93. int nFinish;
  94. t_directory *pDirectoryListing;
  95. BOOL bTriedPortPasvOnce;
  96. #ifndef MPEXT_NO_ZLIB
  97. int newZlibLevel;
  98. #endif
  99. bool lastCmdSentCDUP;
  100. };
  101. class CFtpControlSocket::CListFileData:public CFtpControlSocket::t_operation::COpData
  102. {
  103. public:
  104. CListFileData()
  105. {
  106. direntry = NULL;
  107. }
  108. ~CListFileData()
  109. {
  110. delete [] direntry;
  111. }
  112. CString fileName;
  113. CString dir;
  114. CString path;
  115. CServerPath pwd;
  116. t_directory::t_direntry * direntry;
  117. };
  118. class CFtpControlSocket::CMakeDirData : public CFtpControlSocket::t_operation::COpData
  119. {
  120. public:
  121. CMakeDirData() {}
  122. virtual ~CMakeDirData() {}
  123. CServerPath path;
  124. CServerPath Current;
  125. std::list<CString> Segments;
  126. };
  127. #define MKD_INIT -1
  128. #define MKD_FINDPARENT 0
  129. #define MKD_MAKESUBDIRS 1
  130. #define MKD_CHANGETOSUBDIR 2
  131. /////////////////////////////////////////////////////////////////////////////
  132. // CFtpControlSocket
  133. std::list<CFtpControlSocket::t_ActiveList> CFtpControlSocket::m_InstanceList[2];
  134. CTime CFtpControlSocket::m_CurrentTransferTime[2] = { CTime::GetCurrentTime(), CTime::GetCurrentTime() };
  135. _int64 CFtpControlSocket::m_CurrentTransferLimit[2] = {0, 0};
  136. CCriticalSectionWrapper CFtpControlSocket::m_SpeedLimitSync;
  137. #define BUFSIZE 16384
  138. CFtpControlSocket::CFtpControlSocket(CMainThread *pMainThread, CFileZillaTools * pTools)
  139. {
  140. DebugAssert(pMainThread);
  141. m_pOwner=pMainThread;
  142. m_pTools=pTools;
  143. m_Operation.nOpMode=0;
  144. m_Operation.nOpState=-1;
  145. m_Operation.pData=0;
  146. m_pProxyLayer = NULL;
  147. m_pSslLayer = NULL;
  148. #ifndef MPEXT_NO_GSS
  149. m_pGssLayer = NULL;
  150. #endif
  151. m_pDirectoryListing=0;
  152. m_pTransferSocket=0;
  153. m_pDataFile=0;
  154. srand( (unsigned)time( NULL ) );
  155. m_bKeepAliveActive=FALSE;
  156. m_bCheckForTimeout=TRUE;
  157. m_bDidRejectCertificate = FALSE;
  158. #ifndef MPEXT_NO_ZLIB
  159. m_useZlib = false;
  160. m_zlibSupported = false;
  161. m_zlibLevel = 8;
  162. #endif
  163. m_bUTF8 = true;
  164. m_hasClntCmd = false;
  165. m_serverCapabilities.Clear();
  166. m_ListFile = "";
  167. m_awaitsReply = false;
  168. m_skipReply = false;
  169. m_sendBuffer = 0;
  170. m_sendBufferLen = 0;
  171. m_bProtP = false;
  172. m_mayBeMvsFilesystem = false;
  173. m_mayBeBS2000Filesystem = false;
  174. }
  175. CFtpControlSocket::~CFtpControlSocket()
  176. {
  177. DoClose();
  178. if (m_pTransferSocket)
  179. {
  180. m_pTransferSocket->Close();
  181. delete m_pTransferSocket;
  182. m_pTransferSocket=0;
  183. }
  184. if (m_pDataFile)
  185. {
  186. delete m_pDataFile;
  187. m_pDataFile=0;
  188. }
  189. Close();
  190. }
  191. void CFtpControlSocket::ShowStatus(UINT nID, int type) const
  192. {
  193. CString str;
  194. str.LoadString(nID);
  195. ShowStatus(str, type);
  196. }
  197. void CFtpControlSocket::ShowStatus(CString status, int type) const
  198. {
  199. if (!GetOptionVal(OPTION_MPEXT_LOG_SENSITIVE))
  200. {
  201. if ( status.Left(5)==L"PASS " )
  202. {
  203. int len=status.GetLength()-5;
  204. status=L"PASS ";
  205. for (int i=0;i<len;i++)
  206. status+=L"*";
  207. }
  208. else if ( status.Left(5)==L"ACCT " )
  209. {
  210. int len=status.GetLength()-5;
  211. status=L"ACCT ";
  212. for (int i=0;i<len;i++)
  213. status+=L"*";
  214. }
  215. }
  216. LogMessageRaw(type, (LPCTSTR)status);
  217. }
  218. void CFtpControlSocket::ShowTimeoutError(UINT nID) const
  219. {
  220. CString str1;
  221. str1.LoadString(IDS_ERRORMSG_TIMEOUT);
  222. CString str2;
  223. str2.LoadString(nID);
  224. CString message;
  225. message.Format(L"%s (%s)", str1, str2);
  226. ShowStatus(message, FZ_LOG_ERROR);
  227. }
  228. t_server CFtpControlSocket::GetCurrentServer()
  229. {
  230. return m_CurrentServer;
  231. }
  232. void CFtpControlSocket::Close()
  233. {
  234. if (m_pDirectoryListing)
  235. {
  236. delete m_pDirectoryListing;
  237. }
  238. m_pDirectoryListing=0;
  239. CAsyncSocketEx::Close();
  240. delete m_pProxyLayer;
  241. m_pProxyLayer = NULL;
  242. delete m_pSslLayer;
  243. m_pSslLayer = NULL;
  244. #ifndef MPEXT_NO_GSS
  245. delete m_pGssLayer;
  246. m_pGssLayer = NULL;
  247. #endif
  248. RemoveActiveTransfer();
  249. }
  250. BOOL CFtpControlSocket::Connect(CString hostAddress, UINT nHostPort)
  251. {
  252. hostAddress = ConvertDomainName(hostAddress);
  253. //Don't resolve host asynchronously when using proxies
  254. if (m_pProxyLayer)
  255. {
  256. return CAsyncSocketEx::Connect(hostAddress, nHostPort);
  257. }
  258. BOOL res = CAsyncSocketEx::Connect(hostAddress, nHostPort);
  259. int nLastError = WSAGetLastError();
  260. if (res || nLastError==WSAEWOULDBLOCK)
  261. {
  262. WSASetLastError(nLastError);
  263. }
  264. return res;
  265. }
  266. void CFtpControlSocket::SetDirectoryListing(t_directory *pDirectory, bool bSetWorkingDir /*=true*/)
  267. {
  268. if (m_pDirectoryListing)
  269. delete m_pDirectoryListing;
  270. m_CurrentServer=pDirectory->server;
  271. m_pDirectoryListing=new t_directory;
  272. *m_pDirectoryListing=*pDirectory;
  273. if (bSetWorkingDir)
  274. m_pOwner->SetWorkingDir(pDirectory);
  275. }
  276. /////////////////////////////////////////////////////////////////////////////
  277. // Member-Funktion CFtpControlSocket
  278. #define CONNECT_INIT -1
  279. #ifndef MPEXT_NO_GSS
  280. #define CONNECT_GSS_INIT -2
  281. #define CONNECT_GSS_AUTHDONE -3
  282. #define CONNECT_GSS_CWD -4
  283. #define CONNECT_GSS_FAILED -5
  284. #define CONNECT_GSS_NEEDPASS -6
  285. #define CONNECT_GSS_NEEDUSER -7
  286. #endif
  287. #define CONNECT_SSL_INIT -8
  288. #define CONNECT_SSL_NEGOTIATE -9
  289. #define CONNECT_TLS_NEGOTIATE -10
  290. #define CONNECT_SSL_WAITDONE -11
  291. #define CONNECT_SSL_PBSZ -12
  292. #define CONNECT_SSL_PROT -13
  293. #define CONNECT_FEAT -14
  294. #define CONNECT_SYST -15
  295. #define CONNECT_OPTSUTF8 -16
  296. #define CONNECT_CLNT -17
  297. #define CONNECT_OPTSMLST -18
  298. #define CONNECT_NEEDPASS -19
  299. #define CONNECT_HOST -20
  300. bool CFtpControlSocket::InitConnect()
  301. {
  302. USES_CONVERSION;
  303. // Reset detected capabilities
  304. m_bAnnouncesUTF8 = false;
  305. m_hasClntCmd = false;
  306. m_serverCapabilities.Clear();
  307. m_ListFile = "";
  308. m_isFileZilla = false;
  309. if (m_CurrentServer.nUTF8 == 2)
  310. m_bUTF8 = false;
  311. else
  312. m_bUTF8 = true;
  313. // Some sanity checks
  314. if (m_pOwner->IsConnected())
  315. {
  316. ShowStatus(L"Internal error: Connect called while still connected", FZ_LOG_ERROR);
  317. if (!m_Operation.nOpMode)
  318. m_Operation.nOpMode = CSMODE_CONNECT;
  319. DoClose(FZ_REPLY_CRITICALERROR);
  320. return false;
  321. }
  322. if (m_pSslLayer)
  323. {
  324. ShowStatus(L"Internal error: m_pSslLayer not zero in Connect", FZ_LOG_ERROR);
  325. DoClose(FZ_REPLY_CRITICALERROR);
  326. return false;
  327. }
  328. if (m_pProxyLayer)
  329. {
  330. ShowStatus(L"Internal error: m_pProxyLayer not zero in Connect", FZ_LOG_ERROR);
  331. DoClose(FZ_REPLY_CRITICALERROR);
  332. return false;
  333. }
  334. if (m_CurrentServer.nServerType & FZ_SERVERTYPE_LAYER_SSL_IMPLICIT ||
  335. m_CurrentServer.nServerType & FZ_SERVERTYPE_LAYER_SSL_EXPLICIT ||
  336. m_CurrentServer.nServerType & FZ_SERVERTYPE_LAYER_TLS_EXPLICIT)
  337. {
  338. m_pSslLayer = new CAsyncSslSocketLayer;
  339. AddLayer(m_pSslLayer);
  340. m_pSslLayer->SetClientCertificate(m_CurrentServer.Certificate, m_CurrentServer.PrivateKey);
  341. CString filename = GetOption(OPTION_MPEXT_CERT_STORAGE);
  342. m_pSslLayer->SetCertStorage(filename);
  343. }
  344. int nProxyType = GetOptionVal(OPTION_PROXYTYPE);
  345. if (nProxyType != PROXYTYPE_NOPROXY)
  346. {
  347. m_pProxyLayer = new CAsyncProxySocketLayer;
  348. m_pProxyLayer->SetProxy(
  349. nProxyType, T2CA(GetOption(OPTION_PROXYHOST)), GetOptionVal(OPTION_PROXYPORT),
  350. GetOptionVal(OPTION_PROXYUSELOGON), T2CA(GetOption(OPTION_PROXYUSER)), T2CA(GetOption(OPTION_PROXYPASS)));
  351. AddLayer(m_pProxyLayer);
  352. }
  353. #ifndef MPEXT_NO_GSS
  354. BOOL bUseGSS = FALSE;
  355. if (GetOptionVal(OPTION_USEGSS) && !m_pSslLayer)
  356. {
  357. CString GssServers=GetOption(OPTION_GSSSERVERS);
  358. LPCSTR lpszAscii=T2CA(m_CurrentServer.host);
  359. hostent *fullname=gethostbyname(lpszAscii);
  360. CString host;
  361. if (fullname)
  362. host=fullname->h_name;
  363. else
  364. host=m_CurrentServer.host;
  365. host.MakeLower();
  366. int i;
  367. while ((i=GssServers.Find(L";"))!=-1)
  368. {
  369. if ((L"."+GssServers.Left(i))==host.Right(GssServers.Left(i).GetLength()+1) || GssServers.Left(i)==host)
  370. {
  371. bUseGSS=TRUE;
  372. break;
  373. }
  374. GssServers=GssServers.Mid(i+1);
  375. }
  376. }
  377. if (bUseGSS)
  378. {
  379. m_pGssLayer = new CAsyncGssSocketLayer;
  380. AddLayer(m_pGssLayer);
  381. if (!m_pGssLayer->InitGSS())
  382. {
  383. ShowStatus(L"Unable to initialize GSS api", FZ_LOG_ERROR);
  384. DoClose(FZ_REPLY_CRITICALERROR);
  385. return false;
  386. }
  387. }
  388. #endif
  389. return true;
  390. }
  391. int CFtpControlSocket::InitConnectState()
  392. {
  393. if ((m_CurrentServer.nServerType & FZ_SERVERTYPE_LAYERMASK) & (FZ_SERVERTYPE_LAYER_SSL_EXPLICIT | FZ_SERVERTYPE_LAYER_TLS_EXPLICIT))
  394. return CONNECT_SSL_INIT;
  395. else
  396. #ifndef MPEXT_NO_GSS
  397. if (m_pGssLayer)
  398. return CONNECT_GSS_INIT;
  399. else
  400. #endif
  401. return CONNECT_INIT;
  402. }
  403. void CFtpControlSocket::Connect(t_server &server)
  404. {
  405. USES_CONVERSION;
  406. if (m_Operation.nOpMode)
  407. {
  408. ShowStatus(L"Internal error: m_Operation.nOpMode not zero in Connect", FZ_LOG_ERROR);
  409. m_Operation.nOpMode = CSMODE_CONNECT;
  410. DoClose(FZ_REPLY_CRITICALERROR);
  411. return;
  412. }
  413. m_Operation.nOpMode = CSMODE_CONNECT;
  414. m_CurrentServer = server;
  415. if (!InitConnect())
  416. return;
  417. if (!Create())
  418. {
  419. DoClose();
  420. return;
  421. }
  422. AsyncSelect();
  423. if (GetOptionVal(OPTION_MPEXT_HOST))
  424. {
  425. m_Operation.nOpState = CONNECT_HOST;
  426. }
  427. else
  428. {
  429. m_Operation.nOpState = InitConnectState();
  430. }
  431. if (server.nServerType & FZ_SERVERTYPE_LAYER_SSL_IMPLICIT)
  432. {
  433. if (!m_pSslLayer)
  434. {
  435. ShowStatus(L"Internal error: m_pSslLayer not initialized", FZ_LOG_ERROR);
  436. DoClose(FZ_REPLY_CRITICALERROR);
  437. return;
  438. }
  439. int res = m_pSslLayer->InitSSLConnection(true, NULL,
  440. GetOptionVal(OPTION_MPEXT_SSLSESSIONREUSE), server.host,
  441. m_pTools);
  442. if (res == SSL_FAILURE_INITSSL)
  443. ShowStatus(IDS_ERRORMSG_CANTINITSSL, FZ_LOG_ERROR);
  444. if (res)
  445. {
  446. DoClose();
  447. return;
  448. }
  449. }
  450. int logontype = GetOptionVal(OPTION_LOGONTYPE);
  451. int port;
  452. CString buf,temp;
  453. // are we connecting directly to the host (logon type 0) or via a firewall? (logon type>0)
  454. CString fwhost;
  455. int fwport;
  456. if(!logontype)
  457. {
  458. temp=server.host;
  459. port=server.port;
  460. }
  461. else
  462. {
  463. fwhost=GetOption(OPTION_FWHOST);
  464. fwport=GetOptionVal(OPTION_FWPORT);
  465. temp=fwhost;
  466. port=fwport;
  467. if(fwport!=21)
  468. fwhost.Format( L"%s:%d", fwhost, fwport); // add port to fwhost (only if port is not 21)
  469. }
  470. CString hostname = server.host;
  471. if(server.port!=21)
  472. hostname.Format( L"%s:%d", hostname, server.port); // add port to hostname (only if port is not 21)
  473. CString str;
  474. str.Format(IDS_STATUSMSG_CONNECTING, hostname);
  475. ShowStatus(str, FZ_LOG_STATUS);
  476. if (!Connect(temp, port))
  477. {
  478. if (WSAGetLastError() != WSAEWOULDBLOCK)
  479. {
  480. DoClose();
  481. return;
  482. }
  483. else
  484. {
  485. LogMessage(FZ_LOG_INFO, L"Connection pending");
  486. }
  487. }
  488. else
  489. {
  490. LogMessage(FZ_LOG_INFO, L"Connected");
  491. }
  492. m_ServerName = logontype?fwhost:hostname;
  493. m_LastRecvTime = m_LastSendTime = CTime::GetCurrentTime();
  494. m_Operation.pData = new CLogonData();
  495. }
  496. static CString NormalizePass(const CString & pass)
  497. {
  498. return CString(NormalizeString(UnicodeString(T2CW(pass))).c_str());
  499. }
  500. void CFtpControlSocket::LogOnToServer(BOOL bSkipReply /*=FALSE*/)
  501. {
  502. int logontype =
  503. #ifndef MPEXT_NO_GSS
  504. m_pGssLayer ? 0 :
  505. #endif
  506. GetOptionVal(OPTION_LOGONTYPE);
  507. const int LO = -2, ER = -1;
  508. CString buf, temp;
  509. const int NUMLOGIN = 9; // currently supports 9 different login sequences
  510. int logonseq[NUMLOGIN][20] = {
  511. // this array stores all of the logon sequences for the various firewalls
  512. // in blocks of 3 nums. 1st num is command to send, 2nd num is next point in logon sequence array
  513. // if 200 series response is rec'd from server as the result of the command, 3rd num is next
  514. // point in logon sequence if 300 series rec'd
  515. {0,LO,3, 1,LO,6, 12,LO,ER}, // no firewall
  516. {3,6,3, 4,6,ER, 5,9,9, 0,LO,12, 1,LO,15, 12,LO,ER}, // SITE hostname
  517. {3,6,3, 4,6,ER, 6,LO,9, 1,LO,12, 12,LO,ER}, // USER after logon
  518. {7,3,3, 0,LO,6, 1,LO,9, 12,LO,ER}, //proxy OPEN
  519. {3,6,3, 4,6,ER, 0,LO,9, 1,LO,12, 12,LO,ER}, // Transparent
  520. {6,LO,3, 1,LO,6, 12,LO,ER}, // USER remoteID@remotehost
  521. {8,6,3, 4,6,ER, 0,LO,9, 1,LO,12, 12,LO,ER}, //USER fireID@remotehost
  522. {9,ER,3, 1,LO,6, 2,LO,ER}, //USER remoteID@remotehost fireID
  523. {10,LO,3,11,LO,6,2,LO,ER} // USER remoteID@fireID@remotehost
  524. };
  525. if (m_Operation.nOpState == CONNECT_SSL_INIT)
  526. {
  527. if (m_CurrentServer.nServerType & FZ_SERVERTYPE_LAYER_SSL_EXPLICIT)
  528. {
  529. if (!SendAuthSsl())
  530. {
  531. return;
  532. }
  533. }
  534. else
  535. {
  536. if (!Send("AUTH TLS"))
  537. return;
  538. m_Operation.nOpState = CONNECT_TLS_NEGOTIATE;
  539. }
  540. return;
  541. }
  542. else if ((m_Operation.nOpState == CONNECT_SSL_NEGOTIATE) ||
  543. (m_Operation.nOpState == CONNECT_TLS_NEGOTIATE))
  544. {
  545. int res = GetReplyCode();
  546. if (res!=2 && res!=3)
  547. {
  548. if (m_Operation.nOpState == CONNECT_TLS_NEGOTIATE)
  549. {
  550. // Try to fall back to AUTH SSL
  551. if (!SendAuthSsl())
  552. {
  553. return;
  554. }
  555. }
  556. else
  557. {
  558. DoClose();
  559. }
  560. return;
  561. }
  562. else
  563. {
  564. if (!m_pSslLayer)
  565. {
  566. ShowStatus(L"Internal error: m_pSslLayer not initialized", FZ_LOG_ERROR);
  567. DoClose(FZ_REPLY_CRITICALERROR);
  568. return;
  569. }
  570. int res = m_pSslLayer->InitSSLConnection(true, NULL,
  571. GetOptionVal(OPTION_MPEXT_SSLSESSIONREUSE), m_CurrentServer.host,
  572. m_pTools);
  573. if (res == SSL_FAILURE_INITSSL)
  574. ShowStatus(IDS_ERRORMSG_CANTINITSSL, FZ_LOG_ERROR);
  575. if (res)
  576. {
  577. DoClose();
  578. return;
  579. }
  580. }
  581. m_Operation.nOpState = CONNECT_SSL_WAITDONE;
  582. return;
  583. }
  584. else if (m_Operation.nOpState == CONNECT_SSL_WAITDONE)
  585. {
  586. m_Operation.nOpState = CONNECT_INIT;
  587. }
  588. else if (m_Operation.nOpState == CONNECT_SSL_PBSZ)
  589. {
  590. if (!Send(L"PROT P"))
  591. return;
  592. m_Operation.nOpState = CONNECT_SSL_PROT;
  593. return;
  594. }
  595. else if (m_Operation.nOpState == CONNECT_SSL_PROT)
  596. {
  597. int code = GetReplyCode();
  598. if (code == 2 || code == 3)
  599. m_bProtP = true;
  600. ShowStatus(IDS_STATUSMSG_CONNECTED, FZ_LOG_STATUS);
  601. m_pOwner->SetConnected(TRUE);
  602. ResetOperation(FZ_REPLY_OK);
  603. return;
  604. }
  605. #ifndef MPEXT_NO_GSS
  606. else
  607. if (m_Operation.nOpState==CONNECT_GSS_FAILED ||
  608. m_Operation.nOpState == CONNECT_GSS_NEEDPASS ||
  609. m_Operation.nOpState == CONNECT_GSS_NEEDUSER)
  610. {
  611. if (!m_RecvBuffer.empty() && m_RecvBuffer.front() != "")
  612. {
  613. //Incoming reply from server during async is not allowed
  614. DoClose();
  615. return;
  616. }
  617. }
  618. #endif
  619. else if (m_Operation.nOpState == CONNECT_HOST)
  620. {
  621. if (Send(L"HOST " + m_CurrentServer.host))
  622. {
  623. m_Operation.nOpState = InitConnectState();
  624. return;
  625. }
  626. }
  627. else if (m_Operation.nOpState == CONNECT_OPTSMLST)
  628. {
  629. int code = GetReplyCode();
  630. if (code != 2 && code != 3)
  631. m_serverCapabilities.SetCapability(mlsd_command, no);
  632. ShowStatus(IDS_STATUSMSG_CONNECTED, FZ_LOG_STATUS);
  633. m_pOwner->SetConnected(TRUE);
  634. ResetOperation(FZ_REPLY_OK);
  635. return;
  636. }
  637. else if (m_Operation.nOpState == CONNECT_FEAT)
  638. {
  639. std::string facts;
  640. if (m_serverCapabilities.GetCapabilityString(mlsd_command, &facts) == yes)
  641. {
  642. ftp_capabilities_t cap = m_serverCapabilities.GetCapabilityString(opts_mlst_command);
  643. if (cap == unknown)
  644. {
  645. std::transform(facts.begin(), facts.end(), facts.begin(), ::tolower);
  646. bool had_unset = false;
  647. std::string opts_facts;
  648. // Create a list of all facts understood by both FZ and the server.
  649. // Check if there's any supported fact not enabled by default, should that
  650. // be the case we need to send OPTS MLST
  651. while (!facts.empty())
  652. {
  653. size_t delim = facts.find_first_of(';');
  654. if (delim == -1)
  655. break;
  656. if (!delim)
  657. {
  658. facts = facts.substr(1, std::string::npos);
  659. continue;
  660. }
  661. bool enabled = false;
  662. std::string fact;
  663. if (facts[delim - 1] == '*')
  664. {
  665. if (delim == 1)
  666. {
  667. facts = facts.substr(delim + 1, std::string::npos);
  668. continue;
  669. }
  670. enabled = true;
  671. fact = facts.substr(0, delim - 1);
  672. }
  673. else
  674. {
  675. enabled = false;
  676. fact = facts.substr(0, delim);
  677. }
  678. facts = facts.substr(delim + 1, std::string::npos);
  679. if (!strcmp(fact.c_str(), "type") ||
  680. !strcmp(fact.c_str(), "size") ||
  681. !strcmp(fact.c_str(), "modify") ||
  682. !strcmp(fact.c_str(), "create") ||
  683. !strcmp(fact.c_str(), "perm") ||
  684. !strcmp(fact.c_str(), "unix.mode") ||
  685. !strcmp(fact.c_str(), "unix.owner") ||
  686. !strcmp(fact.c_str(), "unix.user") ||
  687. !strcmp(fact.c_str(), "unix.group") ||
  688. !strcmp(fact.c_str(), "unix.uid") ||
  689. !strcmp(fact.c_str(), "unix.gid"))
  690. {
  691. had_unset |= !enabled;
  692. opts_facts += fact.c_str();
  693. opts_facts += ";";
  694. }
  695. }
  696. if (had_unset)
  697. {
  698. m_serverCapabilities.SetCapability(opts_mlst_command, yes, opts_facts);
  699. }
  700. else
  701. {
  702. m_serverCapabilities.SetCapability(opts_mlst_command, no);
  703. }
  704. }
  705. }
  706. GetIntern()->PostMessage(FZ_MSG_MAKEMSG(FZ_MSG_CAPABILITIES, 0), (LPARAM)&m_serverCapabilities);
  707. if (!m_bAnnouncesUTF8 && !m_CurrentServer.nUTF8)
  708. m_bUTF8 = false;
  709. if (m_hasClntCmd)
  710. {
  711. // Some servers refuse to enable UTF8 if client does not send CLNT command
  712. // to fix compatibility with Internet Explorer, but in the process breaking
  713. // compatibility with other clients.
  714. // Rather than forcing MS to fix Internet Explorer, letting other clients
  715. // suffer is a questionable decision in my opinion.
  716. if (Send(CString(L"CLNT ") + m_pTools->GetClientString().c_str()))
  717. m_Operation.nOpState = CONNECT_CLNT;
  718. return;
  719. }
  720. if (m_bUTF8 && !m_isFileZilla)
  721. {
  722. // Handle servers that disobey RFC 2640 that have UTF8 in the FEAT
  723. // response but do not use UTF8 unless OPTS UTF8 ON gets send.
  724. // However these servers obey a conflicting ietf draft:
  725. // https://datatracker.ietf.org/doc/html/draft-ietf-ftpext-utf-8-option-00
  726. // servers are, amongst others, G6 FTP Server and RaidenFTPd.
  727. if (Send(L"OPTS UTF8 ON"))
  728. m_Operation.nOpState = CONNECT_OPTSUTF8;
  729. return;
  730. }
  731. if ((m_CurrentServer.nServerType & FZ_SERVERTYPE_LAYERMASK) & (FZ_SERVERTYPE_LAYER_SSL_IMPLICIT | FZ_SERVERTYPE_LAYER_SSL_EXPLICIT | FZ_SERVERTYPE_LAYER_TLS_EXPLICIT))
  732. {
  733. m_Operation.nOpState = CONNECT_SSL_PBSZ;
  734. Send(L"PBSZ 0");
  735. return;
  736. }
  737. if (m_serverCapabilities.GetCapability(mlsd_command) == yes)
  738. {
  739. std::string args;
  740. // this is never true, see comment is DiscardLine
  741. if (m_serverCapabilities.GetCapabilityString(opts_mlst_command, &args) == yes &&
  742. !args.empty())
  743. {
  744. m_Operation.nOpState = CONNECT_OPTSMLST;
  745. Send("OPTS MLST " + CString(args.c_str()));
  746. return;
  747. }
  748. }
  749. ShowStatus(IDS_STATUSMSG_CONNECTED, FZ_LOG_STATUS);
  750. m_pOwner->SetConnected(TRUE);
  751. ResetOperation(FZ_REPLY_OK);
  752. return;
  753. }
  754. else if (m_Operation.nOpState == CONNECT_CLNT)
  755. {
  756. // See above why we send this command
  757. if (Send(L"OPTS UTF8 ON"))
  758. m_Operation.nOpState = CONNECT_OPTSUTF8;
  759. return;
  760. }
  761. else if (m_Operation.nOpState == CONNECT_OPTSUTF8)
  762. {
  763. if ((m_CurrentServer.nServerType & FZ_SERVERTYPE_LAYERMASK) & (FZ_SERVERTYPE_LAYER_SSL_IMPLICIT | FZ_SERVERTYPE_LAYER_SSL_EXPLICIT | FZ_SERVERTYPE_LAYER_TLS_EXPLICIT))
  764. {
  765. m_Operation.nOpState = CONNECT_SSL_PBSZ;
  766. Send(L"PBSZ 0");
  767. return;
  768. }
  769. ShowStatus(IDS_STATUSMSG_CONNECTED, FZ_LOG_STATUS);
  770. m_pOwner->SetConnected(TRUE);
  771. ResetOperation(FZ_REPLY_OK);
  772. return;
  773. }
  774. else if (m_Operation.nOpState == CONNECT_SYST)
  775. {
  776. if (GetReplyCode() == 2)
  777. {
  778. const CStringA reply = m_RecvBuffer.front();
  779. if (reply.GetLength() > 7 && reply.Mid(3, 4) == " MVS")
  780. m_mayBeMvsFilesystem = true;
  781. else if (reply.GetLength() >= 11 && reply.Mid(3, 8) == " BS-2000")
  782. m_mayBeBS2000Filesystem = true;
  783. if (reply.Left(4) == "VMS ")
  784. {
  785. m_CurrentServer.nServerType |= FZ_SERVERTYPE_SUB_FTP_VMS;
  786. }
  787. if (reply.Find("FileZilla") != -1)
  788. m_isFileZilla = true;
  789. }
  790. if (Send(L"FEAT"))
  791. m_Operation.nOpState = CONNECT_FEAT;
  792. return;
  793. }
  794. else if (!bSkipReply)
  795. {
  796. int res = GetReplyCode();
  797. if (res != 2 && res != 3 && m_Operation.nOpState >= 0) // get initial connect msg off server
  798. {
  799. int nError = 0;
  800. if (m_bUTF8 && m_CurrentServer.nUTF8 != 1)
  801. {
  802. // Fall back to local charset for the case that the server might not
  803. // support UTF8 and the login data contains non-ascii characters.
  804. bool asciiOnly = true;
  805. for (int i = 0; i < m_CurrentServer.user.GetLength(); i++)
  806. if (m_CurrentServer.user.GetAt(i) > 127)
  807. asciiOnly = false;
  808. CString pass = NormalizePass(m_CurrentServer.pass);
  809. for (int i = 0; i < pass.GetLength(); i++)
  810. if (pass.GetAt(i) > 127)
  811. asciiOnly = false;
  812. for (int i = 0; i < m_CurrentServer.account.GetLength(); i++)
  813. if (m_CurrentServer.account.GetAt(i) > 127)
  814. asciiOnly = false;
  815. if (!asciiOnly)
  816. {
  817. ShowStatus(L"Login data contains non-ascii characters and server might not be UTF-8 aware. Trying local charset.", FZ_LOG_STATUS);
  818. m_bUTF8 = false;
  819. m_Operation.nOpState = CONNECT_INIT;
  820. }
  821. else
  822. nError = FZ_REPLY_ERROR;
  823. }
  824. else
  825. nError = FZ_REPLY_ERROR;
  826. if (nError)
  827. {
  828. if (res==5 && logonseq[logontype][m_Operation.nOpState]==1)
  829. nError|=FZ_REPLY_CRITICALERROR;
  830. DoClose(nError);
  831. return;
  832. }
  833. }
  834. }
  835. CString hostname = m_CurrentServer.host;
  836. if (m_CurrentServer.port != 21)
  837. hostname.Format(hostname+ L":%d", m_CurrentServer.port); // add port to hostname (only if port is not 21)
  838. USES_CONVERSION;
  839. #ifndef MPEXT_NO_GSS
  840. //**** GSS Authentication ****
  841. if (m_Operation.nOpState==CONNECT_GSS_INIT) //authenticate
  842. {
  843. int i = m_pGssLayer->GetClientAuth(T2CA(m_CurrentServer.host));
  844. if (i==-1)
  845. m_Operation.nOpState = CONNECT_GSS_AUTHDONE;
  846. else if (i != GSSAPI_AUTHENTICATION_SUCCEEDED)
  847. {
  848. m_Operation.nOpState = CONNECT_GSS_FAILED;
  849. CAsyncRequestData *pData=new CAsyncRequestData;
  850. pData->nRequestType=FZ_ASYNCREQUEST_GSS_AUTHFAILED;
  851. pData->nRequestID=m_pOwner->GetNextAsyncRequestID();
  852. if (!GetIntern()->PostMessage(FZ_MSG_MAKEMSG(FZ_MSG_ASYNCREQUEST, FZ_ASYNCREQUEST_GSS_AUTHFAILED), (LPARAM)pData))
  853. {
  854. delete pData;
  855. }
  856. else
  857. {
  858. m_bCheckForTimeout = FALSE;
  859. }
  860. }
  861. else
  862. {
  863. // we got authentication, we need to check whether we have forwardable tickets
  864. if (Send(L"CWD ."))
  865. m_Operation.nOpState = CONNECT_GSS_CWD;
  866. }
  867. return;
  868. }
  869. else if (m_Operation.nOpState == CONNECT_GSS_AUTHDONE)
  870. {
  871. if (!m_pGssLayer->AuthSuccessful())
  872. {
  873. m_Operation.nOpState = CONNECT_GSS_FAILED;
  874. CAsyncRequestData *pData=new CAsyncRequestData;
  875. pData->nRequestType = FZ_ASYNCREQUEST_GSS_AUTHFAILED;
  876. pData->nRequestID = m_pOwner->GetNextAsyncRequestID();
  877. if (!GetIntern()->PostMessage(FZ_MSG_MAKEMSG(FZ_MSG_ASYNCREQUEST, FZ_ASYNCREQUEST_GSS_AUTHFAILED), (LPARAM)pData))
  878. {
  879. delete pData;
  880. }
  881. else
  882. {
  883. m_bCheckForTimeout = FALSE;
  884. }
  885. return;
  886. }
  887. else
  888. {
  889. // we got authentication, we need to check whether we have forwardable tickets
  890. if (Send(L"CWD ."))
  891. m_Operation.nOpState = CONNECT_GSS_CWD;
  892. return;
  893. }
  894. }
  895. else if (m_Operation.nOpState == CONNECT_GSS_CWD)
  896. { // authentication succeeded, we're now get the response to the CWD command
  897. if (GetReplyCode() == 2) // we're logged on
  898. {
  899. if (Send(L"SYST"))
  900. m_Operation.nOpState = CONNECT_SYST;
  901. return;
  902. }
  903. else
  904. {
  905. //GSS authentication complete but we still have to go through the standard logon procedure
  906. m_Operation.nOpState = CONNECT_INIT;
  907. }
  908. }
  909. #endif
  910. if (m_Operation.nOpState==CONNECT_INIT)
  911. {
  912. if (logontype)
  913. {
  914. CString str;
  915. str.Format(IDS_STATUSMSG_FWCONNECT,hostname);
  916. ShowStatus(str,FZ_LOG_STATUS);
  917. }
  918. m_Operation.nOpState++;
  919. }
  920. else if (m_Operation.nOpState >= 0 && !bSkipReply)
  921. {
  922. m_Operation.nOpState=logonseq[logontype][m_Operation.nOpState+GetReplyCode()-1]; //get next command from array
  923. switch(m_Operation.nOpState)
  924. {
  925. case ER: // ER means summat has gone wrong
  926. DoClose();
  927. return;
  928. case LO: //LO means we are logged on
  929. if (Send(L"SYST"))
  930. m_Operation.nOpState = CONNECT_SYST;
  931. return;
  932. }
  933. }
  934. // go through appropriate logon procedure
  935. #ifndef MPEXT_NO_GSS
  936. int i = logonseq[logontype][m_Operation.nOpState];
  937. if (m_pGssLayer)
  938. {
  939. if ((i == 0 || i == 6 || i == 9 || i == 10) &&
  940. (m_CurrentServer.user == L"anonymous" || m_CurrentServer.user == L""))
  941. {
  942. //Extract user from kerberos ticket
  943. char str[256];
  944. if (m_pGssLayer->GetUserFromKrbTicket(str))
  945. m_CurrentServer.user = str;
  946. if (m_CurrentServer.user == L"")
  947. {
  948. CGssNeedUserRequestData *pData = new CGssNeedUserRequestData;
  949. pData->nRequestID = m_pOwner->GetNextAsyncRequestID();
  950. pData->nOldOpState = m_Operation.nOpState;
  951. m_Operation.nOpState = CONNECT_GSS_NEEDUSER;
  952. if (!GetIntern()->PostMessage(FZ_MSG_MAKEMSG(FZ_MSG_ASYNCREQUEST, FZ_ASYNCREQUEST_GSS_NEEDUSER), (LPARAM)pData))
  953. {
  954. delete pData;
  955. }
  956. else
  957. {
  958. m_bCheckForTimeout = FALSE;
  959. }
  960. return;
  961. }
  962. }
  963. else if ((i == 1 || i == 11) && (m_CurrentServer.pass == GetOption(OPTION_ANONPWD) || m_CurrentServer.pass == ""))
  964. {
  965. CGssNeedPassRequestData *pData=new CGssNeedPassRequestData;
  966. pData->nRequestID=m_pOwner->GetNextAsyncRequestID();
  967. pData->nOldOpState = m_Operation.nOpState;
  968. m_Operation.nOpState = CONNECT_GSS_NEEDPASS;
  969. if (!GetIntern()->PostMessage(FZ_MSG_MAKEMSG(FZ_MSG_ASYNCREQUEST, FZ_ASYNCREQUEST_GSS_NEEDPASS), (LPARAM)pData))
  970. {
  971. delete pData;
  972. }
  973. else
  974. {
  975. m_bCheckForTimeout = FALSE;
  976. }
  977. return;
  978. }
  979. }
  980. #endif
  981. CLogonData *pData = static_cast<CLogonData *>(m_Operation.pData);
  982. bool needpass = (m_CurrentServer.pass == GetOption(OPTION_ANONPWD)) || (m_CurrentServer.pass == L"");
  983. switch(logonseq[logontype][m_Operation.nOpState])
  984. {
  985. case 0:
  986. temp=L"USER "+m_CurrentServer.user;
  987. break;
  988. case 1:
  989. if (needpass && !pData->waitForAsyncRequest && !pData->gotPassword)
  990. {
  991. CNeedPassRequestData *pNeedPassRequestData = new CNeedPassRequestData();
  992. pNeedPassRequestData->nRequestID = m_pOwner->GetNextAsyncRequestID();
  993. pNeedPassRequestData->nOldOpState = m_Operation.nOpState;
  994. m_Operation.nOpState = CONNECT_NEEDPASS;
  995. if (!GetIntern()->PostMessage(FZ_MSG_MAKEMSG(FZ_MSG_ASYNCREQUEST, FZ_ASYNCREQUEST_NEEDPASS), (LPARAM)pNeedPassRequestData))
  996. {
  997. delete pNeedPassRequestData;
  998. ResetOperation(FZ_REPLY_ERROR);
  999. }
  1000. else
  1001. {
  1002. m_bCheckForTimeout = FALSE;
  1003. }
  1004. pData->waitForAsyncRequest = true;
  1005. return;
  1006. }
  1007. else if (!needpass || pData->gotPassword)
  1008. {
  1009. temp=L"PASS "+NormalizePass(m_CurrentServer.pass);
  1010. }
  1011. else
  1012. {
  1013. return;
  1014. }
  1015. break;
  1016. case 2:
  1017. temp=L"ACCT "+GetOption(OPTION_FWPASS);
  1018. break;
  1019. case 3:
  1020. temp=L"USER "+GetOption(OPTION_FWUSER);
  1021. break;
  1022. case 4:
  1023. temp=L"PASS "+GetOption(OPTION_FWPASS);
  1024. break;
  1025. case 5:
  1026. temp=L"SITE "+hostname;
  1027. break;
  1028. case 6:
  1029. temp=L"USER "+m_CurrentServer.user+L"@"+hostname;
  1030. break;
  1031. case 7:
  1032. temp=L"OPEN "+hostname;
  1033. break;
  1034. case 8:
  1035. temp=L"USER "+GetOption(OPTION_FWUSER)+L"@"+hostname;
  1036. break;
  1037. case 9:
  1038. temp=L"USER "+m_CurrentServer.user+L"@"+hostname+L" "+GetOption(OPTION_FWUSER);
  1039. break;
  1040. case 10:
  1041. temp=L"USER "+m_CurrentServer.user+L"@"+GetOption(OPTION_FWUSER)+L"@"+hostname;
  1042. break;
  1043. case 11:
  1044. if (needpass && !pData->waitForAsyncRequest && !pData->gotPassword)
  1045. {
  1046. CNeedPassRequestData *pNeedPassRequestData = new CNeedPassRequestData();
  1047. pNeedPassRequestData->nRequestID = m_pOwner->GetNextAsyncRequestID();
  1048. pNeedPassRequestData->nOldOpState = m_Operation.nOpState;
  1049. m_Operation.nOpState = CONNECT_NEEDPASS;
  1050. if (!GetIntern()->PostMessage(FZ_MSG_MAKEMSG(FZ_MSG_ASYNCREQUEST, FZ_ASYNCREQUEST_NEEDPASS), (LPARAM)pNeedPassRequestData))
  1051. {
  1052. delete pNeedPassRequestData;
  1053. ResetOperation(FZ_REPLY_ERROR);
  1054. }
  1055. else
  1056. {
  1057. m_bCheckForTimeout = FALSE;
  1058. }
  1059. pData->waitForAsyncRequest = true;
  1060. return;
  1061. }
  1062. else if (!needpass || pData->gotPassword)
  1063. {
  1064. temp=L"PASS "+NormalizePass(m_CurrentServer.pass)+L"@"+GetOption(OPTION_FWPASS);
  1065. }
  1066. else
  1067. {
  1068. return;
  1069. }
  1070. break;
  1071. case 12:
  1072. if (m_CurrentServer.account == L"")
  1073. temp = L"ACCT default";
  1074. else
  1075. temp = L"ACCT " + m_CurrentServer.account;
  1076. break;
  1077. }
  1078. // send command, get response
  1079. if(!Send(temp))
  1080. return;
  1081. }
  1082. BOOL CFtpControlSocket::SendAuthSsl()
  1083. {
  1084. if (!Send("AUTH SSL"))
  1085. return false;
  1086. m_Operation.nOpState = CONNECT_SSL_NEGOTIATE;
  1087. return true;
  1088. }
  1089. #define BUFFERSIZE 4096
  1090. void CFtpControlSocket::OnReceive(int nErrorCode)
  1091. {
  1092. m_LastRecvTime = CTime::GetCurrentTime();
  1093. if (!m_pOwner->IsConnected())
  1094. {
  1095. if (!m_Operation.nOpMode)
  1096. {
  1097. LogMessage(FZ_LOG_INFO, L"Socket has been closed, don't process receive" );
  1098. return;
  1099. }
  1100. m_MultiLine = "";
  1101. CString str;
  1102. str.Format(IDS_STATUSMSG_CONNECTEDWITH, m_ServerName);
  1103. ShowStatus(str, FZ_LOG_PROGRESS);
  1104. m_pOwner->SetConnected(TRUE);
  1105. }
  1106. char *buffer = new char[BUFFERSIZE];
  1107. int numread = Receive(buffer, BUFFERSIZE);
  1108. if (numread == SOCKET_ERROR)
  1109. {
  1110. delete [] buffer;
  1111. buffer = NULL;
  1112. int Error = GetLastError();
  1113. if (Error != WSAEWOULDBLOCK)
  1114. {
  1115. LogError(Error);
  1116. ShowStatus(IDS_STATUSMSG_DISCONNECTED, FZ_LOG_ERROR);
  1117. DoClose();
  1118. }
  1119. else
  1120. {
  1121. LogSocketMessageRaw(FZ_LOG_INFO, L"No data to read");
  1122. }
  1123. return;
  1124. }
  1125. if (!numread)
  1126. {
  1127. delete [] buffer;
  1128. buffer = NULL;
  1129. ShowStatus(IDS_STATUSMSG_DISCONNECTED, FZ_LOG_ERROR);
  1130. DoClose();
  1131. }
  1132. if (LoggingMessageType(FZ_LOG_INFO))
  1133. {
  1134. CString str;
  1135. str.Format(L"Read %d bytes", numread);
  1136. LogSocketMessageRaw(FZ_LOG_INFO, str);
  1137. }
  1138. for (int i=0; i < numread; i++)
  1139. {
  1140. if ((buffer[i] == '\r') || (buffer[i] == '\n') || (buffer[i] == 0))
  1141. {
  1142. if (!m_RecvBuffer.empty() && m_RecvBuffer.back() != "")
  1143. {
  1144. USES_CONVERSION;
  1145. if (m_bUTF8)
  1146. {
  1147. // convert from UTF-8 to ANSI
  1148. LPCSTR utf8 = (LPCSTR)m_RecvBuffer.back();
  1149. if (DetectUTF8Encoding(RawByteString(utf8)) == etANSI)
  1150. {
  1151. if (m_CurrentServer.nUTF8 != 1)
  1152. {
  1153. LogMessage(FZ_LOG_WARNING, L"Server does not send proper UTF-8, falling back to local charset");
  1154. m_bUTF8 = false;
  1155. }
  1156. ShowStatus(A2CT(utf8), FZ_LOG_REPLY);
  1157. }
  1158. else
  1159. {
  1160. int len = MultiByteToWideChar(CP_UTF8, 0, utf8, -1, NULL, 0);
  1161. if (!len)
  1162. m_RecvBuffer.back() = "";
  1163. else
  1164. {
  1165. LPWSTR p1 = new WCHAR[len + 1];
  1166. MultiByteToWideChar(CP_UTF8, 0, utf8, -1 , (LPWSTR)p1, len + 1);
  1167. ShowStatus(W2CT(p1), FZ_LOG_REPLY);
  1168. delete [] p1;
  1169. }
  1170. }
  1171. }
  1172. else
  1173. {
  1174. ShowStatus(A2CT(m_RecvBuffer.back()), FZ_LOG_REPLY);
  1175. }
  1176. // Check for multi-line responses
  1177. // Partially duplicated in TFTPFileSystem::HandleReplyStatus
  1178. if (m_RecvBuffer.back().GetLength() > 3)
  1179. {
  1180. if (m_MultiLine != "")
  1181. {
  1182. if (m_RecvBuffer.back().Left(4) != m_MultiLine)
  1183. {
  1184. CStringA line = m_RecvBuffer.back();
  1185. if (line.Left(4) == m_MultiLine.Left(3) + '-')
  1186. {
  1187. line = line.Mid(4, line.GetLength() - 4);
  1188. }
  1189. DiscardLine(line);
  1190. m_RecvBuffer.pop_back();
  1191. }
  1192. else // end of multi-line found
  1193. {
  1194. m_MultiLine = "";
  1195. LPARAM lParam = 0;
  1196. #ifdef _DEBUG
  1197. lParam = GetTickCount();
  1198. #endif
  1199. m_pOwner->PostThreadMessage(m_pOwner->m_nInternalMessageID, FZAPI_THREADMSG_PROCESSREPLY, lParam);
  1200. }
  1201. }
  1202. // start of new multi-line
  1203. else if (m_RecvBuffer.back()[3] == '-')
  1204. {
  1205. // DDD<SP> is the end of a multi-line response
  1206. m_MultiLine = m_RecvBuffer.back().Left(3) + ' ';
  1207. m_RecvBuffer.pop_back();
  1208. }
  1209. else
  1210. {
  1211. LPARAM lParam = 0;
  1212. #ifdef _DEBUG
  1213. lParam = GetTickCount();
  1214. #endif
  1215. m_pOwner->PostThreadMessage(m_pOwner->m_nInternalMessageID, FZAPI_THREADMSG_PROCESSREPLY, lParam);
  1216. }
  1217. }
  1218. else
  1219. {
  1220. m_RecvBuffer.pop_back();
  1221. }
  1222. m_RecvBuffer.push_back("");
  1223. }
  1224. }
  1225. else
  1226. {
  1227. //The command may only be 2000 chars long. This ensures that a malicious user can't
  1228. //send extremely large commands to fill the memory of the server
  1229. if (m_RecvBuffer.empty())
  1230. m_RecvBuffer.push_back("");
  1231. if (m_RecvBuffer.back().GetLength() < 2000)
  1232. m_RecvBuffer.back() += buffer[i];
  1233. }
  1234. }
  1235. delete [] buffer;
  1236. }
  1237. void CFtpControlSocket::ProcessReply()
  1238. {
  1239. if (m_RecvBuffer.empty())
  1240. return;
  1241. if (m_awaitsReply)
  1242. {
  1243. if (m_sendBuffer)
  1244. TriggerEvent(FD_WRITE);
  1245. m_awaitsReply = false;
  1246. }
  1247. CString reply = GetReply();
  1248. if ( reply == L"" )
  1249. return;
  1250. // After Cancel, we might have to skip a reply
  1251. if (m_skipReply)
  1252. {
  1253. m_skipReply = false;
  1254. m_RecvBuffer.pop_front();
  1255. return;
  1256. }
  1257. if (m_bKeepAliveActive)
  1258. {
  1259. m_bKeepAliveActive = FALSE;
  1260. m_pOwner->PostThreadMessage(m_pOwner->m_nInternalMessageID,FZAPI_THREADMSG_POSTKEEPALIVE,0);
  1261. }
  1262. else if (m_Operation.nOpMode&CSMODE_CONNECT)
  1263. LogOnToServer();
  1264. else if (m_Operation.nOpMode& (CSMODE_COMMAND|CSMODE_CHMOD) )
  1265. {
  1266. if (GetReplyCode()== 2 || GetReplyCode()== 3)
  1267. ResetOperation(FZ_REPLY_OK);
  1268. else
  1269. ResetOperation(FZ_REPLY_ERROR);
  1270. }
  1271. else if (m_Operation.nOpMode&CSMODE_TRANSFER)
  1272. {
  1273. FileTransfer(0);
  1274. }
  1275. else if (m_Operation.nOpMode&CSMODE_LIST)
  1276. List(FALSE);
  1277. else if (m_Operation.nOpMode&CSMODE_LISTFILE)
  1278. ListFile(L"", CServerPath());
  1279. else if (m_Operation.nOpMode&CSMODE_DELETE)
  1280. Delete( L"",CServerPath(), false);
  1281. else if (m_Operation.nOpMode&CSMODE_RMDIR)
  1282. RemoveDir( L"",CServerPath());
  1283. else if (m_Operation.nOpMode&CSMODE_MKDIR)
  1284. MakeDir(CServerPath());
  1285. else if (m_Operation.nOpMode&CSMODE_RENAME)
  1286. Rename(L"", L"", CServerPath(), CServerPath());
  1287. if (!m_RecvBuffer.empty())
  1288. m_RecvBuffer.pop_front();
  1289. }
  1290. void CFtpControlSocket::OnConnect(int nErrorCode)
  1291. {
  1292. if (!m_Operation.nOpMode)
  1293. {
  1294. if (!m_pOwner->IsConnected())
  1295. DoClose();
  1296. return;
  1297. }
  1298. if (!nErrorCode)
  1299. {
  1300. if (!m_pOwner->IsConnected())
  1301. {
  1302. m_MultiLine = "";
  1303. m_pOwner->SetConnected(TRUE);
  1304. CString str;
  1305. str.Format(
  1306. m_pSslLayer ? IDS_STATUSMSG_CONNECTEDWITHSSL : IDS_STATUSMSG_CONNECTEDWITH,
  1307. m_ServerName);
  1308. ShowStatus(str,FZ_LOG_PROGRESS);
  1309. }
  1310. }
  1311. else
  1312. {
  1313. if (nErrorCode == WSAHOST_NOT_FOUND)
  1314. {
  1315. CString str;
  1316. str.Format(IDS_ERRORMSG_CANTRESOLVEHOST2, m_ServerName);
  1317. ShowStatus(str, FZ_LOG_ERROR);
  1318. }
  1319. else
  1320. {
  1321. TCHAR Buffer[255];
  1322. int Len = FormatMessage(
  1323. FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_ARGUMENT_ARRAY,
  1324. NULL, nErrorCode, 0, Buffer, LENOF(Buffer), NULL);
  1325. while ((Len > 0) && ((Buffer[Len - 1] >= 0) && (Buffer[Len - 1] <= 32)))
  1326. {
  1327. --Len;
  1328. }
  1329. ShowStatus(CString(Buffer, Len), FZ_LOG_ERROR);
  1330. }
  1331. DoClose();
  1332. }
  1333. }
  1334. BOOL CFtpControlSocket::Send(CString str)
  1335. {
  1336. USES_CONVERSION;
  1337. ShowStatus(str, FZ_LOG_COMMAND);
  1338. str += L"\r\n";
  1339. int res = 0;
  1340. if (m_bUTF8)
  1341. {
  1342. LPCWSTR unicode = T2CW(str);
  1343. int len = WideCharToMultiByte(CP_UTF8, 0, unicode, -1, 0, 0, 0, 0);
  1344. if (!len)
  1345. {
  1346. ShowStatus(IDS_ERRORMSG_CANTSENDCOMMAND, FZ_LOG_ERROR);
  1347. DoClose();
  1348. return FALSE;
  1349. }
  1350. char* utf8 = new char[len + 1];
  1351. WideCharToMultiByte(CP_UTF8, 0, unicode, -1, utf8, len + 1, 0, 0);
  1352. int sendLen = strlen(utf8);
  1353. if (!m_awaitsReply && !m_sendBuffer)
  1354. res = CAsyncSocketEx::Send(utf8, strlen(utf8));
  1355. else
  1356. res = -2;
  1357. if ((res == SOCKET_ERROR && GetLastError() != WSAEWOULDBLOCK) || !res)
  1358. {
  1359. delete [] utf8;
  1360. ShowStatus(IDS_ERRORMSG_CANTSENDCOMMAND, FZ_LOG_ERROR);
  1361. DoClose();
  1362. return FALSE;
  1363. }
  1364. if (res != sendLen)
  1365. {
  1366. if (res < 0)
  1367. res = 0;
  1368. if (!m_sendBuffer)
  1369. {
  1370. m_sendBuffer = new char[sendLen - res];
  1371. memcpy(m_sendBuffer, utf8 + res, sendLen - res);
  1372. m_sendBufferLen = sendLen - res;
  1373. }
  1374. else
  1375. {
  1376. char* tmp = new char[m_sendBufferLen + sendLen - res];
  1377. memcpy(tmp, m_sendBuffer, m_sendBufferLen);
  1378. memcpy(tmp + m_sendBufferLen, utf8 + res, sendLen - res);
  1379. delete [] m_sendBuffer;
  1380. m_sendBuffer = tmp;
  1381. m_sendBufferLen += sendLen - res;
  1382. }
  1383. }
  1384. delete [] utf8;
  1385. }
  1386. else
  1387. {
  1388. LPCSTR lpszAsciiSend = T2CA(str);
  1389. int sendLen = strlen(lpszAsciiSend);
  1390. if (!m_awaitsReply && !m_sendBuffer)
  1391. res = CAsyncSocketEx::Send(lpszAsciiSend, strlen(lpszAsciiSend));
  1392. else
  1393. res = -2;
  1394. if ((res == SOCKET_ERROR && GetLastError() != WSAEWOULDBLOCK) || !res)
  1395. {
  1396. ShowStatus(IDS_ERRORMSG_CANTSENDCOMMAND, FZ_LOG_ERROR);
  1397. DoClose();
  1398. return FALSE;
  1399. }
  1400. if (res != sendLen)
  1401. {
  1402. if (res < 0)
  1403. res = 0;
  1404. if (!m_sendBuffer)
  1405. {
  1406. m_sendBuffer = new char[sendLen - res];
  1407. memcpy(m_sendBuffer, lpszAsciiSend, sendLen - res);
  1408. m_sendBufferLen = sendLen - res;
  1409. }
  1410. else
  1411. {
  1412. char* tmp = new char[m_sendBufferLen + sendLen - res];
  1413. memcpy(tmp, m_sendBuffer, m_sendBufferLen);
  1414. memcpy(tmp + m_sendBufferLen, lpszAsciiSend + res, sendLen - res);
  1415. delete [] m_sendBuffer;
  1416. m_sendBuffer = tmp;
  1417. m_sendBufferLen += sendLen - res;
  1418. }
  1419. }
  1420. }
  1421. if (res > 0)
  1422. {
  1423. m_awaitsReply = true;
  1424. m_LastSendTime = CTime::GetCurrentTime();
  1425. // Count timeout since the last request, not only since the last received data
  1426. // otherwise we may happen to timeout immediately after sending request if
  1427. // CheckForTimeout occurs in between and we haven't received any data for a while
  1428. m_LastRecvTime = m_LastSendTime;
  1429. }
  1430. return TRUE;
  1431. }
  1432. int CFtpControlSocket::GetReplyCode()
  1433. {
  1434. if (m_RecvBuffer.empty())
  1435. return 0;
  1436. CStringA str = m_RecvBuffer.front();
  1437. if (str == "")
  1438. return 0;
  1439. else
  1440. return str[0]-'0';
  1441. }
  1442. void CFtpControlSocket::DoClose(int nError /*=0*/)
  1443. {
  1444. LogMessage(FZ_LOG_INFO, L"Connection closed");
  1445. m_bCheckForTimeout=TRUE;
  1446. m_pOwner->SetConnected(FALSE);
  1447. m_bKeepAliveActive=FALSE;
  1448. if (nError & FZ_REPLY_CRITICALERROR)
  1449. nError |= FZ_REPLY_ERROR;
  1450. ResetOperation(FZ_REPLY_ERROR|FZ_REPLY_DISCONNECTED|nError);
  1451. m_RecvBuffer.clear();
  1452. m_MultiLine = "";
  1453. m_bDidRejectCertificate = FALSE;
  1454. #ifndef MPEXT_NO_ZLIB
  1455. m_useZlib = false;
  1456. m_zlibSupported = false;
  1457. m_zlibLevel = 0;
  1458. #endif
  1459. m_bUTF8 = false;
  1460. m_hasClntCmd = false;
  1461. m_serverCapabilities.Clear();
  1462. m_ListFile = "";
  1463. m_awaitsReply = false;
  1464. m_skipReply = false;
  1465. delete [] m_sendBuffer;
  1466. m_sendBuffer = 0;
  1467. m_sendBufferLen = 0;
  1468. m_bProtP = false;
  1469. m_mayBeMvsFilesystem = false;
  1470. m_mayBeBS2000Filesystem = false;
  1471. Close();
  1472. }
  1473. void CFtpControlSocket::Disconnect()
  1474. {
  1475. DebugAssert(!m_Operation.nOpMode);
  1476. m_Operation.nOpMode=CSMODE_DISCONNECT;
  1477. DoClose();
  1478. ShowStatus(IDS_STATUSMSG_DISCONNECTED,FZ_LOG_STATUS); //Send the disconnected message to the message log
  1479. }
  1480. void CFtpControlSocket::CheckForTimeout()
  1481. {
  1482. if (!m_Operation.nOpMode && !m_bKeepAliveActive)
  1483. return;
  1484. if (!m_bCheckForTimeout)
  1485. return;
  1486. int delay=GetOptionVal(OPTION_TIMEOUTLENGTH);
  1487. if (m_pTransferSocket)
  1488. {
  1489. int res = m_pTransferSocket->CheckForTimeout(delay);
  1490. if (res != 0)
  1491. {
  1492. if (res == 1)
  1493. {
  1494. // avoid trying to set keepalive command right after the transfer finishes
  1495. m_LastSendTime = CTime::GetCurrentTime();
  1496. }
  1497. return;
  1498. }
  1499. }
  1500. CTimeSpan span=CTime::GetCurrentTime()-m_LastRecvTime;
  1501. if (span.GetTotalSeconds()>=delay)
  1502. {
  1503. ShowTimeoutError(IDS_CONTROL_CONNECTION);
  1504. DoClose();
  1505. }
  1506. }
  1507. void CFtpControlSocket::FtpCommand(LPCTSTR pCommand)
  1508. {
  1509. m_Operation.nOpMode=CSMODE_COMMAND;
  1510. Send(pCommand);
  1511. }
  1512. bool CFtpControlSocket::UsingMlsd()
  1513. {
  1514. return
  1515. // 0 = on, 1 = off, 2 = auto
  1516. (m_CurrentServer.iUseMlsd == 0) ||
  1517. ((m_CurrentServer.iUseMlsd != 1) &&
  1518. (m_serverCapabilities.GetCapability(mlsd_command) == yes));
  1519. }
  1520. bool CFtpControlSocket::UsingUtf8()
  1521. {
  1522. return m_bUTF8;
  1523. }
  1524. std::string CFtpControlSocket::GetTlsVersionStr()
  1525. {
  1526. if (m_pSslLayer != NULL)
  1527. {
  1528. return m_pSslLayer->GetTlsVersionStr();
  1529. }
  1530. else
  1531. {
  1532. return std::string();
  1533. }
  1534. }
  1535. std::string CFtpControlSocket::GetCipherName()
  1536. {
  1537. if (m_pSslLayer != NULL)
  1538. {
  1539. return m_pSslLayer->GetCipherName();
  1540. }
  1541. else
  1542. {
  1543. return std::string();
  1544. }
  1545. }
  1546. CString CFtpControlSocket::GetListingCmd()
  1547. {
  1548. CString cmd;
  1549. if (UsingMlsd())
  1550. {
  1551. cmd = L"MLSD";
  1552. }
  1553. else
  1554. {
  1555. cmd = L"LIST";
  1556. if (GetOptionVal(OPTION_MPEXT_SHOWHIDDEN) && !(m_CurrentServer.nServerType & (FZ_SERVERTYPE_SUB_FTP_MVS | FZ_SERVERTYPE_SUB_FTP_VMS | FZ_SERVERTYPE_SUB_FTP_BS2000)))
  1557. cmd += L" -a";
  1558. }
  1559. return cmd;
  1560. }
  1561. void CFtpControlSocket::List(BOOL bFinish, int nError /*=FALSE*/, CServerPath path /*=CServerPath()*/, CString subdir /*=L""*/)
  1562. {
  1563. USES_CONVERSION;
  1564. #define LIST_INIT -1
  1565. #define LIST_PWD 0
  1566. #define LIST_CWD 1
  1567. #define LIST_PWD2 2
  1568. #define LIST_CWD2 3
  1569. #define LIST_PWD3 4
  1570. #define LIST_MODE 5
  1571. #define LIST_OPTS 6
  1572. #define LIST_PORT_PASV 7
  1573. #define LIST_TYPE 8
  1574. #define LIST_LIST 9
  1575. #define LIST_WAITFINISH 10
  1576. DebugAssert(!m_Operation.nOpMode || m_Operation.nOpMode&CSMODE_LIST);
  1577. m_Operation.nOpMode|=CSMODE_LIST;
  1578. if (!m_pOwner->IsConnected())
  1579. {
  1580. ResetOperation(FZ_REPLY_ERROR|FZ_REPLY_NOTCONNECTED);
  1581. return;
  1582. }
  1583. if (bFinish || nError)
  1584. if (m_Operation.nOpMode!=CSMODE_LIST)
  1585. return; //Old message coming in
  1586. if (nError)
  1587. {
  1588. delete m_pTransferSocket;
  1589. m_pTransferSocket=0;
  1590. if (nError&CSMODE_TRANSFERTIMEOUT)
  1591. DoClose();
  1592. else
  1593. ResetOperation(FZ_REPLY_ERROR);
  1594. return;
  1595. }
  1596. CListData *pData = static_cast<CListData *>(m_Operation.pData);
  1597. if (bFinish)
  1598. {
  1599. if (!m_pTransferSocket || m_pTransferSocket->m_bListening)
  1600. {
  1601. delete m_pDirectoryListing;
  1602. m_pDirectoryListing = 0;
  1603. delete m_pTransferSocket;
  1604. m_pTransferSocket = 0;
  1605. ResetOperation(FZ_REPLY_ERROR);
  1606. return;
  1607. }
  1608. int num = 0;
  1609. pData->pDirectoryListing = new t_directory;
  1610. pData->pDirectoryListing->direntry = m_pTransferSocket->m_pListResult->getList(num);
  1611. pData->pDirectoryListing->num = num;
  1612. if (m_pTransferSocket->m_pListResult->m_server.nServerType & FZ_SERVERTYPE_SUB_FTP_VMS && m_CurrentServer.nServerType & FZ_SERVERTYPE_FTP)
  1613. m_CurrentServer.nServerType |= FZ_SERVERTYPE_SUB_FTP_VMS;
  1614. pData->pDirectoryListing->server = m_CurrentServer;
  1615. pData->pDirectoryListing->path.SetServer(pData->pDirectoryListing->server);
  1616. if (pData->rawpwd != L"")
  1617. {
  1618. if (!pData->pDirectoryListing->path.SetPath(pData->rawpwd))
  1619. {
  1620. delete m_pDirectoryListing;
  1621. m_pDirectoryListing=0;
  1622. delete m_pTransferSocket;
  1623. m_pTransferSocket=0;
  1624. ResetOperation(FZ_REPLY_ERROR);
  1625. return;
  1626. }
  1627. m_pOwner->SetCurrentPath(pData->pDirectoryListing->path);
  1628. }
  1629. else
  1630. pData->pDirectoryListing->path = m_pOwner->GetCurrentPath();
  1631. if (m_Operation.nOpState!=LIST_WAITFINISH)
  1632. {
  1633. return;
  1634. }
  1635. else
  1636. {
  1637. delete m_pTransferSocket;
  1638. m_pTransferSocket=0;
  1639. }
  1640. }
  1641. if (m_Operation.nOpState==LIST_WAITFINISH)
  1642. {
  1643. if (!bFinish)
  1644. {
  1645. if (pData->nFinish==-1)
  1646. {
  1647. int code=GetReplyCode();
  1648. if (code== 2)
  1649. {
  1650. pData->nFinish=1;
  1651. }
  1652. else
  1653. pData->nFinish=0;
  1654. }
  1655. }
  1656. else
  1657. {
  1658. if (m_pTransferSocket)
  1659. delete m_pTransferSocket;
  1660. m_pTransferSocket=0;
  1661. }
  1662. if (pData->nFinish==0)
  1663. {
  1664. ResetOperation(FZ_REPLY_ERROR);
  1665. return;
  1666. }
  1667. else if (pData->pDirectoryListing && pData->nFinish==1)
  1668. {
  1669. ShowStatus(IDS_STATUSMSG_DIRLISTSUCCESSFUL,FZ_LOG_PROGRESS);
  1670. SetDirectoryListing(pData->pDirectoryListing);
  1671. ResetOperation(FZ_REPLY_OK);
  1672. return;
  1673. }
  1674. return;
  1675. }
  1676. else if (m_Operation.nOpState != LIST_INIT)
  1677. {
  1678. CString retmsg = GetReply();
  1679. BOOL error = FALSE;
  1680. int code = GetReplyCode();
  1681. switch (m_Operation.nOpState)
  1682. {
  1683. case LIST_PWD: //Reply to PWD command
  1684. if (code != 2 && code !=3 )
  1685. {
  1686. error = TRUE;
  1687. break;
  1688. }
  1689. pData->rawpwd = retmsg;
  1690. if ((m_mayBeMvsFilesystem || m_mayBeBS2000Filesystem) && m_CurrentServer.nServerType & FZ_SERVERTYPE_FTP &&
  1691. pData->rawpwd[0] != L'/')
  1692. {
  1693. m_mayBeMvsFilesystem = false;
  1694. m_mayBeBS2000Filesystem = false;
  1695. if (m_mayBeBS2000Filesystem)
  1696. m_CurrentServer.nServerType |= FZ_SERVERTYPE_SUB_FTP_BS2000;
  1697. else
  1698. m_CurrentServer.nServerType |= FZ_SERVERTYPE_SUB_FTP_MVS;
  1699. if (!pData->path.IsEmpty())
  1700. pData->path.SetServer(m_CurrentServer);
  1701. }
  1702. if (!ParsePwdReply(pData->rawpwd))
  1703. return;
  1704. if (pData->path.IsEmpty() || pData->path == m_pOwner->GetCurrentPath())
  1705. {
  1706. m_Operation.nOpState = NeedModeCommand() ? LIST_MODE : (NeedOptsCommand() ? LIST_OPTS : LIST_TYPE);
  1707. }
  1708. else
  1709. m_Operation.nOpState = LIST_CWD;
  1710. break;
  1711. case LIST_CWD:
  1712. if (code != 2 && code != 3)
  1713. error = TRUE;
  1714. m_Operation.nOpState = LIST_PWD2;
  1715. break;
  1716. case LIST_PWD2: //Reply to PWD command
  1717. if (code !=2 && code != 3)
  1718. error = TRUE;
  1719. else
  1720. {
  1721. pData->rawpwd = retmsg;
  1722. if (!ParsePwdReply(pData->rawpwd))
  1723. return;
  1724. }
  1725. if (pData->subdir != L"")
  1726. {
  1727. if (pData->path != m_pOwner->GetCurrentPath())
  1728. {
  1729. ResetOperation(FZ_REPLY_ERROR);
  1730. return;
  1731. }
  1732. m_Operation.nOpState = LIST_CWD2;
  1733. }
  1734. else
  1735. {
  1736. m_Operation.nOpState = NeedModeCommand() ? LIST_MODE : (NeedOptsCommand() ? LIST_OPTS : LIST_TYPE);
  1737. }
  1738. break;
  1739. case LIST_CWD2:
  1740. if (pData->lastCmdSentCDUP)
  1741. {
  1742. CString reply = GetReply().Left(3);
  1743. int replycode = _ttoi(reply);
  1744. if (replycode >= 500 && replycode < 505)
  1745. break;
  1746. pData->lastCmdSentCDUP = false;
  1747. }
  1748. if (code != 2 && code != 3)
  1749. error = TRUE;
  1750. m_Operation.nOpState = LIST_PWD3;
  1751. break;
  1752. case LIST_PWD3: //Reply to PWD command
  1753. if (code != 2 && code != 3)
  1754. error = TRUE;
  1755. else
  1756. {
  1757. pData->rawpwd = retmsg;
  1758. if (!ParsePwdReply(pData->rawpwd))
  1759. return;
  1760. }
  1761. m_Operation.nOpState = NeedModeCommand() ? LIST_MODE : (NeedOptsCommand() ? LIST_OPTS : LIST_TYPE);
  1762. break;
  1763. case LIST_MODE:
  1764. #ifndef MPEXT_NO_ZLIB
  1765. if (code == 2 || code == 3)
  1766. m_useZlib = !m_useZlib;
  1767. #endif
  1768. m_Operation.nOpState = NeedOptsCommand() ? LIST_OPTS : LIST_TYPE;
  1769. break;
  1770. case LIST_OPTS:
  1771. #ifndef MPEXT_NO_ZLIB
  1772. if (code == 2 || code == 3)
  1773. m_zlibLevel = pData->newZlibLevel;
  1774. #endif
  1775. m_Operation.nOpState = LIST_TYPE;
  1776. break;
  1777. case LIST_TYPE:
  1778. if (code!=2 && code!=3)
  1779. error=TRUE;
  1780. m_Operation.nOpState = LIST_PORT_PASV;
  1781. break;
  1782. case LIST_PORT_PASV:
  1783. if (code!=2 && code!=3)
  1784. {
  1785. error=TRUE;
  1786. break;
  1787. }
  1788. if (pData->bPasv)
  1789. {
  1790. CString temp;
  1791. int i,j;
  1792. // MP EXT
  1793. if((i=retmsg.Find(L"("))>=0&&(j=retmsg.Find(L")"))>=0)
  1794. {
  1795. i++;
  1796. j--;
  1797. }
  1798. else
  1799. {
  1800. // MP EXT
  1801. if ((i=retmsg.Mid(4).FindOneOf(L"0123456789"))>=0)
  1802. {
  1803. i += 4;
  1804. j = retmsg.GetLength() - 1;
  1805. }
  1806. else
  1807. {
  1808. if (!pData->bTriedPortPasvOnce)
  1809. {
  1810. pData->bTriedPortPasvOnce = TRUE;
  1811. pData->bPasv = !pData->bPasv;
  1812. }
  1813. else
  1814. error=TRUE;
  1815. break;
  1816. }
  1817. }
  1818. temp = retmsg.Mid(i,(j-i)+1);
  1819. if (GetFamily() == AF_INET)
  1820. {
  1821. i=temp.ReverseFind(L',');
  1822. pData->port=atol( T2CA( temp.Right(temp.GetLength()-(i+1)) ) ); //get ls byte of server socket
  1823. temp=temp.Left(i);
  1824. i=temp.ReverseFind(L',');
  1825. pData->port+=256*atol( T2CA( temp.Right(temp.GetLength()-(i+1)) ) ); // add ms byte to server socket
  1826. pData->host = temp.Left(i);
  1827. pData->host.Replace(L',', L'.');
  1828. if (!CheckForcePasvIp(pData->host))
  1829. {
  1830. error = TRUE;
  1831. break;
  1832. }
  1833. }
  1834. else if (GetFamily() == AF_INET6)
  1835. {
  1836. temp = temp.Mid(3);
  1837. pData->port = atol( T2CA(temp.Left(temp.GetLength() - 1) ) );
  1838. if (pData->port < 0 || pData->port > 65535)
  1839. {
  1840. LogMessage(FZ_LOG_WARNING, L"Port %u not valid", pData->port);
  1841. error = TRUE;
  1842. break;
  1843. }
  1844. pData->host = m_CurrentServer.host;
  1845. }
  1846. else
  1847. {
  1848. LogMessage(FZ_LOG_WARNING, L"Protocol %d not supported", GetFamily());
  1849. error = TRUE;
  1850. break;
  1851. }
  1852. }
  1853. m_Operation.nOpState = LIST_LIST;
  1854. break;
  1855. case LIST_LIST:
  1856. if (IsMisleadingListResponse())
  1857. {
  1858. ShowStatus(IDS_STATUSMSG_DIRLISTSUCCESSFUL, FZ_LOG_PROGRESS);
  1859. t_directory listing;
  1860. listing.server = m_CurrentServer;
  1861. listing.path = m_pOwner->GetCurrentPath();
  1862. SetDirectoryListing(&listing);
  1863. ResetOperation(FZ_REPLY_OK);
  1864. return;
  1865. }
  1866. else if (code != 1)
  1867. error = TRUE;
  1868. else
  1869. m_Operation.nOpState = LIST_WAITFINISH;
  1870. break;
  1871. default:
  1872. error = TRUE;
  1873. }
  1874. if (error)
  1875. {
  1876. ResetOperation(FZ_REPLY_ERROR);
  1877. return;
  1878. }
  1879. }
  1880. if (m_Operation.nOpState==LIST_INIT)
  1881. { //Initialize some variables
  1882. pData=new CListData;
  1883. pData->path=path;
  1884. pData->subdir=subdir;
  1885. m_Operation.pData=pData;
  1886. ShowStatus(IDS_STATUSMSG_RETRIEVINGDIRLIST, FZ_LOG_PROGRESS);
  1887. pData->nFinish=-1;
  1888. if (m_pDirectoryListing)
  1889. {
  1890. delete m_pDirectoryListing;
  1891. m_pDirectoryListing=0;
  1892. }
  1893. if (GetOptionVal(OPTION_PROXYTYPE)!=PROXYTYPE_NOPROXY)
  1894. pData->bPasv = TRUE;
  1895. else if (m_CurrentServer.nPasv == 1)
  1896. pData->bPasv = TRUE;
  1897. else if (m_CurrentServer.nPasv == 2)
  1898. pData->bPasv = FALSE;
  1899. else
  1900. pData->bPasv = GetOptionVal(OPTION_PASV);
  1901. CServerPath path = pData->path;
  1902. CServerPath realpath = m_pOwner->GetCurrentPath();
  1903. if (!realpath.IsEmpty())
  1904. {
  1905. if (!pData->path.IsEmpty() && pData->path != realpath)
  1906. m_Operation.nOpState=LIST_CWD;
  1907. else if (!pData->path.IsEmpty() && pData->subdir!=L"")
  1908. m_Operation.nOpState=LIST_CWD2;
  1909. else
  1910. {
  1911. m_Operation.nOpState = NeedModeCommand() ? LIST_MODE : (NeedOptsCommand() ? LIST_OPTS : LIST_TYPE);;
  1912. }
  1913. }
  1914. else
  1915. m_Operation.nOpState = LIST_PWD;
  1916. }
  1917. CString cmd;
  1918. if (m_Operation.nOpState == LIST_PWD)
  1919. cmd=L"PWD";
  1920. else if (m_Operation.nOpState==LIST_CWD)
  1921. cmd=L"CWD " + pData->path.GetPathUnterminated(); //Command to retrieve the current directory
  1922. else if (m_Operation.nOpState==LIST_PWD2)
  1923. cmd=L"PWD";
  1924. else if (m_Operation.nOpState==LIST_CWD2)
  1925. {
  1926. if (!pData->subdir)
  1927. {
  1928. ResetOperation(FZ_REPLY_ERROR);
  1929. return;
  1930. }
  1931. if (pData->subdir != L".." )
  1932. {
  1933. if (m_CurrentServer.nServerType & FZ_SERVERTYPE_SUB_FTP_VMS)
  1934. {
  1935. CServerPath path = m_pOwner->GetCurrentPath();
  1936. path.AddSubdir(pData->subdir);
  1937. cmd = L"CWD " + path.GetPathUnterminated();
  1938. }
  1939. else
  1940. cmd = L"CWD " + pData->subdir;
  1941. }
  1942. else
  1943. {
  1944. if (pData->lastCmdSentCDUP)
  1945. {
  1946. pData->lastCmdSentCDUP = false;
  1947. cmd = L"CWD ..";
  1948. }
  1949. else
  1950. {
  1951. pData->lastCmdSentCDUP = true;
  1952. cmd = L"CDUP";
  1953. }
  1954. }
  1955. }
  1956. else if (m_Operation.nOpState == LIST_PWD3)
  1957. cmd=L"PWD";
  1958. else if (m_Operation.nOpState == LIST_MODE)
  1959. {
  1960. #ifdef MPEXT_NO_ZLIB
  1961. DebugFail();
  1962. #else
  1963. if (m_useZlib)
  1964. #endif
  1965. cmd = L"MODE S";
  1966. #ifndef MPEXT_NO_ZLIB
  1967. else
  1968. cmd = L"MODE Z";
  1969. #endif
  1970. }
  1971. else if (m_Operation.nOpState == LIST_OPTS)
  1972. {
  1973. #ifdef MPEXT_NO_ZLIB
  1974. DebugFail();
  1975. #else
  1976. pData->newZlibLevel = GetOptionVal(OPTION_MODEZ_LEVEL);
  1977. cmd.Format(L"OPTS MODE Z LEVEL %d", pData->newZlibLevel);
  1978. #endif
  1979. }
  1980. else if (m_Operation.nOpState == LIST_PORT_PASV)
  1981. {
  1982. m_pTransferSocket = new CTransferSocket(this, m_Operation.nOpMode);
  1983. #ifndef MPEXT_NO_ZLIB
  1984. if (m_useZlib)
  1985. {
  1986. if (!m_pTransferSocket->InitZlib(m_zlibLevel))
  1987. {
  1988. ShowStatus(L"Failed to initialize zlib", FZ_LOG_ERROR);
  1989. ResetOperation(FZ_REPLY_ERROR);
  1990. return;
  1991. }
  1992. }
  1993. #endif
  1994. m_pTransferSocket->m_nInternalMessageID = m_pOwner->m_nInternalMessageID;
  1995. #ifndef MPEXT_NO_GSS
  1996. if (m_pGssLayer && m_pGssLayer->AuthSuccessful())
  1997. m_pTransferSocket->UseGSS(m_pGssLayer);
  1998. #endif
  1999. m_pTransferSocket->SetFamily(GetFamily());
  2000. if (!m_pTransferSocket->Create(m_pSslLayer && m_bProtP) ||
  2001. !m_pTransferSocket->AsyncSelect())
  2002. {
  2003. ShowStatus(L"Failed to create socket", FZ_LOG_ERROR);
  2004. ResetOperation(FZ_REPLY_ERROR);
  2005. return;
  2006. }
  2007. if (pData->bPasv)
  2008. switch (GetFamily())
  2009. {
  2010. case AF_INET:
  2011. cmd = L"PASV";
  2012. break;
  2013. case AF_INET6:
  2014. cmd = L"EPSV";
  2015. break;
  2016. default:
  2017. LogMessage(FZ_LOG_WARNING, L"Protocol %d not supported", GetFamily());
  2018. ResetOperation(FZ_REPLY_ERROR);
  2019. return;
  2020. }
  2021. else
  2022. {
  2023. m_pTransferSocket->m_bListening=TRUE;
  2024. if (m_pProxyLayer)
  2025. {
  2026. SOCKADDR_IN addr;
  2027. int len=sizeof(addr);
  2028. if (!m_pProxyLayer->GetPeerName((SOCKADDR *)&addr,&len))
  2029. {
  2030. ResetOperation(FZ_REPLY_ERROR);
  2031. return;
  2032. }
  2033. else if (!m_pTransferSocket->Listen(addr.sin_addr.S_un.S_addr))
  2034. {
  2035. ResetOperation(FZ_REPLY_ERROR);
  2036. return;
  2037. }
  2038. }
  2039. else
  2040. {
  2041. //Set up an active file transfer
  2042. CString tempHostname;
  2043. UINT nPort;
  2044. if (// create listen socket (let MFC choose the port) & start the socket listening
  2045. !m_pTransferSocket->Listen() ||
  2046. !m_pTransferSocket->GetSockName(tempHostname, nPort))
  2047. {
  2048. ShowStatus(L"Failed to create listen socket", FZ_LOG_ERROR);
  2049. ResetOperation(FZ_REPLY_ERROR);
  2050. return;
  2051. }
  2052. CString host;
  2053. bool bError = false;
  2054. if (GetFamily() == AF_INET)
  2055. {
  2056. host = GetOption(OPTION_TRANSFERIP);
  2057. if (host != L"")
  2058. {
  2059. DWORD ip = inet_addr(T2CA(host));
  2060. if (ip != INADDR_NONE)
  2061. host.Format(L"%d,%d,%d,%d", ip%256, (ip>>8)%256, (ip>>16)%256, ip>>24);
  2062. else
  2063. {
  2064. hostent *fullname = gethostbyname(T2CA(host));
  2065. if (!fullname)
  2066. host = L"";
  2067. else
  2068. {
  2069. DWORD ip = ((LPIN_ADDR)fullname->h_addr)->s_addr;
  2070. if (ip != INADDR_NONE)
  2071. host.Format(L"%d,%d,%d,%d", ip%256, (ip>>8)%256, (ip>>16)%256, ip>>24);
  2072. else
  2073. host = L"";
  2074. }
  2075. }
  2076. }
  2077. if (host == L"")
  2078. {
  2079. UINT temp;
  2080. if (!GetSockName(host, temp))
  2081. {
  2082. ShowStatus(L"Failed to get socket address ", FZ_LOG_ERROR);
  2083. bError = true;
  2084. }
  2085. host.Replace(L'.', L',');
  2086. }
  2087. if (!bError)
  2088. {
  2089. host.Format(host+L",%d,%d", nPort/256, nPort%256);
  2090. cmd = L"PORT " + host; // send PORT cmd to server
  2091. }
  2092. }
  2093. else if (GetFamily() == AF_INET6)
  2094. {
  2095. host = GetOption(OPTION_TRANSFERIP6);
  2096. if (host != L"")
  2097. {
  2098. USES_CONVERSION;
  2099. addrinfo hints, *res;
  2100. memset(&hints, 0, sizeof(addrinfo));
  2101. hints.ai_family = AF_INET6;
  2102. hints.ai_socktype = SOCK_STREAM;
  2103. if (!getaddrinfo(T2CA(host), "1024", &hints, &res))
  2104. {
  2105. host = Inet6AddrToString(((SOCKADDR_IN6 *)res->ai_addr)->sin6_addr);
  2106. freeaddrinfo(res);
  2107. }
  2108. else
  2109. host = L"";
  2110. }
  2111. if (host == L"")
  2112. {
  2113. UINT temp;
  2114. if(!GetSockName(host, temp))
  2115. bError = true;
  2116. }
  2117. if (!bError)
  2118. {
  2119. // assamble EPRT command
  2120. cmd.Format(L"EPRT |2|" + host + L"|%d|", nPort);
  2121. }
  2122. }
  2123. else
  2124. {
  2125. LogMessage(FZ_LOG_WARNING, L"Protocol %d not supported", GetFamily());
  2126. bError = true;
  2127. }
  2128. if (bError)
  2129. {
  2130. ResetOperation(FZ_REPLY_ERROR);
  2131. return;
  2132. }
  2133. }
  2134. }
  2135. }
  2136. else if (m_Operation.nOpState==LIST_TYPE)
  2137. cmd=L"TYPE A";
  2138. else if (m_Operation.nOpState==LIST_LIST)
  2139. {
  2140. if (!m_pTransferSocket)
  2141. {
  2142. LogMessage(FZ_LOG_APIERROR, L"Error: m_pTransferSocket==NULL" );
  2143. ResetOperation(FZ_REPLY_ERROR);
  2144. return;
  2145. }
  2146. m_pTransferSocket->SetActive();
  2147. cmd = GetListingCmd();
  2148. if (!Send(cmd))
  2149. return;
  2150. if (pData->bPasv)
  2151. {
  2152. // if PASV create the socket & initiate outbound data channel connection
  2153. if (!ConnectTransferSocket(pData->host, pData->port))
  2154. {
  2155. ResetOperation(FZ_REPLY_ERROR);
  2156. return;
  2157. }
  2158. }
  2159. return;
  2160. }
  2161. if (cmd != L"")
  2162. Send(cmd);
  2163. }
  2164. bool CFtpControlSocket::ConnectTransferSocket(const CString & host, UINT port)
  2165. {
  2166. CString hostname;
  2167. hostname.Format(L"%s:%d", host, port);
  2168. CString str;
  2169. str.Format(IDS_STATUSMSG_CONNECTING, hostname);
  2170. ShowStatus(str, FZ_LOG_PROGRESS);
  2171. bool result = true;
  2172. if (!m_pTransferSocket->Connect(host, port))
  2173. {
  2174. if (GetLastError() != WSAEWOULDBLOCK)
  2175. {
  2176. result = false;
  2177. }
  2178. else
  2179. {
  2180. LogMessage(FZ_LOG_INFO, L"Connection pending");
  2181. }
  2182. }
  2183. else
  2184. {
  2185. LogMessage(FZ_LOG_INFO, L"Connected");
  2186. }
  2187. return result;
  2188. }
  2189. void CFtpControlSocket::ListFile(CString filename, const CServerPath &path)
  2190. {
  2191. USES_CONVERSION;
  2192. #define LISTFILE_INIT -1
  2193. #define LISTFILE_MLST 1
  2194. #define LISTFILE_TYPE 2
  2195. #define LISTFILE_SIZE 3
  2196. #define LISTFILE_MDTM 4
  2197. #define LISTFILE_PWD 5
  2198. #define LISTFILE_CWD 6
  2199. #define LISTFILE_CWD2 7
  2200. DebugAssert(!m_Operation.nOpMode || m_Operation.nOpMode&CSMODE_LISTFILE);
  2201. m_Operation.nOpMode|=CSMODE_LISTFILE;
  2202. if (!m_pOwner->IsConnected())
  2203. {
  2204. ResetOperation(FZ_REPLY_ERROR|FZ_REPLY_NOTCONNECTED);
  2205. return;
  2206. }
  2207. CListFileData * pData = static_cast<CListFileData *>(m_Operation.pData);
  2208. BOOL error = FALSE;
  2209. CString cmd;
  2210. CString retmsg;
  2211. int code = -1;
  2212. int num = -1;
  2213. switch (m_Operation.nOpState)
  2214. {
  2215. case LISTFILE_INIT:
  2216. //Initialize some variables
  2217. pData = new CListFileData;
  2218. pData->fileName = filename;
  2219. pData->dir = path.GetPath();
  2220. // special case for listing a root folder
  2221. pData->path = (filename == L"/") ? pData->dir : path.FormatFilename(filename);
  2222. m_Operation.pData = pData;
  2223. ShowStatus(IDS_STATUSMSG_RETRIEVINGLISTFILE, FZ_LOG_PROGRESS);
  2224. if (UsingMlsd())
  2225. {
  2226. m_Operation.nOpState = LISTFILE_MLST;
  2227. cmd = L"MLST " + pData->path;
  2228. }
  2229. else
  2230. {
  2231. m_Operation.nOpState = LISTFILE_PWD;
  2232. cmd = L"PWD";
  2233. }
  2234. if (!Send(cmd))
  2235. {
  2236. error = TRUE;
  2237. }
  2238. break;
  2239. case LISTFILE_MLST:
  2240. retmsg = GetReply();
  2241. code = GetReplyCode();
  2242. if (IsMisleadingListResponse())
  2243. {
  2244. ShowStatus(IDS_STATUSMSG_LISTFILESUCCESSFUL, FZ_LOG_PROGRESS);
  2245. num = 0;
  2246. }
  2247. else if (code != 2)
  2248. {
  2249. error = TRUE;
  2250. }
  2251. else
  2252. {
  2253. USES_CONVERSION;
  2254. CStringA Buf = m_ListFile + '\n';
  2255. const bool mlst = true;
  2256. CFtpListResult * pListResult = CreateListResult(mlst);
  2257. pListResult->AddData(static_cast<const char *>(Buf), Buf.GetLength());
  2258. pData->direntry = pListResult->getList(num);
  2259. if (pListResult->m_server.nServerType & FZ_SERVERTYPE_SUB_FTP_VMS && m_CurrentServer.nServerType & FZ_SERVERTYPE_FTP)
  2260. m_CurrentServer.nServerType |= FZ_SERVERTYPE_SUB_FTP_VMS;
  2261. delete pListResult;
  2262. }
  2263. break;
  2264. case LISTFILE_PWD:
  2265. code = GetReplyCode();
  2266. retmsg = GetReply();
  2267. if ((code == 2) &&
  2268. ParsePwdReply(retmsg, pData->pwd) &&
  2269. Send(L"CWD " + pData->path))
  2270. {
  2271. m_Operation.nOpState = LISTFILE_CWD;
  2272. }
  2273. else
  2274. {
  2275. error = TRUE;
  2276. }
  2277. break;
  2278. case LISTFILE_CWD:
  2279. code = GetReplyCode();
  2280. pData->direntry = new t_directory::t_direntry[1];
  2281. pData->direntry->name = pData->fileName;
  2282. if (code == 2)
  2283. {
  2284. pData->direntry->dir = TRUE;
  2285. if (Send(L"CWD " + pData->pwd.GetPathUnterminated()))
  2286. {
  2287. m_Operation.nOpState = LISTFILE_CWD2;
  2288. }
  2289. else
  2290. {
  2291. error = TRUE;
  2292. }
  2293. }
  2294. else
  2295. {
  2296. // CWD failed, file is not a directory, we should not need to restore PWD.
  2297. // Force binary mode, as according to RFC 6359,
  2298. // SIZE command returns size as transferred over the stream.
  2299. // Moreover ProFTPD does not even support SIZE command in ASCII mode
  2300. if (Send(L"TYPE I"))
  2301. {
  2302. m_Operation.nOpState = LISTFILE_TYPE;
  2303. }
  2304. else
  2305. {
  2306. error = TRUE;
  2307. }
  2308. }
  2309. break;
  2310. case LISTFILE_CWD2:
  2311. code = GetReplyCode();
  2312. if (code == 2)
  2313. {
  2314. // No point trying SIZE on directories.
  2315. // (More over IIS returns a multi-line response for SIZE /dir and we cannot handle that).
  2316. // IIS fails even for MDTM, so skipping even that.
  2317. num = 1;
  2318. }
  2319. // this should never really happen
  2320. else
  2321. {
  2322. error = TRUE;
  2323. }
  2324. break;
  2325. case LISTFILE_TYPE:
  2326. // Do not really care if TYPE succeeded or not
  2327. if (Send(L"SIZE " + pData->path))
  2328. {
  2329. m_Operation.nOpState = LISTFILE_SIZE;
  2330. }
  2331. else
  2332. {
  2333. error = TRUE;
  2334. }
  2335. break;
  2336. case LISTFILE_SIZE:
  2337. code = GetReplyCode();
  2338. // Ignore SIZE errors for directories
  2339. if ((HandleSize(code, pData->direntry->size) || pData->direntry->dir) &&
  2340. Send(L"MDTM " + pData->path))
  2341. {
  2342. m_Operation.nOpState = LISTFILE_MDTM;
  2343. }
  2344. else
  2345. {
  2346. error = TRUE;
  2347. }
  2348. break;
  2349. case LISTFILE_MDTM:
  2350. code = GetReplyCode();
  2351. if (HandleMdtm(code, pData->direntry->date))
  2352. {
  2353. num = 1;
  2354. }
  2355. else
  2356. {
  2357. error = TRUE;
  2358. }
  2359. break;
  2360. default:
  2361. error = TRUE;
  2362. break;
  2363. }
  2364. if (error)
  2365. {
  2366. ResetOperation(FZ_REPLY_ERROR);
  2367. }
  2368. else if (num >= 0)
  2369. {
  2370. t_directory * pDirectoryListing = new t_directory;
  2371. pDirectoryListing->direntry = pData->direntry;
  2372. pData->direntry = NULL;
  2373. pDirectoryListing->num = num;
  2374. pDirectoryListing->server = m_CurrentServer;
  2375. pDirectoryListing->path.SetServer(pDirectoryListing->server);
  2376. pDirectoryListing->path = pData->dir;
  2377. ShowStatus(IDS_STATUSMSG_LISTFILESUCCESSFUL,FZ_LOG_PROGRESS);
  2378. // do not use SetDirectoryListing as that would make
  2379. // later operations believe that there's only this one file in the folder
  2380. m_pOwner->SendDirectoryListing(pDirectoryListing);
  2381. ResetOperation(FZ_REPLY_OK);
  2382. }
  2383. }
  2384. void CFtpControlSocket::TransferEnd(int nMode)
  2385. {
  2386. if (!m_Operation.nOpMode)
  2387. {
  2388. LogMessage(FZ_LOG_INFO, L"Ignoring old TransferEnd message");
  2389. return;
  2390. }
  2391. m_LastRecvTime=CTime::GetCurrentTime();
  2392. if (m_Operation.nOpMode&CSMODE_TRANSFER)
  2393. FileTransfer(0,TRUE,nMode&(CSMODE_TRANSFERERROR|CSMODE_TRANSFERTIMEOUT));
  2394. else if (m_Operation.nOpMode&CSMODE_LIST)
  2395. List(TRUE,nMode&(CSMODE_TRANSFERERROR|CSMODE_TRANSFERTIMEOUT));
  2396. }
  2397. void CFtpControlSocket::OnClose(int nErrorCode)
  2398. {
  2399. ShowStatus(IDS_STATUSMSG_DISCONNECTED, FZ_LOG_ERROR);
  2400. if (m_pTransferSocket)
  2401. {
  2402. m_pTransferSocket->OnClose(0);
  2403. m_pTransferSocket->Close();
  2404. delete m_pTransferSocket;
  2405. m_pTransferSocket=0;
  2406. DoClose();
  2407. return;
  2408. }
  2409. if (m_bDidRejectCertificate)
  2410. DoClose(FZ_REPLY_CANCEL);
  2411. else
  2412. DoClose();
  2413. }
  2414. void CFtpControlSocket::ResetTransferSocket(int Error)
  2415. {
  2416. if (Error)
  2417. {
  2418. LogMessage(FZ_LOG_INFO, L"Destroying data socket on error");
  2419. }
  2420. else
  2421. {
  2422. LogMessage(FZ_LOG_INFO, L"Destroying data socket after transfer completed");
  2423. }
  2424. bool Close =
  2425. (Error != 0) &&
  2426. DebugAlwaysTrue(m_pTransferSocket != NULL) &&
  2427. (m_pTransferSocket->m_uploaded > 0) &&
  2428. FLAGCLEAR(Error, FZ_REPLY_CANCEL);
  2429. delete m_pTransferSocket;
  2430. m_pTransferSocket = NULL;
  2431. if (Close)
  2432. {
  2433. // close the control connection too to allow reconnect => transfer resume
  2434. LogMessage(FZ_LOG_WARNING, L"Transfer connection failed, closing");
  2435. DoClose();
  2436. }
  2437. }
  2438. void CFtpControlSocket::FileTransfer(t_transferfile *transferfile/*=0*/,BOOL bFinish/*=FALSE*/,int nError/*=0*/)
  2439. {
  2440. USES_CONVERSION;
  2441. #define FILETRANSFER_INIT -1
  2442. #define FILETRANSFER_PWD 0
  2443. #define FILETRANSFER_CWD 1
  2444. #define FILETRANSFER_MKD 2
  2445. #define FILETRANSFER_CWD2 3
  2446. #define FILETRANSFER_PWD2 4
  2447. #define FILETRANSFER_LIST_MODE 5
  2448. #define FILETRANSFER_LIST_OPTS 6
  2449. #define FILETRANSFER_LIST_PORTPASV 7
  2450. #define FILETRANSFER_LIST_TYPE 8
  2451. #define FILETRANSFER_LIST_LIST 9
  2452. #define FILETRANSFER_LIST_WAITFINISH 10
  2453. #define FILETRANSFER_NOLIST_SIZE 11
  2454. #define FILETRANSFER_NOLIST_MDTM 12
  2455. #define FILETRANSFER_TYPE 13
  2456. #define FILETRANSFER_REST 14
  2457. #define FILETRANSFER_MODE 15
  2458. #define FILETRANSFER_OPTS 16
  2459. #define FILETRANSFER_PORTPASV 17
  2460. #define FILETRANSFER_RETRSTOR 18
  2461. #define FILETRANSFER_WAITFINISH 19
  2462. #define FILETRANSFER_WAIT 20
  2463. #define FILETRANSFER_MFMT 21
  2464. //Partial flowchart of FileTransfer
  2465. //
  2466. // +----+
  2467. // /------|Init|--------\
  2468. // | +----+ |
  2469. // | | |
  2470. // | /---+ |
  2471. // | | | |
  2472. // | | +---+ |
  2473. // | | |PWD| |
  2474. // | | +---+ |
  2475. // | | | |
  2476. // | \---+ |
  2477. // | | |
  2478. // | +---+ |
  2479. // | |CWD|--\ |
  2480. // | +---+ | |
  2481. // | | | |
  2482. // | | | |
  2483. // | | +---+ |
  2484. // | | |MKD| |
  2485. // | | +---+ |
  2486. // | | | |
  2487. // | | | |
  2488. // | | +----+ |
  2489. // | | |CWD2| |
  2490. // | | +----+ |
  2491. // | | | |
  2492. // | +----/ |
  2493. // | | |
  2494. // | +---+ |
  2495. // +-------|PWD| |
  2496. // | +---+ |
  2497. // | | |
  2498. // | +----------/
  2499. // | |
  2500. // | +---------+
  2501. // | |LIST_TYPE|
  2502. // | +---------+
  2503. // | |
  2504. // | |
  2505. // | +-------------+
  2506. // | |LIST_PORTPASV|
  2507. // | +-------------+
  2508. // | |
  2509. // | |
  2510. // | +---------+
  2511. // | |LIST_LIST|-----\ //List fails, maybe folder is list protected
  2512. // | +---------+ | //Use SIZE and MDTM to get file information
  2513. // | | +----+
  2514. // | | |SIZE|
  2515. // | | +----+
  2516. // | | |
  2517. // | | +----+
  2518. // | | |MDTM|
  2519. // | | +----+
  2520. // | | |
  2521. // | | |
  2522. // | +---------------+ |
  2523. // | |LIST_WAITFINISH| |
  2524. // | +---------------+ |
  2525. // | | |
  2526. // | | |
  2527. // | +----------/
  2528. // | |
  2529. // \---------+
  2530. // |
  2531. // +----+
  2532. // |TYPE|
  2533. // +----+
  2534. // |
  2535. // |
  2536. // +--------+
  2537. // |PORTPASV|--\
  2538. // +--------+ |
  2539. // | |
  2540. // | |
  2541. // | +----+
  2542. // | |REST|
  2543. // | +----+
  2544. // | |
  2545. // +------/
  2546. // |
  2547. // +--------+
  2548. // |RETRSTOR|
  2549. // +--------+
  2550. // |
  2551. // |
  2552. // +----------+
  2553. // |WAITFINISH|
  2554. // +----------+
  2555. DebugAssert(!m_Operation.nOpMode || m_Operation.nOpMode&CSMODE_TRANSFER);
  2556. if (!m_pOwner->IsConnected())
  2557. {
  2558. m_Operation.nOpMode=CSMODE_TRANSFER|(transferfile->get?CSMODE_DOWNLOAD:CSMODE_UPLOAD);
  2559. ResetOperation(FZ_REPLY_ERROR|FZ_REPLY_DISCONNECTED);
  2560. return;
  2561. }
  2562. CFileTransferData *pData=static_cast<CFileTransferData *>(m_Operation.pData);
  2563. //Process finish and error messages
  2564. if (bFinish || nError)
  2565. {
  2566. DebugAssert(m_Operation.nOpMode&CSMODE_TRANSFER);
  2567. // APPE failed, ignore this reply
  2568. if (m_Operation.nOpMode == FILETRANSFER_WAIT && bFinish)
  2569. return;
  2570. if (!(m_Operation.nOpMode&CSMODE_TRANSFER))
  2571. return;
  2572. if (nError)
  2573. {
  2574. if (m_Operation.nOpState == FILETRANSFER_LIST_LIST && nError & CSMODE_TRANSFERERROR)
  2575. { //Don't abort operation, use fallback to SIZE and MDTM (when actual LIST reply comes in)
  2576. if (m_pTransferSocket)
  2577. m_pTransferSocket=0;
  2578. delete m_pDirectoryListing;
  2579. m_pDirectoryListing=0;
  2580. }
  2581. else if (nError&CSMODE_TRANSFERTIMEOUT)
  2582. DoClose();
  2583. else
  2584. {
  2585. // we may get here when connection was closed, when the closure
  2586. // was first detected while reading/writing,
  2587. // when we abort file transfer with regular error,
  2588. // possibly preventing automatic reconnect
  2589. LogMessage(FZ_LOG_INFO, L"Transfer error (%x)", nError);
  2590. ResetOperation(FZ_REPLY_ERROR);
  2591. }
  2592. return;
  2593. }
  2594. if (m_Operation.nOpState <= FILETRANSFER_LIST_PORTPASV)
  2595. {
  2596. ResetOperation(FZ_REPLY_ERROR);
  2597. return;
  2598. }
  2599. else if (m_Operation.nOpState<=FILETRANSFER_LIST_WAITFINISH)
  2600. {
  2601. if (!m_pTransferSocket || m_pTransferSocket->m_bListening)
  2602. {
  2603. delete m_pDirectoryListing;
  2604. m_pDirectoryListing=0;
  2605. ResetOperation(FZ_REPLY_ERROR);
  2606. return;
  2607. }
  2608. int num=0;
  2609. pData->pDirectoryListing=new t_directory;
  2610. pData->pDirectoryListing->direntry=m_pTransferSocket->m_pListResult->getList(num);
  2611. pData->pDirectoryListing->num=num;
  2612. if (m_pTransferSocket->m_pListResult->m_server.nServerType&FZ_SERVERTYPE_SUB_FTP_VMS && m_CurrentServer.nServerType&FZ_SERVERTYPE_FTP)
  2613. m_CurrentServer.nServerType |= FZ_SERVERTYPE_SUB_FTP_VMS;
  2614. pData->pDirectoryListing->server = m_CurrentServer;
  2615. pData->pDirectoryListing->path.SetServer(m_CurrentServer);
  2616. pData->pDirectoryListing->path = pData->transferfile.remotepath;
  2617. if (pData->rawpwd!=L"")
  2618. {
  2619. if (!pData->pDirectoryListing->path.SetPath(pData->rawpwd))
  2620. {
  2621. delete m_pDirectoryListing;
  2622. m_pDirectoryListing=0;
  2623. delete m_pTransferSocket;
  2624. m_pTransferSocket=0;
  2625. ResetOperation(FZ_REPLY_ERROR);
  2626. return;
  2627. }
  2628. }
  2629. else
  2630. pData->pDirectoryListing->path=pData->transferfile.remotepath;
  2631. if (m_Operation.nOpState!=FILETRANSFER_LIST_WAITFINISH)
  2632. return;
  2633. }
  2634. else if (m_Operation.nOpState <= FILETRANSFER_PORTPASV)
  2635. {
  2636. ResetOperation(FZ_REPLY_ERROR);
  2637. return;
  2638. }
  2639. else if (m_Operation.nOpState<=FILETRANSFER_WAITFINISH)
  2640. {
  2641. if (m_pTransferSocket->m_bListening)
  2642. {
  2643. ResetOperation(FZ_REPLY_ERROR);
  2644. return;
  2645. }
  2646. pData->nGotTransferEndReply |= 2;
  2647. if (m_Operation.nOpState!=FILETRANSFER_WAITFINISH)
  2648. return;
  2649. else
  2650. {
  2651. ResetTransferSocket(nError);
  2652. }
  2653. }
  2654. }
  2655. //////////////////
  2656. //Initialization//
  2657. //////////////////
  2658. int nReplyError = 0;
  2659. if (m_Operation.nOpState == FILETRANSFER_INIT)
  2660. {
  2661. DebugAssert(transferfile);
  2662. DebugAssert(!m_Operation.nOpMode);
  2663. DebugAssert(!m_Operation.pData);
  2664. CString str;
  2665. str.Format(transferfile->get?IDS_STATUSMSG_DOWNLOADSTART:IDS_STATUSMSG_UPLOADSTART,
  2666. transferfile->get ? transferfile->remotepath.FormatFilename(transferfile->remotefile) : transferfile->localfile);
  2667. ShowStatus(str,FZ_LOG_STATUS);
  2668. m_Operation.nOpMode=CSMODE_TRANSFER|(transferfile->get?CSMODE_DOWNLOAD:CSMODE_UPLOAD);
  2669. m_Operation.pData=new CFileTransferData;
  2670. pData=static_cast<CFileTransferData *>(m_Operation.pData);
  2671. if (GetOptionVal(OPTION_PROXYTYPE)!=PROXYTYPE_NOPROXY)
  2672. pData->bPasv = TRUE;
  2673. else if (m_CurrentServer.nPasv == 1)
  2674. pData->bPasv = TRUE;
  2675. else if (m_CurrentServer.nPasv == 2)
  2676. pData->bPasv = FALSE;
  2677. else
  2678. pData->bPasv = GetOptionVal(OPTION_PASV);
  2679. //Replace invalid characters in the local filename
  2680. int pos=transferfile->localfile.ReverseFind(L'\\');
  2681. for (int i=(pos+1);i<transferfile->localfile.GetLength();i++)
  2682. if (transferfile->localfile[i]==L':')
  2683. transferfile->localfile.SetAt(i, L'_');
  2684. pData->transferfile=*transferfile;
  2685. pData->transferdata.transfersize=pData->transferfile.size;
  2686. pData->transferdata.transferleft=pData->transferfile.size;
  2687. pData->transferdata.bResume = FALSE;
  2688. pData->transferdata.bResumeAppend = FALSE;
  2689. pData->transferdata.bType = (pData->transferfile.nType == 1) ? TRUE : FALSE;
  2690. CServerPath path;
  2691. DebugCheck(m_pOwner->GetCurrentPath(path));
  2692. if (path == pData->transferfile.remotepath)
  2693. {
  2694. if (m_pDirectoryListing)
  2695. {
  2696. m_Operation.nOpState=FILETRANSFER_TYPE;
  2697. CString remotefile=pData->transferfile.remotefile;
  2698. int i;
  2699. for (i=0; i<m_pDirectoryListing->num; i++)
  2700. {
  2701. if (m_pDirectoryListing->direntry[i].name==remotefile &&
  2702. ( m_pDirectoryListing->direntry[i].bUnsure || m_pDirectoryListing->direntry[i].size==-1 ))
  2703. {
  2704. delete m_pDirectoryListing;
  2705. m_pDirectoryListing=0;
  2706. m_Operation.nOpState = FileTransferListState(transferfile->get);
  2707. break;
  2708. }
  2709. }
  2710. if (m_pDirectoryListing && i==m_pDirectoryListing->num)
  2711. {
  2712. nReplyError = CheckOverwriteFile();
  2713. if (!nReplyError)
  2714. {
  2715. if (pData->transferfile.get)
  2716. {
  2717. CString path=pData->transferfile.localfile;
  2718. if (path.ReverseFind(L'\\')!=-1)
  2719. {
  2720. path=path.Left(path.ReverseFind(L'\\')+1);
  2721. CString path2;
  2722. while (path!=L"")
  2723. {
  2724. path2+=path.Left(path.Find( L"\\" )+1);
  2725. path=path.Mid(path.Find( L"\\" )+1);
  2726. CreateDirectory(path2, 0);
  2727. }
  2728. }
  2729. }
  2730. }
  2731. }
  2732. }
  2733. else
  2734. {
  2735. m_Operation.nOpState = FileTransferListState(transferfile->get);
  2736. }
  2737. }
  2738. else
  2739. {
  2740. if (path.IsEmpty())
  2741. m_Operation.nOpState = FILETRANSFER_PWD;
  2742. else
  2743. m_Operation.nOpState = FILETRANSFER_CWD;
  2744. }
  2745. }
  2746. else
  2747. {
  2748. ///////////
  2749. //Replies//
  2750. ///////////
  2751. int code = GetReplyCode();
  2752. switch(m_Operation.nOpState)
  2753. {
  2754. case FILETRANSFER_PWD:
  2755. if (code != 2 && code != 3)
  2756. {
  2757. nReplyError = FZ_REPLY_ERROR;
  2758. break;
  2759. }
  2760. pData->rawpwd = GetReply();
  2761. if ((m_mayBeMvsFilesystem || m_mayBeBS2000Filesystem) && m_CurrentServer.nServerType & FZ_SERVERTYPE_FTP &&
  2762. pData->rawpwd[0] != L'/')
  2763. {
  2764. m_mayBeMvsFilesystem = false;
  2765. m_mayBeBS2000Filesystem = false;
  2766. if (m_mayBeBS2000Filesystem)
  2767. m_CurrentServer.nServerType |= FZ_SERVERTYPE_SUB_FTP_BS2000;
  2768. else
  2769. m_CurrentServer.nServerType |= FZ_SERVERTYPE_SUB_FTP_MVS;
  2770. pData->transferfile.remotepath.SetServer(m_CurrentServer);
  2771. }
  2772. if (!ParsePwdReply(pData->rawpwd))
  2773. return;
  2774. if (m_pOwner->GetCurrentPath() == pData->transferfile.remotepath)
  2775. {
  2776. m_Operation.nOpState = FileTransferListState(pData->transferfile.get);
  2777. }
  2778. else
  2779. m_Operation.nOpState = LIST_CWD;
  2780. break;
  2781. case FILETRANSFER_CWD:
  2782. if (code != 2 && code != 3)
  2783. if (pData->transferfile.get)
  2784. {
  2785. pData->bUseAbsolutePaths = TRUE;
  2786. m_Operation.nOpState = FILETRANSFER_NOLIST_SIZE;
  2787. }
  2788. else
  2789. m_Operation.nOpState = FILETRANSFER_MKD;
  2790. else
  2791. m_Operation.nOpState = FILETRANSFER_PWD2;
  2792. break;
  2793. case FILETRANSFER_MKD:
  2794. switch(pData->nMKDOpState)
  2795. {
  2796. case MKD_FINDPARENT:
  2797. {
  2798. if (code == 2 || code == 3)
  2799. {
  2800. m_pOwner->SetCurrentPath(pData->MKDCurrent);
  2801. pData->nMKDOpState=MKD_CHANGETOSUBDIR;
  2802. pData->MKDCurrent.AddSubdir(pData->MKDSegments.front());
  2803. CString Segment=pData->MKDSegments.front();
  2804. pData->MKDSegments.pop_front();
  2805. if (!Send( L"MKD " + Segment))
  2806. return;
  2807. }
  2808. else
  2809. {
  2810. if (!pData->MKDCurrent.HasParent())
  2811. nReplyError = FZ_REPLY_ERROR | ((code == 5) ? FZ_REPLY_CRITICALERROR : 0);
  2812. else
  2813. {
  2814. pData->MKDSegments.push_front(pData->MKDCurrent.GetLastSegment());
  2815. pData->MKDCurrent=pData->MKDCurrent.GetParent();
  2816. if (!Send(L"CWD "+pData->MKDCurrent.GetPathUnterminated()))
  2817. return;
  2818. }
  2819. }
  2820. }
  2821. break;
  2822. case MKD_MAKESUBDIRS:
  2823. {
  2824. if (code == 2 || code == 3)
  2825. { //Create dir entry in parent dir
  2826. DebugAssert(!pData->MKDSegments.empty());
  2827. pData->MKDCurrent.AddSubdir(pData->MKDSegments.front());
  2828. CString Segment=pData->MKDSegments.front();
  2829. pData->MKDSegments.pop_front();
  2830. if (Send( L"MKD " + Segment))
  2831. pData->nMKDOpState=MKD_CHANGETOSUBDIR;
  2832. else
  2833. return;
  2834. }
  2835. else
  2836. nReplyError=FZ_REPLY_ERROR;
  2837. }
  2838. break;
  2839. case MKD_CHANGETOSUBDIR:
  2840. {
  2841. if (code == 2 || code == 3 || //Creation successful
  2842. m_RecvBuffer.front() == "550 Directory already exists") //Creation was successful, although someone else did the work for us
  2843. {
  2844. CServerPath path2 = pData->MKDCurrent;
  2845. if (path2.HasParent())
  2846. {
  2847. CString name=path2.GetLastSegment();
  2848. path2=path2.GetParent();
  2849. t_directory dir;
  2850. BOOL res=FALSE;
  2851. if (m_pDirectoryListing)
  2852. {
  2853. if (m_pDirectoryListing->path==path2)
  2854. {
  2855. dir=*m_pDirectoryListing;
  2856. res=TRUE;
  2857. }
  2858. }
  2859. t_directory WorkingDir;
  2860. BOOL bFound=m_pOwner->GetWorkingDir(&WorkingDir);
  2861. if (!res && bFound)
  2862. if (WorkingDir.path==path2)
  2863. {
  2864. dir=WorkingDir;
  2865. res=TRUE;
  2866. }
  2867. if (!res)
  2868. {
  2869. dir.path=path2;
  2870. dir.server=m_CurrentServer;
  2871. }
  2872. int i;
  2873. for (i=0; i<dir.num; i++)
  2874. if (dir.direntry[i].name == name)
  2875. {
  2876. LogMessage(FZ_LOG_WARNING, L"Dir already exists in cache!");
  2877. break;
  2878. }
  2879. if (i==dir.num)
  2880. {
  2881. t_directory::t_direntry *entries = new t_directory::t_direntry[dir.num+1];
  2882. for (i=0;i<dir.num;i++)
  2883. entries[i]=dir.direntry[i];
  2884. entries[i].name=name;
  2885. entries[i].dir=TRUE;
  2886. entries[i].date.hasdate=FALSE;
  2887. entries[i].size=-1;
  2888. entries[i].bUnsure=FALSE;
  2889. delete [] dir.direntry;
  2890. dir.direntry=entries;
  2891. dir.num++;
  2892. BOOL updated=FALSE;
  2893. if (m_pDirectoryListing && m_pDirectoryListing->path==dir.path)
  2894. {
  2895. updated=TRUE;
  2896. SetDirectoryListing(&dir);
  2897. }
  2898. if (!updated)
  2899. if (WorkingDir.path==dir.path)
  2900. {
  2901. updated=TRUE;
  2902. m_pOwner->SetWorkingDir(&dir);
  2903. }
  2904. }
  2905. }
  2906. }
  2907. //Continue operation even if MKD failed, maybe another thread did create this directory for us
  2908. if (pData->MKDSegments.empty())
  2909. m_Operation.nOpState=FILETRANSFER_CWD2;
  2910. else
  2911. {
  2912. if (Send( L"CWD " + pData->MKDCurrent.GetPathUnterminated()))
  2913. pData->nMKDOpState=MKD_MAKESUBDIRS;
  2914. else
  2915. return;
  2916. }
  2917. }
  2918. break;
  2919. default:
  2920. DebugFail();
  2921. }
  2922. break;
  2923. case FILETRANSFER_CWD2:
  2924. if (code != 2 && code != 3)
  2925. if (code == 4)
  2926. nReplyError=FZ_REPLY_ERROR;
  2927. else
  2928. nReplyError=FZ_REPLY_CRITICALERROR;
  2929. else
  2930. m_Operation.nOpState=FILETRANSFER_PWD2;
  2931. break;
  2932. case FILETRANSFER_PWD2:
  2933. if (code != 2 && code != 3)
  2934. nReplyError = FZ_REPLY_ERROR;
  2935. else
  2936. {
  2937. pData->rawpwd = GetReply();
  2938. if (!ParsePwdReply(pData->rawpwd))
  2939. return;
  2940. m_Operation.nOpState = FileTransferListState(pData->transferfile.get);
  2941. }
  2942. break;
  2943. case FILETRANSFER_LIST_MODE:
  2944. #ifdef MPEXT_NO_ZLIB
  2945. DebugFail();
  2946. m_Operation.nOpState = FILETRANSFER_LIST_TYPE;
  2947. #else
  2948. if (code == 2 || code == 3)
  2949. m_useZlib = !m_useZlib;
  2950. m_Operation.nOpState = NeedOptsCommand() ? FILETRANSFER_LIST_OPTS : FILETRANSFER_LIST_TYPE;
  2951. #endif
  2952. break;
  2953. case FILETRANSFER_LIST_OPTS:
  2954. #ifdef MPEXT_NO_ZLIB
  2955. DebugFail();
  2956. #else
  2957. if (code == 2 || code == 3)
  2958. m_zlibLevel = pData->newZlibLevel;
  2959. m_Operation.nOpState = FILETRANSFER_LIST_TYPE;
  2960. #endif
  2961. break;
  2962. case FILETRANSFER_LIST_TYPE:
  2963. if (code != 2 && code != 3)
  2964. nReplyError = FZ_REPLY_ERROR;
  2965. else
  2966. m_Operation.nOpState = FILETRANSFER_LIST_PORTPASV;
  2967. break;
  2968. case FILETRANSFER_LIST_PORTPASV:
  2969. if (code!=3 && code!=2)
  2970. {
  2971. if (!pData->bTriedPortPasvOnce)
  2972. {
  2973. pData->bTriedPortPasvOnce = TRUE;
  2974. pData->bPasv = !pData->bPasv;
  2975. }
  2976. else
  2977. nReplyError=FZ_REPLY_ERROR;
  2978. break;
  2979. }
  2980. if (pData->bPasv)
  2981. {
  2982. CString reply = GetReply();
  2983. int i,j;
  2984. // MP EXT
  2985. if((i=reply.Find(L"("))>=0&&(j=reply.Find(L")"))>=0)
  2986. {
  2987. i++;
  2988. j--;
  2989. }
  2990. else
  2991. {
  2992. // MP EXT
  2993. if ((i=reply.Mid(4).FindOneOf(L"0123456789"))>=0)
  2994. {
  2995. i += 4;
  2996. j = reply.GetLength() - 1;
  2997. }
  2998. else
  2999. {
  3000. if (!pData->bTriedPortPasvOnce)
  3001. {
  3002. pData->bTriedPortPasvOnce = TRUE;
  3003. pData->bPasv = !pData->bPasv;
  3004. }
  3005. else
  3006. nReplyError = FZ_REPLY_ERROR;
  3007. break;
  3008. }
  3009. }
  3010. CString temp = reply.Mid(i,(j-i)+1);
  3011. if (GetFamily() == AF_INET)
  3012. {
  3013. int count=0;
  3014. int pos=0;
  3015. //Convert commas to dots
  3016. temp.Replace( L",", L"." );
  3017. while(1)
  3018. {
  3019. pos=temp.Find(L".",pos);
  3020. if (pos!=-1)
  3021. count++;
  3022. else
  3023. break;
  3024. pos++;
  3025. }
  3026. if (count!=5)
  3027. {
  3028. if (!pData->bTriedPortPasvOnce)
  3029. {
  3030. pData->bTriedPortPasvOnce = TRUE;
  3031. pData->bPasv = !pData->bPasv;
  3032. }
  3033. else
  3034. nReplyError = FZ_REPLY_ERROR;
  3035. break;
  3036. }
  3037. i=temp.ReverseFind(L'.');
  3038. pData->port=atol( T2CA( temp.Right(temp.GetLength()-(i+1)) ) ); //get ls byte of server socket
  3039. temp=temp.Left(i);
  3040. i=temp.ReverseFind(L'.');
  3041. pData->port+=256*atol( T2CA( temp.Right(temp.GetLength()-(i+1)) ) ); // add ms byte to server socket
  3042. pData->host=temp.Left(i);
  3043. if (!CheckForcePasvIp(pData->host))
  3044. {
  3045. nReplyError = FZ_REPLY_ERROR;
  3046. break;
  3047. }
  3048. }
  3049. else if (GetFamily() == AF_INET6)
  3050. {
  3051. temp = temp.Mid(3);
  3052. pData->port = atol( T2CA(temp.Left(temp.GetLength() - 1) ) );
  3053. if (pData->port < 0 || pData->port > 65535)
  3054. {
  3055. LogMessage(FZ_LOG_WARNING, L"Port %u not valid", pData->port);
  3056. nReplyError = FZ_REPLY_ERROR;
  3057. break;
  3058. }
  3059. pData->host = m_CurrentServer.host;
  3060. }
  3061. m_pTransferSocket = new CTransferSocket(this, CSMODE_LIST);
  3062. #ifndef MPEXT_NO_ZLIB
  3063. if (m_useZlib)
  3064. {
  3065. if (!m_pTransferSocket->InitZlib(m_zlibLevel))
  3066. {
  3067. ShowStatus(L"Failed to initialize zlib", FZ_LOG_ERROR);
  3068. ResetOperation(FZ_REPLY_ERROR);
  3069. return;
  3070. }
  3071. }
  3072. #endif
  3073. #ifndef MPEXT_NO_GSS
  3074. if (m_pGssLayer && m_pGssLayer->AuthSuccessful())
  3075. m_pTransferSocket->UseGSS(m_pGssLayer);
  3076. #endif
  3077. m_pTransferSocket->m_nInternalMessageID = m_pOwner->m_nInternalMessageID;
  3078. m_pTransferSocket->SetFamily(GetFamily());
  3079. if (!m_pTransferSocket->Create(m_pSslLayer && m_bProtP))
  3080. {
  3081. nReplyError = FZ_REPLY_ERROR;
  3082. break;
  3083. }
  3084. DebugCheck(m_pTransferSocket->AsyncSelect());
  3085. }
  3086. m_Operation.nOpState=FILETRANSFER_LIST_LIST;
  3087. break;
  3088. case FILETRANSFER_LIST_LIST:
  3089. if (IsMisleadingListResponse())
  3090. {
  3091. ShowStatus(IDS_STATUSMSG_DIRLISTSUCCESSFUL, FZ_LOG_PROGRESS);
  3092. t_directory listing;
  3093. listing.server = m_CurrentServer;
  3094. listing.path.SetServer(m_CurrentServer);
  3095. if (pData->rawpwd != L"")
  3096. {
  3097. if (!listing.path.SetPath(pData->rawpwd))
  3098. {
  3099. delete m_pDirectoryListing;
  3100. m_pDirectoryListing = 0;
  3101. delete m_pTransferSocket;
  3102. m_pTransferSocket = 0;
  3103. ResetOperation(FZ_REPLY_ERROR);
  3104. return;
  3105. }
  3106. }
  3107. else
  3108. listing.path = pData->transferfile.remotepath;
  3109. SetDirectoryListing(&listing);
  3110. m_Operation.nOpState = FILETRANSFER_TYPE;
  3111. delete m_pTransferSocket;
  3112. m_pTransferSocket = 0;
  3113. nReplyError = CheckOverwriteFile();
  3114. if (!nReplyError)
  3115. {
  3116. if (pData->transferfile.get)
  3117. {
  3118. CString path=pData->transferfile.localfile;
  3119. if (path.ReverseFind(L'\\')!=-1)
  3120. {
  3121. path=path.Left(path.ReverseFind(L'\\')+1);
  3122. CString path2;
  3123. while (path!=L"")
  3124. {
  3125. path2+=path.Left(path.Find( L"\\" )+1);
  3126. path=path.Mid(path.Find( L"\\" )+1);
  3127. CreateDirectory(path2, 0);
  3128. }
  3129. }
  3130. }
  3131. }
  3132. }
  3133. else if (code==4 || code==5) //LIST failed, try getting file information using SIZE and MDTM
  3134. {
  3135. TransferHandleListError();
  3136. }
  3137. else if (code!=1)
  3138. nReplyError=FZ_REPLY_ERROR;
  3139. else
  3140. m_Operation.nOpState=FILETRANSFER_LIST_WAITFINISH;
  3141. break;
  3142. case FILETRANSFER_LIST_WAITFINISH:
  3143. if (!bFinish)
  3144. {
  3145. if (code!=2 && code!=3)
  3146. {
  3147. if (code==4 || code==5)
  3148. {
  3149. TransferHandleListError();
  3150. }
  3151. else
  3152. {
  3153. nReplyError=FZ_REPLY_ERROR;
  3154. }
  3155. }
  3156. else
  3157. pData->nGotTransferEndReply = 1;
  3158. }
  3159. if (pData->nGotTransferEndReply && pData->pDirectoryListing)
  3160. {
  3161. SetDirectoryListing(pData->pDirectoryListing);
  3162. delete m_pTransferSocket;
  3163. m_pTransferSocket=0;
  3164. m_Operation.nOpState=FILETRANSFER_TYPE;
  3165. nReplyError = CheckOverwriteFile();
  3166. if (!nReplyError)
  3167. {
  3168. if (pData->transferfile.get)
  3169. {
  3170. CString path=pData->transferfile.localfile;
  3171. if (path.ReverseFind(L'\\')!=-1)
  3172. {
  3173. path=path.Left(path.ReverseFind(L'\\')+1);
  3174. CString path2;
  3175. while (path!=L"")
  3176. {
  3177. path2+=path.Left(path.Find( L"\\" )+1);
  3178. path=path.Mid(path.Find( L"\\" )+1);
  3179. CreateDirectory(path2, 0);
  3180. }
  3181. }
  3182. }
  3183. }
  3184. pData->nGotTransferEndReply=0;
  3185. }
  3186. break;
  3187. case FILETRANSFER_NOLIST_SIZE:
  3188. {
  3189. __int64 size;
  3190. if (HandleSize(code, size))
  3191. {
  3192. DebugAssert(!pData->pFileSize);
  3193. pData->pFileSize=new _int64;
  3194. *pData->pFileSize=size;
  3195. }
  3196. }
  3197. m_Operation.nOpState=FILETRANSFER_NOLIST_MDTM;
  3198. break;
  3199. case FILETRANSFER_NOLIST_MDTM:
  3200. if (HandleMdtm(code, pData->remoteDate))
  3201. {
  3202. pData->hasRemoteDate = true;
  3203. }
  3204. m_Operation.nOpState=FILETRANSFER_TYPE;
  3205. nReplyError=CheckOverwriteFile();
  3206. break;
  3207. case FILETRANSFER_TYPE:
  3208. if (code!=2 && code!=3)
  3209. nReplyError = FZ_REPLY_ERROR;
  3210. m_Operation.nOpState = NeedModeCommand() ? FILETRANSFER_MODE : (NeedOptsCommand() ? FILETRANSFER_OPTS : FILETRANSFER_PORTPASV);
  3211. break;
  3212. case FILETRANSFER_WAIT:
  3213. if (!pData->nWaitNextOpState)
  3214. nReplyError=FZ_REPLY_ERROR;
  3215. else
  3216. m_Operation.nOpState=pData->nWaitNextOpState;
  3217. break;
  3218. case FILETRANSFER_MODE:
  3219. #ifdef MPEXT_NO_ZLIB
  3220. DebugFail();
  3221. m_Operation.nOpState = FILETRANSFER_PORTPASV;
  3222. #else
  3223. if (code == 2 || code == 3)
  3224. m_useZlib = !m_useZlib;
  3225. m_Operation.nOpState = NeedOptsCommand() ? FILETRANSFER_OPTS : FILETRANSFER_PORTPASV;
  3226. #endif
  3227. break;
  3228. case FILETRANSFER_OPTS:
  3229. #ifdef MPEXT_NO_ZLIB
  3230. DebugFail();
  3231. #else
  3232. if (code == 2 || code == 3)
  3233. m_zlibLevel = pData->newZlibLevel;
  3234. #endif
  3235. m_Operation.nOpState = FILETRANSFER_PORTPASV;
  3236. break;
  3237. case FILETRANSFER_PORTPASV:
  3238. if (code == 3 || code == 2)
  3239. {
  3240. if (pData->bPasv)
  3241. {
  3242. CString reply = GetReply();
  3243. int i,j;
  3244. // MP EXT
  3245. if((i=reply.Find(L"("))>=0&&(j=reply.Find(L")"))>=0)
  3246. {
  3247. i++;
  3248. j--;
  3249. }
  3250. else
  3251. {
  3252. // MP EXT
  3253. if ((i=reply.Mid(4).FindOneOf(L"0123456789"))>=0)
  3254. {
  3255. i += 4;
  3256. j = reply.GetLength() - 1;
  3257. }
  3258. else
  3259. {
  3260. if (!pData->bTriedPortPasvOnce)
  3261. {
  3262. pData->bTriedPortPasvOnce = TRUE;
  3263. pData->bPasv = !pData->bPasv;
  3264. }
  3265. else
  3266. nReplyError = FZ_REPLY_ERROR;
  3267. break;
  3268. }
  3269. }
  3270. CString temp = reply.Mid(i,(j-i)+1);
  3271. if (GetFamily() == AF_INET)
  3272. {
  3273. int count=0;
  3274. int pos=0;
  3275. //Convert commas to dots
  3276. temp.Replace( L",", L"." );
  3277. while(1)
  3278. {
  3279. pos=temp.Find( L".", pos);
  3280. if (pos!=-1)
  3281. count++;
  3282. else
  3283. break;
  3284. pos++;
  3285. }
  3286. if (count!=5)
  3287. {
  3288. if (!pData->bTriedPortPasvOnce)
  3289. {
  3290. pData->bTriedPortPasvOnce = TRUE;
  3291. pData->bPasv = !pData->bPasv;
  3292. }
  3293. else
  3294. nReplyError = FZ_REPLY_ERROR;
  3295. break;
  3296. }
  3297. i=temp.ReverseFind(L'.');
  3298. pData->port=atol( T2CA( temp.Right(temp.GetLength()-(i+1)) ) ); //get ls byte of server socket
  3299. temp=temp.Left(i);
  3300. i=temp.ReverseFind(L'.');
  3301. pData->port+=256*atol( T2CA( temp.Right(temp.GetLength()-(i+1)) ) ); // add ms byte to server socket
  3302. pData->host=temp.Left(i);
  3303. if (!CheckForcePasvIp(pData->host))
  3304. {
  3305. nReplyError = FZ_REPLY_ERROR;
  3306. break;
  3307. }
  3308. }
  3309. else if (GetFamily() == AF_INET6)
  3310. {
  3311. temp = temp.Mid(3);
  3312. pData->port = atol( T2CA(temp.Left(temp.GetLength() - 1) ) );
  3313. if (pData->port < 0 || pData->port > 65535)
  3314. {
  3315. LogMessage(FZ_LOG_WARNING, L"Port %u not valid", pData->port);
  3316. nReplyError = FZ_REPLY_ERROR;
  3317. break;
  3318. }
  3319. pData->host = m_CurrentServer.host;
  3320. }
  3321. else
  3322. {
  3323. nReplyError = FZ_REPLY_ERROR;
  3324. break;
  3325. }
  3326. m_pTransferSocket = new CTransferSocket(this, m_Operation.nOpMode);
  3327. #ifndef MPEXT_NO_ZLIB
  3328. if (m_useZlib)
  3329. {
  3330. if (!m_pTransferSocket->InitZlib(m_zlibLevel))
  3331. {
  3332. ShowStatus(L"Failed to initialize zlib", FZ_LOG_ERROR);
  3333. ResetOperation(FZ_REPLY_ERROR);
  3334. return;
  3335. }
  3336. }
  3337. #endif
  3338. #ifndef MPEXT_NO_GSS
  3339. if (m_pGssLayer && m_pGssLayer->AuthSuccessful())
  3340. m_pTransferSocket->UseGSS(m_pGssLayer);
  3341. #endif
  3342. m_pTransferSocket->m_nInternalMessageID = m_pOwner->m_nInternalMessageID;
  3343. m_pTransferSocket->SetFamily(GetFamily());
  3344. if (!m_pTransferSocket->Create(m_pSslLayer && m_bProtP))
  3345. {
  3346. nReplyError = FZ_REPLY_ERROR;
  3347. break;
  3348. }
  3349. DebugCheck(m_pTransferSocket->AsyncSelect());
  3350. }
  3351. if (pData->transferdata.bResume)
  3352. m_Operation.nOpState = FILETRANSFER_REST;
  3353. else
  3354. m_Operation.nOpState = FILETRANSFER_RETRSTOR;
  3355. BOOL res = FALSE;
  3356. if (!m_pDataFile)
  3357. m_pDataFile = new CFile;
  3358. if (pData->transferfile.get)
  3359. {
  3360. if (pData->transferdata.bResume)
  3361. res = m_pDataFile->Open(pData->transferfile.localfile,CFile::modeCreate|CFile::modeWrite|CFile::modeNoTruncate|CFile::shareDenyWrite);
  3362. else
  3363. res = m_pDataFile->Open(pData->transferfile.localfile,CFile::modeWrite|CFile::modeCreate|CFile::shareDenyWrite);
  3364. }
  3365. else
  3366. res = m_pDataFile->Open(pData->transferfile.localfile,CFile::modeRead|CFile::shareDenyNone);
  3367. if (!res)
  3368. {
  3369. wchar_t * Error = m_pTools->LastSysErrorMessage();
  3370. //Error opening the file
  3371. CString str;
  3372. str.Format(IDS_ERRORMSG_FILEOPENFAILED,pData->transferfile.localfile);
  3373. str += L"\n";
  3374. str += Error;
  3375. free(Error);
  3376. ShowStatus(str,FZ_LOG_ERROR);
  3377. nReplyError = FZ_REPLY_ERROR;
  3378. break;
  3379. }
  3380. if (!m_pTransferSocket)
  3381. {
  3382. nReplyError=FZ_REPLY_ERROR;
  3383. break;
  3384. }
  3385. m_pTransferSocket->m_pFile = m_pDataFile;
  3386. if (!pData->transferfile.get)
  3387. {
  3388. // See comment in !get branch below
  3389. pData->transferdata.transfersize=GetLength64(*m_pDataFile);
  3390. pData->transferdata.transferleft=pData->transferdata.transfersize;
  3391. if (pData->transferdata.bResume)
  3392. {
  3393. CString remotefile=pData->transferfile.remotefile;
  3394. if (m_pDirectoryListing)
  3395. for (int i = 0; i < m_pDirectoryListing->num; i++)
  3396. {
  3397. if (m_pDirectoryListing->direntry[i].name == remotefile)
  3398. {
  3399. pData->transferdata.transferleft -= m_pDirectoryListing->direntry[i].size;
  3400. break;
  3401. }
  3402. }
  3403. _int64 size = pData->transferdata.transfersize-pData->transferdata.transferleft;
  3404. LONG low = static_cast<LONG>(size&0xFFFFFFFF);
  3405. LONG high = static_cast<LONG>(size>>32);
  3406. if (SetFilePointer((HANDLE)m_pDataFile->m_hFile, low, &high, FILE_BEGIN)==0xFFFFFFFF && GetLastError()!=NO_ERROR)
  3407. {
  3408. ShowStatus(IDS_ERRORMSG_SETFILEPOINTER, FZ_LOG_ERROR);
  3409. nReplyError = FZ_REPLY_ERROR;
  3410. }
  3411. }
  3412. }
  3413. else
  3414. {
  3415. // Resetting transfersize here is pointless as we
  3416. // always provide valid size in call to FileTransfer.
  3417. // We unnecessary reply on the file being in the directory listing.
  3418. pData->transferdata.transfersize=-1;
  3419. CString remotefile=pData->transferfile.remotefile;
  3420. if (m_pDirectoryListing)
  3421. for (int i=0; i<m_pDirectoryListing->num; i++)
  3422. {
  3423. if (m_pDirectoryListing->direntry[i].name==remotefile)
  3424. {
  3425. pData->hasRemoteDate = true;
  3426. pData->remoteDate = m_pDirectoryListing->direntry[i].date;
  3427. pData->transferdata.transfersize=m_pDirectoryListing->direntry[i].size;
  3428. }
  3429. }
  3430. else if (pData->pFileSize)
  3431. pData->transferdata.transfersize=*pData->pFileSize;
  3432. pData->transferdata.transferleft=pData->transferdata.transfersize;
  3433. }
  3434. }
  3435. else
  3436. if (!pData->bTriedPortPasvOnce)
  3437. {
  3438. pData->bTriedPortPasvOnce = TRUE;
  3439. pData->bPasv = !pData->bPasv;
  3440. }
  3441. else
  3442. nReplyError = FZ_REPLY_ERROR;
  3443. break;
  3444. case FILETRANSFER_REST:
  3445. { //Resume
  3446. if (code==3 || code==2)
  3447. {
  3448. LONG high = 0;
  3449. if (pData->transferfile.get)
  3450. {
  3451. pData->transferdata.transferleft = pData->transferdata.transfersize - GetLength64(*m_pDataFile);
  3452. if (SetFilePointer((HANDLE)m_pDataFile->m_hFile, 0, &high, FILE_END)==0xFFFFFFFF && GetLastError()!=NO_ERROR)
  3453. {
  3454. ShowStatus(IDS_ERRORMSG_SETFILEPOINTER, FZ_LOG_ERROR);
  3455. nReplyError = FZ_REPLY_ERROR;
  3456. }
  3457. else
  3458. m_Operation.nOpState = FILETRANSFER_RETRSTOR;
  3459. }
  3460. else
  3461. {
  3462. m_Operation.nOpState = FILETRANSFER_RETRSTOR;
  3463. }
  3464. }
  3465. else
  3466. {
  3467. if (code==5 && GetReply()[1]==L'0')
  3468. {
  3469. if (pData->transferfile.get)
  3470. {
  3471. if (pData->transferdata.transfersize!=-1)
  3472. {
  3473. DebugAssert(m_pDataFile);
  3474. if (GetLength64(*m_pDataFile) == pData->transferdata.transfersize)
  3475. {
  3476. ShowStatus(IDS_ERRORMSG_CANTRESUME_FINISH, FZ_LOG_STATUS);
  3477. ResetOperation(FZ_REPLY_OK);
  3478. return;
  3479. }
  3480. }
  3481. ShowStatus(IDS_ERRORMSG_CANTRESUME, FZ_LOG_ERROR);
  3482. pData->transferdata.transferleft=pData->transferdata.transfersize;
  3483. pData->transferdata.bResume=FALSE;
  3484. m_Operation.nOpState=FILETRANSFER_RETRSTOR;
  3485. }
  3486. else
  3487. {
  3488. ShowStatus(L"Resume command not supported by server, trying append.", FZ_LOG_PROGRESS);
  3489. pData->transferdata.bResumeAppend=TRUE;
  3490. m_Operation.nOpState=FILETRANSFER_RETRSTOR;
  3491. }
  3492. }
  3493. else
  3494. nReplyError=FZ_REPLY_ERROR;
  3495. }
  3496. }
  3497. break;
  3498. case FILETRANSFER_RETRSTOR:
  3499. // A '1xy opening data connection' reply is expected if RETR/STOR/APPE
  3500. // is successful.
  3501. // On failure, it's a 4xy or 5xy reply.
  3502. // However, some servers send a 2xy transfer complete reply without opening a data
  3503. // connection if there's no data to send.
  3504. if (code==2)
  3505. {
  3506. //Transfer successful, however server did not open data connection
  3507. ResetOperation(FZ_REPLY_OK);
  3508. return;
  3509. }
  3510. else if (code!=1)
  3511. {
  3512. if (!pData->transferfile.get && pData->transferdata.bResume && pData->askOnResumeFail)
  3513. {
  3514. pData->askOnResumeFail = false;
  3515. delete m_pTransferSocket;
  3516. m_pTransferSocket = 0;
  3517. delete m_pDataFile;
  3518. m_pDataFile = 0;
  3519. pData->nGotTransferEndReply = 0;
  3520. nReplyError = CheckOverwriteFile();
  3521. }
  3522. else
  3523. {
  3524. nReplyError = FZ_REPLY_ERROR;
  3525. if (code == 5)
  3526. nReplyError |= FZ_REPLY_CRITICALERROR;
  3527. }
  3528. }
  3529. else
  3530. {
  3531. m_Operation.nOpState=FILETRANSFER_WAITFINISH;
  3532. //Look if we can find any information about the resume offset
  3533. if (!pData->transferfile.get && pData->transferdata.bResumeAppend)
  3534. {
  3535. _int64 nOffset = -1;
  3536. CString reply = GetReply();
  3537. reply.MakeLower();
  3538. int pos = reply.Find(L"restarting at offset ");
  3539. if (pos != -1)
  3540. pos += _tcslen(L"restarting at offset ");
  3541. reply = reply.Mid(pos);
  3542. int i;
  3543. for (i=0; i<reply.GetLength(); i++)
  3544. {
  3545. if (reply[i] < L'0' || reply[i] > L'9')
  3546. break;
  3547. }
  3548. if (i == reply.GetLength())
  3549. nOffset = _ttoi64(reply);
  3550. if (nOffset != -1 && m_pDataFile)
  3551. {
  3552. LONG low = 0;
  3553. LONG high = 0;
  3554. if (nOffset >= GetLength64(*m_pDataFile))
  3555. {
  3556. if (SetFilePointer((HANDLE)m_pDataFile->m_hFile, 0, &high, FILE_END)==0xFFFFFFFF && GetLastError()!=NO_ERROR)
  3557. {
  3558. ShowStatus(IDS_ERRORMSG_SETFILEPOINTER, FZ_LOG_ERROR);
  3559. nReplyError = FZ_REPLY_ERROR;
  3560. }
  3561. }
  3562. else
  3563. {
  3564. low=static_cast<LONG>(nOffset&0xFFFFFFFF);
  3565. high=static_cast<LONG>(nOffset>>32);
  3566. if (SetFilePointer((HANDLE)m_pDataFile->m_hFile, low, &high, FILE_BEGIN)==0xFFFFFFFF && GetLastError()!=NO_ERROR)
  3567. {
  3568. ShowStatus(IDS_ERRORMSG_SETFILEPOINTER, FZ_LOG_ERROR);
  3569. nReplyError = FZ_REPLY_ERROR;
  3570. }
  3571. }
  3572. }
  3573. if (!nReplyError && !GetOptionVal(OPTION_MPEXT_TRANSFER_ACTIVE_IMMEDIATELY))
  3574. {
  3575. m_pTransferSocket->SetActive();
  3576. }
  3577. }
  3578. else if (pData->bPasv && !GetOptionVal(OPTION_MPEXT_TRANSFER_ACTIVE_IMMEDIATELY))
  3579. {
  3580. m_pTransferSocket->SetActive();
  3581. }
  3582. }
  3583. break;
  3584. case FILETRANSFER_WAITFINISH:
  3585. if (bFinish)
  3586. {
  3587. if (nError)
  3588. {
  3589. LogMessage(FZ_LOG_INFO, L"Transfer failed");
  3590. }
  3591. else
  3592. {
  3593. LogMessage(FZ_LOG_INFO, L"Transfer completed");
  3594. }
  3595. }
  3596. if (!bFinish)
  3597. {
  3598. if (code == 1)
  3599. {
  3600. /* Some non-rfc959 compatible servers send more than one code 1yz reply, especially if using APPE.
  3601. * Just ignore the additional ones.
  3602. */
  3603. LogMessage(FZ_LOG_WARNING, L"Server sent more than one code 1yz reply, ignoring additional reply");
  3604. break;
  3605. }
  3606. else if (code!=2 && code!=3)
  3607. nReplyError = FZ_REPLY_ERROR;
  3608. else
  3609. {
  3610. pData->nGotTransferEndReply |= 1;
  3611. }
  3612. }
  3613. if (pData->nGotTransferEndReply==3)
  3614. {
  3615. // Not really sure about a reason for the m_pDataFile condition here
  3616. TransferFinished(m_pDataFile != NULL);
  3617. return;
  3618. }
  3619. break;
  3620. case FILETRANSFER_MFMT:
  3621. //Transfer successful
  3622. ResetOperation(FZ_REPLY_OK);
  3623. break;
  3624. }
  3625. if (nReplyError)
  3626. { //Error transferring the file
  3627. LogMessage(FZ_LOG_INFO, L"Transfer response error (%x)", nReplyError);
  3628. ResetOperation(nReplyError);
  3629. return;
  3630. }
  3631. }
  3632. /////////////////
  3633. //Send commands//
  3634. /////////////////
  3635. BOOL bError=FALSE;
  3636. switch(m_Operation.nOpState)
  3637. {
  3638. case FILETRANSFER_PWD:
  3639. if (!Send(L"PWD"))
  3640. bError = TRUE;
  3641. break;
  3642. case FILETRANSFER_CWD:
  3643. if (!Send(L"CWD "+pData->transferfile.remotepath.GetPathUnterminated()))
  3644. bError=TRUE;
  3645. break;
  3646. case FILETRANSFER_MKD:
  3647. if (pData->nMKDOpState==MKD_INIT)
  3648. {
  3649. if (!pData->transferfile.remotepath.HasParent())
  3650. {
  3651. LogMessage(FZ_LOG_WARNING, L"Can't create root dir");
  3652. ResetOperation(FZ_REPLY_CRITICALERROR);
  3653. return;
  3654. }
  3655. if (!Send(L"CWD "+pData->transferfile.remotepath.GetParent().GetPathUnterminated()))
  3656. bError=TRUE;
  3657. pData->MKDCurrent=pData->transferfile.remotepath.GetParent();
  3658. pData->MKDSegments.push_front(pData->transferfile.remotepath.GetLastSegment());
  3659. pData->nMKDOpState=MKD_FINDPARENT;
  3660. }
  3661. break;
  3662. case FILETRANSFER_CWD2:
  3663. if (!Send(L"CWD "+pData->transferfile.remotepath.GetPathUnterminated()))
  3664. bError=TRUE;
  3665. break;
  3666. case FILETRANSFER_PWD2:
  3667. if (!Send(L"PWD"))
  3668. bError=TRUE;
  3669. break;
  3670. case FILETRANSFER_LIST_MODE:
  3671. #ifdef MPEXT_NO_ZLIB
  3672. DebugFail();
  3673. #else
  3674. if (m_useZlib)
  3675. {
  3676. if (!Send(L"MODE S"))
  3677. bError = TRUE;
  3678. }
  3679. else
  3680. if (!Send(L"MODE Z"))
  3681. bError = TRUE;
  3682. #endif
  3683. break;
  3684. case FILETRANSFER_LIST_OPTS:
  3685. #ifdef MPEXT_NO_ZLIB
  3686. DebugFail();
  3687. #else
  3688. {
  3689. pData->newZlibLevel = GetOptionVal(OPTION_MODEZ_LEVEL);
  3690. CString str;
  3691. str.Format(L"OPTS MODE Z LEVEL %d", pData->newZlibLevel);
  3692. if (!Send(str))
  3693. bError = TRUE;
  3694. }
  3695. #endif
  3696. break;
  3697. case FILETRANSFER_LIST_PORTPASV:
  3698. delete m_pDirectoryListing;
  3699. m_pDirectoryListing=0;
  3700. if (pData->bPasv)
  3701. {
  3702. if (!Send((GetFamily() == AF_INET) ? L"PASV" : L"EPSV"))
  3703. bError=TRUE;
  3704. }
  3705. else
  3706. {
  3707. if (m_pTransferSocket)
  3708. {
  3709. delete m_pTransferSocket;
  3710. }
  3711. m_pTransferSocket = new CTransferSocket(this, CSMODE_LIST);
  3712. #ifndef MPEXT_NO_ZLIB
  3713. if (m_useZlib)
  3714. {
  3715. if (!m_pTransferSocket->InitZlib(m_zlibLevel))
  3716. {
  3717. ShowStatus(L"Failed to initialize zlib", FZ_LOG_ERROR);
  3718. ResetOperation(FZ_REPLY_ERROR);
  3719. return;
  3720. }
  3721. }
  3722. #endif
  3723. #ifndef MPEXT_NO_GSS
  3724. if (m_pGssLayer && m_pGssLayer->AuthSuccessful())
  3725. m_pTransferSocket->UseGSS(m_pGssLayer);
  3726. #endif
  3727. m_pTransferSocket->m_nInternalMessageID = m_pOwner->m_nInternalMessageID;
  3728. m_pTransferSocket->m_bListening = TRUE;
  3729. m_pTransferSocket->SetFamily(GetFamily());
  3730. if(!m_pTransferSocket->Create(m_pSslLayer && m_bProtP) || !m_pTransferSocket->AsyncSelect())
  3731. bError=TRUE;
  3732. else if (m_pProxyLayer)
  3733. {
  3734. SOCKADDR_IN addr;
  3735. int len=sizeof(addr);
  3736. if (!m_pProxyLayer->GetPeerName((SOCKADDR *)&addr,&len))
  3737. {
  3738. ShowStatus(IDS_ERRORMSG_CANTGETLIST,FZ_LOG_ERROR);
  3739. bError=TRUE;
  3740. }
  3741. else if (!m_pTransferSocket->Listen(addr.sin_addr.S_un.S_addr))
  3742. {
  3743. ShowStatus(IDS_ERRORMSG_CANTGETLIST,FZ_LOG_ERROR);
  3744. bError=TRUE;
  3745. }
  3746. //Don't send PORT command yet, params are unknown.
  3747. //will be sent in TransfersocketListenFinished
  3748. }
  3749. else
  3750. {
  3751. //Set up an active file transfer
  3752. CString temp;
  3753. UINT nPort;
  3754. if (//create listen socket (let Windows choose the port) & start listening
  3755. !m_pTransferSocket->Listen() ||
  3756. !m_pTransferSocket->GetSockName(temp, nPort))
  3757. {
  3758. bError = TRUE;
  3759. break;
  3760. }
  3761. CString host;
  3762. if (GetFamily() == AF_INET)
  3763. {
  3764. host = GetOption(OPTION_TRANSFERIP);
  3765. if (host != L"")
  3766. {
  3767. DWORD ip = inet_addr(T2CA(host));
  3768. if (ip != INADDR_NONE)
  3769. host.Format(L"%d,%d,%d,%d", ip%256, (ip>>8)%256, (ip>>16)%256, ip>>24);
  3770. else
  3771. {
  3772. hostent *fullname = gethostbyname(T2CA(host));
  3773. if (!fullname)
  3774. host = L"";
  3775. else
  3776. {
  3777. DWORD ip = ((LPIN_ADDR)fullname->h_addr)->s_addr;
  3778. if (ip != INADDR_NONE)
  3779. host.Format(L"%d,%d,%d,%d", ip%256, (ip>>8)%256, (ip>>16)%256, ip>>24);
  3780. else
  3781. host = L"";
  3782. }
  3783. }
  3784. }
  3785. if (host == L"")
  3786. {
  3787. UINT temp;
  3788. if (!GetSockName(host, temp))
  3789. {
  3790. bError = true;
  3791. break;
  3792. }
  3793. host.Replace(L'.', L',');
  3794. }
  3795. if (!bError)
  3796. {
  3797. host.Format(host+L",%d,%d", nPort/256, nPort%256);
  3798. if (!Send(L"PORT " + host)) // send PORT cmd to server
  3799. bError = TRUE;
  3800. }
  3801. }
  3802. else if (GetFamily() == AF_INET6)
  3803. {
  3804. host = GetOption(OPTION_TRANSFERIP6);
  3805. if (host != L"")
  3806. {
  3807. USES_CONVERSION;
  3808. addrinfo hints, *res;
  3809. memset(&hints, 0, sizeof(addrinfo));
  3810. hints.ai_family = AF_INET6;
  3811. hints.ai_socktype = SOCK_STREAM;
  3812. if (!getaddrinfo(T2CA(host), "1024", &hints, &res))
  3813. {
  3814. host = Inet6AddrToString(((SOCKADDR_IN6 *)res->ai_addr)->sin6_addr);
  3815. freeaddrinfo(res);
  3816. }
  3817. else
  3818. host = L"";
  3819. }
  3820. if (host == L"")
  3821. {
  3822. UINT temp;
  3823. if(!GetSockName(host, temp))
  3824. bError = true;
  3825. }
  3826. if (!bError)
  3827. {
  3828. // assamble EPRT command
  3829. CString cmd;
  3830. cmd.Format(L"EPRT |2|" + host + L"|%d|", nPort);
  3831. if (!Send(cmd))
  3832. bError = TRUE;
  3833. }
  3834. }
  3835. else
  3836. {
  3837. LogMessage(FZ_LOG_WARNING, L"Protocol %d not supported", GetFamily());
  3838. bError = true;
  3839. }
  3840. }
  3841. }
  3842. break;
  3843. case FILETRANSFER_LIST_TYPE:
  3844. if (!Send(L"TYPE A"))
  3845. bError=TRUE;
  3846. break;
  3847. case FILETRANSFER_LIST_LIST:
  3848. {
  3849. if (!m_pTransferSocket)
  3850. {
  3851. ResetOperation(FZ_REPLY_ERROR);
  3852. return;
  3853. }
  3854. m_pTransferSocket->SetActive();
  3855. CString cmd = GetListingCmd();
  3856. if(!Send(cmd))
  3857. bError=TRUE;
  3858. else if(pData->bPasv)
  3859. {
  3860. if (!ConnectTransferSocket(pData->host, pData->port))
  3861. {
  3862. bError=TRUE;
  3863. ShowStatus(IDS_ERRORMSG_CANTGETLIST,FZ_LOG_ERROR);
  3864. }
  3865. }
  3866. }
  3867. break;
  3868. case FILETRANSFER_NOLIST_SIZE:
  3869. {
  3870. CString command = L"SIZE ";
  3871. command += pData->transferfile.remotepath.FormatFilename(pData->transferfile.remotefile, !pData->bUseAbsolutePaths);
  3872. if (!Send(command))
  3873. bError=TRUE;
  3874. }
  3875. break;
  3876. case FILETRANSFER_NOLIST_MDTM:
  3877. {
  3878. CString command = L"MDTM ";
  3879. command += pData->transferfile.remotepath.FormatFilename(pData->transferfile.remotefile, !pData->bUseAbsolutePaths);
  3880. if (!Send(command))
  3881. bError=TRUE;
  3882. }
  3883. break;
  3884. case FILETRANSFER_TYPE:
  3885. if (pData->transferfile.nType==1)
  3886. {
  3887. if (!Send(L"TYPE A"))
  3888. bError=TRUE;
  3889. }
  3890. else
  3891. if (!Send(L"TYPE I"))
  3892. bError=TRUE;
  3893. break;
  3894. case FILETRANSFER_MODE:
  3895. #ifdef MPEXT_NO_ZLIB
  3896. DebugFail();
  3897. #else
  3898. if (m_useZlib)
  3899. {
  3900. if (!Send(L"MODE S"))
  3901. bError = TRUE;
  3902. }
  3903. else
  3904. if (!Send(L"MODE Z"))
  3905. bError = TRUE;
  3906. #endif
  3907. break;
  3908. case FILETRANSFER_OPTS:
  3909. #ifdef MPEXT_NO_ZLIB
  3910. DebugFail();
  3911. #else
  3912. {
  3913. pData->newZlibLevel = GetOptionVal(OPTION_MODEZ_LEVEL);
  3914. CString str;
  3915. str.Format(L"OPTS MODE Z LEVEL %d", pData->newZlibLevel);
  3916. if (!Send(str))
  3917. bError = TRUE;
  3918. }
  3919. #endif
  3920. break;
  3921. case FILETRANSFER_PORTPASV:
  3922. if (pData->bPasv)
  3923. {
  3924. if (!Send((GetFamily() == AF_INET) ? L"PASV" : L"EPSV"))
  3925. bError=TRUE;
  3926. }
  3927. else
  3928. {
  3929. if (m_pTransferSocket)
  3930. {
  3931. delete m_pTransferSocket;
  3932. }
  3933. m_pTransferSocket=new CTransferSocket(this, m_Operation.nOpMode);
  3934. #ifndef MPEXT_NO_ZLIB
  3935. if (m_useZlib)
  3936. {
  3937. if (!m_pTransferSocket->InitZlib(m_zlibLevel))
  3938. {
  3939. ShowStatus(L"Failed to initialize zlib", FZ_LOG_ERROR);
  3940. ResetOperation(FZ_REPLY_ERROR);
  3941. return;
  3942. }
  3943. }
  3944. #endif
  3945. #ifndef MPEXT_NO_GSS
  3946. if (m_pGssLayer && m_pGssLayer->AuthSuccessful())
  3947. m_pTransferSocket->UseGSS(m_pGssLayer);
  3948. #endif
  3949. m_pTransferSocket->m_nInternalMessageID=m_pOwner->m_nInternalMessageID;
  3950. m_pTransferSocket->m_bListening = TRUE;
  3951. m_pTransferSocket->SetFamily(GetFamily());
  3952. if(!m_pTransferSocket->Create(m_pSslLayer && m_bProtP) || !m_pTransferSocket->AsyncSelect())
  3953. bError = TRUE;
  3954. else if (m_pProxyLayer)
  3955. {
  3956. SOCKADDR_IN addr;
  3957. int len=sizeof(addr);
  3958. if (!m_pProxyLayer->GetPeerName((SOCKADDR *)&addr,&len))
  3959. {
  3960. ShowStatus(IDS_ERRORMSG_CANTGETLIST,FZ_LOG_ERROR);
  3961. bError=TRUE;
  3962. }
  3963. else if (!m_pTransferSocket->Listen(addr.sin_addr.S_un.S_addr))
  3964. {
  3965. ShowStatus(IDS_ERRORMSG_CANTGETLIST,FZ_LOG_ERROR);
  3966. bError=TRUE;
  3967. }
  3968. //Don't send PORT command yet, params are unknown.
  3969. //will be sent in TransfersocketListenFinished
  3970. }
  3971. else
  3972. {
  3973. //Set up an active file transfer
  3974. CString temp;
  3975. UINT nPort;
  3976. if (//create listen socket (let Windows choose the port) & start listening
  3977. !m_pTransferSocket->Listen() ||
  3978. !m_pTransferSocket->GetSockName(temp, nPort))
  3979. {
  3980. bError = TRUE;
  3981. break;
  3982. }
  3983. CString host;
  3984. if (GetFamily() == AF_INET)
  3985. {
  3986. host = GetOption(OPTION_TRANSFERIP);
  3987. if (host != L"")
  3988. {
  3989. DWORD ip = inet_addr(T2CA(host));
  3990. if (ip != INADDR_NONE)
  3991. host.Format(L"%d,%d,%d,%d", ip%256, (ip>>8)%256, (ip>>16)%256, ip>>24);
  3992. else
  3993. {
  3994. hostent *fullname = gethostbyname(T2CA(host));
  3995. if (!fullname)
  3996. host = L"";
  3997. else
  3998. {
  3999. DWORD ip = ((LPIN_ADDR)fullname->h_addr)->s_addr;
  4000. if (ip != INADDR_NONE)
  4001. host.Format(L"%d,%d,%d,%d", ip%256, (ip>>8)%256, (ip>>16)%256, ip>>24);
  4002. else
  4003. host = L"";
  4004. }
  4005. }
  4006. }
  4007. if (host == L"")
  4008. {
  4009. UINT temp;
  4010. if (!GetSockName(host, temp))
  4011. bError = true;
  4012. host.Replace(L'.', L',');
  4013. }
  4014. if (!bError)
  4015. {
  4016. host.Format(host+L",%d,%d", nPort/256, nPort%256);
  4017. if (!Send(L"PORT " + host)) // send PORT cmd to server
  4018. bError = TRUE;
  4019. }
  4020. }
  4021. else if (GetFamily() == AF_INET6)
  4022. {
  4023. host = GetOption(OPTION_TRANSFERIP6);
  4024. if (host != L"")
  4025. {
  4026. USES_CONVERSION;
  4027. addrinfo hints, *res;
  4028. memset(&hints, 0, sizeof(addrinfo));
  4029. hints.ai_family = AF_INET6;
  4030. hints.ai_socktype = SOCK_STREAM;
  4031. if (!getaddrinfo(T2CA(host), "1024", &hints, &res))
  4032. {
  4033. host = Inet6AddrToString(((SOCKADDR_IN6 *)res->ai_addr)->sin6_addr);
  4034. freeaddrinfo(res);
  4035. }
  4036. else
  4037. host = L"";
  4038. }
  4039. if (host == L"")
  4040. {
  4041. UINT temp;
  4042. if(!GetSockName(host, temp))
  4043. bError = true;
  4044. }
  4045. if (!bError)
  4046. {
  4047. // assamble EPRT command
  4048. CString cmd;
  4049. cmd.Format(L"EPRT |2|" + host + L"|%d|", nPort);
  4050. if (!Send(cmd))
  4051. bError = TRUE;
  4052. }
  4053. }
  4054. else
  4055. {
  4056. LogMessage(FZ_LOG_WARNING, L"Protocol %d not supported", GetFamily());
  4057. bError = true;
  4058. }
  4059. if (bError)
  4060. {
  4061. ResetOperation(FZ_REPLY_ERROR);
  4062. return;
  4063. }
  4064. }
  4065. }
  4066. break;
  4067. case FILETRANSFER_REST:
  4068. DebugAssert(m_pDataFile);
  4069. {
  4070. CString command;
  4071. __int64 transferoffset =
  4072. pData->transferfile.get ?
  4073. GetLength64(*m_pDataFile) :
  4074. pData->transferdata.transfersize-pData->transferdata.transferleft;
  4075. command.Format(L"REST %I64d", transferoffset);
  4076. if (!Send(command))
  4077. bError=TRUE;
  4078. }
  4079. break;
  4080. case FILETRANSFER_RETRSTOR:
  4081. // send RETR/STOR command to server
  4082. if (!m_pTransferSocket)
  4083. {
  4084. ResetOperation(FZ_REPLY_ERROR);
  4085. return;
  4086. }
  4087. m_pTransferSocket->m_transferdata=pData->transferdata;
  4088. if (GetOptionVal(OPTION_MPEXT_TRANSFER_ACTIVE_IMMEDIATELY) || !pData->bPasv)
  4089. {
  4090. m_pTransferSocket->SetActive();
  4091. }
  4092. CString filename;
  4093. filename = pData->transferfile.remotepath.FormatFilename(pData->transferfile.remotefile, !pData->bUseAbsolutePaths);
  4094. if(!Send((pData->transferfile.get?L"RETR ":(pData->transferdata.bResumeAppend)?L"APPE ":L"STOR ")+ filename))
  4095. bError = TRUE;
  4096. else
  4097. {
  4098. if (pData->bPasv)
  4099. {
  4100. // if PASV create the socket & initiate outbound data channel connection
  4101. if (!ConnectTransferSocket(pData->host, pData->port))
  4102. {
  4103. bError=TRUE;
  4104. }
  4105. }
  4106. }
  4107. break;
  4108. }
  4109. if (bError)
  4110. { //Error transferring the file
  4111. LogMessage(FZ_LOG_INFO, L"Transfer error");
  4112. ResetOperation(FZ_REPLY_ERROR);
  4113. return;
  4114. }
  4115. }
  4116. void CFtpControlSocket::TransferHandleListError()
  4117. {
  4118. if (m_pTransferSocket)
  4119. delete m_pTransferSocket;
  4120. m_pTransferSocket=0;
  4121. m_Operation.nOpState = FILETRANSFER_NOLIST_SIZE;
  4122. }
  4123. static int atoui(const wchar_t * s)
  4124. {
  4125. wchar_t * endptr;
  4126. int result = wcstol(s, &endptr, 10);
  4127. if ((*s == L'\0') || (*endptr != L'\0'))
  4128. {
  4129. result = -1;
  4130. }
  4131. return result;
  4132. }
  4133. bool CFtpControlSocket::HandleMdtm(int code, t_directory::t_direntry::t_date & date)
  4134. {
  4135. bool result = false;
  4136. if (code==2)
  4137. {
  4138. CString line = GetReply();
  4139. if ( line.GetLength()>4 && line.Left(4) == L"213 " )
  4140. {
  4141. int y=0, M=0, d=0, h=0, m=0, s=0;
  4142. bool hasseconds = false;
  4143. line=line.Mid(4);
  4144. y=atoui(line.Left(4));
  4145. if ((y >= 0) && (line.GetLength() > 4))
  4146. {
  4147. line=line.Mid(4);
  4148. M=atoui(line.Left(2));
  4149. if ((M >= 0) && (line.GetLength() > 2))
  4150. {
  4151. line=line.Mid(2);
  4152. d=atoui(line.Left(2));
  4153. if ((d >= 0) && (line.GetLength() > 2))
  4154. {
  4155. line=line.Mid(2);
  4156. h=atoui(line.Left(2));
  4157. if ((h >= 0) && (line.GetLength() > 2))
  4158. {
  4159. line=line.Mid(2);
  4160. m=atoui(line.Left(2));
  4161. if ((m >= 0) && (line.GetLength() > 2))
  4162. {
  4163. line=line.Mid(2);
  4164. s=_ttoi(line.Left(2));
  4165. hasseconds = true;
  4166. }
  4167. }
  4168. }
  4169. if (M>0 && M<=12 && d>0 && d<=31 && h>=0 && h<24 && m>=0 && m<60 && s>=0 && s<60)
  4170. {
  4171. result = true;
  4172. date.year = y;
  4173. date.month = M;
  4174. date.day = d;
  4175. date.hour = h;
  4176. date.minute = m;
  4177. date.second = s;
  4178. date.hastime = true;
  4179. date.hasyear = true;
  4180. date.hasseconds = hasseconds;
  4181. date.hasdate = true;
  4182. date.utc = true;
  4183. }
  4184. }
  4185. }
  4186. }
  4187. }
  4188. return result;
  4189. }
  4190. bool CFtpControlSocket::HandleSize(int code, __int64 & size)
  4191. {
  4192. bool result = false;
  4193. if (code == 2)
  4194. {
  4195. CString line = GetReply();
  4196. if ((line.GetLength() > 4) && (line.Left(4) == L"213 "))
  4197. {
  4198. size = _ttoi64(line.Mid(4));
  4199. result = true;
  4200. }
  4201. }
  4202. return result;
  4203. }
  4204. void CFtpControlSocket::TransferFinished(bool preserveFileTimeForUploads)
  4205. {
  4206. CFileTransferData *pData=static_cast<CFileTransferData *>(m_Operation.pData);
  4207. if (GetOptionVal(OPTION_PRESERVEDOWNLOADFILETIME) && m_pDataFile &&
  4208. pData->transferfile.get)
  4209. {
  4210. m_pTools->PreserveDownloadFileTime(
  4211. (HANDLE)m_pDataFile->m_hFile, reinterpret_cast<void *>(pData->transferfile.nUserData));
  4212. }
  4213. if (!pData->transferfile.get &&
  4214. GetOptionVal(OPTION_MPEXT_PRESERVEUPLOADFILETIME) && preserveFileTimeForUploads &&
  4215. ((m_serverCapabilities.GetCapability(mfmt_command) == yes) ||
  4216. (m_serverCapabilities.GetCapability(mdtm_command) == yes)))
  4217. {
  4218. CString filename =
  4219. pData->transferfile.remotepath.FormatFilename(pData->transferfile.remotefile, !pData->bUseAbsolutePaths);
  4220. struct tm tm;
  4221. if (m_pTools->GetFileModificationTimeInUtc((LPCTSTR)pData->transferfile.localfile, tm))
  4222. {
  4223. CString timestr;
  4224. timestr.Format(L"%02d%02d%02d%02d%02d%02d",
  4225. 1900 + tm.tm_year, 1 + tm.tm_mon, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec);
  4226. CString command;
  4227. if (m_serverCapabilities.GetCapability(mfmt_command) == yes)
  4228. {
  4229. command = L"MFMT";
  4230. }
  4231. else
  4232. {
  4233. // Support for MDTM does not necessarily mean
  4234. // that the server supports non-standard hack
  4235. // of setting timestamp using
  4236. // MFMT-like (two argument) call to MDTM.
  4237. // IIS definitelly does.
  4238. command = L"MDTM";
  4239. }
  4240. if (Send( command + L" " + timestr + L" " + filename))
  4241. {
  4242. m_Operation.nOpState = FILETRANSFER_MFMT;
  4243. return;
  4244. }
  4245. }
  4246. }
  4247. //Transfer successful
  4248. ResetOperation(FZ_REPLY_OK);
  4249. }
  4250. void CFtpControlSocket::Cancel(BOOL bQuit/*=FALSE*/)
  4251. {
  4252. const int nOpMode = m_Operation.nOpMode;
  4253. if (nOpMode==CSMODE_CONNECT)
  4254. DoClose(FZ_REPLY_CANCEL);
  4255. else if (nOpMode & CSMODE_LIST)
  4256. {
  4257. if (m_Operation.nOpState == LIST_WAITFINISH)
  4258. m_skipReply = true;
  4259. ResetOperation(FZ_REPLY_ERROR | FZ_REPLY_CANCEL);
  4260. }
  4261. else if (nOpMode & CSMODE_TRANSFER)
  4262. {
  4263. if (m_Operation.nOpState == FILETRANSFER_WAITFINISH || m_Operation.nOpState == FILETRANSFER_LIST_WAITFINISH)
  4264. m_skipReply = true;
  4265. ResetOperation(FZ_REPLY_ERROR | FZ_REPLY_CANCEL | FZ_REPLY_ABORTED);
  4266. }
  4267. else if (nOpMode != CSMODE_NONE)
  4268. ResetOperation(FZ_REPLY_ERROR | FZ_REPLY_CANCEL);
  4269. if (nOpMode != CSMODE_NONE && !bQuit)
  4270. ShowStatus(IDS_ERRORMSG_INTERRUPTED, FZ_LOG_ERROR);
  4271. if (m_awaitsReply)
  4272. m_skipReply = true;
  4273. }
  4274. void CFtpControlSocket::TransfersocketListenFinished(unsigned int ip, unsigned short port)
  4275. {
  4276. if (m_Operation.nOpMode&CSMODE_TRANSFER || m_Operation.nOpMode&CSMODE_LIST)
  4277. {
  4278. CString host;
  4279. host.Format(L"%d,%d,%d,%d,%d,%d",ip%256,(ip>>8)%256,(ip>>16)%256,(ip>>24)%256,port%256,port>>8);
  4280. Send(L"PORT "+host);
  4281. }
  4282. }
  4283. void CFtpControlSocket::ResumeTransfer()
  4284. {
  4285. if (m_pTransferSocket && (m_Operation.nOpMode&CSMODE_TRANSFER || m_Operation.nOpMode&CSMODE_LIST))
  4286. {
  4287. m_pTransferSocket->OnSend(0);
  4288. m_pTransferSocket->OnReceive(0);
  4289. }
  4290. }
  4291. BOOL CFtpControlSocket::Create()
  4292. {
  4293. return CAsyncSocketEx::Create(0, SOCK_STREAM, FD_READ | FD_WRITE | FD_OOB | FD_ACCEPT | FD_CONNECT | FD_CLOSE, 0, GetOptionVal(OPTION_ENABLE_IPV6) ? AF_UNSPEC : AF_INET);
  4294. }
  4295. void CFtpControlSocket::ResetOperation(int nSuccessful /*=FALSE*/)
  4296. {
  4297. if (nSuccessful & FZ_REPLY_CRITICALERROR)
  4298. nSuccessful |= FZ_REPLY_ERROR;
  4299. if (m_pTransferSocket)
  4300. {
  4301. ResetTransferSocket(nSuccessful & (FZ_REPLY_ERROR | FZ_REPLY_CANCEL));
  4302. }
  4303. if (m_pDataFile)
  4304. delete m_pDataFile;
  4305. m_pDataFile=0;
  4306. if (m_Operation.nOpMode)
  4307. {
  4308. //Unset busy attribute so that new commands can be executed
  4309. m_pOwner->SetBusy(FALSE);
  4310. if (m_Operation.nOpMode&CSMODE_CONNECT && nSuccessful&FZ_REPLY_ERROR)
  4311. {
  4312. nSuccessful|=FZ_REPLY_DISCONNECTED;
  4313. ShowStatus(IDS_ERRORMSG_CANTCONNECT, FZ_LOG_ERROR);
  4314. }
  4315. if (m_Operation.nOpMode & (CSMODE_LIST|CSMODE_LISTFILE|CSMODE_TRANSFER) && nSuccessful==FZ_REPLY_OK)
  4316. m_LastSendTime=CTime::GetCurrentTime();
  4317. //Update remote file entry
  4318. if (m_Operation.pData &&
  4319. m_Operation.nOpMode&CSMODE_TRANSFER &&
  4320. (!((CFileTransferData*)m_Operation.pData)->transferfile.get) &&
  4321. m_pDirectoryListing &&
  4322. m_Operation.nOpState>=FILETRANSFER_RETRSTOR)
  4323. {
  4324. CString filename=((CFileTransferData*)m_Operation.pData)->transferfile.remotefile;
  4325. CServerPath path=((CFileTransferData*)m_Operation.pData)->transferfile.remotepath;
  4326. t_directory dir;
  4327. BOOL res=FALSE;
  4328. if (m_pDirectoryListing)
  4329. {
  4330. if (m_pDirectoryListing->path==path)
  4331. {
  4332. dir=*m_pDirectoryListing;
  4333. res=TRUE;
  4334. }
  4335. }
  4336. t_directory WorkingDir;
  4337. BOOL bFound=m_pOwner->GetWorkingDir(&WorkingDir);
  4338. if (!res && bFound)
  4339. if (WorkingDir.path==path)
  4340. {
  4341. dir=WorkingDir;
  4342. res=TRUE;
  4343. }
  4344. if (res)
  4345. {
  4346. int i;
  4347. for (i=0; i<dir.num; i++)
  4348. if (dir.direntry[i].name==filename)
  4349. {
  4350. dir.direntry[i].bUnsure = TRUE;
  4351. if (nSuccessful & FZ_REPLY_ERROR)
  4352. {
  4353. dir.direntry[i].bUnsure = TRUE;
  4354. if (!((CFileTransferData *)m_Operation.pData)->transferfile.get)
  4355. dir.direntry[i].size = -1;
  4356. if (!GetLength64(((CFileTransferData *)m_Operation.pData)->transferfile.localfile, dir.direntry[i].size))
  4357. dir.direntry[i].size = -1;
  4358. }
  4359. dir.direntry[i].date.hasdate = false;
  4360. break;
  4361. }
  4362. if (i==dir.num)
  4363. {
  4364. t_directory::t_direntry *entries=new t_directory::t_direntry[dir.num+1];
  4365. int i;
  4366. for (i=0; i<dir.num; i++)
  4367. entries[i]=dir.direntry[i];
  4368. entries[i].name=filename;
  4369. entries[i].dir=FALSE;
  4370. entries[i].date.hasdate=FALSE;
  4371. entries[i].size=-1;
  4372. if (nSuccessful&FZ_REPLY_OK)
  4373. entries[i].bUnsure=FALSE;
  4374. else
  4375. entries[i].bUnsure=TRUE;
  4376. delete [] dir.direntry;
  4377. dir.direntry=entries;
  4378. dir.num++;
  4379. }
  4380. BOOL updated=FALSE;
  4381. if (m_pDirectoryListing && m_pDirectoryListing->path==dir.path)
  4382. {
  4383. updated=TRUE;
  4384. SetDirectoryListing(&dir, bFound && WorkingDir.path == dir.path);
  4385. }
  4386. if (!updated)
  4387. if (bFound && WorkingDir.path==dir.path)
  4388. {
  4389. updated = TRUE;
  4390. m_pOwner->SetWorkingDir(&dir);
  4391. }
  4392. }
  4393. }
  4394. if (m_Operation.pData && nSuccessful&FZ_REPLY_ERROR)
  4395. {
  4396. if (m_Operation.nOpMode&CSMODE_TRANSFER)
  4397. if (nSuccessful&FZ_REPLY_ABORTED)
  4398. //Transfer aborted by user
  4399. ShowStatus((m_Operation.nOpMode&CSMODE_DOWNLOAD)?IDS_ERRORMSG_DOWNLOADABORTED:IDS_ERRORMSG_UPLOADABORTED,FZ_LOG_ERROR);
  4400. else
  4401. ShowStatus(((CFileTransferData*)m_Operation.pData)->transferfile.get?IDS_ERRORMSG_DOWNLOADFAILED:IDS_ERRORMSG_UPLOADFAILED,FZ_LOG_ERROR);
  4402. else if (m_Operation.nOpMode&CSMODE_LIST)
  4403. ShowStatus(IDS_ERRORMSG_CANTGETLIST,FZ_LOG_ERROR);
  4404. else if (m_Operation.nOpMode&CSMODE_LISTFILE)
  4405. ShowStatus(IDS_ERRORMSG_CANTGETLISTFILE,FZ_LOG_ERROR);
  4406. }
  4407. else if (m_Operation.pData && m_Operation.nOpMode&CSMODE_TRANSFER && nSuccessful==FZ_REPLY_OK)
  4408. ShowStatus(((CFileTransferData*)m_Operation.pData)->transferfile.get?IDS_STATUSMSG_DOWNLOADSUCCESSFUL:IDS_STATUSMSG_UPLOADSUCCESSFUL,FZ_LOG_STATUS);
  4409. }
  4410. else
  4411. {
  4412. // When control socket is waiting for reply
  4413. // to keepalive (!IsReady), while new command comes,
  4414. // its execution is postponed
  4415. // (CMainThread::m_pPostKeepAliveCommand),
  4416. // but the main thread
  4417. // is set to busy state already (CMainThread::Command).
  4418. // if connection is closed before without receiving reply,
  4419. // main thread would stay busy forever.
  4420. m_pOwner->SetBusy(FALSE);
  4421. //No operation in progress
  4422. nSuccessful&=FZ_REPLY_DISCONNECTED|FZ_REPLY_CANCEL;
  4423. }
  4424. if (nSuccessful&FZ_REPLY_DISCONNECTED)
  4425. m_pOwner->SetWorkingDir(0); //Disconnected, reset working dir
  4426. if (m_Operation.nOpMode)
  4427. GetIntern()->PostMessage(FZ_MSG_MAKEMSG(FZ_MSG_REPLY, m_pOwner->m_LastCommand.id), nSuccessful);
  4428. else
  4429. GetIntern()->PostMessage(FZ_MSG_MAKEMSG(FZ_MSG_REPLY, 0), nSuccessful);
  4430. m_Operation.nOpMode=0;
  4431. m_Operation.nOpState=-1;
  4432. if (m_Operation.pData)
  4433. delete m_Operation.pData;
  4434. m_Operation.pData=0;
  4435. }
  4436. void CFtpControlSocket::Delete(CString filename, const CServerPath &path, bool filenameOnly)
  4437. {
  4438. class CDeleteData : public CFtpControlSocket::t_operation::COpData
  4439. {
  4440. public:
  4441. CDeleteData() {}
  4442. virtual ~CDeleteData() {}
  4443. CString m_FileName;
  4444. CServerPath path;
  4445. };
  4446. if (filename!=L"")
  4447. {
  4448. DebugAssert(!path.IsEmpty());
  4449. DebugAssert(m_Operation.nOpMode==CSMODE_NONE);
  4450. DebugAssert(m_Operation.nOpState==-1);
  4451. DebugAssert(!m_Operation.pData);
  4452. m_Operation.nOpMode=CSMODE_DELETE;
  4453. CString command = L"DELE ";
  4454. if (!filenameOnly)
  4455. {
  4456. command += path.FormatFilename(filename);
  4457. }
  4458. else
  4459. {
  4460. command += filename;
  4461. }
  4462. if (!Send(command))
  4463. return;
  4464. CDeleteData *data=new CDeleteData;
  4465. data->m_FileName=filename;
  4466. data->path=path;
  4467. m_Operation.pData=data;
  4468. }
  4469. else
  4470. {
  4471. DebugAssert(path.IsEmpty());
  4472. DebugAssert(m_Operation.nOpMode==CSMODE_DELETE);
  4473. DebugAssert(m_Operation.nOpState==-1);
  4474. DebugAssert(m_Operation.pData);
  4475. int res=GetReplyCode();
  4476. if (res==2 || res==3)
  4477. { //Remove file from cached dirs
  4478. CDeleteData *pData=(CDeleteData *)m_Operation.pData;
  4479. t_directory dir;
  4480. BOOL res=FALSE;
  4481. if (m_pDirectoryListing)
  4482. {
  4483. if (m_pDirectoryListing->path==pData->path)
  4484. {
  4485. dir=*m_pDirectoryListing;
  4486. res=TRUE;
  4487. }
  4488. }
  4489. t_directory WorkingDir;
  4490. BOOL bFound=m_pOwner->GetWorkingDir(&WorkingDir);
  4491. if (!res && bFound)
  4492. if (WorkingDir.path==pData->path)
  4493. {
  4494. dir=WorkingDir;
  4495. res=TRUE;
  4496. }
  4497. if (res)
  4498. {
  4499. BOOL found=FALSE;
  4500. for (int i=0;i<dir.num;i++)
  4501. {
  4502. if (dir.direntry[i].name==pData->m_FileName)
  4503. {
  4504. DebugAssert(!dir.direntry[i].dir || dir.direntry[i].bLink);
  4505. found=TRUE;
  4506. break;
  4507. }
  4508. }
  4509. if (found)
  4510. {
  4511. t_directory::t_direntry *direntry=new t_directory::t_direntry[dir.num-1];
  4512. int j=0;
  4513. int i;
  4514. for (i=0; i<dir.num; i++)
  4515. {
  4516. if (dir.direntry[i].name==pData->m_FileName)
  4517. continue;
  4518. direntry[j]=dir.direntry[i];
  4519. j++;
  4520. }
  4521. delete [] dir.direntry;
  4522. dir.direntry=direntry;
  4523. dir.num--;
  4524. BOOL updated=FALSE;
  4525. if (m_pDirectoryListing)
  4526. if (m_pDirectoryListing->path==dir.path)
  4527. {
  4528. updated=TRUE;
  4529. SetDirectoryListing(&dir);
  4530. }
  4531. if (!updated)
  4532. if (WorkingDir.path==dir.path)
  4533. {
  4534. updated=TRUE;
  4535. m_pOwner->SetWorkingDir(&dir);
  4536. }
  4537. }
  4538. }
  4539. }
  4540. ResetOperation(FZ_REPLY_OK);
  4541. }
  4542. }
  4543. void CFtpControlSocket::RemoveDir(CString dirname, const CServerPath &path)
  4544. {
  4545. class CRemoveDirData : public CFtpControlSocket::t_operation::COpData
  4546. {
  4547. public:
  4548. CRemoveDirData() {}
  4549. virtual ~CRemoveDirData() {}
  4550. CString m_DirName;
  4551. CServerPath path;
  4552. };
  4553. if (dirname != L"")
  4554. {
  4555. DebugAssert(!path.IsEmpty());
  4556. DebugAssert(m_Operation.nOpMode == CSMODE_NONE);
  4557. DebugAssert(m_Operation.nOpState == -1);
  4558. DebugAssert(!m_Operation.pData);
  4559. m_Operation.nOpMode = CSMODE_RMDIR;
  4560. CServerPath newPath = path;
  4561. if (!newPath.AddSubdir(dirname))
  4562. {
  4563. ShowStatus(L"Unable to concatenate path", FZ_LOG_ERROR);
  4564. return;
  4565. }
  4566. if (!Send(L"RMD "+ newPath.GetPathUnterminated()))
  4567. return;
  4568. CRemoveDirData *data = new CRemoveDirData;
  4569. data->m_DirName = dirname;
  4570. data->path = path;
  4571. m_Operation.pData = data;
  4572. }
  4573. else
  4574. {
  4575. DebugAssert(path.IsEmpty());
  4576. DebugAssert(m_Operation.nOpMode == CSMODE_RMDIR);
  4577. DebugAssert(m_Operation.nOpState == -1);
  4578. DebugAssert(m_Operation.pData);
  4579. int res = GetReplyCode();
  4580. if (res == 2 || res == 3)
  4581. { //Remove dir from cached dirs
  4582. CRemoveDirData *pData= (CRemoveDirData *)m_Operation.pData;
  4583. t_directory dir;
  4584. BOOL res = FALSE;
  4585. if (m_pDirectoryListing)
  4586. {
  4587. if (m_pDirectoryListing->path == pData->path)
  4588. {
  4589. dir = *m_pDirectoryListing;
  4590. res = TRUE;
  4591. }
  4592. }
  4593. t_directory WorkingDir;
  4594. BOOL bFound = m_pOwner->GetWorkingDir(&WorkingDir);
  4595. if (!res && bFound)
  4596. if (WorkingDir.path == pData->path)
  4597. {
  4598. dir = WorkingDir;
  4599. res = TRUE;
  4600. }
  4601. if (res)
  4602. {
  4603. BOOL found = FALSE;
  4604. for (int i = 0; i < dir.num; i++)
  4605. {
  4606. if (dir.direntry[i].name == pData->m_DirName)
  4607. {
  4608. DebugAssert(dir.direntry[i].dir);
  4609. found = TRUE;
  4610. break;
  4611. }
  4612. }
  4613. if (found)
  4614. {
  4615. t_directory::t_direntry *direntry = new t_directory::t_direntry[dir.num-1];
  4616. int j = 0;
  4617. int i;
  4618. for (i = 0; i < dir.num; i++)
  4619. {
  4620. if (dir.direntry[i].name == pData->m_DirName)
  4621. continue;
  4622. direntry[j] = dir.direntry[i];
  4623. j++;
  4624. }
  4625. delete [] dir.direntry;
  4626. dir.direntry = direntry;
  4627. dir.num--;
  4628. BOOL updated = FALSE;
  4629. if (m_pDirectoryListing)
  4630. if (m_pDirectoryListing->path == dir.path)
  4631. {
  4632. updated = TRUE;
  4633. SetDirectoryListing(&dir);
  4634. }
  4635. if (!updated)
  4636. if (WorkingDir.path == dir.path)
  4637. {
  4638. updated = TRUE;
  4639. m_pOwner->SetWorkingDir(&dir);
  4640. }
  4641. }
  4642. }
  4643. ResetOperation(FZ_REPLY_OK);
  4644. }
  4645. else
  4646. ResetOperation(FZ_REPLY_ERROR);
  4647. }
  4648. }
  4649. int CFtpControlSocket::CheckOverwriteFile()
  4650. {
  4651. if (!m_Operation.pData)
  4652. {
  4653. return FZ_REPLY_ERROR;
  4654. }
  4655. CFileTransferData *pData = reinterpret_cast<CFileTransferData *>(m_Operation.pData);
  4656. int nReplyError = 0;
  4657. CFileStatus64 status;
  4658. BOOL res = GetStatus64(pData->transferfile.localfile, status);
  4659. if (!res)
  4660. {
  4661. if (!pData->transferfile.get)
  4662. {
  4663. ShowStatus(IDS_ERRORMSG_CANTGETLISTFILE,FZ_LOG_ERROR);
  4664. nReplyError = FZ_REPLY_CRITICALERROR; //File has to exist when uploading
  4665. }
  4666. else
  4667. {
  4668. m_Operation.nOpState = FILETRANSFER_TYPE;
  4669. }
  4670. }
  4671. else
  4672. {
  4673. if (status.m_attribute & 0x10)
  4674. {
  4675. nReplyError = FZ_REPLY_CRITICALERROR; //Can't transfer to/from dirs
  4676. }
  4677. else
  4678. {
  4679. _int64 localsize;
  4680. if (!GetLength64(pData->transferfile.localfile, localsize))
  4681. if (!pData->transferfile.get)
  4682. nReplyError = FZ_REPLY_CRITICALERROR;
  4683. else
  4684. m_Operation.nOpState = FILETRANSFER_TYPE;
  4685. CTime *localtime = NULL;
  4686. TRY
  4687. {
  4688. if (status.m_has_mtime && status.m_mtime != -1)
  4689. localtime = new CTime(status.m_mtime);
  4690. }
  4691. CATCH_ALL(e)
  4692. {
  4693. TCHAR buffer[1024];
  4694. CString str =L"Exception creating CTime object: ";
  4695. if (e->GetErrorMessage(buffer, 1024, NULL))
  4696. str += buffer;
  4697. else
  4698. str += L"Unknown exception";
  4699. LogMessageRaw(FZ_LOG_WARNING, str);
  4700. localtime = NULL;
  4701. }
  4702. END_CATCH_ALL;
  4703. BOOL bRemoteFileExists = FALSE;
  4704. __int64 remotesize = -1;
  4705. t_directory::t_direntry::t_date remotetime;
  4706. if (m_pDirectoryListing)
  4707. {
  4708. for (int i=0; i<m_pDirectoryListing->num; i++)
  4709. {
  4710. CString remotefile = pData->transferfile.remotefile;
  4711. if (m_pDirectoryListing->direntry[i].name == remotefile)
  4712. {
  4713. remotesize = m_pDirectoryListing->direntry[i].size;
  4714. remotetime = m_pDirectoryListing->direntry[i].date;
  4715. bRemoteFileExists = TRUE;
  4716. break;
  4717. }
  4718. }
  4719. }
  4720. if (!bRemoteFileExists && pData->hasRemoteDate)
  4721. {
  4722. remotetime = pData->remoteDate;
  4723. bRemoteFileExists = TRUE;
  4724. }
  4725. if (remotesize == -1 && pData->pFileSize)
  4726. {
  4727. remotesize = *pData->pFileSize;
  4728. bRemoteFileExists = TRUE;
  4729. }
  4730. if (bRemoteFileExists || pData->transferfile.get )
  4731. {
  4732. COverwriteRequestData *pOverwriteData = new COverwriteRequestData;
  4733. t_transferfile *pTransferFile = new t_transferfile;
  4734. *pTransferFile = pData->transferfile;
  4735. pOverwriteData->pTransferFile = pTransferFile;
  4736. if (pData->transferfile.get)
  4737. {
  4738. int pos = pData->transferfile.localfile.ReverseFind(L'\\');
  4739. // pos can be -1 here, e.g. in scripting, the code below still works then
  4740. pOverwriteData->FileName1 = pData->transferfile.localfile.Mid(pos+1);
  4741. pOverwriteData->FileName2 = pData->transferfile.remotefile;
  4742. pOverwriteData->path1 = pData->transferfile.localfile.Left(pos+1);
  4743. pOverwriteData->path2 = pData->transferfile.remotepath.GetPath();
  4744. pOverwriteData->size1 = localsize;
  4745. pOverwriteData->size2 = remotesize;
  4746. }
  4747. else
  4748. {
  4749. int pos = pData->transferfile.localfile.ReverseFind(L'\\');
  4750. // pos can be -1 here, e.g. in scripting, the code below still works then
  4751. pOverwriteData->FileName1 = pData->transferfile.remotefile;
  4752. pOverwriteData->FileName2 = pData->transferfile.localfile.Mid(pos+1);
  4753. pOverwriteData->path1 = pData->transferfile.remotepath.GetPath();
  4754. pOverwriteData->path2 = pData->transferfile.localfile.Left(pos+1);
  4755. pOverwriteData->size1 = remotesize;
  4756. pOverwriteData->size2 = localsize;
  4757. }
  4758. pOverwriteData->localtime = localtime;
  4759. pOverwriteData->remotetime = remotetime;
  4760. pOverwriteData->nRequestID = m_pOwner->GetNextAsyncRequestID();
  4761. if (!GetIntern()->PostMessage(FZ_MSG_MAKEMSG(FZ_MSG_ASYNCREQUEST, FZ_ASYNCREQUEST_OVERWRITE), (LPARAM)pOverwriteData))
  4762. {
  4763. delete pOverwriteData;
  4764. nReplyError = FZ_REPLY_ERROR;
  4765. }
  4766. else
  4767. {
  4768. m_bCheckForTimeout = FALSE;
  4769. m_Operation.nOpState = FILETRANSFER_WAIT;
  4770. }
  4771. }
  4772. else
  4773. {
  4774. m_Operation.nOpState = FILETRANSFER_TYPE;
  4775. delete localtime;
  4776. }
  4777. }
  4778. }
  4779. return nReplyError;
  4780. }
  4781. void CFtpControlSocket::SetFileExistsAction(int nAction, COverwriteRequestData *pData)
  4782. {
  4783. if (!pData)
  4784. return;
  4785. if (!(m_Operation.nOpMode & CSMODE_TRANSFER))
  4786. return;
  4787. if (m_Operation.nOpState != FILETRANSFER_WAIT)
  4788. return;
  4789. CFileTransferData* pTransferData = reinterpret_cast<CFileTransferData*>(m_Operation.pData);
  4790. if (!pTransferData)
  4791. return;
  4792. pTransferData->transferdata.bResume = false;
  4793. m_bCheckForTimeout = TRUE;
  4794. int nReplyError = 0;
  4795. switch (nAction)
  4796. {
  4797. case FILEEXISTS_SKIP:
  4798. nReplyError = FZ_REPLY_OK;
  4799. break;
  4800. case FILEEXISTS_OVERWRITE:
  4801. pTransferData->nWaitNextOpState = FILETRANSFER_TYPE;
  4802. break;
  4803. case FILEEXISTS_RENAME:
  4804. if (pTransferData->transferfile.get)
  4805. {
  4806. CFileStatus64 status;
  4807. if (GetStatus64(pData->FileName1, status))
  4808. {
  4809. ShowStatus(IDS_ERRORMSG_NAMEINUSE, FZ_LOG_ERROR);
  4810. nReplyError= FZ_REPLY_CRITICALERROR;
  4811. }
  4812. else
  4813. {
  4814. pTransferData->transferfile.localfile = pData->path1+pData->FileName1;
  4815. //Replace invalid characters in the local filename
  4816. int pos = pTransferData->transferfile.localfile.ReverseFind(L'\\');
  4817. for (int i = (pos+1); i < pTransferData->transferfile.localfile.GetLength(); i++)
  4818. if (pTransferData->transferfile.localfile[i] == L':')
  4819. pTransferData->transferfile.localfile.SetAt(i, L'_');
  4820. pTransferData->nWaitNextOpState= FILETRANSFER_TYPE;
  4821. }
  4822. }
  4823. else
  4824. {
  4825. DebugAssert(m_pDirectoryListing);
  4826. int i;
  4827. for (i = 0; i < m_pDirectoryListing->num; i++)
  4828. {
  4829. if (m_pDirectoryListing->direntry[i].name == pData->FileName1)
  4830. {
  4831. ShowStatus(IDS_ERRORMSG_NAMEINUSE, FZ_LOG_ERROR);
  4832. nReplyError = FZ_REPLY_CRITICALERROR;
  4833. break;
  4834. }
  4835. }
  4836. if (i==m_pDirectoryListing->num)
  4837. {
  4838. pTransferData->transferfile.remotefile = pData->FileName1;
  4839. pTransferData->nWaitNextOpState = FILETRANSFER_TYPE;
  4840. }
  4841. }
  4842. break;
  4843. case FILEEXISTS_RESUME:
  4844. if (pData->size1 >= 0)
  4845. {
  4846. pTransferData->transferdata.bResume = TRUE;
  4847. }
  4848. pTransferData->nWaitNextOpState = FILETRANSFER_TYPE;
  4849. break;
  4850. case FILEEXISTS_COMPLETE:
  4851. // Simulating transfer finish
  4852. m_Operation.nOpState=FILETRANSFER_WAITFINISH;
  4853. TransferFinished(true);
  4854. return; // Avoid call to FileTransfer below
  4855. }
  4856. if (nReplyError == FZ_REPLY_OK)
  4857. ResetOperation(FZ_REPLY_OK);
  4858. else if (nReplyError)
  4859. ResetOperation(FZ_REPLY_ERROR | nReplyError); //Error transferring the file
  4860. else
  4861. FileTransfer();
  4862. }
  4863. void CFtpControlSocket::SendKeepAliveCommand()
  4864. {
  4865. ShowStatus(L"Sending dummy command to keep session alive.", FZ_LOG_PROGRESS);
  4866. m_bKeepAliveActive=TRUE;
  4867. //Choose a random command from the list
  4868. TCHAR commands[4][7]={L"PWD",L"REST 0",L"TYPE A",L"TYPE I"};
  4869. int choice=(rand()*4)/(RAND_MAX+1);
  4870. Send(commands[choice]);
  4871. }
  4872. void CFtpControlSocket::MakeDir(const CServerPath &path)
  4873. {
  4874. //Directory creation works like this:
  4875. //Find existing parent and create subdirs one by one
  4876. if (m_Operation.nOpState == MKD_INIT)
  4877. {
  4878. DebugAssert(!path.IsEmpty());
  4879. DebugAssert(m_Operation.nOpMode==CSMODE_NONE);
  4880. DebugAssert(!m_Operation.pData);
  4881. m_Operation.nOpMode = CSMODE_MKDIR;
  4882. if (!Send(L"CWD "+path.GetParent().GetPathUnterminated()))
  4883. return;
  4884. CMakeDirData *data = new CMakeDirData;
  4885. data->path = path;
  4886. data->Current = path.GetParent();
  4887. data->Segments.push_front(path.GetLastSegment());
  4888. m_Operation.pData = data;
  4889. m_Operation.nOpState = MKD_FINDPARENT;
  4890. }
  4891. else if (m_Operation.nOpState==MKD_FINDPARENT)
  4892. {
  4893. DebugAssert(m_Operation.nOpMode==CSMODE_MKDIR);
  4894. DebugAssert(path.IsEmpty());
  4895. DebugAssert(m_Operation.pData);
  4896. CMakeDirData *pData=(CMakeDirData *)m_Operation.pData;
  4897. int res=GetReplyCode();
  4898. if (res==2 || res==3)
  4899. {
  4900. m_pOwner->SetCurrentPath(pData->Current);
  4901. m_Operation.nOpState=MKD_MAKESUBDIRS;
  4902. pData->Current.AddSubdir(pData->Segments.front());
  4903. CString Segment=pData->Segments.front();
  4904. pData->Segments.pop_front();
  4905. if (Send( L"MKD " + Segment))
  4906. m_Operation.nOpState = MKD_CHANGETOSUBDIR;
  4907. else
  4908. return;
  4909. }
  4910. else
  4911. {
  4912. if (!pData->Current.HasParent())
  4913. ResetOperation(FZ_REPLY_ERROR);
  4914. else
  4915. {
  4916. pData->Segments.push_front(pData->Current.GetLastSegment());
  4917. pData->Current=pData->Current.GetParent();
  4918. if (!Send(L"CWD "+pData->Current.GetPathUnterminated()))
  4919. return;
  4920. }
  4921. }
  4922. }
  4923. else if (m_Operation.nOpState==MKD_MAKESUBDIRS)
  4924. {
  4925. int res=GetReplyCode();
  4926. if (res==2 || res==3)
  4927. { //Create dir entry in parent dir
  4928. CMakeDirData *pData=(CMakeDirData *)m_Operation.pData;
  4929. DebugAssert(!pData->Segments.empty());
  4930. m_pOwner->SetCurrentPath(pData->Current);
  4931. pData->Current.AddSubdir(pData->Segments.front());
  4932. CString Segment=pData->Segments.front();
  4933. pData->Segments.pop_front();
  4934. if (Send( L"MKD " + Segment))
  4935. m_Operation.nOpState=MKD_CHANGETOSUBDIR;
  4936. else
  4937. return;
  4938. }
  4939. else
  4940. ResetOperation(FZ_REPLY_ERROR);
  4941. }
  4942. else if (m_Operation.nOpState==MKD_CHANGETOSUBDIR)
  4943. {
  4944. CMakeDirData *pData=(CMakeDirData *)m_Operation.pData;
  4945. int res=GetReplyCode();
  4946. if (res==2 || res==3 || //Creation successful
  4947. GetReply() == L"550 Directory already exists")//Creation was successful, although someone else did the work for us
  4948. { //Create dir entry in parent dir
  4949. CServerPath path2=pData->Current;
  4950. if (path2.HasParent())
  4951. {
  4952. CString name=path2.GetLastSegment();
  4953. path2=path2.GetParent();
  4954. t_directory dir;
  4955. BOOL res = FALSE;
  4956. if (m_pDirectoryListing)
  4957. {
  4958. if (m_pDirectoryListing->path == path2)
  4959. {
  4960. dir = *m_pDirectoryListing;
  4961. res = TRUE;
  4962. }
  4963. }
  4964. t_directory WorkingDir;
  4965. BOOL bFound = m_pOwner->GetWorkingDir(&WorkingDir);
  4966. if (!res && bFound)
  4967. if (WorkingDir.path == path2)
  4968. {
  4969. dir = WorkingDir;
  4970. res = TRUE;
  4971. }
  4972. if (!res)
  4973. {
  4974. dir.path = path2;
  4975. dir.server = m_CurrentServer;
  4976. }
  4977. int i;
  4978. for (i=0; i<dir.num; i++)
  4979. if (dir.direntry[i].name==name)
  4980. {
  4981. LogMessage(FZ_LOG_WARNING, L"Dir already exists in cache!");
  4982. break;
  4983. }
  4984. if (i==dir.num)
  4985. {
  4986. t_directory::t_direntry *entries=new t_directory::t_direntry[dir.num+1];
  4987. for (i=0;i<dir.num;i++)
  4988. entries[i]=dir.direntry[i];
  4989. entries[i].name=name;
  4990. entries[i].dir=TRUE;
  4991. entries[i].date.hasdate=FALSE;
  4992. entries[i].size=-1;
  4993. entries[i].bUnsure=FALSE;
  4994. delete [] dir.direntry;
  4995. dir.direntry=entries;
  4996. dir.num++;
  4997. BOOL updated = FALSE;
  4998. if (m_pDirectoryListing && m_pDirectoryListing->path == dir.path)
  4999. {
  5000. updated = TRUE;
  5001. SetDirectoryListing(&dir, bFound && WorkingDir.path == dir.path);
  5002. }
  5003. if (!updated)
  5004. if (bFound && WorkingDir.path == dir.path)
  5005. {
  5006. updated = TRUE;
  5007. m_pOwner->SetWorkingDir(&dir);
  5008. }
  5009. }
  5010. }
  5011. }
  5012. //Continue operation even if MKD failed, maybe another thread did create this directory for us
  5013. if (pData->Segments.empty())
  5014. ResetOperation(FZ_REPLY_OK);
  5015. else
  5016. {
  5017. if (Send( L"CWD " + pData->Current.GetPathUnterminated()))
  5018. m_Operation.nOpState=MKD_MAKESUBDIRS;
  5019. else
  5020. return;
  5021. }
  5022. }
  5023. else
  5024. DebugFail();
  5025. }
  5026. void CFtpControlSocket::Rename(CString oldName, CString newName, const CServerPath &path, const CServerPath &newPath)
  5027. {
  5028. class CRenameData : public CFtpControlSocket::t_operation::COpData
  5029. {
  5030. public:
  5031. CRenameData() {}
  5032. virtual ~CRenameData() {}
  5033. CString oldName, newName;
  5034. CServerPath path;
  5035. CServerPath newPath;
  5036. };
  5037. if (oldName != L"")
  5038. {
  5039. DebugAssert(newName != L"");
  5040. DebugAssert(!path.IsEmpty());
  5041. DebugAssert(m_Operation.nOpMode == CSMODE_NONE);
  5042. DebugAssert(m_Operation.nOpState == -1);
  5043. DebugAssert(!m_Operation.pData);
  5044. m_Operation.nOpMode = CSMODE_RENAME;
  5045. if (!Send(L"RNFR " + path.FormatFilename(oldName)))
  5046. return;
  5047. CRenameData *data = new CRenameData;
  5048. data->oldName = oldName;
  5049. data->newName = newName;
  5050. data->path = path;
  5051. data->newPath = newPath;
  5052. m_Operation.pData = data;
  5053. }
  5054. else
  5055. {
  5056. DebugAssert(oldName == L"");
  5057. DebugAssert(path.IsEmpty());
  5058. DebugAssert(m_Operation.nOpMode == CSMODE_RENAME);
  5059. DebugAssert(m_Operation.pData);
  5060. CRenameData *pData = reinterpret_cast<CRenameData *>(m_Operation.pData);
  5061. if (m_Operation.nOpState == -1)
  5062. {
  5063. int res = GetReplyCode();
  5064. if (res == 2 || res == 3)
  5065. {
  5066. m_Operation.nOpState++;
  5067. if (pData->newPath.IsEmpty())
  5068. {
  5069. if (!Send(L"RNTO " + pData->path.FormatFilename(((CRenameData *)m_Operation.pData)->newName)))
  5070. return;
  5071. }
  5072. else
  5073. if (!Send(L"RNTO " + pData->newPath.FormatFilename(((CRenameData *)m_Operation.pData)->newName)))
  5074. return;
  5075. }
  5076. else
  5077. ResetOperation(FZ_REPLY_ERROR);
  5078. }
  5079. else
  5080. {
  5081. int res = GetReplyCode();
  5082. if (res == 2 || res == 3)
  5083. { //Rename entry in cached directory
  5084. CRenameData *pData = reinterpret_cast<CRenameData *>(m_Operation.pData);
  5085. t_directory dir;
  5086. BOOL res = FALSE;
  5087. if (m_pDirectoryListing)
  5088. {
  5089. if (m_pDirectoryListing->path == pData->path)
  5090. {
  5091. dir = *m_pDirectoryListing;
  5092. res = TRUE;
  5093. }
  5094. }
  5095. t_directory WorkingDir;
  5096. BOOL bFound = m_pOwner->GetWorkingDir(&WorkingDir);
  5097. if (!res && bFound)
  5098. if (WorkingDir.path == pData->path)
  5099. {
  5100. dir = WorkingDir;
  5101. res = TRUE;
  5102. }
  5103. if (res)
  5104. {
  5105. for (int i=0; i<dir.num; i++)
  5106. if (dir.direntry[i].name == pData->oldName)
  5107. {
  5108. if (pData->newPath.IsEmpty())
  5109. {
  5110. dir.direntry[i].name = pData->newName;
  5111. BOOL updated = FALSE;
  5112. if (m_pDirectoryListing && m_pDirectoryListing->path == dir.path)
  5113. {
  5114. updated = TRUE;
  5115. SetDirectoryListing(&dir, WorkingDir.path == dir.path);
  5116. }
  5117. if (!updated)
  5118. if (WorkingDir.path == dir.path)
  5119. {
  5120. updated = TRUE;
  5121. m_pOwner->SetWorkingDir(&dir);
  5122. }
  5123. }
  5124. else
  5125. {
  5126. t_directory::t_direntry oldentry = dir.direntry[i];
  5127. for (int j = i+1; j < dir.num; j++)
  5128. {
  5129. dir.direntry[j-1] = dir.direntry[j];
  5130. }
  5131. dir.num--;
  5132. BOOL updated = FALSE;
  5133. if (m_pDirectoryListing && m_pDirectoryListing->path == dir.path)
  5134. {
  5135. updated = TRUE;
  5136. SetDirectoryListing(&dir, WorkingDir.path == dir.path);
  5137. }
  5138. if (!updated)
  5139. if (WorkingDir.path == dir.path)
  5140. {
  5141. updated = TRUE;
  5142. m_pOwner->SetWorkingDir(&dir);
  5143. }
  5144. BOOL res = FALSE;
  5145. if (m_pDirectoryListing)
  5146. {
  5147. if (m_pDirectoryListing->path == pData->newPath)
  5148. {
  5149. dir = *m_pDirectoryListing;
  5150. res = TRUE;
  5151. }
  5152. }
  5153. t_directory WorkingDir;
  5154. BOOL bFound = m_pOwner->GetWorkingDir(&WorkingDir);
  5155. if (!res && bFound)
  5156. if (WorkingDir.path == pData->newPath)
  5157. {
  5158. dir = WorkingDir;
  5159. res = TRUE;
  5160. }
  5161. if (res)
  5162. {
  5163. t_directory::t_direntry *direntry = new t_directory::t_direntry[dir.num + 1];
  5164. for (int i = 0; i < dir.num; i++)
  5165. direntry[i] = dir.direntry[i];
  5166. direntry[dir.num] = oldentry;
  5167. direntry[dir.num].name = pData->newName;
  5168. dir.num++;
  5169. delete [] dir.direntry;
  5170. dir.direntry = direntry;
  5171. BOOL updated = FALSE;
  5172. if (m_pDirectoryListing && m_pDirectoryListing->path == dir.path)
  5173. {
  5174. updated = TRUE;
  5175. SetDirectoryListing(&dir, bFound && WorkingDir.path == dir.path);
  5176. }
  5177. if (!updated)
  5178. if (bFound && WorkingDir.path == dir.path)
  5179. {
  5180. updated = TRUE;
  5181. m_pOwner->SetWorkingDir(&dir);
  5182. }
  5183. }
  5184. }
  5185. break;
  5186. }
  5187. }
  5188. ResetOperation(FZ_REPLY_OK);
  5189. }
  5190. else
  5191. ResetOperation(FZ_REPLY_ERROR);
  5192. }
  5193. }
  5194. }
  5195. void CFtpControlSocket::SetVerifyCertResult(int nResult, t_SslCertData *pData)
  5196. {
  5197. DebugAssert(pData);
  5198. if (!m_pSslLayer)
  5199. return;
  5200. if (!m_Operation.nOpMode == CSMODE_CONNECT)
  5201. return;
  5202. m_bCheckForTimeout = TRUE;
  5203. m_pSslLayer->SetNotifyReply(pData->priv_data, SSL_VERIFY_CERT, nResult);
  5204. m_LastRecvTime = CTime::GetCurrentTime();
  5205. }
  5206. void CFtpControlSocket::OnTimer()
  5207. {
  5208. CheckForTimeout();
  5209. ResumeTransfer();
  5210. if (GetOptionVal(OPTION_KEEPALIVE))
  5211. {
  5212. if (!m_pOwner->IsBusy() && m_pOwner->IsConnected() && !m_bKeepAliveActive)
  5213. {
  5214. //Getting intervals for the Keep Alive feature
  5215. int low=GetOptionVal(OPTION_INTERVALLOW);
  5216. int diff=GetOptionVal(OPTION_INTERVALHIGH)-low;
  5217. //Choose a new delay
  5218. int delay=low+(rand()*diff)/RAND_MAX;
  5219. CTimeSpan span=CTime::GetCurrentTime()-m_LastSendTime;
  5220. if (span.GetTotalSeconds()>=delay)
  5221. SendKeepAliveCommand();
  5222. }
  5223. }
  5224. }
  5225. BOOL CFtpControlSocket::IsReady()
  5226. {
  5227. return !m_bKeepAliveActive;
  5228. }
  5229. void CFtpControlSocket::Chmod(CString filename, const CServerPath &path, int nValue)
  5230. {
  5231. m_Operation.nOpMode=CSMODE_CHMOD;
  5232. CString str;
  5233. str.Format( L"SITE CHMOD %03d %s", nValue, path.FormatFilename(filename));
  5234. Send(str);
  5235. }
  5236. void CFtpControlSocket::SetAsyncRequestResult(int nAction, CAsyncRequestData *pData)
  5237. {
  5238. switch (pData->nRequestType)
  5239. {
  5240. case FZ_ASYNCREQUEST_OVERWRITE:
  5241. SetFileExistsAction(nAction, (COverwriteRequestData *)pData);
  5242. break;
  5243. case FZ_ASYNCREQUEST_VERIFYCERT:
  5244. SetVerifyCertResult(nAction, ((CVerifyCertRequestData *)pData)->pCertData );
  5245. break;
  5246. case FZ_ASYNCREQUEST_NEEDPASS:
  5247. if (m_Operation.nOpMode!=CSMODE_CONNECT ||
  5248. m_Operation.nOpState != CONNECT_NEEDPASS)
  5249. break;
  5250. if (!m_RecvBuffer.empty() && m_RecvBuffer.front() != "")
  5251. {
  5252. DoClose();
  5253. break;
  5254. }
  5255. if (!nAction)
  5256. {
  5257. DoClose(FZ_REPLY_CRITICALERROR|FZ_REPLY_CANCEL);
  5258. ShowStatus(IDS_ERRORMSG_INTERRUPTED,FZ_LOG_ERROR);
  5259. break;
  5260. }
  5261. else
  5262. {
  5263. m_bCheckForTimeout = TRUE;
  5264. m_CurrentServer.pass=((CNeedPassRequestData *)pData)->Password;
  5265. m_Operation.nOpState=((CNeedPassRequestData *)pData)->nOldOpState;
  5266. CLogonData *pLogonData = static_cast<CLogonData *>(m_Operation.pData);
  5267. pLogonData->waitForAsyncRequest = false;
  5268. pLogonData->gotPassword = true;
  5269. LogOnToServer(TRUE);
  5270. }
  5271. break;
  5272. #ifndef MPEXT_NO_GSS
  5273. case FZ_ASYNCREQUEST_GSS_AUTHFAILED:
  5274. if (m_Operation.nOpMode!=CSMODE_CONNECT || m_Operation.nOpState!=CONNECT_GSS_FAILED)
  5275. break;
  5276. if (!m_RecvBuffer.empty() && m_RecvBuffer.front() != "")
  5277. {
  5278. DoClose();
  5279. break;
  5280. }
  5281. if (!nAction)
  5282. {
  5283. DoClose(FZ_REPLY_CRITICALERROR|FZ_REPLY_CANCEL);
  5284. ShowStatus(IDS_ERRORMSG_INTERRUPTED,FZ_LOG_ERROR);
  5285. break;
  5286. }
  5287. m_bCheckForTimeout = TRUE;
  5288. m_Operation.nOpState=-1;
  5289. LogOnToServer(TRUE);
  5290. break;
  5291. case FZ_ASYNCREQUEST_GSS_NEEDPASS:
  5292. if (m_Operation.nOpMode!=CSMODE_CONNECT ||
  5293. m_Operation.nOpState != CONNECT_GSS_NEEDPASS)
  5294. break;
  5295. if (!m_RecvBuffer.empty() && m_RecvBuffer.front() != "")
  5296. {
  5297. DoClose();
  5298. break;
  5299. }
  5300. if (!nAction)
  5301. {
  5302. DoClose(FZ_REPLY_CRITICALERROR|FZ_REPLY_CANCEL);
  5303. ShowStatus(IDS_ERRORMSG_INTERRUPTED,FZ_LOG_ERROR);
  5304. break;
  5305. }
  5306. else
  5307. {
  5308. m_bCheckForTimeout = TRUE;
  5309. m_CurrentServer.pass=((CGssNeedPassRequestData *)pData)->pass;
  5310. m_Operation.nOpState=((CGssNeedPassRequestData *)pData)->nOldOpState;
  5311. LogOnToServer(TRUE);
  5312. }
  5313. break;
  5314. case FZ_ASYNCREQUEST_GSS_NEEDUSER:
  5315. if (m_Operation.nOpMode != CSMODE_CONNECT ||
  5316. m_Operation.nOpState != CONNECT_GSS_NEEDUSER)
  5317. break;
  5318. if (!m_RecvBuffer.empty() && m_RecvBuffer.front() != "")
  5319. {
  5320. DoClose();
  5321. break;
  5322. }
  5323. if (!nAction)
  5324. {
  5325. DoClose(FZ_REPLY_CRITICALERROR | FZ_REPLY_CANCEL);
  5326. ShowStatus(IDS_ERRORMSG_INTERRUPTED, FZ_LOG_ERROR);
  5327. break;
  5328. }
  5329. else
  5330. {
  5331. m_bCheckForTimeout = TRUE;
  5332. m_CurrentServer.user = ((CGssNeedUserRequestData *)pData)->user;
  5333. m_Operation.nOpState=((CGssNeedUserRequestData *)pData)->nOldOpState;
  5334. LogOnToServer(TRUE);
  5335. }
  5336. break;
  5337. #endif
  5338. default:
  5339. LogMessage(FZ_LOG_WARNING, L"Unknown request reply %d", pData->nRequestType);
  5340. break;
  5341. }
  5342. }
  5343. int CFtpControlSocket::OnLayerCallback(std::list<t_callbackMsg>& callbacks)
  5344. {
  5345. for (std::list<t_callbackMsg>::iterator iter = callbacks.begin(); iter != callbacks.end(); iter++)
  5346. {
  5347. if (iter->nType == LAYERCALLBACK_STATECHANGE)
  5348. {
  5349. if (CAsyncSocketEx::LogStateChange(iter->nParam1, iter->nParam2))
  5350. {
  5351. const TCHAR * state2Desc = CAsyncSocketEx::GetStateDesc(iter->nParam2);
  5352. const TCHAR * state1Desc = CAsyncSocketEx::GetStateDesc(iter->nParam1);
  5353. if (iter->pLayer == m_pProxyLayer)
  5354. LogMessage(FZ_LOG_INFO, L"Proxy layer changed state from %s to %s", state2Desc, state1Desc);
  5355. #ifndef MPEXT_NO_GSS
  5356. else if (iter->pLayer == m_pGssLayer)
  5357. LogMessage(FZ_LOG_INFO, L"m_pGssLayer changed state from %s to %s", state2Desc, state1Desc);
  5358. #endif
  5359. else if (iter->pLayer == m_pSslLayer)
  5360. {
  5361. delete [] iter->str;
  5362. LogMessage(FZ_LOG_INFO, L"TLS layer changed state from %s to %s", state2Desc, state1Desc);
  5363. }
  5364. else
  5365. LogMessage(FZ_LOG_INFO, L"Layer @ %d changed state from %s to %s", iter->pLayer, state2Desc, state1Desc);
  5366. }
  5367. }
  5368. else if (iter->nType == LAYERCALLBACK_LAYERSPECIFIC)
  5369. {
  5370. USES_CONVERSION;
  5371. if (iter->pLayer == m_pProxyLayer)
  5372. {
  5373. switch (iter->nParam1)
  5374. {
  5375. case PROXYERROR_NOERROR:
  5376. ShowStatus(IDS_PROXY_CONNECTED, FZ_LOG_STATUS);
  5377. break;
  5378. case PROXYERROR_NOCONN:
  5379. ShowStatus(IDS_ERRORMSG_PROXY_NOCONN, FZ_LOG_ERROR);
  5380. break;
  5381. case PROXYERROR_REQUESTFAILED:
  5382. ShowStatus(IDS_ERRORMSG_PROXY_REQUESTFAILED, FZ_LOG_ERROR);
  5383. if (iter->str)
  5384. ShowStatus(A2T(iter->str), FZ_LOG_ERROR);
  5385. break;
  5386. case PROXYERROR_AUTHTYPEUNKNOWN:
  5387. ShowStatus(IDS_ERRORMSG_PROXY_AUTHTYPEUNKNOWN, FZ_LOG_ERROR);
  5388. break;
  5389. case PROXYERROR_AUTHFAILED:
  5390. ShowStatus(IDS_ERRORMSG_PROXY_AUTHFAILED, FZ_LOG_ERROR);
  5391. break;
  5392. case PROXYERROR_AUTHNOLOGON:
  5393. ShowStatus(IDS_ERRORMSG_PROXY_AUTHNOLOGON, FZ_LOG_ERROR);
  5394. break;
  5395. case PROXYERROR_CANTRESOLVEHOST:
  5396. ShowStatus(IDS_ERRORMSG_PROXY_CANTRESOLVEHOST, FZ_LOG_ERROR);
  5397. break;
  5398. default:
  5399. LogMessage(FZ_LOG_WARNING, L"Unknown proxy error" );
  5400. }
  5401. }
  5402. #ifndef MPEXT_NO_GSS
  5403. else if (iter->pLayer == m_pGssLayer)
  5404. {
  5405. switch (iter->nParam1)
  5406. {
  5407. case GSS_INFO:
  5408. LogMessageRaw(FZ_LOG_INFO, A2CT(iter->str));
  5409. break;
  5410. case GSS_ERROR:
  5411. LogMessageRaw(FZ_LOG_APIERROR, A2CT(iter->str));
  5412. break;
  5413. case GSS_COMMAND:
  5414. ShowStatus(A2CT(iter->str), FZ_LOG_COMMAND);
  5415. break;
  5416. case GSS_REPLY:
  5417. ShowStatus(A2CT(iter->str), FZ_LOG_REPLY);
  5418. break;
  5419. }
  5420. }
  5421. #endif
  5422. else if (iter->pLayer == m_pSslLayer)
  5423. {
  5424. USES_CONVERSION;
  5425. switch (iter->nParam1)
  5426. {
  5427. case SSL_INFO:
  5428. switch (iter->nParam2)
  5429. {
  5430. case SSL_INFO_ESTABLISHED:
  5431. ShowStatus(IDS_STATUSMSG_SSLESTABLISHED, FZ_LOG_STATUS);
  5432. if (m_Operation.nOpState == CONNECT_SSL_WAITDONE)
  5433. {
  5434. LogOnToServer();
  5435. }
  5436. break;
  5437. }
  5438. break;
  5439. case SSL_FAILURE:
  5440. switch (iter->nParam2)
  5441. {
  5442. case SSL_FAILURE_UNKNOWN:
  5443. // CTransferSocket has a special treatment of SSL_FAILURE_UNKNOWN,
  5444. // as an indication of a re-key failure.
  5445. ShowStatus(IDS_ERRORMSG_UNKNOWNSSLERROR, FZ_LOG_ERROR);
  5446. break;
  5447. case SSL_FAILURE_ESTABLISH:
  5448. ShowStatus(IDS_ERRORMSG_CANTESTABLISHSSLCONNECTION, FZ_LOG_ERROR);
  5449. break;
  5450. case SSL_FAILURE_INITSSL:
  5451. ShowStatus(IDS_ERRORMSG_CANTINITSSL, FZ_LOG_ERROR);
  5452. break;
  5453. case SSL_FAILURE_VERIFYCERT:
  5454. ShowStatus(IDS_ERRORMSG_SSLCERTIFICATEERROR, FZ_LOG_ERROR);
  5455. break;
  5456. case SSL_FAILURE_CERTREJECTED:
  5457. ShowStatus(IDS_ERRORMSG_CERTREJECTED, FZ_LOG_ERROR);
  5458. m_bDidRejectCertificate = TRUE;
  5459. break;
  5460. }
  5461. TriggerEvent(FD_CLOSE);
  5462. break;
  5463. case SSL_VERIFY_CERT:
  5464. t_SslCertData *pData = new t_SslCertData;
  5465. LPTSTR CertError = NULL;
  5466. if (m_pSslLayer->GetPeerCertificateData(*pData, CertError))
  5467. {
  5468. CVerifyCertRequestData *pRequestData = new CVerifyCertRequestData;
  5469. pRequestData->nRequestID=m_pOwner->GetNextAsyncRequestID();
  5470. pRequestData->pCertData = pData;
  5471. if (!GetIntern()->PostMessage(FZ_MSG_MAKEMSG(FZ_MSG_ASYNCREQUEST, FZ_ASYNCREQUEST_VERIFYCERT), (LPARAM)pRequestData))
  5472. {
  5473. delete pRequestData->pCertData;
  5474. delete pRequestData;
  5475. ResetOperation(FZ_REPLY_ERROR);
  5476. }
  5477. else
  5478. {
  5479. m_bCheckForTimeout = FALSE;
  5480. }
  5481. delete [] iter->str;
  5482. continue;
  5483. }
  5484. else
  5485. {
  5486. delete pData;
  5487. delete [] iter->str;
  5488. CString str;
  5489. str.Format(TLS_CERT_DECODE_ERROR, CertError);
  5490. ShowStatus(str, FZ_LOG_ERROR);
  5491. ResetOperation(FZ_REPLY_ERROR);
  5492. continue;
  5493. }
  5494. break;
  5495. }
  5496. delete [] iter->str;
  5497. continue;
  5498. }
  5499. #ifndef MPEXT_NO_GSS
  5500. else
  5501. if (iter->pLayer == m_pGssLayer)
  5502. {
  5503. if (iter->nParam1 == GSS_AUTHCOMPLETE ||
  5504. iter->nParam1 == GSS_AUTHFAILED)
  5505. {
  5506. LogOnToServer(TRUE);
  5507. delete [] iter->str;
  5508. continue;
  5509. }
  5510. }
  5511. #endif
  5512. }
  5513. delete [] iter->str;
  5514. }
  5515. return 0;
  5516. }
  5517. _int64 CFtpControlSocket::GetSpeedLimit(CTime &time, int valType, int valValue)
  5518. {
  5519. int type = GetOptionVal(valType);
  5520. if ( type == 1)
  5521. return ( _int64)GetOptionVal(valValue) * 1024;
  5522. return ( _int64)1000000000000; // I hope that when there will be something with 1000GB/s then I'll change it :)
  5523. }
  5524. _int64 CFtpControlSocket::GetSpeedLimit(enum transferDirection direction, CTime &time)
  5525. {
  5526. if (direction == download)
  5527. return GetSpeedLimit(time, OPTION_SPEEDLIMIT_DOWNLOAD_TYPE, OPTION_SPEEDLIMIT_DOWNLOAD_VALUE);
  5528. else
  5529. return GetSpeedLimit(time, OPTION_SPEEDLIMIT_UPLOAD_TYPE, OPTION_SPEEDLIMIT_UPLOAD_VALUE);
  5530. return ( _int64)1000000000000;
  5531. }
  5532. _int64 CFtpControlSocket::GetAbleToUDSize( bool &beenWaiting, CTime &curTime, _int64 &curLimit, std::list<CFtpControlSocket::t_ActiveList>::iterator &iter, enum transferDirection direction, int nBufSize)
  5533. {
  5534. beenWaiting = false;
  5535. CTime nowTime = CTime::GetCurrentTime();
  5536. _int64 ableToRead = BUFSIZE;
  5537. if ( nowTime == curTime)
  5538. {
  5539. ableToRead = iter->nBytesAvailable;
  5540. if (ableToRead <= 0)
  5541. {
  5542. // we should wait till next second
  5543. nowTime = CTime::GetCurrentTime();
  5544. while (nowTime == curTime && !iter->nBytesAvailable)
  5545. {
  5546. if (beenWaiting)
  5547. {
  5548. //Check if there are other commands in the command queue.
  5549. MSG msg;
  5550. if (PeekMessage(&msg, 0, m_pOwner->m_nInternalMessageID, m_pOwner->m_nInternalMessageID, PM_NOREMOVE))
  5551. {
  5552. LogMessage(FZ_LOG_INFO, L"Message waiting in queue, resuming later");
  5553. return 0;
  5554. }
  5555. }
  5556. m_SpeedLimitSync.Unlock();
  5557. Sleep(100);
  5558. m_SpeedLimitSync.Lock();
  5559. nowTime = CTime::GetCurrentTime();
  5560. beenWaiting = true;
  5561. // Since we didn't hold the critical section for some time, we have to renew the iterator
  5562. for (iter = m_InstanceList[direction].begin(); iter != m_InstanceList[direction].end(); iter++)
  5563. if (iter->pOwner == this)
  5564. break;
  5565. if (iter == m_InstanceList[direction].end())
  5566. return 0;
  5567. }
  5568. }
  5569. ableToRead = iter->nBytesAvailable;
  5570. }
  5571. if (nowTime != curTime)
  5572. {
  5573. if (ableToRead > 0)
  5574. ableToRead = 0;
  5575. curLimit = GetSpeedLimit(direction, curTime);
  5576. __int64 nMax = curLimit / m_InstanceList[direction].size();
  5577. _int64 nLeft = 0;
  5578. int nCount = 0;
  5579. std::list<t_ActiveList>::iterator iter2;
  5580. for (iter2 = m_InstanceList[direction].begin(); iter2 != m_InstanceList[direction].end(); iter2++)
  5581. {
  5582. if (iter2->nBytesAvailable>0)
  5583. {
  5584. nLeft += iter2->nBytesAvailable;
  5585. iter2->nBytesTransferred = 1;
  5586. }
  5587. else
  5588. {
  5589. nCount++;
  5590. iter2->nBytesTransferred = 0;
  5591. }
  5592. iter2->nBytesAvailable = nMax;
  5593. }
  5594. if (nLeft && nCount)
  5595. {
  5596. nMax = nLeft / nCount;
  5597. for (iter2 = m_InstanceList[direction].begin(); iter2 != m_InstanceList[direction].end(); iter2++)
  5598. {
  5599. if (!iter2->nBytesTransferred)
  5600. iter2->nBytesAvailable += nMax;
  5601. else
  5602. iter2->nBytesTransferred = 0;
  5603. }
  5604. }
  5605. ableToRead = iter->nBytesAvailable;
  5606. }
  5607. curTime = nowTime;
  5608. if (!nBufSize)
  5609. nBufSize = BUFSIZE;
  5610. if (ableToRead > nBufSize)
  5611. ableToRead = nBufSize;
  5612. return ableToRead;
  5613. }
  5614. _int64 CFtpControlSocket::GetAbleToTransferSize(enum transferDirection direction, bool &beenWaiting, int nBufSize)
  5615. {
  5616. m_SpeedLimitSync.Lock();
  5617. std::list<t_ActiveList>::iterator iter;
  5618. for (iter = m_InstanceList[direction].begin(); iter != m_InstanceList[direction].end(); iter++)
  5619. if (iter->pOwner == this)
  5620. break;
  5621. if (iter == m_InstanceList[direction].end())
  5622. {
  5623. t_ActiveList item;
  5624. CTime time = CTime::GetCurrentTime();
  5625. item.nBytesAvailable = GetSpeedLimit(direction, time) / (m_InstanceList[direction].size() + 1);
  5626. item.nBytesTransferred = 0;
  5627. item.pOwner = this;
  5628. m_InstanceList[direction].push_back(item);
  5629. iter = m_InstanceList[direction].end();
  5630. iter--;
  5631. }
  5632. _int64 limit = GetAbleToUDSize(beenWaiting, m_CurrentTransferTime[direction], m_CurrentTransferLimit[direction], iter, direction, nBufSize);
  5633. m_SpeedLimitSync.Unlock();
  5634. return limit;
  5635. }
  5636. BOOL CFtpControlSocket::RemoveActiveTransfer()
  5637. {
  5638. BOOL bFound = FALSE;
  5639. m_SpeedLimitSync.Lock();
  5640. std::list<t_ActiveList>::iterator iter;
  5641. for (int i = 0; i < 2; i++)
  5642. {
  5643. for (iter = m_InstanceList[i].begin(); iter != m_InstanceList[i].end(); iter++)
  5644. if (iter->pOwner == this)
  5645. {
  5646. m_InstanceList[i].erase(iter);
  5647. bFound = TRUE;
  5648. break;
  5649. }
  5650. }
  5651. m_SpeedLimitSync.Unlock();
  5652. return bFound;
  5653. }
  5654. BOOL CFtpControlSocket::SpeedLimitAddTransferredBytes(enum transferDirection direction, _int64 nBytesTransferred)
  5655. {
  5656. m_SpeedLimitSync.Lock();
  5657. std::list<t_ActiveList>::iterator iter;
  5658. for (iter = m_InstanceList[direction].begin(); iter != m_InstanceList[direction].end(); iter++)
  5659. if (iter->pOwner == this)
  5660. {
  5661. if (iter->nBytesAvailable > nBytesTransferred)
  5662. iter->nBytesAvailable -= nBytesTransferred;
  5663. else
  5664. iter->nBytesAvailable = 0;
  5665. iter->nBytesTransferred += nBytesTransferred;
  5666. m_SpeedLimitSync.Unlock();
  5667. return TRUE;
  5668. }
  5669. m_SpeedLimitSync.Unlock();
  5670. return FALSE;
  5671. }
  5672. CString CFtpControlSocket::ConvertDomainName(CString domain)
  5673. {
  5674. USES_CONVERSION;
  5675. LPCWSTR buffer = T2CW(domain);
  5676. char *utf8 = new char[wcslen(buffer) * 2 + 2];
  5677. if (!WideCharToMultiByte(CP_UTF8, 0, buffer, -1, utf8, wcslen(buffer) * 2 + 2, 0, 0))
  5678. {
  5679. delete [] utf8;
  5680. LogMessage(FZ_LOG_WARNING, L"Could not convert domain name");
  5681. return domain;
  5682. }
  5683. char *output = 0;
  5684. output = strdup(utf8);
  5685. delete [] utf8;
  5686. CString result = A2T(output);
  5687. free(output);
  5688. return result;
  5689. }
  5690. void CFtpControlSocket::LogSocketMessageRaw(int nMessageType, LPCTSTR pMsg)
  5691. {
  5692. LogMessageRaw(nMessageType, pMsg);
  5693. }
  5694. bool CFtpControlSocket::LoggingSocketMessage(int nMessageType)
  5695. {
  5696. return LoggingMessageType(nMessageType);
  5697. }
  5698. int CFtpControlSocket::GetSocketOptionVal(int OptionID) const
  5699. {
  5700. return GetOptionVal(OptionID);
  5701. }
  5702. BOOL CFtpControlSocket::ParsePwdReply(CString& rawpwd)
  5703. {
  5704. CServerPath realPath;
  5705. BOOL Result = ParsePwdReply(rawpwd, realPath);
  5706. if (Result)
  5707. {
  5708. m_pOwner->SetCurrentPath(realPath);
  5709. }
  5710. return Result;
  5711. }
  5712. BOOL CFtpControlSocket::ParsePwdReply(CString& rawpwd, CServerPath & realPath)
  5713. {
  5714. CListData *pData = static_cast<CListData *>(m_Operation.pData);
  5715. DebugAssert(pData);
  5716. int pos1 = rawpwd.Find(L'"');
  5717. int pos2 = rawpwd.ReverseFind(L'"');
  5718. if (pos1 == -1 || pos2 == -1 || pos1 >= pos2)
  5719. {
  5720. LogMessage(FZ_LOG_WARNING, L"No quoted path found, try using first token as path");
  5721. pos1 = rawpwd.Find(L' ');
  5722. if (pos1 != -1)
  5723. {
  5724. pos2 = rawpwd.Find(L' ', pos1 + 1);
  5725. if (pos2 == -1)
  5726. pos2 = rawpwd.GetLength();
  5727. }
  5728. if (pos1 == -1)
  5729. {
  5730. LogMessage(FZ_LOG_WARNING, L"Can't parse path!");
  5731. ResetOperation(FZ_REPLY_ERROR);
  5732. return FALSE;
  5733. }
  5734. }
  5735. rawpwd = rawpwd.Mid(pos1 + 1, pos2 - pos1 - 1);
  5736. realPath = m_pOwner->GetCurrentPath();
  5737. realPath.SetServer(m_CurrentServer);
  5738. if (!realPath.SetPath(rawpwd))
  5739. {
  5740. LogMessage(FZ_LOG_WARNING, L"Can't parse path!");
  5741. ResetOperation(FZ_REPLY_ERROR);
  5742. return FALSE;
  5743. }
  5744. return TRUE;
  5745. }
  5746. void CFtpControlSocket::DiscardLine(CStringA line)
  5747. {
  5748. if (m_Operation.nOpMode == CSMODE_CONNECT && m_Operation.nOpState == CONNECT_FEAT)
  5749. {
  5750. line.MakeUpper();
  5751. while (line.Left(1) == " ")
  5752. {
  5753. line = line.Mid(1, line.GetLength() - 1);
  5754. }
  5755. #ifndef MPEXT_NO_ZLIB
  5756. if (line == "MODE Z" || line.Left(7) == "MODE Z ")
  5757. m_zlibSupported = true;
  5758. else
  5759. #endif
  5760. if (line == "UTF8" && m_CurrentServer.nUTF8 != 2)
  5761. m_bAnnouncesUTF8 = true;
  5762. else if (line == "CLNT" || line.Left(5) == "CLNT ")
  5763. m_hasClntCmd = true;
  5764. else if (line == "MLSD")
  5765. {
  5766. m_serverCapabilities.SetCapability(mlsd_command, yes);
  5767. }
  5768. else if (line == "MDTM")
  5769. {
  5770. m_serverCapabilities.SetCapability(mdtm_command, yes);
  5771. }
  5772. else if (line.Left(4) == "MLST")
  5773. {
  5774. USES_CONVERSION;
  5775. std::string facts;
  5776. if (line.GetLength() > 5)
  5777. {
  5778. facts = (LPCSTR)line.Mid(5, line.GetLength() - 5);
  5779. }
  5780. m_serverCapabilities.SetCapability(mlsd_command, yes, facts);
  5781. }
  5782. else if (line == "MFMT")
  5783. {
  5784. m_serverCapabilities.SetCapability(mfmt_command, yes);
  5785. }
  5786. }
  5787. else if (m_Operation.nOpMode == CSMODE_LISTFILE)
  5788. {
  5789. m_ListFile = line;
  5790. }
  5791. }
  5792. int CFtpControlSocket::FileTransferListState(bool get)
  5793. {
  5794. int Result;
  5795. if (GetOptionVal(OPTION_MPEXT_NOLIST) && !get)
  5796. {
  5797. Result = FILETRANSFER_TYPE;
  5798. }
  5799. else
  5800. {
  5801. Result = NeedModeCommand() ? FILETRANSFER_LIST_MODE : (NeedOptsCommand() ? FILETRANSFER_LIST_OPTS : FILETRANSFER_LIST_TYPE);
  5802. }
  5803. return Result;
  5804. }
  5805. bool CFtpControlSocket::NeedModeCommand()
  5806. {
  5807. #ifdef MPEXT_NO_ZLIB
  5808. return false;
  5809. #else
  5810. bool useZlib;
  5811. if (m_Operation.nOpMode == CSMODE_LIST || (m_Operation.nOpMode == CSMODE_TRANSFER && m_Operation.nOpMode <= FILETRANSFER_TYPE))
  5812. useZlib = GetOptionVal(OPTION_MODEZ_USE) != 0;
  5813. else
  5814. useZlib = GetOptionVal(OPTION_MODEZ_USE) > 1;
  5815. if (!m_useZlib && !m_zlibSupported)
  5816. return false;
  5817. return m_useZlib != useZlib;
  5818. #endif
  5819. }
  5820. bool CFtpControlSocket::NeedOptsCommand()
  5821. {
  5822. #ifndef MPEXT_NO_ZLIB
  5823. if (!m_useZlib)
  5824. #endif
  5825. return false;
  5826. #ifndef MPEXT_NO_ZLIB
  5827. return m_zlibLevel != GetOptionVal(OPTION_MODEZ_LEVEL);
  5828. #endif
  5829. }
  5830. CString CFtpControlSocket::GetReply()
  5831. {
  5832. if (m_RecvBuffer.empty())
  5833. return L"";
  5834. USES_CONVERSION;
  5835. LPCSTR line;
  5836. if ((m_Operation.nOpMode&CSMODE_LISTFILE) && (m_Operation.nOpState==LISTFILE_MLST) &&
  5837. (GetReplyCode() == 2))
  5838. {
  5839. // this is probably never used anyway
  5840. line = (LPCSTR)m_ListFile;
  5841. }
  5842. else
  5843. {
  5844. line = (LPCSTR)m_RecvBuffer.front();
  5845. }
  5846. if (m_bUTF8)
  5847. {
  5848. // convert from UTF-8 to ANSI
  5849. if (DetectUTF8Encoding(RawByteString(line)) == etANSI)
  5850. {
  5851. if (m_CurrentServer.nUTF8 != 1)
  5852. {
  5853. LogMessage(FZ_LOG_WARNING, L"Server does not send proper UTF-8, falling back to local charset");
  5854. m_bUTF8 = false;
  5855. }
  5856. return A2CT(line);
  5857. }
  5858. // convert from UTF-8 to ANSI
  5859. int len = MultiByteToWideChar(CP_UTF8, 0, line, -1, NULL, 0);
  5860. if (!len)
  5861. {
  5862. m_RecvBuffer.pop_front();
  5863. if (m_RecvBuffer.empty())
  5864. m_RecvBuffer.push_back("");
  5865. return L"";
  5866. }
  5867. else
  5868. {
  5869. LPWSTR p1 = new WCHAR[len + 1];
  5870. MultiByteToWideChar(CP_UTF8, 0, line, -1 , (LPWSTR)p1, len + 1);
  5871. CString reply = W2CT(p1);
  5872. delete [] p1;
  5873. return reply;
  5874. }
  5875. }
  5876. else
  5877. return A2CT(line);
  5878. }
  5879. void CFtpControlSocket::OnSend(int nErrorCode)
  5880. {
  5881. if (!m_sendBufferLen || !m_sendBuffer || m_awaitsReply)
  5882. return;
  5883. int res = CAsyncSocketEx::Send(m_sendBuffer, m_sendBufferLen);
  5884. if (res == -1)
  5885. {
  5886. int Error = GetLastError();
  5887. if (Error != WSAEWOULDBLOCK)
  5888. {
  5889. LogError(Error);
  5890. ShowStatus(IDS_ERRORMSG_CANTSENDCOMMAND, FZ_LOG_ERROR);
  5891. DoClose();
  5892. }
  5893. return;
  5894. }
  5895. if (!res)
  5896. {
  5897. ShowStatus(IDS_ERRORMSG_CANTSENDCOMMAND, FZ_LOG_ERROR);
  5898. DoClose();
  5899. }
  5900. m_awaitsReply = true;
  5901. m_LastSendTime = CTime::GetCurrentTime();
  5902. if (res == m_sendBufferLen)
  5903. {
  5904. delete [] m_sendBuffer;
  5905. m_sendBuffer = 0;
  5906. m_sendBufferLen = 0;
  5907. }
  5908. else
  5909. {
  5910. char* tmp = new char[m_sendBufferLen - res];
  5911. memcpy(tmp, m_sendBuffer + res, m_sendBufferLen - res);
  5912. delete [] m_sendBuffer;
  5913. m_sendBuffer = tmp;
  5914. m_sendBufferLen -= res;
  5915. }
  5916. }
  5917. bool CFtpControlSocket::IsMisleadingListResponse()
  5918. {
  5919. // Some servers are broken. Instead of an empty listing, some MVS servers
  5920. // for example they return something "550 no members found"
  5921. // Other servers return "550 No files found."
  5922. CString retmsg = GetReply();
  5923. if (!retmsg.CompareNoCase(L"550 No members found."))
  5924. return true;
  5925. if (!retmsg.CompareNoCase(L"550 No data sets found."))
  5926. return true;
  5927. if (!retmsg.CompareNoCase(L"550 No files found."))
  5928. return true;
  5929. return false;
  5930. }
  5931. bool CFtpControlSocket::IsRoutableAddress(const CString & host)
  5932. {
  5933. USES_CONVERSION;
  5934. if (host.Left(3) == L"127" ||
  5935. host.Left(3) == L"10." ||
  5936. host.Left(7) == L"192.168" ||
  5937. host.Left(7) == L"169.254")
  5938. {
  5939. return false;
  5940. }
  5941. else if (host.Left(3) == L"172")
  5942. {
  5943. CString middle = host.Mid(4);
  5944. int pos = middle.Find(L".");
  5945. long part = atol(T2CA(middle.Left(pos)));
  5946. if ((part >= 16) && (part <= 31))
  5947. {
  5948. return false;
  5949. }
  5950. }
  5951. return true;
  5952. }
  5953. bool CFtpControlSocket::CheckForcePasvIp(CString & host)
  5954. {
  5955. bool result = true;
  5956. unsigned int tmpPort;
  5957. CString ahost;
  5958. switch (m_CurrentServer.iForcePasvIp)
  5959. {
  5960. case 0: // on
  5961. if (!GetPeerName(ahost, tmpPort))
  5962. {
  5963. // this should happen with proxy server only
  5964. int logontype = GetOptionVal(OPTION_LOGONTYPE);
  5965. // do not know what to do, if there's FTP proxy
  5966. if (!logontype)
  5967. {
  5968. // this is a host name, not an IP, but it should not be a problem
  5969. ahost = m_CurrentServer.host;
  5970. }
  5971. }
  5972. if (ahost != host)
  5973. {
  5974. LogMessage(FZ_LOG_WARNING, L"Using host address %s instead of the one suggested by the server: %s", ahost, host);
  5975. host = ahost;
  5976. }
  5977. break;
  5978. case 1: // off
  5979. // noop
  5980. break;
  5981. default: // auto
  5982. if (!GetPeerName(ahost, tmpPort))
  5983. {
  5984. LogMessage(FZ_LOG_PROGRESS, L"Error retrieving server address, cannot test if address is routable");
  5985. }
  5986. else if (!IsRoutableAddress(host) && IsRoutableAddress(ahost))
  5987. {
  5988. LogMessage(FZ_LOG_WARNING, L"Server sent passive reply with unroutable address %s, using host address instead.", host, ahost);
  5989. host = ahost;
  5990. }
  5991. break;
  5992. }
  5993. return result;
  5994. }
  5995. CFtpListResult * CFtpControlSocket::CreateListResult(bool mlst)
  5996. {
  5997. CFtpListResult * Result =
  5998. new CFtpListResult(
  5999. m_CurrentServer, mlst, &m_bUTF8, GetOptionVal(OPTION_VMSALLREVISIONS), GetOptionVal(OPTION_DEBUGSHOWLISTING));
  6000. Result->InitIntern(GetIntern());
  6001. return Result;
  6002. }
  6003. //---------------------------------------------------------------------------
  6004. ftp_capabilities_t TFTPServerCapabilities::GetCapability(ftp_capability_names_t Name)
  6005. {
  6006. t_cap tcap = FCapabilityMap[Name];
  6007. return tcap.cap;
  6008. }
  6009. ftp_capabilities_t TFTPServerCapabilities::GetCapabilityString(ftp_capability_names_t Name, std::string * Option)
  6010. {
  6011. t_cap tcap = FCapabilityMap[Name];
  6012. if (Option)
  6013. *Option = tcap.option;
  6014. return tcap.cap;
  6015. }
  6016. void TFTPServerCapabilities::SetCapability(ftp_capability_names_t Name, ftp_capabilities_t Cap)
  6017. {
  6018. t_cap tcap = FCapabilityMap[Name];
  6019. tcap.cap = Cap;
  6020. tcap.number = 1;
  6021. FCapabilityMap[Name] = tcap;
  6022. }
  6023. void TFTPServerCapabilities::SetCapability(ftp_capability_names_t Name, ftp_capabilities_t Cap, const std::string & Option)
  6024. {
  6025. t_cap tcap = FCapabilityMap[Name];
  6026. tcap.cap = Cap;
  6027. tcap.option = Option;
  6028. tcap.number = 0;
  6029. FCapabilityMap[Name] = tcap;
  6030. }