acme.sh 192 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111
  1. #!/usr/bin/env sh
  2. VER=2.8.6
  3. PROJECT_NAME="acme.sh"
  4. PROJECT_ENTRY="acme.sh"
  5. PROJECT="https://github.com/acmesh-official/$PROJECT_NAME"
  6. DEFAULT_INSTALL_HOME="$HOME/.$PROJECT_NAME"
  7. _WINDOWS_SCHEDULER_NAME="$PROJECT_NAME.cron"
  8. _SCRIPT_="$0"
  9. _SUB_FOLDER_NOTIFY="notify"
  10. _SUB_FOLDER_DNSAPI="dnsapi"
  11. _SUB_FOLDER_DEPLOY="deploy"
  12. _SUB_FOLDERS="$_SUB_FOLDER_DNSAPI $_SUB_FOLDER_DEPLOY $_SUB_FOLDER_NOTIFY"
  13. LETSENCRYPT_CA_V1="https://acme-v01.api.letsencrypt.org/directory"
  14. LETSENCRYPT_STAGING_CA_V1="https://acme-staging.api.letsencrypt.org/directory"
  15. LETSENCRYPT_CA_V2="https://acme-v02.api.letsencrypt.org/directory"
  16. LETSENCRYPT_STAGING_CA_V2="https://acme-staging-v02.api.letsencrypt.org/directory"
  17. DEFAULT_CA=$LETSENCRYPT_CA_V2
  18. DEFAULT_STAGING_CA=$LETSENCRYPT_STAGING_CA_V2
  19. DEFAULT_USER_AGENT="$PROJECT_NAME/$VER ($PROJECT)"
  20. DEFAULT_ACCOUNT_EMAIL=""
  21. DEFAULT_ACCOUNT_KEY_LENGTH=2048
  22. DEFAULT_DOMAIN_KEY_LENGTH=2048
  23. DEFAULT_OPENSSL_BIN="openssl"
  24. _OLD_CA_HOST="https://acme-v01.api.letsencrypt.org"
  25. _OLD_STAGE_CA_HOST="https://acme-staging.api.letsencrypt.org"
  26. VTYPE_HTTP="http-01"
  27. VTYPE_DNS="dns-01"
  28. VTYPE_ALPN="tls-alpn-01"
  29. LOCAL_ANY_ADDRESS="0.0.0.0"
  30. DEFAULT_RENEW=60
  31. DEFAULT_DNS_SLEEP=120
  32. NO_VALUE="no"
  33. W_DNS="dns"
  34. W_ALPN="alpn"
  35. DNS_ALIAS_PREFIX="="
  36. MODE_STATELESS="stateless"
  37. STATE_VERIFIED="verified_ok"
  38. NGINX="nginx:"
  39. NGINX_START="#ACME_NGINX_START"
  40. NGINX_END="#ACME_NGINX_END"
  41. BEGIN_CSR="-----BEGIN CERTIFICATE REQUEST-----"
  42. END_CSR="-----END CERTIFICATE REQUEST-----"
  43. BEGIN_CERT="-----BEGIN CERTIFICATE-----"
  44. END_CERT="-----END CERTIFICATE-----"
  45. CONTENT_TYPE_JSON="application/jose+json"
  46. RENEW_SKIP=2
  47. B64CONF_START="__ACME_BASE64__START_"
  48. B64CONF_END="__ACME_BASE64__END_"
  49. ECC_SEP="_"
  50. ECC_SUFFIX="${ECC_SEP}ecc"
  51. LOG_LEVEL_1=1
  52. LOG_LEVEL_2=2
  53. LOG_LEVEL_3=3
  54. DEFAULT_LOG_LEVEL="$LOG_LEVEL_1"
  55. DEBUG_LEVEL_1=1
  56. DEBUG_LEVEL_2=2
  57. DEBUG_LEVEL_3=3
  58. DEBUG_LEVEL_DEFAULT=$DEBUG_LEVEL_1
  59. DEBUG_LEVEL_NONE=0
  60. DOH_CLOUDFLARE=1
  61. DOH_GOOGLE=2
  62. HIDDEN_VALUE="[hidden](please add '--output-insecure' to see this value)"
  63. SYSLOG_ERROR="user.error"
  64. SYSLOG_INFO="user.info"
  65. SYSLOG_DEBUG="user.debug"
  66. #error
  67. SYSLOG_LEVEL_ERROR=3
  68. #info
  69. SYSLOG_LEVEL_INFO=6
  70. #debug
  71. SYSLOG_LEVEL_DEBUG=7
  72. #debug2
  73. SYSLOG_LEVEL_DEBUG_2=8
  74. #debug3
  75. SYSLOG_LEVEL_DEBUG_3=9
  76. SYSLOG_LEVEL_DEFAULT=$SYSLOG_LEVEL_ERROR
  77. #none
  78. SYSLOG_LEVEL_NONE=0
  79. NOTIFY_LEVEL_DISABLE=0
  80. NOTIFY_LEVEL_ERROR=1
  81. NOTIFY_LEVEL_RENEW=2
  82. NOTIFY_LEVEL_SKIP=3
  83. NOTIFY_LEVEL_DEFAULT=$NOTIFY_LEVEL_RENEW
  84. NOTIFY_MODE_BULK=0
  85. NOTIFY_MODE_CERT=1
  86. NOTIFY_MODE_DEFAULT=$NOTIFY_MODE_BULK
  87. _DEBUG_WIKI="https://github.com/acmesh-official/acme.sh/wiki/How-to-debug-acme.sh"
  88. _PREPARE_LINK="https://github.com/acmesh-official/acme.sh/wiki/Install-preparations"
  89. _STATELESS_WIKI="https://github.com/acmesh-official/acme.sh/wiki/Stateless-Mode"
  90. _DNS_ALIAS_WIKI="https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode"
  91. _DNS_MANUAL_WIKI="https://github.com/acmesh-official/acme.sh/wiki/dns-manual-mode"
  92. _NOTIFY_WIKI="https://github.com/acmesh-official/acme.sh/wiki/notify"
  93. _SUDO_WIKI="https://github.com/acmesh-official/acme.sh/wiki/sudo"
  94. _DNS_MANUAL_ERR="The dns manual mode can not renew automatically, you must issue it again manually. You'd better use the other modes instead."
  95. _DNS_MANUAL_WARN="It seems that you are using dns manual mode. please take care: $_DNS_MANUAL_ERR"
  96. _DNS_MANUAL_ERROR="It seems that you are using dns manual mode. Read this link first: $_DNS_MANUAL_WIKI"
  97. __INTERACTIVE=""
  98. if [ -t 1 ]; then
  99. __INTERACTIVE="1"
  100. fi
  101. __green() {
  102. if [ "${__INTERACTIVE}${ACME_NO_COLOR:-0}" = "10" -o "${ACME_FORCE_COLOR}" = "1" ]; then
  103. printf '\33[1;32m%b\33[0m' "$1"
  104. return
  105. fi
  106. printf -- "%b" "$1"
  107. }
  108. __red() {
  109. if [ "${__INTERACTIVE}${ACME_NO_COLOR:-0}" = "10" -o "${ACME_FORCE_COLOR}" = "1" ]; then
  110. printf '\33[1;31m%b\33[0m' "$1"
  111. return
  112. fi
  113. printf -- "%b" "$1"
  114. }
  115. _printargs() {
  116. _exitstatus="$?"
  117. if [ -z "$NO_TIMESTAMP" ] || [ "$NO_TIMESTAMP" = "0" ]; then
  118. printf -- "%s" "[$(date)] "
  119. fi
  120. if [ -z "$2" ]; then
  121. printf -- "%s" "$1"
  122. else
  123. printf -- "%s" "$1='$2'"
  124. fi
  125. printf "\n"
  126. # return the saved exit status
  127. return "$_exitstatus"
  128. }
  129. _dlg_versions() {
  130. echo "Diagnosis versions: "
  131. echo "openssl:$ACME_OPENSSL_BIN"
  132. if _exists "${ACME_OPENSSL_BIN:-openssl}"; then
  133. ${ACME_OPENSSL_BIN:-openssl} version 2>&1
  134. else
  135. echo "$ACME_OPENSSL_BIN doesn't exists."
  136. fi
  137. echo "apache:"
  138. if [ "$_APACHECTL" ] && _exists "$_APACHECTL"; then
  139. $_APACHECTL -V 2>&1
  140. else
  141. echo "apache doesn't exists."
  142. fi
  143. echo "nginx:"
  144. if _exists "nginx"; then
  145. nginx -V 2>&1
  146. else
  147. echo "nginx doesn't exists."
  148. fi
  149. echo "socat:"
  150. if _exists "socat"; then
  151. socat -h 2>&1
  152. else
  153. _debug "socat doesn't exists."
  154. fi
  155. }
  156. #class
  157. _syslog() {
  158. _exitstatus="$?"
  159. if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" = "$SYSLOG_LEVEL_NONE" ]; then
  160. return
  161. fi
  162. _logclass="$1"
  163. shift
  164. if [ -z "$__logger_i" ]; then
  165. if _contains "$(logger --help 2>&1)" "-i"; then
  166. __logger_i="logger -i"
  167. else
  168. __logger_i="logger"
  169. fi
  170. fi
  171. $__logger_i -t "$PROJECT_NAME" -p "$_logclass" "$(_printargs "$@")" >/dev/null 2>&1
  172. return "$_exitstatus"
  173. }
  174. _log() {
  175. [ -z "$LOG_FILE" ] && return
  176. _printargs "$@" >>"$LOG_FILE"
  177. }
  178. _info() {
  179. _log "$@"
  180. if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_INFO" ]; then
  181. _syslog "$SYSLOG_INFO" "$@"
  182. fi
  183. _printargs "$@"
  184. }
  185. _err() {
  186. _syslog "$SYSLOG_ERROR" "$@"
  187. _log "$@"
  188. if [ -z "$NO_TIMESTAMP" ] || [ "$NO_TIMESTAMP" = "0" ]; then
  189. printf -- "%s" "[$(date)] " >&2
  190. fi
  191. if [ -z "$2" ]; then
  192. __red "$1" >&2
  193. else
  194. __red "$1='$2'" >&2
  195. fi
  196. printf "\n" >&2
  197. return 1
  198. }
  199. _usage() {
  200. __red "$@" >&2
  201. printf "\n" >&2
  202. }
  203. __debug_bash_helper() {
  204. # At this point only do for --debug 3
  205. if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -lt "$DEBUG_LEVEL_3" ]; then
  206. return
  207. fi
  208. # Return extra debug info when running with bash, otherwise return empty
  209. # string.
  210. if [ -z "${BASH_VERSION}" ]; then
  211. return
  212. fi
  213. # We are a bash shell at this point, return the filename, function name, and
  214. # line number as a string
  215. _dbh_saveIFS=$IFS
  216. IFS=" "
  217. # Must use eval or syntax error happens under dash. The eval should use
  218. # single quotes as older versions of busybox had a bug with double quotes and
  219. # eval.
  220. # Use 'caller 1' as we want one level up the stack as we should be called
  221. # by one of the _debug* functions
  222. eval '_dbh_called=($(caller 1))'
  223. IFS=$_dbh_saveIFS
  224. eval '_dbh_file=${_dbh_called[2]}'
  225. if [ -n "${_script_home}" ]; then
  226. # Trim off the _script_home directory name
  227. eval '_dbh_file=${_dbh_file#$_script_home/}'
  228. fi
  229. eval '_dbh_function=${_dbh_called[1]}'
  230. eval '_dbh_lineno=${_dbh_called[0]}'
  231. printf "%-40s " "$_dbh_file:${_dbh_function}:${_dbh_lineno}"
  232. }
  233. _debug() {
  234. if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_1" ]; then
  235. _log "$@"
  236. fi
  237. if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG" ]; then
  238. _syslog "$SYSLOG_DEBUG" "$@"
  239. fi
  240. if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_1" ]; then
  241. _bash_debug=$(__debug_bash_helper)
  242. _printargs "${_bash_debug}$@" >&2
  243. fi
  244. }
  245. #output the sensitive messages
  246. _secure_debug() {
  247. if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_1" ]; then
  248. if [ "$OUTPUT_INSECURE" = "1" ]; then
  249. _log "$@"
  250. else
  251. _log "$1" "$HIDDEN_VALUE"
  252. fi
  253. fi
  254. if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG" ]; then
  255. _syslog "$SYSLOG_DEBUG" "$1" "$HIDDEN_VALUE"
  256. fi
  257. if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_1" ]; then
  258. if [ "$OUTPUT_INSECURE" = "1" ]; then
  259. _printargs "$@" >&2
  260. else
  261. _printargs "$1" "$HIDDEN_VALUE" >&2
  262. fi
  263. fi
  264. }
  265. _debug2() {
  266. if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_2" ]; then
  267. _log "$@"
  268. fi
  269. if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG_2" ]; then
  270. _syslog "$SYSLOG_DEBUG" "$@"
  271. fi
  272. if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_2" ]; then
  273. _bash_debug=$(__debug_bash_helper)
  274. _printargs "${_bash_debug}$@" >&2
  275. fi
  276. }
  277. _secure_debug2() {
  278. if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_2" ]; then
  279. if [ "$OUTPUT_INSECURE" = "1" ]; then
  280. _log "$@"
  281. else
  282. _log "$1" "$HIDDEN_VALUE"
  283. fi
  284. fi
  285. if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG_2" ]; then
  286. _syslog "$SYSLOG_DEBUG" "$1" "$HIDDEN_VALUE"
  287. fi
  288. if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_2" ]; then
  289. if [ "$OUTPUT_INSECURE" = "1" ]; then
  290. _printargs "$@" >&2
  291. else
  292. _printargs "$1" "$HIDDEN_VALUE" >&2
  293. fi
  294. fi
  295. }
  296. _debug3() {
  297. if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_3" ]; then
  298. _log "$@"
  299. fi
  300. if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG_3" ]; then
  301. _syslog "$SYSLOG_DEBUG" "$@"
  302. fi
  303. if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_3" ]; then
  304. _bash_debug=$(__debug_bash_helper)
  305. _printargs "${_bash_debug}$@" >&2
  306. fi
  307. }
  308. _secure_debug3() {
  309. if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_3" ]; then
  310. if [ "$OUTPUT_INSECURE" = "1" ]; then
  311. _log "$@"
  312. else
  313. _log "$1" "$HIDDEN_VALUE"
  314. fi
  315. fi
  316. if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG_3" ]; then
  317. _syslog "$SYSLOG_DEBUG" "$1" "$HIDDEN_VALUE"
  318. fi
  319. if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_3" ]; then
  320. if [ "$OUTPUT_INSECURE" = "1" ]; then
  321. _printargs "$@" >&2
  322. else
  323. _printargs "$1" "$HIDDEN_VALUE" >&2
  324. fi
  325. fi
  326. }
  327. _upper_case() {
  328. # shellcheck disable=SC2018,SC2019
  329. tr 'a-z' 'A-Z'
  330. }
  331. _lower_case() {
  332. # shellcheck disable=SC2018,SC2019
  333. tr 'A-Z' 'a-z'
  334. }
  335. _startswith() {
  336. _str="$1"
  337. _sub="$2"
  338. echo "$_str" | grep "^$_sub" >/dev/null 2>&1
  339. }
  340. _endswith() {
  341. _str="$1"
  342. _sub="$2"
  343. echo "$_str" | grep -- "$_sub\$" >/dev/null 2>&1
  344. }
  345. _contains() {
  346. _str="$1"
  347. _sub="$2"
  348. echo "$_str" | grep -- "$_sub" >/dev/null 2>&1
  349. }
  350. _hasfield() {
  351. _str="$1"
  352. _field="$2"
  353. _sep="$3"
  354. if [ -z "$_field" ]; then
  355. _usage "Usage: str field [sep]"
  356. return 1
  357. fi
  358. if [ -z "$_sep" ]; then
  359. _sep=","
  360. fi
  361. for f in $(echo "$_str" | tr "$_sep" ' '); do
  362. if [ "$f" = "$_field" ]; then
  363. _debug2 "'$_str' contains '$_field'"
  364. return 0 #contains ok
  365. fi
  366. done
  367. _debug2 "'$_str' does not contain '$_field'"
  368. return 1 #not contains
  369. }
  370. # str index [sep]
  371. _getfield() {
  372. _str="$1"
  373. _findex="$2"
  374. _sep="$3"
  375. if [ -z "$_findex" ]; then
  376. _usage "Usage: str field [sep]"
  377. return 1
  378. fi
  379. if [ -z "$_sep" ]; then
  380. _sep=","
  381. fi
  382. _ffi="$_findex"
  383. while [ "$_ffi" -gt "0" ]; do
  384. _fv="$(echo "$_str" | cut -d "$_sep" -f "$_ffi")"
  385. if [ "$_fv" ]; then
  386. printf -- "%s" "$_fv"
  387. return 0
  388. fi
  389. _ffi="$(_math "$_ffi" - 1)"
  390. done
  391. printf -- "%s" "$_str"
  392. }
  393. _exists() {
  394. cmd="$1"
  395. if [ -z "$cmd" ]; then
  396. _usage "Usage: _exists cmd"
  397. return 1
  398. fi
  399. if eval type type >/dev/null 2>&1; then
  400. eval type "$cmd" >/dev/null 2>&1
  401. elif command >/dev/null 2>&1; then
  402. command -v "$cmd" >/dev/null 2>&1
  403. else
  404. which "$cmd" >/dev/null 2>&1
  405. fi
  406. ret="$?"
  407. _debug3 "$cmd exists=$ret"
  408. return $ret
  409. }
  410. #a + b
  411. _math() {
  412. _m_opts="$@"
  413. printf "%s" "$(($_m_opts))"
  414. }
  415. _h_char_2_dec() {
  416. _ch=$1
  417. case "${_ch}" in
  418. a | A)
  419. printf "10"
  420. ;;
  421. b | B)
  422. printf "11"
  423. ;;
  424. c | C)
  425. printf "12"
  426. ;;
  427. d | D)
  428. printf "13"
  429. ;;
  430. e | E)
  431. printf "14"
  432. ;;
  433. f | F)
  434. printf "15"
  435. ;;
  436. *)
  437. printf "%s" "$_ch"
  438. ;;
  439. esac
  440. }
  441. _URGLY_PRINTF=""
  442. if [ "$(printf '\x41')" != 'A' ]; then
  443. _URGLY_PRINTF=1
  444. fi
  445. _ESCAPE_XARGS=""
  446. if _exists xargs && [ "$(printf %s '\\x41' | xargs printf)" = 'A' ]; then
  447. _ESCAPE_XARGS=1
  448. fi
  449. _h2b() {
  450. if _exists xxd && xxd -r -p 2>/dev/null; then
  451. return
  452. fi
  453. hex=$(cat)
  454. ic=""
  455. jc=""
  456. _debug2 _URGLY_PRINTF "$_URGLY_PRINTF"
  457. if [ -z "$_URGLY_PRINTF" ]; then
  458. if [ "$_ESCAPE_XARGS" ] && _exists xargs; then
  459. _debug2 "xargs"
  460. echo "$hex" | _upper_case | sed 's/\([0-9A-F]\{2\}\)/\\\\\\x\1/g' | xargs printf
  461. else
  462. for h in $(echo "$hex" | _upper_case | sed 's/\([0-9A-F]\{2\}\)/ \1/g'); do
  463. if [ -z "$h" ]; then
  464. break
  465. fi
  466. printf "\x$h%s"
  467. done
  468. fi
  469. else
  470. for c in $(echo "$hex" | _upper_case | sed 's/\([0-9A-F]\)/ \1/g'); do
  471. if [ -z "$ic" ]; then
  472. ic=$c
  473. continue
  474. fi
  475. jc=$c
  476. ic="$(_h_char_2_dec "$ic")"
  477. jc="$(_h_char_2_dec "$jc")"
  478. printf '\'"$(printf "%o" "$(_math "$ic" \* 16 + $jc)")""%s"
  479. ic=""
  480. jc=""
  481. done
  482. fi
  483. }
  484. _is_solaris() {
  485. _contains "${__OS__:=$(uname -a)}" "solaris" || _contains "${__OS__:=$(uname -a)}" "SunOS"
  486. }
  487. #_ascii_hex str
  488. #this can only process ascii chars, should only be used when od command is missing as a backup way.
  489. _ascii_hex() {
  490. _debug2 "Using _ascii_hex"
  491. _str="$1"
  492. _str_len=${#_str}
  493. _h_i=1
  494. while [ "$_h_i" -le "$_str_len" ]; do
  495. _str_c="$(printf "%s" "$_str" | cut -c "$_h_i")"
  496. printf " %02x" "'$_str_c"
  497. _h_i="$(_math "$_h_i" + 1)"
  498. done
  499. }
  500. #stdin output hexstr splited by one space
  501. #input:"abc"
  502. #output: " 61 62 63"
  503. _hex_dump() {
  504. if _exists od; then
  505. od -A n -v -t x1 | tr -s " " | sed 's/ $//' | tr -d "\r\t\n"
  506. elif _exists hexdump; then
  507. _debug3 "using hexdump"
  508. hexdump -v -e '/1 ""' -e '/1 " %02x" ""'
  509. elif _exists xxd; then
  510. _debug3 "using xxd"
  511. xxd -ps -c 20 -i | sed "s/ 0x/ /g" | tr -d ",\n" | tr -s " "
  512. else
  513. _debug3 "using _ascii_hex"
  514. str=$(cat)
  515. _ascii_hex "$str"
  516. fi
  517. }
  518. #url encode, no-preserved chars
  519. #A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
  520. #41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f 50 51 52 53 54 55 56 57 58 59 5a
  521. #a b c d e f g h i j k l m n o p q r s t u v w x y z
  522. #61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f 70 71 72 73 74 75 76 77 78 79 7a
  523. #0 1 2 3 4 5 6 7 8 9 - _ . ~
  524. #30 31 32 33 34 35 36 37 38 39 2d 5f 2e 7e
  525. #stdin stdout
  526. _url_encode() {
  527. _hex_str=$(_hex_dump)
  528. _debug3 "_url_encode"
  529. _debug3 "_hex_str" "$_hex_str"
  530. for _hex_code in $_hex_str; do
  531. #upper case
  532. case "${_hex_code}" in
  533. "41")
  534. printf "%s" "A"
  535. ;;
  536. "42")
  537. printf "%s" "B"
  538. ;;
  539. "43")
  540. printf "%s" "C"
  541. ;;
  542. "44")
  543. printf "%s" "D"
  544. ;;
  545. "45")
  546. printf "%s" "E"
  547. ;;
  548. "46")
  549. printf "%s" "F"
  550. ;;
  551. "47")
  552. printf "%s" "G"
  553. ;;
  554. "48")
  555. printf "%s" "H"
  556. ;;
  557. "49")
  558. printf "%s" "I"
  559. ;;
  560. "4a")
  561. printf "%s" "J"
  562. ;;
  563. "4b")
  564. printf "%s" "K"
  565. ;;
  566. "4c")
  567. printf "%s" "L"
  568. ;;
  569. "4d")
  570. printf "%s" "M"
  571. ;;
  572. "4e")
  573. printf "%s" "N"
  574. ;;
  575. "4f")
  576. printf "%s" "O"
  577. ;;
  578. "50")
  579. printf "%s" "P"
  580. ;;
  581. "51")
  582. printf "%s" "Q"
  583. ;;
  584. "52")
  585. printf "%s" "R"
  586. ;;
  587. "53")
  588. printf "%s" "S"
  589. ;;
  590. "54")
  591. printf "%s" "T"
  592. ;;
  593. "55")
  594. printf "%s" "U"
  595. ;;
  596. "56")
  597. printf "%s" "V"
  598. ;;
  599. "57")
  600. printf "%s" "W"
  601. ;;
  602. "58")
  603. printf "%s" "X"
  604. ;;
  605. "59")
  606. printf "%s" "Y"
  607. ;;
  608. "5a")
  609. printf "%s" "Z"
  610. ;;
  611. #lower case
  612. "61")
  613. printf "%s" "a"
  614. ;;
  615. "62")
  616. printf "%s" "b"
  617. ;;
  618. "63")
  619. printf "%s" "c"
  620. ;;
  621. "64")
  622. printf "%s" "d"
  623. ;;
  624. "65")
  625. printf "%s" "e"
  626. ;;
  627. "66")
  628. printf "%s" "f"
  629. ;;
  630. "67")
  631. printf "%s" "g"
  632. ;;
  633. "68")
  634. printf "%s" "h"
  635. ;;
  636. "69")
  637. printf "%s" "i"
  638. ;;
  639. "6a")
  640. printf "%s" "j"
  641. ;;
  642. "6b")
  643. printf "%s" "k"
  644. ;;
  645. "6c")
  646. printf "%s" "l"
  647. ;;
  648. "6d")
  649. printf "%s" "m"
  650. ;;
  651. "6e")
  652. printf "%s" "n"
  653. ;;
  654. "6f")
  655. printf "%s" "o"
  656. ;;
  657. "70")
  658. printf "%s" "p"
  659. ;;
  660. "71")
  661. printf "%s" "q"
  662. ;;
  663. "72")
  664. printf "%s" "r"
  665. ;;
  666. "73")
  667. printf "%s" "s"
  668. ;;
  669. "74")
  670. printf "%s" "t"
  671. ;;
  672. "75")
  673. printf "%s" "u"
  674. ;;
  675. "76")
  676. printf "%s" "v"
  677. ;;
  678. "77")
  679. printf "%s" "w"
  680. ;;
  681. "78")
  682. printf "%s" "x"
  683. ;;
  684. "79")
  685. printf "%s" "y"
  686. ;;
  687. "7a")
  688. printf "%s" "z"
  689. ;;
  690. #numbers
  691. "30")
  692. printf "%s" "0"
  693. ;;
  694. "31")
  695. printf "%s" "1"
  696. ;;
  697. "32")
  698. printf "%s" "2"
  699. ;;
  700. "33")
  701. printf "%s" "3"
  702. ;;
  703. "34")
  704. printf "%s" "4"
  705. ;;
  706. "35")
  707. printf "%s" "5"
  708. ;;
  709. "36")
  710. printf "%s" "6"
  711. ;;
  712. "37")
  713. printf "%s" "7"
  714. ;;
  715. "38")
  716. printf "%s" "8"
  717. ;;
  718. "39")
  719. printf "%s" "9"
  720. ;;
  721. "2d")
  722. printf "%s" "-"
  723. ;;
  724. "5f")
  725. printf "%s" "_"
  726. ;;
  727. "2e")
  728. printf "%s" "."
  729. ;;
  730. "7e")
  731. printf "%s" "~"
  732. ;;
  733. #other hex
  734. *)
  735. printf '%%%s' "$_hex_code"
  736. ;;
  737. esac
  738. done
  739. }
  740. _json_encode() {
  741. _j_str="$(sed 's/"/\\"/g' | sed "s/\r/\\r/g")"
  742. _debug3 "_json_encode"
  743. _debug3 "_j_str" "$_j_str"
  744. echo "$_j_str" | _hex_dump | _lower_case | sed 's/0a/5c 6e/g' | tr -d ' ' | _h2b | tr -d "\r\n"
  745. }
  746. #options file
  747. _sed_i() {
  748. options="$1"
  749. filename="$2"
  750. if [ -z "$filename" ]; then
  751. _usage "Usage:_sed_i options filename"
  752. return 1
  753. fi
  754. _debug2 options "$options"
  755. if sed -h 2>&1 | grep "\-i\[SUFFIX]" >/dev/null 2>&1; then
  756. _debug "Using sed -i"
  757. sed -i "$options" "$filename"
  758. else
  759. _debug "No -i support in sed"
  760. text="$(cat "$filename")"
  761. echo "$text" | sed "$options" >"$filename"
  762. fi
  763. }
  764. _egrep_o() {
  765. if ! egrep -o "$1" 2>/dev/null; then
  766. sed -n 's/.*\('"$1"'\).*/\1/p'
  767. fi
  768. }
  769. #Usage: file startline endline
  770. _getfile() {
  771. filename="$1"
  772. startline="$2"
  773. endline="$3"
  774. if [ -z "$endline" ]; then
  775. _usage "Usage: file startline endline"
  776. return 1
  777. fi
  778. i="$(grep -n -- "$startline" "$filename" | cut -d : -f 1)"
  779. if [ -z "$i" ]; then
  780. _err "Can not find start line: $startline"
  781. return 1
  782. fi
  783. i="$(_math "$i" + 1)"
  784. _debug i "$i"
  785. j="$(grep -n -- "$endline" "$filename" | cut -d : -f 1)"
  786. if [ -z "$j" ]; then
  787. _err "Can not find end line: $endline"
  788. return 1
  789. fi
  790. j="$(_math "$j" - 1)"
  791. _debug j "$j"
  792. sed -n "$i,${j}p" "$filename"
  793. }
  794. #Usage: multiline
  795. _base64() {
  796. [ "" ] #urgly
  797. if [ "$1" ]; then
  798. _debug3 "base64 multiline:'$1'"
  799. ${ACME_OPENSSL_BIN:-openssl} base64 -e
  800. else
  801. _debug3 "base64 single line."
  802. ${ACME_OPENSSL_BIN:-openssl} base64 -e | tr -d '\r\n'
  803. fi
  804. }
  805. #Usage: multiline
  806. _dbase64() {
  807. if [ "$1" ]; then
  808. ${ACME_OPENSSL_BIN:-openssl} base64 -d -A
  809. else
  810. ${ACME_OPENSSL_BIN:-openssl} base64 -d
  811. fi
  812. }
  813. #file
  814. _checkcert() {
  815. _cf="$1"
  816. if [ "$DEBUG" ]; then
  817. openssl x509 -noout -text -in "$_cf"
  818. else
  819. openssl x509 -noout -text -in "$_cf" >/dev/null 2>&1
  820. fi
  821. }
  822. #Usage: hashalg [outputhex]
  823. #Output Base64-encoded digest
  824. _digest() {
  825. alg="$1"
  826. if [ -z "$alg" ]; then
  827. _usage "Usage: _digest hashalg"
  828. return 1
  829. fi
  830. outputhex="$2"
  831. if [ "$alg" = "sha256" ] || [ "$alg" = "sha1" ] || [ "$alg" = "md5" ]; then
  832. if [ "$outputhex" ]; then
  833. ${ACME_OPENSSL_BIN:-openssl} dgst -"$alg" -hex | cut -d = -f 2 | tr -d ' '
  834. else
  835. ${ACME_OPENSSL_BIN:-openssl} dgst -"$alg" -binary | _base64
  836. fi
  837. else
  838. _err "$alg is not supported yet"
  839. return 1
  840. fi
  841. }
  842. #Usage: hashalg secret_hex [outputhex]
  843. #Output binary hmac
  844. _hmac() {
  845. alg="$1"
  846. secret_hex="$2"
  847. outputhex="$3"
  848. if [ -z "$secret_hex" ]; then
  849. _usage "Usage: _hmac hashalg secret [outputhex]"
  850. return 1
  851. fi
  852. if [ "$alg" = "sha256" ] || [ "$alg" = "sha1" ]; then
  853. if [ "$outputhex" ]; then
  854. (${ACME_OPENSSL_BIN:-openssl} dgst -"$alg" -mac HMAC -macopt "hexkey:$secret_hex" 2>/dev/null || ${ACME_OPENSSL_BIN:-openssl} dgst -"$alg" -hmac "$(printf "%s" "$secret_hex" | _h2b)") | cut -d = -f 2 | tr -d ' '
  855. else
  856. ${ACME_OPENSSL_BIN:-openssl} dgst -"$alg" -mac HMAC -macopt "hexkey:$secret_hex" -binary 2>/dev/null || ${ACME_OPENSSL_BIN:-openssl} dgst -"$alg" -hmac "$(printf "%s" "$secret_hex" | _h2b)" -binary
  857. fi
  858. else
  859. _err "$alg is not supported yet"
  860. return 1
  861. fi
  862. }
  863. #Usage: keyfile hashalg
  864. #Output: Base64-encoded signature value
  865. _sign() {
  866. keyfile="$1"
  867. alg="$2"
  868. if [ -z "$alg" ]; then
  869. _usage "Usage: _sign keyfile hashalg"
  870. return 1
  871. fi
  872. _sign_openssl="${ACME_OPENSSL_BIN:-openssl} dgst -sign $keyfile "
  873. if grep "BEGIN RSA PRIVATE KEY" "$keyfile" >/dev/null 2>&1; then
  874. $_sign_openssl -$alg | _base64
  875. elif grep "BEGIN EC PRIVATE KEY" "$keyfile" >/dev/null 2>&1; then
  876. if ! _signedECText="$($_sign_openssl -sha$__ECC_KEY_LEN | ${ACME_OPENSSL_BIN:-openssl} asn1parse -inform DER)"; then
  877. _err "Sign failed: $_sign_openssl"
  878. _err "Key file: $keyfile"
  879. _err "Key content:$(wc -l <"$keyfile") lines"
  880. return 1
  881. fi
  882. _debug3 "_signedECText" "$_signedECText"
  883. _ec_r="$(echo "$_signedECText" | _head_n 2 | _tail_n 1 | cut -d : -f 4 | tr -d "\r\n")"
  884. _debug3 "_ec_r" "$_ec_r"
  885. _ec_s="$(echo "$_signedECText" | _head_n 3 | _tail_n 1 | cut -d : -f 4 | tr -d "\r\n")"
  886. _debug3 "_ec_s" "$_ec_s"
  887. printf "%s" "$_ec_r$_ec_s" | _h2b | _base64
  888. else
  889. _err "Unknown key file format."
  890. return 1
  891. fi
  892. }
  893. #keylength or isEcc flag (empty str => not ecc)
  894. _isEccKey() {
  895. _length="$1"
  896. if [ -z "$_length" ]; then
  897. return 1
  898. fi
  899. [ "$_length" != "1024" ] \
  900. && [ "$_length" != "2048" ] \
  901. && [ "$_length" != "3072" ] \
  902. && [ "$_length" != "4096" ] \
  903. && [ "$_length" != "8192" ]
  904. }
  905. # _createkey 2048|ec-256 file
  906. _createkey() {
  907. length="$1"
  908. f="$2"
  909. _debug2 "_createkey for file:$f"
  910. eccname="$length"
  911. if _startswith "$length" "ec-"; then
  912. length=$(printf "%s" "$length" | cut -d '-' -f 2-100)
  913. if [ "$length" = "256" ]; then
  914. eccname="prime256v1"
  915. fi
  916. if [ "$length" = "384" ]; then
  917. eccname="secp384r1"
  918. fi
  919. if [ "$length" = "521" ]; then
  920. eccname="secp521r1"
  921. fi
  922. fi
  923. if [ -z "$length" ]; then
  924. length=2048
  925. fi
  926. _debug "Use length $length"
  927. if ! touch "$f" >/dev/null 2>&1; then
  928. _f_path="$(dirname "$f")"
  929. _debug _f_path "$_f_path"
  930. if ! mkdir -p "$_f_path"; then
  931. _err "Can not create path: $_f_path"
  932. return 1
  933. fi
  934. fi
  935. if _isEccKey "$length"; then
  936. _debug "Using ec name: $eccname"
  937. if _opkey="$(${ACME_OPENSSL_BIN:-openssl} ecparam -name "$eccname" -genkey 2>/dev/null)"; then
  938. echo "$_opkey" >"$f"
  939. else
  940. _err "error ecc key name: $eccname"
  941. return 1
  942. fi
  943. else
  944. _debug "Using RSA: $length"
  945. if _opkey="$(${ACME_OPENSSL_BIN:-openssl} genrsa "$length" 2>/dev/null)"; then
  946. echo "$_opkey" >"$f"
  947. else
  948. _err "error rsa key: $length"
  949. return 1
  950. fi
  951. fi
  952. if [ "$?" != "0" ]; then
  953. _err "Create key error."
  954. return 1
  955. fi
  956. }
  957. #domain
  958. _is_idn() {
  959. _is_idn_d="$1"
  960. _debug2 _is_idn_d "$_is_idn_d"
  961. _idn_temp=$(printf "%s" "$_is_idn_d" | tr -d '0-9' | tr -d 'a-z' | tr -d 'A-Z' | tr -d '*.,-_')
  962. _debug2 _idn_temp "$_idn_temp"
  963. [ "$_idn_temp" ]
  964. }
  965. #aa.com
  966. #aa.com,bb.com,cc.com
  967. _idn() {
  968. __idn_d="$1"
  969. if ! _is_idn "$__idn_d"; then
  970. printf "%s" "$__idn_d"
  971. return 0
  972. fi
  973. if _exists idn; then
  974. if _contains "$__idn_d" ','; then
  975. _i_first="1"
  976. for f in $(echo "$__idn_d" | tr ',' ' '); do
  977. [ -z "$f" ] && continue
  978. if [ -z "$_i_first" ]; then
  979. printf "%s" ","
  980. else
  981. _i_first=""
  982. fi
  983. idn --quiet "$f" | tr -d "\r\n"
  984. done
  985. else
  986. idn "$__idn_d" | tr -d "\r\n"
  987. fi
  988. else
  989. _err "Please install idn to process IDN names."
  990. fi
  991. }
  992. #_createcsr cn san_list keyfile csrfile conf acmeValidationv1
  993. _createcsr() {
  994. _debug _createcsr
  995. domain="$1"
  996. domainlist="$2"
  997. csrkey="$3"
  998. csr="$4"
  999. csrconf="$5"
  1000. acmeValidationv1="$6"
  1001. _debug2 domain "$domain"
  1002. _debug2 domainlist "$domainlist"
  1003. _debug2 csrkey "$csrkey"
  1004. _debug2 csr "$csr"
  1005. _debug2 csrconf "$csrconf"
  1006. printf "[ req_distinguished_name ]\n[ req ]\ndistinguished_name = req_distinguished_name\nreq_extensions = v3_req\n[ v3_req ]\n\nkeyUsage = nonRepudiation, digitalSignature, keyEncipherment" >"$csrconf"
  1007. if [ "$acmeValidationv1" ]; then
  1008. domainlist="$(_idn "$domainlist")"
  1009. printf -- "\nsubjectAltName=DNS:$domainlist" >>"$csrconf"
  1010. elif [ -z "$domainlist" ] || [ "$domainlist" = "$NO_VALUE" ]; then
  1011. #single domain
  1012. _info "Single domain" "$domain"
  1013. printf -- "\nsubjectAltName=DNS:$(_idn "$domain")" >>"$csrconf"
  1014. else
  1015. domainlist="$(_idn "$domainlist")"
  1016. _debug2 domainlist "$domainlist"
  1017. if _contains "$domainlist" ","; then
  1018. alt="DNS:$(_idn "$domain"),DNS:$(echo "$domainlist" | sed "s/,,/,/g" | sed "s/,/,DNS:/g")"
  1019. else
  1020. alt="DNS:$(_idn "$domain"),DNS:$domainlist"
  1021. fi
  1022. #multi
  1023. _info "Multi domain" "$alt"
  1024. printf -- "\nsubjectAltName=$alt" >>"$csrconf"
  1025. fi
  1026. if [ "$Le_OCSP_Staple" ] || [ "$Le_OCSP_Stable" ]; then
  1027. _savedomainconf Le_OCSP_Staple "$Le_OCSP_Staple"
  1028. _cleardomainconf Le_OCSP_Stable
  1029. printf -- "\nbasicConstraints = CA:FALSE\n1.3.6.1.5.5.7.1.24=DER:30:03:02:01:05" >>"$csrconf"
  1030. fi
  1031. if [ "$acmeValidationv1" ]; then
  1032. printf "\n1.3.6.1.5.5.7.1.31=critical,DER:04:20:${acmeValidationv1}" >>"${csrconf}"
  1033. fi
  1034. _csr_cn="$(_idn "$domain")"
  1035. _debug2 _csr_cn "$_csr_cn"
  1036. if _contains "$(uname -a)" "MINGW"; then
  1037. ${ACME_OPENSSL_BIN:-openssl} req -new -sha256 -key "$csrkey" -subj "//CN=$_csr_cn" -config "$csrconf" -out "$csr"
  1038. else
  1039. ${ACME_OPENSSL_BIN:-openssl} req -new -sha256 -key "$csrkey" -subj "/CN=$_csr_cn" -config "$csrconf" -out "$csr"
  1040. fi
  1041. }
  1042. #_signcsr key csr conf cert
  1043. _signcsr() {
  1044. key="$1"
  1045. csr="$2"
  1046. conf="$3"
  1047. cert="$4"
  1048. _debug "_signcsr"
  1049. _msg="$(${ACME_OPENSSL_BIN:-openssl} x509 -req -days 365 -in "$csr" -signkey "$key" -extensions v3_req -extfile "$conf" -out "$cert" 2>&1)"
  1050. _ret="$?"
  1051. _debug "$_msg"
  1052. return $_ret
  1053. }
  1054. #_csrfile
  1055. _readSubjectFromCSR() {
  1056. _csrfile="$1"
  1057. if [ -z "$_csrfile" ]; then
  1058. _usage "_readSubjectFromCSR mycsr.csr"
  1059. return 1
  1060. fi
  1061. ${ACME_OPENSSL_BIN:-openssl} req -noout -in "$_csrfile" -subject | tr ',' "\n" | _egrep_o "CN *=.*" | cut -d = -f 2 | cut -d / -f 1 | tr -d ' \n'
  1062. }
  1063. #_csrfile
  1064. #echo comma separated domain list
  1065. _readSubjectAltNamesFromCSR() {
  1066. _csrfile="$1"
  1067. if [ -z "$_csrfile" ]; then
  1068. _usage "_readSubjectAltNamesFromCSR mycsr.csr"
  1069. return 1
  1070. fi
  1071. _csrsubj="$(_readSubjectFromCSR "$_csrfile")"
  1072. _debug _csrsubj "$_csrsubj"
  1073. _dnsAltnames="$(${ACME_OPENSSL_BIN:-openssl} req -noout -text -in "$_csrfile" | grep "^ *DNS:.*" | tr -d ' \n')"
  1074. _debug _dnsAltnames "$_dnsAltnames"
  1075. if _contains "$_dnsAltnames," "DNS:$_csrsubj,"; then
  1076. _debug "AltNames contains subject"
  1077. _excapedAlgnames="$(echo "$_dnsAltnames" | tr '*' '#')"
  1078. _debug _excapedAlgnames "$_excapedAlgnames"
  1079. _escapedSubject="$(echo "$_csrsubj" | tr '*' '#')"
  1080. _debug _escapedSubject "$_escapedSubject"
  1081. _dnsAltnames="$(echo "$_excapedAlgnames," | sed "s/DNS:$_escapedSubject,//g" | tr '#' '*' | sed "s/,\$//g")"
  1082. _debug _dnsAltnames "$_dnsAltnames"
  1083. else
  1084. _debug "AltNames doesn't contain subject"
  1085. fi
  1086. echo "$_dnsAltnames" | sed "s/DNS://g"
  1087. }
  1088. #_csrfile
  1089. _readKeyLengthFromCSR() {
  1090. _csrfile="$1"
  1091. if [ -z "$_csrfile" ]; then
  1092. _usage "_readKeyLengthFromCSR mycsr.csr"
  1093. return 1
  1094. fi
  1095. _outcsr="$(${ACME_OPENSSL_BIN:-openssl} req -noout -text -in "$_csrfile")"
  1096. _debug2 _outcsr "$_outcsr"
  1097. if _contains "$_outcsr" "Public Key Algorithm: id-ecPublicKey"; then
  1098. _debug "ECC CSR"
  1099. echo "$_outcsr" | tr "\t" " " | _egrep_o "^ *ASN1 OID:.*" | cut -d ':' -f 2 | tr -d ' '
  1100. else
  1101. _debug "RSA CSR"
  1102. _rkl="$(echo "$_outcsr" | tr "\t" " " | _egrep_o "^ *Public.Key:.*" | cut -d '(' -f 2 | cut -d ' ' -f 1)"
  1103. if [ "$_rkl" ]; then
  1104. echo "$_rkl"
  1105. else
  1106. echo "$_outcsr" | tr "\t" " " | _egrep_o "RSA Public.Key:.*" | cut -d '(' -f 2 | cut -d ' ' -f 1
  1107. fi
  1108. fi
  1109. }
  1110. _ss() {
  1111. _port="$1"
  1112. if _exists "ss"; then
  1113. _debug "Using: ss"
  1114. ss -ntpl 2>/dev/null | grep ":$_port "
  1115. return 0
  1116. fi
  1117. if _exists "netstat"; then
  1118. _debug "Using: netstat"
  1119. if netstat -help 2>&1 | grep "\-p proto" >/dev/null; then
  1120. #for windows version netstat tool
  1121. netstat -an -p tcp | grep "LISTENING" | grep ":$_port "
  1122. else
  1123. if netstat -help 2>&1 | grep "\-p protocol" >/dev/null; then
  1124. netstat -an -p tcp | grep LISTEN | grep ":$_port "
  1125. elif netstat -help 2>&1 | grep -- '-P protocol' >/dev/null; then
  1126. #for solaris
  1127. netstat -an -P tcp | grep "\.$_port " | grep "LISTEN"
  1128. elif netstat -help 2>&1 | grep "\-p" >/dev/null; then
  1129. #for full linux
  1130. netstat -ntpl | grep ":$_port "
  1131. else
  1132. #for busybox (embedded linux; no pid support)
  1133. netstat -ntl 2>/dev/null | grep ":$_port "
  1134. fi
  1135. fi
  1136. return 0
  1137. fi
  1138. return 1
  1139. }
  1140. #outfile key cert cacert [password [name [caname]]]
  1141. _toPkcs() {
  1142. _cpfx="$1"
  1143. _ckey="$2"
  1144. _ccert="$3"
  1145. _cca="$4"
  1146. pfxPassword="$5"
  1147. pfxName="$6"
  1148. pfxCaname="$7"
  1149. if [ "$pfxCaname" ]; then
  1150. ${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca" -password "pass:$pfxPassword" -name "$pfxName" -caname "$pfxCaname"
  1151. elif [ "$pfxName" ]; then
  1152. ${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca" -password "pass:$pfxPassword" -name "$pfxName"
  1153. elif [ "$pfxPassword" ]; then
  1154. ${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca" -password "pass:$pfxPassword"
  1155. else
  1156. ${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca"
  1157. fi
  1158. }
  1159. #domain [password] [isEcc]
  1160. toPkcs() {
  1161. domain="$1"
  1162. pfxPassword="$2"
  1163. if [ -z "$domain" ]; then
  1164. _usage "Usage: $PROJECT_ENTRY --toPkcs -d domain [--password pfx-password]"
  1165. return 1
  1166. fi
  1167. _isEcc="$3"
  1168. _initpath "$domain" "$_isEcc"
  1169. _toPkcs "$CERT_PFX_PATH" "$CERT_KEY_PATH" "$CERT_PATH" "$CA_CERT_PATH" "$pfxPassword"
  1170. if [ "$?" = "0" ]; then
  1171. _info "Success, Pfx is exported to: $CERT_PFX_PATH"
  1172. fi
  1173. }
  1174. #domain [isEcc]
  1175. toPkcs8() {
  1176. domain="$1"
  1177. if [ -z "$domain" ]; then
  1178. _usage "Usage: $PROJECT_ENTRY --toPkcs8 -d domain [--ecc]"
  1179. return 1
  1180. fi
  1181. _isEcc="$2"
  1182. _initpath "$domain" "$_isEcc"
  1183. ${ACME_OPENSSL_BIN:-openssl} pkcs8 -topk8 -inform PEM -outform PEM -nocrypt -in "$CERT_KEY_PATH" -out "$CERT_PKCS8_PATH"
  1184. if [ "$?" = "0" ]; then
  1185. _info "Success, $CERT_PKCS8_PATH"
  1186. fi
  1187. }
  1188. #[2048]
  1189. createAccountKey() {
  1190. _info "Creating account key"
  1191. if [ -z "$1" ]; then
  1192. _usage "Usage: $PROJECT_ENTRY --createAccountKey --accountkeylength 2048"
  1193. return
  1194. fi
  1195. length=$1
  1196. _create_account_key "$length"
  1197. }
  1198. _create_account_key() {
  1199. length=$1
  1200. if [ -z "$length" ] || [ "$length" = "$NO_VALUE" ]; then
  1201. _debug "Use default length $DEFAULT_ACCOUNT_KEY_LENGTH"
  1202. length="$DEFAULT_ACCOUNT_KEY_LENGTH"
  1203. fi
  1204. _debug length "$length"
  1205. _initpath
  1206. mkdir -p "$CA_DIR"
  1207. if [ -s "$ACCOUNT_KEY_PATH" ]; then
  1208. _info "Account key exists, skip"
  1209. return 0
  1210. else
  1211. #generate account key
  1212. if _createkey "$length" "$ACCOUNT_KEY_PATH"; then
  1213. chmod 600 "$ACCOUNT_KEY_PATH"
  1214. _info "Create account key ok."
  1215. return 0
  1216. else
  1217. _err "Create account key error."
  1218. return 1
  1219. fi
  1220. fi
  1221. }
  1222. #domain [length]
  1223. createDomainKey() {
  1224. _info "Creating domain key"
  1225. if [ -z "$1" ]; then
  1226. _usage "Usage: $PROJECT_ENTRY --createDomainKey -d domain.com [ --keylength 2048 ]"
  1227. return
  1228. fi
  1229. domain=$1
  1230. _cdl=$2
  1231. if [ -z "$_cdl" ]; then
  1232. _debug "Use DEFAULT_DOMAIN_KEY_LENGTH=$DEFAULT_DOMAIN_KEY_LENGTH"
  1233. _cdl="$DEFAULT_DOMAIN_KEY_LENGTH"
  1234. fi
  1235. _initpath "$domain" "$_cdl"
  1236. if [ ! -f "$CERT_KEY_PATH" ] || [ ! -s "$CERT_KEY_PATH" ] || ([ "$FORCE" ] && ! [ "$IS_RENEW" ]) || [ "$Le_ForceNewDomainKey" = "1" ]; then
  1237. if _createkey "$_cdl" "$CERT_KEY_PATH"; then
  1238. _savedomainconf Le_Keylength "$_cdl"
  1239. _info "The domain key is here: $(__green $CERT_KEY_PATH)"
  1240. return 0
  1241. else
  1242. _err "Can not create domain key"
  1243. return 1
  1244. fi
  1245. else
  1246. if [ "$IS_RENEW" ]; then
  1247. _info "Domain key exists, skip"
  1248. return 0
  1249. else
  1250. _err "Domain key exists, do you want to overwrite the key?"
  1251. _err "Add '--force', and try again."
  1252. return 1
  1253. fi
  1254. fi
  1255. }
  1256. # domain domainlist isEcc
  1257. createCSR() {
  1258. _info "Creating csr"
  1259. if [ -z "$1" ]; then
  1260. _usage "Usage: $PROJECT_ENTRY --createCSR -d domain1.com [-d domain2.com -d domain3.com ... ]"
  1261. return
  1262. fi
  1263. domain="$1"
  1264. domainlist="$2"
  1265. _isEcc="$3"
  1266. _initpath "$domain" "$_isEcc"
  1267. if [ -f "$CSR_PATH" ] && [ "$IS_RENEW" ] && [ -z "$FORCE" ]; then
  1268. _info "CSR exists, skip"
  1269. return
  1270. fi
  1271. if [ ! -f "$CERT_KEY_PATH" ]; then
  1272. _err "The key file is not found: $CERT_KEY_PATH"
  1273. _err "Please create the key file first."
  1274. return 1
  1275. fi
  1276. _createcsr "$domain" "$domainlist" "$CERT_KEY_PATH" "$CSR_PATH" "$DOMAIN_SSL_CONF"
  1277. }
  1278. _url_replace() {
  1279. tr '/+' '_-' | tr -d '= '
  1280. }
  1281. _time2str() {
  1282. #BSD
  1283. if date -u -r "$1" 2>/dev/null; then
  1284. return
  1285. fi
  1286. #Linux
  1287. if date -u -d@"$1" 2>/dev/null; then
  1288. return
  1289. fi
  1290. #Solaris
  1291. if _exists adb; then
  1292. _t_s_a=$(echo "0t${1}=Y" | adb)
  1293. echo "$_t_s_a"
  1294. fi
  1295. #Busybox
  1296. if echo "$1" | awk '{ print strftime("%c", $0); }' 2>/dev/null; then
  1297. return
  1298. fi
  1299. }
  1300. _normalizeJson() {
  1301. sed "s/\" *: *\([\"{\[]\)/\":\1/g" | sed "s/^ *\([^ ]\)/\1/" | tr -d "\r\n"
  1302. }
  1303. _stat() {
  1304. #Linux
  1305. if stat -c '%U:%G' "$1" 2>/dev/null; then
  1306. return
  1307. fi
  1308. #BSD
  1309. if stat -f '%Su:%Sg' "$1" 2>/dev/null; then
  1310. return
  1311. fi
  1312. return 1 #error, 'stat' not found
  1313. }
  1314. #keyfile
  1315. _calcjwk() {
  1316. keyfile="$1"
  1317. if [ -z "$keyfile" ]; then
  1318. _usage "Usage: _calcjwk keyfile"
  1319. return 1
  1320. fi
  1321. if [ "$JWK_HEADER" ] && [ "$__CACHED_JWK_KEY_FILE" = "$keyfile" ]; then
  1322. _debug2 "Use cached jwk for file: $__CACHED_JWK_KEY_FILE"
  1323. return 0
  1324. fi
  1325. if grep "BEGIN RSA PRIVATE KEY" "$keyfile" >/dev/null 2>&1; then
  1326. _debug "RSA key"
  1327. pub_exp=$(${ACME_OPENSSL_BIN:-openssl} rsa -in "$keyfile" -noout -text | grep "^publicExponent:" | cut -d '(' -f 2 | cut -d 'x' -f 2 | cut -d ')' -f 1)
  1328. if [ "${#pub_exp}" = "5" ]; then
  1329. pub_exp=0$pub_exp
  1330. fi
  1331. _debug3 pub_exp "$pub_exp"
  1332. e=$(echo "$pub_exp" | _h2b | _base64)
  1333. _debug3 e "$e"
  1334. modulus=$(${ACME_OPENSSL_BIN:-openssl} rsa -in "$keyfile" -modulus -noout | cut -d '=' -f 2)
  1335. _debug3 modulus "$modulus"
  1336. n="$(printf "%s" "$modulus" | _h2b | _base64 | _url_replace)"
  1337. _debug3 n "$n"
  1338. jwk='{"e": "'$e'", "kty": "RSA", "n": "'$n'"}'
  1339. _debug3 jwk "$jwk"
  1340. JWK_HEADER='{"alg": "RS256", "jwk": '$jwk'}'
  1341. JWK_HEADERPLACE_PART1='{"nonce": "'
  1342. JWK_HEADERPLACE_PART2='", "alg": "RS256"'
  1343. elif grep "BEGIN EC PRIVATE KEY" "$keyfile" >/dev/null 2>&1; then
  1344. _debug "EC key"
  1345. crv="$(${ACME_OPENSSL_BIN:-openssl} ec -in "$keyfile" -noout -text 2>/dev/null | grep "^NIST CURVE:" | cut -d ":" -f 2 | tr -d " \r\n")"
  1346. _debug3 crv "$crv"
  1347. __ECC_KEY_LEN=$(echo "$crv" | cut -d "-" -f 2)
  1348. if [ "$__ECC_KEY_LEN" = "521" ]; then
  1349. __ECC_KEY_LEN=512
  1350. fi
  1351. _debug3 __ECC_KEY_LEN "$__ECC_KEY_LEN"
  1352. if [ -z "$crv" ]; then
  1353. _debug "Let's try ASN1 OID"
  1354. crv_oid="$(${ACME_OPENSSL_BIN:-openssl} ec -in "$keyfile" -noout -text 2>/dev/null | grep "^ASN1 OID:" | cut -d ":" -f 2 | tr -d " \r\n")"
  1355. _debug3 crv_oid "$crv_oid"
  1356. case "${crv_oid}" in
  1357. "prime256v1")
  1358. crv="P-256"
  1359. __ECC_KEY_LEN=256
  1360. ;;
  1361. "secp384r1")
  1362. crv="P-384"
  1363. __ECC_KEY_LEN=384
  1364. ;;
  1365. "secp521r1")
  1366. crv="P-521"
  1367. __ECC_KEY_LEN=512
  1368. ;;
  1369. *)
  1370. _err "ECC oid : $crv_oid"
  1371. return 1
  1372. ;;
  1373. esac
  1374. _debug3 crv "$crv"
  1375. fi
  1376. pubi="$(${ACME_OPENSSL_BIN:-openssl} ec -in "$keyfile" -noout -text 2>/dev/null | grep -n pub: | cut -d : -f 1)"
  1377. pubi=$(_math "$pubi" + 1)
  1378. _debug3 pubi "$pubi"
  1379. pubj="$(${ACME_OPENSSL_BIN:-openssl} ec -in "$keyfile" -noout -text 2>/dev/null | grep -n "ASN1 OID:" | cut -d : -f 1)"
  1380. pubj=$(_math "$pubj" - 1)
  1381. _debug3 pubj "$pubj"
  1382. pubtext="$(${ACME_OPENSSL_BIN:-openssl} ec -in "$keyfile" -noout -text 2>/dev/null | sed -n "$pubi,${pubj}p" | tr -d " \n\r")"
  1383. _debug3 pubtext "$pubtext"
  1384. xlen="$(printf "%s" "$pubtext" | tr -d ':' | wc -c)"
  1385. xlen=$(_math "$xlen" / 4)
  1386. _debug3 xlen "$xlen"
  1387. xend=$(_math "$xlen" + 1)
  1388. x="$(printf "%s" "$pubtext" | cut -d : -f 2-"$xend")"
  1389. _debug3 x "$x"
  1390. x64="$(printf "%s" "$x" | tr -d : | _h2b | _base64 | _url_replace)"
  1391. _debug3 x64 "$x64"
  1392. xend=$(_math "$xend" + 1)
  1393. y="$(printf "%s" "$pubtext" | cut -d : -f "$xend"-10000)"
  1394. _debug3 y "$y"
  1395. y64="$(printf "%s" "$y" | tr -d : | _h2b | _base64 | _url_replace)"
  1396. _debug3 y64 "$y64"
  1397. jwk='{"crv": "'$crv'", "kty": "EC", "x": "'$x64'", "y": "'$y64'"}'
  1398. _debug3 jwk "$jwk"
  1399. JWK_HEADER='{"alg": "ES'$__ECC_KEY_LEN'", "jwk": '$jwk'}'
  1400. JWK_HEADERPLACE_PART1='{"nonce": "'
  1401. JWK_HEADERPLACE_PART2='", "alg": "ES'$__ECC_KEY_LEN'"'
  1402. else
  1403. _err "Only RSA or EC key is supported. keyfile=$keyfile"
  1404. _debug2 "$(cat "$keyfile")"
  1405. return 1
  1406. fi
  1407. _debug3 JWK_HEADER "$JWK_HEADER"
  1408. __CACHED_JWK_KEY_FILE="$keyfile"
  1409. }
  1410. _time() {
  1411. date -u "+%s"
  1412. }
  1413. _utc_date() {
  1414. date -u "+%Y-%m-%d %H:%M:%S"
  1415. }
  1416. _mktemp() {
  1417. if _exists mktemp; then
  1418. if mktemp 2>/dev/null; then
  1419. return 0
  1420. elif _contains "$(mktemp 2>&1)" "-t prefix" && mktemp -t "$PROJECT_NAME" 2>/dev/null; then
  1421. #for Mac osx
  1422. return 0
  1423. fi
  1424. fi
  1425. if [ -d "/tmp" ]; then
  1426. echo "/tmp/${PROJECT_NAME}wefADf24sf.$(_time).tmp"
  1427. return 0
  1428. elif [ "$LE_TEMP_DIR" ] && mkdir -p "$LE_TEMP_DIR"; then
  1429. echo "/$LE_TEMP_DIR/wefADf24sf.$(_time).tmp"
  1430. return 0
  1431. fi
  1432. _err "Can not create temp file."
  1433. }
  1434. _inithttp() {
  1435. if [ -z "$HTTP_HEADER" ] || ! touch "$HTTP_HEADER"; then
  1436. HTTP_HEADER="$(_mktemp)"
  1437. _debug2 HTTP_HEADER "$HTTP_HEADER"
  1438. fi
  1439. if [ "$__HTTP_INITIALIZED" ]; then
  1440. if [ "$_ACME_CURL$_ACME_WGET" ]; then
  1441. _debug2 "Http already initialized."
  1442. return 0
  1443. fi
  1444. fi
  1445. if [ -z "$_ACME_CURL" ] && _exists "curl"; then
  1446. _ACME_CURL="curl -L --silent --dump-header $HTTP_HEADER "
  1447. if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
  1448. _CURL_DUMP="$(_mktemp)"
  1449. _ACME_CURL="$_ACME_CURL --trace-ascii $_CURL_DUMP "
  1450. fi
  1451. if [ "$CA_PATH" ]; then
  1452. _ACME_CURL="$_ACME_CURL --capath $CA_PATH "
  1453. elif [ "$CA_BUNDLE" ]; then
  1454. _ACME_CURL="$_ACME_CURL --cacert $CA_BUNDLE "
  1455. fi
  1456. if _contains "$(curl --help 2>&1)" "--globoff"; then
  1457. _ACME_CURL="$_ACME_CURL -g "
  1458. fi
  1459. fi
  1460. if [ -z "$_ACME_WGET" ] && _exists "wget"; then
  1461. _ACME_WGET="wget -q"
  1462. if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
  1463. _ACME_WGET="$_ACME_WGET -d "
  1464. fi
  1465. if [ "$CA_PATH" ]; then
  1466. _ACME_WGET="$_ACME_WGET --ca-directory=$CA_PATH "
  1467. elif [ "$CA_BUNDLE" ]; then
  1468. _ACME_WGET="$_ACME_WGET --ca-certificate=$CA_BUNDLE "
  1469. fi
  1470. fi
  1471. #from wget 1.14: do not skip body on 404 error
  1472. if [ "$_ACME_WGET" ] && _contains "$($_ACME_WGET --help 2>&1)" "--content-on-error"; then
  1473. _ACME_WGET="$_ACME_WGET --content-on-error "
  1474. fi
  1475. __HTTP_INITIALIZED=1
  1476. }
  1477. # body url [needbase64] [POST|PUT|DELETE] [ContentType]
  1478. _post() {
  1479. body="$1"
  1480. _post_url="$2"
  1481. needbase64="$3"
  1482. httpmethod="$4"
  1483. _postContentType="$5"
  1484. if [ -z "$httpmethod" ]; then
  1485. httpmethod="POST"
  1486. fi
  1487. _debug $httpmethod
  1488. _debug "_post_url" "$_post_url"
  1489. _debug2 "body" "$body"
  1490. _debug2 "_postContentType" "$_postContentType"
  1491. _inithttp
  1492. if [ "$_ACME_CURL" ] && [ "${ACME_USE_WGET:-0}" = "0" ]; then
  1493. _CURL="$_ACME_CURL"
  1494. if [ "$HTTPS_INSECURE" ]; then
  1495. _CURL="$_CURL --insecure "
  1496. fi
  1497. if [ "$httpmethod" = "HEAD" ]; then
  1498. _CURL="$_CURL -I "
  1499. fi
  1500. _debug "_CURL" "$_CURL"
  1501. if [ "$needbase64" ]; then
  1502. if [ "$body" ]; then
  1503. if [ "$_postContentType" ]; then
  1504. response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "Content-Type: $_postContentType" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" --data "$body" "$_post_url" | _base64)"
  1505. else
  1506. response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" --data "$body" "$_post_url" | _base64)"
  1507. fi
  1508. else
  1509. if [ "$_postContentType" ]; then
  1510. response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "Content-Type: $_postContentType" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$_post_url" | _base64)"
  1511. else
  1512. response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$_post_url" | _base64)"
  1513. fi
  1514. fi
  1515. else
  1516. if [ "$body" ]; then
  1517. if [ "$_postContentType" ]; then
  1518. response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "Content-Type: $_postContentType" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" --data "$body" "$_post_url")"
  1519. else
  1520. response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" --data "$body" "$_post_url")"
  1521. fi
  1522. else
  1523. if [ "$_postContentType" ]; then
  1524. response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "Content-Type: $_postContentType" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$_post_url")"
  1525. else
  1526. response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$_post_url")"
  1527. fi
  1528. fi
  1529. fi
  1530. _ret="$?"
  1531. if [ "$_ret" != "0" ]; then
  1532. _err "Please refer to https://curl.haxx.se/libcurl/c/libcurl-errors.html for error code: $_ret"
  1533. if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
  1534. _err "Here is the curl dump log:"
  1535. _err "$(cat "$_CURL_DUMP")"
  1536. fi
  1537. fi
  1538. elif [ "$_ACME_WGET" ]; then
  1539. _WGET="$_ACME_WGET"
  1540. if [ "$HTTPS_INSECURE" ]; then
  1541. _WGET="$_WGET --no-check-certificate "
  1542. fi
  1543. if [ "$httpmethod" = "HEAD" ]; then
  1544. _WGET="$_WGET --read-timeout=3.0 --tries=2 "
  1545. fi
  1546. _debug "_WGET" "$_WGET"
  1547. if [ "$needbase64" ]; then
  1548. if [ "$httpmethod" = "POST" ]; then
  1549. if [ "$_postContentType" ]; then
  1550. response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --header "Content-Type: $_postContentType" --post-data="$body" "$_post_url" 2>"$HTTP_HEADER" | _base64)"
  1551. else
  1552. response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --post-data="$body" "$_post_url" 2>"$HTTP_HEADER" | _base64)"
  1553. fi
  1554. else
  1555. if [ "$_postContentType" ]; then
  1556. response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --header "Content-Type: $_postContentType" --method $httpmethod --body-data="$body" "$_post_url" 2>"$HTTP_HEADER" | _base64)"
  1557. else
  1558. response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --method $httpmethod --body-data="$body" "$_post_url" 2>"$HTTP_HEADER" | _base64)"
  1559. fi
  1560. fi
  1561. else
  1562. if [ "$httpmethod" = "POST" ]; then
  1563. if [ "$_postContentType" ]; then
  1564. response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --header "Content-Type: $_postContentType" --post-data="$body" "$_post_url" 2>"$HTTP_HEADER")"
  1565. else
  1566. response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --post-data="$body" "$_post_url" 2>"$HTTP_HEADER")"
  1567. fi
  1568. elif [ "$httpmethod" = "HEAD" ]; then
  1569. if [ "$_postContentType" ]; then
  1570. response="$($_WGET --spider -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --header "Content-Type: $_postContentType" --post-data="$body" "$_post_url" 2>"$HTTP_HEADER")"
  1571. else
  1572. response="$($_WGET --spider -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --post-data="$body" "$_post_url" 2>"$HTTP_HEADER")"
  1573. fi
  1574. else
  1575. if [ "$_postContentType" ]; then
  1576. response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --header "Content-Type: $_postContentType" --method $httpmethod --body-data="$body" "$_post_url" 2>"$HTTP_HEADER")"
  1577. else
  1578. response="$($_WGET -S -O - --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --method $httpmethod --body-data="$body" "$_post_url" 2>"$HTTP_HEADER")"
  1579. fi
  1580. fi
  1581. fi
  1582. _ret="$?"
  1583. if [ "$_ret" = "8" ]; then
  1584. _ret=0
  1585. _debug "wget returns 8, the server returns a 'Bad request' response, lets process the response later."
  1586. fi
  1587. if [ "$_ret" != "0" ]; then
  1588. _err "Please refer to https://www.gnu.org/software/wget/manual/html_node/Exit-Status.html for error code: $_ret"
  1589. fi
  1590. _sed_i "s/^ *//g" "$HTTP_HEADER"
  1591. else
  1592. _ret="$?"
  1593. _err "Neither curl nor wget is found, can not do $httpmethod."
  1594. fi
  1595. _debug "_ret" "$_ret"
  1596. printf "%s" "$response"
  1597. return $_ret
  1598. }
  1599. # url getheader timeout
  1600. _get() {
  1601. _debug GET
  1602. url="$1"
  1603. onlyheader="$2"
  1604. t="$3"
  1605. _debug url "$url"
  1606. _debug "timeout=$t"
  1607. _inithttp
  1608. if [ "$_ACME_CURL" ] && [ "${ACME_USE_WGET:-0}" = "0" ]; then
  1609. _CURL="$_ACME_CURL"
  1610. if [ "$HTTPS_INSECURE" ]; then
  1611. _CURL="$_CURL --insecure "
  1612. fi
  1613. if [ "$t" ]; then
  1614. _CURL="$_CURL --connect-timeout $t"
  1615. fi
  1616. _debug "_CURL" "$_CURL"
  1617. if [ "$onlyheader" ]; then
  1618. $_CURL -I --user-agent "$USER_AGENT" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$url"
  1619. else
  1620. $_CURL --user-agent "$USER_AGENT" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$url"
  1621. fi
  1622. ret=$?
  1623. if [ "$ret" != "0" ]; then
  1624. _err "Please refer to https://curl.haxx.se/libcurl/c/libcurl-errors.html for error code: $ret"
  1625. if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
  1626. _err "Here is the curl dump log:"
  1627. _err "$(cat "$_CURL_DUMP")"
  1628. fi
  1629. fi
  1630. elif [ "$_ACME_WGET" ]; then
  1631. _WGET="$_ACME_WGET"
  1632. if [ "$HTTPS_INSECURE" ]; then
  1633. _WGET="$_WGET --no-check-certificate "
  1634. fi
  1635. if [ "$t" ]; then
  1636. _WGET="$_WGET --timeout=$t"
  1637. fi
  1638. _debug "_WGET" "$_WGET"
  1639. if [ "$onlyheader" ]; then
  1640. $_WGET --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" -S -O /dev/null "$url" 2>&1 | sed 's/^[ ]*//g'
  1641. else
  1642. $_WGET --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" -O - "$url"
  1643. fi
  1644. ret=$?
  1645. if [ "$ret" = "8" ]; then
  1646. ret=0
  1647. _debug "wget returns 8, the server returns a 'Bad request' response, lets process the response later."
  1648. fi
  1649. if [ "$ret" != "0" ]; then
  1650. _err "Please refer to https://www.gnu.org/software/wget/manual/html_node/Exit-Status.html for error code: $ret"
  1651. fi
  1652. else
  1653. ret=$?
  1654. _err "Neither curl nor wget is found, can not do GET."
  1655. fi
  1656. _debug "ret" "$ret"
  1657. return $ret
  1658. }
  1659. _head_n() {
  1660. head -n "$1"
  1661. }
  1662. _tail_n() {
  1663. if ! tail -n "$1" 2>/dev/null; then
  1664. #fix for solaris
  1665. tail -"$1"
  1666. fi
  1667. }
  1668. # url payload needbase64 keyfile
  1669. _send_signed_request() {
  1670. url=$1
  1671. payload=$2
  1672. needbase64=$3
  1673. keyfile=$4
  1674. if [ -z "$keyfile" ]; then
  1675. keyfile="$ACCOUNT_KEY_PATH"
  1676. fi
  1677. _debug url "$url"
  1678. _debug payload "$payload"
  1679. if ! _calcjwk "$keyfile"; then
  1680. return 1
  1681. fi
  1682. __request_conent_type="$CONTENT_TYPE_JSON"
  1683. payload64=$(printf "%s" "$payload" | _base64 | _url_replace)
  1684. _debug3 payload64 "$payload64"
  1685. MAX_REQUEST_RETRY_TIMES=20
  1686. _sleep_retry_sec=1
  1687. _request_retry_times=0
  1688. while [ "${_request_retry_times}" -lt "$MAX_REQUEST_RETRY_TIMES" ]; do
  1689. _request_retry_times=$(_math "$_request_retry_times" + 1)
  1690. _debug3 _request_retry_times "$_request_retry_times"
  1691. if [ -z "$_CACHED_NONCE" ]; then
  1692. _headers=""
  1693. if [ "$ACME_NEW_NONCE" ]; then
  1694. _debug2 "Get nonce with HEAD. ACME_NEW_NONCE" "$ACME_NEW_NONCE"
  1695. nonceurl="$ACME_NEW_NONCE"
  1696. if _post "" "$nonceurl" "" "HEAD" "$__request_conent_type" >/dev/null; then
  1697. _headers="$(cat "$HTTP_HEADER")"
  1698. _debug2 _headers "$_headers"
  1699. _CACHED_NONCE="$(echo "$_headers" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2)"
  1700. fi
  1701. fi
  1702. if [ -z "$_CACHED_NONCE" ]; then
  1703. _debug2 "Get nonce with GET. ACME_DIRECTORY" "$ACME_DIRECTORY"
  1704. nonceurl="$ACME_DIRECTORY"
  1705. _headers="$(_get "$nonceurl" "onlyheader")"
  1706. _debug2 _headers "$_headers"
  1707. _CACHED_NONCE="$(echo "$_headers" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2)"
  1708. fi
  1709. if [ -z "$_CACHED_NONCE" ] && [ "$ACME_NEW_NONCE" ]; then
  1710. _debug2 "Get nonce with GET. ACME_NEW_NONCE" "$ACME_NEW_NONCE"
  1711. nonceurl="$ACME_NEW_NONCE"
  1712. _headers="$(_get "$nonceurl" "onlyheader")"
  1713. _debug2 _headers "$_headers"
  1714. _CACHED_NONCE="$(echo "$_headers" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2)"
  1715. fi
  1716. _debug2 _CACHED_NONCE "$_CACHED_NONCE"
  1717. if [ "$?" != "0" ]; then
  1718. _err "Can not connect to $nonceurl to get nonce."
  1719. return 1
  1720. fi
  1721. else
  1722. _debug2 "Use _CACHED_NONCE" "$_CACHED_NONCE"
  1723. fi
  1724. nonce="$_CACHED_NONCE"
  1725. _debug2 nonce "$nonce"
  1726. if [ -z "$nonce" ]; then
  1727. _info "Could not get nonce, let's try again."
  1728. _sleep 2
  1729. continue
  1730. fi
  1731. if [ "$ACME_VERSION" = "2" ]; then
  1732. if [ "$url" = "$ACME_NEW_ACCOUNT" ] || [ "$url" = "$ACME_REVOKE_CERT" ]; then
  1733. protected="$JWK_HEADERPLACE_PART1$nonce\", \"url\": \"${url}$JWK_HEADERPLACE_PART2, \"jwk\": $jwk"'}'
  1734. else
  1735. protected="$JWK_HEADERPLACE_PART1$nonce\", \"url\": \"${url}$JWK_HEADERPLACE_PART2, \"kid\": \"${ACCOUNT_URL}\""'}'
  1736. fi
  1737. else
  1738. protected="$JWK_HEADERPLACE_PART1$nonce\", \"url\": \"${url}$JWK_HEADERPLACE_PART2, \"jwk\": $jwk"'}'
  1739. fi
  1740. _debug3 protected "$protected"
  1741. protected64="$(printf "%s" "$protected" | _base64 | _url_replace)"
  1742. _debug3 protected64 "$protected64"
  1743. if ! _sig_t="$(printf "%s" "$protected64.$payload64" | _sign "$keyfile" "sha256")"; then
  1744. _err "Sign request failed."
  1745. return 1
  1746. fi
  1747. _debug3 _sig_t "$_sig_t"
  1748. sig="$(printf "%s" "$_sig_t" | _url_replace)"
  1749. _debug3 sig "$sig"
  1750. body="{\"protected\": \"$protected64\", \"payload\": \"$payload64\", \"signature\": \"$sig\"}"
  1751. _debug3 body "$body"
  1752. response="$(_post "$body" "$url" "$needbase64" "POST" "$__request_conent_type")"
  1753. _CACHED_NONCE=""
  1754. if [ "$?" != "0" ]; then
  1755. _err "Can not post to $url"
  1756. return 1
  1757. fi
  1758. responseHeaders="$(cat "$HTTP_HEADER")"
  1759. _debug2 responseHeaders "$responseHeaders"
  1760. code="$(grep "^HTTP" "$HTTP_HEADER" | _tail_n 1 | cut -d " " -f 2 | tr -d "\r\n")"
  1761. _debug code "$code"
  1762. _debug2 original "$response"
  1763. if echo "$responseHeaders" | grep -i "Content-Type: *application/json" >/dev/null 2>&1; then
  1764. response="$(echo "$response" | _normalizeJson)"
  1765. fi
  1766. _debug2 response "$response"
  1767. _CACHED_NONCE="$(echo "$responseHeaders" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2)"
  1768. if ! _startswith "$code" "2"; then
  1769. _body="$response"
  1770. if [ "$needbase64" ]; then
  1771. _body="$(echo "$_body" | _dbase64 multiline)"
  1772. _debug3 _body "$_body"
  1773. fi
  1774. if _contains "$_body" "JWS has invalid anti-replay nonce" || _contains "$_body" "JWS has an invalid anti-replay nonce"; then
  1775. _info "It seems the CA server is busy now, let's wait and retry. Sleeping $_sleep_retry_sec seconds."
  1776. _CACHED_NONCE=""
  1777. _sleep $_sleep_retry_sec
  1778. continue
  1779. fi
  1780. fi
  1781. return 0
  1782. done
  1783. _info "Giving up sending to CA server after $MAX_REQUEST_RETRY_TIMES retries."
  1784. return 1
  1785. }
  1786. #setopt "file" "opt" "=" "value" [";"]
  1787. _setopt() {
  1788. __conf="$1"
  1789. __opt="$2"
  1790. __sep="$3"
  1791. __val="$4"
  1792. __end="$5"
  1793. if [ -z "$__opt" ]; then
  1794. _usage usage: _setopt '"file" "opt" "=" "value" [";"]'
  1795. return
  1796. fi
  1797. if [ ! -f "$__conf" ]; then
  1798. touch "$__conf"
  1799. fi
  1800. if grep -n "^$__opt$__sep" "$__conf" >/dev/null; then
  1801. _debug3 OK
  1802. if _contains "$__val" "&"; then
  1803. __val="$(echo "$__val" | sed 's/&/\\&/g')"
  1804. fi
  1805. text="$(cat "$__conf")"
  1806. printf -- "%s\n" "$text" | sed "s|^$__opt$__sep.*$|$__opt$__sep$__val$__end|" >"$__conf"
  1807. elif grep -n "^#$__opt$__sep" "$__conf" >/dev/null; then
  1808. if _contains "$__val" "&"; then
  1809. __val="$(echo "$__val" | sed 's/&/\\&/g')"
  1810. fi
  1811. text="$(cat "$__conf")"
  1812. printf -- "%s\n" "$text" | sed "s|^#$__opt$__sep.*$|$__opt$__sep$__val$__end|" >"$__conf"
  1813. else
  1814. _debug3 APP
  1815. echo "$__opt$__sep$__val$__end" >>"$__conf"
  1816. fi
  1817. _debug3 "$(grep -n "^$__opt$__sep" "$__conf")"
  1818. }
  1819. #_save_conf file key value base64encode
  1820. #save to conf
  1821. _save_conf() {
  1822. _s_c_f="$1"
  1823. _sdkey="$2"
  1824. _sdvalue="$3"
  1825. _b64encode="$4"
  1826. if [ "$_sdvalue" ] && [ "$_b64encode" ]; then
  1827. _sdvalue="${B64CONF_START}$(printf "%s" "${_sdvalue}" | _base64)${B64CONF_END}"
  1828. fi
  1829. if [ "$_s_c_f" ]; then
  1830. _setopt "$_s_c_f" "$_sdkey" "=" "'$_sdvalue'"
  1831. else
  1832. _err "config file is empty, can not save $_sdkey=$_sdvalue"
  1833. fi
  1834. }
  1835. #_clear_conf file key
  1836. _clear_conf() {
  1837. _c_c_f="$1"
  1838. _sdkey="$2"
  1839. if [ "$_c_c_f" ]; then
  1840. _conf_data="$(cat "$_c_c_f")"
  1841. echo "$_conf_data" | sed "s/^$_sdkey *=.*$//" >"$_c_c_f"
  1842. else
  1843. _err "config file is empty, can not clear"
  1844. fi
  1845. }
  1846. #_read_conf file key
  1847. _read_conf() {
  1848. _r_c_f="$1"
  1849. _sdkey="$2"
  1850. if [ -f "$_r_c_f" ]; then
  1851. _sdv="$(
  1852. eval "$(grep "^$_sdkey *=" "$_r_c_f")"
  1853. eval "printf \"%s\" \"\$$_sdkey\""
  1854. )"
  1855. if _startswith "$_sdv" "${B64CONF_START}" && _endswith "$_sdv" "${B64CONF_END}"; then
  1856. _sdv="$(echo "$_sdv" | sed "s/${B64CONF_START}//" | sed "s/${B64CONF_END}//" | _dbase64)"
  1857. fi
  1858. printf "%s" "$_sdv"
  1859. else
  1860. _debug "config file is empty, can not read $_sdkey"
  1861. fi
  1862. }
  1863. #_savedomainconf key value base64encode
  1864. #save to domain.conf
  1865. _savedomainconf() {
  1866. _save_conf "$DOMAIN_CONF" "$@"
  1867. }
  1868. #_cleardomainconf key
  1869. _cleardomainconf() {
  1870. _clear_conf "$DOMAIN_CONF" "$1"
  1871. }
  1872. #_readdomainconf key
  1873. _readdomainconf() {
  1874. _read_conf "$DOMAIN_CONF" "$1"
  1875. }
  1876. #key value base64encode
  1877. _savedeployconf() {
  1878. _savedomainconf "SAVED_$1" "$2" "$3"
  1879. #remove later
  1880. _cleardomainconf "$1"
  1881. }
  1882. #key
  1883. _getdeployconf() {
  1884. _rac_key="$1"
  1885. _rac_value="$(eval echo \$"$_rac_key")"
  1886. if [ "$_rac_value" ]; then
  1887. if _startswith "$_rac_value" '"' && _endswith "$_rac_value" '"'; then
  1888. _debug2 "trim quotation marks"
  1889. eval "export $_rac_key=$_rac_value"
  1890. fi
  1891. return 0 # do nothing
  1892. fi
  1893. _saved=$(_readdomainconf "SAVED_$_rac_key")
  1894. eval "export $_rac_key=$_saved"
  1895. }
  1896. #_saveaccountconf key value base64encode
  1897. _saveaccountconf() {
  1898. _save_conf "$ACCOUNT_CONF_PATH" "$@"
  1899. }
  1900. #key value base64encode
  1901. _saveaccountconf_mutable() {
  1902. _save_conf "$ACCOUNT_CONF_PATH" "SAVED_$1" "$2" "$3"
  1903. #remove later
  1904. _clearaccountconf "$1"
  1905. }
  1906. #key
  1907. _readaccountconf() {
  1908. _read_conf "$ACCOUNT_CONF_PATH" "$1"
  1909. }
  1910. #key
  1911. _readaccountconf_mutable() {
  1912. _rac_key="$1"
  1913. _readaccountconf "SAVED_$_rac_key"
  1914. }
  1915. #_clearaccountconf key
  1916. _clearaccountconf() {
  1917. _clear_conf "$ACCOUNT_CONF_PATH" "$1"
  1918. }
  1919. #_savecaconf key value
  1920. _savecaconf() {
  1921. _save_conf "$CA_CONF" "$1" "$2"
  1922. }
  1923. #_readcaconf key
  1924. _readcaconf() {
  1925. _read_conf "$CA_CONF" "$1"
  1926. }
  1927. #_clearaccountconf key
  1928. _clearcaconf() {
  1929. _clear_conf "$CA_CONF" "$1"
  1930. }
  1931. # content localaddress
  1932. _startserver() {
  1933. content="$1"
  1934. ncaddr="$2"
  1935. _debug "content" "$content"
  1936. _debug "ncaddr" "$ncaddr"
  1937. _debug "startserver: $$"
  1938. _debug Le_HTTPPort "$Le_HTTPPort"
  1939. _debug Le_Listen_V4 "$Le_Listen_V4"
  1940. _debug Le_Listen_V6 "$Le_Listen_V6"
  1941. _NC="socat"
  1942. if [ "$Le_Listen_V4" ]; then
  1943. _NC="$_NC -4"
  1944. elif [ "$Le_Listen_V6" ]; then
  1945. _NC="$_NC -6"
  1946. fi
  1947. if [ "$DEBUG" ] && [ "$DEBUG" -gt "1" ]; then
  1948. _NC="$_NC -d -d -v"
  1949. fi
  1950. SOCAT_OPTIONS=TCP-LISTEN:$Le_HTTPPort,crlf,reuseaddr,fork
  1951. #Adding bind to local-address
  1952. if [ "$ncaddr" ]; then
  1953. SOCAT_OPTIONS="$SOCAT_OPTIONS,bind=${ncaddr}"
  1954. fi
  1955. _content_len="$(printf "%s" "$content" | wc -c)"
  1956. _debug _content_len "$_content_len"
  1957. _debug "_NC" "$_NC $SOCAT_OPTIONS"
  1958. $_NC $SOCAT_OPTIONS SYSTEM:"sleep 1; \
  1959. echo 'HTTP/1.0 200 OK'; \
  1960. echo 'Content-Length\: $_content_len'; \
  1961. echo ''; \
  1962. printf -- '$content';" &
  1963. serverproc="$!"
  1964. }
  1965. _stopserver() {
  1966. pid="$1"
  1967. _debug "pid" "$pid"
  1968. if [ -z "$pid" ]; then
  1969. return
  1970. fi
  1971. kill $pid
  1972. }
  1973. # sleep sec
  1974. _sleep() {
  1975. _sleep_sec="$1"
  1976. if [ "$__INTERACTIVE" ]; then
  1977. _sleep_c="$_sleep_sec"
  1978. while [ "$_sleep_c" -ge "0" ]; do
  1979. printf "\r \r"
  1980. __green "$_sleep_c"
  1981. _sleep_c="$(_math "$_sleep_c" - 1)"
  1982. sleep 1
  1983. done
  1984. printf "\r"
  1985. else
  1986. sleep "$_sleep_sec"
  1987. fi
  1988. }
  1989. # _starttlsserver san_a san_b port content _ncaddr acmeValidationv1
  1990. _starttlsserver() {
  1991. _info "Starting tls server."
  1992. san_a="$1"
  1993. san_b="$2"
  1994. port="$3"
  1995. content="$4"
  1996. opaddr="$5"
  1997. acmeValidationv1="$6"
  1998. _debug san_a "$san_a"
  1999. _debug san_b "$san_b"
  2000. _debug port "$port"
  2001. _debug acmeValidationv1 "$acmeValidationv1"
  2002. #create key TLS_KEY
  2003. if ! _createkey "2048" "$TLS_KEY"; then
  2004. _err "Create tls validation key error."
  2005. return 1
  2006. fi
  2007. #create csr
  2008. alt="$san_a"
  2009. if [ "$san_b" ]; then
  2010. alt="$alt,$san_b"
  2011. fi
  2012. if ! _createcsr "tls.acme.sh" "$alt" "$TLS_KEY" "$TLS_CSR" "$TLS_CONF" "$acmeValidationv1"; then
  2013. _err "Create tls validation csr error."
  2014. return 1
  2015. fi
  2016. #self signed
  2017. if ! _signcsr "$TLS_KEY" "$TLS_CSR" "$TLS_CONF" "$TLS_CERT"; then
  2018. _err "Create tls validation cert error."
  2019. return 1
  2020. fi
  2021. __S_OPENSSL="${ACME_OPENSSL_BIN:-openssl} s_server -www -cert $TLS_CERT -key $TLS_KEY "
  2022. if [ "$opaddr" ]; then
  2023. __S_OPENSSL="$__S_OPENSSL -accept $opaddr:$port"
  2024. else
  2025. __S_OPENSSL="$__S_OPENSSL -accept $port"
  2026. fi
  2027. _debug Le_Listen_V4 "$Le_Listen_V4"
  2028. _debug Le_Listen_V6 "$Le_Listen_V6"
  2029. if [ "$Le_Listen_V4" ]; then
  2030. __S_OPENSSL="$__S_OPENSSL -4"
  2031. elif [ "$Le_Listen_V6" ]; then
  2032. __S_OPENSSL="$__S_OPENSSL -6"
  2033. fi
  2034. if [ "$acmeValidationv1" ]; then
  2035. __S_OPENSSL="$__S_OPENSSL -alpn acme-tls/1"
  2036. fi
  2037. _debug "$__S_OPENSSL"
  2038. if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
  2039. $__S_OPENSSL -tlsextdebug &
  2040. else
  2041. $__S_OPENSSL >/dev/null 2>&1 &
  2042. fi
  2043. serverproc="$!"
  2044. sleep 1
  2045. _debug serverproc "$serverproc"
  2046. }
  2047. #file
  2048. _readlink() {
  2049. _rf="$1"
  2050. if ! readlink -f "$_rf" 2>/dev/null; then
  2051. if _startswith "$_rf" "/"; then
  2052. echo "$_rf"
  2053. return 0
  2054. fi
  2055. echo "$(pwd)/$_rf" | _conapath
  2056. fi
  2057. }
  2058. _conapath() {
  2059. sed "s#/\./#/#g"
  2060. }
  2061. __initHome() {
  2062. if [ -z "$_SCRIPT_HOME" ]; then
  2063. if _exists readlink && _exists dirname; then
  2064. _debug "Lets find script dir."
  2065. _debug "_SCRIPT_" "$_SCRIPT_"
  2066. _script="$(_readlink "$_SCRIPT_")"
  2067. _debug "_script" "$_script"
  2068. _script_home="$(dirname "$_script")"
  2069. _debug "_script_home" "$_script_home"
  2070. if [ -d "$_script_home" ]; then
  2071. _SCRIPT_HOME="$_script_home"
  2072. else
  2073. _err "It seems the script home is not correct:$_script_home"
  2074. fi
  2075. fi
  2076. fi
  2077. # if [ -z "$LE_WORKING_DIR" ]; then
  2078. # if [ -f "$DEFAULT_INSTALL_HOME/account.conf" ]; then
  2079. # _debug "It seems that $PROJECT_NAME is already installed in $DEFAULT_INSTALL_HOME"
  2080. # LE_WORKING_DIR="$DEFAULT_INSTALL_HOME"
  2081. # else
  2082. # LE_WORKING_DIR="$_SCRIPT_HOME"
  2083. # fi
  2084. # fi
  2085. if [ -z "$LE_WORKING_DIR" ]; then
  2086. _debug "Using default home:$DEFAULT_INSTALL_HOME"
  2087. LE_WORKING_DIR="$DEFAULT_INSTALL_HOME"
  2088. fi
  2089. export LE_WORKING_DIR
  2090. if [ -z "$LE_CONFIG_HOME" ]; then
  2091. LE_CONFIG_HOME="$LE_WORKING_DIR"
  2092. fi
  2093. _debug "Using config home:$LE_CONFIG_HOME"
  2094. export LE_CONFIG_HOME
  2095. _DEFAULT_ACCOUNT_CONF_PATH="$LE_CONFIG_HOME/account.conf"
  2096. if [ -z "$ACCOUNT_CONF_PATH" ]; then
  2097. if [ -f "$_DEFAULT_ACCOUNT_CONF_PATH" ]; then
  2098. . "$_DEFAULT_ACCOUNT_CONF_PATH"
  2099. fi
  2100. fi
  2101. if [ -z "$ACCOUNT_CONF_PATH" ]; then
  2102. ACCOUNT_CONF_PATH="$_DEFAULT_ACCOUNT_CONF_PATH"
  2103. fi
  2104. _debug3 ACCOUNT_CONF_PATH "$ACCOUNT_CONF_PATH"
  2105. DEFAULT_LOG_FILE="$LE_CONFIG_HOME/$PROJECT_NAME.log"
  2106. DEFAULT_CA_HOME="$LE_CONFIG_HOME/ca"
  2107. if [ -z "$LE_TEMP_DIR" ]; then
  2108. LE_TEMP_DIR="$LE_CONFIG_HOME/tmp"
  2109. fi
  2110. }
  2111. #server
  2112. _initAPI() {
  2113. _api_server="${1:-$ACME_DIRECTORY}"
  2114. _debug "_init api for server: $_api_server"
  2115. if [ -z "$ACME_NEW_ACCOUNT" ]; then
  2116. response=$(_get "$_api_server")
  2117. if [ "$?" != "0" ]; then
  2118. _debug2 "response" "$response"
  2119. _err "Can not init api."
  2120. return 1
  2121. fi
  2122. _debug2 "response" "$response"
  2123. ACME_KEY_CHANGE=$(echo "$response" | _egrep_o 'key-change" *: *"[^"]*"' | cut -d '"' -f 3)
  2124. if [ -z "$ACME_KEY_CHANGE" ]; then
  2125. ACME_KEY_CHANGE=$(echo "$response" | _egrep_o 'keyChange" *: *"[^"]*"' | cut -d '"' -f 3)
  2126. fi
  2127. export ACME_KEY_CHANGE
  2128. ACME_NEW_AUTHZ=$(echo "$response" | _egrep_o 'new-authz" *: *"[^"]*"' | cut -d '"' -f 3)
  2129. if [ -z "$ACME_NEW_AUTHZ" ]; then
  2130. ACME_NEW_AUTHZ=$(echo "$response" | _egrep_o 'newAuthz" *: *"[^"]*"' | cut -d '"' -f 3)
  2131. fi
  2132. export ACME_NEW_AUTHZ
  2133. ACME_NEW_ORDER=$(echo "$response" | _egrep_o 'new-cert" *: *"[^"]*"' | cut -d '"' -f 3)
  2134. ACME_NEW_ORDER_RES="new-cert"
  2135. if [ -z "$ACME_NEW_ORDER" ]; then
  2136. ACME_NEW_ORDER=$(echo "$response" | _egrep_o 'new-order" *: *"[^"]*"' | cut -d '"' -f 3)
  2137. ACME_NEW_ORDER_RES="new-order"
  2138. if [ -z "$ACME_NEW_ORDER" ]; then
  2139. ACME_NEW_ORDER=$(echo "$response" | _egrep_o 'newOrder" *: *"[^"]*"' | cut -d '"' -f 3)
  2140. fi
  2141. fi
  2142. export ACME_NEW_ORDER
  2143. export ACME_NEW_ORDER_RES
  2144. ACME_NEW_ACCOUNT=$(echo "$response" | _egrep_o 'new-reg" *: *"[^"]*"' | cut -d '"' -f 3)
  2145. ACME_NEW_ACCOUNT_RES="new-reg"
  2146. if [ -z "$ACME_NEW_ACCOUNT" ]; then
  2147. ACME_NEW_ACCOUNT=$(echo "$response" | _egrep_o 'new-account" *: *"[^"]*"' | cut -d '"' -f 3)
  2148. ACME_NEW_ACCOUNT_RES="new-account"
  2149. if [ -z "$ACME_NEW_ACCOUNT" ]; then
  2150. ACME_NEW_ACCOUNT=$(echo "$response" | _egrep_o 'newAccount" *: *"[^"]*"' | cut -d '"' -f 3)
  2151. if [ "$ACME_NEW_ACCOUNT" ]; then
  2152. export ACME_VERSION=2
  2153. fi
  2154. fi
  2155. fi
  2156. export ACME_NEW_ACCOUNT
  2157. export ACME_NEW_ACCOUNT_RES
  2158. ACME_REVOKE_CERT=$(echo "$response" | _egrep_o 'revoke-cert" *: *"[^"]*"' | cut -d '"' -f 3)
  2159. if [ -z "$ACME_REVOKE_CERT" ]; then
  2160. ACME_REVOKE_CERT=$(echo "$response" | _egrep_o 'revokeCert" *: *"[^"]*"' | cut -d '"' -f 3)
  2161. fi
  2162. export ACME_REVOKE_CERT
  2163. ACME_NEW_NONCE=$(echo "$response" | _egrep_o 'new-nonce" *: *"[^"]*"' | cut -d '"' -f 3)
  2164. if [ -z "$ACME_NEW_NONCE" ]; then
  2165. ACME_NEW_NONCE=$(echo "$response" | _egrep_o 'newNonce" *: *"[^"]*"' | cut -d '"' -f 3)
  2166. fi
  2167. export ACME_NEW_NONCE
  2168. ACME_AGREEMENT=$(echo "$response" | _egrep_o 'terms-of-service" *: *"[^"]*"' | cut -d '"' -f 3)
  2169. if [ -z "$ACME_AGREEMENT" ]; then
  2170. ACME_AGREEMENT=$(echo "$response" | _egrep_o 'termsOfService" *: *"[^"]*"' | cut -d '"' -f 3)
  2171. fi
  2172. export ACME_AGREEMENT
  2173. _debug "ACME_KEY_CHANGE" "$ACME_KEY_CHANGE"
  2174. _debug "ACME_NEW_AUTHZ" "$ACME_NEW_AUTHZ"
  2175. _debug "ACME_NEW_ORDER" "$ACME_NEW_ORDER"
  2176. _debug "ACME_NEW_ACCOUNT" "$ACME_NEW_ACCOUNT"
  2177. _debug "ACME_REVOKE_CERT" "$ACME_REVOKE_CERT"
  2178. _debug "ACME_AGREEMENT" "$ACME_AGREEMENT"
  2179. _debug "ACME_NEW_NONCE" "$ACME_NEW_NONCE"
  2180. _debug "ACME_VERSION" "$ACME_VERSION"
  2181. fi
  2182. }
  2183. #[domain] [keylength or isEcc flag]
  2184. _initpath() {
  2185. domain="$1"
  2186. _ilength="$2"
  2187. __initHome
  2188. if [ -f "$ACCOUNT_CONF_PATH" ]; then
  2189. . "$ACCOUNT_CONF_PATH"
  2190. fi
  2191. if [ "$ACME_IN_CRON" ]; then
  2192. if [ ! "$_USER_PATH_EXPORTED" ]; then
  2193. _USER_PATH_EXPORTED=1
  2194. export PATH="$USER_PATH:$PATH"
  2195. fi
  2196. fi
  2197. if [ -z "$CA_HOME" ]; then
  2198. CA_HOME="$DEFAULT_CA_HOME"
  2199. fi
  2200. if [ "$ACME_VERSION" = "2" ]; then
  2201. DEFAULT_CA="$LETSENCRYPT_CA_V2"
  2202. DEFAULT_STAGING_CA="$LETSENCRYPT_STAGING_CA_V2"
  2203. fi
  2204. if [ -z "$ACME_DIRECTORY" ]; then
  2205. if [ -z "$STAGE" ]; then
  2206. ACME_DIRECTORY="$DEFAULT_CA"
  2207. else
  2208. ACME_DIRECTORY="$DEFAULT_STAGING_CA"
  2209. _info "Using stage ACME_DIRECTORY: $ACME_DIRECTORY"
  2210. fi
  2211. fi
  2212. _debug ACME_DIRECTORY "$ACME_DIRECTORY"
  2213. _ACME_SERVER_HOST="$(echo "$ACME_DIRECTORY" | cut -d : -f 2 | tr -s / | cut -d / -f 2)"
  2214. _debug2 "_ACME_SERVER_HOST" "$_ACME_SERVER_HOST"
  2215. CA_DIR="$CA_HOME/$_ACME_SERVER_HOST"
  2216. _DEFAULT_CA_CONF="$CA_DIR/ca.conf"
  2217. if [ -z "$CA_CONF" ]; then
  2218. CA_CONF="$_DEFAULT_CA_CONF"
  2219. fi
  2220. _debug3 CA_CONF "$CA_CONF"
  2221. if [ -f "$CA_CONF" ]; then
  2222. . "$CA_CONF"
  2223. fi
  2224. if [ -z "$ACME_DIR" ]; then
  2225. ACME_DIR="/home/.acme"
  2226. fi
  2227. if [ -z "$APACHE_CONF_BACKUP_DIR" ]; then
  2228. APACHE_CONF_BACKUP_DIR="$LE_CONFIG_HOME"
  2229. fi
  2230. if [ -z "$USER_AGENT" ]; then
  2231. USER_AGENT="$DEFAULT_USER_AGENT"
  2232. fi
  2233. if [ -z "$HTTP_HEADER" ]; then
  2234. HTTP_HEADER="$LE_CONFIG_HOME/http.header"
  2235. fi
  2236. _OLD_ACCOUNT_KEY="$LE_WORKING_DIR/account.key"
  2237. _OLD_ACCOUNT_JSON="$LE_WORKING_DIR/account.json"
  2238. _DEFAULT_ACCOUNT_KEY_PATH="$CA_DIR/account.key"
  2239. _DEFAULT_ACCOUNT_JSON_PATH="$CA_DIR/account.json"
  2240. if [ -z "$ACCOUNT_KEY_PATH" ]; then
  2241. ACCOUNT_KEY_PATH="$_DEFAULT_ACCOUNT_KEY_PATH"
  2242. fi
  2243. if [ -z "$ACCOUNT_JSON_PATH" ]; then
  2244. ACCOUNT_JSON_PATH="$_DEFAULT_ACCOUNT_JSON_PATH"
  2245. fi
  2246. _DEFAULT_CERT_HOME="$LE_CONFIG_HOME"
  2247. if [ -z "$CERT_HOME" ]; then
  2248. CERT_HOME="$_DEFAULT_CERT_HOME"
  2249. fi
  2250. if [ -z "$ACME_OPENSSL_BIN" ] || [ ! -f "$ACME_OPENSSL_BIN" ] || [ ! -x "$ACME_OPENSSL_BIN" ]; then
  2251. ACME_OPENSSL_BIN="$DEFAULT_OPENSSL_BIN"
  2252. fi
  2253. if [ -z "$domain" ]; then
  2254. return 0
  2255. fi
  2256. if [ -z "$DOMAIN_PATH" ]; then
  2257. domainhome="$CERT_HOME/$domain"
  2258. domainhomeecc="$CERT_HOME/$domain$ECC_SUFFIX"
  2259. DOMAIN_PATH="$domainhome"
  2260. if _isEccKey "$_ilength"; then
  2261. DOMAIN_PATH="$domainhomeecc"
  2262. else
  2263. if [ ! -d "$domainhome" ] && [ -d "$domainhomeecc" ]; then
  2264. _info "The domain '$domain' seems to have a ECC cert already, please add '$(__red "--ecc")' parameter if you want to use that cert."
  2265. fi
  2266. fi
  2267. _debug DOMAIN_PATH "$DOMAIN_PATH"
  2268. fi
  2269. if [ -z "$DOMAIN_BACKUP_PATH" ]; then
  2270. DOMAIN_BACKUP_PATH="$DOMAIN_PATH/backup"
  2271. fi
  2272. if [ -z "$DOMAIN_CONF" ]; then
  2273. DOMAIN_CONF="$DOMAIN_PATH/$domain.conf"
  2274. fi
  2275. if [ -z "$DOMAIN_SSL_CONF" ]; then
  2276. DOMAIN_SSL_CONF="$DOMAIN_PATH/$domain.csr.conf"
  2277. fi
  2278. if [ -z "$CSR_PATH" ]; then
  2279. CSR_PATH="$DOMAIN_PATH/$domain.csr"
  2280. fi
  2281. if [ -z "$CERT_KEY_PATH" ]; then
  2282. CERT_KEY_PATH="$DOMAIN_PATH/$domain.key"
  2283. fi
  2284. if [ -z "$CERT_PATH" ]; then
  2285. CERT_PATH="$DOMAIN_PATH/$domain.cer"
  2286. fi
  2287. if [ -z "$CA_CERT_PATH" ]; then
  2288. CA_CERT_PATH="$DOMAIN_PATH/ca.cer"
  2289. fi
  2290. if [ -z "$CERT_FULLCHAIN_PATH" ]; then
  2291. CERT_FULLCHAIN_PATH="$DOMAIN_PATH/fullchain.cer"
  2292. fi
  2293. if [ -z "$CERT_PFX_PATH" ]; then
  2294. CERT_PFX_PATH="$DOMAIN_PATH/$domain.pfx"
  2295. fi
  2296. if [ -z "$CERT_PKCS8_PATH" ]; then
  2297. CERT_PKCS8_PATH="$DOMAIN_PATH/$domain.pkcs8"
  2298. fi
  2299. if [ -z "$TLS_CONF" ]; then
  2300. TLS_CONF="$DOMAIN_PATH/tls.validation.conf"
  2301. fi
  2302. if [ -z "$TLS_CERT" ]; then
  2303. TLS_CERT="$DOMAIN_PATH/tls.validation.cert"
  2304. fi
  2305. if [ -z "$TLS_KEY" ]; then
  2306. TLS_KEY="$DOMAIN_PATH/tls.validation.key"
  2307. fi
  2308. if [ -z "$TLS_CSR" ]; then
  2309. TLS_CSR="$DOMAIN_PATH/tls.validation.csr"
  2310. fi
  2311. }
  2312. _exec() {
  2313. if [ -z "$_EXEC_TEMP_ERR" ]; then
  2314. _EXEC_TEMP_ERR="$(_mktemp)"
  2315. fi
  2316. if [ "$_EXEC_TEMP_ERR" ]; then
  2317. eval "$@ 2>>$_EXEC_TEMP_ERR"
  2318. else
  2319. eval "$@"
  2320. fi
  2321. }
  2322. _exec_err() {
  2323. [ "$_EXEC_TEMP_ERR" ] && _err "$(cat "$_EXEC_TEMP_ERR")" && echo "" >"$_EXEC_TEMP_ERR"
  2324. }
  2325. _apachePath() {
  2326. _APACHECTL="apachectl"
  2327. if ! _exists apachectl; then
  2328. if _exists apache2ctl; then
  2329. _APACHECTL="apache2ctl"
  2330. else
  2331. _err "'apachectl not found. It seems that apache is not installed, or you are not root user.'"
  2332. _err "Please use webroot mode to try again."
  2333. return 1
  2334. fi
  2335. fi
  2336. if ! _exec $_APACHECTL -V >/dev/null; then
  2337. _exec_err
  2338. return 1
  2339. fi
  2340. if [ "$APACHE_HTTPD_CONF" ]; then
  2341. _saveaccountconf APACHE_HTTPD_CONF "$APACHE_HTTPD_CONF"
  2342. httpdconf="$APACHE_HTTPD_CONF"
  2343. httpdconfname="$(basename "$httpdconfname")"
  2344. else
  2345. httpdconfname="$($_APACHECTL -V | grep SERVER_CONFIG_FILE= | cut -d = -f 2 | tr -d '"')"
  2346. _debug httpdconfname "$httpdconfname"
  2347. if [ -z "$httpdconfname" ]; then
  2348. _err "Can not read apache config file."
  2349. return 1
  2350. fi
  2351. if _startswith "$httpdconfname" '/'; then
  2352. httpdconf="$httpdconfname"
  2353. httpdconfname="$(basename "$httpdconfname")"
  2354. else
  2355. httpdroot="$($_APACHECTL -V | grep HTTPD_ROOT= | cut -d = -f 2 | tr -d '"')"
  2356. _debug httpdroot "$httpdroot"
  2357. httpdconf="$httpdroot/$httpdconfname"
  2358. httpdconfname="$(basename "$httpdconfname")"
  2359. fi
  2360. fi
  2361. _debug httpdconf "$httpdconf"
  2362. _debug httpdconfname "$httpdconfname"
  2363. if [ ! -f "$httpdconf" ]; then
  2364. _err "Apache Config file not found" "$httpdconf"
  2365. return 1
  2366. fi
  2367. return 0
  2368. }
  2369. _restoreApache() {
  2370. if [ -z "$usingApache" ]; then
  2371. return 0
  2372. fi
  2373. _initpath
  2374. if ! _apachePath; then
  2375. return 1
  2376. fi
  2377. if [ ! -f "$APACHE_CONF_BACKUP_DIR/$httpdconfname" ]; then
  2378. _debug "No config file to restore."
  2379. return 0
  2380. fi
  2381. cat "$APACHE_CONF_BACKUP_DIR/$httpdconfname" >"$httpdconf"
  2382. _debug "Restored: $httpdconf."
  2383. if ! _exec $_APACHECTL -t; then
  2384. _exec_err
  2385. _err "Sorry, restore apache config error, please contact me."
  2386. return 1
  2387. fi
  2388. _debug "Restored successfully."
  2389. rm -f "$APACHE_CONF_BACKUP_DIR/$httpdconfname"
  2390. return 0
  2391. }
  2392. _setApache() {
  2393. _initpath
  2394. if ! _apachePath; then
  2395. return 1
  2396. fi
  2397. #test the conf first
  2398. _info "Checking if there is an error in the apache config file before starting."
  2399. if ! _exec "$_APACHECTL" -t >/dev/null; then
  2400. _exec_err
  2401. _err "The apache config file has error, please fix it first, then try again."
  2402. _err "Don't worry, there is nothing changed to your system."
  2403. return 1
  2404. else
  2405. _info "OK"
  2406. fi
  2407. #backup the conf
  2408. _debug "Backup apache config file" "$httpdconf"
  2409. if ! cp "$httpdconf" "$APACHE_CONF_BACKUP_DIR/"; then
  2410. _err "Can not backup apache config file, so abort. Don't worry, the apache config is not changed."
  2411. _err "This might be a bug of $PROJECT_NAME , please report issue: $PROJECT"
  2412. return 1
  2413. fi
  2414. _info "JFYI, Config file $httpdconf is backuped to $APACHE_CONF_BACKUP_DIR/$httpdconfname"
  2415. _info "In case there is an error that can not be restored automatically, you may try restore it yourself."
  2416. _info "The backup file will be deleted on success, just forget it."
  2417. #add alias
  2418. apacheVer="$($_APACHECTL -V | grep "Server version:" | cut -d : -f 2 | cut -d " " -f 2 | cut -d '/' -f 2)"
  2419. _debug "apacheVer" "$apacheVer"
  2420. apacheMajer="$(echo "$apacheVer" | cut -d . -f 1)"
  2421. apacheMinor="$(echo "$apacheVer" | cut -d . -f 2)"
  2422. if [ "$apacheVer" ] && [ "$apacheMajer$apacheMinor" -ge "24" ]; then
  2423. echo "
  2424. Alias /.well-known/acme-challenge $ACME_DIR
  2425. <Directory $ACME_DIR >
  2426. Require all granted
  2427. </Directory>
  2428. " >>"$httpdconf"
  2429. else
  2430. echo "
  2431. Alias /.well-known/acme-challenge $ACME_DIR
  2432. <Directory $ACME_DIR >
  2433. Order allow,deny
  2434. Allow from all
  2435. </Directory>
  2436. " >>"$httpdconf"
  2437. fi
  2438. _msg="$($_APACHECTL -t 2>&1)"
  2439. if [ "$?" != "0" ]; then
  2440. _err "Sorry, apache config error"
  2441. if _restoreApache; then
  2442. _err "The apache config file is restored."
  2443. else
  2444. _err "Sorry, The apache config file can not be restored, please report bug."
  2445. fi
  2446. return 1
  2447. fi
  2448. if [ ! -d "$ACME_DIR" ]; then
  2449. mkdir -p "$ACME_DIR"
  2450. chmod 755 "$ACME_DIR"
  2451. fi
  2452. if ! _exec "$_APACHECTL" graceful; then
  2453. _exec_err
  2454. _err "$_APACHECTL graceful error, please contact me."
  2455. _restoreApache
  2456. return 1
  2457. fi
  2458. usingApache="1"
  2459. return 0
  2460. }
  2461. #find the real nginx conf file
  2462. #backup
  2463. #set the nginx conf
  2464. #returns the real nginx conf file
  2465. _setNginx() {
  2466. _d="$1"
  2467. _croot="$2"
  2468. _thumbpt="$3"
  2469. FOUND_REAL_NGINX_CONF=""
  2470. FOUND_REAL_NGINX_CONF_LN=""
  2471. BACKUP_NGINX_CONF=""
  2472. _debug _croot "$_croot"
  2473. _start_f="$(echo "$_croot" | cut -d : -f 2)"
  2474. _debug _start_f "$_start_f"
  2475. if [ -z "$_start_f" ]; then
  2476. _debug "find start conf from nginx command"
  2477. if [ -z "$NGINX_CONF" ]; then
  2478. if ! _exists "nginx"; then
  2479. _err "nginx command is not found."
  2480. return 1
  2481. fi
  2482. NGINX_CONF="$(nginx -V 2>&1 | _egrep_o "--conf-path=[^ ]* " | tr -d " ")"
  2483. _debug NGINX_CONF "$NGINX_CONF"
  2484. NGINX_CONF="$(echo "$NGINX_CONF" | cut -d = -f 2)"
  2485. _debug NGINX_CONF "$NGINX_CONF"
  2486. if [ -z "$NGINX_CONF" ]; then
  2487. _err "Can not find nginx conf."
  2488. NGINX_CONF=""
  2489. return 1
  2490. fi
  2491. if [ ! -f "$NGINX_CONF" ]; then
  2492. _err "'$NGINX_CONF' doesn't exist."
  2493. NGINX_CONF=""
  2494. return 1
  2495. fi
  2496. _debug "Found nginx conf file:$NGINX_CONF"
  2497. fi
  2498. _start_f="$NGINX_CONF"
  2499. fi
  2500. _debug "Start detect nginx conf for $_d from:$_start_f"
  2501. if ! _checkConf "$_d" "$_start_f"; then
  2502. _err "Can not find conf file for domain $d"
  2503. return 1
  2504. fi
  2505. _info "Found conf file: $FOUND_REAL_NGINX_CONF"
  2506. _ln=$FOUND_REAL_NGINX_CONF_LN
  2507. _debug "_ln" "$_ln"
  2508. _lnn=$(_math $_ln + 1)
  2509. _debug _lnn "$_lnn"
  2510. _start_tag="$(sed -n "$_lnn,${_lnn}p" "$FOUND_REAL_NGINX_CONF")"
  2511. _debug "_start_tag" "$_start_tag"
  2512. if [ "$_start_tag" = "$NGINX_START" ]; then
  2513. _info "The domain $_d is already configured, skip"
  2514. FOUND_REAL_NGINX_CONF=""
  2515. return 0
  2516. fi
  2517. mkdir -p "$DOMAIN_BACKUP_PATH"
  2518. _backup_conf="$DOMAIN_BACKUP_PATH/$_d.nginx.conf"
  2519. _debug _backup_conf "$_backup_conf"
  2520. BACKUP_NGINX_CONF="$_backup_conf"
  2521. _info "Backup $FOUND_REAL_NGINX_CONF to $_backup_conf"
  2522. if ! cp "$FOUND_REAL_NGINX_CONF" "$_backup_conf"; then
  2523. _err "backup error."
  2524. FOUND_REAL_NGINX_CONF=""
  2525. return 1
  2526. fi
  2527. if ! _exists "nginx"; then
  2528. _err "nginx command is not found."
  2529. return 1
  2530. fi
  2531. _info "Check the nginx conf before setting up."
  2532. if ! _exec "nginx -t" >/dev/null; then
  2533. _exec_err
  2534. return 1
  2535. fi
  2536. _info "OK, Set up nginx config file"
  2537. if ! sed -n "1,${_ln}p" "$_backup_conf" >"$FOUND_REAL_NGINX_CONF"; then
  2538. cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF"
  2539. _err "write nginx conf error, but don't worry, the file is restored to the original version."
  2540. return 1
  2541. fi
  2542. echo "$NGINX_START
  2543. location ~ \"^/\.well-known/acme-challenge/([-_a-zA-Z0-9]+)\$\" {
  2544. default_type text/plain;
  2545. return 200 \"\$1.$_thumbpt\";
  2546. }
  2547. #NGINX_START
  2548. " >>"$FOUND_REAL_NGINX_CONF"
  2549. if ! sed -n "${_lnn},99999p" "$_backup_conf" >>"$FOUND_REAL_NGINX_CONF"; then
  2550. cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF"
  2551. _err "write nginx conf error, but don't worry, the file is restored."
  2552. return 1
  2553. fi
  2554. _debug3 "Modified config:$(cat $FOUND_REAL_NGINX_CONF)"
  2555. _info "nginx conf is done, let's check it again."
  2556. if ! _exec "nginx -t" >/dev/null; then
  2557. _exec_err
  2558. _err "It seems that nginx conf was broken, let's restore."
  2559. cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF"
  2560. return 1
  2561. fi
  2562. _info "Reload nginx"
  2563. if ! _exec "nginx -s reload" >/dev/null; then
  2564. _exec_err
  2565. _err "It seems that nginx reload error, let's restore."
  2566. cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF"
  2567. return 1
  2568. fi
  2569. return 0
  2570. }
  2571. #d , conf
  2572. _checkConf() {
  2573. _d="$1"
  2574. _c_file="$2"
  2575. _debug "Start _checkConf from:$_c_file"
  2576. if [ ! -f "$2" ] && ! echo "$2" | grep '*$' >/dev/null && echo "$2" | grep '*' >/dev/null; then
  2577. _debug "wildcard"
  2578. for _w_f in $2; do
  2579. if [ -f "$_w_f" ] && _checkConf "$1" "$_w_f"; then
  2580. return 0
  2581. fi
  2582. done
  2583. #not found
  2584. return 1
  2585. elif [ -f "$2" ]; then
  2586. _debug "single"
  2587. if _isRealNginxConf "$1" "$2"; then
  2588. _debug "$2 is found."
  2589. FOUND_REAL_NGINX_CONF="$2"
  2590. return 0
  2591. fi
  2592. if cat "$2" | tr "\t" " " | grep "^ *include *.*;" >/dev/null; then
  2593. _debug "Try include files"
  2594. for included in $(cat "$2" | tr "\t" " " | grep "^ *include *.*;" | sed "s/include //" | tr -d " ;"); do
  2595. _debug "check included $included"
  2596. if _checkConf "$1" "$included"; then
  2597. return 0
  2598. fi
  2599. done
  2600. fi
  2601. return 1
  2602. else
  2603. _debug "$2 not found."
  2604. return 1
  2605. fi
  2606. return 1
  2607. }
  2608. #d , conf
  2609. _isRealNginxConf() {
  2610. _debug "_isRealNginxConf $1 $2"
  2611. if [ -f "$2" ]; then
  2612. for _fln in $(tr "\t" ' ' <"$2" | grep -n "^ *server_name.* $1" | cut -d : -f 1); do
  2613. _debug _fln "$_fln"
  2614. if [ "$_fln" ]; then
  2615. _start=$(tr "\t" ' ' <"$2" | _head_n "$_fln" | grep -n "^ *server *" | grep -v server_name | _tail_n 1)
  2616. _debug "_start" "$_start"
  2617. _start_n=$(echo "$_start" | cut -d : -f 1)
  2618. _start_nn=$(_math $_start_n + 1)
  2619. _debug "_start_n" "$_start_n"
  2620. _debug "_start_nn" "$_start_nn"
  2621. _left="$(sed -n "${_start_nn},99999p" "$2")"
  2622. _debug2 _left "$_left"
  2623. _end="$(echo "$_left" | tr "\t" ' ' | grep -n "^ *server *" | grep -v server_name | _head_n 1)"
  2624. _debug "_end" "$_end"
  2625. if [ "$_end" ]; then
  2626. _end_n=$(echo "$_end" | cut -d : -f 1)
  2627. _debug "_end_n" "$_end_n"
  2628. _seg_n=$(echo "$_left" | sed -n "1,${_end_n}p")
  2629. else
  2630. _seg_n="$_left"
  2631. fi
  2632. _debug "_seg_n" "$_seg_n"
  2633. _skip_ssl=1
  2634. for _listen_i in $(echo "$_seg_n" | tr "\t" ' ' | grep "^ *listen" | tr -d " "); do
  2635. if [ "$_listen_i" ]; then
  2636. if [ "$(echo "$_listen_i" | _egrep_o "listen.*ssl")" ]; then
  2637. _debug2 "$_listen_i is ssl"
  2638. else
  2639. _debug2 "$_listen_i is plain text"
  2640. _skip_ssl=""
  2641. break
  2642. fi
  2643. fi
  2644. done
  2645. if [ "$_skip_ssl" = "1" ]; then
  2646. _debug "ssl on, skip"
  2647. else
  2648. FOUND_REAL_NGINX_CONF_LN=$_fln
  2649. _debug3 "found FOUND_REAL_NGINX_CONF_LN" "$FOUND_REAL_NGINX_CONF_LN"
  2650. return 0
  2651. fi
  2652. fi
  2653. done
  2654. fi
  2655. return 1
  2656. }
  2657. #restore all the nginx conf
  2658. _restoreNginx() {
  2659. if [ -z "$NGINX_RESTORE_VLIST" ]; then
  2660. _debug "No need to restore nginx, skip."
  2661. return
  2662. fi
  2663. _debug "_restoreNginx"
  2664. _debug "NGINX_RESTORE_VLIST" "$NGINX_RESTORE_VLIST"
  2665. for ng_entry in $(echo "$NGINX_RESTORE_VLIST" | tr "$dvsep" ' '); do
  2666. _debug "ng_entry" "$ng_entry"
  2667. _nd=$(echo "$ng_entry" | cut -d "$sep" -f 1)
  2668. _ngconf=$(echo "$ng_entry" | cut -d "$sep" -f 2)
  2669. _ngbackupconf=$(echo "$ng_entry" | cut -d "$sep" -f 3)
  2670. _info "Restoring from $_ngbackupconf to $_ngconf"
  2671. cat "$_ngbackupconf" >"$_ngconf"
  2672. done
  2673. _info "Reload nginx"
  2674. if ! _exec "nginx -s reload" >/dev/null; then
  2675. _exec_err
  2676. _err "It seems that nginx reload error, please report bug."
  2677. return 1
  2678. fi
  2679. return 0
  2680. }
  2681. _clearup() {
  2682. _stopserver "$serverproc"
  2683. serverproc=""
  2684. _restoreApache
  2685. _restoreNginx
  2686. _clearupdns
  2687. if [ -z "$DEBUG" ]; then
  2688. rm -f "$TLS_CONF"
  2689. rm -f "$TLS_CERT"
  2690. rm -f "$TLS_KEY"
  2691. rm -f "$TLS_CSR"
  2692. fi
  2693. }
  2694. _clearupdns() {
  2695. _debug "_clearupdns"
  2696. _debug "dns_entries" "$dns_entries"
  2697. if [ -z "$dns_entries" ]; then
  2698. _debug "skip dns."
  2699. return
  2700. fi
  2701. _info "Removing DNS records."
  2702. for entry in $dns_entries; do
  2703. d=$(_getfield "$entry" 1)
  2704. txtdomain=$(_getfield "$entry" 2)
  2705. aliasDomain=$(_getfield "$entry" 3)
  2706. _currentRoot=$(_getfield "$entry" 4)
  2707. txt=$(_getfield "$entry" 5)
  2708. d_api=$(_getfield "$entry" 6)
  2709. _debug "d" "$d"
  2710. _debug "txtdomain" "$txtdomain"
  2711. _debug "aliasDomain" "$aliasDomain"
  2712. _debug "_currentRoot" "$_currentRoot"
  2713. _debug "txt" "$txt"
  2714. _debug "d_api" "$d_api"
  2715. if [ "$d_api" = "$txt" ]; then
  2716. d_api=""
  2717. fi
  2718. if [ -z "$d_api" ]; then
  2719. _info "Not Found domain api file: $d_api"
  2720. continue
  2721. fi
  2722. if [ "$aliasDomain" ]; then
  2723. txtdomain="$aliasDomain"
  2724. fi
  2725. (
  2726. if ! . "$d_api"; then
  2727. _err "Load file $d_api error. Please check your api file and try again."
  2728. return 1
  2729. fi
  2730. rmcommand="${_currentRoot}_rm"
  2731. if ! _exists "$rmcommand"; then
  2732. _err "It seems that your api file doesn't define $rmcommand"
  2733. return 1
  2734. fi
  2735. _info "Removing txt: $txt for domain: $txtdomain"
  2736. if ! $rmcommand "$txtdomain" "$txt"; then
  2737. _err "Error removing txt for domain:$txtdomain"
  2738. return 1
  2739. fi
  2740. _info "Removed: Success"
  2741. )
  2742. done
  2743. }
  2744. # webroot removelevel tokenfile
  2745. _clearupwebbroot() {
  2746. __webroot="$1"
  2747. if [ -z "$__webroot" ]; then
  2748. _debug "no webroot specified, skip"
  2749. return 0
  2750. fi
  2751. _rmpath=""
  2752. if [ "$2" = '1' ]; then
  2753. _rmpath="$__webroot/.well-known"
  2754. elif [ "$2" = '2' ]; then
  2755. _rmpath="$__webroot/.well-known/acme-challenge"
  2756. elif [ "$2" = '3' ]; then
  2757. _rmpath="$__webroot/.well-known/acme-challenge/$3"
  2758. else
  2759. _debug "Skip for removelevel:$2"
  2760. fi
  2761. if [ "$_rmpath" ]; then
  2762. if [ "$DEBUG" ]; then
  2763. _debug "Debugging, skip removing: $_rmpath"
  2764. else
  2765. rm -rf "$_rmpath"
  2766. fi
  2767. fi
  2768. return 0
  2769. }
  2770. _on_before_issue() {
  2771. _chk_web_roots="$1"
  2772. _chk_main_domain="$2"
  2773. _chk_alt_domains="$3"
  2774. _chk_pre_hook="$4"
  2775. _chk_local_addr="$5"
  2776. _debug _on_before_issue
  2777. _debug _chk_main_domain "$_chk_main_domain"
  2778. _debug _chk_alt_domains "$_chk_alt_domains"
  2779. #run pre hook
  2780. if [ "$_chk_pre_hook" ]; then
  2781. _info "Run pre hook:'$_chk_pre_hook'"
  2782. if ! (
  2783. cd "$DOMAIN_PATH" && eval "$_chk_pre_hook"
  2784. ); then
  2785. _err "Error when run pre hook."
  2786. return 1
  2787. fi
  2788. fi
  2789. if _hasfield "$_chk_web_roots" "$NO_VALUE"; then
  2790. if ! _exists "socat"; then
  2791. _err "Please install socat tools first."
  2792. return 1
  2793. fi
  2794. fi
  2795. _debug Le_LocalAddress "$_chk_local_addr"
  2796. _index=1
  2797. _currentRoot=""
  2798. _addrIndex=1
  2799. _w_index=1
  2800. while true; do
  2801. d="$(echo "$_chk_main_domain,$_chk_alt_domains," | cut -d , -f "$_w_index")"
  2802. _w_index="$(_math "$_w_index" + 1)"
  2803. _debug d "$d"
  2804. if [ -z "$d" ]; then
  2805. break
  2806. fi
  2807. _debug "Check for domain" "$d"
  2808. _currentRoot="$(_getfield "$_chk_web_roots" $_index)"
  2809. _debug "_currentRoot" "$_currentRoot"
  2810. _index=$(_math $_index + 1)
  2811. _checkport=""
  2812. if [ "$_currentRoot" = "$NO_VALUE" ]; then
  2813. _info "Standalone mode."
  2814. if [ -z "$Le_HTTPPort" ]; then
  2815. Le_HTTPPort=80
  2816. _cleardomainconf "Le_HTTPPort"
  2817. else
  2818. _savedomainconf "Le_HTTPPort" "$Le_HTTPPort"
  2819. fi
  2820. _checkport="$Le_HTTPPort"
  2821. elif [ "$_currentRoot" = "$W_ALPN" ]; then
  2822. _info "Standalone alpn mode."
  2823. if [ -z "$Le_TLSPort" ]; then
  2824. Le_TLSPort=443
  2825. else
  2826. _savedomainconf "Le_TLSPort" "$Le_TLSPort"
  2827. fi
  2828. _checkport="$Le_TLSPort"
  2829. fi
  2830. if [ "$_checkport" ]; then
  2831. _debug _checkport "$_checkport"
  2832. _checkaddr="$(_getfield "$_chk_local_addr" $_addrIndex)"
  2833. _debug _checkaddr "$_checkaddr"
  2834. _addrIndex="$(_math $_addrIndex + 1)"
  2835. _netprc="$(_ss "$_checkport" | grep "$_checkport")"
  2836. netprc="$(echo "$_netprc" | grep "$_checkaddr")"
  2837. if [ -z "$netprc" ]; then
  2838. netprc="$(echo "$_netprc" | grep "$LOCAL_ANY_ADDRESS")"
  2839. fi
  2840. if [ "$netprc" ]; then
  2841. _err "$netprc"
  2842. _err "tcp port $_checkport is already used by $(echo "$netprc" | cut -d : -f 4)"
  2843. _err "Please stop it first"
  2844. return 1
  2845. fi
  2846. fi
  2847. done
  2848. if _hasfield "$_chk_web_roots" "apache"; then
  2849. if ! _setApache; then
  2850. _err "set up apache error. Report error to me."
  2851. return 1
  2852. fi
  2853. else
  2854. usingApache=""
  2855. fi
  2856. }
  2857. _on_issue_err() {
  2858. _chk_post_hook="$1"
  2859. _chk_vlist="$2"
  2860. _debug _on_issue_err
  2861. if [ "$LOG_FILE" ]; then
  2862. _err "Please check log file for more details: $LOG_FILE"
  2863. else
  2864. _err "Please add '--debug' or '--log' to check more details."
  2865. _err "See: $_DEBUG_WIKI"
  2866. fi
  2867. #run the post hook
  2868. if [ "$_chk_post_hook" ]; then
  2869. _info "Run post hook:'$_chk_post_hook'"
  2870. if ! (
  2871. cd "$DOMAIN_PATH" && eval "$_chk_post_hook"
  2872. ); then
  2873. _err "Error when run post hook."
  2874. return 1
  2875. fi
  2876. fi
  2877. #trigger the validation to flush the pending authz
  2878. _debug2 "_chk_vlist" "$_chk_vlist"
  2879. if [ "$_chk_vlist" ]; then
  2880. (
  2881. _debug2 "start to deactivate authz"
  2882. ventries=$(echo "$_chk_vlist" | tr "$dvsep" ' ')
  2883. for ventry in $ventries; do
  2884. d=$(echo "$ventry" | cut -d "$sep" -f 1)
  2885. keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2)
  2886. uri=$(echo "$ventry" | cut -d "$sep" -f 3)
  2887. vtype=$(echo "$ventry" | cut -d "$sep" -f 4)
  2888. _currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5)
  2889. __trigger_validation "$uri" "$keyauthorization"
  2890. done
  2891. )
  2892. fi
  2893. if [ "$IS_RENEW" = "1" ] && _hasfield "$Le_Webroot" "$W_DNS"; then
  2894. _err "$_DNS_MANUAL_ERR"
  2895. fi
  2896. if [ "$DEBUG" ] && [ "$DEBUG" -gt "0" ]; then
  2897. _debug "$(_dlg_versions)"
  2898. fi
  2899. }
  2900. _on_issue_success() {
  2901. _chk_post_hook="$1"
  2902. _chk_renew_hook="$2"
  2903. _debug _on_issue_success
  2904. #run the post hook
  2905. if [ "$_chk_post_hook" ]; then
  2906. _info "Run post hook:'$_chk_post_hook'"
  2907. if ! (
  2908. export CERT_PATH
  2909. export CERT_KEY_PATH
  2910. export CA_CERT_PATH
  2911. export CERT_FULLCHAIN_PATH
  2912. export Le_Domain="$_main_domain"
  2913. cd "$DOMAIN_PATH" && eval "$_chk_post_hook"
  2914. ); then
  2915. _err "Error when run post hook."
  2916. return 1
  2917. fi
  2918. fi
  2919. #run renew hook
  2920. if [ "$IS_RENEW" ] && [ "$_chk_renew_hook" ]; then
  2921. _info "Run renew hook:'$_chk_renew_hook'"
  2922. if ! (
  2923. export CERT_PATH
  2924. export CERT_KEY_PATH
  2925. export CA_CERT_PATH
  2926. export CERT_FULLCHAIN_PATH
  2927. export Le_Domain="$_main_domain"
  2928. cd "$DOMAIN_PATH" && eval "$_chk_renew_hook"
  2929. ); then
  2930. _err "Error when run renew hook."
  2931. return 1
  2932. fi
  2933. fi
  2934. if _hasfield "$Le_Webroot" "$W_DNS" && [ -z "$FORCE_DNS_MANUAL" ]; then
  2935. _err "$_DNS_MANUAL_WARN"
  2936. fi
  2937. }
  2938. registeraccount() {
  2939. _reg_length="$1"
  2940. _initpath
  2941. _regAccount "$_reg_length"
  2942. }
  2943. __calcAccountKeyHash() {
  2944. [ -f "$ACCOUNT_KEY_PATH" ] && _digest sha256 <"$ACCOUNT_KEY_PATH"
  2945. }
  2946. __calc_account_thumbprint() {
  2947. printf "%s" "$jwk" | tr -d ' ' | _digest "sha256" | _url_replace
  2948. }
  2949. #keylength
  2950. _regAccount() {
  2951. _initpath
  2952. _reg_length="$1"
  2953. _debug3 _regAccount "$_regAccount"
  2954. _initAPI
  2955. mkdir -p "$CA_DIR"
  2956. if [ ! -f "$ACCOUNT_KEY_PATH" ] && [ -f "$_OLD_ACCOUNT_KEY" ]; then
  2957. _info "mv $_OLD_ACCOUNT_KEY to $ACCOUNT_KEY_PATH"
  2958. mv "$_OLD_ACCOUNT_KEY" "$ACCOUNT_KEY_PATH"
  2959. fi
  2960. if [ ! -f "$ACCOUNT_JSON_PATH" ] && [ -f "$_OLD_ACCOUNT_JSON" ]; then
  2961. _info "mv $_OLD_ACCOUNT_JSON to $ACCOUNT_JSON_PATH"
  2962. mv "$_OLD_ACCOUNT_JSON" "$ACCOUNT_JSON_PATH"
  2963. fi
  2964. if [ ! -f "$ACCOUNT_KEY_PATH" ]; then
  2965. if ! _create_account_key "$_reg_length"; then
  2966. _err "Create account key error."
  2967. return 1
  2968. fi
  2969. fi
  2970. if ! _calcjwk "$ACCOUNT_KEY_PATH"; then
  2971. return 1
  2972. fi
  2973. if [ "$ACME_VERSION" = "2" ]; then
  2974. regjson='{"termsOfServiceAgreed": true}'
  2975. if [ "$ACCOUNT_EMAIL" ]; then
  2976. regjson='{"contact": ["mailto: '$ACCOUNT_EMAIL'"], "termsOfServiceAgreed": true}'
  2977. fi
  2978. else
  2979. _reg_res="$ACME_NEW_ACCOUNT_RES"
  2980. regjson='{"resource": "'$_reg_res'", "terms-of-service-agreed": true, "agreement": "'$ACME_AGREEMENT'"}'
  2981. if [ "$ACCOUNT_EMAIL" ]; then
  2982. regjson='{"resource": "'$_reg_res'", "contact": ["mailto: '$ACCOUNT_EMAIL'"], "terms-of-service-agreed": true, "agreement": "'$ACME_AGREEMENT'"}'
  2983. fi
  2984. fi
  2985. _info "Registering account"
  2986. if ! _send_signed_request "${ACME_NEW_ACCOUNT}" "$regjson"; then
  2987. _err "Register account Error: $response"
  2988. return 1
  2989. fi
  2990. if [ "$code" = "" ] || [ "$code" = '201' ]; then
  2991. echo "$response" >"$ACCOUNT_JSON_PATH"
  2992. _info "Registered"
  2993. elif [ "$code" = '409' ] || [ "$code" = '200' ]; then
  2994. _info "Already registered"
  2995. else
  2996. _err "Register account Error: $response"
  2997. return 1
  2998. fi
  2999. _debug2 responseHeaders "$responseHeaders"
  3000. _accUri="$(echo "$responseHeaders" | grep -i "^Location:" | _head_n 1 | cut -d ':' -f 2- | tr -d "\r\n ")"
  3001. _debug "_accUri" "$_accUri"
  3002. if [ -z "$_accUri" ]; then
  3003. _err "Can not find account id url."
  3004. _err "$responseHeaders"
  3005. return 1
  3006. fi
  3007. _savecaconf "ACCOUNT_URL" "$_accUri"
  3008. export ACCOUNT_URL="$_accUri"
  3009. CA_KEY_HASH="$(__calcAccountKeyHash)"
  3010. _debug "Calc CA_KEY_HASH" "$CA_KEY_HASH"
  3011. _savecaconf CA_KEY_HASH "$CA_KEY_HASH"
  3012. if [ "$code" = '403' ]; then
  3013. _err "It seems that the account key is already deactivated, please use a new account key."
  3014. return 1
  3015. fi
  3016. ACCOUNT_THUMBPRINT="$(__calc_account_thumbprint)"
  3017. _info "ACCOUNT_THUMBPRINT" "$ACCOUNT_THUMBPRINT"
  3018. }
  3019. #implement updateaccount
  3020. updateaccount() {
  3021. _initpath
  3022. if [ ! -f "$ACCOUNT_KEY_PATH" ] && [ -f "$_OLD_ACCOUNT_KEY" ]; then
  3023. _info "mv $_OLD_ACCOUNT_KEY to $ACCOUNT_KEY_PATH"
  3024. mv "$_OLD_ACCOUNT_KEY" "$ACCOUNT_KEY_PATH"
  3025. fi
  3026. if [ ! -f "$ACCOUNT_JSON_PATH" ] && [ -f "$_OLD_ACCOUNT_JSON" ]; then
  3027. _info "mv $_OLD_ACCOUNT_JSON to $ACCOUNT_JSON_PATH"
  3028. mv "$_OLD_ACCOUNT_JSON" "$ACCOUNT_JSON_PATH"
  3029. fi
  3030. if [ ! -f "$ACCOUNT_KEY_PATH" ]; then
  3031. _err "Account key is not found at: $ACCOUNT_KEY_PATH"
  3032. return 1
  3033. fi
  3034. _accUri=$(_readcaconf "ACCOUNT_URL")
  3035. _debug _accUri "$_accUri"
  3036. if [ -z "$_accUri" ]; then
  3037. _err "The account url is empty, please run '--update-account' first to update the account info first,"
  3038. _err "Then try again."
  3039. return 1
  3040. fi
  3041. if ! _calcjwk "$ACCOUNT_KEY_PATH"; then
  3042. return 1
  3043. fi
  3044. _initAPI
  3045. if [ "$ACME_VERSION" = "2" ]; then
  3046. if [ "$ACCOUNT_EMAIL" ]; then
  3047. updjson='{"contact": ["mailto: '$ACCOUNT_EMAIL'"]}'
  3048. fi
  3049. else
  3050. # ACMEv1: Updates happen the same way a registration is done.
  3051. # https://tools.ietf.org/html/draft-ietf-acme-acme-01#section-6.3
  3052. _regAccount
  3053. return
  3054. fi
  3055. # this part handles ACMEv2 account updates.
  3056. _send_signed_request "$_accUri" "$updjson"
  3057. if [ "$code" = '200' ]; then
  3058. _info "account update success for $_accUri."
  3059. else
  3060. _info "Error. The account was not updated."
  3061. return 1
  3062. fi
  3063. }
  3064. #Implement deactivate account
  3065. deactivateaccount() {
  3066. _initpath
  3067. if [ ! -f "$ACCOUNT_KEY_PATH" ] && [ -f "$_OLD_ACCOUNT_KEY" ]; then
  3068. _info "mv $_OLD_ACCOUNT_KEY to $ACCOUNT_KEY_PATH"
  3069. mv "$_OLD_ACCOUNT_KEY" "$ACCOUNT_KEY_PATH"
  3070. fi
  3071. if [ ! -f "$ACCOUNT_JSON_PATH" ] && [ -f "$_OLD_ACCOUNT_JSON" ]; then
  3072. _info "mv $_OLD_ACCOUNT_JSON to $ACCOUNT_JSON_PATH"
  3073. mv "$_OLD_ACCOUNT_JSON" "$ACCOUNT_JSON_PATH"
  3074. fi
  3075. if [ ! -f "$ACCOUNT_KEY_PATH" ]; then
  3076. _err "Account key is not found at: $ACCOUNT_KEY_PATH"
  3077. return 1
  3078. fi
  3079. _accUri=$(_readcaconf "ACCOUNT_URL")
  3080. _debug _accUri "$_accUri"
  3081. if [ -z "$_accUri" ]; then
  3082. _err "The account url is empty, please run '--update-account' first to update the account info first,"
  3083. _err "Then try again."
  3084. return 1
  3085. fi
  3086. if ! _calcjwk "$ACCOUNT_KEY_PATH"; then
  3087. return 1
  3088. fi
  3089. _initAPI
  3090. if [ "$ACME_VERSION" = "2" ]; then
  3091. _djson="{\"status\":\"deactivated\"}"
  3092. else
  3093. _djson="{\"resource\": \"reg\", \"status\":\"deactivated\"}"
  3094. fi
  3095. if _send_signed_request "$_accUri" "$_djson" && _contains "$response" '"deactivated"'; then
  3096. _info "Deactivate account success for $_accUri."
  3097. _accid=$(echo "$response" | _egrep_o "\"id\" *: *[^,]*," | cut -d : -f 2 | tr -d ' ,')
  3098. elif [ "$code" = "403" ]; then
  3099. _info "The account is already deactivated."
  3100. _accid=$(_getfield "$_accUri" "999" "/")
  3101. else
  3102. _err "Deactivate: account failed for $_accUri."
  3103. return 1
  3104. fi
  3105. _debug "Account id: $_accid"
  3106. if [ "$_accid" ]; then
  3107. _deactivated_account_path="$CA_DIR/deactivated/$_accid"
  3108. _debug _deactivated_account_path "$_deactivated_account_path"
  3109. if mkdir -p "$_deactivated_account_path"; then
  3110. _info "Moving deactivated account info to $_deactivated_account_path/"
  3111. mv "$CA_CONF" "$_deactivated_account_path/"
  3112. mv "$ACCOUNT_JSON_PATH" "$_deactivated_account_path/"
  3113. mv "$ACCOUNT_KEY_PATH" "$_deactivated_account_path/"
  3114. else
  3115. _err "Can not create dir: $_deactivated_account_path, try to remove the deactivated account key."
  3116. rm -f "$CA_CONF"
  3117. rm -f "$ACCOUNT_JSON_PATH"
  3118. rm -f "$ACCOUNT_KEY_PATH"
  3119. fi
  3120. fi
  3121. }
  3122. # domain folder file
  3123. _findHook() {
  3124. _hookdomain="$1"
  3125. _hookcat="$2"
  3126. _hookname="$3"
  3127. if [ -f "$_SCRIPT_HOME/$_hookcat/$_hookname" ]; then
  3128. d_api="$_SCRIPT_HOME/$_hookcat/$_hookname"
  3129. elif [ -f "$_SCRIPT_HOME/$_hookcat/$_hookname.sh" ]; then
  3130. d_api="$_SCRIPT_HOME/$_hookcat/$_hookname.sh"
  3131. elif [ "$_hookdomain" ] && [ -f "$LE_WORKING_DIR/$_hookdomain/$_hookname" ]; then
  3132. d_api="$LE_WORKING_DIR/$_hookdomain/$_hookname"
  3133. elif [ "$_hookdomain" ] && [ -f "$LE_WORKING_DIR/$_hookdomain/$_hookname.sh" ]; then
  3134. d_api="$LE_WORKING_DIR/$_hookdomain/$_hookname.sh"
  3135. elif [ -f "$LE_WORKING_DIR/$_hookname" ]; then
  3136. d_api="$LE_WORKING_DIR/$_hookname"
  3137. elif [ -f "$LE_WORKING_DIR/$_hookname.sh" ]; then
  3138. d_api="$LE_WORKING_DIR/$_hookname.sh"
  3139. elif [ -f "$LE_WORKING_DIR/$_hookcat/$_hookname" ]; then
  3140. d_api="$LE_WORKING_DIR/$_hookcat/$_hookname"
  3141. elif [ -f "$LE_WORKING_DIR/$_hookcat/$_hookname.sh" ]; then
  3142. d_api="$LE_WORKING_DIR/$_hookcat/$_hookname.sh"
  3143. fi
  3144. printf "%s" "$d_api"
  3145. }
  3146. #domain
  3147. __get_domain_new_authz() {
  3148. _gdnd="$1"
  3149. _info "Getting new-authz for domain" "$_gdnd"
  3150. _initAPI
  3151. _Max_new_authz_retry_times=5
  3152. _authz_i=0
  3153. while [ "$_authz_i" -lt "$_Max_new_authz_retry_times" ]; do
  3154. _debug "Try new-authz for the $_authz_i time."
  3155. if ! _send_signed_request "${ACME_NEW_AUTHZ}" "{\"resource\": \"new-authz\", \"identifier\": {\"type\": \"dns\", \"value\": \"$(_idn "$_gdnd")\"}}"; then
  3156. _err "Can not get domain new authz."
  3157. return 1
  3158. fi
  3159. if _contains "$response" "No registration exists matching provided key"; then
  3160. _err "It seems there is an error, but it's recovered now, please try again."
  3161. _err "If you see this message for a second time, please report bug: $(__green "$PROJECT")"
  3162. _clearcaconf "CA_KEY_HASH"
  3163. break
  3164. fi
  3165. if ! _contains "$response" "An error occurred while processing your request"; then
  3166. _info "The new-authz request is ok."
  3167. break
  3168. fi
  3169. _authz_i="$(_math "$_authz_i" + 1)"
  3170. _info "The server is busy, Sleep $_authz_i to retry."
  3171. _sleep "$_authz_i"
  3172. done
  3173. if [ "$_authz_i" = "$_Max_new_authz_retry_times" ]; then
  3174. _err "new-authz retry reach the max $_Max_new_authz_retry_times times."
  3175. fi
  3176. if [ "$code" ] && [ "$code" != '201' ]; then
  3177. _err "new-authz error: $response"
  3178. return 1
  3179. fi
  3180. }
  3181. #uri keyAuthorization
  3182. __trigger_validation() {
  3183. _debug2 "Trigger domain validation."
  3184. _t_url="$1"
  3185. _debug2 _t_url "$_t_url"
  3186. _t_key_authz="$2"
  3187. _debug2 _t_key_authz "$_t_key_authz"
  3188. _t_vtype="$3"
  3189. _debug2 _t_vtype "$_t_vtype"
  3190. if [ "$ACME_VERSION" = "2" ]; then
  3191. _send_signed_request "$_t_url" "{}"
  3192. else
  3193. _send_signed_request "$_t_url" "{\"resource\": \"challenge\", \"type\": \"$_t_vtype\", \"keyAuthorization\": \"$_t_key_authz\"}"
  3194. fi
  3195. }
  3196. #endpoint domain type
  3197. _ns_lookup_impl() {
  3198. _ns_ep="$1"
  3199. _ns_domain="$2"
  3200. _ns_type="$3"
  3201. _debug2 "_ns_ep" "$_ns_ep"
  3202. _debug2 "_ns_domain" "$_ns_domain"
  3203. _debug2 "_ns_type" "$_ns_type"
  3204. response="$(_H1="accept: application/dns-json" _get "$_ns_ep?name=$_ns_domain&type=$_ns_type")"
  3205. _ret=$?
  3206. _debug2 "response" "$response"
  3207. if [ "$_ret" != "0" ]; then
  3208. return $_ret
  3209. fi
  3210. _answers="$(echo "$response" | tr '{}' '<>' | _egrep_o '"Answer":\[[^]]*]' | tr '<>' '\n\n')"
  3211. _debug2 "_answers" "$_answers"
  3212. echo "$_answers"
  3213. }
  3214. #domain, type
  3215. _ns_lookup_cf() {
  3216. _cf_ld="$1"
  3217. _cf_ld_type="$2"
  3218. _cf_ep="https://cloudflare-dns.com/dns-query"
  3219. _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type"
  3220. }
  3221. #domain, type
  3222. _ns_purge_cf() {
  3223. _cf_d="$1"
  3224. _cf_d_type="$2"
  3225. _debug "Cloudflare purge $_cf_d_type record for domain $_cf_d"
  3226. _cf_purl="https://cloudflare-dns.com/api/v1/purge?domain=$_cf_d&type=$_cf_d_type"
  3227. response="$(_post "" "$_cf_purl")"
  3228. _debug2 response "$response"
  3229. }
  3230. #checks if cf server is available
  3231. _ns_is_available_cf() {
  3232. if _get "https://cloudflare-dns.com" >/dev/null 2>&1; then
  3233. return 0
  3234. else
  3235. return 1
  3236. fi
  3237. }
  3238. #domain, type
  3239. _ns_lookup_google() {
  3240. _cf_ld="$1"
  3241. _cf_ld_type="$2"
  3242. _cf_ep="https://dns.google/resolve"
  3243. _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type"
  3244. }
  3245. #domain, type
  3246. _ns_lookup() {
  3247. if [ -z "$DOH_USE" ]; then
  3248. _debug "Detect dns server first."
  3249. if _ns_is_available_cf; then
  3250. _debug "Use cloudflare doh server"
  3251. export DOH_USE=$DOH_CLOUDFLARE
  3252. else
  3253. _debug "Use google doh server"
  3254. export DOH_USE=$DOH_GOOGLE
  3255. fi
  3256. fi
  3257. if [ "$DOH_USE" = "$DOH_CLOUDFLARE" ] || [ -z "$DOH_USE" ]; then
  3258. _ns_lookup_cf "$@"
  3259. else
  3260. _ns_lookup_google "$@"
  3261. fi
  3262. }
  3263. #txtdomain, alias, txt
  3264. __check_txt() {
  3265. _c_txtdomain="$1"
  3266. _c_aliasdomain="$2"
  3267. _c_txt="$3"
  3268. _debug "_c_txtdomain" "$_c_txtdomain"
  3269. _debug "_c_aliasdomain" "$_c_aliasdomain"
  3270. _debug "_c_txt" "$_c_txt"
  3271. _answers="$(_ns_lookup "$_c_aliasdomain" TXT)"
  3272. _contains "$_answers" "$_c_txt"
  3273. }
  3274. #txtdomain
  3275. __purge_txt() {
  3276. _p_txtdomain="$1"
  3277. _debug _p_txtdomain "$_p_txtdomain"
  3278. if [ "$DOH_USE" = "$DOH_CLOUDFLARE" ] || [ -z "$DOH_USE" ]; then
  3279. _ns_purge_cf "$_p_txtdomain" "TXT"
  3280. else
  3281. _debug "no purge api for google dns api, just sleep 5 secs"
  3282. _sleep 5
  3283. fi
  3284. }
  3285. #wait and check each dns entries
  3286. _check_dns_entries() {
  3287. _success_txt=","
  3288. _end_time="$(_time)"
  3289. _end_time="$(_math "$_end_time" + 1200)" #let's check no more than 20 minutes.
  3290. while [ "$(_time)" -le "$_end_time" ]; do
  3291. _left=""
  3292. for entry in $dns_entries; do
  3293. d=$(_getfield "$entry" 1)
  3294. txtdomain=$(_getfield "$entry" 2)
  3295. txtdomain=$(_idn "$txtdomain")
  3296. aliasDomain=$(_getfield "$entry" 3)
  3297. aliasDomain=$(_idn "$aliasDomain")
  3298. txt=$(_getfield "$entry" 5)
  3299. d_api=$(_getfield "$entry" 6)
  3300. _debug "d" "$d"
  3301. _debug "txtdomain" "$txtdomain"
  3302. _debug "aliasDomain" "$aliasDomain"
  3303. _debug "txt" "$txt"
  3304. _debug "d_api" "$d_api"
  3305. _info "Checking $d for $aliasDomain"
  3306. if _contains "$_success_txt" ",$txt,"; then
  3307. _info "Already success, continue next one."
  3308. continue
  3309. fi
  3310. if __check_txt "$txtdomain" "$aliasDomain" "$txt"; then
  3311. _info "Domain $d '$aliasDomain' success."
  3312. _success_txt="$_success_txt,$txt,"
  3313. continue
  3314. fi
  3315. _left=1
  3316. _info "Not valid yet, let's wait 10 seconds and check next one."
  3317. __purge_txt "$txtdomain"
  3318. if [ "$txtdomain" != "$aliasDomain" ]; then
  3319. __purge_txt "$aliasDomain"
  3320. fi
  3321. _sleep 10
  3322. done
  3323. if [ "$_left" ]; then
  3324. _info "Let's wait 10 seconds and check again".
  3325. _sleep 10
  3326. else
  3327. _info "All success, let's return"
  3328. return 0
  3329. fi
  3330. done
  3331. _info "Timed out waiting for DNS."
  3332. return 1
  3333. }
  3334. #webroot, domain domainlist keylength
  3335. issue() {
  3336. if [ -z "$2" ]; then
  3337. _usage "Usage: $PROJECT_ENTRY --issue -d a.com -w /path/to/webroot/a.com/ "
  3338. return 1
  3339. fi
  3340. if [ -z "$1" ]; then
  3341. _usage "Please specify at least one validation method: '--webroot', '--standalone', '--apache', '--nginx' or '--dns' etc."
  3342. return 1
  3343. fi
  3344. _web_roots="$1"
  3345. _main_domain="$2"
  3346. _alt_domains="$3"
  3347. if _contains "$_main_domain" ","; then
  3348. _main_domain=$(echo "$2,$3" | cut -d , -f 1)
  3349. _alt_domains=$(echo "$2,$3" | cut -d , -f 2- | sed "s/,${NO_VALUE}$//")
  3350. fi
  3351. _debug _main_domain "$_main_domain"
  3352. _debug _alt_domains "$_alt_domains"
  3353. _key_length="$4"
  3354. _real_cert="$5"
  3355. _real_key="$6"
  3356. _real_ca="$7"
  3357. _reload_cmd="$8"
  3358. _real_fullchain="$9"
  3359. _pre_hook="${10}"
  3360. _post_hook="${11}"
  3361. _renew_hook="${12}"
  3362. _local_addr="${13}"
  3363. _challenge_alias="${14}"
  3364. #remove these later.
  3365. if [ "$_web_roots" = "dns-cf" ]; then
  3366. _web_roots="dns_cf"
  3367. fi
  3368. if [ "$_web_roots" = "dns-dp" ]; then
  3369. _web_roots="dns_dp"
  3370. fi
  3371. if [ "$_web_roots" = "dns-cx" ]; then
  3372. _web_roots="dns_cx"
  3373. fi
  3374. if [ ! "$IS_RENEW" ]; then
  3375. _initpath "$_main_domain" "$_key_length"
  3376. mkdir -p "$DOMAIN_PATH"
  3377. fi
  3378. if _hasfield "$_web_roots" "$W_DNS" && [ -z "$FORCE_DNS_MANUAL" ]; then
  3379. _err "$_DNS_MANUAL_ERROR"
  3380. return 1
  3381. fi
  3382. _debug "Using ACME_DIRECTORY: $ACME_DIRECTORY"
  3383. _initAPI
  3384. if [ -f "$DOMAIN_CONF" ]; then
  3385. Le_NextRenewTime=$(_readdomainconf Le_NextRenewTime)
  3386. _debug Le_NextRenewTime "$Le_NextRenewTime"
  3387. if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(_time)" -lt "$Le_NextRenewTime" ]; then
  3388. _saved_domain=$(_readdomainconf Le_Domain)
  3389. _debug _saved_domain "$_saved_domain"
  3390. _saved_alt=$(_readdomainconf Le_Alt)
  3391. _debug _saved_alt "$_saved_alt"
  3392. if [ "$_saved_domain,$_saved_alt" = "$_main_domain,$_alt_domains" ]; then
  3393. _info "Domains not changed."
  3394. _info "Skip, Next renewal time is: $(__green "$(_readdomainconf Le_NextRenewTimeStr)")"
  3395. _info "Add '$(__red '--force')' to force to renew."
  3396. return $RENEW_SKIP
  3397. else
  3398. _info "Domains have changed."
  3399. fi
  3400. fi
  3401. fi
  3402. _savedomainconf "Le_Domain" "$_main_domain"
  3403. _savedomainconf "Le_Alt" "$_alt_domains"
  3404. _savedomainconf "Le_Webroot" "$_web_roots"
  3405. _savedomainconf "Le_PreHook" "$_pre_hook" "base64"
  3406. _savedomainconf "Le_PostHook" "$_post_hook" "base64"
  3407. _savedomainconf "Le_RenewHook" "$_renew_hook" "base64"
  3408. if [ "$_local_addr" ]; then
  3409. _savedomainconf "Le_LocalAddress" "$_local_addr"
  3410. else
  3411. _cleardomainconf "Le_LocalAddress"
  3412. fi
  3413. if [ "$_challenge_alias" ]; then
  3414. _savedomainconf "Le_ChallengeAlias" "$_challenge_alias"
  3415. else
  3416. _cleardomainconf "Le_ChallengeAlias"
  3417. fi
  3418. if [ "$ACME_DIRECTORY" != "$DEFAULT_CA" ]; then
  3419. Le_API="$ACME_DIRECTORY"
  3420. _savedomainconf "Le_API" "$Le_API"
  3421. else
  3422. _cleardomainconf Le_API
  3423. fi
  3424. if [ "$_alt_domains" = "$NO_VALUE" ]; then
  3425. _alt_domains=""
  3426. fi
  3427. if [ "$_key_length" = "$NO_VALUE" ]; then
  3428. _key_length=""
  3429. fi
  3430. if ! _on_before_issue "$_web_roots" "$_main_domain" "$_alt_domains" "$_pre_hook" "$_local_addr"; then
  3431. _err "_on_before_issue."
  3432. return 1
  3433. fi
  3434. _saved_account_key_hash="$(_readcaconf "CA_KEY_HASH")"
  3435. _debug2 _saved_account_key_hash "$_saved_account_key_hash"
  3436. if [ -z "$ACCOUNT_URL" ] || [ -z "$_saved_account_key_hash" ] || [ "$_saved_account_key_hash" != "$(__calcAccountKeyHash)" ]; then
  3437. if ! _regAccount "$_accountkeylength"; then
  3438. _on_issue_err "$_post_hook"
  3439. return 1
  3440. fi
  3441. else
  3442. _debug "_saved_account_key_hash is not changed, skip register account."
  3443. fi
  3444. if [ -f "$CSR_PATH" ] && [ ! -f "$CERT_KEY_PATH" ]; then
  3445. _info "Signing from existing CSR."
  3446. else
  3447. _key=$(_readdomainconf Le_Keylength)
  3448. _debug "Read key length:$_key"
  3449. if [ ! -f "$CERT_KEY_PATH" ] || [ "$_key_length" != "$_key" ] || [ "$Le_ForceNewDomainKey" = "1" ]; then
  3450. if ! createDomainKey "$_main_domain" "$_key_length"; then
  3451. _err "Create domain key error."
  3452. _clearup
  3453. _on_issue_err "$_post_hook"
  3454. return 1
  3455. fi
  3456. fi
  3457. if ! _createcsr "$_main_domain" "$_alt_domains" "$CERT_KEY_PATH" "$CSR_PATH" "$DOMAIN_SSL_CONF"; then
  3458. _err "Create CSR error."
  3459. _clearup
  3460. _on_issue_err "$_post_hook"
  3461. return 1
  3462. fi
  3463. fi
  3464. _savedomainconf "Le_Keylength" "$_key_length"
  3465. vlist="$Le_Vlist"
  3466. _cleardomainconf "Le_Vlist"
  3467. _info "Getting domain auth token for each domain"
  3468. sep='#'
  3469. dvsep=','
  3470. if [ -z "$vlist" ]; then
  3471. if [ "$ACME_VERSION" = "2" ]; then
  3472. #make new order request
  3473. _identifiers="{\"type\":\"dns\",\"value\":\"$(_idn "$_main_domain")\"}"
  3474. _w_index=1
  3475. while true; do
  3476. d="$(echo "$_alt_domains," | cut -d , -f "$_w_index")"
  3477. _w_index="$(_math "$_w_index" + 1)"
  3478. _debug d "$d"
  3479. if [ -z "$d" ]; then
  3480. break
  3481. fi
  3482. _identifiers="$_identifiers,{\"type\":\"dns\",\"value\":\"$(_idn "$d")\"}"
  3483. done
  3484. _debug2 _identifiers "$_identifiers"
  3485. if ! _send_signed_request "$ACME_NEW_ORDER" "{\"identifiers\": [$_identifiers]}"; then
  3486. _err "Create new order error."
  3487. _clearup
  3488. _on_issue_err "$_post_hook"
  3489. return 1
  3490. fi
  3491. Le_LinkOrder="$(echo "$responseHeaders" | grep -i '^Location.*$' | _tail_n 1 | tr -d "\r\n " | cut -d ":" -f 2-)"
  3492. _debug Le_LinkOrder "$Le_LinkOrder"
  3493. Le_OrderFinalize="$(echo "$response" | _egrep_o '"finalize" *: *"[^"]*"' | cut -d '"' -f 4)"
  3494. _debug Le_OrderFinalize "$Le_OrderFinalize"
  3495. if [ -z "$Le_OrderFinalize" ]; then
  3496. _err "Create new order error. Le_OrderFinalize not found. $response"
  3497. _clearup
  3498. _on_issue_err "$_post_hook"
  3499. return 1
  3500. fi
  3501. #for dns manual mode
  3502. _savedomainconf "Le_OrderFinalize" "$Le_OrderFinalize"
  3503. _authorizations_seg="$(echo "$response" | _egrep_o '"authorizations" *: *\[[^\]*\]' | cut -d '[' -f 2 | tr -d ']' | tr -d '"')"
  3504. _debug2 _authorizations_seg "$_authorizations_seg"
  3505. if [ -z "$_authorizations_seg" ]; then
  3506. _err "_authorizations_seg not found."
  3507. _clearup
  3508. _on_issue_err "$_post_hook"
  3509. return 1
  3510. fi
  3511. #domain and authz map
  3512. _authorizations_map=""
  3513. for _authz_url in $(echo "$_authorizations_seg" | tr ',' ' '); do
  3514. _debug2 "_authz_url" "$_authz_url"
  3515. if ! _send_signed_request "$_authz_url"; then
  3516. _err "get to authz error."
  3517. _err "_authorizations_seg" "$_authorizations_seg"
  3518. _err "_authz_url" "$_authz_url"
  3519. _clearup
  3520. _on_issue_err "$_post_hook"
  3521. return 1
  3522. fi
  3523. response="$(echo "$response" | _normalizeJson)"
  3524. _debug2 response "$response"
  3525. _d="$(echo "$response" | _egrep_o '"value" *: *"[^"]*"' | cut -d : -f 2 | tr -d ' "')"
  3526. if _contains "$response" "\"wildcard\" *: *true"; then
  3527. _d="*.$_d"
  3528. fi
  3529. _debug2 _d "$_d"
  3530. _authorizations_map="$_d,$response
  3531. $_authorizations_map"
  3532. done
  3533. _debug2 _authorizations_map "$_authorizations_map"
  3534. fi
  3535. _index=0
  3536. _currentRoot=""
  3537. _w_index=1
  3538. while true; do
  3539. d="$(echo "$_main_domain,$_alt_domains," | cut -d , -f "$_w_index")"
  3540. _w_index="$(_math "$_w_index" + 1)"
  3541. _debug d "$d"
  3542. if [ -z "$d" ]; then
  3543. break
  3544. fi
  3545. _info "Getting webroot for domain" "$d"
  3546. _index=$(_math $_index + 1)
  3547. _w="$(echo $_web_roots | cut -d , -f $_index)"
  3548. _debug _w "$_w"
  3549. if [ "$_w" ]; then
  3550. _currentRoot="$_w"
  3551. fi
  3552. _debug "_currentRoot" "$_currentRoot"
  3553. vtype="$VTYPE_HTTP"
  3554. #todo, v2 wildcard force to use dns
  3555. if _startswith "$_currentRoot" "$W_DNS"; then
  3556. vtype="$VTYPE_DNS"
  3557. fi
  3558. if [ "$_currentRoot" = "$W_ALPN" ]; then
  3559. vtype="$VTYPE_ALPN"
  3560. fi
  3561. if [ "$ACME_VERSION" = "2" ]; then
  3562. _idn_d="$(_idn "$d")"
  3563. _candindates="$(echo "$_authorizations_map" | grep -i "^$_idn_d,")"
  3564. _debug2 _candindates "$_candindates"
  3565. if [ "$(echo "$_candindates" | wc -l)" -gt 1 ]; then
  3566. for _can in $_candindates; do
  3567. if _startswith "$(echo "$_can" | tr '.' '|')" "$(echo "$_idn_d" | tr '.' '|'),"; then
  3568. _candindates="$_can"
  3569. break
  3570. fi
  3571. done
  3572. fi
  3573. response="$(echo "$_candindates" | sed "s/$_idn_d,//")"
  3574. _debug2 "response" "$response"
  3575. if [ -z "$response" ]; then
  3576. _err "get to authz error."
  3577. _err "_authorizations_map" "$_authorizations_map"
  3578. _clearup
  3579. _on_issue_err "$_post_hook"
  3580. return 1
  3581. fi
  3582. else
  3583. if ! __get_domain_new_authz "$d"; then
  3584. _clearup
  3585. _on_issue_err "$_post_hook"
  3586. return 1
  3587. fi
  3588. fi
  3589. if [ -z "$thumbprint" ]; then
  3590. thumbprint="$(__calc_account_thumbprint)"
  3591. fi
  3592. entry="$(echo "$response" | _egrep_o '[^\{]*"type":"'$vtype'"[^\}]*')"
  3593. _debug entry "$entry"
  3594. keyauthorization=""
  3595. if [ -z "$entry" ]; then
  3596. if ! _startswith "$d" '*.'; then
  3597. _debug "Not a wildcard domain, lets check whether the validation is already valid."
  3598. if echo "$response" | grep '"status":"valid"' >/dev/null 2>&1; then
  3599. _debug "$d is already valid."
  3600. keyauthorization="$STATE_VERIFIED"
  3601. _debug keyauthorization "$keyauthorization"
  3602. fi
  3603. fi
  3604. if [ -z "$keyauthorization" ]; then
  3605. _err "Error, can not get domain token entry $d for $vtype"
  3606. _supported_vtypes="$(echo "$response" | _egrep_o "\"challenges\":\[[^]]*]" | tr '{' "\n" | grep type | cut -d '"' -f 4 | tr "\n" ' ')"
  3607. if [ "$_supported_vtypes" ]; then
  3608. _err "The supported validation types are: $_supported_vtypes, but you specified: $vtype"
  3609. fi
  3610. _clearup
  3611. _on_issue_err "$_post_hook"
  3612. return 1
  3613. fi
  3614. fi
  3615. if [ -z "$keyauthorization" ]; then
  3616. token="$(echo "$entry" | _egrep_o '"token":"[^"]*' | cut -d : -f 2 | tr -d '"')"
  3617. _debug token "$token"
  3618. if [ -z "$token" ]; then
  3619. _err "Error, can not get domain token $entry"
  3620. _clearup
  3621. _on_issue_err "$_post_hook"
  3622. return 1
  3623. fi
  3624. if [ "$ACME_VERSION" = "2" ]; then
  3625. uri="$(echo "$entry" | _egrep_o '"url":"[^"]*' | cut -d '"' -f 4 | _head_n 1)"
  3626. else
  3627. uri="$(echo "$entry" | _egrep_o '"uri":"[^"]*' | cut -d '"' -f 4)"
  3628. fi
  3629. _debug uri "$uri"
  3630. if [ -z "$uri" ]; then
  3631. _err "Error, can not get domain uri. $entry"
  3632. _clearup
  3633. _on_issue_err "$_post_hook"
  3634. return 1
  3635. fi
  3636. keyauthorization="$token.$thumbprint"
  3637. _debug keyauthorization "$keyauthorization"
  3638. if printf "%s" "$response" | grep '"status":"valid"' >/dev/null 2>&1; then
  3639. _debug "$d is already verified."
  3640. keyauthorization="$STATE_VERIFIED"
  3641. _debug keyauthorization "$keyauthorization"
  3642. fi
  3643. fi
  3644. dvlist="$d$sep$keyauthorization$sep$uri$sep$vtype$sep$_currentRoot"
  3645. _debug dvlist "$dvlist"
  3646. vlist="$vlist$dvlist$dvsep"
  3647. done
  3648. _debug vlist "$vlist"
  3649. #add entry
  3650. dns_entries=""
  3651. dnsadded=""
  3652. ventries=$(echo "$vlist" | tr "$dvsep" ' ')
  3653. _alias_index=1
  3654. for ventry in $ventries; do
  3655. d=$(echo "$ventry" | cut -d "$sep" -f 1)
  3656. keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2)
  3657. vtype=$(echo "$ventry" | cut -d "$sep" -f 4)
  3658. _currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5)
  3659. _debug d "$d"
  3660. if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then
  3661. _debug "$d is already verified, skip $vtype."
  3662. _alias_index="$(_math "$_alias_index" + 1)"
  3663. continue
  3664. fi
  3665. if [ "$vtype" = "$VTYPE_DNS" ]; then
  3666. dnsadded='0'
  3667. _dns_root_d="$d"
  3668. if _startswith "$_dns_root_d" "*."; then
  3669. _dns_root_d="$(echo "$_dns_root_d" | sed 's/*.//')"
  3670. fi
  3671. _d_alias="$(_getfield "$_challenge_alias" "$_alias_index")"
  3672. _alias_index="$(_math "$_alias_index" + 1)"
  3673. _debug "_d_alias" "$_d_alias"
  3674. if [ "$_d_alias" ]; then
  3675. if _startswith "$_d_alias" "$DNS_ALIAS_PREFIX"; then
  3676. txtdomain="$(echo "$_d_alias" | sed "s/$DNS_ALIAS_PREFIX//")"
  3677. else
  3678. txtdomain="_acme-challenge.$_d_alias"
  3679. fi
  3680. dns_entry="${_dns_root_d}${dvsep}_acme-challenge.$_dns_root_d$dvsep$txtdomain$dvsep$_currentRoot"
  3681. else
  3682. txtdomain="_acme-challenge.$_dns_root_d"
  3683. dns_entry="${_dns_root_d}${dvsep}_acme-challenge.$_dns_root_d$dvsep$dvsep$_currentRoot"
  3684. fi
  3685. _debug txtdomain "$txtdomain"
  3686. txt="$(printf "%s" "$keyauthorization" | _digest "sha256" | _url_replace)"
  3687. _debug txt "$txt"
  3688. d_api="$(_findHook "$_dns_root_d" $_SUB_FOLDER_DNSAPI "$_currentRoot")"
  3689. _debug d_api "$d_api"
  3690. dns_entry="$dns_entry$dvsep$txt${dvsep}$d_api"
  3691. _debug2 dns_entry "$dns_entry"
  3692. if [ "$d_api" ]; then
  3693. _debug "Found domain api file: $d_api"
  3694. else
  3695. if [ "$_currentRoot" != "$W_DNS" ]; then
  3696. _err "Can not find dns api hook for: $_currentRoot"
  3697. _info "You need to add the txt record manually."
  3698. fi
  3699. _info "$(__red "Add the following TXT record:")"
  3700. _info "$(__red "Domain: '$(__green "$txtdomain")'")"
  3701. _info "$(__red "TXT value: '$(__green "$txt")'")"
  3702. _info "$(__red "Please be aware that you prepend _acme-challenge. before your domain")"
  3703. _info "$(__red "so the resulting subdomain will be: $txtdomain")"
  3704. continue
  3705. fi
  3706. (
  3707. if ! . "$d_api"; then
  3708. _err "Load file $d_api error. Please check your api file and try again."
  3709. return 1
  3710. fi
  3711. addcommand="${_currentRoot}_add"
  3712. if ! _exists "$addcommand"; then
  3713. _err "It seems that your api file is not correct, it must have a function named: $addcommand"
  3714. return 1
  3715. fi
  3716. _info "Adding txt value: $txt for domain: $txtdomain"
  3717. if ! $addcommand "$txtdomain" "$txt"; then
  3718. _err "Error add txt for domain:$txtdomain"
  3719. return 1
  3720. fi
  3721. _info "The txt record is added: Success."
  3722. )
  3723. if [ "$?" != "0" ]; then
  3724. _on_issue_err "$_post_hook" "$vlist"
  3725. _clearup
  3726. return 1
  3727. fi
  3728. dns_entries="$dns_entries$dns_entry
  3729. "
  3730. _debug2 "$dns_entries"
  3731. dnsadded='1'
  3732. fi
  3733. done
  3734. if [ "$dnsadded" = '0' ]; then
  3735. _savedomainconf "Le_Vlist" "$vlist"
  3736. _debug "Dns record not added yet, so, save to $DOMAIN_CONF and exit."
  3737. _err "Please add the TXT records to the domains, and re-run with --renew."
  3738. _on_issue_err "$_post_hook"
  3739. _clearup
  3740. return 1
  3741. fi
  3742. fi
  3743. if [ "$dns_entries" ]; then
  3744. if [ -z "$Le_DNSSleep" ]; then
  3745. _info "Let's check each dns records now. Sleep 20 seconds first."
  3746. _sleep 20
  3747. if ! _check_dns_entries; then
  3748. _err "check dns error."
  3749. _on_issue_err "$_post_hook"
  3750. _clearup
  3751. return 1
  3752. fi
  3753. else
  3754. _savedomainconf "Le_DNSSleep" "$Le_DNSSleep"
  3755. _info "Sleep $(__green $Le_DNSSleep) seconds for the txt records to take effect"
  3756. _sleep "$Le_DNSSleep"
  3757. fi
  3758. fi
  3759. NGINX_RESTORE_VLIST=""
  3760. _debug "ok, let's start to verify"
  3761. _ncIndex=1
  3762. ventries=$(echo "$vlist" | tr "$dvsep" ' ')
  3763. for ventry in $ventries; do
  3764. d=$(echo "$ventry" | cut -d "$sep" -f 1)
  3765. keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2)
  3766. uri=$(echo "$ventry" | cut -d "$sep" -f 3)
  3767. vtype=$(echo "$ventry" | cut -d "$sep" -f 4)
  3768. _currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5)
  3769. if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then
  3770. _info "$d is already verified, skip $vtype."
  3771. continue
  3772. fi
  3773. _info "Verifying: $d"
  3774. _debug "d" "$d"
  3775. _debug "keyauthorization" "$keyauthorization"
  3776. _debug "uri" "$uri"
  3777. removelevel=""
  3778. token="$(printf "%s" "$keyauthorization" | cut -d '.' -f 1)"
  3779. _debug "_currentRoot" "$_currentRoot"
  3780. if [ "$vtype" = "$VTYPE_HTTP" ]; then
  3781. if [ "$_currentRoot" = "$NO_VALUE" ]; then
  3782. _info "Standalone mode server"
  3783. _ncaddr="$(_getfield "$_local_addr" "$_ncIndex")"
  3784. _ncIndex="$(_math $_ncIndex + 1)"
  3785. _startserver "$keyauthorization" "$_ncaddr"
  3786. if [ "$?" != "0" ]; then
  3787. _clearup
  3788. _on_issue_err "$_post_hook" "$vlist"
  3789. return 1
  3790. fi
  3791. sleep 1
  3792. _debug serverproc "$serverproc"
  3793. elif [ "$_currentRoot" = "$MODE_STATELESS" ]; then
  3794. _info "Stateless mode for domain:$d"
  3795. _sleep 1
  3796. elif _startswith "$_currentRoot" "$NGINX"; then
  3797. _info "Nginx mode for domain:$d"
  3798. #set up nginx server
  3799. FOUND_REAL_NGINX_CONF=""
  3800. BACKUP_NGINX_CONF=""
  3801. if ! _setNginx "$d" "$_currentRoot" "$thumbprint"; then
  3802. _clearup
  3803. _on_issue_err "$_post_hook" "$vlist"
  3804. return 1
  3805. fi
  3806. if [ "$FOUND_REAL_NGINX_CONF" ]; then
  3807. _realConf="$FOUND_REAL_NGINX_CONF"
  3808. _backup="$BACKUP_NGINX_CONF"
  3809. _debug _realConf "$_realConf"
  3810. NGINX_RESTORE_VLIST="$d$sep$_realConf$sep$_backup$dvsep$NGINX_RESTORE_VLIST"
  3811. fi
  3812. _sleep 1
  3813. else
  3814. if [ "$_currentRoot" = "apache" ]; then
  3815. wellknown_path="$ACME_DIR"
  3816. else
  3817. wellknown_path="$_currentRoot/.well-known/acme-challenge"
  3818. if [ ! -d "$_currentRoot/.well-known" ]; then
  3819. removelevel='1'
  3820. elif [ ! -d "$_currentRoot/.well-known/acme-challenge" ]; then
  3821. removelevel='2'
  3822. else
  3823. removelevel='3'
  3824. fi
  3825. fi
  3826. _debug wellknown_path "$wellknown_path"
  3827. _debug "writing token:$token to $wellknown_path/$token"
  3828. mkdir -p "$wellknown_path"
  3829. if ! printf "%s" "$keyauthorization" >"$wellknown_path/$token"; then
  3830. _err "$d:Can not write token to file : $wellknown_path/$token"
  3831. _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
  3832. _clearup
  3833. _on_issue_err "$_post_hook" "$vlist"
  3834. return 1
  3835. fi
  3836. if [ ! "$usingApache" ]; then
  3837. if webroot_owner=$(_stat "$_currentRoot"); then
  3838. _debug "Changing owner/group of .well-known to $webroot_owner"
  3839. if ! _exec "chown -R \"$webroot_owner\" \"$_currentRoot/.well-known\""; then
  3840. _debug "$(cat "$_EXEC_TEMP_ERR")"
  3841. _exec_err >/dev/null 2>&1
  3842. fi
  3843. else
  3844. _debug "not changing owner/group of webroot"
  3845. fi
  3846. fi
  3847. fi
  3848. elif [ "$vtype" = "$VTYPE_ALPN" ]; then
  3849. acmevalidationv1="$(printf "%s" "$keyauthorization" | _digest "sha256" "hex")"
  3850. _debug acmevalidationv1 "$acmevalidationv1"
  3851. if ! _starttlsserver "$d" "" "$Le_TLSPort" "$keyauthorization" "$_ncaddr" "$acmevalidationv1"; then
  3852. _err "Start tls server error."
  3853. _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
  3854. _clearup
  3855. _on_issue_err "$_post_hook" "$vlist"
  3856. return 1
  3857. fi
  3858. fi
  3859. if ! __trigger_validation "$uri" "$keyauthorization" "$vtype"; then
  3860. _err "$d:Can not get challenge: $response"
  3861. _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
  3862. _clearup
  3863. _on_issue_err "$_post_hook" "$vlist"
  3864. return 1
  3865. fi
  3866. if [ "$code" ] && [ "$code" != '202' ]; then
  3867. if [ "$code" = '200' ]; then
  3868. _debug "trigger validation code: $code"
  3869. else
  3870. _err "$d:Challenge error: $response"
  3871. _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
  3872. _clearup
  3873. _on_issue_err "$_post_hook" "$vlist"
  3874. return 1
  3875. fi
  3876. fi
  3877. waittimes=0
  3878. if [ -z "$MAX_RETRY_TIMES" ]; then
  3879. MAX_RETRY_TIMES=30
  3880. fi
  3881. while true; do
  3882. waittimes=$(_math "$waittimes" + 1)
  3883. if [ "$waittimes" -ge "$MAX_RETRY_TIMES" ]; then
  3884. _err "$d:Timeout"
  3885. _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
  3886. _clearup
  3887. _on_issue_err "$_post_hook" "$vlist"
  3888. return 1
  3889. fi
  3890. _debug "sleep 2 secs to verify"
  3891. sleep 2
  3892. _debug "checking"
  3893. if [ "$ACME_VERSION" = "2" ]; then
  3894. _send_signed_request "$uri"
  3895. else
  3896. response="$(_get "$uri")"
  3897. fi
  3898. if [ "$?" != "0" ]; then
  3899. _err "$d:Verify error:$response"
  3900. _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
  3901. _clearup
  3902. _on_issue_err "$_post_hook" "$vlist"
  3903. return 1
  3904. fi
  3905. _debug2 original "$response"
  3906. response="$(echo "$response" | _normalizeJson)"
  3907. _debug2 response "$response"
  3908. status=$(echo "$response" | _egrep_o '"status":"[^"]*' | cut -d : -f 2 | tr -d '"')
  3909. if [ "$status" = "valid" ]; then
  3910. _info "$(__green Success)"
  3911. _stopserver "$serverproc"
  3912. serverproc=""
  3913. _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
  3914. break
  3915. fi
  3916. if [ "$status" = "invalid" ]; then
  3917. error="$(echo "$response" | _egrep_o '"error":\{[^\}]*')"
  3918. _debug2 error "$error"
  3919. errordetail="$(echo "$error" | _egrep_o '"detail": *"[^"]*' | cut -d '"' -f 4)"
  3920. _debug2 errordetail "$errordetail"
  3921. if [ "$errordetail" ]; then
  3922. _err "$d:Verify error:$errordetail"
  3923. else
  3924. _err "$d:Verify error:$error"
  3925. fi
  3926. if [ "$DEBUG" ]; then
  3927. if [ "$vtype" = "$VTYPE_HTTP" ]; then
  3928. _debug "Debug: get token url."
  3929. _get "http://$d/.well-known/acme-challenge/$token" "" 1
  3930. fi
  3931. fi
  3932. _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
  3933. _clearup
  3934. _on_issue_err "$_post_hook" "$vlist"
  3935. return 1
  3936. fi
  3937. if [ "$status" = "pending" ]; then
  3938. _info "Pending"
  3939. elif [ "$status" = "processing" ]; then
  3940. _info "Processing"
  3941. else
  3942. _err "$d:Verify error:$response"
  3943. _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
  3944. _clearup
  3945. _on_issue_err "$_post_hook" "$vlist"
  3946. return 1
  3947. fi
  3948. done
  3949. done
  3950. _clearup
  3951. _info "Verify finished, start to sign."
  3952. der="$(_getfile "${CSR_PATH}" "${BEGIN_CSR}" "${END_CSR}" | tr -d "\r\n" | _url_replace)"
  3953. if [ "$ACME_VERSION" = "2" ]; then
  3954. _info "Lets finalize the order, Le_OrderFinalize: $Le_OrderFinalize"
  3955. if ! _send_signed_request "${Le_OrderFinalize}" "{\"csr\": \"$der\"}"; then
  3956. _err "Sign failed."
  3957. _on_issue_err "$_post_hook"
  3958. return 1
  3959. fi
  3960. if [ "$code" != "200" ]; then
  3961. _err "Sign failed, finalize code is not 200."
  3962. _err "$response"
  3963. _on_issue_err "$_post_hook"
  3964. return 1
  3965. fi
  3966. if [ -z "$Le_LinkOrder" ]; then
  3967. Le_LinkOrder="$(echo "$responseHeaders" | grep -i '^Location.*$' | _tail_n 1 | tr -d "\r\n" | cut -d ":" -f 2-)"
  3968. fi
  3969. _savedomainconf "Le_LinkOrder" "$Le_LinkOrder"
  3970. _link_cert_retry=0
  3971. _MAX_CERT_RETRY=5
  3972. while [ "$_link_cert_retry" -lt "$_MAX_CERT_RETRY" ]; do
  3973. if _contains "$response" "\"status\":\"valid\""; then
  3974. _debug "Order status is valid."
  3975. Le_LinkCert="$(echo "$response" | _egrep_o '"certificate" *: *"[^"]*"' | cut -d '"' -f 4)"
  3976. _debug Le_LinkCert "$Le_LinkCert"
  3977. if [ -z "$Le_LinkCert" ]; then
  3978. _err "Sign error, can not find Le_LinkCert"
  3979. _err "$response"
  3980. _on_issue_err "$_post_hook"
  3981. return 1
  3982. fi
  3983. break
  3984. elif _contains "$response" "\"processing\""; then
  3985. _info "Order status is processing, lets sleep and retry."
  3986. _sleep 2
  3987. else
  3988. _err "Sign error, wrong status"
  3989. _err "$response"
  3990. _on_issue_err "$_post_hook"
  3991. return 1
  3992. fi
  3993. #the order is processing, so we are going to poll order status
  3994. if [ -z "$Le_LinkOrder" ]; then
  3995. _err "Sign error, can not get order link location header"
  3996. _err "responseHeaders" "$responseHeaders"
  3997. _on_issue_err "$_post_hook"
  3998. return 1
  3999. fi
  4000. _info "Polling order status: $Le_LinkOrder"
  4001. if ! _send_signed_request "$Le_LinkOrder"; then
  4002. _err "Sign failed, can not post to Le_LinkOrder cert:$Le_LinkOrder."
  4003. _err "$response"
  4004. _on_issue_err "$_post_hook"
  4005. return 1
  4006. fi
  4007. _link_cert_retry="$(_math $_link_cert_retry + 1)"
  4008. done
  4009. if [ -z "$Le_LinkCert" ]; then
  4010. _err "Sign failed, can not get Le_LinkCert, retry time limit."
  4011. _err "$response"
  4012. _on_issue_err "$_post_hook"
  4013. return 1
  4014. fi
  4015. _info "Download cert, Le_LinkCert: $Le_LinkCert"
  4016. if ! _send_signed_request "$Le_LinkCert"; then
  4017. _err "Sign failed, can not download cert:$Le_LinkCert."
  4018. _err "$response"
  4019. _on_issue_err "$_post_hook"
  4020. return 1
  4021. fi
  4022. echo "$response" >"$CERT_PATH"
  4023. if [ "$(grep -- "$BEGIN_CERT" "$CERT_PATH" | wc -l)" -gt "1" ]; then
  4024. _debug "Found cert chain"
  4025. cat "$CERT_PATH" >"$CERT_FULLCHAIN_PATH"
  4026. _end_n="$(grep -n -- "$END_CERT" "$CERT_FULLCHAIN_PATH" | _head_n 1 | cut -d : -f 1)"
  4027. _debug _end_n "$_end_n"
  4028. sed -n "1,${_end_n}p" "$CERT_FULLCHAIN_PATH" >"$CERT_PATH"
  4029. _end_n="$(_math $_end_n + 1)"
  4030. sed -n "${_end_n},9999p" "$CERT_FULLCHAIN_PATH" >"$CA_CERT_PATH"
  4031. fi
  4032. else
  4033. if ! _send_signed_request "${ACME_NEW_ORDER}" "{\"resource\": \"$ACME_NEW_ORDER_RES\", \"csr\": \"$der\"}" "needbase64"; then
  4034. _err "Sign failed. $response"
  4035. _on_issue_err "$_post_hook"
  4036. return 1
  4037. fi
  4038. _rcert="$response"
  4039. Le_LinkCert="$(grep -i '^Location.*$' "$HTTP_HEADER" | _tail_n 1 | tr -d "\r\n" | cut -d " " -f 2)"
  4040. echo "$BEGIN_CERT" >"$CERT_PATH"
  4041. #if ! _get "$Le_LinkCert" | _base64 "multiline" >> "$CERT_PATH" ; then
  4042. # _debug "Get cert failed. Let's try last response."
  4043. # printf -- "%s" "$_rcert" | _dbase64 "multiline" | _base64 "multiline" >> "$CERT_PATH"
  4044. #fi
  4045. if ! printf -- "%s" "$_rcert" | _dbase64 "multiline" | _base64 "multiline" >>"$CERT_PATH"; then
  4046. _debug "Try cert link."
  4047. _get "$Le_LinkCert" | _base64 "multiline" >>"$CERT_PATH"
  4048. fi
  4049. echo "$END_CERT" >>"$CERT_PATH"
  4050. fi
  4051. _debug "Le_LinkCert" "$Le_LinkCert"
  4052. _savedomainconf "Le_LinkCert" "$Le_LinkCert"
  4053. if [ -z "$Le_LinkCert" ] || ! _checkcert "$CERT_PATH"; then
  4054. response="$(echo "$response" | _dbase64 "multiline" | tr -d '\0' | _normalizeJson)"
  4055. _err "Sign failed: $(echo "$response" | _egrep_o '"detail":"[^"]*"')"
  4056. _on_issue_err "$_post_hook"
  4057. return 1
  4058. fi
  4059. if [ "$Le_LinkCert" ]; then
  4060. _info "$(__green "Cert success.")"
  4061. cat "$CERT_PATH"
  4062. _info "Your cert is in $(__green " $CERT_PATH ")"
  4063. if [ -f "$CERT_KEY_PATH" ]; then
  4064. _info "Your cert key is in $(__green " $CERT_KEY_PATH ")"
  4065. fi
  4066. if [ ! "$USER_PATH" ] || [ ! "$ACME_IN_CRON" ]; then
  4067. USER_PATH="$PATH"
  4068. _saveaccountconf "USER_PATH" "$USER_PATH"
  4069. fi
  4070. fi
  4071. if [ "$ACME_VERSION" = "2" ]; then
  4072. _debug "v2 chain."
  4073. else
  4074. cp "$CERT_PATH" "$CERT_FULLCHAIN_PATH"
  4075. Le_LinkIssuer=$(grep -i '^Link' "$HTTP_HEADER" | _head_n 1 | cut -d " " -f 2 | cut -d ';' -f 1 | tr -d '<>')
  4076. if [ "$Le_LinkIssuer" ]; then
  4077. if ! _contains "$Le_LinkIssuer" ":"; then
  4078. _info "$(__red "Relative issuer link found.")"
  4079. Le_LinkIssuer="$_ACME_SERVER_HOST$Le_LinkIssuer"
  4080. fi
  4081. _debug Le_LinkIssuer "$Le_LinkIssuer"
  4082. _savedomainconf "Le_LinkIssuer" "$Le_LinkIssuer"
  4083. _link_issuer_retry=0
  4084. _MAX_ISSUER_RETRY=5
  4085. while [ "$_link_issuer_retry" -lt "$_MAX_ISSUER_RETRY" ]; do
  4086. _debug _link_issuer_retry "$_link_issuer_retry"
  4087. if [ "$ACME_VERSION" = "2" ]; then
  4088. if _send_signed_request "$Le_LinkIssuer"; then
  4089. echo "$response" >"$CA_CERT_PATH"
  4090. break
  4091. fi
  4092. else
  4093. if _get "$Le_LinkIssuer" >"$CA_CERT_PATH.der"; then
  4094. echo "$BEGIN_CERT" >"$CA_CERT_PATH"
  4095. _base64 "multiline" <"$CA_CERT_PATH.der" >>"$CA_CERT_PATH"
  4096. echo "$END_CERT" >>"$CA_CERT_PATH"
  4097. if ! _checkcert "$CA_CERT_PATH"; then
  4098. _err "Can not get the ca cert."
  4099. break
  4100. fi
  4101. cat "$CA_CERT_PATH" >>"$CERT_FULLCHAIN_PATH"
  4102. rm -f "$CA_CERT_PATH.der"
  4103. break
  4104. fi
  4105. fi
  4106. _link_issuer_retry=$(_math $_link_issuer_retry + 1)
  4107. _sleep "$_link_issuer_retry"
  4108. done
  4109. if [ "$_link_issuer_retry" = "$_MAX_ISSUER_RETRY" ]; then
  4110. _err "Max retry for issuer ca cert is reached."
  4111. fi
  4112. else
  4113. _debug "No Le_LinkIssuer header found."
  4114. fi
  4115. fi
  4116. [ -f "$CA_CERT_PATH" ] && _info "The intermediate CA cert is in $(__green " $CA_CERT_PATH ")"
  4117. [ -f "$CERT_FULLCHAIN_PATH" ] && _info "And the full chain certs is there: $(__green " $CERT_FULLCHAIN_PATH ")"
  4118. Le_CertCreateTime=$(_time)
  4119. _savedomainconf "Le_CertCreateTime" "$Le_CertCreateTime"
  4120. Le_CertCreateTimeStr=$(date -u)
  4121. _savedomainconf "Le_CertCreateTimeStr" "$Le_CertCreateTimeStr"
  4122. if [ -z "$Le_RenewalDays" ] || [ "$Le_RenewalDays" -lt "0" ]; then
  4123. Le_RenewalDays="$DEFAULT_RENEW"
  4124. else
  4125. _savedomainconf "Le_RenewalDays" "$Le_RenewalDays"
  4126. fi
  4127. if [ "$CA_BUNDLE" ]; then
  4128. _saveaccountconf CA_BUNDLE "$CA_BUNDLE"
  4129. else
  4130. _clearaccountconf "CA_BUNDLE"
  4131. fi
  4132. if [ "$CA_PATH" ]; then
  4133. _saveaccountconf CA_PATH "$CA_PATH"
  4134. else
  4135. _clearaccountconf "CA_PATH"
  4136. fi
  4137. if [ "$HTTPS_INSECURE" ]; then
  4138. _saveaccountconf HTTPS_INSECURE "$HTTPS_INSECURE"
  4139. else
  4140. _clearaccountconf "HTTPS_INSECURE"
  4141. fi
  4142. if [ "$Le_Listen_V4" ]; then
  4143. _savedomainconf "Le_Listen_V4" "$Le_Listen_V4"
  4144. _cleardomainconf Le_Listen_V6
  4145. elif [ "$Le_Listen_V6" ]; then
  4146. _savedomainconf "Le_Listen_V6" "$Le_Listen_V6"
  4147. _cleardomainconf Le_Listen_V4
  4148. fi
  4149. if [ "$Le_ForceNewDomainKey" = "1" ]; then
  4150. _savedomainconf "Le_ForceNewDomainKey" "$Le_ForceNewDomainKey"
  4151. else
  4152. _cleardomainconf Le_ForceNewDomainKey
  4153. fi
  4154. Le_NextRenewTime=$(_math "$Le_CertCreateTime" + "$Le_RenewalDays" \* 24 \* 60 \* 60)
  4155. Le_NextRenewTimeStr=$(_time2str "$Le_NextRenewTime")
  4156. _savedomainconf "Le_NextRenewTimeStr" "$Le_NextRenewTimeStr"
  4157. Le_NextRenewTime=$(_math "$Le_NextRenewTime" - 86400)
  4158. _savedomainconf "Le_NextRenewTime" "$Le_NextRenewTime"
  4159. if [ "$_real_cert$_real_key$_real_ca$_reload_cmd$_real_fullchain" ]; then
  4160. _savedomainconf "Le_RealCertPath" "$_real_cert"
  4161. _savedomainconf "Le_RealCACertPath" "$_real_ca"
  4162. _savedomainconf "Le_RealKeyPath" "$_real_key"
  4163. _savedomainconf "Le_ReloadCmd" "$_reload_cmd" "base64"
  4164. _savedomainconf "Le_RealFullChainPath" "$_real_fullchain"
  4165. if ! _installcert "$_main_domain" "$_real_cert" "$_real_key" "$_real_ca" "$_real_fullchain" "$_reload_cmd"; then
  4166. return 1
  4167. fi
  4168. fi
  4169. if ! _on_issue_success "$_post_hook" "$_renew_hook"; then
  4170. _err "Call hook error."
  4171. return 1
  4172. fi
  4173. }
  4174. #domain [isEcc]
  4175. renew() {
  4176. Le_Domain="$1"
  4177. if [ -z "$Le_Domain" ]; then
  4178. _usage "Usage: $PROJECT_ENTRY --renew -d domain.com [--ecc]"
  4179. return 1
  4180. fi
  4181. _isEcc="$2"
  4182. _initpath "$Le_Domain" "$_isEcc"
  4183. _info "$(__green "Renew: '$Le_Domain'")"
  4184. if [ ! -f "$DOMAIN_CONF" ]; then
  4185. _info "'$Le_Domain' is not a issued domain, skip."
  4186. return $RENEW_SKIP
  4187. fi
  4188. if [ "$Le_RenewalDays" ]; then
  4189. _savedomainconf Le_RenewalDays "$Le_RenewalDays"
  4190. fi
  4191. . "$DOMAIN_CONF"
  4192. _debug Le_API "$Le_API"
  4193. if [ "$Le_API" = "$LETSENCRYPT_CA_V1" ]; then
  4194. _cleardomainconf Le_API
  4195. Le_API="$DEFAULT_CA"
  4196. fi
  4197. if [ "$Le_API" = "$LETSENCRYPT_STAGING_CA_V1" ]; then
  4198. _cleardomainconf Le_API
  4199. Le_API="$DEFAULT_STAGING_CA"
  4200. fi
  4201. if [ "$Le_API" ]; then
  4202. if [ "$_OLD_CA_HOST" = "$Le_API" ]; then
  4203. export Le_API="$DEFAULT_CA"
  4204. _savedomainconf Le_API "$Le_API"
  4205. fi
  4206. if [ "$_OLD_STAGE_CA_HOST" = "$Le_API" ]; then
  4207. export Le_API="$DEFAULT_STAGING_CA"
  4208. _savedomainconf Le_API "$Le_API"
  4209. fi
  4210. export ACME_DIRECTORY="$Le_API"
  4211. #reload ca configs
  4212. ACCOUNT_KEY_PATH=""
  4213. ACCOUNT_JSON_PATH=""
  4214. CA_CONF=""
  4215. _debug3 "initpath again."
  4216. _initpath "$Le_Domain" "$_isEcc"
  4217. fi
  4218. if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(_time)" -lt "$Le_NextRenewTime" ]; then
  4219. _info "Skip, Next renewal time is: $(__green "$Le_NextRenewTimeStr")"
  4220. _info "Add '$(__red '--force')' to force to renew."
  4221. return "$RENEW_SKIP"
  4222. fi
  4223. if [ "$ACME_IN_CRON" = "1" ] && [ -z "$Le_CertCreateTime" ]; then
  4224. _info "Skip invalid cert for: $Le_Domain"
  4225. return $RENEW_SKIP
  4226. fi
  4227. IS_RENEW="1"
  4228. Le_ReloadCmd="$(_readdomainconf Le_ReloadCmd)"
  4229. Le_PreHook="$(_readdomainconf Le_PreHook)"
  4230. Le_PostHook="$(_readdomainconf Le_PostHook)"
  4231. Le_RenewHook="$(_readdomainconf Le_RenewHook)"
  4232. issue "$Le_Webroot" "$Le_Domain" "$Le_Alt" "$Le_Keylength" "$Le_RealCertPath" "$Le_RealKeyPath" "$Le_RealCACertPath" "$Le_ReloadCmd" "$Le_RealFullChainPath" "$Le_PreHook" "$Le_PostHook" "$Le_RenewHook" "$Le_LocalAddress" "$Le_ChallengeAlias"
  4233. res="$?"
  4234. if [ "$res" != "0" ]; then
  4235. return "$res"
  4236. fi
  4237. if [ "$Le_DeployHook" ]; then
  4238. _deploy "$Le_Domain" "$Le_DeployHook"
  4239. res="$?"
  4240. fi
  4241. IS_RENEW=""
  4242. return "$res"
  4243. }
  4244. #renewAll [stopRenewOnError]
  4245. renewAll() {
  4246. _initpath
  4247. _stopRenewOnError="$1"
  4248. _debug "_stopRenewOnError" "$_stopRenewOnError"
  4249. _ret="0"
  4250. _success_msg=""
  4251. _error_msg=""
  4252. _skipped_msg=""
  4253. _error_level=$NOTIFY_LEVEL_SKIP
  4254. _notify_code=$RENEW_SKIP
  4255. _set_level=${NOTIFY_LEVEL:-$NOTIFY_LEVEL_DEFAULT}
  4256. _debug "_set_level" "$_set_level"
  4257. for di in "${CERT_HOME}"/*.*/; do
  4258. _debug di "$di"
  4259. if ! [ -d "$di" ]; then
  4260. _debug "Not directory, skip: $di"
  4261. continue
  4262. fi
  4263. d=$(basename "$di")
  4264. _debug d "$d"
  4265. (
  4266. if _endswith "$d" "$ECC_SUFFIX"; then
  4267. _isEcc=$(echo "$d" | cut -d "$ECC_SEP" -f 2)
  4268. d=$(echo "$d" | cut -d "$ECC_SEP" -f 1)
  4269. fi
  4270. renew "$d" "$_isEcc"
  4271. )
  4272. rc="$?"
  4273. _debug "Return code: $rc"
  4274. if [ "$rc" = "0" ]; then
  4275. if [ $_error_level -gt $NOTIFY_LEVEL_RENEW ]; then
  4276. _error_level="$NOTIFY_LEVEL_RENEW"
  4277. _notify_code=0
  4278. fi
  4279. if [ "$ACME_IN_CRON" ]; then
  4280. if [ $_set_level -ge $NOTIFY_LEVEL_RENEW ]; then
  4281. if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
  4282. _send_notify "Renew $d success" "Good, the cert is renewed." "$NOTIFY_HOOK" 0
  4283. fi
  4284. fi
  4285. fi
  4286. _success_msg="${_success_msg} $d
  4287. "
  4288. elif [ "$rc" = "$RENEW_SKIP" ]; then
  4289. if [ $_error_level -gt $NOTIFY_LEVEL_SKIP ]; then
  4290. _error_level="$NOTIFY_LEVEL_SKIP"
  4291. _notify_code=$RENEW_SKIP
  4292. fi
  4293. if [ "$ACME_IN_CRON" ]; then
  4294. if [ $_set_level -ge $NOTIFY_LEVEL_SKIP ]; then
  4295. if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
  4296. _send_notify "Renew $d skipped" "Good, the cert is skipped." "$NOTIFY_HOOK" "$RENEW_SKIP"
  4297. fi
  4298. fi
  4299. fi
  4300. _info "Skipped $d"
  4301. _skipped_msg="${_skipped_msg} $d
  4302. "
  4303. else
  4304. if [ $_error_level -gt $NOTIFY_LEVEL_ERROR ]; then
  4305. _error_level="$NOTIFY_LEVEL_ERROR"
  4306. _notify_code=1
  4307. fi
  4308. if [ "$ACME_IN_CRON" ]; then
  4309. if [ $_set_level -ge $NOTIFY_LEVEL_ERROR ]; then
  4310. if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
  4311. _send_notify "Renew $d error" "There is an error." "$NOTIFY_HOOK" 1
  4312. fi
  4313. fi
  4314. fi
  4315. _error_msg="${_error_msg} $d
  4316. "
  4317. if [ "$_stopRenewOnError" ]; then
  4318. _err "Error renew $d, stop now."
  4319. _ret="$rc"
  4320. break
  4321. else
  4322. _ret="$rc"
  4323. _err "Error renew $d."
  4324. fi
  4325. fi
  4326. done
  4327. _debug _error_level "$_error_level"
  4328. _debug _set_level "$_set_level"
  4329. if [ "$ACME_IN_CRON" ] && [ $_error_level -le $_set_level ]; then
  4330. if [ -z "$NOTIFY_MODE" ] || [ "$NOTIFY_MODE" = "$NOTIFY_MODE_BULK" ]; then
  4331. _msg_subject="Renew"
  4332. if [ "$_error_msg" ]; then
  4333. _msg_subject="${_msg_subject} Error"
  4334. _msg_data="Error certs:
  4335. ${_error_msg}
  4336. "
  4337. fi
  4338. if [ "$_success_msg" ]; then
  4339. _msg_subject="${_msg_subject} Success"
  4340. _msg_data="${_msg_data}Success certs:
  4341. ${_success_msg}
  4342. "
  4343. fi
  4344. if [ "$_skipped_msg" ]; then
  4345. _msg_subject="${_msg_subject} Skipped"
  4346. _msg_data="${_msg_data}Skipped certs:
  4347. ${_skipped_msg}
  4348. "
  4349. fi
  4350. _send_notify "$_msg_subject" "$_msg_data" "$NOTIFY_HOOK" "$_notify_code"
  4351. fi
  4352. fi
  4353. return "$_ret"
  4354. }
  4355. #csr webroot
  4356. signcsr() {
  4357. _csrfile="$1"
  4358. _csrW="$2"
  4359. if [ -z "$_csrfile" ] || [ -z "$_csrW" ]; then
  4360. _usage "Usage: $PROJECT_ENTRY --signcsr --csr mycsr.csr -w /path/to/webroot/a.com/ "
  4361. return 1
  4362. fi
  4363. _real_cert="$3"
  4364. _real_key="$4"
  4365. _real_ca="$5"
  4366. _reload_cmd="$6"
  4367. _real_fullchain="$7"
  4368. _pre_hook="${8}"
  4369. _post_hook="${9}"
  4370. _renew_hook="${10}"
  4371. _local_addr="${11}"
  4372. _challenge_alias="${12}"
  4373. _csrsubj=$(_readSubjectFromCSR "$_csrfile")
  4374. if [ "$?" != "0" ]; then
  4375. _err "Can not read subject from csr: $_csrfile"
  4376. return 1
  4377. fi
  4378. _debug _csrsubj "$_csrsubj"
  4379. if _contains "$_csrsubj" ' ' || ! _contains "$_csrsubj" '.'; then
  4380. _info "It seems that the subject: $_csrsubj is not a valid domain name. Drop it."
  4381. _csrsubj=""
  4382. fi
  4383. _csrdomainlist=$(_readSubjectAltNamesFromCSR "$_csrfile")
  4384. if [ "$?" != "0" ]; then
  4385. _err "Can not read domain list from csr: $_csrfile"
  4386. return 1
  4387. fi
  4388. _debug "_csrdomainlist" "$_csrdomainlist"
  4389. if [ -z "$_csrsubj" ]; then
  4390. _csrsubj="$(_getfield "$_csrdomainlist" 1)"
  4391. _debug _csrsubj "$_csrsubj"
  4392. _csrdomainlist="$(echo "$_csrdomainlist" | cut -d , -f 2-)"
  4393. _debug "_csrdomainlist" "$_csrdomainlist"
  4394. fi
  4395. if [ -z "$_csrsubj" ]; then
  4396. _err "Can not read subject from csr: $_csrfile"
  4397. return 1
  4398. fi
  4399. _csrkeylength=$(_readKeyLengthFromCSR "$_csrfile")
  4400. if [ "$?" != "0" ] || [ -z "$_csrkeylength" ]; then
  4401. _err "Can not read key length from csr: $_csrfile"
  4402. return 1
  4403. fi
  4404. if [ -z "$ACME_VERSION" ] && _contains "$_csrsubj,$_csrdomainlist" "*."; then
  4405. export ACME_VERSION=2
  4406. fi
  4407. _initpath "$_csrsubj" "$_csrkeylength"
  4408. mkdir -p "$DOMAIN_PATH"
  4409. _info "Copy csr to: $CSR_PATH"
  4410. cp "$_csrfile" "$CSR_PATH"
  4411. issue "$_csrW" "$_csrsubj" "$_csrdomainlist" "$_csrkeylength" "$_real_cert" "$_real_key" "$_real_ca" "$_reload_cmd" "$_real_fullchain" "$_pre_hook" "$_post_hook" "$_renew_hook" "$_local_addr" "$_challenge_alias"
  4412. }
  4413. showcsr() {
  4414. _csrfile="$1"
  4415. _csrd="$2"
  4416. if [ -z "$_csrfile" ] && [ -z "$_csrd" ]; then
  4417. _usage "Usage: $PROJECT_ENTRY --showcsr --csr mycsr.csr"
  4418. return 1
  4419. fi
  4420. _initpath
  4421. _csrsubj=$(_readSubjectFromCSR "$_csrfile")
  4422. if [ "$?" != "0" ] || [ -z "$_csrsubj" ]; then
  4423. _err "Can not read subject from csr: $_csrfile"
  4424. return 1
  4425. fi
  4426. _info "Subject=$_csrsubj"
  4427. _csrdomainlist=$(_readSubjectAltNamesFromCSR "$_csrfile")
  4428. if [ "$?" != "0" ]; then
  4429. _err "Can not read domain list from csr: $_csrfile"
  4430. return 1
  4431. fi
  4432. _debug "_csrdomainlist" "$_csrdomainlist"
  4433. _info "SubjectAltNames=$_csrdomainlist"
  4434. _csrkeylength=$(_readKeyLengthFromCSR "$_csrfile")
  4435. if [ "$?" != "0" ] || [ -z "$_csrkeylength" ]; then
  4436. _err "Can not read key length from csr: $_csrfile"
  4437. return 1
  4438. fi
  4439. _info "KeyLength=$_csrkeylength"
  4440. }
  4441. list() {
  4442. _raw="$1"
  4443. _initpath
  4444. _sep="|"
  4445. if [ "$_raw" ]; then
  4446. printf "%s\n" "Main_Domain${_sep}KeyLength${_sep}SAN_Domains${_sep}Created${_sep}Renew"
  4447. for di in "${CERT_HOME}"/*.*/; do
  4448. d=$(basename "$di")
  4449. _debug d "$d"
  4450. (
  4451. if _endswith "$d" "$ECC_SUFFIX"; then
  4452. _isEcc="ecc"
  4453. d=$(echo "$d" | cut -d "$ECC_SEP" -f 1)
  4454. fi
  4455. DOMAIN_CONF="$di/$d.conf"
  4456. if [ -f "$DOMAIN_CONF" ]; then
  4457. . "$DOMAIN_CONF"
  4458. printf "%s\n" "$Le_Domain${_sep}\"$Le_Keylength\"${_sep}$Le_Alt${_sep}$Le_CertCreateTimeStr${_sep}$Le_NextRenewTimeStr"
  4459. fi
  4460. )
  4461. done
  4462. else
  4463. if _exists column; then
  4464. list "raw" | column -t -s "$_sep"
  4465. else
  4466. list "raw" | tr "$_sep" '\t'
  4467. fi
  4468. fi
  4469. }
  4470. _deploy() {
  4471. _d="$1"
  4472. _hooks="$2"
  4473. for _d_api in $(echo "$_hooks" | tr ',' " "); do
  4474. _deployApi="$(_findHook "$_d" $_SUB_FOLDER_DEPLOY "$_d_api")"
  4475. if [ -z "$_deployApi" ]; then
  4476. _err "The deploy hook $_d_api is not found."
  4477. return 1
  4478. fi
  4479. _debug _deployApi "$_deployApi"
  4480. if ! (
  4481. if ! . "$_deployApi"; then
  4482. _err "Load file $_deployApi error. Please check your api file and try again."
  4483. return 1
  4484. fi
  4485. d_command="${_d_api}_deploy"
  4486. if ! _exists "$d_command"; then
  4487. _err "It seems that your api file is not correct, it must have a function named: $d_command"
  4488. return 1
  4489. fi
  4490. if ! $d_command "$_d" "$CERT_KEY_PATH" "$CERT_PATH" "$CA_CERT_PATH" "$CERT_FULLCHAIN_PATH"; then
  4491. _err "Error deploy for domain:$_d"
  4492. return 1
  4493. fi
  4494. ); then
  4495. _err "Deploy error."
  4496. return 1
  4497. else
  4498. _info "$(__green Success)"
  4499. fi
  4500. done
  4501. }
  4502. #domain hooks
  4503. deploy() {
  4504. _d="$1"
  4505. _hooks="$2"
  4506. _isEcc="$3"
  4507. if [ -z "$_hooks" ]; then
  4508. _usage "Usage: $PROJECT_ENTRY --deploy -d domain.com --deploy-hook cpanel [--ecc] "
  4509. return 1
  4510. fi
  4511. _initpath "$_d" "$_isEcc"
  4512. if [ ! -d "$DOMAIN_PATH" ]; then
  4513. _err "The domain '$_d' is not a cert name. You must use the cert name to specify the cert to install."
  4514. _err "Can not find path:'$DOMAIN_PATH'"
  4515. return 1
  4516. fi
  4517. . "$DOMAIN_CONF"
  4518. _savedomainconf Le_DeployHook "$_hooks"
  4519. _deploy "$_d" "$_hooks"
  4520. }
  4521. installcert() {
  4522. _main_domain="$1"
  4523. if [ -z "$_main_domain" ]; then
  4524. _usage "Usage: $PROJECT_ENTRY --installcert -d domain.com [--ecc] [--cert-file cert-file-path] [--key-file key-file-path] [--ca-file ca-cert-file-path] [ --reloadCmd reloadCmd] [--fullchain-file fullchain-path]"
  4525. return 1
  4526. fi
  4527. _real_cert="$2"
  4528. _real_key="$3"
  4529. _real_ca="$4"
  4530. _reload_cmd="$5"
  4531. _real_fullchain="$6"
  4532. _isEcc="$7"
  4533. _initpath "$_main_domain" "$_isEcc"
  4534. if [ ! -d "$DOMAIN_PATH" ]; then
  4535. _err "The domain '$_main_domain' is not a cert name. You must use the cert name to specify the cert to install."
  4536. _err "Can not find path:'$DOMAIN_PATH'"
  4537. return 1
  4538. fi
  4539. _savedomainconf "Le_RealCertPath" "$_real_cert"
  4540. _savedomainconf "Le_RealCACertPath" "$_real_ca"
  4541. _savedomainconf "Le_RealKeyPath" "$_real_key"
  4542. _savedomainconf "Le_ReloadCmd" "$_reload_cmd" "base64"
  4543. _savedomainconf "Le_RealFullChainPath" "$_real_fullchain"
  4544. _installcert "$_main_domain" "$_real_cert" "$_real_key" "$_real_ca" "$_real_fullchain" "$_reload_cmd"
  4545. }
  4546. #domain cert key ca fullchain reloadcmd backup-prefix
  4547. _installcert() {
  4548. _main_domain="$1"
  4549. _real_cert="$2"
  4550. _real_key="$3"
  4551. _real_ca="$4"
  4552. _real_fullchain="$5"
  4553. _reload_cmd="$6"
  4554. _backup_prefix="$7"
  4555. if [ "$_real_cert" = "$NO_VALUE" ]; then
  4556. _real_cert=""
  4557. fi
  4558. if [ "$_real_key" = "$NO_VALUE" ]; then
  4559. _real_key=""
  4560. fi
  4561. if [ "$_real_ca" = "$NO_VALUE" ]; then
  4562. _real_ca=""
  4563. fi
  4564. if [ "$_reload_cmd" = "$NO_VALUE" ]; then
  4565. _reload_cmd=""
  4566. fi
  4567. if [ "$_real_fullchain" = "$NO_VALUE" ]; then
  4568. _real_fullchain=""
  4569. fi
  4570. _backup_path="$DOMAIN_BACKUP_PATH/$_backup_prefix"
  4571. mkdir -p "$_backup_path"
  4572. if [ "$_real_cert" ]; then
  4573. _info "Installing cert to:$_real_cert"
  4574. if [ -f "$_real_cert" ] && [ ! "$IS_RENEW" ]; then
  4575. cp "$_real_cert" "$_backup_path/cert.bak"
  4576. fi
  4577. cat "$CERT_PATH" >"$_real_cert" || return 1
  4578. fi
  4579. if [ "$_real_ca" ]; then
  4580. _info "Installing CA to:$_real_ca"
  4581. if [ "$_real_ca" = "$_real_cert" ]; then
  4582. echo "" >>"$_real_ca"
  4583. cat "$CA_CERT_PATH" >>"$_real_ca" || return 1
  4584. else
  4585. if [ -f "$_real_ca" ] && [ ! "$IS_RENEW" ]; then
  4586. cp "$_real_ca" "$_backup_path/ca.bak"
  4587. fi
  4588. cat "$CA_CERT_PATH" >"$_real_ca" || return 1
  4589. fi
  4590. fi
  4591. if [ "$_real_key" ]; then
  4592. _info "Installing key to:$_real_key"
  4593. if [ -f "$_real_key" ] && [ ! "$IS_RENEW" ]; then
  4594. cp "$_real_key" "$_backup_path/key.bak"
  4595. fi
  4596. if [ -f "$_real_key" ]; then
  4597. cat "$CERT_KEY_PATH" >"$_real_key" || return 1
  4598. else
  4599. cat "$CERT_KEY_PATH" >"$_real_key" || return 1
  4600. chmod 600 "$_real_key"
  4601. fi
  4602. fi
  4603. if [ "$_real_fullchain" ]; then
  4604. _info "Installing full chain to:$_real_fullchain"
  4605. if [ -f "$_real_fullchain" ] && [ ! "$IS_RENEW" ]; then
  4606. cp "$_real_fullchain" "$_backup_path/fullchain.bak"
  4607. fi
  4608. cat "$CERT_FULLCHAIN_PATH" >"$_real_fullchain" || return 1
  4609. fi
  4610. if [ "$_reload_cmd" ]; then
  4611. _info "Run reload cmd: $_reload_cmd"
  4612. if (
  4613. export CERT_PATH
  4614. export CERT_KEY_PATH
  4615. export CA_CERT_PATH
  4616. export CERT_FULLCHAIN_PATH
  4617. export Le_Domain="$_main_domain"
  4618. cd "$DOMAIN_PATH" && eval "$_reload_cmd"
  4619. ); then
  4620. _info "$(__green "Reload success")"
  4621. else
  4622. _err "Reload error for :$Le_Domain"
  4623. fi
  4624. fi
  4625. }
  4626. __read_password() {
  4627. unset _pp
  4628. prompt="Enter Password:"
  4629. while IFS= read -p "$prompt" -r -s -n 1 char; do
  4630. if [ "$char" = $'\0' ]; then
  4631. break
  4632. fi
  4633. prompt='*'
  4634. _pp="$_pp$char"
  4635. done
  4636. echo "$_pp"
  4637. }
  4638. _install_win_taskscheduler() {
  4639. _lesh="$1"
  4640. _centry="$2"
  4641. _randomminute="$3"
  4642. if ! _exists cygpath; then
  4643. _err "cygpath not found"
  4644. return 1
  4645. fi
  4646. if ! _exists schtasks; then
  4647. _err "schtasks.exe is not found, are you on Windows?"
  4648. return 1
  4649. fi
  4650. _winbash="$(cygpath -w $(which bash))"
  4651. _debug _winbash "$_winbash"
  4652. if [ -z "$_winbash" ]; then
  4653. _err "can not find bash path"
  4654. return 1
  4655. fi
  4656. _myname="$(whoami)"
  4657. _debug "_myname" "$_myname"
  4658. if [ -z "$_myname" ]; then
  4659. _err "can not find my user name"
  4660. return 1
  4661. fi
  4662. _debug "_lesh" "$_lesh"
  4663. _info "To install scheduler task in your Windows account, you must input your windows password."
  4664. _info "$PROJECT_NAME doesn't save your password."
  4665. _info "Please input your Windows password for: $(__green "$_myname")"
  4666. _password="$(__read_password)"
  4667. #SCHTASKS.exe '/create' '/SC' 'DAILY' '/TN' "$_WINDOWS_SCHEDULER_NAME" '/F' '/ST' "00:$_randomminute" '/RU' "$_myname" '/RP' "$_password" '/TR' "$_winbash -l -c '$_lesh --cron --home \"$LE_WORKING_DIR\" $_centry'" >/dev/null
  4668. echo SCHTASKS.exe '/create' '/SC' 'DAILY' '/TN' "$_WINDOWS_SCHEDULER_NAME" '/F' '/ST' "00:$_randomminute" '/RU' "$_myname" '/RP' "$_password" '/TR' "\"$_winbash -l -c '$_lesh --cron --home \"$LE_WORKING_DIR\" $_centry'\"" | cmd.exe >/dev/null
  4669. echo
  4670. }
  4671. _uninstall_win_taskscheduler() {
  4672. if ! _exists schtasks; then
  4673. _err "schtasks.exe is not found, are you on Windows?"
  4674. return 1
  4675. fi
  4676. if ! echo SCHTASKS /query /tn "$_WINDOWS_SCHEDULER_NAME" | cmd.exe >/dev/null; then
  4677. _debug "scheduler $_WINDOWS_SCHEDULER_NAME is not found."
  4678. else
  4679. _info "Removing $_WINDOWS_SCHEDULER_NAME"
  4680. echo SCHTASKS /delete /f /tn "$_WINDOWS_SCHEDULER_NAME" | cmd.exe >/dev/null
  4681. fi
  4682. }
  4683. #confighome
  4684. installcronjob() {
  4685. _c_home="$1"
  4686. _initpath
  4687. _CRONTAB="crontab"
  4688. if [ -f "$LE_WORKING_DIR/$PROJECT_ENTRY" ]; then
  4689. lesh="\"$LE_WORKING_DIR\"/$PROJECT_ENTRY"
  4690. else
  4691. _err "Can not install cronjob, $PROJECT_ENTRY not found."
  4692. return 1
  4693. fi
  4694. if [ "$_c_home" ]; then
  4695. _c_entry="--config-home \"$_c_home\" "
  4696. fi
  4697. _t=$(_time)
  4698. random_minute=$(_math $_t % 60)
  4699. if ! _exists "$_CRONTAB" && _exists "fcrontab"; then
  4700. _CRONTAB="fcrontab"
  4701. fi
  4702. if ! _exists "$_CRONTAB"; then
  4703. if _exists cygpath && _exists schtasks.exe; then
  4704. _info "It seems you are on Windows, let's install Windows scheduler task."
  4705. if _install_win_taskscheduler "$lesh" "$_c_entry" "$random_minute"; then
  4706. _info "Install Windows scheduler task success."
  4707. return 0
  4708. else
  4709. _err "Install Windows scheduler task failed."
  4710. return 1
  4711. fi
  4712. fi
  4713. _err "crontab/fcrontab doesn't exist, so, we can not install cron jobs."
  4714. _err "All your certs will not be renewed automatically."
  4715. _err "You must add your own cron job to call '$PROJECT_ENTRY --cron' everyday."
  4716. return 1
  4717. fi
  4718. _info "Installing cron job"
  4719. if ! $_CRONTAB -l | grep "$PROJECT_ENTRY --cron"; then
  4720. if _exists uname && uname -a | grep SunOS >/dev/null; then
  4721. $_CRONTAB -l | {
  4722. cat
  4723. echo "$random_minute 0 * * * $lesh --cron --home \"$LE_WORKING_DIR\" $_c_entry> /dev/null"
  4724. } | $_CRONTAB --
  4725. else
  4726. $_CRONTAB -l | {
  4727. cat
  4728. echo "$random_minute 0 * * * $lesh --cron --home \"$LE_WORKING_DIR\" $_c_entry> /dev/null"
  4729. } | $_CRONTAB -
  4730. fi
  4731. fi
  4732. if [ "$?" != "0" ]; then
  4733. _err "Install cron job failed. You need to manually renew your certs."
  4734. _err "Or you can add cronjob by yourself:"
  4735. _err "$lesh --cron --home \"$LE_WORKING_DIR\" > /dev/null"
  4736. return 1
  4737. fi
  4738. }
  4739. uninstallcronjob() {
  4740. _CRONTAB="crontab"
  4741. if ! _exists "$_CRONTAB" && _exists "fcrontab"; then
  4742. _CRONTAB="fcrontab"
  4743. fi
  4744. if ! _exists "$_CRONTAB"; then
  4745. if _exists cygpath && _exists schtasks.exe; then
  4746. _info "It seems you are on Windows, let's uninstall Windows scheduler task."
  4747. if _uninstall_win_taskscheduler; then
  4748. _info "Uninstall Windows scheduler task success."
  4749. return 0
  4750. else
  4751. _err "Uninstall Windows scheduler task failed."
  4752. return 1
  4753. fi
  4754. fi
  4755. return
  4756. fi
  4757. _info "Removing cron job"
  4758. cr="$($_CRONTAB -l | grep "$PROJECT_ENTRY --cron")"
  4759. if [ "$cr" ]; then
  4760. if _exists uname && uname -a | grep solaris >/dev/null; then
  4761. $_CRONTAB -l | sed "/$PROJECT_ENTRY --cron/d" | $_CRONTAB --
  4762. else
  4763. $_CRONTAB -l | sed "/$PROJECT_ENTRY --cron/d" | $_CRONTAB -
  4764. fi
  4765. LE_WORKING_DIR="$(echo "$cr" | cut -d ' ' -f 9 | tr -d '"')"
  4766. _info LE_WORKING_DIR "$LE_WORKING_DIR"
  4767. if _contains "$cr" "--config-home"; then
  4768. LE_CONFIG_HOME="$(echo "$cr" | cut -d ' ' -f 11 | tr -d '"')"
  4769. _debug LE_CONFIG_HOME "$LE_CONFIG_HOME"
  4770. fi
  4771. fi
  4772. _initpath
  4773. }
  4774. revoke() {
  4775. Le_Domain="$1"
  4776. if [ -z "$Le_Domain" ]; then
  4777. _usage "Usage: $PROJECT_ENTRY --revoke -d domain.com [--ecc]"
  4778. return 1
  4779. fi
  4780. _isEcc="$2"
  4781. _initpath "$Le_Domain" "$_isEcc"
  4782. if [ ! -f "$DOMAIN_CONF" ]; then
  4783. _err "$Le_Domain is not a issued domain, skip."
  4784. return 1
  4785. fi
  4786. if [ ! -f "$CERT_PATH" ]; then
  4787. _err "Cert for $Le_Domain $CERT_PATH is not found, skip."
  4788. return 1
  4789. fi
  4790. cert="$(_getfile "${CERT_PATH}" "${BEGIN_CERT}" "${END_CERT}" | tr -d "\r\n" | _url_replace)"
  4791. if [ -z "$cert" ]; then
  4792. _err "Cert for $Le_Domain is empty found, skip."
  4793. return 1
  4794. fi
  4795. _initAPI
  4796. if [ "$ACME_VERSION" = "2" ]; then
  4797. data="{\"certificate\": \"$cert\"}"
  4798. else
  4799. data="{\"resource\": \"revoke-cert\", \"certificate\": \"$cert\"}"
  4800. fi
  4801. uri="${ACME_REVOKE_CERT}"
  4802. if [ -f "$CERT_KEY_PATH" ]; then
  4803. _info "Try domain key first."
  4804. if _send_signed_request "$uri" "$data" "" "$CERT_KEY_PATH"; then
  4805. if [ -z "$response" ]; then
  4806. _info "Revoke success."
  4807. rm -f "$CERT_PATH"
  4808. return 0
  4809. else
  4810. _err "Revoke error by domain key."
  4811. _err "$response"
  4812. fi
  4813. fi
  4814. else
  4815. _info "Domain key file doesn't exists."
  4816. fi
  4817. _info "Try account key."
  4818. if _send_signed_request "$uri" "$data" "" "$ACCOUNT_KEY_PATH"; then
  4819. if [ -z "$response" ]; then
  4820. _info "Revoke success."
  4821. rm -f "$CERT_PATH"
  4822. return 0
  4823. else
  4824. _err "Revoke error."
  4825. _debug "$response"
  4826. fi
  4827. fi
  4828. return 1
  4829. }
  4830. #domain ecc
  4831. remove() {
  4832. Le_Domain="$1"
  4833. if [ -z "$Le_Domain" ]; then
  4834. _usage "Usage: $PROJECT_ENTRY --remove -d domain.com [--ecc]"
  4835. return 1
  4836. fi
  4837. _isEcc="$2"
  4838. _initpath "$Le_Domain" "$_isEcc"
  4839. _removed_conf="$DOMAIN_CONF.removed"
  4840. if [ ! -f "$DOMAIN_CONF" ]; then
  4841. if [ -f "$_removed_conf" ]; then
  4842. _err "$Le_Domain is already removed, You can remove the folder by yourself: $DOMAIN_PATH"
  4843. else
  4844. _err "$Le_Domain is not a issued domain, skip."
  4845. fi
  4846. return 1
  4847. fi
  4848. if mv "$DOMAIN_CONF" "$_removed_conf"; then
  4849. _info "$Le_Domain is removed, the key and cert files are in $(__green $DOMAIN_PATH)"
  4850. _info "You can remove them by yourself."
  4851. return 0
  4852. else
  4853. _err "Remove $Le_Domain failed."
  4854. return 1
  4855. fi
  4856. }
  4857. #domain vtype
  4858. _deactivate() {
  4859. _d_domain="$1"
  4860. _d_type="$2"
  4861. _initpath
  4862. if [ "$ACME_VERSION" = "2" ]; then
  4863. _identifiers="{\"type\":\"dns\",\"value\":\"$_d_domain\"}"
  4864. if ! _send_signed_request "$ACME_NEW_ORDER" "{\"identifiers\": [$_identifiers]}"; then
  4865. _err "Can not get domain new order."
  4866. return 1
  4867. fi
  4868. _authorizations_seg="$(echo "$response" | _egrep_o '"authorizations" *: *\[[^\]*\]' | cut -d '[' -f 2 | tr -d ']' | tr -d '"')"
  4869. _debug2 _authorizations_seg "$_authorizations_seg"
  4870. if [ -z "$_authorizations_seg" ]; then
  4871. _err "_authorizations_seg not found."
  4872. _clearup
  4873. _on_issue_err "$_post_hook"
  4874. return 1
  4875. fi
  4876. authzUri="$_authorizations_seg"
  4877. _debug2 "authzUri" "$authzUri"
  4878. if ! _send_signed_request "$authzUri"; then
  4879. _err "get to authz error."
  4880. _err "_authorizations_seg" "$_authorizations_seg"
  4881. _err "authzUri" "$authzUri"
  4882. _clearup
  4883. _on_issue_err "$_post_hook"
  4884. return 1
  4885. fi
  4886. response="$(echo "$response" | _normalizeJson)"
  4887. _debug2 response "$response"
  4888. _URL_NAME="url"
  4889. else
  4890. if ! __get_domain_new_authz "$_d_domain"; then
  4891. _err "Can not get domain new authz token."
  4892. return 1
  4893. fi
  4894. authzUri="$(echo "$responseHeaders" | grep "^Location:" | _head_n 1 | cut -d ':' -f 2- | tr -d "\r\n")"
  4895. _debug "authzUri" "$authzUri"
  4896. if [ "$code" ] && [ ! "$code" = '201' ]; then
  4897. _err "new-authz error: $response"
  4898. return 1
  4899. fi
  4900. _URL_NAME="uri"
  4901. fi
  4902. entries="$(echo "$response" | _egrep_o "{ *\"type\":\"[^\"]*\", *\"status\": *\"valid\", *\"$_URL_NAME\"[^}]*")"
  4903. if [ -z "$entries" ]; then
  4904. _info "No valid entries found."
  4905. if [ -z "$thumbprint" ]; then
  4906. thumbprint="$(__calc_account_thumbprint)"
  4907. fi
  4908. _debug "Trigger validation."
  4909. vtype="$VTYPE_DNS"
  4910. entry="$(echo "$response" | _egrep_o '[^\{]*"type":"'$vtype'"[^\}]*')"
  4911. _debug entry "$entry"
  4912. if [ -z "$entry" ]; then
  4913. _err "Error, can not get domain token $d"
  4914. return 1
  4915. fi
  4916. token="$(echo "$entry" | _egrep_o '"token":"[^"]*' | cut -d : -f 2 | tr -d '"')"
  4917. _debug token "$token"
  4918. uri="$(echo "$entry" | _egrep_o "\"$_URL_NAME\":\"[^\"]*" | cut -d : -f 2,3 | tr -d '"')"
  4919. _debug uri "$uri"
  4920. keyauthorization="$token.$thumbprint"
  4921. _debug keyauthorization "$keyauthorization"
  4922. __trigger_validation "$uri" "$keyauthorization"
  4923. fi
  4924. _d_i=0
  4925. _d_max_retry=$(echo "$entries" | wc -l)
  4926. while [ "$_d_i" -lt "$_d_max_retry" ]; do
  4927. _info "Deactivate: $_d_domain"
  4928. _d_i="$(_math $_d_i + 1)"
  4929. entry="$(echo "$entries" | sed -n "${_d_i}p")"
  4930. _debug entry "$entry"
  4931. if [ -z "$entry" ]; then
  4932. _info "No more valid entry found."
  4933. break
  4934. fi
  4935. _vtype="$(echo "$entry" | _egrep_o '"type": *"[^"]*"' | cut -d : -f 2 | tr -d '"')"
  4936. _debug _vtype "$_vtype"
  4937. _info "Found $_vtype"
  4938. uri="$(echo "$entry" | _egrep_o "\"$_URL_NAME\":\"[^\"]*" | cut -d : -f 2,3 | tr -d '"')"
  4939. _debug uri "$uri"
  4940. if [ "$_d_type" ] && [ "$_d_type" != "$_vtype" ]; then
  4941. _info "Skip $_vtype"
  4942. continue
  4943. fi
  4944. _info "Deactivate: $_vtype"
  4945. if [ "$ACME_VERSION" = "2" ]; then
  4946. _djson="{\"status\":\"deactivated\"}"
  4947. else
  4948. _djson="{\"resource\": \"authz\", \"status\":\"deactivated\"}"
  4949. fi
  4950. if _send_signed_request "$authzUri" "$_djson" && _contains "$response" '"deactivated"'; then
  4951. _info "Deactivate: $_vtype success."
  4952. else
  4953. _err "Can not deactivate $_vtype."
  4954. break
  4955. fi
  4956. done
  4957. _debug "$_d_i"
  4958. if [ "$_d_i" -eq "$_d_max_retry" ]; then
  4959. _info "Deactivated success!"
  4960. else
  4961. _err "Deactivate failed."
  4962. fi
  4963. }
  4964. deactivate() {
  4965. _d_domain_list="$1"
  4966. _d_type="$2"
  4967. _initpath
  4968. _initAPI
  4969. _debug _d_domain_list "$_d_domain_list"
  4970. if [ -z "$(echo $_d_domain_list | cut -d , -f 1)" ]; then
  4971. _usage "Usage: $PROJECT_ENTRY --deactivate -d domain.com [-d domain.com]"
  4972. return 1
  4973. fi
  4974. for _d_dm in $(echo "$_d_domain_list" | tr ',' ' '); do
  4975. if [ -z "$_d_dm" ] || [ "$_d_dm" = "$NO_VALUE" ]; then
  4976. continue
  4977. fi
  4978. if ! _deactivate "$_d_dm" "$_d_type"; then
  4979. return 1
  4980. fi
  4981. done
  4982. }
  4983. # Detect profile file if not specified as environment variable
  4984. _detect_profile() {
  4985. if [ -n "$PROFILE" -a -f "$PROFILE" ]; then
  4986. echo "$PROFILE"
  4987. return
  4988. fi
  4989. DETECTED_PROFILE=''
  4990. SHELLTYPE="$(basename "/$SHELL")"
  4991. if [ "$SHELLTYPE" = "bash" ]; then
  4992. if [ -f "$HOME/.bashrc" ]; then
  4993. DETECTED_PROFILE="$HOME/.bashrc"
  4994. elif [ -f "$HOME/.bash_profile" ]; then
  4995. DETECTED_PROFILE="$HOME/.bash_profile"
  4996. fi
  4997. elif [ "$SHELLTYPE" = "zsh" ]; then
  4998. DETECTED_PROFILE="$HOME/.zshrc"
  4999. fi
  5000. if [ -z "$DETECTED_PROFILE" ]; then
  5001. if [ -f "$HOME/.profile" ]; then
  5002. DETECTED_PROFILE="$HOME/.profile"
  5003. elif [ -f "$HOME/.bashrc" ]; then
  5004. DETECTED_PROFILE="$HOME/.bashrc"
  5005. elif [ -f "$HOME/.bash_profile" ]; then
  5006. DETECTED_PROFILE="$HOME/.bash_profile"
  5007. elif [ -f "$HOME/.zshrc" ]; then
  5008. DETECTED_PROFILE="$HOME/.zshrc"
  5009. fi
  5010. fi
  5011. echo "$DETECTED_PROFILE"
  5012. }
  5013. _initconf() {
  5014. _initpath
  5015. if [ ! -f "$ACCOUNT_CONF_PATH" ]; then
  5016. echo "
  5017. #LOG_FILE=\"$DEFAULT_LOG_FILE\"
  5018. #LOG_LEVEL=1
  5019. #AUTO_UPGRADE=\"1\"
  5020. #NO_TIMESTAMP=1
  5021. " >"$ACCOUNT_CONF_PATH"
  5022. fi
  5023. }
  5024. # nocron
  5025. _precheck() {
  5026. _nocron="$1"
  5027. if ! _exists "curl" && ! _exists "wget"; then
  5028. _err "Please install curl or wget first, we need to access http resources."
  5029. return 1
  5030. fi
  5031. if [ -z "$_nocron" ]; then
  5032. if ! _exists "crontab" && ! _exists "fcrontab"; then
  5033. if _exists cygpath && _exists schtasks.exe; then
  5034. _info "It seems you are on Windows, we will install Windows scheduler task."
  5035. else
  5036. _err "It is recommended to install crontab first. try to install 'cron, crontab, crontabs or vixie-cron'."
  5037. _err "We need to set cron job to renew the certs automatically."
  5038. _err "Otherwise, your certs will not be able to be renewed automatically."
  5039. if [ -z "$FORCE" ]; then
  5040. _err "Please add '--force' and try install again to go without crontab."
  5041. _err "./$PROJECT_ENTRY --install --force"
  5042. return 1
  5043. fi
  5044. fi
  5045. fi
  5046. fi
  5047. if ! _exists "${ACME_OPENSSL_BIN:-openssl}"; then
  5048. _err "Please install openssl first. ACME_OPENSSL_BIN=$ACME_OPENSSL_BIN"
  5049. _err "We need openssl to generate keys."
  5050. return 1
  5051. fi
  5052. if ! _exists "socat"; then
  5053. _err "It is recommended to install socat first."
  5054. _err "We use socat for standalone server if you use standalone mode."
  5055. _err "If you don't use standalone mode, just ignore this warning."
  5056. fi
  5057. return 0
  5058. }
  5059. _setShebang() {
  5060. _file="$1"
  5061. _shebang="$2"
  5062. if [ -z "$_shebang" ]; then
  5063. _usage "Usage: file shebang"
  5064. return 1
  5065. fi
  5066. cp "$_file" "$_file.tmp"
  5067. echo "$_shebang" >"$_file"
  5068. sed -n 2,99999p "$_file.tmp" >>"$_file"
  5069. rm -f "$_file.tmp"
  5070. }
  5071. #confighome
  5072. _installalias() {
  5073. _c_home="$1"
  5074. _initpath
  5075. _envfile="$LE_WORKING_DIR/$PROJECT_ENTRY.env"
  5076. if [ "$_upgrading" ] && [ "$_upgrading" = "1" ]; then
  5077. echo "$(cat "$_envfile")" | sed "s|^LE_WORKING_DIR.*$||" >"$_envfile"
  5078. echo "$(cat "$_envfile")" | sed "s|^alias le.*$||" >"$_envfile"
  5079. echo "$(cat "$_envfile")" | sed "s|^alias le.sh.*$||" >"$_envfile"
  5080. fi
  5081. if [ "$_c_home" ]; then
  5082. _c_entry=" --config-home '$_c_home'"
  5083. fi
  5084. _setopt "$_envfile" "export LE_WORKING_DIR" "=" "\"$LE_WORKING_DIR\""
  5085. if [ "$_c_home" ]; then
  5086. _setopt "$_envfile" "export LE_CONFIG_HOME" "=" "\"$LE_CONFIG_HOME\""
  5087. else
  5088. _sed_i "/^export LE_CONFIG_HOME/d" "$_envfile"
  5089. fi
  5090. _setopt "$_envfile" "alias $PROJECT_ENTRY" "=" "\"$LE_WORKING_DIR/$PROJECT_ENTRY$_c_entry\""
  5091. _profile="$(_detect_profile)"
  5092. if [ "$_profile" ]; then
  5093. _debug "Found profile: $_profile"
  5094. _info "Installing alias to '$_profile'"
  5095. _setopt "$_profile" ". \"$_envfile\""
  5096. _info "OK, Close and reopen your terminal to start using $PROJECT_NAME"
  5097. else
  5098. _info "No profile is found, you will need to go into $LE_WORKING_DIR to use $PROJECT_NAME"
  5099. fi
  5100. #for csh
  5101. _cshfile="$LE_WORKING_DIR/$PROJECT_ENTRY.csh"
  5102. _csh_profile="$HOME/.cshrc"
  5103. if [ -f "$_csh_profile" ]; then
  5104. _info "Installing alias to '$_csh_profile'"
  5105. _setopt "$_cshfile" "setenv LE_WORKING_DIR" " " "\"$LE_WORKING_DIR\""
  5106. if [ "$_c_home" ]; then
  5107. _setopt "$_cshfile" "setenv LE_CONFIG_HOME" " " "\"$LE_CONFIG_HOME\""
  5108. else
  5109. _sed_i "/^setenv LE_CONFIG_HOME/d" "$_cshfile"
  5110. fi
  5111. _setopt "$_cshfile" "alias $PROJECT_ENTRY" " " "\"$LE_WORKING_DIR/$PROJECT_ENTRY$_c_entry\""
  5112. _setopt "$_csh_profile" "source \"$_cshfile\""
  5113. fi
  5114. #for tcsh
  5115. _tcsh_profile="$HOME/.tcshrc"
  5116. if [ -f "$_tcsh_profile" ]; then
  5117. _info "Installing alias to '$_tcsh_profile'"
  5118. _setopt "$_cshfile" "setenv LE_WORKING_DIR" " " "\"$LE_WORKING_DIR\""
  5119. if [ "$_c_home" ]; then
  5120. _setopt "$_cshfile" "setenv LE_CONFIG_HOME" " " "\"$LE_CONFIG_HOME\""
  5121. fi
  5122. _setopt "$_cshfile" "alias $PROJECT_ENTRY" " " "\"$LE_WORKING_DIR/$PROJECT_ENTRY$_c_entry\""
  5123. _setopt "$_tcsh_profile" "source \"$_cshfile\""
  5124. fi
  5125. }
  5126. # nocron confighome noprofile
  5127. install() {
  5128. if [ -z "$LE_WORKING_DIR" ]; then
  5129. LE_WORKING_DIR="$DEFAULT_INSTALL_HOME"
  5130. fi
  5131. _nocron="$1"
  5132. _c_home="$2"
  5133. _noprofile="$3"
  5134. if ! _initpath; then
  5135. _err "Install failed."
  5136. return 1
  5137. fi
  5138. if [ "$_nocron" ]; then
  5139. _debug "Skip install cron job"
  5140. fi
  5141. if [ "$ACME_IN_CRON" != "1" ]; then
  5142. if ! _precheck "$_nocron"; then
  5143. _err "Pre-check failed, can not install."
  5144. return 1
  5145. fi
  5146. fi
  5147. if [ -z "$_c_home" ] && [ "$LE_CONFIG_HOME" != "$LE_WORKING_DIR" ]; then
  5148. _info "Using config home: $LE_CONFIG_HOME"
  5149. _c_home="$LE_CONFIG_HOME"
  5150. fi
  5151. #convert from le
  5152. if [ -d "$HOME/.le" ]; then
  5153. for envfile in "le.env" "le.sh.env"; do
  5154. if [ -f "$HOME/.le/$envfile" ]; then
  5155. if grep "le.sh" "$HOME/.le/$envfile" >/dev/null; then
  5156. _upgrading="1"
  5157. _info "You are upgrading from le.sh"
  5158. _info "Renaming \"$HOME/.le\" to $LE_WORKING_DIR"
  5159. mv "$HOME/.le" "$LE_WORKING_DIR"
  5160. mv "$LE_WORKING_DIR/$envfile" "$LE_WORKING_DIR/$PROJECT_ENTRY.env"
  5161. break
  5162. fi
  5163. fi
  5164. done
  5165. fi
  5166. _info "Installing to $LE_WORKING_DIR"
  5167. if [ ! -d "$LE_WORKING_DIR" ]; then
  5168. if ! mkdir -p "$LE_WORKING_DIR"; then
  5169. _err "Can not create working dir: $LE_WORKING_DIR"
  5170. return 1
  5171. fi
  5172. chmod 700 "$LE_WORKING_DIR"
  5173. fi
  5174. if [ ! -d "$LE_CONFIG_HOME" ]; then
  5175. if ! mkdir -p "$LE_CONFIG_HOME"; then
  5176. _err "Can not create config dir: $LE_CONFIG_HOME"
  5177. return 1
  5178. fi
  5179. chmod 700 "$LE_CONFIG_HOME"
  5180. fi
  5181. cp "$PROJECT_ENTRY" "$LE_WORKING_DIR/" && chmod +x "$LE_WORKING_DIR/$PROJECT_ENTRY"
  5182. if [ "$?" != "0" ]; then
  5183. _err "Install failed, can not copy $PROJECT_ENTRY"
  5184. return 1
  5185. fi
  5186. _info "Installed to $LE_WORKING_DIR/$PROJECT_ENTRY"
  5187. if [ "$ACME_IN_CRON" != "1" ] && [ -z "$_noprofile" ]; then
  5188. _installalias "$_c_home"
  5189. fi
  5190. for subf in $_SUB_FOLDERS; do
  5191. if [ -d "$subf" ]; then
  5192. mkdir -p "$LE_WORKING_DIR/$subf"
  5193. cp "$subf"/* "$LE_WORKING_DIR"/"$subf"/
  5194. fi
  5195. done
  5196. if [ ! -f "$ACCOUNT_CONF_PATH" ]; then
  5197. _initconf
  5198. fi
  5199. if [ "$_DEFAULT_ACCOUNT_CONF_PATH" != "$ACCOUNT_CONF_PATH" ]; then
  5200. _setopt "$_DEFAULT_ACCOUNT_CONF_PATH" "ACCOUNT_CONF_PATH" "=" "\"$ACCOUNT_CONF_PATH\""
  5201. fi
  5202. if [ "$_DEFAULT_CERT_HOME" != "$CERT_HOME" ]; then
  5203. _saveaccountconf "CERT_HOME" "$CERT_HOME"
  5204. fi
  5205. if [ "$_DEFAULT_ACCOUNT_KEY_PATH" != "$ACCOUNT_KEY_PATH" ]; then
  5206. _saveaccountconf "ACCOUNT_KEY_PATH" "$ACCOUNT_KEY_PATH"
  5207. fi
  5208. if [ -z "$_nocron" ]; then
  5209. installcronjob "$_c_home"
  5210. fi
  5211. if [ -z "$NO_DETECT_SH" ]; then
  5212. #Modify shebang
  5213. if _exists bash; then
  5214. _bash_path="$(bash -c "command -v bash 2>/dev/null")"
  5215. if [ -z "$_bash_path" ]; then
  5216. _bash_path="$(bash -c 'echo $SHELL')"
  5217. fi
  5218. fi
  5219. if [ "$_bash_path" ]; then
  5220. _info "Good, bash is found, so change the shebang to use bash as preferred."
  5221. _shebang='#!'"$_bash_path"
  5222. _setShebang "$LE_WORKING_DIR/$PROJECT_ENTRY" "$_shebang"
  5223. for subf in $_SUB_FOLDERS; do
  5224. if [ -d "$LE_WORKING_DIR/$subf" ]; then
  5225. for _apifile in "$LE_WORKING_DIR/$subf/"*.sh; do
  5226. _setShebang "$_apifile" "$_shebang"
  5227. done
  5228. fi
  5229. done
  5230. fi
  5231. fi
  5232. _info OK
  5233. }
  5234. # nocron
  5235. uninstall() {
  5236. _nocron="$1"
  5237. if [ -z "$_nocron" ]; then
  5238. uninstallcronjob
  5239. fi
  5240. _initpath
  5241. _uninstallalias
  5242. rm -f "$LE_WORKING_DIR/$PROJECT_ENTRY"
  5243. _info "The keys and certs are in \"$(__green "$LE_CONFIG_HOME")\", you can remove them by yourself."
  5244. }
  5245. _uninstallalias() {
  5246. _initpath
  5247. _profile="$(_detect_profile)"
  5248. if [ "$_profile" ]; then
  5249. _info "Uninstalling alias from: '$_profile'"
  5250. text="$(cat "$_profile")"
  5251. echo "$text" | sed "s|^.*\"$LE_WORKING_DIR/$PROJECT_NAME.env\"$||" >"$_profile"
  5252. fi
  5253. _csh_profile="$HOME/.cshrc"
  5254. if [ -f "$_csh_profile" ]; then
  5255. _info "Uninstalling alias from: '$_csh_profile'"
  5256. text="$(cat "$_csh_profile")"
  5257. echo "$text" | sed "s|^.*\"$LE_WORKING_DIR/$PROJECT_NAME.csh\"$||" >"$_csh_profile"
  5258. fi
  5259. _tcsh_profile="$HOME/.tcshrc"
  5260. if [ -f "$_tcsh_profile" ]; then
  5261. _info "Uninstalling alias from: '$_csh_profile'"
  5262. text="$(cat "$_tcsh_profile")"
  5263. echo "$text" | sed "s|^.*\"$LE_WORKING_DIR/$PROJECT_NAME.csh\"$||" >"$_tcsh_profile"
  5264. fi
  5265. }
  5266. cron() {
  5267. export ACME_IN_CRON=1
  5268. _initpath
  5269. _info "$(__green "===Starting cron===")"
  5270. if [ "$AUTO_UPGRADE" = "1" ]; then
  5271. export LE_WORKING_DIR
  5272. (
  5273. if ! upgrade; then
  5274. _err "Cron:Upgrade failed!"
  5275. return 1
  5276. fi
  5277. )
  5278. . "$LE_WORKING_DIR/$PROJECT_ENTRY" >/dev/null
  5279. if [ -t 1 ]; then
  5280. __INTERACTIVE="1"
  5281. fi
  5282. _info "Auto upgraded to: $VER"
  5283. fi
  5284. renewAll
  5285. _ret="$?"
  5286. ACME_IN_CRON=""
  5287. _info "$(__green "===End cron===")"
  5288. exit $_ret
  5289. }
  5290. version() {
  5291. echo "$PROJECT"
  5292. echo "v$VER"
  5293. }
  5294. # subject content hooks code
  5295. _send_notify() {
  5296. _nsubject="$1"
  5297. _ncontent="$2"
  5298. _nhooks="$3"
  5299. _nerror="$4"
  5300. if [ "$NOTIFY_LEVEL" = "$NOTIFY_LEVEL_DISABLE" ]; then
  5301. _debug "The NOTIFY_LEVEL is $NOTIFY_LEVEL, disabled, just return."
  5302. return 0
  5303. fi
  5304. if [ -z "$_nhooks" ]; then
  5305. _debug "The NOTIFY_HOOK is empty, just return."
  5306. return 0
  5307. fi
  5308. _send_err=0
  5309. for _n_hook in $(echo "$_nhooks" | tr ',' " "); do
  5310. _n_hook_file="$(_findHook "" $_SUB_FOLDER_NOTIFY "$_n_hook")"
  5311. _info "Sending via: $_n_hook"
  5312. _debug "Found $_n_hook_file for $_n_hook"
  5313. if [ -z "$_n_hook_file" ]; then
  5314. _err "Can not find the hook file for $_n_hook"
  5315. continue
  5316. fi
  5317. if ! (
  5318. if ! . "$_n_hook_file"; then
  5319. _err "Load file $_n_hook_file error. Please check your api file and try again."
  5320. return 1
  5321. fi
  5322. d_command="${_n_hook}_send"
  5323. if ! _exists "$d_command"; then
  5324. _err "It seems that your api file is not correct, it must have a function named: $d_command"
  5325. return 1
  5326. fi
  5327. if ! $d_command "$_nsubject" "$_ncontent" "$_nerror"; then
  5328. _err "Error send message by $d_command"
  5329. return 1
  5330. fi
  5331. return 0
  5332. ); then
  5333. _err "Set $_n_hook_file error."
  5334. _send_err=1
  5335. else
  5336. _info "$_n_hook $(__green Success)"
  5337. fi
  5338. done
  5339. return $_send_err
  5340. }
  5341. # hook
  5342. _set_notify_hook() {
  5343. _nhooks="$1"
  5344. _test_subject="Hello, this is a notification from $PROJECT_NAME"
  5345. _test_content="If you receive this message, your notification works."
  5346. _send_notify "$_test_subject" "$_test_content" "$_nhooks" 0
  5347. }
  5348. #[hook] [level] [mode]
  5349. setnotify() {
  5350. _nhook="$1"
  5351. _nlevel="$2"
  5352. _nmode="$3"
  5353. _initpath
  5354. if [ -z "$_nhook$_nlevel$_nmode" ]; then
  5355. _usage "Usage: $PROJECT_ENTRY --set-notify [--notify-hook mailgun] [--notify-level $NOTIFY_LEVEL_DEFAULT] [--notify-mode $NOTIFY_MODE_DEFAULT]"
  5356. _usage "$_NOTIFY_WIKI"
  5357. return 1
  5358. fi
  5359. if [ "$_nlevel" ]; then
  5360. _info "Set notify level to: $_nlevel"
  5361. export "NOTIFY_LEVEL=$_nlevel"
  5362. _saveaccountconf "NOTIFY_LEVEL" "$NOTIFY_LEVEL"
  5363. fi
  5364. if [ "$_nmode" ]; then
  5365. _info "Set notify mode to: $_nmode"
  5366. export "NOTIFY_MODE=$_nmode"
  5367. _saveaccountconf "NOTIFY_MODE" "$NOTIFY_MODE"
  5368. fi
  5369. if [ "$_nhook" ]; then
  5370. _info "Set notify hook to: $_nhook"
  5371. if [ "$_nhook" = "$NO_VALUE" ]; then
  5372. _info "Clear notify hook"
  5373. _clearaccountconf "NOTIFY_HOOK"
  5374. else
  5375. if _set_notify_hook "$_nhook"; then
  5376. export NOTIFY_HOOK="$_nhook"
  5377. _saveaccountconf "NOTIFY_HOOK" "$NOTIFY_HOOK"
  5378. return 0
  5379. else
  5380. _err "Can not set notify hook to: $_nhook"
  5381. return 1
  5382. fi
  5383. fi
  5384. fi
  5385. }
  5386. showhelp() {
  5387. _initpath
  5388. version
  5389. echo "Usage: $PROJECT_ENTRY command ...[parameters]....
  5390. Commands:
  5391. --help, -h Show this help message.
  5392. --version, -v Show version info.
  5393. --install Install $PROJECT_NAME to your system.
  5394. --uninstall Uninstall $PROJECT_NAME, and uninstall the cron job.
  5395. --upgrade Upgrade $PROJECT_NAME to the latest code from $PROJECT.
  5396. --issue Issue a cert.
  5397. --signcsr Issue a cert from an existing csr.
  5398. --deploy Deploy the cert to your server.
  5399. --install-cert Install the issued cert to apache/nginx or any other server.
  5400. --renew, -r Renew a cert.
  5401. --renew-all Renew all the certs.
  5402. --revoke Revoke a cert.
  5403. --remove Remove the cert from list of certs known to $PROJECT_NAME.
  5404. --list List all the certs.
  5405. --showcsr Show the content of a csr.
  5406. --install-cronjob Install the cron job to renew certs, you don't need to call this. The 'install' command can automatically install the cron job.
  5407. --uninstall-cronjob Uninstall the cron job. The 'uninstall' command can do this automatically.
  5408. --cron Run cron job to renew all the certs.
  5409. --toPkcs Export the certificate and key to a pfx file.
  5410. --toPkcs8 Convert to pkcs8 format.
  5411. --update-account Update account info.
  5412. --register-account Register account key.
  5413. --deactivate-account Deactivate the account.
  5414. --create-account-key Create an account private key, professional use.
  5415. --create-domain-key Create an domain private key, professional use.
  5416. --createCSR, -ccsr Create CSR , professional use.
  5417. --deactivate Deactivate the domain authz, professional use.
  5418. --set-notify Set the cron notification hook, level or mode.
  5419. Parameters:
  5420. --domain, -d domain.tld Specifies a domain, used to issue, renew or revoke etc.
  5421. --challenge-alias domain.tld The challenge domain alias for DNS alias mode: $_DNS_ALIAS_WIKI
  5422. --domain-alias domain.tld The domain alias for DNS alias mode: $_DNS_ALIAS_WIKI
  5423. --force, -f Used to force to install or force to renew a cert immediately.
  5424. --staging, --test Use staging server, just for test.
  5425. --debug Output debug info.
  5426. --output-insecure Output all the sensitive messages. By default all the credentials/sensitive messages are hidden from the output/debug/log for security.
  5427. --webroot, -w /path/to/webroot Specifies the web root folder for web root mode.
  5428. --standalone Use standalone mode.
  5429. --alpn Use standalone alpn mode.
  5430. --stateless Use stateless mode, see: $_STATELESS_WIKI
  5431. --apache Use apache mode.
  5432. --dns [dns_cf|dns_dp|dns_cx|/path/to/api/file] Use dns mode or dns api.
  5433. --dnssleep [$DEFAULT_DNS_SLEEP] The time in seconds to wait for all the txt records to take effect in dns api mode. Default $DEFAULT_DNS_SLEEP seconds.
  5434. --keylength, -k [2048] Specifies the domain key length: 2048, 3072, 4096, 8192 or ec-256, ec-384, ec-521.
  5435. --accountkeylength, -ak [2048] Specifies the account key length: 2048, 3072, 4096
  5436. --log [/path/to/logfile] Specifies the log file. The default is: \"$DEFAULT_LOG_FILE\" if you don't give a file path here.
  5437. --log-level 1|2 Specifies the log level, default is 1.
  5438. --syslog [0|3|6|7] Syslog level, 0: disable syslog, 3: error, 6: info, 7: debug.
  5439. These parameters are to install the cert to nginx/apache or any other server after issue/renew a cert:
  5440. --cert-file After issue/renew, the cert will be copied to this path.
  5441. --key-file After issue/renew, the key will be copied to this path.
  5442. --ca-file After issue/renew, the intermediate cert will be copied to this path.
  5443. --fullchain-file After issue/renew, the fullchain cert will be copied to this path.
  5444. --reloadcmd \"service nginx reload\" After issue/renew, it's used to reload the server.
  5445. --server SERVER ACME Directory Resource URI. (default: $DEFAULT_CA)
  5446. --accountconf Specifies a customized account config file.
  5447. --home Specifies the home dir for $PROJECT_NAME.
  5448. --cert-home Specifies the home dir to save all the certs, only valid for '--install' command.
  5449. --config-home Specifies the home dir to save all the configurations.
  5450. --useragent Specifies the user agent string. it will be saved for future use too.
  5451. --accountemail Specifies the account email, only valid for the '--install' and '--update-account' command.
  5452. --accountkey Specifies the account key path, only valid for the '--install' command.
  5453. --days Specifies the days to renew the cert when using '--issue' command. The default value is $DEFAULT_RENEW days.
  5454. --httpport Specifies the standalone listening port. Only valid if the server is behind a reverse proxy or load balancer.
  5455. --tlsport Specifies the standalone tls listening port. Only valid if the server is behind a reverse proxy or load balancer.
  5456. --local-address Specifies the standalone/tls server listening address, in case you have multiple ip addresses.
  5457. --listraw Only used for '--list' command, list the certs in raw format.
  5458. --stopRenewOnError, -se Only valid for '--renew-all' command. Stop if one cert has error in renewal.
  5459. --insecure Do not check the server certificate, in some devices, the api server's certificate may not be trusted.
  5460. --ca-bundle Specifies the path to the CA certificate bundle to verify api server's certificate.
  5461. --ca-path Specifies directory containing CA certificates in PEM format, used by wget or curl.
  5462. --nocron Only valid for '--install' command, which means: do not install the default cron job. In this case, the certs will not be renewed automatically.
  5463. --noprofile Only valid for '--install' command, which means: do not install aliases to user profile.
  5464. --no-color Do not output color text.
  5465. --force-color Force output of color text. Useful for non-interactive use with the aha tool for HTML E-Mails.
  5466. --ecc Specifies to use the ECC cert. Valid for '--install-cert', '--renew', '--revoke', '--toPkcs' and '--createCSR'
  5467. --csr Specifies the input csr.
  5468. --pre-hook Command to be run before obtaining any certificates.
  5469. --post-hook Command to be run after attempting to obtain/renew certificates. No matter the obtain/renew is success or failed.
  5470. --renew-hook Command to be run once for each successfully renewed certificate.
  5471. --deploy-hook The hook file to deploy cert
  5472. --ocsp-must-staple, --ocsp Generate ocsp must Staple extension.
  5473. --always-force-new-domain-key Generate new domain key when renewal. Otherwise, the domain key is not changed by default.
  5474. --auto-upgrade [0|1] Valid for '--upgrade' command, indicating whether to upgrade automatically in future.
  5475. --listen-v4 Force standalone/tls server to listen at ipv4.
  5476. --listen-v6 Force standalone/tls server to listen at ipv6.
  5477. --openssl-bin Specifies a custom openssl bin location.
  5478. --use-wget Force to use wget, if you have both curl and wget installed.
  5479. --yes-I-know-dns-manual-mode-enough-go-ahead-please Force to use dns manual mode: $_DNS_MANUAL_WIKI
  5480. --branch, -b Only valid for '--upgrade' command, specifies the branch name to upgrade to.
  5481. --notify-level 0|1|2|3 Set the notification level: Default value is $NOTIFY_LEVEL_DEFAULT.
  5482. 0: disabled, no notification will be sent.
  5483. 1: send notifications only when there is an error.
  5484. 2: send notifications when a cert is successfully renewed, or there is an error.
  5485. 3: send notifications when a cert is skipped, renewed, or error.
  5486. --notify-mode 0|1 Set notification mode. Default value is $NOTIFY_MODE_DEFAULT.
  5487. 0: Bulk mode. Send all the domain's notifications in one message(mail).
  5488. 1: Cert mode. Send a message for every single cert.
  5489. --notify-hook [hookname] Set the notify hook
  5490. "
  5491. }
  5492. # nocron noprofile
  5493. _installOnline() {
  5494. _info "Installing from online archive."
  5495. _nocron="$1"
  5496. _noprofile="$2"
  5497. if [ ! "$BRANCH" ]; then
  5498. BRANCH="master"
  5499. fi
  5500. target="$PROJECT/archive/$BRANCH.tar.gz"
  5501. _info "Downloading $target"
  5502. localname="$BRANCH.tar.gz"
  5503. if ! _get "$target" >$localname; then
  5504. _err "Download error."
  5505. return 1
  5506. fi
  5507. (
  5508. _info "Extracting $localname"
  5509. if ! (tar xzf $localname || gtar xzf $localname); then
  5510. _err "Extraction error."
  5511. exit 1
  5512. fi
  5513. cd "$PROJECT_NAME-$BRANCH"
  5514. chmod +x $PROJECT_ENTRY
  5515. if ./$PROJECT_ENTRY install "$_nocron" "" "$_noprofile"; then
  5516. _info "Install success!"
  5517. _initpath
  5518. _saveaccountconf "UPGRADE_HASH" "$(_getMasterHash)"
  5519. fi
  5520. cd ..
  5521. rm -rf "$PROJECT_NAME-$BRANCH"
  5522. rm -f "$localname"
  5523. )
  5524. }
  5525. _getMasterHash() {
  5526. _b="$BRANCH"
  5527. if [ -z "$_b" ]; then
  5528. _b="master"
  5529. fi
  5530. _hash_url="https://api.github.com/repos/acmesh-official/$PROJECT_NAME/git/refs/heads/$_b"
  5531. _get $_hash_url | tr -d "\r\n" | tr '{},' '\n' | grep '"sha":' | cut -d '"' -f 4
  5532. }
  5533. upgrade() {
  5534. if (
  5535. _initpath
  5536. [ -z "$FORCE" ] && [ "$(_getMasterHash)" = "$(_readaccountconf "UPGRADE_HASH")" ] && _info "Already uptodate!" && exit 0
  5537. export LE_WORKING_DIR
  5538. cd "$LE_WORKING_DIR"
  5539. _installOnline "nocron" "noprofile"
  5540. ); then
  5541. _info "Upgrade success!"
  5542. exit 0
  5543. else
  5544. _err "Upgrade failed!"
  5545. exit 1
  5546. fi
  5547. }
  5548. _processAccountConf() {
  5549. if [ "$_useragent" ]; then
  5550. _saveaccountconf "USER_AGENT" "$_useragent"
  5551. elif [ "$USER_AGENT" ] && [ "$USER_AGENT" != "$DEFAULT_USER_AGENT" ]; then
  5552. _saveaccountconf "USER_AGENT" "$USER_AGENT"
  5553. fi
  5554. if [ "$_accountemail" ]; then
  5555. _saveaccountconf "ACCOUNT_EMAIL" "$_accountemail"
  5556. elif [ "$ACCOUNT_EMAIL" ] && [ "$ACCOUNT_EMAIL" != "$DEFAULT_ACCOUNT_EMAIL" ]; then
  5557. _saveaccountconf "ACCOUNT_EMAIL" "$ACCOUNT_EMAIL"
  5558. fi
  5559. if [ "$_openssl_bin" ]; then
  5560. _saveaccountconf "ACME_OPENSSL_BIN" "$_openssl_bin"
  5561. elif [ "$ACME_OPENSSL_BIN" ] && [ "$ACME_OPENSSL_BIN" != "$DEFAULT_OPENSSL_BIN" ]; then
  5562. _saveaccountconf "ACME_OPENSSL_BIN" "$ACME_OPENSSL_BIN"
  5563. fi
  5564. if [ "$_auto_upgrade" ]; then
  5565. _saveaccountconf "AUTO_UPGRADE" "$_auto_upgrade"
  5566. elif [ "$AUTO_UPGRADE" ]; then
  5567. _saveaccountconf "AUTO_UPGRADE" "$AUTO_UPGRADE"
  5568. fi
  5569. if [ "$_use_wget" ]; then
  5570. _saveaccountconf "ACME_USE_WGET" "$_use_wget"
  5571. elif [ "$ACME_USE_WGET" ]; then
  5572. _saveaccountconf "ACME_USE_WGET" "$ACME_USE_WGET"
  5573. fi
  5574. }
  5575. _checkSudo() {
  5576. if [ "$SUDO_GID" ] && [ "$SUDO_COMMAND" ] && [ "$SUDO_USER" ] && [ "$SUDO_UID" ]; then
  5577. if [ "$SUDO_USER" = "root" ] && [ "$SUDO_UID" = "0" ]; then
  5578. #it's root using sudo, no matter it's using sudo or not, just fine
  5579. return 0
  5580. fi
  5581. if [ "$SUDO_COMMAND" = "/bin/su" ] || [ "$SUDO_COMMAND" = "/bin/bash" ]; then
  5582. #it's a normal user doing "sudo su", or `sudo -i` or `sudo -s`
  5583. #fine
  5584. return 0
  5585. fi
  5586. #otherwise
  5587. return 1
  5588. fi
  5589. return 0
  5590. }
  5591. _process() {
  5592. _CMD=""
  5593. _domain=""
  5594. _altdomains="$NO_VALUE"
  5595. _webroot=""
  5596. _challenge_alias=""
  5597. _keylength=""
  5598. _accountkeylength=""
  5599. _cert_file=""
  5600. _key_file=""
  5601. _ca_file=""
  5602. _fullchain_file=""
  5603. _reloadcmd=""
  5604. _password=""
  5605. _accountconf=""
  5606. _useragent=""
  5607. _accountemail=""
  5608. _accountkey=""
  5609. _certhome=""
  5610. _confighome=""
  5611. _httpport=""
  5612. _tlsport=""
  5613. _dnssleep=""
  5614. _listraw=""
  5615. _stopRenewOnError=""
  5616. #_insecure=""
  5617. _ca_bundle=""
  5618. _ca_path=""
  5619. _nocron=""
  5620. _noprofile=""
  5621. _ecc=""
  5622. _csr=""
  5623. _pre_hook=""
  5624. _post_hook=""
  5625. _renew_hook=""
  5626. _deploy_hook=""
  5627. _logfile=""
  5628. _log=""
  5629. _local_address=""
  5630. _log_level=""
  5631. _auto_upgrade=""
  5632. _listen_v4=""
  5633. _listen_v6=""
  5634. _openssl_bin=""
  5635. _syslog=""
  5636. _use_wget=""
  5637. _server=""
  5638. _notify_hook=""
  5639. _notify_level=""
  5640. _notify_mode=""
  5641. while [ ${#} -gt 0 ]; do
  5642. case "${1}" in
  5643. --help | -h)
  5644. showhelp
  5645. return
  5646. ;;
  5647. --version | -v)
  5648. version
  5649. return
  5650. ;;
  5651. --install)
  5652. _CMD="install"
  5653. ;;
  5654. --uninstall)
  5655. _CMD="uninstall"
  5656. ;;
  5657. --upgrade)
  5658. _CMD="upgrade"
  5659. ;;
  5660. --issue)
  5661. _CMD="issue"
  5662. ;;
  5663. --deploy)
  5664. _CMD="deploy"
  5665. ;;
  5666. --signcsr)
  5667. _CMD="signcsr"
  5668. ;;
  5669. --showcsr)
  5670. _CMD="showcsr"
  5671. ;;
  5672. --installcert | -i | --install-cert)
  5673. _CMD="installcert"
  5674. ;;
  5675. --renew | -r)
  5676. _CMD="renew"
  5677. ;;
  5678. --renewAll | --renewall | --renew-all)
  5679. _CMD="renewAll"
  5680. ;;
  5681. --revoke)
  5682. _CMD="revoke"
  5683. ;;
  5684. --remove)
  5685. _CMD="remove"
  5686. ;;
  5687. --list)
  5688. _CMD="list"
  5689. ;;
  5690. --installcronjob | --install-cronjob)
  5691. _CMD="installcronjob"
  5692. ;;
  5693. --uninstallcronjob | --uninstall-cronjob)
  5694. _CMD="uninstallcronjob"
  5695. ;;
  5696. --cron)
  5697. _CMD="cron"
  5698. ;;
  5699. --toPkcs)
  5700. _CMD="toPkcs"
  5701. ;;
  5702. --toPkcs8)
  5703. _CMD="toPkcs8"
  5704. ;;
  5705. --createAccountKey | --createaccountkey | -cak | --create-account-key)
  5706. _CMD="createAccountKey"
  5707. ;;
  5708. --createDomainKey | --createdomainkey | -cdk | --create-domain-key)
  5709. _CMD="createDomainKey"
  5710. ;;
  5711. --createCSR | --createcsr | -ccr)
  5712. _CMD="createCSR"
  5713. ;;
  5714. --deactivate)
  5715. _CMD="deactivate"
  5716. ;;
  5717. --updateaccount | --update-account)
  5718. _CMD="updateaccount"
  5719. ;;
  5720. --registeraccount | --register-account)
  5721. _CMD="registeraccount"
  5722. ;;
  5723. --deactivate-account)
  5724. _CMD="deactivateaccount"
  5725. ;;
  5726. --set-notify)
  5727. _CMD="setnotify"
  5728. ;;
  5729. --domain | -d)
  5730. _dvalue="$2"
  5731. if [ "$_dvalue" ]; then
  5732. if _startswith "$_dvalue" "-"; then
  5733. _err "'$_dvalue' is not a valid domain for parameter '$1'"
  5734. return 1
  5735. fi
  5736. if _is_idn "$_dvalue" && ! _exists idn; then
  5737. _err "It seems that $_dvalue is an IDN( Internationalized Domain Names), please install 'idn' command first."
  5738. return 1
  5739. fi
  5740. if _startswith "$_dvalue" "*."; then
  5741. _debug "Wildcard domain"
  5742. export ACME_VERSION=2
  5743. fi
  5744. if [ -z "$_domain" ]; then
  5745. _domain="$_dvalue"
  5746. else
  5747. if [ "$_altdomains" = "$NO_VALUE" ]; then
  5748. _altdomains="$_dvalue"
  5749. else
  5750. _altdomains="$_altdomains,$_dvalue"
  5751. fi
  5752. fi
  5753. fi
  5754. shift
  5755. ;;
  5756. --force | -f)
  5757. FORCE="1"
  5758. ;;
  5759. --staging | --test)
  5760. STAGE="1"
  5761. ;;
  5762. --server)
  5763. ACME_DIRECTORY="$2"
  5764. _server="$ACME_DIRECTORY"
  5765. export ACME_DIRECTORY
  5766. shift
  5767. ;;
  5768. --debug)
  5769. if [ -z "$2" ] || _startswith "$2" "-"; then
  5770. DEBUG="$DEBUG_LEVEL_DEFAULT"
  5771. else
  5772. DEBUG="$2"
  5773. shift
  5774. fi
  5775. ;;
  5776. --output-insecure)
  5777. export OUTPUT_INSECURE=1
  5778. ;;
  5779. --webroot | -w)
  5780. wvalue="$2"
  5781. if [ -z "$_webroot" ]; then
  5782. _webroot="$wvalue"
  5783. else
  5784. _webroot="$_webroot,$wvalue"
  5785. fi
  5786. shift
  5787. ;;
  5788. --challenge-alias)
  5789. cvalue="$2"
  5790. _challenge_alias="$_challenge_alias$cvalue,"
  5791. shift
  5792. ;;
  5793. --domain-alias)
  5794. cvalue="$DNS_ALIAS_PREFIX$2"
  5795. _challenge_alias="$_challenge_alias$cvalue,"
  5796. shift
  5797. ;;
  5798. --standalone)
  5799. wvalue="$NO_VALUE"
  5800. if [ -z "$_webroot" ]; then
  5801. _webroot="$wvalue"
  5802. else
  5803. _webroot="$_webroot,$wvalue"
  5804. fi
  5805. ;;
  5806. --alpn)
  5807. wvalue="$W_ALPN"
  5808. if [ -z "$_webroot" ]; then
  5809. _webroot="$wvalue"
  5810. else
  5811. _webroot="$_webroot,$wvalue"
  5812. fi
  5813. ;;
  5814. --stateless)
  5815. wvalue="$MODE_STATELESS"
  5816. if [ -z "$_webroot" ]; then
  5817. _webroot="$wvalue"
  5818. else
  5819. _webroot="$_webroot,$wvalue"
  5820. fi
  5821. ;;
  5822. --local-address)
  5823. lvalue="$2"
  5824. _local_address="$_local_address$lvalue,"
  5825. shift
  5826. ;;
  5827. --apache)
  5828. wvalue="apache"
  5829. if [ -z "$_webroot" ]; then
  5830. _webroot="$wvalue"
  5831. else
  5832. _webroot="$_webroot,$wvalue"
  5833. fi
  5834. ;;
  5835. --nginx)
  5836. wvalue="$NGINX"
  5837. if [ "$2" ] && ! _startswith "$2" "-"; then
  5838. wvalue="$NGINX$2"
  5839. shift
  5840. fi
  5841. if [ -z "$_webroot" ]; then
  5842. _webroot="$wvalue"
  5843. else
  5844. _webroot="$_webroot,$wvalue"
  5845. fi
  5846. ;;
  5847. --dns)
  5848. wvalue="$W_DNS"
  5849. if [ "$2" ] && ! _startswith "$2" "-"; then
  5850. wvalue="$2"
  5851. shift
  5852. fi
  5853. if [ -z "$_webroot" ]; then
  5854. _webroot="$wvalue"
  5855. else
  5856. _webroot="$_webroot,$wvalue"
  5857. fi
  5858. ;;
  5859. --dnssleep)
  5860. _dnssleep="$2"
  5861. Le_DNSSleep="$_dnssleep"
  5862. shift
  5863. ;;
  5864. --keylength | -k)
  5865. _keylength="$2"
  5866. shift
  5867. ;;
  5868. --accountkeylength | -ak)
  5869. _accountkeylength="$2"
  5870. shift
  5871. ;;
  5872. --cert-file | --certpath)
  5873. _cert_file="$2"
  5874. shift
  5875. ;;
  5876. --key-file | --keypath)
  5877. _key_file="$2"
  5878. shift
  5879. ;;
  5880. --ca-file | --capath)
  5881. _ca_file="$2"
  5882. shift
  5883. ;;
  5884. --fullchain-file | --fullchainpath)
  5885. _fullchain_file="$2"
  5886. shift
  5887. ;;
  5888. --reloadcmd | --reloadCmd)
  5889. _reloadcmd="$2"
  5890. shift
  5891. ;;
  5892. --password)
  5893. _password="$2"
  5894. shift
  5895. ;;
  5896. --accountconf)
  5897. _accountconf="$2"
  5898. ACCOUNT_CONF_PATH="$_accountconf"
  5899. shift
  5900. ;;
  5901. --home)
  5902. LE_WORKING_DIR="$2"
  5903. shift
  5904. ;;
  5905. --certhome | --cert-home)
  5906. _certhome="$2"
  5907. CERT_HOME="$_certhome"
  5908. shift
  5909. ;;
  5910. --config-home)
  5911. _confighome="$2"
  5912. LE_CONFIG_HOME="$_confighome"
  5913. shift
  5914. ;;
  5915. --useragent)
  5916. _useragent="$2"
  5917. USER_AGENT="$_useragent"
  5918. shift
  5919. ;;
  5920. --accountemail)
  5921. _accountemail="$2"
  5922. ACCOUNT_EMAIL="$_accountemail"
  5923. shift
  5924. ;;
  5925. --accountkey)
  5926. _accountkey="$2"
  5927. ACCOUNT_KEY_PATH="$_accountkey"
  5928. shift
  5929. ;;
  5930. --days)
  5931. _days="$2"
  5932. Le_RenewalDays="$_days"
  5933. shift
  5934. ;;
  5935. --httpport)
  5936. _httpport="$2"
  5937. Le_HTTPPort="$_httpport"
  5938. shift
  5939. ;;
  5940. --tlsport)
  5941. _tlsport="$2"
  5942. Le_TLSPort="$_tlsport"
  5943. shift
  5944. ;;
  5945. --listraw)
  5946. _listraw="raw"
  5947. ;;
  5948. --stopRenewOnError | --stoprenewonerror | -se)
  5949. _stopRenewOnError="1"
  5950. ;;
  5951. --insecure)
  5952. #_insecure="1"
  5953. HTTPS_INSECURE="1"
  5954. ;;
  5955. --ca-bundle)
  5956. _ca_bundle="$(_readlink "$2")"
  5957. CA_BUNDLE="$_ca_bundle"
  5958. shift
  5959. ;;
  5960. --ca-path)
  5961. _ca_path="$2"
  5962. CA_PATH="$_ca_path"
  5963. shift
  5964. ;;
  5965. --nocron)
  5966. _nocron="1"
  5967. ;;
  5968. --noprofile)
  5969. _noprofile="1"
  5970. ;;
  5971. --no-color)
  5972. export ACME_NO_COLOR=1
  5973. ;;
  5974. --force-color)
  5975. export ACME_FORCE_COLOR=1
  5976. ;;
  5977. --ecc)
  5978. _ecc="isEcc"
  5979. ;;
  5980. --csr)
  5981. _csr="$2"
  5982. shift
  5983. ;;
  5984. --pre-hook)
  5985. _pre_hook="$2"
  5986. shift
  5987. ;;
  5988. --post-hook)
  5989. _post_hook="$2"
  5990. shift
  5991. ;;
  5992. --renew-hook)
  5993. _renew_hook="$2"
  5994. shift
  5995. ;;
  5996. --deploy-hook)
  5997. if [ -z "$2" ] || _startswith "$2" "-"; then
  5998. _usage "Please specify a value for '--deploy-hook'"
  5999. return 1
  6000. fi
  6001. _deploy_hook="$_deploy_hook$2,"
  6002. shift
  6003. ;;
  6004. --ocsp-must-staple | --ocsp)
  6005. Le_OCSP_Staple="1"
  6006. ;;
  6007. --always-force-new-domain-key)
  6008. if [ -z "$2" ] || _startswith "$2" "-"; then
  6009. Le_ForceNewDomainKey=1
  6010. else
  6011. Le_ForceNewDomainKey="$2"
  6012. shift
  6013. fi
  6014. ;;
  6015. --yes-I-know-dns-manual-mode-enough-go-ahead-please)
  6016. export FORCE_DNS_MANUAL=1
  6017. ;;
  6018. --log | --logfile)
  6019. _log="1"
  6020. _logfile="$2"
  6021. if _startswith "$_logfile" '-'; then
  6022. _logfile=""
  6023. else
  6024. shift
  6025. fi
  6026. LOG_FILE="$_logfile"
  6027. if [ -z "$LOG_LEVEL" ]; then
  6028. LOG_LEVEL="$DEFAULT_LOG_LEVEL"
  6029. fi
  6030. ;;
  6031. --log-level)
  6032. _log_level="$2"
  6033. LOG_LEVEL="$_log_level"
  6034. shift
  6035. ;;
  6036. --syslog)
  6037. if ! _startswith "$2" '-'; then
  6038. _syslog="$2"
  6039. shift
  6040. fi
  6041. if [ -z "$_syslog" ]; then
  6042. _syslog="$SYSLOG_LEVEL_DEFAULT"
  6043. fi
  6044. ;;
  6045. --auto-upgrade)
  6046. _auto_upgrade="$2"
  6047. if [ -z "$_auto_upgrade" ] || _startswith "$_auto_upgrade" '-'; then
  6048. _auto_upgrade="1"
  6049. else
  6050. shift
  6051. fi
  6052. AUTO_UPGRADE="$_auto_upgrade"
  6053. ;;
  6054. --listen-v4)
  6055. _listen_v4="1"
  6056. Le_Listen_V4="$_listen_v4"
  6057. ;;
  6058. --listen-v6)
  6059. _listen_v6="1"
  6060. Le_Listen_V6="$_listen_v6"
  6061. ;;
  6062. --openssl-bin)
  6063. _openssl_bin="$2"
  6064. ACME_OPENSSL_BIN="$_openssl_bin"
  6065. shift
  6066. ;;
  6067. --use-wget)
  6068. _use_wget="1"
  6069. ACME_USE_WGET="1"
  6070. ;;
  6071. --branch | -b)
  6072. export BRANCH="$2"
  6073. shift
  6074. ;;
  6075. --notify-hook)
  6076. _nhook="$2"
  6077. if _startswith "$_nhook" "-"; then
  6078. _err "'$_nhook' is not a hook name for '$1'"
  6079. return 1
  6080. fi
  6081. if [ "$_notify_hook" ]; then
  6082. _notify_hook="$_notify_hook,$_nhook"
  6083. else
  6084. _notify_hook="$_nhook"
  6085. fi
  6086. shift
  6087. ;;
  6088. --notify-level)
  6089. _nlevel="$2"
  6090. if _startswith "$_nlevel" "-"; then
  6091. _err "'$_nlevel' is not a integer for '$1'"
  6092. return 1
  6093. fi
  6094. _notify_level="$_nlevel"
  6095. shift
  6096. ;;
  6097. --notify-mode)
  6098. _nmode="$2"
  6099. if _startswith "$_nmode" "-"; then
  6100. _err "'$_nmode' is not a integer for '$1'"
  6101. return 1
  6102. fi
  6103. _notify_mode="$_nmode"
  6104. shift
  6105. ;;
  6106. *)
  6107. _err "Unknown parameter : $1"
  6108. return 1
  6109. ;;
  6110. esac
  6111. shift 1
  6112. done
  6113. if [ "${_CMD}" != "install" ]; then
  6114. if [ "$__INTERACTIVE" ] && ! _checkSudo; then
  6115. if [ -z "$FORCE" ]; then
  6116. #Use "echo" here, instead of _info. it's too early
  6117. echo "It seems that you are using sudo, please read this link first:"
  6118. echo "$_SUDO_WIKI"
  6119. return 1
  6120. fi
  6121. fi
  6122. __initHome
  6123. if [ "$_log" ]; then
  6124. if [ -z "$_logfile" ]; then
  6125. _logfile="$DEFAULT_LOG_FILE"
  6126. fi
  6127. fi
  6128. if [ "$_logfile" ]; then
  6129. _saveaccountconf "LOG_FILE" "$_logfile"
  6130. LOG_FILE="$_logfile"
  6131. fi
  6132. if [ "$_log_level" ]; then
  6133. _saveaccountconf "LOG_LEVEL" "$_log_level"
  6134. LOG_LEVEL="$_log_level"
  6135. fi
  6136. if [ "$_syslog" ]; then
  6137. if _exists logger; then
  6138. if [ "$_syslog" = "0" ]; then
  6139. _clearaccountconf "SYS_LOG"
  6140. else
  6141. _saveaccountconf "SYS_LOG" "$_syslog"
  6142. fi
  6143. SYS_LOG="$_syslog"
  6144. else
  6145. _err "The 'logger' command is not found, can not enable syslog."
  6146. _clearaccountconf "SYS_LOG"
  6147. SYS_LOG=""
  6148. fi
  6149. fi
  6150. _processAccountConf
  6151. fi
  6152. _debug2 LE_WORKING_DIR "$LE_WORKING_DIR"
  6153. if [ "$DEBUG" ]; then
  6154. version
  6155. if [ "$_server" ]; then
  6156. _debug "Using server: $_server"
  6157. fi
  6158. fi
  6159. _debug "Running cmd: ${_CMD}"
  6160. case "${_CMD}" in
  6161. install) install "$_nocron" "$_confighome" "$_noprofile" ;;
  6162. uninstall) uninstall "$_nocron" ;;
  6163. upgrade) upgrade ;;
  6164. issue)
  6165. issue "$_webroot" "$_domain" "$_altdomains" "$_keylength" "$_cert_file" "$_key_file" "$_ca_file" "$_reloadcmd" "$_fullchain_file" "$_pre_hook" "$_post_hook" "$_renew_hook" "$_local_address" "$_challenge_alias"
  6166. ;;
  6167. deploy)
  6168. deploy "$_domain" "$_deploy_hook" "$_ecc"
  6169. ;;
  6170. signcsr)
  6171. signcsr "$_csr" "$_webroot" "$_cert_file" "$_key_file" "$_ca_file" "$_reloadcmd" "$_fullchain_file" "$_pre_hook" "$_post_hook" "$_renew_hook" "$_local_address" "$_challenge_alias"
  6172. ;;
  6173. showcsr)
  6174. showcsr "$_csr" "$_domain"
  6175. ;;
  6176. installcert)
  6177. installcert "$_domain" "$_cert_file" "$_key_file" "$_ca_file" "$_reloadcmd" "$_fullchain_file" "$_ecc"
  6178. ;;
  6179. renew)
  6180. renew "$_domain" "$_ecc"
  6181. ;;
  6182. renewAll)
  6183. renewAll "$_stopRenewOnError"
  6184. ;;
  6185. revoke)
  6186. revoke "$_domain" "$_ecc"
  6187. ;;
  6188. remove)
  6189. remove "$_domain" "$_ecc"
  6190. ;;
  6191. deactivate)
  6192. deactivate "$_domain,$_altdomains"
  6193. ;;
  6194. registeraccount)
  6195. registeraccount "$_accountkeylength"
  6196. ;;
  6197. updateaccount)
  6198. updateaccount
  6199. ;;
  6200. deactivateaccount)
  6201. deactivateaccount
  6202. ;;
  6203. list)
  6204. list "$_listraw"
  6205. ;;
  6206. installcronjob) installcronjob "$_confighome" ;;
  6207. uninstallcronjob) uninstallcronjob ;;
  6208. cron) cron ;;
  6209. toPkcs)
  6210. toPkcs "$_domain" "$_password" "$_ecc"
  6211. ;;
  6212. toPkcs8)
  6213. toPkcs8 "$_domain" "$_ecc"
  6214. ;;
  6215. createAccountKey)
  6216. createAccountKey "$_accountkeylength"
  6217. ;;
  6218. createDomainKey)
  6219. createDomainKey "$_domain" "$_keylength"
  6220. ;;
  6221. createCSR)
  6222. createCSR "$_domain" "$_altdomains" "$_ecc"
  6223. ;;
  6224. setnotify)
  6225. setnotify "$_notify_hook" "$_notify_level" "$_notify_mode"
  6226. ;;
  6227. *)
  6228. if [ "$_CMD" ]; then
  6229. _err "Invalid command: $_CMD"
  6230. fi
  6231. showhelp
  6232. return 1
  6233. ;;
  6234. esac
  6235. _ret="$?"
  6236. if [ "$_ret" != "0" ]; then
  6237. return $_ret
  6238. fi
  6239. if [ "${_CMD}" = "install" ]; then
  6240. if [ "$_log" ]; then
  6241. if [ -z "$LOG_FILE" ]; then
  6242. LOG_FILE="$DEFAULT_LOG_FILE"
  6243. fi
  6244. _saveaccountconf "LOG_FILE" "$LOG_FILE"
  6245. fi
  6246. if [ "$_log_level" ]; then
  6247. _saveaccountconf "LOG_LEVEL" "$_log_level"
  6248. fi
  6249. if [ "$_syslog" ]; then
  6250. if _exists logger; then
  6251. if [ "$_syslog" = "0" ]; then
  6252. _clearaccountconf "SYS_LOG"
  6253. else
  6254. _saveaccountconf "SYS_LOG" "$_syslog"
  6255. fi
  6256. else
  6257. _err "The 'logger' command is not found, can not enable syslog."
  6258. _clearaccountconf "SYS_LOG"
  6259. SYS_LOG=""
  6260. fi
  6261. fi
  6262. _processAccountConf
  6263. fi
  6264. }
  6265. if [ "$INSTALLONLINE" ]; then
  6266. INSTALLONLINE=""
  6267. _installOnline
  6268. exit
  6269. fi
  6270. main() {
  6271. [ -z "$1" ] && showhelp && return
  6272. if _startswith "$1" '-'; then _process "$@"; else "$@"; fi
  6273. }
  6274. main "$@"