You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

916 lines
22 KiB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
  1. #!/bin/bash
  2. VER=1.1.0
  3. PROJECT="https://github.com/Neilpang/le"
  4. DEFAULT_CA="https://acme-v01.api.letsencrypt.org"
  5. DEFAULT_AGREEMENT="https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf"
  6. STAGE_CA="https://acme-staging.api.letsencrypt.org"
  7. VTYPE_HTTP="http-01"
  8. VTYPE_DNS="dns-01"
  9. if [ -z "$AGREEMENT" ] ; then
  10. AGREEMENT="$DEFAULT_AGREEMENT"
  11. fi
  12. _debug() {
  13. if [ -z "$DEBUG" ] ; then
  14. return
  15. fi
  16. if [ -z "$2" ] ; then
  17. echo $1
  18. else
  19. echo "$1"="$2"
  20. fi
  21. }
  22. _info() {
  23. if [ -z "$2" ] ; then
  24. echo "$1"
  25. else
  26. echo "$1"="$2"
  27. fi
  28. }
  29. _err() {
  30. if [ -z "$2" ] ; then
  31. echo "$1" >&2
  32. else
  33. echo "$1"="$2" >&2
  34. fi
  35. }
  36. #domain [2048]
  37. createAccountKey() {
  38. if [ -z "$1" ] ; then
  39. echo Usage: $0 account-domain [2048]
  40. return
  41. fi
  42. account=$1
  43. length=$2
  44. if [ -z "$2" ] ; then
  45. _info "Use default length 2048"
  46. length=2048
  47. fi
  48. _initpath
  49. if [ -f "$ACCOUNT_KEY_PATH" ] ; then
  50. _info "Account key exists, skip"
  51. return
  52. else
  53. #generate account key
  54. openssl genrsa $length > "$ACCOUNT_KEY_PATH"
  55. fi
  56. }
  57. #domain length
  58. createDomainKey() {
  59. if [ -z "$1" ] ; then
  60. echo Usage: $0 domain [2048]
  61. return
  62. fi
  63. domain=$1
  64. length=$2
  65. if [ -z "$2" ] ; then
  66. _info "Use default length 2048"
  67. length=2048
  68. fi
  69. _initpath $domain
  70. if [ -f "$CERT_KEY_PATH" ] && ! [ "$FORCE" ] ; then
  71. if [ "$IS_RENEW" ] ; then
  72. _info "Domain key exists, skip"
  73. return 0
  74. else
  75. _err "Domain key exists, do you want to overwrite the key?"
  76. _err "Set FORCE=1, and try again."
  77. return 1
  78. fi
  79. else
  80. #generate account key
  81. openssl genrsa $length > "$CERT_KEY_PATH"
  82. fi
  83. }
  84. # domain domainlist
  85. createCSR() {
  86. if [ -z "$1" ] ; then
  87. echo Usage: $0 domain [domainlist]
  88. return
  89. fi
  90. domain=$1
  91. _initpath $domain
  92. domainlist=$2
  93. if [ -f "$CSR_PATH" ] && [ "$IS_RENEW" ] && ! [ "$FORCE" ]; then
  94. _info "CSR exists, skip"
  95. return
  96. fi
  97. if [ -z "$domainlist" ] ; then
  98. #single domain
  99. _info "Single domain" $domain
  100. openssl req -new -sha256 -key "$CERT_KEY_PATH" -subj "/CN=$domain" > "$CSR_PATH"
  101. else
  102. alt="DNS:$(echo $domainlist | sed "s/,/,DNS:/g")"
  103. #multi
  104. _info "Multi domain" "$alt"
  105. openssl req -new -sha256 -key "$CERT_KEY_PATH" -subj "/CN=$domain" -reqexts SAN -config <(printf "[ req_distinguished_name ]\n[ req ]\ndistinguished_name = req_distinguished_name\n[SAN]\nsubjectAltName=$alt") -out "$CSR_PATH"
  106. fi
  107. }
  108. _b64() {
  109. __n=$(cat)
  110. echo $__n | tr '/+' '_-' | tr -d '= '
  111. }
  112. _send_signed_request() {
  113. url=$1
  114. payload=$2
  115. needbase64=$3
  116. _debug url $url
  117. _debug payload "$payload"
  118. CURL_HEADER="$WORKING_DIR/curl.header"
  119. dp="$WORKING_DIR/curl.dump"
  120. CURL="curl --silent --dump-header $CURL_HEADER "
  121. if [ "$DEBUG" ] ; then
  122. CURL="$CURL --trace-ascii $dp "
  123. fi
  124. payload64=$(echo -n $payload | base64 -w 0 | _b64)
  125. _debug payload64 $payload64
  126. nonceurl="$API/directory"
  127. nonce=$($CURL -I $nonceurl | grep "^Replay-Nonce:" | sed s/\\r//|sed s/\\n//| cut -d ' ' -f 2)
  128. _debug nonce $nonce
  129. protected=$(echo -n "$HEADERPLACE" | sed "s/NONCE/$nonce/" )
  130. _debug protected "$protected"
  131. protected64=$( echo -n $protected | base64 -w 0 | _b64)
  132. _debug protected64 "$protected64"
  133. sig=$(echo -n "$protected64.$payload64" | openssl dgst -sha256 -sign $ACCOUNT_KEY_PATH | base64 -w 0 | _b64)
  134. _debug sig "$sig"
  135. body="{\"header\": $HEADER, \"protected\": \"$protected64\", \"payload\": \"$payload64\", \"signature\": \"$sig\"}"
  136. _debug body "$body"
  137. if [ "$needbase64" ] ; then
  138. response="$($CURL -X POST --data "$body" $url | base64 -w 0)"
  139. else
  140. response="$($CURL -X POST --data "$body" $url)"
  141. fi
  142. responseHeaders="$(sed 's/\r//g' $CURL_HEADER)"
  143. _debug responseHeaders "$responseHeaders"
  144. _debug response "$response"
  145. code="$(grep ^HTTP $CURL_HEADER | tail -1 | cut -d " " -f 2)"
  146. _debug code $code
  147. }
  148. _get() {
  149. url="$1"
  150. _debug url $url
  151. response="$(curl --silent $url)"
  152. ret=$?
  153. _debug response "$response"
  154. code="$(echo $response | grep -o '"status":[0-9]\+' | cut -d : -f 2)"
  155. _debug code $code
  156. return $ret
  157. }
  158. #setopt "file" "opt" "=" "value" [";"]
  159. _setopt() {
  160. __conf="$1"
  161. __opt="$2"
  162. __sep="$3"
  163. __val="$4"
  164. __end="$5"
  165. if [ -z "$__opt" ] ; then
  166. echo usage: $0 '"file" "opt" "=" "value" [";"]'
  167. return
  168. fi
  169. if [ ! -f "$__conf" ] ; then
  170. touch "$__conf"
  171. fi
  172. if grep -H -n "^$__opt$__sep" "$__conf" > /dev/null ; then
  173. _debug OK
  174. if [[ "$__val" == *"&"* ]] ; then
  175. __val="$(echo $__val | sed 's/&/\\&/g')"
  176. fi
  177. sed -i "s|^$__opt$__sep.*$|$__opt$__sep$__val$__end|" "$__conf"
  178. else
  179. _debug APP
  180. echo "$__opt$__sep$__val$__end" >> "$__conf"
  181. fi
  182. _debug "$(grep -H -n "^$__opt$__sep" $__conf)"
  183. }
  184. _startserver() {
  185. content="$1"
  186. # while true ; do
  187. if [ "$DEBUG" ] ; then
  188. echo -e -n "HTTP/1.1 200 OK\r\n\r\n$content" | nc -q 1 -l -p 80
  189. else
  190. echo -e -n "HTTP/1.1 200 OK\r\n\r\n$content" | nc -q 1 -l -p 80 > /dev/null
  191. fi
  192. # done
  193. }
  194. _stopserver() {
  195. pid="$1"
  196. }
  197. _initpath() {
  198. if [ -z "$API" ] ; then
  199. if [ -z "$STAGE" ] ; then
  200. API="$DEFAULT_CA"
  201. else
  202. API="$STAGE_CA"
  203. _info "Using stage api:$API"
  204. fi
  205. fi
  206. if [ -z "$WORKING_DIR" ]; then
  207. WORKING_DIR=$HOME/.le
  208. fi
  209. if [ -z "$ACME_DIR" ] ; then
  210. ACME_DIR="/home/.acme"
  211. fi
  212. if [ -z "$APACHE_CONF_BACKUP_DIR" ] ; then
  213. APACHE_CONF_BACKUP_DIR="$WORKING_DIR/"
  214. fi
  215. domain="$1"
  216. mkdir -p "$WORKING_DIR"
  217. if [ -z "$ACCOUNT_KEY_PATH" ] ; then
  218. ACCOUNT_KEY_PATH="$WORKING_DIR/account.acc"
  219. fi
  220. if [ -z "$domain" ] ; then
  221. return 0
  222. fi
  223. mkdir -p "$WORKING_DIR/$domain"
  224. if [ -z "$DOMAIN_CONF" ] ; then
  225. DOMAIN_CONF="$WORKING_DIR/$domain/$Le_Domain.conf"
  226. fi
  227. if [ -z "$CSR_PATH" ] ; then
  228. CSR_PATH="$WORKING_DIR/$domain/$domain.csr"
  229. fi
  230. if [ -z "$CERT_KEY_PATH" ] ; then
  231. CERT_KEY_PATH="$WORKING_DIR/$domain/$domain.key"
  232. fi
  233. if [ -z "$CERT_PATH" ] ; then
  234. CERT_PATH="$WORKING_DIR/$domain/$domain.cer"
  235. fi
  236. if [ -z "$CA_CERT_PATH" ] ; then
  237. CA_CERT_PATH="$WORKING_DIR/$domain/ca.cer"
  238. fi
  239. }
  240. _apachePath() {
  241. httpdroot="$(apachectl -V | grep HTTPD_ROOT= | cut -d = -f 2 | sed s/\"//g)"
  242. httpdconfname="$(apachectl -V | grep SERVER_CONFIG_FILE= | cut -d = -f 2 | sed s/\"//g)"
  243. httpdconf="$httpdroot/$httpdconfname"
  244. if [ ! -f $httpdconf ] ; then
  245. _err "Apache Config file not found" $httpdconf
  246. return 1
  247. fi
  248. return 0
  249. }
  250. _restoreApache() {
  251. if [ -z "$usingApache" ] ; then
  252. return 0
  253. fi
  254. _initpath
  255. if ! _apachePath ; then
  256. return 1
  257. fi
  258. if [ ! -f "$APACHE_CONF_BACKUP_DIR/$httpdconfname" ] ; then
  259. _debug "No config file to restore."
  260. return 0
  261. fi
  262. cp -p "$APACHE_CONF_BACKUP_DIR/$httpdconfname" "$httpdconf"
  263. if ! apachectl -t ; then
  264. _err "Sorry, restore apache config error, please contact me."
  265. return 1;
  266. fi
  267. rm -f "$APACHE_CONF_BACKUP_DIR/$httpdconfname"
  268. return 0
  269. }
  270. _setApache() {
  271. _initpath
  272. if ! _apachePath ; then
  273. return 1
  274. fi
  275. #backup the conf
  276. _debug "Backup apache config file" $httpdconf
  277. cp -p $httpdconf $APACHE_CONF_BACKUP_DIR/
  278. _info "JFYI, Config file $httpdconf is backuped to $APACHE_CONF_BACKUP_DIR/$httpdconfname"
  279. _info "In case there is an error that can not be restored automatically, you may try restore it yourself."
  280. _info "The backup file will be deleted on sucess, just forget it."
  281. #add alias
  282. echo "
  283. Alias /.well-known/acme-challenge $ACME_DIR
  284. <Directory $ACME_DIR >
  285. Require all granted
  286. </Directory>
  287. " >> $httpdconf
  288. if ! apachectl -t ; then
  289. _err "Sorry, apache config error, please contact me."
  290. _restoreApache
  291. return 1;
  292. fi
  293. if [ ! -d "$ACME_DIR" ] ; then
  294. mkdir -p "$ACME_DIR"
  295. chmod 755 "$ACME_DIR"
  296. fi
  297. if ! apachectl graceful ; then
  298. _err "Sorry, apachectl graceful error, please contact me."
  299. _restoreApache
  300. return 1;
  301. fi
  302. usingApache="1"
  303. return 0
  304. }
  305. _clearup () {
  306. _stopserver $serverproc
  307. serverproc=""
  308. _restoreApache
  309. }
  310. issue() {
  311. if [ -z "$2" ] ; then
  312. _err "Usage: le issue webroot|no|apache|dns a.com [www.a.com,b.com,c.com]|no [key-length]|no [cert-file-path]|no [key-file-path]|no [ca-cert-file-path]|no [reloadCmd]|no"
  313. return 1
  314. fi
  315. Le_Webroot="$1"
  316. Le_Domain="$2"
  317. Le_Alt="$3"
  318. Le_Keylength="$4"
  319. Le_RealCertPath="$5"
  320. Le_RealKeyPath="$6"
  321. Le_RealCACertPath="$7"
  322. Le_ReloadCmd="$8"
  323. _initpath $Le_Domain
  324. if [ -f "$DOMAIN_CONF" ] ; then
  325. Le_NextRenewTime=$(grep "^Le_NextRenewTime=" "$DOMAIN_CONF" | cut -d '=' -f 2)
  326. if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(date -u "+%s" )" -lt "$Le_NextRenewTime" ] ; then
  327. _info "Skip, Next renewal time is: $(grep "^Le_NextRenewTimeStr" "$DOMAIN_CONF" | cut -d '=' -f 2)"
  328. return 2
  329. fi
  330. fi
  331. if [ "$Le_Alt" == "no" ] ; then
  332. Le_Alt=""
  333. fi
  334. if [ "$Le_Keylength" == "no" ] ; then
  335. Le_Keylength=""
  336. fi
  337. if [ "$Le_RealCertPath" == "no" ] ; then
  338. Le_RealCertPath=""
  339. fi
  340. if [ "$Le_RealKeyPath" == "no" ] ; then
  341. Le_RealKeyPath=""
  342. fi
  343. if [ "$Le_RealCACertPath" == "no" ] ; then
  344. Le_RealCACertPath=""
  345. fi
  346. if [ "$Le_ReloadCmd" == "no" ] ; then
  347. Le_ReloadCmd=""
  348. fi
  349. _setopt "$DOMAIN_CONF" "Le_Domain" "=" "$Le_Domain"
  350. _setopt "$DOMAIN_CONF" "Le_Alt" "=" "$Le_Alt"
  351. _setopt "$DOMAIN_CONF" "Le_Webroot" "=" "$Le_Webroot"
  352. _setopt "$DOMAIN_CONF" "Le_Keylength" "=" "$Le_Keylength"
  353. _setopt "$DOMAIN_CONF" "Le_RealCertPath" "=" "\"$Le_RealCertPath\""
  354. _setopt "$DOMAIN_CONF" "Le_RealCACertPath" "=" "\"$Le_RealCACertPath\""
  355. _setopt "$DOMAIN_CONF" "Le_RealKeyPath" "=" "\"$Le_RealKeyPath\""
  356. _setopt "$DOMAIN_CONF" "Le_ReloadCmd" "=" "\"$Le_ReloadCmd\""
  357. if [ "$Le_Webroot" == "no" ] ; then
  358. _info "Standalone mode."
  359. if ! command -v "nc" > /dev/null ; then
  360. _err "Please install netcat(nc) tools first."
  361. return 1
  362. fi
  363. netprc="$(ss -ntpl | grep ':80 ')"
  364. if [ "$netprc" ] ; then
  365. _err "$netprc"
  366. _err "tcp port 80 is already used by $(echo "$netprc" | cut -d : -f 4)"
  367. _err "Please stop it first"
  368. return 1
  369. fi
  370. fi
  371. if [ "$Le_Webroot" == "apache" ] ; then
  372. if ! _setApache ; then
  373. _err "set up apache error. Report error to me."
  374. return 1
  375. fi
  376. wellknown_path="$ACME_DIR"
  377. else
  378. usingApache=""
  379. fi
  380. createAccountKey $Le_Domain $Le_Keylength
  381. if ! createDomainKey $Le_Domain $Le_Keylength ; then
  382. _err "Create domain key error."
  383. return 1
  384. fi
  385. if ! createCSR $Le_Domain $Le_Alt ; then
  386. _err "Create CSR error."
  387. return 1
  388. fi
  389. pub_exp=$(openssl rsa -in $ACCOUNT_KEY_PATH -noout -text | grep "^publicExponent:"| cut -d '(' -f 2 | cut -d 'x' -f 2 | cut -d ')' -f 1)
  390. if [ "${#pub_exp}" == "5" ] ; then
  391. pub_exp=0$pub_exp
  392. fi
  393. _debug pub_exp "$pub_exp"
  394. e=$(echo $pub_exp | xxd -r -p | base64)
  395. _debug e "$e"
  396. modulus=$(openssl rsa -in $ACCOUNT_KEY_PATH -modulus -noout | cut -d '=' -f 2 )
  397. n=$(echo $modulus| xxd -r -p | base64 -w 0 | _b64 )
  398. jwk='{"e": "'$e'", "kty": "RSA", "n": "'$n'"}'
  399. HEADER='{"alg": "RS256", "jwk": '$jwk'}'
  400. HEADERPLACE='{"nonce": "NONCE", "alg": "RS256", "jwk": '$jwk'}'
  401. _debug HEADER "$HEADER"
  402. accountkey_json=$(echo -n "$jwk" | sed "s/ //g")
  403. thumbprint=$(echo -n "$accountkey_json" | sha256sum | xxd -r -p | base64 -w 0 | _b64)
  404. _info "Registering account"
  405. regjson='{"resource": "new-reg", "agreement": "'$AGREEMENT'"}'
  406. if [ "$ACCOUNT_EMAIL" ] ; then
  407. regjson='{"resource": "new-reg", "contact": ["mailto: '$ACCOUNT_EMAIL'"], "agreement": "'$AGREEMENT'"}'
  408. fi
  409. _send_signed_request "$API/acme/new-reg" "$regjson"
  410. if [ "$code" == "" ] || [ "$code" == '201' ] ; then
  411. _info "Registered"
  412. echo $response > $WORKING_DIR/account.json
  413. elif [ "$code" == '409' ] ; then
  414. _info "Already registered"
  415. else
  416. _err "Register account Error."
  417. _clearup
  418. return 1
  419. fi
  420. vtype="$VTYPE_HTTP"
  421. if [[ "$Le_Webroot" == "dns"* ]] ; then
  422. vtype="$VTYPE_DNS"
  423. fi
  424. vlist="$Le_Vlist"
  425. # verify each domain
  426. _info "Verify each domain"
  427. sep='#'
  428. if [ -z "$vlist" ] ; then
  429. alldomains=$(echo "$Le_Domain,$Le_Alt" | sed "s/,/ /g")
  430. for d in $alldomains
  431. do
  432. _info "Geting token for domain" $d
  433. _send_signed_request "$API/acme/new-authz" "{\"resource\": \"new-authz\", \"identifier\": {\"type\": \"dns\", \"value\": \"$d\"}}"
  434. if [ ! -z "$code" ] && [ ! "$code" == '201' ] ; then
  435. _err "new-authz error: $response"
  436. _clearup
  437. return 1
  438. fi
  439. entry=$(echo $response | egrep -o '{[^{]*"type":"'$vtype'"[^}]*')
  440. _debug entry "$entry"
  441. token=$(echo "$entry" | sed 's/,/\n'/g| grep '"token":'| cut -d : -f 2|sed 's/"//g')
  442. _debug token $token
  443. uri=$(echo "$entry" | sed 's/,/\n'/g| grep '"uri":'| cut -d : -f 2,3|sed 's/"//g')
  444. _debug uri $uri
  445. keyauthorization="$token.$thumbprint"
  446. _debug keyauthorization "$keyauthorization"
  447. dvlist="$d$sep$keyauthorization$sep$uri"
  448. _debug dvlist "$dvlist"
  449. vlist="$vlist$dvlist,"
  450. done
  451. #add entry
  452. dnsadded=""
  453. ventries=$(echo "$vlist" | sed "s/,/ /g")
  454. for ventry in $ventries
  455. do
  456. d=$(echo $ventry | cut -d $sep -f 1)
  457. keyauthorization=$(echo $ventry | cut -d $sep -f 2)
  458. if [ "$vtype" == "$VTYPE_DNS" ] ; then
  459. dnsadded='0'
  460. txtdomain="_acme-challenge.$d"
  461. _debug txtdomain "$txtdomain"
  462. txt="$(echo -e -n $keyauthorization | sha256sum | xxd -r -p | base64 -w 0 | _b64)"
  463. _debug txt "$txt"
  464. #dns
  465. #1. check use api
  466. _err "Add the following txt record:"
  467. _err "Domain:$txtdomain"
  468. _err "Txt value:$txt"
  469. #dnsadded='1'
  470. fi
  471. done
  472. if [ "$dnsadded" == '0' ] ; then
  473. _setopt "$DOMAIN_CONF" "Le_Vlist" "=" "\"$vlist\""
  474. _debug "Dns record not added yet, so, save to $DOMAIN_CONF and exit."
  475. _err "Please add the txt records to the domains, and retry again."
  476. return 1
  477. fi
  478. fi
  479. _debug "ok, let's start to verify"
  480. ventries=$(echo "$vlist" | sed "s/,/ /g")
  481. for ventry in $ventries
  482. do
  483. d=$(echo $ventry | cut -d $sep -f 1)
  484. keyauthorization=$(echo $ventry | cut -d $sep -f 2)
  485. uri=$(echo $ventry | cut -d $sep -f 3)
  486. _info "Verifying:$d"
  487. _debug "d" "$d"
  488. _debug "keyauthorization" "$keyauthorization"
  489. _debug "uri" "$uri"
  490. if [ "$vtype" == "$VTYPE_HTTP" ] ; then
  491. if [ "$Le_Webroot" == "no" ] ; then
  492. _info "Standalone mode server"
  493. _startserver "$keyauthorization" &
  494. serverproc="$!"
  495. sleep 2
  496. _debug serverproc $serverproc
  497. else
  498. if [ -z "$wellknown_path" ] ; then
  499. wellknown_path="$Le_Webroot/.well-known/acme-challenge"
  500. fi
  501. _debug wellknown_path "$wellknown_path"
  502. webroot_owner=$(stat -c '%U:%G' $Le_Webroot)
  503. _debug "Changing owner/group of .well-known to $webroot_owner"
  504. chown -R $webroot_owner "$Le_Webroot/.well-known"
  505. mkdir -p "$wellknown_path"
  506. echo -n "$keyauthorization" > "$wellknown_path/$token"
  507. fi
  508. fi
  509. _send_signed_request $uri "{\"resource\": \"challenge\", \"keyAuthorization\": \"$keyauthorization\"}"
  510. if [ ! -z "$code" ] && [ ! "$code" == '202' ] ; then
  511. _err "$d:Challenge error: $resource"
  512. _clearup
  513. return 1
  514. fi
  515. while [ "1" ] ; do
  516. _debug "sleep 5 secs to verify"
  517. sleep 5
  518. _debug "checking"
  519. if ! _get $uri ; then
  520. _err "$d:Verify error:$resource"
  521. _clearup
  522. return 1
  523. fi
  524. status=$(echo $response | egrep -o '"status":"[^"]+"' | cut -d : -f 2 | sed 's/"//g')
  525. if [ "$status" == "valid" ] ; then
  526. _info "Success"
  527. break;
  528. fi
  529. if [ "$status" == "invalid" ] ; then
  530. error=$(echo $response | egrep -o '"error":{[^}]*}' | grep -o '"detail":"[^"]*"' | cut -d '"' -f 4)
  531. _err "$d:Verify error:$error"
  532. _clearup
  533. return 1;
  534. fi
  535. if [ "$status" == "pending" ] ; then
  536. _info "Pending"
  537. else
  538. _err "$d:Verify error:$response"
  539. _clearup
  540. return 1
  541. fi
  542. done
  543. _stopserver $serverproc
  544. serverproc=""
  545. done
  546. _clearup
  547. _info "Verify finished, start to sign."
  548. der="$(openssl req -in $CSR_PATH -outform DER | base64 -w 0 | _b64)"
  549. _send_signed_request "$API/acme/new-cert" "{\"resource\": \"new-cert\", \"csr\": \"$der\"}" "needbase64"
  550. Le_LinkCert="$(grep -i -o '^Location.*' $CURL_HEADER |sed 's/\r//g'| cut -d " " -f 2)"
  551. _setopt "$DOMAIN_CONF" "Le_LinkCert" "=" "$Le_LinkCert"
  552. if [ "$Le_LinkCert" ] ; then
  553. echo -----BEGIN CERTIFICATE----- > "$CERT_PATH"
  554. curl --silent "$Le_LinkCert" | base64 >> "$CERT_PATH"
  555. echo -----END CERTIFICATE----- >> "$CERT_PATH"
  556. _info "Cert success."
  557. cat "$CERT_PATH"
  558. _info "Your cert is in $CERT_PATH"
  559. fi
  560. if [ -z "$Le_LinkCert" ] ; then
  561. response="$(echo $response | base64 -d)"
  562. _err "Sign failed: $(echo "$response" | grep -o '"detail":"[^"]*"')"
  563. return 1
  564. fi
  565. _setopt "$DOMAIN_CONF" 'Le_Vlist' '=' "\"\""
  566. Le_LinkIssuer=$(grep -i '^Link' $CURL_HEADER | cut -d " " -f 2| cut -d ';' -f 1 | sed 's/<//g' | sed 's/>//g')
  567. _setopt "$DOMAIN_CONF" "Le_LinkIssuer" "=" "$Le_LinkIssuer"
  568. if [ "$Le_LinkIssuer" ] ; then
  569. echo -----BEGIN CERTIFICATE----- > "$CA_CERT_PATH"
  570. curl --silent "$Le_LinkIssuer" | base64 >> "$CA_CERT_PATH"
  571. echo -----END CERTIFICATE----- >> "$CA_CERT_PATH"
  572. _info "The intermediate CA cert is in $CA_CERT_PATH"
  573. fi
  574. Le_CertCreateTime=$(date -u "+%s")
  575. _setopt "$DOMAIN_CONF" "Le_CertCreateTime" "=" "$Le_CertCreateTime"
  576. Le_CertCreateTimeStr=$(date -u "+%Y-%m-%d %H:%M:%S UTC")
  577. _setopt "$DOMAIN_CONF" "Le_CertCreateTimeStr" "=" "\"$Le_CertCreateTimeStr\""
  578. if [ ! "$Le_RenewalDays" ] ; then
  579. Le_RenewalDays=80
  580. fi
  581. _setopt "$DOMAIN_CONF" "Le_RenewalDays" "=" "$Le_RenewalDays"
  582. Le_NextRenewTime=$(date -u -d "+$Le_RenewalDays day" "+%s")
  583. _setopt "$DOMAIN_CONF" "Le_NextRenewTime" "=" "$Le_NextRenewTime"
  584. Le_NextRenewTimeStr=$(date -u -d "+$Le_RenewalDays day" "+%Y-%m-%d %H:%M:%S UTC")
  585. _setopt "$DOMAIN_CONF" "Le_NextRenewTimeStr" "=" "\"$Le_NextRenewTimeStr\""
  586. installcert $Le_Domain "$Le_RealCertPath" "$Le_RealKeyPath" "$Le_RealCACertPath" "$Le_ReloadCmd"
  587. }
  588. renew() {
  589. Le_Domain="$1"
  590. if [ -z "$Le_Domain" ] ; then
  591. _err "Usage: $0 domain.com"
  592. return 1
  593. fi
  594. _initpath $Le_Domain
  595. if [ -f "$DOMAIN_CONF" ] ; then
  596. source "$DOMAIN_CONF"
  597. if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(date -u "+%s" )" -lt "$Le_NextRenewTime" ] ; then
  598. _info "Skip, Next renewal time is: $Le_NextRenewTimeStr"
  599. return 2
  600. fi
  601. fi
  602. IS_RENEW="1"
  603. issue "$Le_Webroot" "$Le_Domain" "$Le_Alt" "$Le_Keylength" "$Le_RealCertPath" "$Le_RealKeyPath" "$Le_RealCACertPath" "$Le_ReloadCmd"
  604. IS_RENEW=""
  605. }
  606. renewAll() {
  607. _initpath
  608. _info "renewAll"
  609. for d in $(ls -F $WORKING_DIR | grep '/$') ; do
  610. d=$(echo $d | cut -d '/' -f 1)
  611. _info "renew $d"
  612. Le_LinkCert=""
  613. Le_Domain=""
  614. Le_Alt=""
  615. Le_Webroot=""
  616. Le_Keylength=""
  617. Le_LinkIssuer=""
  618. Le_CertCreateTime=""
  619. Le_CertCreateTimeStr=""
  620. Le_RenewalDays=""
  621. Le_NextRenewTime=""
  622. Le_NextRenewTimeStr=""
  623. Le_RealCertPath=""
  624. Le_RealKeyPath=""
  625. Le_RealCACertPath=""
  626. Le_ReloadCmd=""
  627. DOMAIN_CONF=""
  628. CSR_PATH=""
  629. CERT_KEY_PATH=""
  630. CERT_PATH=""
  631. CA_CERT_PATH=""
  632. ACCOUNT_KEY_PATH=""
  633. wellknown_path=""
  634. renew "$d"
  635. done
  636. }
  637. installcert() {
  638. Le_Domain="$1"
  639. if [ -z "$Le_Domain" ] ; then
  640. _err "Usage: $0 domain.com [cert-file-path]|no [key-file-path]|no [ca-cert-file-path]|no [reloadCmd]|no"
  641. return 1
  642. fi
  643. Le_RealCertPath="$2"
  644. Le_RealKeyPath="$3"
  645. Le_RealCACertPath="$4"
  646. Le_ReloadCmd="$5"
  647. _initpath $Le_Domain
  648. _setopt "$DOMAIN_CONF" "Le_RealCertPath" "=" "\"$Le_RealCertPath\""
  649. _setopt "$DOMAIN_CONF" "Le_RealCACertPath" "=" "\"$Le_RealCACertPath\""
  650. _setopt "$DOMAIN_CONF" "Le_RealKeyPath" "=" "\"$Le_RealKeyPath\""
  651. _setopt "$DOMAIN_CONF" "Le_ReloadCmd" "=" "\"$Le_ReloadCmd\""
  652. if [ "$Le_RealCACertPath" ] ; then
  653. if [ -f "$Le_RealCACertPath" ] ; then
  654. cp -p "$Le_RealCACertPath" "$Le_RealCACertPath".bak
  655. fi
  656. cat "$CA_CERT_PATH" > "$Le_RealCACertPath"
  657. fi
  658. if [ "$Le_RealKeyPath" ] ; then
  659. if [ -f "$Le_RealKeyPath" ] ; then
  660. cp -p "$Le_RealKeyPath" "$Le_RealKeyPath".bak
  661. fi
  662. cat "$CERT_KEY_PATH" > "$Le_RealKeyPath"
  663. fi
  664. if [ "$Le_ReloadCmd" ] ; then
  665. _info "Run Le_ReloadCmd: $Le_ReloadCmd"
  666. $Le_ReloadCmd
  667. fi
  668. }
  669. install() {
  670. _initpath
  671. if ! command -v "curl" > /dev/null ; then
  672. _err "Please install curl first."
  673. _err "Ubuntu: sudo apt-get install curl"
  674. _err "CentOS: yum install curl"
  675. return 1
  676. fi
  677. if ! command -v "crontab" > /dev/null ; then
  678. _err "Please install crontab first."
  679. _err "CentOs: yum -y install crontabs"
  680. return 1
  681. fi
  682. if ! command -v "openssl" > /dev/null ; then
  683. _err "Please install openssl first."
  684. _err "CentOs: yum -y install openssl"
  685. return 1
  686. fi
  687. if ! command -v "xxd" > /dev/null ; then
  688. _err "Please install xxd first."
  689. _err "CentOs: yum install vim-common"
  690. return 1
  691. fi
  692. _info "Installing to $WORKING_DIR"
  693. if [ ! -f /bin/le.sh ] ; then
  694. cp le.sh "/bin/"
  695. chmod +x "/bin/le.sh"
  696. ln -s "/bin/le.sh" /bin/le
  697. fi
  698. _info "Installing cron job"
  699. if command -v sudo > /dev/null ; then
  700. if [ "$(sudo -n uptime 2>&1|grep "load"|wc -l)" != "0" ] ; then
  701. SUDO=sudo
  702. fi
  703. fi
  704. if ! crontab -l | grep 'le renewAll' ; then
  705. crontab -l | { cat; echo "0 0 * * * $SUDO le renewAll > /dev/null"; } | crontab -
  706. if command -v crond > /dev/null ; then
  707. service crond reload >/dev/null
  708. else
  709. service cron reload >/dev/null
  710. fi
  711. fi
  712. _info OK
  713. }
  714. uninstall() {
  715. _initpath
  716. _info "Removing cron job"
  717. if crontab -l | grep 'le.*renewAll' ; then
  718. crontab -l | sed "/le.*renewAll/d" | crontab -
  719. if command -v crond > /dev/null ; then
  720. service crond reload >/dev/null
  721. else
  722. service cron reload >/dev/null
  723. fi
  724. fi
  725. _info "Removing /bin/le.sh"
  726. rm -f /bin/le
  727. rm -f /bin/le.sh
  728. _info "The keys and certs are in $WORKING_DIR, you can remove them by yourself."
  729. }
  730. version() {
  731. _info "$PROJECT"
  732. _info "v$VER"
  733. }
  734. showhelp() {
  735. version
  736. echo "Usage: issue|installcert|renew|renewAll|createAccountKey|createDomainKey|createCSR|install|uninstall|version"
  737. }
  738. if [ -z "$1" ] ; then
  739. showhelp
  740. else
  741. "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9"
  742. fi