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.

829 lines
20 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
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.0.5
  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. if [ -z "$API" ] ; then
  7. API="$DEFAULT_CA"
  8. fi
  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" ]; 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 "$WORKING_DIR" ]; then
  199. WORKING_DIR=$HOME/.le
  200. fi
  201. if [ -z "$ACME_DIR" ] ; then
  202. ACME_DIR="/home/.acme"
  203. fi
  204. if [ -z "$APACHE_CONF_BACKUP_DIR" ] ; then
  205. APACHE_CONF_BACKUP_DIR="$WORKING_DIR/"
  206. fi
  207. domain="$1"
  208. mkdir -p "$WORKING_DIR"
  209. if [ -z "$ACCOUNT_KEY_PATH" ] ; then
  210. ACCOUNT_KEY_PATH="$WORKING_DIR/account.acc"
  211. fi
  212. if [ -z "$domain" ] ; then
  213. return 0
  214. fi
  215. mkdir -p "$WORKING_DIR/$domain"
  216. if [ -z "$DOMAIN_CONF" ] ; then
  217. DOMAIN_CONF="$WORKING_DIR/$domain/$Le_Domain.conf"
  218. fi
  219. if [ -z "$CSR_PATH" ] ; then
  220. CSR_PATH="$WORKING_DIR/$domain/$domain.csr"
  221. fi
  222. if [ -z "$CERT_KEY_PATH" ] ; then
  223. CERT_KEY_PATH="$WORKING_DIR/$domain/$domain.key"
  224. fi
  225. if [ -z "$CERT_PATH" ] ; then
  226. CERT_PATH="$WORKING_DIR/$domain/$domain.cer"
  227. fi
  228. if [ -z "$CA_CERT_PATH" ] ; then
  229. CA_CERT_PATH="$WORKING_DIR/$domain/ca.cer"
  230. fi
  231. }
  232. _apachePath() {
  233. httpdroot="$(apachectl -V | grep HTTPD_ROOT= | cut -d = -f 2 | sed s/\"//g)"
  234. httpdconfname="$(apachectl -V | grep SERVER_CONFIG_FILE= | cut -d = -f 2 | sed s/\"//g)"
  235. httpdconf="$httpdroot/$httpdconfname"
  236. if [ ! -f $httpdconf ] ; then
  237. _err "Apache Config file not found" $httpdconf
  238. return 1
  239. fi
  240. return 0
  241. }
  242. _restoreApache() {
  243. if [ -z "$usingApache" ] ; then
  244. return 0
  245. fi
  246. _initpath
  247. if ! _apachePath ; then
  248. return 1
  249. fi
  250. if [ ! -f "$APACHE_CONF_BACKUP_DIR/$httpdconfname" ] ; then
  251. _debug "No config file to restore."
  252. return 0
  253. fi
  254. cp -p "$APACHE_CONF_BACKUP_DIR/$httpdconfname" "$httpdconf"
  255. if ! apachectl -t ; then
  256. _err "Sorry, restore apache config error, please contact me."
  257. return 1;
  258. fi
  259. rm -f "$APACHE_CONF_BACKUP_DIR/$httpdconfname"
  260. return 0
  261. }
  262. _setApache() {
  263. _initpath
  264. if ! _apachePath ; then
  265. return 1
  266. fi
  267. #backup the conf
  268. _debug "Backup apache config file" $httpdconf
  269. cp -p $httpdconf $APACHE_CONF_BACKUP_DIR/
  270. _info "JFYI, Config file $httpdconf is backuped to $APACHE_CONF_BACKUP_DIR/$httpdconfname"
  271. _info "In case there is an error that can not be restored automatically, you may try restore it yourself."
  272. _info "The backup file will be deleted on sucess, just forget it."
  273. #add alias
  274. echo "
  275. Alias /.well-known/acme-challenge $ACME_DIR
  276. <Directory $ACME_DIR >
  277. Require all granted
  278. </Directory>
  279. " >> $httpdconf
  280. if ! apachectl -t ; then
  281. _err "Sorry, apache config error, please contact me."
  282. _restoreApache
  283. return 1;
  284. fi
  285. if [ ! -d "$ACME_DIR" ] ; then
  286. mkdir -p "$ACME_DIR"
  287. chmod 755 "$ACME_DIR"
  288. fi
  289. if ! apachectl graceful ; then
  290. _err "Sorry, apachectl graceful error, please contact me."
  291. _restoreApache
  292. return 1;
  293. fi
  294. usingApache="1"
  295. return 0
  296. }
  297. _clearup () {
  298. _stopserver $serverproc
  299. serverproc=""
  300. _restoreApache
  301. }
  302. issue() {
  303. if [ -z "$2" ] ; then
  304. _err "Usage: le issue webroot|no|apache 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"
  305. return 1
  306. fi
  307. Le_Webroot="$1"
  308. Le_Domain="$2"
  309. Le_Alt="$3"
  310. Le_Keylength="$4"
  311. Le_RealCertPath="$5"
  312. Le_RealKeyPath="$6"
  313. Le_RealCACertPath="$7"
  314. Le_ReloadCmd="$8"
  315. _initpath $Le_Domain
  316. if [ -f "$DOMAIN_CONF" ] ; then
  317. Le_NextRenewTime=$(grep "^Le_NextRenewTime=" "$DOMAIN_CONF" | cut -d '=' -f 2)
  318. if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(date -u "+%s" )" -lt "$Le_NextRenewTime" ] ; then
  319. _info "Skip, Next renewal time is: $(grep "^Le_NextRenewTimeStr" "$DOMAIN_CONF" | cut -d '=' -f 2)"
  320. return 2
  321. fi
  322. fi
  323. if [ "$Le_Alt" == "no" ] ; then
  324. Le_Alt=""
  325. fi
  326. if [ "$Le_Keylength" == "no" ] ; then
  327. Le_Keylength=""
  328. fi
  329. if [ "$Le_RealCertPath" == "no" ] ; then
  330. Le_RealCertPath=""
  331. fi
  332. if [ "$Le_RealKeyPath" == "no" ] ; then
  333. Le_RealKeyPath=""
  334. fi
  335. if [ "$Le_RealCACertPath" == "no" ] ; then
  336. Le_RealCACertPath=""
  337. fi
  338. if [ "$Le_ReloadCmd" == "no" ] ; then
  339. Le_ReloadCmd=""
  340. fi
  341. _setopt "$DOMAIN_CONF" "Le_Domain" "=" "$Le_Domain"
  342. _setopt "$DOMAIN_CONF" "Le_Alt" "=" "$Le_Alt"
  343. _setopt "$DOMAIN_CONF" "Le_Webroot" "=" "$Le_Webroot"
  344. _setopt "$DOMAIN_CONF" "Le_Keylength" "=" "$Le_Keylength"
  345. _setopt "$DOMAIN_CONF" "Le_RealCertPath" "=" "\"$Le_RealCertPath\""
  346. _setopt "$DOMAIN_CONF" "Le_RealCACertPath" "=" "\"$Le_RealCACertPath\""
  347. _setopt "$DOMAIN_CONF" "Le_RealKeyPath" "=" "\"$Le_RealKeyPath\""
  348. _setopt "$DOMAIN_CONF" "Le_ReloadCmd" "=" "\"$Le_ReloadCmd\""
  349. if [ "$Le_Webroot" == "no" ] ; then
  350. _info "Standalone mode."
  351. if ! command -v "nc" > /dev/null ; then
  352. _err "Please install netcat(nc) tools first."
  353. return 1
  354. fi
  355. netprc="$(ss -ntpl | grep ':80 ')"
  356. if [ "$netprc" ] ; then
  357. _err "$netprc"
  358. _err "tcp port 80 is already used by $(echo "$netprc" | cut -d : -f 4)"
  359. _err "Please stop it first"
  360. return 1
  361. fi
  362. fi
  363. if [ "$Le_Webroot" == "apache" ] ; then
  364. if ! _setApache ; then
  365. _err "set up apache error. Report error to me."
  366. return 1
  367. fi
  368. wellknown_path="$ACME_DIR"
  369. else
  370. usingApache=""
  371. fi
  372. createAccountKey $Le_Domain $Le_Keylength
  373. if ! createDomainKey $Le_Domain $Le_Keylength ; then
  374. _err "Create domain key error."
  375. return 1
  376. fi
  377. if ! createCSR $Le_Domain $Le_Alt ; then
  378. _err "Create CSR error."
  379. return 1
  380. fi
  381. 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)
  382. if [ "${#pub_exp}" == "5" ] ; then
  383. pub_exp=0$pub_exp
  384. fi
  385. _debug pub_exp "$pub_exp"
  386. e=$(echo $pub_exp | xxd -r -p | base64)
  387. _debug e "$e"
  388. modulus=$(openssl rsa -in $ACCOUNT_KEY_PATH -modulus -noout | cut -d '=' -f 2 )
  389. n=$(echo $modulus| xxd -r -p | base64 -w 0 | _b64 )
  390. jwk='{"e": "'$e'", "kty": "RSA", "n": "'$n'"}'
  391. HEADER='{"alg": "RS256", "jwk": '$jwk'}'
  392. HEADERPLACE='{"nonce": "NONCE", "alg": "RS256", "jwk": '$jwk'}'
  393. _debug HEADER "$HEADER"
  394. accountkey_json=$(echo -n "$jwk" | sed "s/ //g")
  395. thumbprint=$(echo -n "$accountkey_json" | sha256sum | xxd -r -p | base64 -w 0 | _b64)
  396. _info "Registering account"
  397. regjson='{"resource": "new-reg", "agreement": "'$AGREEMENT'"}'
  398. if [ "$ACCOUNT_EMAIL" ] ; then
  399. regjson='{"resource": "new-reg", "contact": ["mailto: '$ACCOUNT_EMAIL'"], "agreement": "'$AGREEMENT'"}'
  400. fi
  401. _send_signed_request "$API/acme/new-reg" "$regjson"
  402. if [ "$code" == "" ] || [ "$code" == '201' ] ; then
  403. _info "Registered"
  404. echo $response > $WORKING_DIR/account.json
  405. elif [ "$code" == '409' ] ; then
  406. _info "Already registered"
  407. else
  408. _err "Register account Error."
  409. _clearup
  410. return 1
  411. fi
  412. # verify each domain
  413. _info "Verify each domain"
  414. alldomains=$(echo "$Le_Domain,$Le_Alt" | sed "s/,/ /g")
  415. for d in $alldomains
  416. do
  417. _info "Verifing domain" $d
  418. _send_signed_request "$API/acme/new-authz" "{\"resource\": \"new-authz\", \"identifier\": {\"type\": \"dns\", \"value\": \"$d\"}}"
  419. if [ ! -z "$code" ] && [ ! "$code" == '201' ] ; then
  420. _err "new-authz error: $response"
  421. _clearup
  422. return 1
  423. fi
  424. http01=$(echo $response | egrep -o '{[^{]*"type":"http-01"[^}]*')
  425. _debug http01 "$http01"
  426. token=$(echo "$http01" | sed 's/,/\n'/g| grep '"token":'| cut -d : -f 2|sed 's/"//g')
  427. _debug token $token
  428. uri=$(echo "$http01" | sed 's/,/\n'/g| grep '"uri":'| cut -d : -f 2,3|sed 's/"//g')
  429. _debug uri $uri
  430. keyauthorization="$token.$thumbprint"
  431. _debug keyauthorization "$keyauthorization"
  432. if [ "$Le_Webroot" == "no" ] ; then
  433. _info "Standalone mode server"
  434. _startserver "$keyauthorization" &
  435. serverproc="$!"
  436. sleep 2
  437. _debug serverproc $serverproc
  438. else
  439. if [ -z "$wellknown_path" ] ; then
  440. wellknown_path="$Le_Webroot/.well-known/acme-challenge"
  441. fi
  442. _debug wellknown_path "$wellknown_path"
  443. mkdir -p "$wellknown_path"
  444. echo -n "$keyauthorization" > "$wellknown_path/$token"
  445. fi
  446. wellknown_url="http://$d/.well-known/acme-challenge/$token"
  447. _debug wellknown_url "$wellknown_url"
  448. _debug challenge "$challenge"
  449. _send_signed_request $uri "{\"resource\": \"challenge\", \"keyAuthorization\": \"$keyauthorization\"}"
  450. if [ ! -z "$code" ] && [ ! "$code" == '202' ] ; then
  451. _err "$d:Challenge error: $resource"
  452. _clearup
  453. return 1
  454. fi
  455. while [ "1" ] ; do
  456. _debug "sleep 5 secs to verify"
  457. sleep 5
  458. _debug "checking"
  459. if ! _get $uri ; then
  460. _err "$d:Verify error:$resource"
  461. _clearup
  462. return 1
  463. fi
  464. status=$(echo $response | egrep -o '"status":"[^"]+"' | cut -d : -f 2 | sed 's/"//g')
  465. if [ "$status" == "valid" ] ; then
  466. _info "Success"
  467. break;
  468. fi
  469. if [ "$status" == "invalid" ] ; then
  470. error=$(echo $response | egrep -o '"error":{[^}]*}' | grep -o '"detail":"[^"]*"' | cut -d '"' -f 4)
  471. _err "$d:Verify error:$error"
  472. _clearup
  473. return 1;
  474. fi
  475. if [ "$status" == "pending" ] ; then
  476. _info "Pending"
  477. else
  478. _err "$d:Verify error:$response"
  479. _clearup
  480. return 1
  481. fi
  482. done
  483. _stopserver $serverproc
  484. serverproc=""
  485. done
  486. _clearup
  487. _info "Verify finished, start to sign."
  488. der="$(openssl req -in $CSR_PATH -outform DER | base64 -w 0 | _b64)"
  489. _send_signed_request "$API/acme/new-cert" "{\"resource\": \"new-cert\", \"csr\": \"$der\"}" "needbase64"
  490. Le_LinkCert="$(grep -i -o '^Location.*' $CURL_HEADER |sed 's/\r//g'| cut -d " " -f 2)"
  491. _setopt "$DOMAIN_CONF" "Le_LinkCert" "=" "$Le_LinkCert"
  492. if [ "$Le_LinkCert" ] ; then
  493. echo -----BEGIN CERTIFICATE----- > "$CERT_PATH"
  494. curl --silent "$Le_LinkCert" | base64 >> "$CERT_PATH"
  495. echo -----END CERTIFICATE----- >> "$CERT_PATH"
  496. _info "Cert success."
  497. cat "$CERT_PATH"
  498. _info "Your cert is in $CERT_PATH"
  499. fi
  500. if [ -z "$Le_LinkCert" ] ; then
  501. response="$(echo $response | base64 -d)"
  502. _err "Sign failed: $(echo "$response" | grep -o '"detail":"[^"]*"')"
  503. return 1
  504. fi
  505. Le_LinkIssuer=$(grep -i '^Link' $CURL_HEADER | cut -d " " -f 2| cut -d ';' -f 1 | sed 's/<//g' | sed 's/>//g')
  506. _setopt "$DOMAIN_CONF" "Le_LinkIssuer" "=" "$Le_LinkIssuer"
  507. if [ "$Le_LinkIssuer" ] ; then
  508. echo -----BEGIN CERTIFICATE----- > "$CA_CERT_PATH"
  509. curl --silent "$Le_LinkIssuer" | base64 >> "$CA_CERT_PATH"
  510. echo -----END CERTIFICATE----- >> "$CA_CERT_PATH"
  511. _info "The intermediate CA cert is in $CA_CERT_PATH"
  512. fi
  513. Le_CertCreateTime=$(date -u "+%s")
  514. _setopt "$DOMAIN_CONF" "Le_CertCreateTime" "=" "$Le_CertCreateTime"
  515. Le_CertCreateTimeStr=$(date -u "+%Y-%m-%d %H:%M:%S UTC")
  516. _setopt "$DOMAIN_CONF" "Le_CertCreateTimeStr" "=" "\"$Le_CertCreateTimeStr\""
  517. if [ ! "$Le_RenewalDays" ] ; then
  518. Le_RenewalDays=80
  519. fi
  520. _setopt "$DOMAIN_CONF" "Le_RenewalDays" "=" "$Le_RenewalDays"
  521. Le_NextRenewTime=$(date -u -d "+$Le_RenewalDays day" "+%s")
  522. _setopt "$DOMAIN_CONF" "Le_NextRenewTime" "=" "$Le_NextRenewTime"
  523. Le_NextRenewTimeStr=$(date -u -d "+$Le_RenewalDays day" "+%Y-%m-%d %H:%M:%S UTC")
  524. _setopt "$DOMAIN_CONF" "Le_NextRenewTimeStr" "=" "\"$Le_NextRenewTimeStr\""
  525. if [ "$Le_RealCertPath" ] ; then
  526. if [ -f "$Le_RealCertPath" ] ; then
  527. cp -p "$Le_RealCertPath" "$Le_RealCertPath".bak
  528. fi
  529. cat "$CERT_PATH" > "$Le_RealCertPath"
  530. fi
  531. if [ "$Le_RealCACertPath" ] ; then
  532. if [ -f "$Le_RealCACertPath" ] ; then
  533. cp -p "$Le_RealCACertPath" "$Le_RealCACertPath".bak
  534. fi
  535. cat "$CA_CERT_PATH" > "$Le_RealCACertPath"
  536. fi
  537. if [ "$Le_RealKeyPath" ] ; then
  538. if [ -f "$Le_RealKeyPath" ] ; then
  539. cp -p "$Le_RealKeyPath" "$Le_RealKeyPath".bak
  540. fi
  541. cat "$CERT_KEY_PATH" > "$Le_RealKeyPath"
  542. fi
  543. if [ "$Le_ReloadCmd" ] ; then
  544. _info "Run Le_ReloadCmd: $Le_ReloadCmd"
  545. $Le_ReloadCmd
  546. fi
  547. }
  548. renew() {
  549. Le_Domain="$1"
  550. if [ -z "$Le_Domain" ] ; then
  551. _err "Usage: $0 domain.com"
  552. return 1
  553. fi
  554. _initpath $Le_Domain
  555. if [ -f "$DOMAIN_CONF" ] ; then
  556. source "$DOMAIN_CONF"
  557. if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(date -u "+%s" )" -lt "$Le_NextRenewTime" ] ; then
  558. _info "Skip, Next renewal time is: $Le_NextRenewTimeStr"
  559. return 2
  560. fi
  561. fi
  562. IS_RENEW="1"
  563. issue "$Le_Webroot" "$Le_Domain" "$Le_Alt" "$Le_Keylength" "$Le_RealCertPath" "$Le_RealKeyPath" "$Le_RealCACertPath" "$Le_ReloadCmd"
  564. IS_RENEW=""
  565. }
  566. renewAll() {
  567. _initpath
  568. _info "renewAll"
  569. for d in $(ls -F $WORKING_DIR | grep '/$') ; do
  570. d=$(echo $d | cut -d '/' -f 1)
  571. _info "renew $d"
  572. Le_LinkCert=""
  573. Le_Domain=""
  574. Le_Alt=""
  575. Le_Webroot=""
  576. Le_Keylength=""
  577. Le_LinkIssuer=""
  578. Le_CertCreateTime=""
  579. Le_CertCreateTimeStr=""
  580. Le_RenewalDays=""
  581. Le_NextRenewTime=""
  582. Le_NextRenewTimeStr=""
  583. Le_RealCertPath=""
  584. Le_RealKeyPath=""
  585. Le_RealCACertPath=""
  586. Le_ReloadCmd=""
  587. DOMAIN_CONF=""
  588. CSR_PATH=""
  589. CERT_KEY_PATH=""
  590. CERT_PATH=""
  591. CA_CERT_PATH=""
  592. ACCOUNT_KEY_PATH=""
  593. wellknown_path=""
  594. renew "$d"
  595. done
  596. }
  597. install() {
  598. _initpath
  599. if ! command -v "curl" > /dev/null ; then
  600. _err "Please install curl first."
  601. _err "Ubuntu: sudo apt-get install curl"
  602. _err "CentOS: yum install curl"
  603. return 1
  604. fi
  605. if ! command -v "crontab" > /dev/null ; then
  606. _err "Please install crontab first."
  607. _err "CentOs: yum -y install crontabs"
  608. return 1
  609. fi
  610. if ! command -v "openssl" > /dev/null ; then
  611. _err "Please install openssl first."
  612. _err "CentOs: yum -y install openssl"
  613. return 1
  614. fi
  615. if ! command -v "xxd" > /dev/null ; then
  616. _err "Please install xxd first."
  617. _err "CentOs: yum install vim-common"
  618. return 1
  619. fi
  620. _info "Installing to $WORKING_DIR"
  621. if [ ! -f /bin/le.sh ] ; then
  622. cp le.sh "/bin/"
  623. chmod +x "/bin/le.sh"
  624. ln -s "/bin/le.sh" /bin/le
  625. fi
  626. _info "Installing cron job"
  627. if command -v sudo > /dev/null ; then
  628. if [ "$(sudo -n uptime 2>&1|grep "load"|wc -l)" != "0" ] ; then
  629. SUDO=sudo
  630. fi
  631. fi
  632. if ! crontab -l | grep 'le renewAll' ; then
  633. crontab -l | { cat; echo "0 0 * * * $SUDO le renewAll > /dev/null"; } | crontab -
  634. if command -v crond > /dev/null ; then
  635. service crond reload >/dev/null
  636. else
  637. service cron reload >/dev/null
  638. fi
  639. fi
  640. _info OK
  641. }
  642. uninstall() {
  643. _initpath
  644. _info "Removing cron job"
  645. if crontab -l | grep 'le.*renewAll' ; then
  646. crontab -l | sed "/le.*renewAll/d" | crontab -
  647. if command -v crond > /dev/null ; then
  648. service crond reload >/dev/null
  649. else
  650. service cron reload >/dev/null
  651. fi
  652. fi
  653. _info "Removing /bin/le.sh"
  654. rm -f /bin/le
  655. rm -f /bin/le.sh
  656. _info "The keys and certs are in $WORKING_DIR, you can remove them by yourself."
  657. }
  658. version() {
  659. _info "$PROJECT"
  660. _info "v$VER"
  661. }
  662. showhelp() {
  663. version
  664. echo "Usage: issue|renew|renewAll|createAccountKey|createDomainKey|createCSR|install|uninstall|version"
  665. }
  666. if [ -z "$1" ] ; then
  667. showhelp
  668. else
  669. "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9"
  670. fi