]> git.proxmox.com Git - mirror_acme.sh.git/blame - acme.sh
fix env
[mirror_acme.sh.git] / acme.sh
CommitLineData
0a7c9364 1#!/usr/bin/env sh
bfdf1f48 2
fd6a5920 3VER=3.0.0
a7b7355d 4
6cc11ffb 5PROJECT_NAME="acme.sh"
a7b7355d 6
6cc11ffb 7PROJECT_ENTRY="acme.sh"
8
09f74a9a 9PROJECT="https://github.com/acmesh-official/$PROJECT_NAME"
4c3b3608 10
f3e4cea3 11DEFAULT_INSTALL_HOME="$HOME/.$PROJECT_NAME"
77f96b38 12
13_WINDOWS_SCHEDULER_NAME="$PROJECT_NAME.cron"
14
f3e4cea3 15_SCRIPT_="$0"
16
b50e701c 17_SUB_FOLDER_NOTIFY="notify"
18_SUB_FOLDER_DNSAPI="dnsapi"
19_SUB_FOLDER_DEPLOY="deploy"
20
21_SUB_FOLDERS="$_SUB_FOLDER_DNSAPI $_SUB_FOLDER_DEPLOY $_SUB_FOLDER_NOTIFY"
f3e4cea3 22
737e9e48 23CA_LETSENCRYPT_V2="https://acme-v02.api.letsencrypt.org/directory"
24CA_LETSENCRYPT_V2_TEST="https://acme-staging-v02.api.letsencrypt.org/directory"
c1151b0d 25
737e9e48 26CA_BUYPASS="https://api.buypass.com/acme/directory"
27CA_BUYPASS_TEST="https://api.test4.buypass.no/acme/directory"
28
29CA_ZEROSSL="https://acme.zerossl.com/v2/DV90"
389518e1 30_ZERO_EAB_ENDPOINT="http://api.zerossl.com/acme/eab-credentials-email"
31
d0b51489 32DEFAULT_CA=$CA_ZEROSSL
737e9e48 33DEFAULT_STAGING_CA=$CA_LETSENCRYPT_V2_TEST
34
35CA_NAMES="
50fefc3b 36LetsEncrypt.org,letsencrypt
37LetsEncrypt.org_test,letsencrypt_test,letsencrypttest
269847d1 38BuyPass.com,buypass
39BuyPass.com_test,buypass_test,buypasstest
40ZeroSSL.com,zerossl
737e9e48 41"
42
43CA_SERVERS="$CA_LETSENCRYPT_V2,$CA_LETSENCRYPT_V2_TEST,$CA_BUYPASS,$CA_BUYPASS_TEST,$CA_ZEROSSL"
f87890cb 44
07af4247 45DEFAULT_USER_AGENT="$PROJECT_NAME/$VER ($PROJECT)"
bbbdcb09 46
57e58ce7 47DEFAULT_ACCOUNT_KEY_LENGTH=2048
48DEFAULT_DOMAIN_KEY_LENGTH=2048
49
a746139c 50DEFAULT_OPENSSL_BIN="openssl"
51
4c3b3608 52VTYPE_HTTP="http-01"
53VTYPE_DNS="dns-01"
08681f4a 54VTYPE_ALPN="tls-alpn-01"
e22bcf7c 55
0463b5d6 56LOCAL_ANY_ADDRESS="0.0.0.0"
57
ec67a1b2 58DEFAULT_RENEW=60
523c7682 59
3f4513b3 60NO_VALUE="no"
61
3881f221 62W_DNS="dns"
08681f4a 63W_ALPN="alpn"
64821ad4 64DNS_ALIAS_PREFIX="="
4c3b3608 65
0e44f587 66MODE_STATELESS="stateless"
67
ec603bee 68STATE_VERIFIED="verified_ok"
69
9d725af6 70NGINX="nginx:"
03f8d6e9 71NGINX_START="#ACME_NGINX_START"
72NGINX_END="#ACME_NGINX_END"
9d725af6 73
88fab7d6 74BEGIN_CSR="-----BEGIN CERTIFICATE REQUEST-----"
75END_CSR="-----END CERTIFICATE REQUEST-----"
76
77BEGIN_CERT="-----BEGIN CERTIFICATE-----"
78END_CERT="-----END CERTIFICATE-----"
79
45e386b2 80CONTENT_TYPE_JSON="application/jose+json"
cc179731 81RENEW_SKIP=2
82
7690f73e 83B64CONF_START="__ACME_BASE64__START_"
84B64CONF_END="__ACME_BASE64__END_"
85
43822d37 86ECC_SEP="_"
87ECC_SUFFIX="${ECC_SEP}ecc"
88
a73c5b33 89LOG_LEVEL_1=1
90LOG_LEVEL_2=2
91LOG_LEVEL_3=3
92DEFAULT_LOG_LEVEL="$LOG_LEVEL_1"
93
fc6cf4d9 94DEBUG_LEVEL_1=1
95DEBUG_LEVEL_2=2
96DEBUG_LEVEL_3=3
97DEBUG_LEVEL_DEFAULT=$DEBUG_LEVEL_1
98DEBUG_LEVEL_NONE=0
99
10eec7d4 100DOH_CLOUDFLARE=1
101DOH_GOOGLE=2
e65144a1 102DOH_ALI=3
103DOH_DP=4
10eec7d4 104
e6e85b0c 105HIDDEN_VALUE="[hidden](please add '--output-insecure' to see this value)"
106
e2edf208 107SYSLOG_ERROR="user.error"
fc6cf4d9 108SYSLOG_INFO="user.info"
e2edf208 109SYSLOG_DEBUG="user.debug"
110
fc6cf4d9 111#error
113089be 112SYSLOG_LEVEL_ERROR=3
fc6cf4d9 113#info
113089be 114SYSLOG_LEVEL_INFO=6
fc6cf4d9 115#debug
113089be 116SYSLOG_LEVEL_DEBUG=7
fc6cf4d9 117#debug2
113089be 118SYSLOG_LEVEL_DEBUG_2=8
fc6cf4d9 119#debug3
113089be 120SYSLOG_LEVEL_DEBUG_3=9
fc6cf4d9 121
113089be 122SYSLOG_LEVEL_DEFAULT=$SYSLOG_LEVEL_ERROR
fc6cf4d9 123#none
124SYSLOG_LEVEL_NONE=0
125
b50e701c 126NOTIFY_LEVEL_DISABLE=0
127NOTIFY_LEVEL_ERROR=1
128NOTIFY_LEVEL_RENEW=2
129NOTIFY_LEVEL_SKIP=3
130
131NOTIFY_LEVEL_DEFAULT=$NOTIFY_LEVEL_RENEW
132
133NOTIFY_MODE_BULK=0
134NOTIFY_MODE_CERT=1
135
136NOTIFY_MODE_DEFAULT=$NOTIFY_MODE_BULK
137
09f74a9a 138_DEBUG_WIKI="https://github.com/acmesh-official/acme.sh/wiki/How-to-debug-acme.sh"
4c3b3608 139
09f74a9a 140_PREPARE_LINK="https://github.com/acmesh-official/acme.sh/wiki/Install-preparations"
562a4c05 141
09f74a9a 142_STATELESS_WIKI="https://github.com/acmesh-official/acme.sh/wiki/Stateless-Mode"
0e44f587 143
09f74a9a 144_DNS_ALIAS_WIKI="https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode"
875625b1 145
09f74a9a 146_DNS_MANUAL_WIKI="https://github.com/acmesh-official/acme.sh/wiki/dns-manual-mode"
a0923622 147
e3ebd582 148_DNS_API_WIKI="https://github.com/acmesh-official/acme.sh/wiki/dnsapi"
149
09f74a9a 150_NOTIFY_WIKI="https://github.com/acmesh-official/acme.sh/wiki/notify"
b50e701c 151
09f74a9a 152_SUDO_WIKI="https://github.com/acmesh-official/acme.sh/wiki/sudo"
5bdfdfef 153
1041c9f9 154_REVOKE_WIKI="https://github.com/acmesh-official/acme.sh/wiki/revokecert"
155
737e9e48 156_ZEROSSL_WIKI="https://github.com/acmesh-official/acme.sh/wiki/ZeroSSL.com-CA"
157
d83d8552 158_SERVER_WIKI="https://github.com/acmesh-official/acme.sh/wiki/Server"
159
e3ebd582 160_PREFERRED_CHAIN_WIKI="https://github.com/acmesh-official/acme.sh/wiki/Preferred-Chain"
161
8a24275b 162_DNSCHECK_WIKI="https://github.com/acmesh-official/acme.sh/wiki/dnscheck"
163
309bec47 164_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."
165
166_DNS_MANUAL_WARN="It seems that you are using dns manual mode. please take care: $_DNS_MANUAL_ERR"
167
a0923622 168_DNS_MANUAL_ERROR="It seems that you are using dns manual mode. Read this link first: $_DNS_MANUAL_WIKI"
169
08ee072f 170__INTERACTIVE=""
4c2a3841 171if [ -t 1 ]; then
08ee072f 172 __INTERACTIVE="1"
173fi
00a50605 174
43822d37 175__green() {
137dc1ea 176 if [ "${__INTERACTIVE}${ACME_NO_COLOR:-0}" = "10" -o "${ACME_FORCE_COLOR}" = "1" ]; then
671edc33 177 printf '\33[1;32m%b\33[0m' "$1"
137dc1ea 178 return
2d12b689 179 fi
3576754c 180 printf -- "%b" "$1"
43822d37 181}
182
183__red() {
137dc1ea 184 if [ "${__INTERACTIVE}${ACME_NO_COLOR:-0}" = "10" -o "${ACME_FORCE_COLOR}" = "1" ]; then
671edc33 185 printf '\33[1;31m%b\33[0m' "$1"
137dc1ea 186 return
2d12b689 187 fi
3576754c 188 printf -- "%b" "$1"
43822d37 189}
00a50605 190
a73c5b33 191_printargs() {
65a7d569 192 _exitstatus="$?"
569d6c55 193 if [ -z "$NO_TIMESTAMP" ] || [ "$NO_TIMESTAMP" = "0" ]; then
194 printf -- "%s" "[$(date)] "
195 fi
4c2a3841 196 if [ -z "$2" ]; then
569d6c55 197 printf -- "%s" "$1"
43822d37 198 else
569d6c55 199 printf -- "%s" "$1='$2'"
43822d37 200 fi
a73c5b33 201 printf "\n"
ac9f6e3a 202 # return the saved exit status
52351d7d 203 return "$_exitstatus"
43822d37 204}
205
9d548d81 206_dlg_versions() {
207 echo "Diagnosis versions: "
851fedf7 208 echo "openssl:$ACME_OPENSSL_BIN"
d8ba26e6 209 if _exists "${ACME_OPENSSL_BIN:-openssl}"; then
210 ${ACME_OPENSSL_BIN:-openssl} version 2>&1
9d548d81 211 else
eca57bee 212 echo "$ACME_OPENSSL_BIN doesn't exist."
9d548d81 213 fi
4c2a3841 214
9d548d81 215 echo "apache:"
4c2a3841 216 if [ "$_APACHECTL" ] && _exists "$_APACHECTL"; then
e735d8d4 217 $_APACHECTL -V 2>&1
9d548d81 218 else
eca57bee 219 echo "apache doesn't exist."
9d548d81 220 fi
4c2a3841 221
326c386b 222 echo "nginx:"
223 if _exists "nginx"; then
224 nginx -V 2>&1
225 else
eca57bee 226 echo "nginx doesn't exist."
326c386b 227 fi
228
3794b5cb 229 echo "socat:"
230 if _exists "socat"; then
463df9e4 231 socat -V 2>&1
9d548d81 232 else
eca57bee 233 _debug "socat doesn't exist."
9d548d81 234 fi
235}
43822d37 236
e2edf208 237#class
238_syslog() {
65a7d569 239 _exitstatus="$?"
fc6cf4d9 240 if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" = "$SYSLOG_LEVEL_NONE" ]; then
e2edf208 241 return
242 fi
243 _logclass="$1"
244 shift
5b3e3d9c 245 if [ -z "$__logger_i" ]; then
246 if _contains "$(logger --help 2>&1)" "-i"; then
247 __logger_i="logger -i"
248 else
249 __logger_i="logger"
250 fi
251 fi
252 $__logger_i -t "$PROJECT_NAME" -p "$_logclass" "$(_printargs "$@")" >/dev/null 2>&1
65a7d569 253 return "$_exitstatus"
e2edf208 254}
255
a73c5b33 256_log() {
257 [ -z "$LOG_FILE" ] && return
95e06de5 258 _printargs "$@" >>"$LOG_FILE"
a73c5b33 259}
260
261_info() {
fc6cf4d9 262 _log "$@"
113089be 263 if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_INFO" ]; then
fc6cf4d9 264 _syslog "$SYSLOG_INFO" "$@"
265 fi
a73c5b33 266 _printargs "$@"
4c3b3608 267}
268
269_err() {
fc6cf4d9 270 _syslog "$SYSLOG_ERROR" "$@"
271 _log "$@"
569d6c55 272 if [ -z "$NO_TIMESTAMP" ] || [ "$NO_TIMESTAMP" = "0" ]; then
273 printf -- "%s" "[$(date)] " >&2
274 fi
4c2a3841 275 if [ -z "$2" ]; then
65de3110 276 __red "$1" >&2
277 else
278 __red "$1='$2'" >&2
279 fi
b19ba13a 280 printf "\n" >&2
4c3b3608 281 return 1
282}
283
43822d37 284_usage() {
4c2a3841 285 __red "$@" >&2
65de3110 286 printf "\n" >&2
43822d37 287}
288
bba5376a
JV
289__debug_bash_helper() {
290 # At this point only do for --debug 3
291 if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -lt "$DEBUG_LEVEL_3" ]; then
bba5376a
JV
292 return
293 fi
294 # Return extra debug info when running with bash, otherwise return empty
295 # string.
296 if [ -z "${BASH_VERSION}" ]; then
bba5376a
JV
297 return
298 fi
299 # We are a bash shell at this point, return the filename, function name, and
300 # line number as a string
301 _dbh_saveIFS=$IFS
302 IFS=" "
adce8f52
JV
303 # Must use eval or syntax error happens under dash. The eval should use
304 # single quotes as older versions of busybox had a bug with double quotes and
305 # eval.
bba5376a
JV
306 # Use 'caller 1' as we want one level up the stack as we should be called
307 # by one of the _debug* functions
adce8f52 308 eval '_dbh_called=($(caller 1))'
bba5376a 309 IFS=$_dbh_saveIFS
adce8f52 310 eval '_dbh_file=${_dbh_called[2]}'
bba5376a
JV
311 if [ -n "${_script_home}" ]; then
312 # Trim off the _script_home directory name
adce8f52 313 eval '_dbh_file=${_dbh_file#$_script_home/}'
bba5376a 314 fi
adce8f52
JV
315 eval '_dbh_function=${_dbh_called[1]}'
316 eval '_dbh_lineno=${_dbh_called[0]}'
bba5376a
JV
317 printf "%-40s " "$_dbh_file:${_dbh_function}:${_dbh_lineno}"
318}
319
c60883ef 320_debug() {
fc6cf4d9 321 if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_1" ]; then
322 _log "$@"
a73c5b33 323 fi
113089be 324 if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG" ]; then
fc6cf4d9 325 _syslog "$SYSLOG_DEBUG" "$@"
326 fi
327 if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_1" ]; then
bba5376a
JV
328 _bash_debug=$(__debug_bash_helper)
329 _printargs "${_bash_debug}$@" >&2
c60883ef 330 fi
c60883ef 331}
332
e6e85b0c 333#output the sensitive messages
334_secure_debug() {
335 if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_1" ]; then
336 if [ "$OUTPUT_INSECURE" = "1" ]; then
337 _log "$@"
338 else
339 _log "$1" "$HIDDEN_VALUE"
340 fi
341 fi
342 if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG" ]; then
343 _syslog "$SYSLOG_DEBUG" "$1" "$HIDDEN_VALUE"
344 fi
345 if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_1" ]; then
346 if [ "$OUTPUT_INSECURE" = "1" ]; then
347 _printargs "$@" >&2
348 else
349 _printargs "$1" "$HIDDEN_VALUE" >&2
350 fi
351 fi
352}
353
a63b05a9 354_debug2() {
fc6cf4d9 355 if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_2" ]; then
356 _log "$@"
a73c5b33 357 fi
113089be 358 if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG_2" ]; then
fc6cf4d9 359 _syslog "$SYSLOG_DEBUG" "$@"
360 fi
361 if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_2" ]; then
bba5376a
JV
362 _bash_debug=$(__debug_bash_helper)
363 _printargs "${_bash_debug}$@" >&2
a63b05a9 364 fi
a63b05a9 365}
366
e6e85b0c 367_secure_debug2() {
368 if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_2" ]; then
369 if [ "$OUTPUT_INSECURE" = "1" ]; then
370 _log "$@"
371 else
372 _log "$1" "$HIDDEN_VALUE"
373 fi
374 fi
375 if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG_2" ]; then
376 _syslog "$SYSLOG_DEBUG" "$1" "$HIDDEN_VALUE"
377 fi
378 if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_2" ]; then
379 if [ "$OUTPUT_INSECURE" = "1" ]; then
380 _printargs "$@" >&2
381 else
382 _printargs "$1" "$HIDDEN_VALUE" >&2
383 fi
384 fi
385}
386
22ea4004 387_debug3() {
fc6cf4d9 388 if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_3" ]; then
389 _log "$@"
390 fi
113089be 391 if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG_3" ]; then
fc6cf4d9 392 _syslog "$SYSLOG_DEBUG" "$@"
a73c5b33 393 fi
fc6cf4d9 394 if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_3" ]; then
bba5376a
JV
395 _bash_debug=$(__debug_bash_helper)
396 _printargs "${_bash_debug}$@" >&2
22ea4004 397 fi
22ea4004 398}
399
e6e85b0c 400_secure_debug3() {
401 if [ "${LOG_LEVEL:-$DEFAULT_LOG_LEVEL}" -ge "$LOG_LEVEL_3" ]; then
402 if [ "$OUTPUT_INSECURE" = "1" ]; then
403 _log "$@"
404 else
405 _log "$1" "$HIDDEN_VALUE"
406 fi
407 fi
408 if [ "${SYS_LOG:-$SYSLOG_LEVEL_NONE}" -ge "$SYSLOG_LEVEL_DEBUG_3" ]; then
409 _syslog "$SYSLOG_DEBUG" "$1" "$HIDDEN_VALUE"
410 fi
411 if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_3" ]; then
412 if [ "$OUTPUT_INSECURE" = "1" ]; then
413 _printargs "$@" >&2
414 else
415 _printargs "$1" "$HIDDEN_VALUE" >&2
416 fi
417 fi
418}
419
c4bf5eef 420_upper_case() {
421 # shellcheck disable=SC2018,SC2019
422 tr 'a-z' 'A-Z'
423}
424
425_lower_case() {
426 # shellcheck disable=SC2018,SC2019
427 tr 'A-Z' 'a-z'
428}
429
4c2a3841 430_startswith() {
dceb3aca 431 _str="$1"
432 _sub="$2"
19539575 433 echo "$_str" | grep "^$_sub" >/dev/null 2>&1
dceb3aca 434}
435
4c2a3841 436_endswith() {
43822d37 437 _str="$1"
438 _sub="$2"
439 echo "$_str" | grep -- "$_sub\$" >/dev/null 2>&1
440}
441
4c2a3841 442_contains() {
dceb3aca 443 _str="$1"
444 _sub="$2"
43822d37 445 echo "$_str" | grep -- "$_sub" >/dev/null 2>&1
dceb3aca 446}
447
c53da1ef 448_hasfield() {
449 _str="$1"
450 _field="$2"
451 _sep="$3"
4c2a3841 452 if [ -z "$_field" ]; then
43822d37 453 _usage "Usage: str field [sep]"
c53da1ef 454 return 1
455 fi
4c2a3841 456
457 if [ -z "$_sep" ]; then
c53da1ef 458 _sep=","
459 fi
4c2a3841 460
6cf7be4b 461 for f in $(echo "$_str" | tr "$_sep" ' '); do
4c2a3841 462 if [ "$f" = "$_field" ]; then
0c9546cc 463 _debug2 "'$_str' contains '$_field'"
c53da1ef 464 return 0 #contains ok
465 fi
466 done
0c9546cc 467 _debug2 "'$_str' does not contain '$_field'"
3c07f57a 468 return 1 #not contains
c53da1ef 469}
470
422dd1fa 471# str index [sep]
4c2a3841 472_getfield() {
0463b5d6 473 _str="$1"
474 _findex="$2"
475 _sep="$3"
4c2a3841 476
477 if [ -z "$_findex" ]; then
0463b5d6 478 _usage "Usage: str field [sep]"
479 return 1
480 fi
4c2a3841 481
482 if [ -z "$_sep" ]; then
0463b5d6 483 _sep=","
484 fi
485
201aa244 486 _ffi="$_findex"
4c2a3841 487 while [ "$_ffi" -gt "0" ]; do
201aa244 488 _fv="$(echo "$_str" | cut -d "$_sep" -f "$_ffi")"
4c2a3841 489 if [ "$_fv" ]; then
0463b5d6 490 printf -- "%s" "$_fv"
491 return 0
492 fi
95e06de5 493 _ffi="$(_math "$_ffi" - 1)"
0463b5d6 494 done
4c2a3841 495
0463b5d6 496 printf -- "%s" "$_str"
497
498}
499
4c2a3841 500_exists() {
c60883ef 501 cmd="$1"
4c2a3841 502 if [ -z "$cmd" ]; then
43822d37 503 _usage "Usage: _exists cmd"
c60883ef 504 return 1
505 fi
82dc2244 506
507 if eval type type >/dev/null 2>&1; then
508 eval type "$cmd" >/dev/null 2>&1
509 elif command >/dev/null 2>&1; then
19539575 510 command -v "$cmd" >/dev/null 2>&1
ce4be4e9 511 else
e591d5cf 512 which "$cmd" >/dev/null 2>&1
eac18b1c 513 fi
c60883ef 514 ret="$?"
690a5e20 515 _debug3 "$cmd exists=$ret"
c60883ef 516 return $ret
517}
518
00a50605 519#a + b
4c2a3841 520_math() {
be68fbd4 521 _m_opts="$@"
522 printf "%s" "$(($_m_opts))"
00a50605 523}
524
525_h_char_2_dec() {
526 _ch=$1
527 case "${_ch}" in
19c43451 528 a | A)
529 printf "10"
530 ;;
531 b | B)
532 printf "11"
533 ;;
534 c | C)
535 printf "12"
536 ;;
537 d | D)
538 printf "13"
539 ;;
540 e | E)
541 printf "14"
542 ;;
543 f | F)
544 printf "15"
545 ;;
546 *)
547 printf "%s" "$_ch"
548 ;;
19539575 549 esac
00a50605 550
551}
552
fac1e367 553_URGLY_PRINTF=""
4c2a3841 554if [ "$(printf '\x41')" != 'A' ]; then
fac1e367 555 _URGLY_PRINTF=1
556fi
557
f8bcfeb2 558_ESCAPE_XARGS=""
841b7627 559if _exists xargs && [ "$(printf %s '\\x41' | xargs printf)" = 'A' ]; then
f8bcfeb2 560 _ESCAPE_XARGS=1
561fi
562
4c3b3608 563_h2b() {
9a90fe37 564 if _exists xxd; then
565 if _contains "$(xxd --help 2>&1)" "assumes -c30"; then
566 if xxd -r -p -c 9999 2>/dev/null; then
567 return
568 fi
569 else
570 if xxd -r -p 2>/dev/null; then
571 return
572 fi
573 fi
b420ec6c 574 fi
575
4c3b3608 576 hex=$(cat)
fa93d68b 577 ic=""
578 jc=""
b420ec6c 579 _debug2 _URGLY_PRINTF "$_URGLY_PRINTF"
580 if [ -z "$_URGLY_PRINTF" ]; then
f8bcfeb2 581 if [ "$_ESCAPE_XARGS" ] && _exists xargs; then
fa93d68b 582 _debug2 "xargs"
ded4469e 583 echo "$hex" | _upper_case | sed 's/\([0-9A-F]\{2\}\)/\\\\\\x\1/g' | xargs printf
fa93d68b 584 else
ded4469e 585 for h in $(echo "$hex" | _upper_case | sed 's/\([0-9A-F]\{2\}\)/ \1/g'); do
fa93d68b 586 if [ -z "$h" ]; then
587 break
588 fi
589 printf "\x$h%s"
590 done
591 fi
b420ec6c 592 else
ded4469e 593 for c in $(echo "$hex" | _upper_case | sed 's/\([0-9A-F]\)/ \1/g'); do
fa93d68b 594 if [ -z "$ic" ]; then
595 ic=$c
596 continue
00a50605 597 fi
fa93d68b 598 jc=$c
19539575 599 ic="$(_h_char_2_dec "$ic")"
600 jc="$(_h_char_2_dec "$jc")"
e51bef6d 601 printf '\'"$(printf "%o" "$(_math "$ic" \* 16 + $jc)")""%s"
fa93d68b 602 ic=""
603 jc=""
b420ec6c 604 done
605 fi
e591d5cf 606
4c3b3608 607}
608
542d7977 609_is_solaris() {
610 _contains "${__OS__:=$(uname -a)}" "solaris" || _contains "${__OS__:=$(uname -a)}" "SunOS"
611}
612
9bdb799b 613#_ascii_hex str
614#this can only process ascii chars, should only be used when od command is missing as a backup way.
615_ascii_hex() {
616 _debug2 "Using _ascii_hex"
617 _str="$1"
618 _str_len=${#_str}
619 _h_i=1
620 while [ "$_h_i" -le "$_str_len" ]; do
621 _str_c="$(printf "%s" "$_str" | cut -c "$_h_i")"
622 printf " %02x" "'$_str_c"
623 _h_i="$(_math "$_h_i" + 1)"
624 done
625}
626
542d7977 627#stdin output hexstr splited by one space
628#input:"abc"
629#output: " 61 62 63"
630_hex_dump() {
4e4a6d83 631 if _exists od; then
632 od -A n -v -t x1 | tr -s " " | sed 's/ $//' | tr -d "\r\t\n"
633 elif _exists hexdump; then
634 _debug3 "using hexdump"
635 hexdump -v -e '/1 ""' -e '/1 " %02x" ""'
636 elif _exists xxd; then
637 _debug3 "using xxd"
638 xxd -ps -c 20 -i | sed "s/ 0x/ /g" | tr -d ",\n" | tr -s " "
639 else
640 _debug3 "using _ascii_hex"
9bdb799b 641 str=$(cat)
642 _ascii_hex "$str"
643 fi
542d7977 644}
645
646#url encode, no-preserved chars
647#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
648#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
649
650#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
651#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
652
653#0 1 2 3 4 5 6 7 8 9 - _ . ~
654#30 31 32 33 34 35 36 37 38 39 2d 5f 2e 7e
655
656#stdin stdout
657_url_encode() {
658 _hex_str=$(_hex_dump)
659 _debug3 "_url_encode"
660 _debug3 "_hex_str" "$_hex_str"
661 for _hex_code in $_hex_str; do
662 #upper case
663 case "${_hex_code}" in
19c43451 664 "41")
665 printf "%s" "A"
666 ;;
667 "42")
668 printf "%s" "B"
669 ;;
670 "43")
671 printf "%s" "C"
672 ;;
673 "44")
674 printf "%s" "D"
675 ;;
676 "45")
677 printf "%s" "E"
678 ;;
679 "46")
680 printf "%s" "F"
681 ;;
682 "47")
683 printf "%s" "G"
684 ;;
685 "48")
686 printf "%s" "H"
687 ;;
688 "49")
689 printf "%s" "I"
690 ;;
691 "4a")
692 printf "%s" "J"
693 ;;
694 "4b")
695 printf "%s" "K"
696 ;;
697 "4c")
698 printf "%s" "L"
699 ;;
700 "4d")
701 printf "%s" "M"
702 ;;
703 "4e")
704 printf "%s" "N"
705 ;;
706 "4f")
707 printf "%s" "O"
708 ;;
709 "50")
710 printf "%s" "P"
711 ;;
712 "51")
713 printf "%s" "Q"
714 ;;
715 "52")
716 printf "%s" "R"
717 ;;
718 "53")
719 printf "%s" "S"
720 ;;
721 "54")
722 printf "%s" "T"
723 ;;
724 "55")
725 printf "%s" "U"
726 ;;
727 "56")
728 printf "%s" "V"
729 ;;
730 "57")
731 printf "%s" "W"
732 ;;
733 "58")
734 printf "%s" "X"
735 ;;
736 "59")
737 printf "%s" "Y"
738 ;;
739 "5a")
740 printf "%s" "Z"
741 ;;
c3b1eb08 742
743 #lower case
19c43451 744 "61")
745 printf "%s" "a"
746 ;;
747 "62")
748 printf "%s" "b"
749 ;;
750 "63")
751 printf "%s" "c"
752 ;;
753 "64")
754 printf "%s" "d"
755 ;;
756 "65")
757 printf "%s" "e"
758 ;;
759 "66")
760 printf "%s" "f"
761 ;;
762 "67")
763 printf "%s" "g"
764 ;;
765 "68")
766 printf "%s" "h"
767 ;;
768 "69")
769 printf "%s" "i"
770 ;;
771 "6a")
772 printf "%s" "j"
773 ;;
774 "6b")
775 printf "%s" "k"
776 ;;
777 "6c")
778 printf "%s" "l"
779 ;;
780 "6d")
781 printf "%s" "m"
782 ;;
783 "6e")
784 printf "%s" "n"
785 ;;
786 "6f")
787 printf "%s" "o"
788 ;;
789 "70")
790 printf "%s" "p"
791 ;;
792 "71")
793 printf "%s" "q"
794 ;;
795 "72")
796 printf "%s" "r"
797 ;;
798 "73")
799 printf "%s" "s"
800 ;;
801 "74")
802 printf "%s" "t"
803 ;;
804 "75")
805 printf "%s" "u"
806 ;;
807 "76")
808 printf "%s" "v"
809 ;;
810 "77")
811 printf "%s" "w"
812 ;;
813 "78")
814 printf "%s" "x"
815 ;;
816 "79")
817 printf "%s" "y"
818 ;;
819 "7a")
820 printf "%s" "z"
821 ;;
c3b1eb08 822 #numbers
19c43451 823 "30")
824 printf "%s" "0"
825 ;;
826 "31")
827 printf "%s" "1"
828 ;;
829 "32")
830 printf "%s" "2"
831 ;;
832 "33")
833 printf "%s" "3"
834 ;;
835 "34")
836 printf "%s" "4"
837 ;;
838 "35")
839 printf "%s" "5"
840 ;;
841 "36")
842 printf "%s" "6"
843 ;;
844 "37")
845 printf "%s" "7"
846 ;;
847 "38")
848 printf "%s" "8"
849 ;;
850 "39")
851 printf "%s" "9"
852 ;;
853 "2d")
854 printf "%s" "-"
855 ;;
856 "5f")
857 printf "%s" "_"
858 ;;
859 "2e")
860 printf "%s" "."
861 ;;
862 "7e")
863 printf "%s" "~"
864 ;;
865 #other hex
866 *)
867 printf '%%%s' "$_hex_code"
868 ;;
542d7977 869 esac
e009ec8b 870 done
871}
872
b50e701c 873_json_encode() {
874 _j_str="$(sed 's/"/\\"/g' | sed "s/\r/\\r/g")"
875 _debug3 "_json_encode"
876 _debug3 "_j_str" "$_j_str"
877 echo "$_j_str" | _hex_dump | _lower_case | sed 's/0a/5c 6e/g' | tr -d ' ' | _h2b | tr -d "\r\n"
878}
879
93de1e49 880#from: http:\/\/ to http://
881_json_decode() {
882 _j_str="$(sed 's#\\/#/#g')"
883 _debug3 "_json_decode"
884 _debug3 "_j_str" "$_j_str"
885 echo "$_j_str"
886}
887
c60883ef 888#options file
889_sed_i() {
890 options="$1"
891 filename="$2"
4c2a3841 892 if [ -z "$filename" ]; then
43822d37 893 _usage "Usage:_sed_i options filename"
c60883ef 894 return 1
895 fi
14f3dbb7 896 _debug2 options "$options"
897 if sed -h 2>&1 | grep "\-i\[SUFFIX]" >/dev/null 2>&1; then
c60883ef 898 _debug "Using sed -i"
14f3dbb7 899 sed -i "$options" "$filename"
c60883ef 900 else
901 _debug "No -i support in sed"
19539575 902 text="$(cat "$filename")"
4c2a3841 903 echo "$text" | sed "$options" >"$filename"
c60883ef 904 fi
905}
906
22ea4004 907_egrep_o() {
a3c0c754 908 if ! egrep -o "$1" 2>/dev/null; then
22ea4004 909 sed -n 's/.*\('"$1"'\).*/\1/p'
22ea4004 910 fi
911}
912
88fab7d6 913#Usage: file startline endline
914_getfile() {
915 filename="$1"
916 startline="$2"
917 endline="$3"
4c2a3841 918 if [ -z "$endline" ]; then
43822d37 919 _usage "Usage: file startline endline"
88fab7d6 920 return 1
921 fi
4c2a3841 922
923 i="$(grep -n -- "$startline" "$filename" | cut -d : -f 1)"
924 if [ -z "$i" ]; then
88fab7d6 925 _err "Can not find start line: $startline"
926 return 1
927 fi
19539575 928 i="$(_math "$i" + 1)"
929 _debug i "$i"
4c2a3841 930
931 j="$(grep -n -- "$endline" "$filename" | cut -d : -f 1)"
932 if [ -z "$j" ]; then
88fab7d6 933 _err "Can not find end line: $endline"
934 return 1
935 fi
19539575 936 j="$(_math "$j" - 1)"
937 _debug j "$j"
4c2a3841 938
939 sed -n "$i,${j}p" "$filename"
88fab7d6 940
941}
942
943#Usage: multiline
4c3b3608 944_base64() {
ec9975c3 945 [ "" ] #urgly
4c2a3841 946 if [ "$1" ]; then
24d2a8b9 947 _debug3 "base64 multiline:'$1'"
d8ba26e6 948 ${ACME_OPENSSL_BIN:-openssl} base64 -e
88fab7d6 949 else
4d8b99a3 950 _debug3 "base64 single line."
d8ba26e6 951 ${ACME_OPENSSL_BIN:-openssl} base64 -e | tr -d '\r\n'
88fab7d6 952 fi
953}
954
955#Usage: multiline
956_dbase64() {
4c2a3841 957 if [ "$1" ]; then
d8ba26e6 958 ${ACME_OPENSSL_BIN:-openssl} base64 -d -A
88fab7d6 959 else
d8ba26e6 960 ${ACME_OPENSSL_BIN:-openssl} base64 -d
88fab7d6 961 fi
962}
963
183063a2 964#file
965_checkcert() {
966 _cf="$1"
967 if [ "$DEBUG" ]; then
2c7d2230 968 ${ACME_OPENSSL_BIN:-openssl} x509 -noout -text -in "$_cf"
183063a2 969 else
2c7d2230 970 ${ACME_OPENSSL_BIN:-openssl} x509 -noout -text -in "$_cf" >/dev/null 2>&1
183063a2 971 fi
972}
973
e22bcf7c 974#Usage: hashalg [outputhex]
88fab7d6 975#Output Base64-encoded digest
976_digest() {
977 alg="$1"
4c2a3841 978 if [ -z "$alg" ]; then
43822d37 979 _usage "Usage: _digest hashalg"
88fab7d6 980 return 1
981 fi
4c2a3841 982
e22bcf7c 983 outputhex="$2"
4c2a3841 984
c7b16249 985 if [ "$alg" = "sha256" ] || [ "$alg" = "sha1" ] || [ "$alg" = "md5" ]; then
4c2a3841 986 if [ "$outputhex" ]; then
d8ba26e6 987 ${ACME_OPENSSL_BIN:-openssl} dgst -"$alg" -hex | cut -d = -f 2 | tr -d ' '
e22bcf7c 988 else
d8ba26e6 989 ${ACME_OPENSSL_BIN:-openssl} dgst -"$alg" -binary | _base64
b001840d 990 fi
991 else
992 _err "$alg is not supported yet"
993 return 1
994 fi
995
996}
997
e009ec8b 998#Usage: hashalg secret_hex [outputhex]
999#Output binary hmac
b001840d 1000_hmac() {
1001 alg="$1"
e009ec8b 1002 secret_hex="$2"
b001840d 1003 outputhex="$3"
4c2a3841 1004
e009ec8b 1005 if [ -z "$secret_hex" ]; then
4c2a3841 1006 _usage "Usage: _hmac hashalg secret [outputhex]"
b001840d 1007 return 1
1008 fi
1009
a6014bf0 1010 if [ "$alg" = "sha256" ] || [ "$alg" = "sha1" ]; then
4c2a3841 1011 if [ "$outputhex" ]; then
d8ba26e6 1012 (${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 ' '
e22bcf7c 1013 else
d8ba26e6 1014 ${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
e22bcf7c 1015 fi
88fab7d6 1016 else
1017 _err "$alg is not supported yet"
1018 return 1
1019 fi
1020
1021}
1022
1023#Usage: keyfile hashalg
1024#Output: Base64-encoded signature value
1025_sign() {
1026 keyfile="$1"
1027 alg="$2"
4c2a3841 1028 if [ -z "$alg" ]; then
43822d37 1029 _usage "Usage: _sign keyfile hashalg"
88fab7d6 1030 return 1
1031 fi
4c2a3841 1032
d8ba26e6 1033 _sign_openssl="${ACME_OPENSSL_BIN:-openssl} dgst -sign $keyfile "
4c2a3841 1034
63031fb2 1035 if grep "BEGIN RSA PRIVATE KEY" "$keyfile" >/dev/null 2>&1 || grep "BEGIN PRIVATE KEY" "$keyfile" >/dev/null 2>&1; then
f87890cb 1036 $_sign_openssl -$alg | _base64
4c2a3841 1037 elif grep "BEGIN EC PRIVATE KEY" "$keyfile" >/dev/null 2>&1; then
f87890cb 1038 if ! _signedECText="$($_sign_openssl -sha$__ECC_KEY_LEN | ${ACME_OPENSSL_BIN:-openssl} asn1parse -inform DER)"; then
67184d7b 1039 _err "Sign failed: $_sign_openssl"
1040 _err "Key file: $keyfile"
357b514b 1041 _err "Key content:$(wc -l <"$keyfile") lines"
67184d7b 1042 return 1
1043 fi
998783eb 1044 _debug3 "_signedECText" "$_signedECText"
1045 _ec_r="$(echo "$_signedECText" | _head_n 2 | _tail_n 1 | cut -d : -f 4 | tr -d "\r\n")"
998783eb 1046 _ec_s="$(echo "$_signedECText" | _head_n 3 | _tail_n 1 | cut -d : -f 4 | tr -d "\r\n")"
a3295476 1047 if [ "$__ECC_KEY_LEN" -eq "256" ]; then
1048 while [ "${#_ec_r}" -lt "64" ]; do
f31debc0 1049 _ec_r="0${_ec_r}"
6654d7a9 1050 done
a3295476 1051 while [ "${#_ec_s}" -lt "64" ]; do
f31debc0 1052 _ec_s="0${_ec_s}"
a3295476 1053 done
1054 fi
1055 if [ "$__ECC_KEY_LEN" -eq "384" ]; then
1056 while [ "${#_ec_r}" -lt "96" ]; do
f31debc0 1057 _ec_r="0${_ec_r}"
6654d7a9 1058 done
a3295476 1059 while [ "${#_ec_s}" -lt "96" ]; do
f31debc0 1060 _ec_s="0${_ec_s}"
a3295476 1061 done
1062 fi
1063 if [ "$__ECC_KEY_LEN" -eq "512" ]; then
1064 while [ "${#_ec_r}" -lt "132" ]; do
f31debc0 1065 _ec_r="0${_ec_r}"
6654d7a9 1066 done
a3295476 1067 while [ "${#_ec_s}" -lt "132" ]; do
f31debc0 1068 _ec_s="0${_ec_s}"
a3295476 1069 done
1070 fi
e2a5af1c 1071 _debug3 "_ec_r" "$_ec_r"
998783eb 1072 _debug3 "_ec_s" "$_ec_s"
1073 printf "%s" "$_ec_r$_ec_s" | _h2b | _base64
1074 else
1075 _err "Unknown key file format."
1076 return 1
1077 fi
4c2a3841 1078
4c3b3608 1079}
1080
3281043e 1081#keylength or isEcc flag (empty str => not ecc)
43822d37 1082_isEccKey() {
1083 _length="$1"
1084
4c2a3841 1085 if [ -z "$_length" ]; then
43822d37 1086 return 1
1087 fi
1088
19c43451 1089 [ "$_length" != "1024" ] &&
1090 [ "$_length" != "2048" ] &&
1091 [ "$_length" != "3072" ] &&
1092 [ "$_length" != "4096" ] &&
1093 [ "$_length" != "8192" ]
43822d37 1094}
1095
e22bcf7c 1096# _createkey 2048|ec-256 file
1097_createkey() {
1098 length="$1"
1099 f="$2"
c4236e58 1100 _debug2 "_createkey for file:$f"
43822d37 1101 eccname="$length"
4c2a3841 1102 if _startswith "$length" "ec-"; then
f9a6988e 1103 length=$(printf "%s" "$length" | cut -d '-' -f 2-100)
e22bcf7c 1104
4c2a3841 1105 if [ "$length" = "256" ]; then
e22bcf7c 1106 eccname="prime256v1"
1107 fi
4c2a3841 1108 if [ "$length" = "384" ]; then
e22bcf7c 1109 eccname="secp384r1"
1110 fi
4c2a3841 1111 if [ "$length" = "521" ]; then
e22bcf7c 1112 eccname="secp521r1"
1113 fi
43822d37 1114
e22bcf7c 1115 fi
1116
4c2a3841 1117 if [ -z "$length" ]; then
1118 length=2048
43822d37 1119 fi
4c2a3841 1120
cbcd7e0f 1121 _debug "Use length $length"
43822d37 1122
81532f37 1123 if ! touch "$f" >/dev/null 2>&1; then
1124 _f_path="$(dirname "$f")"
1125 _debug _f_path "$_f_path"
1126 if ! mkdir -p "$_f_path"; then
1127 _err "Can not create path: $_f_path"
1128 return 1
1129 fi
1130 fi
1131
4c2a3841 1132 if _isEccKey "$length"; then
cbcd7e0f 1133 _debug "Using ec name: $eccname"
a730a081 1134 if _opkey="$(${ACME_OPENSSL_BIN:-openssl} ecparam -name "$eccname" -noout -genkey 2>/dev/null)"; then
e6df1828 1135 echo "$_opkey" >"$f"
1136 else
1137 _err "error ecc key name: $eccname"
1138 return 1
1139 fi
e22bcf7c 1140 else
cbcd7e0f 1141 _debug "Using RSA: $length"
906ef43c 1142 __traditional=""
1143 if _contains "$(${ACME_OPENSSL_BIN:-openssl} help genrsa 2>&1)" "-traditional"; then
1144 __traditional="-traditional"
1145 fi
45289572 1146 if _opkey="$(${ACME_OPENSSL_BIN:-openssl} genrsa $__traditional "$length" 2>/dev/null)"; then
e6df1828 1147 echo "$_opkey" >"$f"
1148 else
1149 _err "error rsa key: $length"
1150 return 1
1151 fi
e22bcf7c 1152 fi
43822d37 1153
4c2a3841 1154 if [ "$?" != "0" ]; then
43822d37 1155 _err "Create key error."
1156 return 1
1157 fi
e22bcf7c 1158}
1159
9774b01b 1160#domain
1161_is_idn() {
1162 _is_idn_d="$1"
049be104 1163 _debug2 _is_idn_d "$_is_idn_d"
d10f40f1 1164 _idn_temp=$(printf "%s" "$_is_idn_d" | tr -d '0-9' | tr -d 'a-z' | tr -d 'A-Z' | tr -d '*.,-_')
049be104 1165 _debug2 _idn_temp "$_idn_temp"
1166 [ "$_idn_temp" ]
9774b01b 1167}
1168
1169#aa.com
1170#aa.com,bb.com,cc.com
1171_idn() {
1172 __idn_d="$1"
4c2a3841 1173 if ! _is_idn "$__idn_d"; then
9774b01b 1174 printf "%s" "$__idn_d"
1175 return 0
1176 fi
4c2a3841 1177
1178 if _exists idn; then
1179 if _contains "$__idn_d" ','; then
9774b01b 1180 _i_first="1"
4c2a3841 1181 for f in $(echo "$__idn_d" | tr ',' ' '); do
9774b01b 1182 [ -z "$f" ] && continue
4c2a3841 1183 if [ -z "$_i_first" ]; then
9774b01b 1184 printf "%s" ","
1185 else
1186 _i_first=""
1187 fi
2a1e06f8 1188 idn --quiet "$f" | tr -d "\r\n"
9774b01b 1189 done
1190 else
1191 idn "$__idn_d" | tr -d "\r\n"
1192 fi
1193 else
1194 _err "Please install idn to process IDN names."
1195 fi
1196}
1197
08681f4a 1198#_createcsr cn san_list keyfile csrfile conf acmeValidationv1
e22bcf7c 1199_createcsr() {
1200 _debug _createcsr
1201 domain="$1"
1202 domainlist="$2"
0c9546cc 1203 csrkey="$3"
e22bcf7c 1204 csr="$4"
1205 csrconf="$5"
08681f4a 1206 acmeValidationv1="$6"
e22bcf7c 1207 _debug2 domain "$domain"
1208 _debug2 domainlist "$domainlist"
0c9546cc 1209 _debug2 csrkey "$csrkey"
1210 _debug2 csr "$csr"
1211 _debug2 csrconf "$csrconf"
4c2a3841 1212
1213 printf "[ req_distinguished_name ]\n[ req ]\ndistinguished_name = req_distinguished_name\nreq_extensions = v3_req\n[ v3_req ]\n\nkeyUsage = nonRepudiation, digitalSignature, keyEncipherment" >"$csrconf"
1214
08681f4a 1215 if [ "$acmeValidationv1" ]; then
4962cc3d 1216 domainlist="$(_idn "$domainlist")"
08681f4a 1217 printf -- "\nsubjectAltName=DNS:$domainlist" >>"$csrconf"
1218 elif [ -z "$domainlist" ] || [ "$domainlist" = "$NO_VALUE" ]; then
e22bcf7c 1219 #single domain
1220 _info "Single domain" "$domain"
0093dc3d 1221 printf -- "\nsubjectAltName=DNS:$(_idn "$domain")" >>"$csrconf"
e22bcf7c 1222 else
f9a6988e 1223 domainlist="$(_idn "$domainlist")"
9774b01b 1224 _debug2 domainlist "$domainlist"
4c2a3841 1225 if _contains "$domainlist" ","; then
0093dc3d 1226 alt="DNS:$(_idn "$domain"),DNS:$(echo "$domainlist" | sed "s/,,/,/g" | sed "s/,/,DNS:/g")"
e22bcf7c 1227 else
0093dc3d 1228 alt="DNS:$(_idn "$domain"),DNS:$domainlist"
e22bcf7c 1229 fi
3c07f57a 1230 #multi
e22bcf7c 1231 _info "Multi domain" "$alt"
4c2a3841 1232 printf -- "\nsubjectAltName=$alt" >>"$csrconf"
0c9546cc 1233 fi
6ba1eda9 1234 if [ "$Le_OCSP_Staple" = "1" ]; then
96db9362 1235 _savedomainconf Le_OCSP_Staple "$Le_OCSP_Staple"
4c2a3841 1236 printf -- "\nbasicConstraints = CA:FALSE\n1.3.6.1.5.5.7.1.24=DER:30:03:02:01:05" >>"$csrconf"
e22bcf7c 1237 fi
4c2a3841 1238
08681f4a 1239 if [ "$acmeValidationv1" ]; then
ad613e24 1240 printf "\n1.3.6.1.5.5.7.1.31=critical,DER:04:20:${acmeValidationv1}" >>"${csrconf}"
08681f4a 1241 fi
1242
9774b01b 1243 _csr_cn="$(_idn "$domain")"
1244 _debug2 _csr_cn "$_csr_cn"
34f25fa5 1245 if _contains "$(uname -a)" "MINGW"; then
d8ba26e6 1246 ${ACME_OPENSSL_BIN:-openssl} req -new -sha256 -key "$csrkey" -subj "//CN=$_csr_cn" -config "$csrconf" -out "$csr"
34f25fa5 1247 else
d8ba26e6 1248 ${ACME_OPENSSL_BIN:-openssl} req -new -sha256 -key "$csrkey" -subj "/CN=$_csr_cn" -config "$csrconf" -out "$csr"
34f25fa5 1249 fi
e22bcf7c 1250}
1251
1252#_signcsr key csr conf cert
1253_signcsr() {
1254 key="$1"
1255 csr="$2"
1256 conf="$3"
1257 cert="$4"
5aa146a5 1258 _debug "_signcsr"
4c2a3841 1259
d8ba26e6 1260 _msg="$(${ACME_OPENSSL_BIN:-openssl} x509 -req -days 365 -in "$csr" -signkey "$key" -extensions v3_req -extfile "$conf" -out "$cert" 2>&1)"
5aa146a5 1261 _ret="$?"
1262 _debug "$_msg"
1263 return $_ret
e22bcf7c 1264}
1265
10afcaca 1266#_csrfile
1267_readSubjectFromCSR() {
1268 _csrfile="$1"
4c2a3841 1269 if [ -z "$_csrfile" ]; then
10afcaca 1270 _usage "_readSubjectFromCSR mycsr.csr"
1271 return 1
1272 fi
b963dadc 1273 ${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'
10afcaca 1274}
1275
1276#_csrfile
1277#echo comma separated domain list
1278_readSubjectAltNamesFromCSR() {
1279 _csrfile="$1"
4c2a3841 1280 if [ -z "$_csrfile" ]; then
10afcaca 1281 _usage "_readSubjectAltNamesFromCSR mycsr.csr"
1282 return 1
1283 fi
4c2a3841 1284
10afcaca 1285 _csrsubj="$(_readSubjectFromCSR "$_csrfile")"
1286 _debug _csrsubj "$_csrsubj"
4c2a3841 1287
d8ba26e6 1288 _dnsAltnames="$(${ACME_OPENSSL_BIN:-openssl} req -noout -text -in "$_csrfile" | grep "^ *DNS:.*" | tr -d ' \n')"
10afcaca 1289 _debug _dnsAltnames "$_dnsAltnames"
4c2a3841 1290
1291 if _contains "$_dnsAltnames," "DNS:$_csrsubj,"; then
10afcaca 1292 _debug "AltNames contains subject"
2b9ebd66 1293 _excapedAlgnames="$(echo "$_dnsAltnames" | tr '*' '#')"
1294 _debug _excapedAlgnames "$_excapedAlgnames"
1295 _escapedSubject="$(echo "$_csrsubj" | tr '*' '#')"
1296 _debug _escapedSubject "$_escapedSubject"
1297 _dnsAltnames="$(echo "$_excapedAlgnames," | sed "s/DNS:$_escapedSubject,//g" | tr '#' '*' | sed "s/,\$//g")"
1298 _debug _dnsAltnames "$_dnsAltnames"
10afcaca 1299 else
1300 _debug "AltNames doesn't contain subject"
1301 fi
4c2a3841 1302
2b9ebd66 1303 echo "$_dnsAltnames" | sed "s/DNS://g"
10afcaca 1304}
1305
3c07f57a 1306#_csrfile
10afcaca 1307_readKeyLengthFromCSR() {
1308 _csrfile="$1"
4c2a3841 1309 if [ -z "$_csrfile" ]; then
1643b476 1310 _usage "_readKeyLengthFromCSR mycsr.csr"
10afcaca 1311 return 1
1312 fi
4c2a3841 1313
d8ba26e6 1314 _outcsr="$(${ACME_OPENSSL_BIN:-openssl} req -noout -text -in "$_csrfile")"
7df062b7 1315 _debug2 _outcsr "$_outcsr"
4c2a3841 1316 if _contains "$_outcsr" "Public Key Algorithm: id-ecPublicKey"; then
10afcaca 1317 _debug "ECC CSR"
482cb737 1318 echo "$_outcsr" | tr "\t" " " | _egrep_o "^ *ASN1 OID:.*" | cut -d ':' -f 2 | tr -d ' '
10afcaca 1319 else
1320 _debug "RSA CSR"
eb0ef6bd 1321 _rkl="$(echo "$_outcsr" | tr "\t" " " | _egrep_o "^ *Public.Key:.*" | cut -d '(' -f 2 | cut -d ' ' -f 1)"
1322 if [ "$_rkl" ]; then
1323 echo "$_rkl"
1324 else
1325 echo "$_outcsr" | tr "\t" " " | _egrep_o "RSA Public.Key:.*" | cut -d '(' -f 2 | cut -d ' ' -f 1
1326 fi
10afcaca 1327 fi
1328}
1329
34c27e09 1330_ss() {
1331 _port="$1"
4c2a3841 1332
1333 if _exists "ss"; then
edf08da6 1334 _debug "Using: ss"
14d7bfda 1335 ss -ntpl 2>/dev/null | grep ":$_port "
edf08da6 1336 return 0
1337 fi
1338
4c2a3841 1339 if _exists "netstat"; then
251fc37c 1340 _debug "Using: netstat"
97147b59 1341 if netstat -help 2>&1 | grep "\-p proto" >/dev/null; then
ccb96535 1342 #for windows version netstat tool
0463b5d6 1343 netstat -an -p tcp | grep "LISTENING" | grep ":$_port "
ccb96535 1344 else
4c2a3841 1345 if netstat -help 2>&1 | grep "\-p protocol" >/dev/null; then
19539575 1346 netstat -an -p tcp | grep LISTEN | grep ":$_port "
4c2a3841 1347 elif netstat -help 2>&1 | grep -- '-P protocol' >/dev/null; then
22ea4004 1348 #for solaris
e3c66532 1349 netstat -an -P tcp | grep "\.$_port " | grep "LISTEN"
f19f2100 1350 elif netstat -help 2>&1 | grep "\-p" >/dev/null; then
f21dd911 1351 #for full linux
19539575 1352 netstat -ntpl | grep ":$_port "
f21dd911 1353 else
1354 #for busybox (embedded linux; no pid support)
1355 netstat -ntl 2>/dev/null | grep ":$_port "
edf08da6 1356 fi
ccb96535 1357 fi
34c27e09 1358 return 0
1359 fi
edf08da6 1360
34c27e09 1361 return 1
1362}
1363
8eab77f3
BC
1364#outfile key cert cacert [password [name [caname]]]
1365_toPkcs() {
1366 _cpfx="$1"
1367 _ckey="$2"
1368 _ccert="$3"
1369 _cca="$4"
1370 pfxPassword="$5"
1371 pfxName="$6"
1372 pfxCaname="$7"
1373
1374 if [ "$pfxCaname" ]; then
1375 ${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca" -password "pass:$pfxPassword" -name "$pfxName" -caname "$pfxCaname"
1376 elif [ "$pfxName" ]; then
1377 ${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca" -password "pass:$pfxPassword" -name "$pfxName"
1378 elif [ "$pfxPassword" ]; then
1379 ${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca" -password "pass:$pfxPassword"
1380 else
1381 ${ACME_OPENSSL_BIN:-openssl} pkcs12 -export -out "$_cpfx" -inkey "$_ckey" -in "$_ccert" -certfile "$_cca"
1382 fi
1383
1384}
1385
43822d37 1386#domain [password] [isEcc]
ac2d5123 1387toPkcs() {
1388 domain="$1"
1389 pfxPassword="$2"
4c2a3841 1390 if [ -z "$domain" ]; then
2e87e64b 1391 _usage "Usage: $PROJECT_ENTRY --to-pkcs12 --domain <domain.tld> [--password <password>] [--ecc]"
ac2d5123 1392 return 1
1393 fi
1394
43822d37 1395 _isEcc="$3"
4c2a3841 1396
43822d37 1397 _initpath "$domain" "$_isEcc"
1398
8eab77f3 1399 _toPkcs "$CERT_PFX_PATH" "$CERT_KEY_PATH" "$CERT_PATH" "$CA_CERT_PATH" "$pfxPassword"
4c2a3841 1400
1401 if [ "$?" = "0" ]; then
ac2d5123 1402 _info "Success, Pfx is exported to: $CERT_PFX_PATH"
1403 fi
1404
1405}
1406
4410226d 1407#domain [isEcc]
1408toPkcs8() {
1409 domain="$1"
1410
1411 if [ -z "$domain" ]; then
2e87e64b 1412 _usage "Usage: $PROJECT_ENTRY --to-pkcs8 --domain <domain.tld> [--ecc]"
4410226d 1413 return 1
1414 fi
1415
1416 _isEcc="$2"
1417
1418 _initpath "$domain" "$_isEcc"
1419
d8ba26e6 1420 ${ACME_OPENSSL_BIN:-openssl} pkcs8 -topk8 -inform PEM -outform PEM -nocrypt -in "$CERT_KEY_PATH" -out "$CERT_PKCS8_PATH"
4410226d 1421
1422 if [ "$?" = "0" ]; then
1423 _info "Success, $CERT_PKCS8_PATH"
1424 fi
1425
1426}
1427
3c07f57a 1428#[2048]
4c3b3608 1429createAccountKey() {
1430 _info "Creating account key"
4c2a3841 1431 if [ -z "$1" ]; then
2e87e64b 1432 _usage "Usage: $PROJECT_ENTRY --create-account-key [--accountkeylength <bits>]"
4c3b3608 1433 return
1434 fi
4c2a3841 1435
5fbc47eb 1436 length=$1
57e58ce7 1437 _create_account_key "$length"
1438
1439}
1440
1441_create_account_key() {
1442
5fbc47eb 1443 length=$1
4c2a3841 1444
1445 if [ -z "$length" ] || [ "$length" = "$NO_VALUE" ]; then
57e58ce7 1446 _debug "Use default length $DEFAULT_ACCOUNT_KEY_LENGTH"
1447 length="$DEFAULT_ACCOUNT_KEY_LENGTH"
4c3b3608 1448 fi
4c2a3841 1449
5fbc47eb 1450 _debug length "$length"
4c3b3608 1451 _initpath
5fbc47eb 1452
57e58ce7 1453 mkdir -p "$CA_DIR"
4f1888d2 1454 if [ -s "$ACCOUNT_KEY_PATH" ]; then
4c3b3608 1455 _info "Account key exists, skip"
4f1888d2 1456 return 0
4c3b3608 1457 else
1458 #generate account key
4f1888d2 1459 if _createkey "$length" "$ACCOUNT_KEY_PATH"; then
1460 chmod 600 "$ACCOUNT_KEY_PATH"
1461 _info "Create account key ok."
1462 return 0
1463 else
1464 _err "Create account key error."
1465 return 1
1466 fi
4c3b3608 1467 fi
1468
1469}
1470
43822d37 1471#domain [length]
4c3b3608 1472createDomainKey() {
1473 _info "Creating domain key"
4c2a3841 1474 if [ -z "$1" ]; then
2e87e64b 1475 _usage "Usage: $PROJECT_ENTRY --create-domain-key --domain <domain.tld> [--keylength <bits>]"
4c3b3608 1476 return
1477 fi
4c2a3841 1478
4c3b3608 1479 domain=$1
2844d73d 1480 _cdl=$2
e22bcf7c 1481
2844d73d 1482 if [ -z "$_cdl" ]; then
57e58ce7 1483 _debug "Use DEFAULT_DOMAIN_KEY_LENGTH=$DEFAULT_DOMAIN_KEY_LENGTH"
2844d73d 1484 _cdl="$DEFAULT_DOMAIN_KEY_LENGTH"
57e58ce7 1485 fi
e22bcf7c 1486
2844d73d 1487 _initpath "$domain" "$_cdl"
4c2a3841 1488
bd04638d 1489 if [ ! -f "$CERT_KEY_PATH" ] || [ ! -s "$CERT_KEY_PATH" ] || ([ "$FORCE" ] && ! [ "$_ACME_IS_RENEW" ]) || [ "$Le_ForceNewDomainKey" = "1" ]; then
2844d73d 1490 if _createkey "$_cdl" "$CERT_KEY_PATH"; then
1491 _savedomainconf Le_Keylength "$_cdl"
1492 _info "The domain key is here: $(__green $CERT_KEY_PATH)"
7aeb113c 1493 return 0
4f1888d2 1494 else
a7420ca3 1495 _err "Can not create domain key"
4f1888d2 1496 return 1
2844d73d 1497 fi
4c3b3608 1498 else
bd04638d 1499 if [ "$_ACME_IS_RENEW" ]; then
4c3b3608 1500 _info "Domain key exists, skip"
1501 return 0
1502 else
1503 _err "Domain key exists, do you want to overwrite the key?"
41e3eafa 1504 _err "Add '--force', and try again."
4c3b3608 1505 return 1
1506 fi
1507 fi
1508
1509}
1510
43822d37 1511# domain domainlist isEcc
4c3b3608 1512createCSR() {
1513 _info "Creating csr"
4c2a3841 1514 if [ -z "$1" ]; then
2e87e64b 1515 _usage "Usage: $PROJECT_ENTRY --create-csr --domain <domain.tld> [--domain <domain2.tld> ...]"
4c3b3608 1516 return
1517 fi
4c2a3841 1518
43822d37 1519 domain="$1"
1520 domainlist="$2"
1521 _isEcc="$3"
4c2a3841 1522
43822d37 1523 _initpath "$domain" "$_isEcc"
4c2a3841 1524
bd04638d 1525 if [ -f "$CSR_PATH" ] && [ "$_ACME_IS_RENEW" ] && [ -z "$FORCE" ]; then
4c3b3608 1526 _info "CSR exists, skip"
1527 return
1528 fi
4c2a3841 1529
1530 if [ ! -f "$CERT_KEY_PATH" ]; then
43822d37 1531 _err "The key file is not found: $CERT_KEY_PATH"
1532 _err "Please create the key file first."
1533 return 1
1534 fi
e22bcf7c 1535 _createcsr "$domain" "$domainlist" "$CERT_KEY_PATH" "$CSR_PATH" "$DOMAIN_SSL_CONF"
4c2a3841 1536
4c3b3608 1537}
1538
11927a76 1539_url_replace() {
f9a6988e 1540 tr '/+' '_-' | tr -d '= '
4c3b3608 1541}
1542
f96d91cb 1543#base64 string
1544_durl_replace_base64() {
1545 _l=$((${#1} % 4))
1546 if [ $_l -eq 2 ]; then
1547 _s="$1"'=='
1548 elif [ $_l -eq 3 ]; then
1549 _s="$1"'='
1550 else
1551 _s="$1"
1552 fi
1553 echo "$_s" | tr '_-' '/+'
1554}
1555
4c3b3608 1556_time2str() {
cb115809
JM
1557 #BSD
1558 if date -u -r "$1" 2>/dev/null; then
4c3b3608 1559 return
1560 fi
4c2a3841 1561
cb115809
JM
1562 #Linux
1563 if date -u -d@"$1" 2>/dev/null; then
4c3b3608 1564 return
1565 fi
4c2a3841 1566
cb115809 1567 #Solaris
4c2a3841 1568 if _exists adb; then
031e885e 1569 _t_s_a=$(echo "0t${1}=Y" | adb)
1570 echo "$_t_s_a"
22ea4004 1571 fi
4c2a3841 1572
a07395fb
M
1573 #Busybox
1574 if echo "$1" | awk '{ print strftime("%c", $0); }' 2>/dev/null; then
1575 return
1576 fi
4c3b3608 1577}
1578
eae29099 1579_normalizeJson() {
1580 sed "s/\" *: *\([\"{\[]\)/\":\1/g" | sed "s/^ *\([^ ]\)/\1/" | tr -d "\r\n"
1581}
1582
44df2967 1583_stat() {
1584 #Linux
4c2a3841 1585 if stat -c '%U:%G' "$1" 2>/dev/null; then
44df2967 1586 return
1587 fi
4c2a3841 1588
44df2967 1589 #BSD
4c2a3841 1590 if stat -f '%Su:%Sg' "$1" 2>/dev/null; then
44df2967 1591 return
1592 fi
4c2a3841 1593
1594 return 1 #error, 'stat' not found
44df2967 1595}
1596
166096dc 1597#keyfile
1598_calcjwk() {
1599 keyfile="$1"
4c2a3841 1600 if [ -z "$keyfile" ]; then
43822d37 1601 _usage "Usage: _calcjwk keyfile"
166096dc 1602 return 1
1603 fi
4c2a3841 1604
1605 if [ "$JWK_HEADER" ] && [ "$__CACHED_JWK_KEY_FILE" = "$keyfile" ]; then
ae2db62f 1606 _debug2 "Use cached jwk for file: $__CACHED_JWK_KEY_FILE"
1607 return 0
1608 fi
4c2a3841 1609
4c2a3841 1610 if grep "BEGIN RSA PRIVATE KEY" "$keyfile" >/dev/null 2>&1; then
166096dc 1611 _debug "RSA key"
d8ba26e6 1612 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)
4c2a3841 1613 if [ "${#pub_exp}" = "5" ]; then
166096dc 1614 pub_exp=0$pub_exp
1615 fi
22ea4004 1616 _debug3 pub_exp "$pub_exp"
4c2a3841 1617
f9a6988e 1618 e=$(echo "$pub_exp" | _h2b | _base64)
22ea4004 1619 _debug3 e "$e"
4c2a3841 1620
d8ba26e6 1621 modulus=$(${ACME_OPENSSL_BIN:-openssl} rsa -in "$keyfile" -modulus -noout | cut -d '=' -f 2)
22ea4004 1622 _debug3 modulus "$modulus"
11927a76 1623 n="$(printf "%s" "$modulus" | _h2b | _base64 | _url_replace)"
4d8b99a3 1624 _debug3 n "$n"
1625
166096dc 1626 jwk='{"e": "'$e'", "kty": "RSA", "n": "'$n'"}'
22ea4004 1627 _debug3 jwk "$jwk"
4c2a3841 1628
5982f4bc 1629 JWK_HEADER='{"alg": "RS256", "jwk": '$jwk'}'
1630 JWK_HEADERPLACE_PART1='{"nonce": "'
c1151b0d 1631 JWK_HEADERPLACE_PART2='", "alg": "RS256"'
4c2a3841 1632 elif grep "BEGIN EC PRIVATE KEY" "$keyfile" >/dev/null 2>&1; then
166096dc 1633 _debug "EC key"
d8ba26e6 1634 crv="$(${ACME_OPENSSL_BIN:-openssl} ec -in "$keyfile" -noout -text 2>/dev/null | grep "^NIST CURVE:" | cut -d ":" -f 2 | tr -d " \r\n")"
22ea4004 1635 _debug3 crv "$crv"
f87890cb 1636 __ECC_KEY_LEN=$(echo "$crv" | cut -d "-" -f 2)
1637 if [ "$__ECC_KEY_LEN" = "521" ]; then
1638 __ECC_KEY_LEN=512
1639 fi
1640 _debug3 __ECC_KEY_LEN "$__ECC_KEY_LEN"
4c2a3841 1641 if [ -z "$crv" ]; then
d22b7938 1642 _debug "Let's try ASN1 OID"
d8ba26e6 1643 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")"
cae9cee2 1644 _debug3 crv_oid "$crv_oid"
d22b7938 1645 case "${crv_oid}" in
19c43451 1646 "prime256v1")
1647 crv="P-256"
1648 __ECC_KEY_LEN=256
1649 ;;
1650 "secp384r1")
1651 crv="P-384"
1652 __ECC_KEY_LEN=384
1653 ;;
1654 "secp521r1")
1655 crv="P-521"
1656 __ECC_KEY_LEN=512
1657 ;;
1658 *)
1659 _err "ECC oid : $crv_oid"
1660 return 1
1661 ;;
067d586c 1662 esac
d22b7938 1663 _debug3 crv "$crv"
1664 fi
4c2a3841 1665
d8ba26e6 1666 pubi="$(${ACME_OPENSSL_BIN:-openssl} ec -in "$keyfile" -noout -text 2>/dev/null | grep -n pub: | cut -d : -f 1)"
79a267ab 1667 pubi=$(_math "$pubi" + 1)
22ea4004 1668 _debug3 pubi "$pubi"
4c2a3841 1669
d8ba26e6 1670 pubj="$(${ACME_OPENSSL_BIN:-openssl} ec -in "$keyfile" -noout -text 2>/dev/null | grep -n "ASN1 OID:" | cut -d : -f 1)"
79a267ab 1671 pubj=$(_math "$pubj" - 1)
22ea4004 1672 _debug3 pubj "$pubj"
4c2a3841 1673
d8ba26e6 1674 pubtext="$(${ACME_OPENSSL_BIN:-openssl} ec -in "$keyfile" -noout -text 2>/dev/null | sed -n "$pubi,${pubj}p" | tr -d " \n\r")"
22ea4004 1675 _debug3 pubtext "$pubtext"
4c2a3841 1676
95e06de5 1677 xlen="$(printf "%s" "$pubtext" | tr -d ':' | wc -c)"
79a267ab 1678 xlen=$(_math "$xlen" / 4)
22ea4004 1679 _debug3 xlen "$xlen"
00a50605 1680
998783eb 1681 xend=$(_math "$xlen" + 1)
f9a6988e 1682 x="$(printf "%s" "$pubtext" | cut -d : -f 2-"$xend")"
22ea4004 1683 _debug3 x "$x"
4c2a3841 1684
11927a76 1685 x64="$(printf "%s" "$x" | tr -d : | _h2b | _base64 | _url_replace)"
22ea4004 1686 _debug3 x64 "$x64"
00a50605 1687
19539575 1688 xend=$(_math "$xend" + 1)
f9a6988e 1689 y="$(printf "%s" "$pubtext" | cut -d : -f "$xend"-10000)"
22ea4004 1690 _debug3 y "$y"
4c2a3841 1691
11927a76 1692 y64="$(printf "%s" "$y" | tr -d : | _h2b | _base64 | _url_replace)"
22ea4004 1693 _debug3 y64 "$y64"
4c2a3841 1694
ae2db62f 1695 jwk='{"crv": "'$crv'", "kty": "EC", "x": "'$x64'", "y": "'$y64'"}'
22ea4004 1696 _debug3 jwk "$jwk"
4c2a3841 1697
f87890cb 1698 JWK_HEADER='{"alg": "ES'$__ECC_KEY_LEN'", "jwk": '$jwk'}'
5982f4bc 1699 JWK_HEADERPLACE_PART1='{"nonce": "'
c1151b0d 1700 JWK_HEADERPLACE_PART2='", "alg": "ES'$__ECC_KEY_LEN'"'
166096dc 1701 else
238990a2 1702 _err "Only RSA or EC key is supported. keyfile=$keyfile"
1703 _debug2 "$(cat "$keyfile")"
166096dc 1704 return 1
1705 fi
1706
5982f4bc 1707 _debug3 JWK_HEADER "$JWK_HEADER"
ae2db62f 1708 __CACHED_JWK_KEY_FILE="$keyfile"
166096dc 1709}
fac1e367 1710
3aae1ae3 1711_time() {
1712 date -u "+%s"
1713}
fac1e367 1714
5d2c5b01 1715_utc_date() {
1716 date -u "+%Y-%m-%d %H:%M:%S"
1717}
1718
fac1e367 1719_mktemp() {
4c2a3841 1720 if _exists mktemp; then
1721 if mktemp 2>/dev/null; then
610e0f21 1722 return 0
4c2a3841 1723 elif _contains "$(mktemp 2>&1)" "-t prefix" && mktemp -t "$PROJECT_NAME" 2>/dev/null; then
5c48e139 1724 #for Mac osx
610e0f21 1725 return 0
b19ba13a 1726 fi
fac1e367 1727 fi
4c2a3841 1728 if [ -d "/tmp" ]; then
3aae1ae3 1729 echo "/tmp/${PROJECT_NAME}wefADf24sf.$(_time).tmp"
1730 return 0
4c2a3841 1731 elif [ "$LE_TEMP_DIR" ] && mkdir -p "$LE_TEMP_DIR"; then
610e0f21 1732 echo "/$LE_TEMP_DIR/wefADf24sf.$(_time).tmp"
1733 return 0
3aae1ae3 1734 fi
1735 _err "Can not create temp file."
fac1e367 1736}
1737
effa7fd5 1738#clear all the https envs to cause _inithttp() to run next time.
1739_resethttp() {
1740 __HTTP_INITIALIZED=""
1741 _ACME_CURL=""
1742 _ACME_WGET=""
1743 ACME_HTTP_NO_REDIRECTS=""
1744}
1745
fac1e367 1746_inithttp() {
1747
4c2a3841 1748 if [ -z "$HTTP_HEADER" ] || ! touch "$HTTP_HEADER"; then
fac1e367 1749 HTTP_HEADER="$(_mktemp)"
1750 _debug2 HTTP_HEADER "$HTTP_HEADER"
1751 fi
1752
4c2a3841 1753 if [ "$__HTTP_INITIALIZED" ]; then
1754 if [ "$_ACME_CURL$_ACME_WGET" ]; then
1befee5a 1755 _debug2 "Http already initialized."
1756 return 0
1757 fi
1758 fi
4c2a3841 1759
1760 if [ -z "$_ACME_CURL" ] && _exists "curl"; then
effa7fd5 1761 _ACME_CURL="curl --silent --dump-header $HTTP_HEADER "
1762 if [ -z "$ACME_HTTP_NO_REDIRECTS" ]; then
1763 _ACME_CURL="$_ACME_CURL -L "
1764 fi
4c2a3841 1765 if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
fac1e367 1766 _CURL_DUMP="$(_mktemp)"
1befee5a 1767 _ACME_CURL="$_ACME_CURL --trace-ascii $_CURL_DUMP "
fac1e367 1768 fi
1769
2aa75f03 1770 if [ "$CA_PATH" ]; then
1771 _ACME_CURL="$_ACME_CURL --capath $CA_PATH "
1772 elif [ "$CA_BUNDLE" ]; then
1befee5a 1773 _ACME_CURL="$_ACME_CURL --cacert $CA_BUNDLE "
78009539
PS
1774 fi
1775
6ca5f3d8 1776 if _contains "$(curl --help 2>&1)" "--globoff"; then
1777 _ACME_CURL="$_ACME_CURL -g "
1778 fi
fac1e367 1779 fi
4c2a3841 1780
1befee5a 1781 if [ -z "$_ACME_WGET" ] && _exists "wget"; then
1782 _ACME_WGET="wget -q"
effa7fd5 1783 if [ "$ACME_HTTP_NO_REDIRECTS" ]; then
1784 _ACME_WGET="$_ACME_WGET --max-redirect 0 "
1785 fi
4c2a3841 1786 if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
1befee5a 1787 _ACME_WGET="$_ACME_WGET -d "
fac1e367 1788 fi
2aa75f03 1789 if [ "$CA_PATH" ]; then
1790 _ACME_WGET="$_ACME_WGET --ca-directory=$CA_PATH "
1791 elif [ "$CA_BUNDLE" ]; then
1792 _ACME_WGET="$_ACME_WGET --ca-certificate=$CA_BUNDLE "
78009539 1793 fi
fac1e367 1794 fi
1795
177b57e1 1796 #from wget 1.14: do not skip body on 404 error
58ef6d83 1797 if [ "$_ACME_WGET" ] && _contains "$($_ACME_WGET --help 2>&1)" "--content-on-error"; then
177b57e1 1798 _ACME_WGET="$_ACME_WGET --content-on-error "
1799 fi
1800
1befee5a 1801 __HTTP_INITIALIZED=1
fac1e367 1802
fac1e367 1803}
fac1e367 1804
9cecd525 1805# body url [needbase64] [POST|PUT|DELETE] [ContentType]
c60883ef 1806_post() {
1807 body="$1"
c1151b0d 1808 _post_url="$2"
c60883ef 1809 needbase64="$3"
a4270efa 1810 httpmethod="$4"
45e386b2 1811 _postContentType="$5"
c60883ef 1812
4c2a3841 1813 if [ -z "$httpmethod" ]; then
a4270efa 1814 httpmethod="POST"
1815 fi
1816 _debug $httpmethod
c1151b0d 1817 _debug "_post_url" "$_post_url"
30de13b4 1818 _debug2 "body" "$body"
6a66ba8a 1819 _debug2 "_postContentType" "$_postContentType"
4c2a3841 1820
fac1e367 1821 _inithttp
4c2a3841 1822
9b124070 1823 if [ "$_ACME_CURL" ] && [ "${ACME_USE_WGET:-0}" = "0" ]; then
1befee5a 1824 _CURL="$_ACME_CURL"
7834c252 1825 if [ "$HTTPS_INSECURE" ]; then
1826 _CURL="$_CURL --insecure "
1827 fi
5723fd11 1828 if [ "$httpmethod" = "HEAD" ]; then
1829 _CURL="$_CURL -I "
1830 fi
ec9fc8cb 1831 _debug "_CURL" "$_CURL"
4c2a3841 1832 if [ "$needbase64" ]; then
1ba4ab2b 1833 if [ "$body" ]; then
1834 if [ "$_postContentType" ]; then
1835 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)"
1836 else
1837 response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" --data "$body" "$_post_url" | _base64)"
1838 fi
39852662 1839 else
1ba4ab2b 1840 if [ "$_postContentType" ]; then
1841 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)"
1842 else
1843 response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$_post_url" | _base64)"
1844 fi
39852662 1845 fi
c60883ef 1846 else
1ba4ab2b 1847 if [ "$body" ]; then
1848 if [ "$_postContentType" ]; then
1849 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")"
1850 else
1851 response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" --data "$body" "$_post_url")"
1852 fi
39852662 1853 else
1ba4ab2b 1854 if [ "$_postContentType" ]; then
1855 response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "Content-Type: $_postContentType" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$_post_url")"
1856 else
1857 response="$($_CURL --user-agent "$USER_AGENT" -X $httpmethod -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$_post_url")"
1858 fi
39852662 1859 fi
c60883ef 1860 fi
16679b57 1861 _ret="$?"
4c2a3841 1862 if [ "$_ret" != "0" ]; then
87ab2d90 1863 _err "Please refer to https://curl.haxx.se/libcurl/c/libcurl-errors.html for error code: $_ret"
4c2a3841 1864 if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
87ab2d90 1865 _err "Here is the curl dump log:"
1866 _err "$(cat "$_CURL_DUMP")"
1867 fi
687cfcc2 1868 fi
4c2a3841 1869 elif [ "$_ACME_WGET" ]; then
7834c252 1870 _WGET="$_ACME_WGET"
1871 if [ "$HTTPS_INSECURE" ]; then
1872 _WGET="$_WGET --no-check-certificate "
1873 fi
51b4a9e3 1874 if [ "$httpmethod" = "HEAD" ]; then
1875 _WGET="$_WGET --read-timeout=3.0 --tries=2 "
1876 fi
7834c252 1877 _debug "_WGET" "$_WGET"
4c2a3841 1878 if [ "$needbase64" ]; then
1879 if [ "$httpmethod" = "POST" ]; then
ef871775 1880 if [ "$_postContentType" ]; then
1881 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)"
1882 else
1883 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)"
1884 fi
8fb9a709 1885 else
ef871775 1886 if [ "$_postContentType" ]; then
1887 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)"
1888 else
1889 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)"
1890 fi
8fb9a709 1891 fi
c60883ef 1892 else
4c2a3841 1893 if [ "$httpmethod" = "POST" ]; then
ef871775 1894 if [ "$_postContentType" ]; then
1895 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")"
1896 else
1897 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")"
1898 fi
51b4a9e3 1899 elif [ "$httpmethod" = "HEAD" ]; then
1900 if [ "$_postContentType" ]; then
1901 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")"
1902 else
1903 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")"
1904 fi
8fb9a709 1905 else
ef871775 1906 if [ "$_postContentType" ]; then
1907 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")"
1908 else
1909 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")"
1910 fi
8fb9a709 1911 fi
c60883ef 1912 fi
16679b57 1913 _ret="$?"
4c2a3841 1914 if [ "$_ret" = "8" ]; then
9f43c270 1915 _ret=0
810c129c 1916 _debug "wget returns 8, the server returns a 'Bad request' response, lets process the response later."
9f43c270 1917 fi
4c2a3841 1918 if [ "$_ret" != "0" ]; then
1919 _err "Please refer to https://www.gnu.org/software/wget/manual/html_node/Exit-Status.html for error code: $_ret"
687cfcc2 1920 fi
c60883ef 1921 _sed_i "s/^ *//g" "$HTTP_HEADER"
d0b748a4 1922 else
1923 _ret="$?"
1924 _err "Neither curl nor wget is found, can not do $httpmethod."
c60883ef 1925 fi
16679b57 1926 _debug "_ret" "$_ret"
19539575 1927 printf "%s" "$response"
16679b57 1928 return $_ret
c60883ef 1929}
1930
75da0713 1931# url getheader timeout
c60883ef 1932_get() {
a4270efa 1933 _debug GET
c60883ef 1934 url="$1"
1935 onlyheader="$2"
75da0713 1936 t="$3"
79a267ab 1937 _debug url "$url"
72f54ca6 1938 _debug "timeout=$t"
fac1e367 1939
1940 _inithttp
1941
9b124070 1942 if [ "$_ACME_CURL" ] && [ "${ACME_USE_WGET:-0}" = "0" ]; then
1befee5a 1943 _CURL="$_ACME_CURL"
7834c252 1944 if [ "$HTTPS_INSECURE" ]; then
1945 _CURL="$_CURL --insecure "
1946 fi
4c2a3841 1947 if [ "$t" ]; then
75da0713 1948 _CURL="$_CURL --connect-timeout $t"
1949 fi
1950 _debug "_CURL" "$_CURL"
4c2a3841 1951 if [ "$onlyheader" ]; then
f9a6988e 1952 $_CURL -I --user-agent "$USER_AGENT" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$url"
c60883ef 1953 else
f9a6988e 1954 $_CURL --user-agent "$USER_AGENT" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" -H "$_H5" "$url"
c60883ef 1955 fi
9aaf36cd 1956 ret=$?
4c2a3841 1957 if [ "$ret" != "0" ]; then
d529eb6d 1958 _err "Please refer to https://curl.haxx.se/libcurl/c/libcurl-errors.html for error code: $ret"
4c2a3841 1959 if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
fac1e367 1960 _err "Here is the curl dump log:"
1961 _err "$(cat "$_CURL_DUMP")"
1962 fi
1963 fi
4c2a3841 1964 elif [ "$_ACME_WGET" ]; then
1befee5a 1965 _WGET="$_ACME_WGET"
7834c252 1966 if [ "$HTTPS_INSECURE" ]; then
1967 _WGET="$_WGET --no-check-certificate "
1968 fi
4c2a3841 1969 if [ "$t" ]; then
75da0713 1970 _WGET="$_WGET --timeout=$t"
1971 fi
1972 _debug "_WGET" "$_WGET"
4c2a3841 1973 if [ "$onlyheader" ]; then
f9a6988e 1974 $_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'
c60883ef 1975 else
f9a6988e 1976 $_WGET --user-agent="$USER_AGENT" --header "$_H5" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" -O - "$url"
c60883ef 1977 fi
9aaf36cd 1978 ret=$?
f731a4c7 1979 if [ "$ret" = "8" ]; then
39a1f1ef 1980 ret=0
810c129c 1981 _debug "wget returns 8, the server returns a 'Bad request' response, lets process the response later."
9f43c270 1982 fi
4c2a3841 1983 if [ "$ret" != "0" ]; then
1984 _err "Please refer to https://www.gnu.org/software/wget/manual/html_node/Exit-Status.html for error code: $ret"
fac1e367 1985 fi
d0b748a4 1986 else
1987 ret=$?
1988 _err "Neither curl nor wget is found, can not do GET."
9aaf36cd 1989 fi
ec9fc8cb 1990 _debug "ret" "$ret"
c60883ef 1991 return $ret
1992}
166096dc 1993
c2c8f320 1994_head_n() {
79a267ab 1995 head -n "$1"
c2c8f320 1996}
1997
1998_tail_n() {
f9a6988e 1999 if ! tail -n "$1" 2>/dev/null; then
19ab2a29 2000 #fix for solaris
f9a6988e 2001 tail -"$1"
19ab2a29 2002 fi
c2c8f320 2003}
fac1e367 2004
166096dc 2005# url payload needbase64 keyfile
4c3b3608 2006_send_signed_request() {
2007 url=$1
2008 payload=$2
2009 needbase64=$3
166096dc 2010 keyfile=$4
4c2a3841 2011 if [ -z "$keyfile" ]; then
166096dc 2012 keyfile="$ACCOUNT_KEY_PATH"
2013 fi
f9a6988e 2014 _debug url "$url"
4c3b3608 2015 _debug payload "$payload"
4c2a3841 2016
2017 if ! _calcjwk "$keyfile"; then
166096dc 2018 return 1
2019 fi
c60883ef 2020
cc2d5946 2021 __request_conent_type="$CONTENT_TYPE_JSON"
2022
11927a76 2023 payload64=$(printf "%s" "$payload" | _base64 | _url_replace)
f9a6988e 2024 _debug3 payload64 "$payload64"
4c2a3841 2025
709a3fb0 2026 MAX_REQUEST_RETRY_TIMES=20
2027 _sleep_retry_sec=1
0bc745f6 2028 _request_retry_times=0
2029 while [ "${_request_retry_times}" -lt "$MAX_REQUEST_RETRY_TIMES" ]; do
aad309ee 2030 _request_retry_times=$(_math "$_request_retry_times" + 1)
b7924ce5 2031 _debug3 _request_retry_times "$_request_retry_times"
0bc745f6 2032 if [ -z "$_CACHED_NONCE" ]; then
8f01919f 2033 _headers=""
8bd12ed0
K
2034 if [ "$ACME_NEW_NONCE" ]; then
2035 _debug2 "Get nonce with HEAD. ACME_NEW_NONCE" "$ACME_NEW_NONCE"
cae50e16 2036 nonceurl="$ACME_NEW_NONCE"
1ba4ab2b 2037 if _post "" "$nonceurl" "" "HEAD" "$__request_conent_type" >/dev/null; then
cae50e16 2038 _headers="$(cat "$HTTP_HEADER")"
e7f7e96d 2039 _debug2 _headers "$_headers"
91d37c78 2040 _CACHED_NONCE="$(echo "$_headers" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2 | cut -d , -f 1)"
cae50e16 2041 fi
2042 fi
e7f7e96d 2043 if [ -z "$_CACHED_NONCE" ]; then
33226307 2044 _debug2 "Get nonce with GET. ACME_DIRECTORY" "$ACME_DIRECTORY"
cae50e16 2045 nonceurl="$ACME_DIRECTORY"
2046 _headers="$(_get "$nonceurl" "onlyheader")"
e7f7e96d 2047 _debug2 _headers "$_headers"
2048 _CACHED_NONCE="$(echo "$_headers" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2)"
cae50e16 2049 fi
e7f7e96d 2050 if [ -z "$_CACHED_NONCE" ] && [ "$ACME_NEW_NONCE" ]; then
2051 _debug2 "Get nonce with GET. ACME_NEW_NONCE" "$ACME_NEW_NONCE"
2052 nonceurl="$ACME_NEW_NONCE"
2053 _headers="$(_get "$nonceurl" "onlyheader")"
2054 _debug2 _headers "$_headers"
2055 _CACHED_NONCE="$(echo "$_headers" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2)"
2056 fi
2057 _debug2 _CACHED_NONCE "$_CACHED_NONCE"
0bc745f6 2058 if [ "$?" != "0" ]; then
2059 _err "Can not connect to $nonceurl to get nonce."
2060 return 1
2061 fi
0bc745f6 2062 else
2063 _debug2 "Use _CACHED_NONCE" "$_CACHED_NONCE"
2064 fi
2065 nonce="$_CACHED_NONCE"
2066 _debug2 nonce "$nonce"
aad309ee 2067 if [ -z "$nonce" ]; then
2068 _info "Could not get nonce, let's try again."
2069 _sleep 2
2070 continue
2071 fi
af3ea2d4 2072
2073 if [ "$url" = "$ACME_NEW_ACCOUNT" ]; then
c1151b0d 2074 protected="$JWK_HEADERPLACE_PART1$nonce\", \"url\": \"${url}$JWK_HEADERPLACE_PART2, \"jwk\": $jwk"'}'
af3ea2d4 2075 elif [ "$url" = "$ACME_REVOKE_CERT" ] && [ "$keyfile" != "$ACCOUNT_KEY_PATH" ]; then
2076 protected="$JWK_HEADERPLACE_PART1$nonce\", \"url\": \"${url}$JWK_HEADERPLACE_PART2, \"jwk\": $jwk"'}'
2077 else
2078 protected="$JWK_HEADERPLACE_PART1$nonce\", \"url\": \"${url}$JWK_HEADERPLACE_PART2, \"kid\": \"${ACCOUNT_URL}\""'}'
c1151b0d 2079 fi
af3ea2d4 2080
0bc745f6 2081 _debug3 protected "$protected"
a272ee4f 2082
0bc745f6 2083 protected64="$(printf "%s" "$protected" | _base64 | _url_replace)"
2084 _debug3 protected64 "$protected64"
4c2a3841 2085
0bc745f6 2086 if ! _sig_t="$(printf "%s" "$protected64.$payload64" | _sign "$keyfile" "sha256")"; then
2087 _err "Sign request failed."
2088 return 1
2089 fi
2090 _debug3 _sig_t "$_sig_t"
166096dc 2091
0bc745f6 2092 sig="$(printf "%s" "$_sig_t" | _url_replace)"
2093 _debug3 sig "$sig"
4c2a3841 2094
8bd12ed0 2095 body="{\"protected\": \"$protected64\", \"payload\": \"$payload64\", \"signature\": \"$sig\"}"
0bc745f6 2096 _debug3 body "$body"
4c2a3841 2097
6a66ba8a 2098 response="$(_post "$body" "$url" "$needbase64" "POST" "$__request_conent_type")"
0bc745f6 2099 _CACHED_NONCE=""
bbbdcb09 2100
0bc745f6 2101 if [ "$?" != "0" ]; then
2102 _err "Can not post to $url"
2103 return 1
2104 fi
4c3b3608 2105
64802502 2106 responseHeaders="$(cat "$HTTP_HEADER")"
0bc745f6 2107 _debug2 responseHeaders "$responseHeaders"
f2acdd27 2108
0bc745f6 2109 code="$(grep "^HTTP" "$HTTP_HEADER" | _tail_n 1 | cut -d " " -f 2 | tr -d "\r\n")"
2110 _debug code "$code"
4c2a3841 2111
f2acdd27 2112 _debug2 original "$response"
0712e989 2113 if echo "$responseHeaders" | grep -i "Content-Type: *application/json" >/dev/null 2>&1; then
cc8f2afc 2114 response="$(echo "$response" | _json_decode | _normalizeJson)"
8148bfea 2115 fi
f2acdd27 2116 _debug2 response "$response"
36309e6d 2117
91d37c78 2118 _CACHED_NONCE="$(echo "$responseHeaders" | grep -i "Replay-Nonce:" | _head_n 1 | tr -d "\r\n " | cut -d ':' -f 2 | cut -d , -f 1)"
f2acdd27 2119
a0ec5b18 2120 if ! _startswith "$code" "2"; then
f2acdd27 2121 _body="$response"
2122 if [ "$needbase64" ]; then
2123 _body="$(echo "$_body" | _dbase64 multiline)"
2124 _debug3 _body "$_body"
2125 fi
2126
2127 if _contains "$_body" "JWS has invalid anti-replay nonce" || _contains "$_body" "JWS has an invalid anti-replay nonce"; then
2128 _info "It seems the CA server is busy now, let's wait and retry. Sleeping $_sleep_retry_sec seconds."
2129 _CACHED_NONCE=""
2130 _sleep $_sleep_retry_sec
2131 continue
2132 fi
0f494c9d 2133 if _contains "$_body" "The Replay Nonce is not recognized"; then
2134 _info "The replay Nonce is not valid, let's get a new one, Sleeping $_sleep_retry_sec seconds."
2135 _CACHED_NONCE=""
2136 _sleep $_sleep_retry_sec
2137 continue
2138 fi
0bc745f6 2139 fi
a44ea0dd 2140 return 0
0bc745f6 2141 done
a44ea0dd 2142 _info "Giving up sending to CA server after $MAX_REQUEST_RETRY_TIMES retries."
2143 return 1
4c3b3608 2144
4c3b3608 2145}
4c3b3608 2146
2147#setopt "file" "opt" "=" "value" [";"]
2148_setopt() {
2149 __conf="$1"
2150 __opt="$2"
2151 __sep="$3"
2152 __val="$4"
2153 __end="$5"
4c2a3841 2154 if [ -z "$__opt" ]; then
2155 _usage usage: _setopt '"file" "opt" "=" "value" [";"]'
4c3b3608 2156 return
2157 fi
4c2a3841 2158 if [ ! -f "$__conf" ]; then
4c3b3608 2159 touch "$__conf"
2160 fi
2161
4c2a3841 2162 if grep -n "^$__opt$__sep" "$__conf" >/dev/null; then
22ea4004 2163 _debug3 OK
4c2a3841 2164 if _contains "$__val" "&"; then
79a267ab 2165 __val="$(echo "$__val" | sed 's/&/\\&/g')"
4c3b3608 2166 fi
79a267ab 2167 text="$(cat "$__conf")"
52f8b787 2168 printf -- "%s\n" "$text" | sed "s|^$__opt$__sep.*$|$__opt$__sep$__val$__end|" >"$__conf"
4c3b3608 2169
4c2a3841 2170 elif grep -n "^#$__opt$__sep" "$__conf" >/dev/null; then
2171 if _contains "$__val" "&"; then
79a267ab 2172 __val="$(echo "$__val" | sed 's/&/\\&/g')"
4c3b3608 2173 fi
79a267ab 2174 text="$(cat "$__conf")"
52f8b787 2175 printf -- "%s\n" "$text" | sed "s|^#$__opt$__sep.*$|$__opt$__sep$__val$__end|" >"$__conf"
4c3b3608 2176
2177 else
22ea4004 2178 _debug3 APP
4c2a3841 2179 echo "$__opt$__sep$__val$__end" >>"$__conf"
4c3b3608 2180 fi
1efb2085 2181 _debug3 "$(grep -n "^$__opt$__sep" "$__conf")"
4c3b3608 2182}
2183
7690f73e 2184#_save_conf file key value base64encode
8a29fbc8 2185#save to conf
2186_save_conf() {
2187 _s_c_f="$1"
2188 _sdkey="$2"
2189 _sdvalue="$3"
7690f73e 2190 _b64encode="$4"
53c01882 2191 if [ "$_sdvalue" ] && [ "$_b64encode" ]; then
7690f73e 2192 _sdvalue="${B64CONF_START}$(printf "%s" "${_sdvalue}" | _base64)${B64CONF_END}"
2193 fi
4c2a3841 2194 if [ "$_s_c_f" ]; then
8a29fbc8 2195 _setopt "$_s_c_f" "$_sdkey" "=" "'$_sdvalue'"
4d2f38b0 2196 else
8a29fbc8 2197 _err "config file is empty, can not save $_sdkey=$_sdvalue"
4d2f38b0 2198 fi
2199}
2200
8a29fbc8 2201#_clear_conf file key
2202_clear_conf() {
2203 _c_c_f="$1"
2204 _sdkey="$2"
4c2a3841 2205 if [ "$_c_c_f" ]; then
20ea8591 2206 _conf_data="$(cat "$_c_c_f")"
fa574fe8 2207 echo "$_conf_data" | sed "s/^$_sdkey *=.*$//" >"$_c_c_f"
4c3b3608 2208 else
8a29fbc8 2209 _err "config file is empty, can not clear"
4c3b3608 2210 fi
2211}
2212
8a29fbc8 2213#_read_conf file key
2214_read_conf() {
2215 _r_c_f="$1"
2216 _sdkey="$2"
4c2a3841 2217 if [ -f "$_r_c_f" ]; then
0cfeee4d 2218 _sdv="$(
2219 eval "$(grep "^$_sdkey *=" "$_r_c_f")"
2220 eval "printf \"%s\" \"\$$_sdkey\""
c97e43dc 2221 )"
7690f73e 2222 if _startswith "$_sdv" "${B64CONF_START}" && _endswith "$_sdv" "${B64CONF_END}"; then
2223 _sdv="$(echo "$_sdv" | sed "s/${B64CONF_START}//" | sed "s/${B64CONF_END}//" | _dbase64)"
2224 fi
2225 printf "%s" "$_sdv"
61623d22 2226 else
57e58ce7 2227 _debug "config file is empty, can not read $_sdkey"
4c3b3608 2228 fi
4c3b3608 2229}
2230
7690f73e 2231#_savedomainconf key value base64encode
4c3b3608 2232#save to domain.conf
2233_savedomainconf() {
7690f73e 2234 _save_conf "$DOMAIN_CONF" "$@"
4d2f38b0 2235}
2236
2237#_cleardomainconf key
2238_cleardomainconf() {
8a29fbc8 2239 _clear_conf "$DOMAIN_CONF" "$1"
4c3b3608 2240}
2241
61623d22 2242#_readdomainconf key
2243_readdomainconf() {
8a29fbc8 2244 _read_conf "$DOMAIN_CONF" "$1"
61623d22 2245}
2246
aec66362 2247#key value base64encode
2248_savedeployconf() {
2249 _savedomainconf "SAVED_$1" "$2" "$3"
2250 #remove later
dc5eda7e 2251 _cleardomainconf "$1"
aec66362 2252}
2253
2254#key
2255_getdeployconf() {
2256 _rac_key="$1"
2e3ddd3a 2257 _rac_value="$(eval echo \$"$_rac_key")"
2258 if [ "$_rac_value" ]; then
2259 if _startswith "$_rac_value" '"' && _endswith "$_rac_value" '"'; then
2260 _debug2 "trim quotation marks"
465ece5d 2261 eval "export $_rac_key=$_rac_value"
2e3ddd3a 2262 fi
aec66362 2263 return 0 # do nothing
2264 fi
2265 _saved=$(_readdomainconf "SAVED_$_rac_key")
25a8240d 2266 eval "export $_rac_key=\"\$_saved\""
aec66362 2267}
2268
7690f73e 2269#_saveaccountconf key value base64encode
4c3b3608 2270_saveaccountconf() {
7690f73e 2271 _save_conf "$ACCOUNT_CONF_PATH" "$@"
4c3b3608 2272}
2273
7690f73e 2274#key value base64encode
fcdf41ba 2275_saveaccountconf_mutable() {
7690f73e 2276 _save_conf "$ACCOUNT_CONF_PATH" "SAVED_$1" "$2" "$3"
fcdf41ba 2277 #remove later
2278 _clearaccountconf "$1"
2279}
2280
2281#key
2282_readaccountconf() {
2283 _read_conf "$ACCOUNT_CONF_PATH" "$1"
2284}
2285
2286#key
2287_readaccountconf_mutable() {
2288 _rac_key="$1"
2289 _readaccountconf "SAVED_$_rac_key"
2290}
2291
fac1e367 2292#_clearaccountconf key
2293_clearaccountconf() {
8a29fbc8 2294 _clear_conf "$ACCOUNT_CONF_PATH" "$1"
2295}
2296
585c0c38 2297#key
2298_clearaccountconf_mutable() {
2299 _clearaccountconf "SAVED_$1"
2300 #remove later
2301 _clearaccountconf "$1"
2302}
2303
8a29fbc8 2304#_savecaconf key value
2305_savecaconf() {
2306 _save_conf "$CA_CONF" "$1" "$2"
2307}
2308
2309#_readcaconf key
2310_readcaconf() {
2311 _read_conf "$CA_CONF" "$1"
2312}
2313
2314#_clearaccountconf key
2315_clearcaconf() {
2316 _clear_conf "$CA_CONF" "$1"
fac1e367 2317}
2318
0463b5d6 2319# content localaddress
4c3b3608 2320_startserver() {
2321 content="$1"
0463b5d6 2322 ncaddr="$2"
e7f7e96d 2323 _debug "content" "$content"
0463b5d6 2324 _debug "ncaddr" "$ncaddr"
2325
6fc1447f 2326 _debug "startserver: $$"
4c2a3841 2327
39c8f79f 2328 _debug Le_HTTPPort "$Le_HTTPPort"
6ae0f7f5 2329 _debug Le_Listen_V4 "$Le_Listen_V4"
2330 _debug Le_Listen_V6 "$Le_Listen_V6"
4c2a3841 2331
3794b5cb 2332 _NC="socat"
4c2a3841 2333 if [ "$Le_Listen_V4" ]; then
6ae0f7f5 2334 _NC="$_NC -4"
4c2a3841 2335 elif [ "$Le_Listen_V6" ]; then
6ae0f7f5 2336 _NC="$_NC -6"
2337 fi
4c2a3841 2338
9ad7ac63 2339 if [ "$DEBUG" ] && [ "$DEBUG" -gt "1" ]; then
5c568d69 2340 _NC="$_NC -d -d -v"
2341 fi
2342
9134b6ea
HC
2343 SOCAT_OPTIONS=TCP-LISTEN:$Le_HTTPPort,crlf,reuseaddr,fork
2344
2345 #Adding bind to local-address
d84665cb 2346 if [ "$ncaddr" ]; then
9ad7ac63 2347 SOCAT_OPTIONS="$SOCAT_OPTIONS,bind=${ncaddr}"
9134b6ea
HC
2348 fi
2349
e7f7e96d 2350 _content_len="$(printf "%s" "$content" | wc -c)"
2351 _debug _content_len "$_content_len"
5c568d69 2352 _debug "_NC" "$_NC $SOCAT_OPTIONS"
e7f7e96d 2353 $_NC $SOCAT_OPTIONS SYSTEM:"sleep 1; \
2354echo 'HTTP/1.0 200 OK'; \
2355echo 'Content-Length\: $_content_len'; \
2356echo ''; \
81b2d073 2357printf '%s' '$content';" &
3794b5cb 2358 serverproc="$!"
4c3b3608 2359}
2360
4c2a3841 2361_stopserver() {
4c3b3608 2362 pid="$1"
6fc1447f 2363 _debug "pid" "$pid"
4c2a3841 2364 if [ -z "$pid" ]; then
6fc1447f 2365 return
2366 fi
e22bcf7c 2367
3794b5cb 2368 kill $pid
2369
4c3b3608 2370}
2371
fdcb6b72 2372# sleep sec
2373_sleep() {
2374 _sleep_sec="$1"
4c2a3841 2375 if [ "$__INTERACTIVE" ]; then
fdcb6b72 2376 _sleep_c="$_sleep_sec"
4c2a3841 2377 while [ "$_sleep_c" -ge "0" ]; do
c583d6bb 2378 printf "\r \r"
fdcb6b72 2379 __green "$_sleep_c"
79a267ab 2380 _sleep_c="$(_math "$_sleep_c" - 1)"
fdcb6b72 2381 sleep 1
2382 done
c583d6bb 2383 printf "\r"
fdcb6b72 2384 else
2385 sleep "$_sleep_sec"
2386 fi
2387}
e22bcf7c 2388
08681f4a 2389# _starttlsserver san_a san_b port content _ncaddr acmeValidationv1
e22bcf7c 2390_starttlsserver() {
2391 _info "Starting tls server."
2392 san_a="$1"
2393 san_b="$2"
2394 port="$3"
2395 content="$4"
6ae0f7f5 2396 opaddr="$5"
08681f4a 2397 acmeValidationv1="$6"
4c2a3841 2398
e22bcf7c 2399 _debug san_a "$san_a"
2400 _debug san_b "$san_b"
2401 _debug port "$port"
08681f4a 2402 _debug acmeValidationv1 "$acmeValidationv1"
4c2a3841 2403
e22bcf7c 2404 #create key TLS_KEY
4c2a3841 2405 if ! _createkey "2048" "$TLS_KEY"; then
e22bcf7c 2406 _err "Create tls validation key error."
2407 return 1
2408 fi
4c2a3841 2409
e22bcf7c 2410 #create csr
2411 alt="$san_a"
4c2a3841 2412 if [ "$san_b" ]; then
e22bcf7c 2413 alt="$alt,$san_b"
2414 fi
08681f4a 2415 if ! _createcsr "tls.acme.sh" "$alt" "$TLS_KEY" "$TLS_CSR" "$TLS_CONF" "$acmeValidationv1"; then
e22bcf7c 2416 _err "Create tls validation csr error."
2417 return 1
2418 fi
4c2a3841 2419
e22bcf7c 2420 #self signed
4c2a3841 2421 if ! _signcsr "$TLS_KEY" "$TLS_CSR" "$TLS_CONF" "$TLS_CERT"; then
e22bcf7c 2422 _err "Create tls validation cert error."
2423 return 1
2424 fi
4c2a3841 2425
5f6e3da7 2426 __S_OPENSSL="${ACME_OPENSSL_BIN:-openssl} s_server -www -cert $TLS_CERT -key $TLS_KEY "
2427 if [ "$opaddr" ]; then
2428 __S_OPENSSL="$__S_OPENSSL -accept $opaddr:$port"
2429 else
2430 __S_OPENSSL="$__S_OPENSSL -accept $port"
2431 fi
6ae0f7f5 2432
2433 _debug Le_Listen_V4 "$Le_Listen_V4"
2434 _debug Le_Listen_V6 "$Le_Listen_V6"
4c2a3841 2435 if [ "$Le_Listen_V4" ]; then
6ae0f7f5 2436 __S_OPENSSL="$__S_OPENSSL -4"
4c2a3841 2437 elif [ "$Le_Listen_V6" ]; then
6ae0f7f5 2438 __S_OPENSSL="$__S_OPENSSL -6"
2439 fi
4c2a3841 2440
08681f4a 2441 if [ "$acmeValidationv1" ]; then
2442 __S_OPENSSL="$__S_OPENSSL -alpn acme-tls/1"
2443 fi
2444
6ae0f7f5 2445 _debug "$__S_OPENSSL"
5f6e3da7 2446 if [ "$DEBUG" ] && [ "$DEBUG" -ge "2" ]; then
2447 $__S_OPENSSL -tlsextdebug &
2448 else
2449 $__S_OPENSSL >/dev/null 2>&1 &
2450 fi
331c4bb6 2451
e22bcf7c 2452 serverproc="$!"
5dbf664a 2453 sleep 1
d5ec5f80 2454 _debug serverproc "$serverproc"
e22bcf7c 2455}
2456
18e46962 2457#file
2458_readlink() {
2459 _rf="$1"
2460 if ! readlink -f "$_rf" 2>/dev/null; then
6c4cc357 2461 if _startswith "$_rf" "/"; then
2462 echo "$_rf"
7da50703 2463 return 0
2464 fi
6c4cc357 2465 echo "$(pwd)/$_rf" | _conapath
18e46962 2466 fi
2467}
2468
6c4cc357 2469_conapath() {
2470 sed "s#/\./#/#g"
2471}
2472
5ea6e9c9 2473__initHome() {
4c2a3841 2474 if [ -z "$_SCRIPT_HOME" ]; then
2475 if _exists readlink && _exists dirname; then
66990cf8 2476 _debug "Lets find script dir."
f3e4cea3 2477 _debug "_SCRIPT_" "$_SCRIPT_"
18e46962 2478 _script="$(_readlink "$_SCRIPT_")"
f3e4cea3 2479 _debug "_script" "$_script"
2480 _script_home="$(dirname "$_script")"
2481 _debug "_script_home" "$_script_home"
4c2a3841 2482 if [ -d "$_script_home" ]; then
f3e4cea3 2483 _SCRIPT_HOME="$_script_home"
2484 else
2485 _err "It seems the script home is not correct:$_script_home"
2486 fi
2487 fi
2488 fi
2489
219e9115 2490 # if [ -z "$LE_WORKING_DIR" ]; then
2491 # if [ -f "$DEFAULT_INSTALL_HOME/account.conf" ]; then
2492 # _debug "It seems that $PROJECT_NAME is already installed in $DEFAULT_INSTALL_HOME"
2493 # LE_WORKING_DIR="$DEFAULT_INSTALL_HOME"
2494 # else
2495 # LE_WORKING_DIR="$_SCRIPT_HOME"
2496 # fi
2497 # fi
4c2a3841 2498
2499 if [ -z "$LE_WORKING_DIR" ]; then
f3e4cea3 2500 _debug "Using default home:$DEFAULT_INSTALL_HOME"
2501 LE_WORKING_DIR="$DEFAULT_INSTALL_HOME"
2502 fi
7da50703 2503 export LE_WORKING_DIR
f3e4cea3 2504
f5b546b3 2505 if [ -z "$LE_CONFIG_HOME" ]; then
2506 LE_CONFIG_HOME="$LE_WORKING_DIR"
27dbe77f 2507 fi
f5b546b3 2508 _debug "Using config home:$LE_CONFIG_HOME"
2509 export LE_CONFIG_HOME
27dbe77f 2510
f5b546b3 2511 _DEFAULT_ACCOUNT_CONF_PATH="$LE_CONFIG_HOME/account.conf"
d53289d7 2512
4c2a3841 2513 if [ -z "$ACCOUNT_CONF_PATH" ]; then
2514 if [ -f "$_DEFAULT_ACCOUNT_CONF_PATH" ]; then
8663fb7e 2515 . "$_DEFAULT_ACCOUNT_CONF_PATH"
635695ec 2516 fi
d53289d7 2517 fi
4c2a3841 2518
2519 if [ -z "$ACCOUNT_CONF_PATH" ]; then
d53289d7 2520 ACCOUNT_CONF_PATH="$_DEFAULT_ACCOUNT_CONF_PATH"
4c3b3608 2521 fi
f8f53a6b 2522 _debug3 ACCOUNT_CONF_PATH "$ACCOUNT_CONF_PATH"
f5b546b3 2523 DEFAULT_LOG_FILE="$LE_CONFIG_HOME/$PROJECT_NAME.log"
4c2a3841 2524
f5b546b3 2525 DEFAULT_CA_HOME="$LE_CONFIG_HOME/ca"
4c2a3841 2526
2527 if [ -z "$LE_TEMP_DIR" ]; then
f5b546b3 2528 LE_TEMP_DIR="$LE_CONFIG_HOME/tmp"
610e0f21 2529 fi
5ea6e9c9 2530}
2531
48d9a8c1 2532#server
2533_initAPI() {
2534 _api_server="${1:-$ACME_DIRECTORY}"
2535 _debug "_init api for server: $_api_server"
4cee14f3 2536
cae50e16 2537 if [ -z "$ACME_NEW_ACCOUNT" ]; then
48d9a8c1 2538 response=$(_get "$_api_server")
2539 if [ "$?" != "0" ]; then
2540 _debug2 "response" "$response"
f627a028 2541 _err "Can not init api for: $_api_server."
48d9a8c1 2542 return 1
2543 fi
d8bd45c2 2544 response=$(echo "$response" | _json_decode)
48d9a8c1 2545 _debug2 "response" "$response"
2546
af3ea2d4 2547 ACME_KEY_CHANGE=$(echo "$response" | _egrep_o 'keyChange" *: *"[^"]*"' | cut -d '"' -f 3)
48d9a8c1 2548 export ACME_KEY_CHANGE
2549
af3ea2d4 2550 ACME_NEW_AUTHZ=$(echo "$response" | _egrep_o 'newAuthz" *: *"[^"]*"' | cut -d '"' -f 3)
48d9a8c1 2551 export ACME_NEW_AUTHZ
2552
af3ea2d4 2553 ACME_NEW_ORDER=$(echo "$response" | _egrep_o 'newOrder" *: *"[^"]*"' | cut -d '"' -f 3)
cae50e16 2554 export ACME_NEW_ORDER
af3ea2d4 2555
2556 ACME_NEW_ACCOUNT=$(echo "$response" | _egrep_o 'newAccount" *: *"[^"]*"' | cut -d '"' -f 3)
cae50e16 2557 export ACME_NEW_ACCOUNT
48d9a8c1 2558
af3ea2d4 2559 ACME_REVOKE_CERT=$(echo "$response" | _egrep_o 'revokeCert" *: *"[^"]*"' | cut -d '"' -f 3)
48d9a8c1 2560 export ACME_REVOKE_CERT
2561
af3ea2d4 2562 ACME_NEW_NONCE=$(echo "$response" | _egrep_o 'newNonce" *: *"[^"]*"' | cut -d '"' -f 3)
cae50e16 2563 export ACME_NEW_NONCE
4249e13e 2564
af3ea2d4 2565 ACME_AGREEMENT=$(echo "$response" | _egrep_o 'termsOfService" *: *"[^"]*"' | cut -d '"' -f 3)
f87890cb 2566 export ACME_AGREEMENT
cae50e16 2567
f87890cb 2568 _debug "ACME_KEY_CHANGE" "$ACME_KEY_CHANGE"
2569 _debug "ACME_NEW_AUTHZ" "$ACME_NEW_AUTHZ"
2570 _debug "ACME_NEW_ORDER" "$ACME_NEW_ORDER"
2571 _debug "ACME_NEW_ACCOUNT" "$ACME_NEW_ACCOUNT"
2572 _debug "ACME_REVOKE_CERT" "$ACME_REVOKE_CERT"
2573 _debug "ACME_AGREEMENT" "$ACME_AGREEMENT"
c1151b0d 2574 _debug "ACME_NEW_NONCE" "$ACME_NEW_NONCE"
48d9a8c1 2575
f87890cb 2576 fi
48d9a8c1 2577}
2578
3281043e 2579#[domain] [keylength or isEcc flag]
5ea6e9c9 2580_initpath() {
cd9fb3b6 2581 domain="$1"
2582 _ilength="$2"
5ea6e9c9 2583
2584 __initHome
2585
4c2a3841 2586 if [ -f "$ACCOUNT_CONF_PATH" ]; then
8663fb7e 2587 . "$ACCOUNT_CONF_PATH"
4c3b3608 2588 fi
2589
bd04638d 2590 if [ "$_ACME_IN_CRON" ]; then
4c2a3841 2591 if [ ! "$_USER_PATH_EXPORTED" ]; then
281aa349 2592 _USER_PATH_EXPORTED=1
2593 export PATH="$USER_PATH:$PATH"
2594 fi
2595 fi
4c2a3841 2596
2597 if [ -z "$CA_HOME" ]; then
5c48e139 2598 CA_HOME="$DEFAULT_CA_HOME"
2599 fi
281aa349 2600
48d9a8c1 2601 if [ -z "$ACME_DIRECTORY" ]; then
b3a801df 2602 if [ "$STAGE" ]; then
2603 ACME_DIRECTORY="$DEFAULT_STAGING_CA"
bd04638d 2604 _info "Using ACME_DIRECTORY: $ACME_DIRECTORY"
4c3b3608 2605 else
b3a801df 2606 default_acme_server=$(_readaccountconf "DEFAULT_ACME_SERVER")
2607 _debug default_acme_server "$default_acme_server"
2608 if [ "$default_acme_server" ]; then
2609 ACME_DIRECTORY="$default_acme_server"
737e9e48 2610 else
b3a801df 2611 ACME_DIRECTORY="$DEFAULT_CA"
737e9e48 2612 fi
4c2a3841 2613 fi
4c3b3608 2614 fi
4c2a3841 2615
66444663 2616 _debug ACME_DIRECTORY "$ACME_DIRECTORY"
98394f99 2617 _ACME_SERVER_HOST="$(echo "$ACME_DIRECTORY" | cut -d : -f 2 | tr -s / | cut -d / -f 2)"
48d9a8c1 2618 _debug2 "_ACME_SERVER_HOST" "$_ACME_SERVER_HOST"
2619
2620 CA_DIR="$CA_HOME/$_ACME_SERVER_HOST"
4c2a3841 2621
5c48e139 2622 _DEFAULT_CA_CONF="$CA_DIR/ca.conf"
4c2a3841 2623
2624 if [ -z "$CA_CONF" ]; then
5c48e139 2625 CA_CONF="$_DEFAULT_CA_CONF"
2626 fi
c4236e58 2627 _debug3 CA_CONF "$CA_CONF"
4c2a3841 2628
2629 if [ -f "$CA_CONF" ]; then
5c48e139 2630 . "$CA_CONF"
2631 fi
2632
4c2a3841 2633 if [ -z "$ACME_DIR" ]; then
4c3b3608 2634 ACME_DIR="/home/.acme"
2635 fi
4c2a3841 2636
2637 if [ -z "$APACHE_CONF_BACKUP_DIR" ]; then
f5b546b3 2638 APACHE_CONF_BACKUP_DIR="$LE_CONFIG_HOME"
4c3b3608 2639 fi
4c2a3841 2640
2641 if [ -z "$USER_AGENT" ]; then
bbbdcb09 2642 USER_AGENT="$DEFAULT_USER_AGENT"
2643 fi
4c2a3841 2644
2645 if [ -z "$HTTP_HEADER" ]; then
f5b546b3 2646 HTTP_HEADER="$LE_CONFIG_HOME/http.header"
933c169d 2647 fi
b2817897 2648
5c48e139 2649 _OLD_ACCOUNT_KEY="$LE_WORKING_DIR/account.key"
2650 _OLD_ACCOUNT_JSON="$LE_WORKING_DIR/account.json"
4c2a3841 2651
5c48e139 2652 _DEFAULT_ACCOUNT_KEY_PATH="$CA_DIR/account.key"
2653 _DEFAULT_ACCOUNT_JSON_PATH="$CA_DIR/account.json"
4c2a3841 2654 if [ -z "$ACCOUNT_KEY_PATH" ]; then
b2817897 2655 ACCOUNT_KEY_PATH="$_DEFAULT_ACCOUNT_KEY_PATH"
4c3b3608 2656 fi
4c2a3841 2657
2658 if [ -z "$ACCOUNT_JSON_PATH" ]; then
5c48e139 2659 ACCOUNT_JSON_PATH="$_DEFAULT_ACCOUNT_JSON_PATH"
2660 fi
4c2a3841 2661
f5b546b3 2662 _DEFAULT_CERT_HOME="$LE_CONFIG_HOME"
4c2a3841 2663 if [ -z "$CERT_HOME" ]; then
a79b26af
RD
2664 CERT_HOME="$_DEFAULT_CERT_HOME"
2665 fi
2666
77f1ea40 2667 if [ -z "$ACME_OPENSSL_BIN" ] || [ ! -f "$ACME_OPENSSL_BIN" ] || [ ! -x "$ACME_OPENSSL_BIN" ]; then
851fedf7 2668 ACME_OPENSSL_BIN="$DEFAULT_OPENSSL_BIN"
a746139c 2669 fi
2670
cd9fb3b6 2671 if [ -z "$domain" ]; then
4c3b3608 2672 return 0
2673 fi
4c2a3841 2674
4c2a3841 2675 if [ -z "$DOMAIN_PATH" ]; then
43822d37 2676 domainhome="$CERT_HOME/$domain"
2677 domainhomeecc="$CERT_HOME/$domain$ECC_SUFFIX"
4c2a3841 2678
4c3b3608 2679 DOMAIN_PATH="$domainhome"
4c2a3841 2680
2681 if _isEccKey "$_ilength"; then
43822d37 2682 DOMAIN_PATH="$domainhomeecc"
2683 else
4c2a3841 2684 if [ ! -d "$domainhome" ] && [ -d "$domainhomeecc" ]; then
6d4e903b 2685 _info "The domain '$domain' seems to have a ECC cert already, please add '$(__red "--ecc")' parameter if you want to use that cert."
43822d37 2686 fi
2687 fi
2688 _debug DOMAIN_PATH "$DOMAIN_PATH"
4c3b3608 2689 fi
4c2a3841 2690
fd72cced 2691 if [ -z "$DOMAIN_BACKUP_PATH" ]; then
d88f8e86 2692 DOMAIN_BACKUP_PATH="$DOMAIN_PATH/backup"
fd72cced 2693 fi
2694
4c2a3841 2695 if [ -z "$DOMAIN_CONF" ]; then
43822d37 2696 DOMAIN_CONF="$DOMAIN_PATH/$domain.conf"
4c3b3608 2697 fi
4c2a3841 2698
2699 if [ -z "$DOMAIN_SSL_CONF" ]; then
0c9546cc 2700 DOMAIN_SSL_CONF="$DOMAIN_PATH/$domain.csr.conf"
4c3b3608 2701 fi
4c2a3841 2702
2703 if [ -z "$CSR_PATH" ]; then
43822d37 2704 CSR_PATH="$DOMAIN_PATH/$domain.csr"
4c3b3608 2705 fi
4c2a3841 2706 if [ -z "$CERT_KEY_PATH" ]; then
43822d37 2707 CERT_KEY_PATH="$DOMAIN_PATH/$domain.key"
4c3b3608 2708 fi
4c2a3841 2709 if [ -z "$CERT_PATH" ]; then
43822d37 2710 CERT_PATH="$DOMAIN_PATH/$domain.cer"
4c3b3608 2711 fi
4c2a3841 2712 if [ -z "$CA_CERT_PATH" ]; then
43822d37 2713 CA_CERT_PATH="$DOMAIN_PATH/ca.cer"
4c3b3608 2714 fi
4c2a3841 2715 if [ -z "$CERT_FULLCHAIN_PATH" ]; then
43822d37 2716 CERT_FULLCHAIN_PATH="$DOMAIN_PATH/fullchain.cer"
caf1fc10 2717 fi
4c2a3841 2718 if [ -z "$CERT_PFX_PATH" ]; then
43822d37 2719 CERT_PFX_PATH="$DOMAIN_PATH/$domain.pfx"
ac2d5123 2720 fi
4410226d 2721 if [ -z "$CERT_PKCS8_PATH" ]; then
2722 CERT_PKCS8_PATH="$DOMAIN_PATH/$domain.pkcs8"
2723 fi
4c2a3841 2724
2725 if [ -z "$TLS_CONF" ]; then
f94433e5 2726 TLS_CONF="$DOMAIN_PATH/tls.validation.conf"
e22bcf7c 2727 fi
4c2a3841 2728 if [ -z "$TLS_CERT" ]; then
f94433e5 2729 TLS_CERT="$DOMAIN_PATH/tls.validation.cert"
e22bcf7c 2730 fi
4c2a3841 2731 if [ -z "$TLS_KEY" ]; then
f94433e5 2732 TLS_KEY="$DOMAIN_PATH/tls.validation.key"
e22bcf7c 2733 fi
4c2a3841 2734 if [ -z "$TLS_CSR" ]; then
f94433e5 2735 TLS_CSR="$DOMAIN_PATH/tls.validation.csr"
e22bcf7c 2736 fi
4c2a3841 2737
4c3b3608 2738}
2739
610e0f21 2740_exec() {
4c2a3841 2741 if [ -z "$_EXEC_TEMP_ERR" ]; then
610e0f21 2742 _EXEC_TEMP_ERR="$(_mktemp)"
2743 fi
2744
4c2a3841 2745 if [ "$_EXEC_TEMP_ERR" ]; then
3e5b1024 2746 eval "$@ 2>>$_EXEC_TEMP_ERR"
610e0f21 2747 else
3e5b1024 2748 eval "$@"
610e0f21 2749 fi
2750}
2751
2752_exec_err() {
3e5b1024 2753 [ "$_EXEC_TEMP_ERR" ] && _err "$(cat "$_EXEC_TEMP_ERR")" && echo "" >"$_EXEC_TEMP_ERR"
610e0f21 2754}
4c3b3608 2755
2756_apachePath() {
c3dd3ef0 2757 _APACHECTL="apachectl"
4c2a3841 2758 if ! _exists apachectl; then
2759 if _exists apache2ctl; then
2760 _APACHECTL="apache2ctl"
e4a19585 2761 else
bc96082f 2762 _err "'apachectl not found. It seems that apache is not installed, or you are not root user.'"
e4a19585 2763 _err "Please use webroot mode to try again."
2764 return 1
2765 fi
80a0a7b5 2766 fi
4c2a3841 2767
2768 if ! _exec $_APACHECTL -V >/dev/null; then
610e0f21 2769 _exec_err
2770 return 1
2771 fi
4c2a3841 2772
2773 if [ "$APACHE_HTTPD_CONF" ]; then
5be1449d 2774 _saveaccountconf APACHE_HTTPD_CONF "$APACHE_HTTPD_CONF"
2775 httpdconf="$APACHE_HTTPD_CONF"
79a267ab 2776 httpdconfname="$(basename "$httpdconfname")"
d62ee940 2777 else
4c2a3841 2778 httpdconfname="$($_APACHECTL -V | grep SERVER_CONFIG_FILE= | cut -d = -f 2 | tr -d '"')"
5be1449d 2779 _debug httpdconfname "$httpdconfname"
4c2a3841 2780
2781 if [ -z "$httpdconfname" ]; then
5be1449d 2782 _err "Can not read apache config file."
2783 return 1
2784 fi
4c2a3841 2785
2786 if _startswith "$httpdconfname" '/'; then
5be1449d 2787 httpdconf="$httpdconfname"
79a267ab 2788 httpdconfname="$(basename "$httpdconfname")"
5be1449d 2789 else
4c2a3841 2790 httpdroot="$($_APACHECTL -V | grep HTTPD_ROOT= | cut -d = -f 2 | tr -d '"')"
5be1449d 2791 _debug httpdroot "$httpdroot"
2792 httpdconf="$httpdroot/$httpdconfname"
79a267ab 2793 httpdconfname="$(basename "$httpdconfname")"
5be1449d 2794 fi
d62ee940 2795 fi
78768e98 2796 _debug httpdconf "$httpdconf"
8f63baf7 2797 _debug httpdconfname "$httpdconfname"
4c2a3841 2798 if [ ! -f "$httpdconf" ]; then
78768e98 2799 _err "Apache Config file not found" "$httpdconf"
4c3b3608 2800 return 1
2801 fi
2802 return 0
2803}
2804
2805_restoreApache() {
4c2a3841 2806 if [ -z "$usingApache" ]; then
4c3b3608 2807 return 0
2808 fi
2809 _initpath
4c2a3841 2810 if ! _apachePath; then
4c3b3608 2811 return 1
2812 fi
4c2a3841 2813
2814 if [ ! -f "$APACHE_CONF_BACKUP_DIR/$httpdconfname" ]; then
4c3b3608 2815 _debug "No config file to restore."
2816 return 0
2817 fi
4c2a3841 2818
2819 cat "$APACHE_CONF_BACKUP_DIR/$httpdconfname" >"$httpdconf"
5ef501c5 2820 _debug "Restored: $httpdconf."
4c2a3841 2821 if ! _exec $_APACHECTL -t; then
610e0f21 2822 _exec_err
4c3b3608 2823 _err "Sorry, restore apache config error, please contact me."
4c2a3841 2824 return 1
4c3b3608 2825 fi
5ef501c5 2826 _debug "Restored successfully."
4c3b3608 2827 rm -f "$APACHE_CONF_BACKUP_DIR/$httpdconfname"
4c2a3841 2828 return 0
4c3b3608 2829}
2830
2831_setApache() {
2832 _initpath
4c2a3841 2833 if ! _apachePath; then
4c3b3608 2834 return 1
2835 fi
2836
5fc5016d 2837 #test the conf first
869578ce 2838 _info "Checking if there is an error in the apache config file before starting."
4c2a3841 2839
44edb2bd 2840 if ! _exec "$_APACHECTL" -t >/dev/null; then
610e0f21 2841 _exec_err
2842 _err "The apache config file has error, please fix it first, then try again."
869578ce 2843 _err "Don't worry, there is nothing changed to your system."
4c2a3841 2844 return 1
5fc5016d 2845 else
2846 _info "OK"
2847 fi
4c2a3841 2848
4c3b3608 2849 #backup the conf
5778811a 2850 _debug "Backup apache config file" "$httpdconf"
4c2a3841 2851 if ! cp "$httpdconf" "$APACHE_CONF_BACKUP_DIR/"; then
869578ce 2852 _err "Can not backup apache config file, so abort. Don't worry, the apache config is not changed."
61a48a5b 2853 _err "This might be a bug of $PROJECT_NAME , please report issue: $PROJECT"
8f63baf7 2854 return 1
2855 fi
4c3b3608 2856 _info "JFYI, Config file $httpdconf is backuped to $APACHE_CONF_BACKUP_DIR/$httpdconfname"
2857 _info "In case there is an error that can not be restored automatically, you may try restore it yourself."
329174b6 2858 _info "The backup file will be deleted on success, just forget it."
4c2a3841 2859
4c3b3608 2860 #add alias
4c2a3841 2861
2862 apacheVer="$($_APACHECTL -V | grep "Server version:" | cut -d : -f 2 | cut -d " " -f 2 | cut -d '/' -f 2)"
b09d597c 2863 _debug "apacheVer" "$apacheVer"
94787d53 2864 apacheMajor="$(echo "$apacheVer" | cut -d . -f 1)"
b09d597c 2865 apacheMinor="$(echo "$apacheVer" | cut -d . -f 2)"
2866
94787d53 2867 if [ "$apacheVer" ] && [ "$apacheMajor$apacheMinor" -ge "24" ]; then
b09d597c 2868 echo "
4c3b3608 2869Alias /.well-known/acme-challenge $ACME_DIR
2870
2871<Directory $ACME_DIR >
2872Require all granted
b09d597c 2873</Directory>
4c2a3841 2874 " >>"$httpdconf"
b09d597c 2875 else
2876 echo "
2877Alias /.well-known/acme-challenge $ACME_DIR
2878
2879<Directory $ACME_DIR >
2880Order allow,deny
2881Allow from all
4c3b3608 2882</Directory>
4c2a3841 2883 " >>"$httpdconf"
b09d597c 2884 fi
2885
4c2a3841 2886 _msg="$($_APACHECTL -t 2>&1)"
2887 if [ "$?" != "0" ]; then
5fc5016d 2888 _err "Sorry, apache config error"
4c2a3841 2889 if _restoreApache; then
869578ce 2890 _err "The apache config file is restored."
5fc5016d 2891 else
2e87e64b 2892 _err "Sorry, the apache config file can not be restored, please report bug."
5fc5016d 2893 fi
4c2a3841 2894 return 1
4c3b3608 2895 fi
4c2a3841 2896
2897 if [ ! -d "$ACME_DIR" ]; then
4c3b3608 2898 mkdir -p "$ACME_DIR"
2899 chmod 755 "$ACME_DIR"
2900 fi
4c2a3841 2901
44edb2bd 2902 if ! _exec "$_APACHECTL" graceful; then
4c2a3841 2903 _exec_err
610e0f21 2904 _err "$_APACHECTL graceful error, please contact me."
4c3b3608 2905 _restoreApache
4c2a3841 2906 return 1
4c3b3608 2907 fi
2908 usingApache="1"
2909 return 0
2910}
2911
9d725af6 2912#find the real nginx conf file
2913#backup
2914#set the nginx conf
2915#returns the real nginx conf file
2916_setNginx() {
2917 _d="$1"
2918 _croot="$2"
2919 _thumbpt="$3"
37f39c08 2920
9d725af6 2921 FOUND_REAL_NGINX_CONF=""
9f90618a 2922 FOUND_REAL_NGINX_CONF_LN=""
9d725af6 2923 BACKUP_NGINX_CONF=""
2924 _debug _croot "$_croot"
2925 _start_f="$(echo "$_croot" | cut -d : -f 2)"
2926 _debug _start_f "$_start_f"
2927 if [ -z "$_start_f" ]; then
2928 _debug "find start conf from nginx command"
2929 if [ -z "$NGINX_CONF" ]; then
37f39c08 2930 if ! _exists "nginx"; then
2931 _err "nginx command is not found."
2932 return 1
2933 fi
9d725af6 2934 NGINX_CONF="$(nginx -V 2>&1 | _egrep_o "--conf-path=[^ ]* " | tr -d " ")"
2935 _debug NGINX_CONF "$NGINX_CONF"
2936 NGINX_CONF="$(echo "$NGINX_CONF" | cut -d = -f 2)"
2937 _debug NGINX_CONF "$NGINX_CONF"
1081d98b 2938 if [ -z "$NGINX_CONF" ]; then
2939 _err "Can not find nginx conf."
2940 NGINX_CONF=""
2941 return 1
2942 fi
9d725af6 2943 if [ ! -f "$NGINX_CONF" ]; then
2944 _err "'$NGINX_CONF' doesn't exist."
2945 NGINX_CONF=""
2946 return 1
2947 fi
2948 _debug "Found nginx conf file:$NGINX_CONF"
2949 fi
2950 _start_f="$NGINX_CONF"
2951 fi
03f8d6e9 2952 _debug "Start detect nginx conf for $_d from:$_start_f"
9d725af6 2953 if ! _checkConf "$_d" "$_start_f"; then
5378d9ca 2954 _err "Can not find conf file for domain $d"
9d725af6 2955 return 1
2956 fi
2957 _info "Found conf file: $FOUND_REAL_NGINX_CONF"
2958
9f90618a 2959 _ln=$FOUND_REAL_NGINX_CONF_LN
03f8d6e9 2960 _debug "_ln" "$_ln"
2961
2962 _lnn=$(_math $_ln + 1)
2963 _debug _lnn "$_lnn"
2964 _start_tag="$(sed -n "$_lnn,${_lnn}p" "$FOUND_REAL_NGINX_CONF")"
2965 _debug "_start_tag" "$_start_tag"
2966 if [ "$_start_tag" = "$NGINX_START" ]; then
2967 _info "The domain $_d is already configured, skip"
2968 FOUND_REAL_NGINX_CONF=""
2969 return 0
2970 fi
2971
9d725af6 2972 mkdir -p "$DOMAIN_BACKUP_PATH"
2973 _backup_conf="$DOMAIN_BACKUP_PATH/$_d.nginx.conf"
2974 _debug _backup_conf "$_backup_conf"
2975 BACKUP_NGINX_CONF="$_backup_conf"
2976 _info "Backup $FOUND_REAL_NGINX_CONF to $_backup_conf"
2977 if ! cp "$FOUND_REAL_NGINX_CONF" "$_backup_conf"; then
2978 _err "backup error."
2979 FOUND_REAL_NGINX_CONF=""
2980 return 1
2981 fi
2982
37f39c08 2983 if ! _exists "nginx"; then
2984 _err "nginx command is not found."
2985 return 1
2986 fi
9d725af6 2987 _info "Check the nginx conf before setting up."
2988 if ! _exec "nginx -t" >/dev/null; then
2989 _exec_err
2990 return 1
2991 fi
2992
2993 _info "OK, Set up nginx config file"
9d725af6 2994
302c41ed 2995 if ! sed -n "1,${_ln}p" "$_backup_conf" >"$FOUND_REAL_NGINX_CONF"; then
03f8d6e9 2996 cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF"
9d725af6 2997 _err "write nginx conf error, but don't worry, the file is restored to the original version."
2998 return 1
2999 fi
3000
03f8d6e9 3001 echo "$NGINX_START
9d725af6 3002location ~ \"^/\.well-known/acme-challenge/([-_a-zA-Z0-9]+)\$\" {
3003 default_type text/plain;
3004 return 200 \"\$1.$_thumbpt\";
3c07f57a 3005}
03f8d6e9 3006#NGINX_START
3007" >>"$FOUND_REAL_NGINX_CONF"
9d725af6 3008
03f8d6e9 3009 if ! sed -n "${_lnn},99999p" "$_backup_conf" >>"$FOUND_REAL_NGINX_CONF"; then
3010 cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF"
9d725af6 3011 _err "write nginx conf error, but don't worry, the file is restored."
3012 return 1
3013 fi
df711b0e 3014 _debug3 "Modified config:$(cat $FOUND_REAL_NGINX_CONF)"
9d725af6 3015 _info "nginx conf is done, let's check it again."
3016 if ! _exec "nginx -t" >/dev/null; then
3017 _exec_err
3018 _err "It seems that nginx conf was broken, let's restore."
302c41ed 3019 cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF"
9d725af6 3020 return 1
3021 fi
3022
3023 _info "Reload nginx"
3024 if ! _exec "nginx -s reload" >/dev/null; then
3025 _exec_err
3026 _err "It seems that nginx reload error, let's restore."
302c41ed 3027 cat "$_backup_conf" >"$FOUND_REAL_NGINX_CONF"
9d725af6 3028 return 1
3029 fi
3030
3031 return 0
3032}
3033
3034#d , conf
3035_checkConf() {
3036 _d="$1"
3037 _c_file="$2"
3038 _debug "Start _checkConf from:$_c_file"
3039 if [ ! -f "$2" ] && ! echo "$2" | grep '*$' >/dev/null && echo "$2" | grep '*' >/dev/null; then
3040 _debug "wildcard"
3041 for _w_f in $2; do
7f618e7e 3042 if [ -f "$_w_f" ] && _checkConf "$1" "$_w_f"; then
9d725af6 3043 return 0
3044 fi
3045 done
3046 #not found
3047 return 1
3048 elif [ -f "$2" ]; then
3049 _debug "single"
3050 if _isRealNginxConf "$1" "$2"; then
3051 _debug "$2 is found."
3052 FOUND_REAL_NGINX_CONF="$2"
3053 return 0
3054 fi
f08a79d3 3055 if cat "$2" | tr "\t" " " | grep "^ *include *.*;" >/dev/null; then
9d725af6 3056 _debug "Try include files"
f08a79d3 3057 for included in $(cat "$2" | tr "\t" " " | grep "^ *include *.*;" | sed "s/include //" | tr -d " ;"); do
9d725af6 3058 _debug "check included $included"
e353f66e 3059 if ! _startswith "$included" "/" && _exists dirname; then
0a4ef171 3060 _relpath="$(dirname "$_c_file")"
3061 _debug "_relpath" "$_relpath"
3062 included="$_relpath/included"
3063 fi
9d725af6 3064 if _checkConf "$1" "$included"; then
3065 return 0
3066 fi
3067 done
3068 fi
3069 return 1
3070 else
3071 _debug "$2 not found."
3072 return 1
3073 fi
3074 return 1
3075}
3076
3077#d , conf
3078_isRealNginxConf() {
3079 _debug "_isRealNginxConf $1 $2"
302c41ed 3080 if [ -f "$2" ]; then
3f1a76d9 3081 for _fln in $(tr "\t" ' ' <"$2" | grep -n "^ *server_name.* $1" | cut -d : -f 1); do
302c41ed 3082 _debug _fln "$_fln"
3083 if [ "$_fln" ]; then
04a609b5 3084 _start=$(tr "\t" ' ' <"$2" | _head_n "$_fln" | grep -n "^ *server *" | grep -v server_name | _tail_n 1)
9f90618a 3085 _debug "_start" "$_start"
3086 _start_n=$(echo "$_start" | cut -d : -f 1)
3087 _start_nn=$(_math $_start_n + 1)
3088 _debug "_start_n" "$_start_n"
3089 _debug "_start_nn" "$_start_nn"
3090
3091 _left="$(sed -n "${_start_nn},99999p" "$2")"
3092 _debug2 _left "$_left"
012dd698 3093 _end="$(echo "$_left" | tr "\t" ' ' | grep -n "^ *server *" | grep -v server_name | _head_n 1)"
3094 _debug "_end" "$_end"
3095 if [ "$_end" ]; then
9f90618a 3096 _end_n=$(echo "$_end" | cut -d : -f 1)
3097 _debug "_end_n" "$_end_n"
3098 _seg_n=$(echo "$_left" | sed -n "1,${_end_n}p")
3099 else
3100 _seg_n="$_left"
3101 fi
3102
3103 _debug "_seg_n" "$_seg_n"
3104
04a609b5 3105 _skip_ssl=1
d1067c60 3106 for _listen_i in $(echo "$_seg_n" | tr "\t" ' ' | grep "^ *listen" | tr -d " "); do
04a609b5 3107 if [ "$_listen_i" ]; then
9841063d 3108 if [ "$(echo "$_listen_i" | _egrep_o "listen.*ssl")" ]; then
04a609b5 3109 _debug2 "$_listen_i is ssl"
3110 else
3111 _debug2 "$_listen_i is plain text"
3112 _skip_ssl=""
c05eb0b1 3113 break
3114 fi
04a609b5 3115 fi
3116 done
3117
3118 if [ "$_skip_ssl" = "1" ]; then
9f90618a 3119 _debug "ssl on, skip"
241cfc43 3120 else
3121 FOUND_REAL_NGINX_CONF_LN=$_fln
3122 _debug3 "found FOUND_REAL_NGINX_CONF_LN" "$FOUND_REAL_NGINX_CONF_LN"
3123 return 0
450efea1 3124 fi
302c41ed 3125 fi
3126 done
9d725af6 3127 fi
302c41ed 3128 return 1
9d725af6 3129}
3130
3131#restore all the nginx conf
3132_restoreNginx() {
5d943a35 3133 if [ -z "$NGINX_RESTORE_VLIST" ]; then
9d725af6 3134 _debug "No need to restore nginx, skip."
3135 return
3136 fi
3137 _debug "_restoreNginx"
5d943a35 3138 _debug "NGINX_RESTORE_VLIST" "$NGINX_RESTORE_VLIST"
9d725af6 3139
5d943a35 3140 for ng_entry in $(echo "$NGINX_RESTORE_VLIST" | tr "$dvsep" ' '); do
9d725af6 3141 _debug "ng_entry" "$ng_entry"
3142 _nd=$(echo "$ng_entry" | cut -d "$sep" -f 1)
3143 _ngconf=$(echo "$ng_entry" | cut -d "$sep" -f 2)
3144 _ngbackupconf=$(echo "$ng_entry" | cut -d "$sep" -f 3)
3145 _info "Restoring from $_ngbackupconf to $_ngconf"
302c41ed 3146 cat "$_ngbackupconf" >"$_ngconf"
9d725af6 3147 done
3148
3149 _info "Reload nginx"
3150 if ! _exec "nginx -s reload" >/dev/null; then
3151 _exec_err
3152 _err "It seems that nginx reload error, please report bug."
3153 return 1
3154 fi
3155 return 0
3156}
3157
5ef501c5 3158_clearup() {
44edb2bd 3159 _stopserver "$serverproc"
4c3b3608 3160 serverproc=""
3161 _restoreApache
9d725af6 3162 _restoreNginx
800e3f45 3163 _clearupdns
4c2a3841 3164 if [ -z "$DEBUG" ]; then
e22bcf7c 3165 rm -f "$TLS_CONF"
3166 rm -f "$TLS_CERT"
3167 rm -f "$TLS_KEY"
3168 rm -f "$TLS_CSR"
3169 fi
4c3b3608 3170}
3171
800e3f45 3172_clearupdns() {
3173 _debug "_clearupdns"
b5ca9bba 3174 _debug "dns_entries" "$dns_entries"
3175
3176 if [ -z "$dns_entries" ]; then
65b22b49 3177 _debug "skip dns."
800e3f45 3178 return
3179 fi
875625b1 3180 _info "Removing DNS records."
800e3f45 3181
b5ca9bba 3182 for entry in $dns_entries; do
3183 d=$(_getfield "$entry" 1)
3184 txtdomain=$(_getfield "$entry" 2)
3185 aliasDomain=$(_getfield "$entry" 3)
9a733a57 3186 _currentRoot=$(_getfield "$entry" 4)
b5ca9bba 3187 txt=$(_getfield "$entry" 5)
3188 d_api=$(_getfield "$entry" 6)
3189 _debug "d" "$d"
3190 _debug "txtdomain" "$txtdomain"
3191 _debug "aliasDomain" "$aliasDomain"
9a733a57 3192 _debug "_currentRoot" "$_currentRoot"
b5ca9bba 3193 _debug "txt" "$txt"
3194 _debug "d_api" "$d_api"
3195 if [ "$d_api" = "$txt" ]; then
3196 d_api=""
800e3f45 3197 fi
4c2a3841 3198
4c2a3841 3199 if [ -z "$d_api" ]; then
800e3f45 3200 _info "Not Found domain api file: $d_api"
3201 continue
3202 fi
4c2a3841 3203
b5ca9bba 3204 if [ "$aliasDomain" ]; then
3205 txtdomain="$aliasDomain"
3206 fi
3207
800e3f45 3208 (
d5ec5f80 3209 if ! . "$d_api"; then
800e3f45 3210 _err "Load file $d_api error. Please check your api file and try again."
3211 return 1
3212 fi
4c2a3841 3213
800e3f45 3214 rmcommand="${_currentRoot}_rm"
d5ec5f80 3215 if ! _exists "$rmcommand"; then
800e3f45 3216 _err "It seems that your api file doesn't define $rmcommand"
3217 return 1
3218 fi
a180b95c 3219 _info "Removing txt: $txt for domain: $txtdomain"
21f201e3 3220 if ! $rmcommand "$txtdomain" "$txt"; then
800e3f45 3221 _err "Error removing txt for domain:$txtdomain"
3222 return 1
3223 fi
a180b95c 3224 _info "Removed: Success"
800e3f45 3225 )
4c2a3841 3226
800e3f45 3227 done
3228}
3229
4c3b3608 3230# webroot removelevel tokenfile
3231_clearupwebbroot() {
3232 __webroot="$1"
4c2a3841 3233 if [ -z "$__webroot" ]; then
4c3b3608 3234 _debug "no webroot specified, skip"
3235 return 0
3236 fi
4c2a3841 3237
dcf9cb58 3238 _rmpath=""
4c2a3841 3239 if [ "$2" = '1' ]; then
dcf9cb58 3240 _rmpath="$__webroot/.well-known"
4c2a3841 3241 elif [ "$2" = '2' ]; then
dcf9cb58 3242 _rmpath="$__webroot/.well-known/acme-challenge"
4c2a3841 3243 elif [ "$2" = '3' ]; then
dcf9cb58 3244 _rmpath="$__webroot/.well-known/acme-challenge/$3"
4c3b3608 3245 else
cc179731 3246 _debug "Skip for removelevel:$2"
4c3b3608 3247 fi
4c2a3841 3248
3249 if [ "$_rmpath" ]; then
3250 if [ "$DEBUG" ]; then
dcf9cb58 3251 _debug "Debugging, skip removing: $_rmpath"
3252 else
3253 rm -rf "$_rmpath"
3254 fi
3255 fi
4c2a3841 3256
4c3b3608 3257 return 0
3258
3259}
3260
b0070f03 3261_on_before_issue() {
af1cc3b3 3262 _chk_web_roots="$1"
02140ce7 3263 _chk_main_domain="$2"
3264 _chk_alt_domains="$3"
85e1f4ea 3265 _chk_pre_hook="$4"
3266 _chk_local_addr="$5"
30c2d84c 3267 _debug _on_before_issue
38f1b4d2 3268 _debug _chk_main_domain "$_chk_main_domain"
3269 _debug _chk_alt_domains "$_chk_alt_domains"
d0f7c309 3270 #run pre hook
85e1f4ea 3271 if [ "$_chk_pre_hook" ]; then
3272 _info "Run pre hook:'$_chk_pre_hook'"
d0f7c309 3273 if ! (
85e1f4ea 3274 cd "$DOMAIN_PATH" && eval "$_chk_pre_hook"
d0f7c309 3275 ); then
3276 _err "Error when run pre hook."
3277 return 1
3278 fi
3279 fi
3280
af1cc3b3 3281 if _hasfield "$_chk_web_roots" "$NO_VALUE"; then
3794b5cb 3282 if ! _exists "socat"; then
3283 _err "Please install socat tools first."
0463b5d6 3284 return 1
3285 fi
0463b5d6 3286 fi
3287
85e1f4ea 3288 _debug Le_LocalAddress "$_chk_local_addr"
4c2a3841 3289
0463b5d6 3290 _index=1
3291 _currentRoot=""
3292 _addrIndex=1
38f1b4d2 3293 _w_index=1
931d19ee 3294 while true; do
931d19ee 3295 d="$(echo "$_chk_main_domain,$_chk_alt_domains," | cut -d , -f "$_w_index")"
3296 _w_index="$(_math "$_w_index" + 1)"
3297 _debug d "$d"
3298 if [ -z "$d" ]; then
3299 break
3300 fi
d5ec5f80 3301 _debug "Check for domain" "$d"
af1cc3b3 3302 _currentRoot="$(_getfield "$_chk_web_roots" $_index)"
0463b5d6 3303 _debug "_currentRoot" "$_currentRoot"
3304 _index=$(_math $_index + 1)
3305 _checkport=""
4c2a3841 3306 if [ "$_currentRoot" = "$NO_VALUE" ]; then
0463b5d6 3307 _info "Standalone mode."
4c2a3841 3308 if [ -z "$Le_HTTPPort" ]; then
0463b5d6 3309 Le_HTTPPort=80
e7f7e96d 3310 _cleardomainconf "Le_HTTPPort"
0463b5d6 3311 else
4c2a3841 3312 _savedomainconf "Le_HTTPPort" "$Le_HTTPPort"
0463b5d6 3313 fi
3314 _checkport="$Le_HTTPPort"
43ff787b 3315 elif [ "$_currentRoot" = "$W_ALPN" ]; then
3316 _info "Standalone alpn mode."
4c2a3841 3317 if [ -z "$Le_TLSPort" ]; then
0463b5d6 3318 Le_TLSPort=443
3319 else
4c2a3841 3320 _savedomainconf "Le_TLSPort" "$Le_TLSPort"
0463b5d6 3321 fi
3322 _checkport="$Le_TLSPort"
3323 fi
4c2a3841 3324
3325 if [ "$_checkport" ]; then
0463b5d6 3326 _debug _checkport "$_checkport"
85e1f4ea 3327 _checkaddr="$(_getfield "$_chk_local_addr" $_addrIndex)"
0463b5d6 3328 _debug _checkaddr "$_checkaddr"
4c2a3841 3329
0463b5d6 3330 _addrIndex="$(_math $_addrIndex + 1)"
4c2a3841 3331
0463b5d6 3332 _netprc="$(_ss "$_checkport" | grep "$_checkport")"
3333 netprc="$(echo "$_netprc" | grep "$_checkaddr")"
4c2a3841 3334 if [ -z "$netprc" ]; then
0463b5d6 3335 netprc="$(echo "$_netprc" | grep "$LOCAL_ANY_ADDRESS")"
3336 fi
4c2a3841 3337 if [ "$netprc" ]; then
0463b5d6 3338 _err "$netprc"
4c2a3841 3339 _err "tcp port $_checkport is already used by $(echo "$netprc" | cut -d : -f 4)"
0463b5d6 3340 _err "Please stop it first"
3341 return 1
3342 fi
3343 fi
3344 done
3345
af1cc3b3 3346 if _hasfield "$_chk_web_roots" "apache"; then
4c2a3841 3347 if ! _setApache; then
0463b5d6 3348 _err "set up apache error. Report error to me."
3349 return 1
3350 fi
3351 else
3352 usingApache=""
3353 fi
3354
b0070f03 3355}
3356
3357_on_issue_err() {
85e1f4ea 3358 _chk_post_hook="$1"
58e4d337 3359 _chk_vlist="$2"
30c2d84c 3360 _debug _on_issue_err
cd8fc359 3361
4c2a3841 3362 if [ "$LOG_FILE" ]; then
a73c5b33 3363 _err "Please check log file for more details: $LOG_FILE"
3364 else
54ae008d 3365 _err "Please add '--debug' or '--log' to check more details."
a73c5b33 3366 _err "See: $_DEBUG_WIKI"
3367 fi
4c2a3841 3368
b0070f03 3369 #run the post hook
85e1f4ea 3370 if [ "$_chk_post_hook" ]; then
3371 _info "Run post hook:'$_chk_post_hook'"
b0070f03 3372 if ! (
85e1f4ea 3373 cd "$DOMAIN_PATH" && eval "$_chk_post_hook"
4c2a3841 3374 ); then
b0070f03 3375 _err "Error when run post hook."
3376 return 1
3377 fi
3378 fi
58e4d337 3379
3380 #trigger the validation to flush the pending authz
ea722da3 3381 _debug2 "_chk_vlist" "$_chk_vlist"
58e4d337 3382 if [ "$_chk_vlist" ]; then
3383 (
c719a61e 3384 _debug2 "start to deactivate authz"
3385 ventries=$(echo "$_chk_vlist" | tr "$dvsep" ' ')
3386 for ventry in $ventries; do
3387 d=$(echo "$ventry" | cut -d "$sep" -f 1)
3388 keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2)
3389 uri=$(echo "$ventry" | cut -d "$sep" -f 3)
3390 vtype=$(echo "$ventry" | cut -d "$sep" -f 4)
3391 _currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5)
f94433e5 3392 __trigger_validation "$uri" "$keyauthorization"
c719a61e 3393 done
58e4d337 3394 )
3395 fi
3396
bd04638d 3397 if [ "$_ACME_IS_RENEW" = "1" ] && _hasfield "$Le_Webroot" "$W_DNS"; then
309bec47 3398 _err "$_DNS_MANUAL_ERR"
3399 fi
3400
58e4d337 3401 if [ "$DEBUG" ] && [ "$DEBUG" -gt "0" ]; then
3402 _debug "$(_dlg_versions)"
3403 fi
3404
b0070f03 3405}
3406
3407_on_issue_success() {
85e1f4ea 3408 _chk_post_hook="$1"
3409 _chk_renew_hook="$2"
30c2d84c 3410 _debug _on_issue_success
c6b68551 3411
b0070f03 3412 #run the post hook
85e1f4ea 3413 if [ "$_chk_post_hook" ]; then
3414 _info "Run post hook:'$_chk_post_hook'"
b0070f03 3415 if ! (
c7849a43 3416 export CERT_PATH
3417 export CERT_KEY_PATH
3418 export CA_CERT_PATH
3419 export CERT_FULLCHAIN_PATH
3420 export Le_Domain="$_main_domain"
85e1f4ea 3421 cd "$DOMAIN_PATH" && eval "$_chk_post_hook"
4c2a3841 3422 ); then
b0070f03 3423 _err "Error when run post hook."
3424 return 1
3425 fi
3426 fi
4c2a3841 3427
b0070f03 3428 #run renew hook
bd04638d 3429 if [ "$_ACME_IS_RENEW" ] && [ "$_chk_renew_hook" ]; then
85e1f4ea 3430 _info "Run renew hook:'$_chk_renew_hook'"
b0070f03 3431 if ! (
c7849a43 3432 export CERT_PATH
3433 export CERT_KEY_PATH
3434 export CA_CERT_PATH
3435 export CERT_FULLCHAIN_PATH
3436 export Le_Domain="$_main_domain"
85e1f4ea 3437 cd "$DOMAIN_PATH" && eval "$_chk_renew_hook"
4c2a3841 3438 ); then
b0070f03 3439 _err "Error when run renew hook."
3440 return 1
3441 fi
4c2a3841 3442 fi
3443
867ec010 3444 if _hasfield "$Le_Webroot" "$W_DNS" && [ -z "$FORCE_DNS_MANUAL" ]; then
309bec47 3445 _err "$_DNS_MANUAL_WARN"
3446 fi
3447
b0070f03 3448}
3449
f96d91cb 3450#account_key_length eab-kid eab-hmac-key
eb59817e 3451registeraccount() {
f96d91cb 3452 _account_key_length="$1"
3453 _eab_id="$2"
3454 _eab_hmac_key="$3"
eb59817e 3455 _initpath
f96d91cb 3456 _regAccount "$_account_key_length" "$_eab_id" "$_eab_hmac_key"
eb59817e 3457}
d404e92d 3458
8a29fbc8 3459__calcAccountKeyHash() {
ca7202eb 3460 [ -f "$ACCOUNT_KEY_PATH" ] && _digest sha256 <"$ACCOUNT_KEY_PATH"
8a29fbc8 3461}
3462
339a8ad6 3463__calc_account_thumbprint() {
3464 printf "%s" "$jwk" | tr -d ' ' | _digest "sha256" | _url_replace
3465}
3466
389518e1 3467_getAccountEmail() {
3468 if [ "$ACCOUNT_EMAIL" ]; then
3469 echo "$ACCOUNT_EMAIL"
3470 return 0
3471 fi
3472 if [ -z "$CA_EMAIL" ]; then
3473 CA_EMAIL="$(_readcaconf CA_EMAIL)"
3474 fi
3475 if [ "$CA_EMAIL" ]; then
3476 echo "$CA_EMAIL"
3477 return 0
3478 fi
3479 _readaccountconf "ACCOUNT_EMAIL"
3480}
3481
57e58ce7 3482#keylength
d404e92d 3483_regAccount() {
3484 _initpath
57e58ce7 3485 _reg_length="$1"
f96d91cb 3486 _eab_id="$2"
3487 _eab_hmac_key="$3"
f87890cb 3488 _debug3 _regAccount "$_regAccount"
c1151b0d 3489 _initAPI
3490
1bbc33a0 3491 mkdir -p "$CA_DIR"
5c48e139 3492 if [ ! -f "$ACCOUNT_KEY_PATH" ] && [ -f "$_OLD_ACCOUNT_KEY" ]; then
3493 _info "mv $_OLD_ACCOUNT_KEY to $ACCOUNT_KEY_PATH"
3494 mv "$_OLD_ACCOUNT_KEY" "$ACCOUNT_KEY_PATH"
3495 fi
4c2a3841 3496
5c48e139 3497 if [ ! -f "$ACCOUNT_JSON_PATH" ] && [ -f "$_OLD_ACCOUNT_JSON" ]; then
3498 _info "mv $_OLD_ACCOUNT_JSON to $ACCOUNT_JSON_PATH"
3499 mv "$_OLD_ACCOUNT_JSON" "$ACCOUNT_JSON_PATH"
3500 fi
4c2a3841 3501
3502 if [ ! -f "$ACCOUNT_KEY_PATH" ]; then
3503 if ! _create_account_key "$_reg_length"; then
d404e92d 3504 _err "Create account key error."
3505 return 1
3506 fi
3507 fi
4c2a3841 3508
3509 if ! _calcjwk "$ACCOUNT_KEY_PATH"; then
d404e92d 3510 return 1
3511 fi
f96d91cb 3512 if [ "$_eab_id" ] && [ "$_eab_hmac_key" ]; then
3513 _savecaconf CA_EAB_KEY_ID "$_eab_id"
3514 _savecaconf CA_EAB_HMAC_KEY "$_eab_hmac_key"
3515 fi
3516 _eab_id=$(_readcaconf "CA_EAB_KEY_ID")
3517 _eab_hmac_key=$(_readcaconf "CA_EAB_HMAC_KEY")
3518 _secure_debug3 _eab_id "$_eab_id"
3519 _secure_debug3 _eab_hmac_key "$_eab_hmac_key"
389518e1 3520 _email="$(_getAccountEmail)"
3521 if [ "$_email" ]; then
3522 _savecaconf "CA_EMAIL" "$_email"
3523 fi
af3ea2d4 3524
3525 if [ "$ACME_DIRECTORY" = "$CA_ZEROSSL" ]; then
3526 if [ -z "$_eab_id" ] || [ -z "$_eab_hmac_key" ]; then
3527 _info "No EAB credentials found for ZeroSSL, let's get one"
3528 if [ -z "$_email" ]; then
d0b51489 3529 _info "$(__green "$PROJECT_NAME is using ZeroSSL as default CA now.")"
3530 _info "$(__green "Please update your account with an email address first.")"
3531 _info "$(__green "$PROJECT_ENTRY --register-account -m my@example.com")"
3532 _info "See: $(__green "$_ZEROSSL_WIKI")"
af3ea2d4 3533 return 1
3534 fi
3535 _eabresp=$(_post "email=$_email" $_ZERO_EAB_ENDPOINT)
3536 if [ "$?" != "0" ]; then
aa59c46c 3537 _debug2 "$_eabresp"
af3ea2d4 3538 _err "Can not get EAB credentials from ZeroSSL."
3539 return 1
389518e1 3540 fi
af3ea2d4 3541 _debug2 "$_eabresp"
3542 _eab_id="$(echo "$_eabresp" | tr ',}' '\n' | grep '"eab_kid"' | cut -d : -f 2 | tr -d '"')"
d0b51489 3543 _secure_debug2 _eab_id "$_eab_id"
af3ea2d4 3544 if [ -z "$_eab_id" ]; then
3545 _err "Can not resolve _eab_id"
3546 return 1
3547 fi
3548 _eab_hmac_key="$(echo "$_eabresp" | tr ',}' '\n' | grep '"eab_hmac_key"' | cut -d : -f 2 | tr -d '"')"
d0b51489 3549 _secure_debug2 _eab_hmac_key "$_eab_hmac_key"
af3ea2d4 3550 if [ -z "$_eab_hmac_key" ]; then
3551 _err "Can not resolve _eab_hmac_key"
3552 return 1
3553 fi
3554 _savecaconf CA_EAB_KEY_ID "$_eab_id"
3555 _savecaconf CA_EAB_HMAC_KEY "$_eab_hmac_key"
389518e1 3556 fi
af3ea2d4 3557 fi
3558 if [ "$_eab_id" ] && [ "$_eab_hmac_key" ]; then
3559 eab_protected="{\"alg\":\"HS256\",\"kid\":\"$_eab_id\",\"url\":\"${ACME_NEW_ACCOUNT}\"}"
3560 _debug3 eab_protected "$eab_protected"
f96d91cb 3561
af3ea2d4 3562 eab_protected64=$(printf "%s" "$eab_protected" | _base64 | _url_replace)
3563 _debug3 eab_protected64 "$eab_protected64"
f96d91cb 3564
af3ea2d4 3565 eab_payload64=$(printf "%s" "$jwk" | _base64 | _url_replace)
3566 _debug3 eab_payload64 "$eab_payload64"
f96d91cb 3567
af3ea2d4 3568 eab_sign_t="$eab_protected64.$eab_payload64"
3569 _debug3 eab_sign_t "$eab_sign_t"
f96d91cb 3570
d0b51489 3571 key_hex="$(_durl_replace_base64 "$_eab_hmac_key" | _dbase64 multi | _hex_dump | tr -d ' ')"
af3ea2d4 3572 _debug3 key_hex "$key_hex"
f96d91cb 3573
af3ea2d4 3574 eab_signature=$(printf "%s" "$eab_sign_t" | _hmac sha256 $key_hex | _base64 | _url_replace)
3575 _debug3 eab_signature "$eab_signature"
f96d91cb 3576
af3ea2d4 3577 externalBinding=",\"externalAccountBinding\":{\"protected\":\"$eab_protected64\", \"payload\":\"$eab_payload64\", \"signature\":\"$eab_signature\"}"
3578 _debug3 externalBinding "$externalBinding"
f87890cb 3579 fi
af3ea2d4 3580 if [ "$_email" ]; then
3581 email_sg="\"contact\": [\"mailto:$_email\"], "
3582 fi
3583 regjson="{$email_sg\"termsOfServiceAgreed\": true$externalBinding}"
4c2a3841 3584
389518e1 3585 _info "Registering account: $ACME_DIRECTORY"
d404e92d 3586
f87890cb 3587 if ! _send_signed_request "${ACME_NEW_ACCOUNT}" "$regjson"; then
3588 _err "Register account Error: $response"
3589 return 1
3590 fi
d404e92d 3591
389518e1 3592 _eabAlreadyBound=""
f87890cb 3593 if [ "$code" = "" ] || [ "$code" = '201' ]; then
3594 echo "$response" >"$ACCOUNT_JSON_PATH"
3595 _info "Registered"
7df20e50 3596 elif [ "$code" = '409' ] || [ "$code" = '200' ]; then
f87890cb 3597 _info "Already registered"
389518e1 3598 elif [ "$code" = '400' ] && _contains "$response" 'The account is not awaiting external account binding'; then
3599 _info "Already register EAB."
3600 _eabAlreadyBound=1
f87890cb 3601 else
3602 _err "Register account Error: $response"
3603 return 1
3604 fi
d404e92d 3605
389518e1 3606 if [ -z "$_eabAlreadyBound" ]; then
3607 _debug2 responseHeaders "$responseHeaders"
3608 _accUri="$(echo "$responseHeaders" | grep -i "^Location:" | _head_n 1 | cut -d ':' -f 2- | tr -d "\r\n ")"
3609 _debug "_accUri" "$_accUri"
3610 if [ -z "$_accUri" ]; then
3611 _err "Can not find account id url."
3612 _err "$responseHeaders"
3613 return 1
3614 fi
3615 _savecaconf "ACCOUNT_URL" "$_accUri"
3616 else
3617 ACCOUNT_URL="$(_readcaconf ACCOUNT_URL)"
7e0b334b 3618 fi
7e0b334b 3619 export ACCOUNT_URL="$_accUri"
d404e92d 3620
f87890cb 3621 CA_KEY_HASH="$(__calcAccountKeyHash)"
3622 _debug "Calc CA_KEY_HASH" "$CA_KEY_HASH"
3623 _savecaconf CA_KEY_HASH "$CA_KEY_HASH"
d404e92d 3624
f87890cb 3625 if [ "$code" = '403' ]; then
3626 _err "It seems that the account key is already deactivated, please use a new account key."
3627 return 1
3628 fi
4c2a3841 3629
f87890cb 3630 ACCOUNT_THUMBPRINT="$(__calc_account_thumbprint)"
3631 _info "ACCOUNT_THUMBPRINT" "$ACCOUNT_THUMBPRINT"
d404e92d 3632}
3633
79e2f8a2 3634#implement updateaccount
3635updateaccount() {
3636 _initpath
3637
3638 if [ ! -f "$ACCOUNT_KEY_PATH" ] && [ -f "$_OLD_ACCOUNT_KEY" ]; then
3639 _info "mv $_OLD_ACCOUNT_KEY to $ACCOUNT_KEY_PATH"
3640 mv "$_OLD_ACCOUNT_KEY" "$ACCOUNT_KEY_PATH"
3641 fi
3642
3643 if [ ! -f "$ACCOUNT_JSON_PATH" ] && [ -f "$_OLD_ACCOUNT_JSON" ]; then
3644 _info "mv $_OLD_ACCOUNT_JSON to $ACCOUNT_JSON_PATH"
3645 mv "$_OLD_ACCOUNT_JSON" "$ACCOUNT_JSON_PATH"
3646 fi
3647
3648 if [ ! -f "$ACCOUNT_KEY_PATH" ]; then
3649 _err "Account key is not found at: $ACCOUNT_KEY_PATH"
3650 return 1
3651 fi
3652
3653 _accUri=$(_readcaconf "ACCOUNT_URL")
3654 _debug _accUri "$_accUri"
3655
3656 if [ -z "$_accUri" ]; then
3657 _err "The account url is empty, please run '--update-account' first to update the account info first,"
3658 _err "Then try again."
3659 return 1
3660 fi
3661
3662 if ! _calcjwk "$ACCOUNT_KEY_PATH"; then
3663 return 1
3664 fi
3665 _initAPI
3666
389518e1 3667 _email="$(_getAccountEmail)"
af3ea2d4 3668
3669 if [ "$ACCOUNT_EMAIL" ]; then
3670 updjson='{"contact": ["mailto:'$_email'"]}'
79e2f8a2 3671 else
af3ea2d4 3672 updjson='{"contact": []}'
79e2f8a2 3673 fi
3674
79e2f8a2 3675 _send_signed_request "$_accUri" "$updjson"
3676
3677 if [ "$code" = '200' ]; then
72e1a1b2 3678 echo "$response" >"$ACCOUNT_JSON_PATH"
79e2f8a2 3679 _info "account update success for $_accUri."
3680 else
3681 _info "Error. The account was not updated."
3682 return 1
3683 fi
3684}
3685
422dd1fa 3686#Implement deactivate account
3687deactivateaccount() {
3688 _initpath
3689
3690 if [ ! -f "$ACCOUNT_KEY_PATH" ] && [ -f "$_OLD_ACCOUNT_KEY" ]; then
422dd1fa 3691 _info "mv $_OLD_ACCOUNT_KEY to $ACCOUNT_KEY_PATH"
3692 mv "$_OLD_ACCOUNT_KEY" "$ACCOUNT_KEY_PATH"
3693 fi
3694
3695 if [ ! -f "$ACCOUNT_JSON_PATH" ] && [ -f "$_OLD_ACCOUNT_JSON" ]; then
422dd1fa 3696 _info "mv $_OLD_ACCOUNT_JSON to $ACCOUNT_JSON_PATH"
3697 mv "$_OLD_ACCOUNT_JSON" "$ACCOUNT_JSON_PATH"
3698 fi
3699
3700 if [ ! -f "$ACCOUNT_KEY_PATH" ]; then
3701 _err "Account key is not found at: $ACCOUNT_KEY_PATH"
3702 return 1
3703 fi
3704
3705 _accUri=$(_readcaconf "ACCOUNT_URL")
3706 _debug _accUri "$_accUri"
3707
3708 if [ -z "$_accUri" ]; then
3709 _err "The account url is empty, please run '--update-account' first to update the account info first,"
3710 _err "Then try again."
3711 return 1
3712 fi
3713
3714 if ! _calcjwk "$ACCOUNT_KEY_PATH"; then
3715 return 1
3716 fi
3717 _initAPI
3718
af3ea2d4 3719 _djson="{\"status\":\"deactivated\"}"
3720
d2cde379 3721 if _send_signed_request "$_accUri" "$_djson" && _contains "$response" '"deactivated"'; then
422dd1fa 3722 _info "Deactivate account success for $_accUri."
3723 _accid=$(echo "$response" | _egrep_o "\"id\" *: *[^,]*," | cut -d : -f 2 | tr -d ' ,')
3724 elif [ "$code" = "403" ]; then
3725 _info "The account is already deactivated."
3726 _accid=$(_getfield "$_accUri" "999" "/")
3727 else
3728 _err "Deactivate: account failed for $_accUri."
3729 return 1
3730 fi
3731
3732 _debug "Account id: $_accid"
3733 if [ "$_accid" ]; then
3734 _deactivated_account_path="$CA_DIR/deactivated/$_accid"
3735 _debug _deactivated_account_path "$_deactivated_account_path"
3736 if mkdir -p "$_deactivated_account_path"; then
3737 _info "Moving deactivated account info to $_deactivated_account_path/"
3738 mv "$CA_CONF" "$_deactivated_account_path/"
3739 mv "$ACCOUNT_JSON_PATH" "$_deactivated_account_path/"
3740 mv "$ACCOUNT_KEY_PATH" "$_deactivated_account_path/"
3741 else
3742 _err "Can not create dir: $_deactivated_account_path, try to remove the deactivated account key."
3743 rm -f "$CA_CONF"
3744 rm -f "$ACCOUNT_JSON_PATH"
3745 rm -f "$ACCOUNT_KEY_PATH"
3746 fi
3747 fi
3748}
3749
a61fe418 3750# domain folder file
3751_findHook() {
3752 _hookdomain="$1"
3753 _hookcat="$2"
3754 _hookname="$3"
3755
c7b16249 3756 if [ -f "$_SCRIPT_HOME/$_hookcat/$_hookname" ]; then
3757 d_api="$_SCRIPT_HOME/$_hookcat/$_hookname"
3758 elif [ -f "$_SCRIPT_HOME/$_hookcat/$_hookname.sh" ]; then
3759 d_api="$_SCRIPT_HOME/$_hookcat/$_hookname.sh"
b50e701c 3760 elif [ "$_hookdomain" ] && [ -f "$LE_WORKING_DIR/$_hookdomain/$_hookname" ]; then
a61fe418 3761 d_api="$LE_WORKING_DIR/$_hookdomain/$_hookname"
b50e701c 3762 elif [ "$_hookdomain" ] && [ -f "$LE_WORKING_DIR/$_hookdomain/$_hookname.sh" ]; then
a61fe418 3763 d_api="$LE_WORKING_DIR/$_hookdomain/$_hookname.sh"
4c2a3841 3764 elif [ -f "$LE_WORKING_DIR/$_hookname" ]; then
a61fe418 3765 d_api="$LE_WORKING_DIR/$_hookname"
4c2a3841 3766 elif [ -f "$LE_WORKING_DIR/$_hookname.sh" ]; then
a61fe418 3767 d_api="$LE_WORKING_DIR/$_hookname.sh"
4c2a3841 3768 elif [ -f "$LE_WORKING_DIR/$_hookcat/$_hookname" ]; then
a61fe418 3769 d_api="$LE_WORKING_DIR/$_hookcat/$_hookname"
4c2a3841 3770 elif [ -f "$LE_WORKING_DIR/$_hookcat/$_hookname.sh" ]; then
a61fe418 3771 d_api="$LE_WORKING_DIR/$_hookcat/$_hookname.sh"
3772 fi
3773
3774 printf "%s" "$d_api"
3775}
3776
f940b2a5 3777#domain
3778__get_domain_new_authz() {
3779 _gdnd="$1"
3780 _info "Getting new-authz for domain" "$_gdnd"
40ef86f4 3781 _initAPI
f940b2a5 3782 _Max_new_authz_retry_times=5
3783 _authz_i=0
4c2a3841 3784 while [ "$_authz_i" -lt "$_Max_new_authz_retry_times" ]; do
efd96153 3785 _debug "Try new-authz for the $_authz_i time."
48d9a8c1 3786 if ! _send_signed_request "${ACME_NEW_AUTHZ}" "{\"resource\": \"new-authz\", \"identifier\": {\"type\": \"dns\", \"value\": \"$(_idn "$_gdnd")\"}}"; then
f940b2a5 3787 _err "Can not get domain new authz."
3788 return 1
3789 fi
5413bf87 3790 if _contains "$response" "No registration exists matching provided key"; then
3791 _err "It seems there is an error, but it's recovered now, please try again."
3792 _err "If you see this message for a second time, please report bug: $(__green "$PROJECT")"
3793 _clearcaconf "CA_KEY_HASH"
3794 break
3795 fi
4c2a3841 3796 if ! _contains "$response" "An error occurred while processing your request"; then
f940b2a5 3797 _info "The new-authz request is ok."
3798 break
3799 fi
3800 _authz_i="$(_math "$_authz_i" + 1)"
9e45ac93 3801 _info "The server is busy, Sleep $_authz_i to retry."
f940b2a5 3802 _sleep "$_authz_i"
4c2a3841 3803 done
f940b2a5 3804
4c2a3841 3805 if [ "$_authz_i" = "$_Max_new_authz_retry_times" ]; then
efd96153 3806 _err "new-authz retry reach the max $_Max_new_authz_retry_times times."
f940b2a5 3807 fi
4c2a3841 3808
78915896 3809 if [ "$code" ] && [ "$code" != '201' ]; then
f940b2a5 3810 _err "new-authz error: $response"
3811 return 1
3812 fi
3813
3814}
3815
58e4d337 3816#uri keyAuthorization
f94433e5 3817__trigger_validation() {
8bd12ed0 3818 _debug2 "Trigger domain validation."
58e4d337 3819 _t_url="$1"
3820 _debug2 _t_url "$_t_url"
3821 _t_key_authz="$2"
3822 _debug2 _t_key_authz "$_t_key_authz"
920cab6f
K
3823 _t_vtype="$3"
3824 _debug2 _t_vtype "$_t_vtype"
af3ea2d4 3825
3826 _send_signed_request "$_t_url" "{}"
3827
58e4d337 3828}
3829
b5ca9bba 3830#endpoint domain type
10eec7d4 3831_ns_lookup_impl() {
b5ca9bba 3832 _ns_ep="$1"
3833 _ns_domain="$2"
3834 _ns_type="$3"
3835 _debug2 "_ns_ep" "$_ns_ep"
3836 _debug2 "_ns_domain" "$_ns_domain"
3837 _debug2 "_ns_type" "$_ns_type"
3838
3839 response="$(_H1="accept: application/dns-json" _get "$_ns_ep?name=$_ns_domain&type=$_ns_type")"
3840 _ret=$?
3841 _debug2 "response" "$response"
3842 if [ "$_ret" != "0" ]; then
3843 return $_ret
3844 fi
3845 _answers="$(echo "$response" | tr '{}' '<>' | _egrep_o '"Answer":\[[^]]*]' | tr '<>' '\n\n')"
3846 _debug2 "_answers" "$_answers"
3847 echo "$_answers"
3848}
3849
3850#domain, type
3851_ns_lookup_cf() {
3852 _cf_ld="$1"
3853 _cf_ld_type="$2"
3854 _cf_ep="https://cloudflare-dns.com/dns-query"
10eec7d4 3855 _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type"
b5ca9bba 3856}
3857
3858#domain, type
3859_ns_purge_cf() {
3860 _cf_d="$1"
3861 _cf_d_type="$2"
3862 _debug "Cloudflare purge $_cf_d_type record for domain $_cf_d"
b9b2cd27 3863 _cf_purl="https://cloudflare-dns.com/api/v1/purge?domain=$_cf_d&type=$_cf_d_type"
b5ca9bba 3864 response="$(_post "" "$_cf_purl")"
3865 _debug2 response "$response"
3866}
3867
10eec7d4 3868#checks if cf server is available
3869_ns_is_available_cf() {
e65144a1 3870 if _get "https://cloudflare-dns.com" "" 1 >/dev/null 2>&1; then
3871 return 0
3872 else
3873 return 1
3874 fi
3875}
3876
3877_ns_is_available_google() {
3878 if _get "https://dns.google" "" 1 >/dev/null 2>&1; then
10eec7d4 3879 return 0
3880 else
3881 return 1
3882 fi
3883}
3884
3885#domain, type
3886_ns_lookup_google() {
3887 _cf_ld="$1"
3888 _cf_ld_type="$2"
3889 _cf_ep="https://dns.google/resolve"
3890 _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type"
3891}
3892
e65144a1 3893_ns_is_available_ali() {
3894 if _get "https://dns.alidns.com" "" 1 >/dev/null 2>&1; then
3895 return 0
3896 else
3897 return 1
3898 fi
3899}
3900
3901#domain, type
3902_ns_lookup_ali() {
3903 _cf_ld="$1"
3904 _cf_ld_type="$2"
3905 _cf_ep="https://dns.alidns.com/resolve"
3906 _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type"
3907}
3908
3909_ns_is_available_dp() {
3910 if _get "https://dns.alidns.com" "" 1 >/dev/null 2>&1; then
3911 return 0
3912 else
3913 return 1
3914 fi
3915}
3916
3917#dnspod
3918_ns_lookup_dp() {
3919 _cf_ld="$1"
3920 _cf_ld_type="$2"
3921 _cf_ep="https://doh.pub/dns-query"
3922 _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type"
3923}
3924
10eec7d4 3925#domain, type
3926_ns_lookup() {
3927 if [ -z "$DOH_USE" ]; then
3928 _debug "Detect dns server first."
3929 if _ns_is_available_cf; then
3930 _debug "Use cloudflare doh server"
3931 export DOH_USE=$DOH_CLOUDFLARE
e65144a1 3932 elif _ns_is_available_google; then
10eec7d4 3933 _debug "Use google doh server"
3934 export DOH_USE=$DOH_GOOGLE
e65144a1 3935 elif _ns_is_available_ali; then
3936 _debug "Use aliyun doh server"
3937 export DOH_USE=$DOH_ALI
290beb90 3938 elif _ns_is_available_dp; then
e65144a1 3939 _debug "Use dns pod doh server"
3940 export DOH_USE=$DOH_DP
e0c32ce7 3941 else
3942 _err "No doh"
10eec7d4 3943 fi
3944 fi
3945
3946 if [ "$DOH_USE" = "$DOH_CLOUDFLARE" ] || [ -z "$DOH_USE" ]; then
3947 _ns_lookup_cf "$@"
e65144a1 3948 elif [ "$DOH_USE" = "$DOH_GOOGLE" ]; then
10eec7d4 3949 _ns_lookup_google "$@"
e65144a1 3950 elif [ "$DOH_USE" = "$DOH_ALI" ]; then
3951 _ns_lookup_ali "$@"
3952 elif [ "$DOH_USE" = "$DOH_DP" ]; then
3953 _ns_lookup_dp "$@"
3954 else
3955 _err "Unknown doh provider: DOH_USE=$DOH_USE"
10eec7d4 3956 fi
3957
3958}
3959
b5ca9bba 3960#txtdomain, alias, txt
3961__check_txt() {
3962 _c_txtdomain="$1"
3963 _c_aliasdomain="$2"
3964 _c_txt="$3"
3965 _debug "_c_txtdomain" "$_c_txtdomain"
3966 _debug "_c_aliasdomain" "$_c_aliasdomain"
3967 _debug "_c_txt" "$_c_txt"
10eec7d4 3968 _answers="$(_ns_lookup "$_c_aliasdomain" TXT)"
b5ca9bba 3969 _contains "$_answers" "$_c_txt"
3970
3971}
3972
3973#txtdomain
3974__purge_txt() {
3975 _p_txtdomain="$1"
3976 _debug _p_txtdomain "$_p_txtdomain"
10eec7d4 3977 if [ "$DOH_USE" = "$DOH_CLOUDFLARE" ] || [ -z "$DOH_USE" ]; then
3978 _ns_purge_cf "$_p_txtdomain" "TXT"
3979 else
e65144a1 3980 _debug "no purge api for this doh api, just sleep 5 secs"
10eec7d4 3981 _sleep 5
3982 fi
3983
b5ca9bba 3984}
3985
3986#wait and check each dns entries
3987_check_dns_entries() {
3988 _success_txt=","
3989 _end_time="$(_time)"
3990 _end_time="$(_math "$_end_time" + 1200)" #let's check no more than 20 minutes.
3991
3992 while [ "$(_time)" -le "$_end_time" ]; do
8a24275b 3993 _info "You can use '--dnssleep' to disable public dns checks."
3994 _info "See: $_DNSCHECK_WIKI"
b5ca9bba 3995 _left=""
3996 for entry in $dns_entries; do
3997 d=$(_getfield "$entry" 1)
3998 txtdomain=$(_getfield "$entry" 2)
0093dc3d 3999 txtdomain=$(_idn "$txtdomain")
b5ca9bba 4000 aliasDomain=$(_getfield "$entry" 3)
0093dc3d 4001 aliasDomain=$(_idn "$aliasDomain")
b5ca9bba 4002 txt=$(_getfield "$entry" 5)
4003 d_api=$(_getfield "$entry" 6)
4004 _debug "d" "$d"
4005 _debug "txtdomain" "$txtdomain"
4006 _debug "aliasDomain" "$aliasDomain"
4007 _debug "txt" "$txt"
4008 _debug "d_api" "$d_api"
4009 _info "Checking $d for $aliasDomain"
4010 if _contains "$_success_txt" ",$txt,"; then
4011 _info "Already success, continue next one."
4012 continue
4013 fi
4014
4015 if __check_txt "$txtdomain" "$aliasDomain" "$txt"; then
4016 _info "Domain $d '$aliasDomain' success."
4017 _success_txt="$_success_txt,$txt,"
4018 continue
4019 fi
4020 _left=1
4021 _info "Not valid yet, let's wait 10 seconds and check next one."
b5ca9bba 4022 __purge_txt "$txtdomain"
4023 if [ "$txtdomain" != "$aliasDomain" ]; then
4024 __purge_txt "$aliasDomain"
4025 fi
b9b2cd27 4026 _sleep 10
b5ca9bba 4027 done
4028 if [ "$_left" ]; then
4029 _info "Let's wait 10 seconds and check again".
4030 _sleep 10
4031 else
4032 _info "All success, let's return"
a44ea0dd 4033 return 0
b5ca9bba 4034 fi
4035 done
a44ea0dd 4036 _info "Timed out waiting for DNS."
4037 return 1
b5ca9bba 4038
4039}
4040
e3ebd582 4041#file
12b19165 4042_get_chain_issuers() {
e3ebd582 4043 _cfile="$1"
987571ce 4044 if _contains "$(${ACME_OPENSSL_BIN:-openssl} help crl2pkcs7 2>&1)" "Usage: crl2pkcs7" || _contains "$(${ACME_OPENSSL_BIN:-openssl} crl2pkcs7 -help 2>&1)" "Usage: crl2pkcs7" || _contains "$(${ACME_OPENSSL_BIN:-openssl} crl2pkcs7 help 2>&1)" "unknown option help"; then
12b19165 4045 ${ACME_OPENSSL_BIN:-openssl} crl2pkcs7 -nocrl -certfile $_cfile | ${ACME_OPENSSL_BIN:-openssl} pkcs7 -print_certs -text -noout | grep -i 'Issuer:' | _egrep_o "CN *=[^,]*" | cut -d = -f 2
d5d38b33 4046 else
12b19165 4047 _cindex=1
4048 for _startn in $(grep -n -- "$BEGIN_CERT" "$_cfile" | cut -d : -f 1); do
4049 _endn="$(grep -n -- "$END_CERT" "$_cfile" | cut -d : -f 1 | _head_n $_cindex | _tail_n 1)"
4050 _debug2 "_startn" "$_startn"
4051 _debug2 "_endn" "$_endn"
4052 if [ "$DEBUG" ]; then
4053 _debug2 "cert$_cindex" "$(sed -n "$_startn,${_endn}p" "$_cfile")"
4054 fi
4055 sed -n "$_startn,${_endn}p" "$_cfile" | ${ACME_OPENSSL_BIN:-openssl} x509 -text -noout | grep 'Issuer:' | _egrep_o "CN *=[^,]*" | cut -d = -f 2 | sed "s/ *\(.*\)/\1/"
4056 _cindex=$(_math $_cindex + 1)
4057 done
4058 fi
4059}
4060
4061#
4062_get_chain_subjects() {
4063 _cfile="$1"
4064 if _contains "$(${ACME_OPENSSL_BIN:-openssl} help crl2pkcs7 2>&1)" "Usage: crl2pkcs7" || _contains "$(${ACME_OPENSSL_BIN:-openssl} crl2pkcs7 -help 2>&1)" "Usage: crl2pkcs7" || _contains "$(${ACME_OPENSSL_BIN:-openssl} crl2pkcs7 help 2>&1)" "unknown option help"; then
4065 ${ACME_OPENSSL_BIN:-openssl} crl2pkcs7 -nocrl -certfile $_cfile | ${ACME_OPENSSL_BIN:-openssl} pkcs7 -print_certs -text -noout | grep -i 'Subject:' | _egrep_o "CN *=[^,]*" | cut -d = -f 2
4066 else
4067 _cindex=1
4068 for _startn in $(grep -n -- "$BEGIN_CERT" "$_cfile" | cut -d : -f 1); do
4069 _endn="$(grep -n -- "$END_CERT" "$_cfile" | cut -d : -f 1 | _head_n $_cindex | _tail_n 1)"
4070 _debug2 "_startn" "$_startn"
4071 _debug2 "_endn" "$_endn"
4072 if [ "$DEBUG" ]; then
4073 _debug2 "cert$_cindex" "$(sed -n "$_startn,${_endn}p" "$_cfile")"
4074 fi
4075 sed -n "$_startn,${_endn}p" "$_cfile" | ${ACME_OPENSSL_BIN:-openssl} x509 -text -noout | grep -i 'Subject:' | _egrep_o "CN *=[^,]*" | cut -d = -f 2 | sed "s/ *\(.*\)/\1/"
4076 _cindex=$(_math $_cindex + 1)
4077 done
d5d38b33 4078 fi
e3ebd582 4079}
4080
4081#cert issuer
4082_match_issuer() {
4083 _cfile="$1"
4084 _missuer="$2"
12b19165 4085 _fissuers="$(_get_chain_issuers $_cfile)"
d5d38b33 4086 _debug2 _fissuers "$_fissuers"
12b19165 4087 _rootissuer="$(echo "$_fissuers" | _lower_case | _tail_n 1)"
4088 _debug2 _rootissuer "$_rootissuer"
fdb96e91 4089 _missuer="$(echo "$_missuer" | _lower_case)"
12b19165 4090 _contains "$_rootissuer" "$_missuer"
e3ebd582 4091}
4092
3c07f57a 4093#webroot, domain domainlist keylength
4c3b3608 4094issue() {
4c2a3841 4095 if [ -z "$2" ]; then
2e87e64b 4096 _usage "Usage: $PROJECT_ENTRY --issue --domain <domain.tld> --webroot <directory>"
4c3b3608 4097 return 1
4098 fi
49d75a0c 4099 if [ -z "$1" ]; then
4100 _usage "Please specify at least one validation method: '--webroot', '--standalone', '--apache', '--nginx' or '--dns' etc."
4101 return 1
4102 fi
af1cc3b3 4103 _web_roots="$1"
4104 _main_domain="$2"
02140ce7 4105 _alt_domains="$3"
d2cde379 4106
af1cc3b3 4107 if _contains "$_main_domain" ","; then
4108 _main_domain=$(echo "$2,$3" | cut -d , -f 1)
02140ce7 4109 _alt_domains=$(echo "$2,$3" | cut -d , -f 2- | sed "s/,${NO_VALUE}$//")
2aff36e7 4110 fi
674b5088 4111 _debug _main_domain "$_main_domain"
4112 _debug _alt_domains "$_alt_domains"
4113
d9c9114b 4114 _key_length="$4"
85e1f4ea 4115 _real_cert="$5"
4116 _real_key="$6"
4117 _real_ca="$7"
4118 _reload_cmd="$8"
4119 _real_fullchain="$9"
4120 _pre_hook="${10}"
4121 _post_hook="${11}"
4122 _renew_hook="${12}"
4123 _local_addr="${13}"
875625b1 4124 _challenge_alias="${14}"
e3ebd582 4125 _preferred_chain="${15}"
4c2a3841 4126
bd04638d 4127 if [ -z "$_ACME_IS_RENEW" ]; then
d9c9114b 4128 _initpath "$_main_domain" "$_key_length"
43822d37 4129 mkdir -p "$DOMAIN_PATH"
4130 fi
eccec5f6 4131
a0923622 4132 if _hasfield "$_web_roots" "$W_DNS" && [ -z "$FORCE_DNS_MANUAL" ]; then
4133 _err "$_DNS_MANUAL_ERROR"
4134 return 1
4135 fi
4136
48d9a8c1 4137 _debug "Using ACME_DIRECTORY: $ACME_DIRECTORY"
4138
5f9daa66 4139 if ! _initAPI; then
4140 return 1
4141 fi
48d9a8c1 4142
4c2a3841 4143 if [ -f "$DOMAIN_CONF" ]; then
61623d22 4144 Le_NextRenewTime=$(_readdomainconf Le_NextRenewTime)
a4270efa 4145 _debug Le_NextRenewTime "$Le_NextRenewTime"
95e06de5 4146 if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(_time)" -lt "$Le_NextRenewTime" ]; then
bb25febd 4147 _saved_domain=$(_readdomainconf Le_Domain)
4148 _debug _saved_domain "$_saved_domain"
4149 _saved_alt=$(_readdomainconf Le_Alt)
4150 _debug _saved_alt "$_saved_alt"
02140ce7 4151 if [ "$_saved_domain,$_saved_alt" = "$_main_domain,$_alt_domains" ]; then
bb25febd 4152 _info "Domains not changed."
4153 _info "Skip, Next renewal time is: $(__green "$(_readdomainconf Le_NextRenewTimeStr)")"
4c2a3841 4154 _info "Add '$(__red '--force')' to force to renew."
bb25febd 4155 return $RENEW_SKIP
4156 else
4157 _info "Domains have changed."
4158 fi
4c3b3608 4159 fi
4160 fi
96a46cfc 4161
af1cc3b3 4162 _savedomainconf "Le_Domain" "$_main_domain"
02140ce7 4163 _savedomainconf "Le_Alt" "$_alt_domains"
af1cc3b3 4164 _savedomainconf "Le_Webroot" "$_web_roots"
4c2a3841 4165
c7257bcf 4166 _savedomainconf "Le_PreHook" "$_pre_hook" "base64"
4167 _savedomainconf "Le_PostHook" "$_post_hook" "base64"
4168 _savedomainconf "Le_RenewHook" "$_renew_hook" "base64"
4c2a3841 4169
85e1f4ea 4170 if [ "$_local_addr" ]; then
4171 _savedomainconf "Le_LocalAddress" "$_local_addr"
72518d48 4172 else
4173 _cleardomainconf "Le_LocalAddress"
4174 fi
875625b1 4175 if [ "$_challenge_alias" ]; then
4176 _savedomainconf "Le_ChallengeAlias" "$_challenge_alias"
4177 else
4178 _cleardomainconf "Le_ChallengeAlias"
4179 fi
e3ebd582 4180 if [ "$_preferred_chain" ]; then
4181 _savedomainconf "Le_Preferred_Chain" "$_preferred_chain" "base64"
4182 else
4183 _cleardomainconf "Le_Preferred_Chain"
4184 fi
6ae0f7f5 4185
a6d22e3b 4186 Le_API="$ACME_DIRECTORY"
4187 _savedomainconf "Le_API" "$Le_API"
4188
389518e1 4189 _info "Using CA: $ACME_DIRECTORY"
02140ce7 4190 if [ "$_alt_domains" = "$NO_VALUE" ]; then
4191 _alt_domains=""
4c3b3608 4192 fi
4c2a3841 4193
d9c9114b 4194 if [ "$_key_length" = "$NO_VALUE" ]; then
4195 _key_length=""
d404e92d 4196 fi
4c2a3841 4197
85e1f4ea 4198 if ! _on_before_issue "$_web_roots" "$_main_domain" "$_alt_domains" "$_pre_hook" "$_local_addr"; then
0463b5d6 4199 _err "_on_before_issue."
4200 return 1
4c3b3608 4201 fi
0463b5d6 4202
8a29fbc8 4203 _saved_account_key_hash="$(_readcaconf "CA_KEY_HASH")"
4204 _debug2 _saved_account_key_hash "$_saved_account_key_hash"
4c2a3841 4205
e8b54a50 4206 if [ -z "$ACCOUNT_URL" ] || [ -z "$_saved_account_key_hash" ] || [ "$_saved_account_key_hash" != "$(__calcAccountKeyHash)" ]; then
57e58ce7 4207 if ! _regAccount "$_accountkeylength"; then
85e1f4ea 4208 _on_issue_err "$_post_hook"
8a29fbc8 4209 return 1
4210 fi
57e58ce7 4211 else
4212 _debug "_saved_account_key_hash is not changed, skip register account."
166096dc 4213 fi
166096dc 4214
4c2a3841 4215 if [ -f "$CSR_PATH" ] && [ ! -f "$CERT_KEY_PATH" ]; then
10afcaca 4216 _info "Signing from existing CSR."
4217 else
4218 _key=$(_readdomainconf Le_Keylength)
4219 _debug "Read key length:$_key"
c4b2e582 4220 if [ ! -f "$CERT_KEY_PATH" ] || [ "$_key_length" != "$_key" ] || [ "$Le_ForceNewDomainKey" = "1" ]; then
d9c9114b 4221 if ! createDomainKey "$_main_domain" "$_key_length"; then
10afcaca 4222 _err "Create domain key error."
4223 _clearup
85e1f4ea 4224 _on_issue_err "$_post_hook"
10afcaca 4225 return 1
4226 fi
4227 fi
4228
02140ce7 4229 if ! _createcsr "$_main_domain" "$_alt_domains" "$CERT_KEY_PATH" "$CSR_PATH" "$DOMAIN_SSL_CONF"; then
10afcaca 4230 _err "Create CSR error."
5ef501c5 4231 _clearup
85e1f4ea 4232 _on_issue_err "$_post_hook"
41e3eafa 4233 return 1
4234 fi
4c3b3608 4235 fi
10afcaca 4236
d9c9114b 4237 _savedomainconf "Le_Keylength" "$_key_length"
4c2a3841 4238
4c3b3608 4239 vlist="$Le_Vlist"
882ac74a 4240 _cleardomainconf "Le_Vlist"
cae203be 4241 _info "Getting domain auth token for each domain"
4c3b3608 4242 sep='#'
9d725af6 4243 dvsep=','
4c2a3841 4244 if [ -z "$vlist" ]; then
af3ea2d4 4245 #make new order request
4246 _identifiers="{\"type\":\"dns\",\"value\":\"$(_idn "$_main_domain")\"}"
4247 _w_index=1
4248 while true; do
4249 d="$(echo "$_alt_domains," | cut -d , -f "$_w_index")"
4250 _w_index="$(_math "$_w_index" + 1)"
4251 _debug d "$d"
4252 if [ -z "$d" ]; then
4253 break
c1151b0d 4254 fi
af3ea2d4 4255 _identifiers="$_identifiers,{\"type\":\"dns\",\"value\":\"$(_idn "$d")\"}"
4256 done
4257 _debug2 _identifiers "$_identifiers"
4258 if ! _send_signed_request "$ACME_NEW_ORDER" "{\"identifiers\": [$_identifiers]}"; then
4259 _err "Create new order error."
4260 _clearup
4261 _on_issue_err "$_post_hook"
4262 return 1
4263 fi
4264 Le_LinkOrder="$(echo "$responseHeaders" | grep -i '^Location.*$' | _tail_n 1 | tr -d "\r\n " | cut -d ":" -f 2-)"
4265 _debug Le_LinkOrder "$Le_LinkOrder"
4266 Le_OrderFinalize="$(echo "$response" | _egrep_o '"finalize" *: *"[^"]*"' | cut -d '"' -f 4)"
4267 _debug Le_OrderFinalize "$Le_OrderFinalize"
4268 if [ -z "$Le_OrderFinalize" ]; then
4269 _err "Create new order error. Le_OrderFinalize not found. $response"
4270 _clearup
4271 _on_issue_err "$_post_hook"
4272 return 1
4273 fi
c1151b0d 4274
af3ea2d4 4275 #for dns manual mode
4276 _savedomainconf "Le_OrderFinalize" "$Le_OrderFinalize"
c1151b0d 4277
af3ea2d4 4278 _authorizations_seg="$(echo "$response" | _json_decode | _egrep_o '"authorizations" *: *\[[^\[]*\]' | cut -d '[' -f 2 | tr -d ']' | tr -d '"')"
4279 _debug2 _authorizations_seg "$_authorizations_seg"
4280 if [ -z "$_authorizations_seg" ]; then
4281 _err "_authorizations_seg not found."
4282 _clearup
4283 _on_issue_err "$_post_hook"
4284 return 1
4285 fi
4286
4287 #domain and authz map
4288 _authorizations_map=""
4289 for _authz_url in $(echo "$_authorizations_seg" | tr ',' ' '); do
4290 _debug2 "_authz_url" "$_authz_url"
4291 if ! _send_signed_request "$_authz_url"; then
4292 _err "get to authz error."
4293 _err "_authorizations_seg" "$_authorizations_seg"
4294 _err "_authz_url" "$_authz_url"
c1151b0d 4295 _clearup
4296 _on_issue_err "$_post_hook"
4297 return 1
4298 fi
4299
af3ea2d4 4300 response="$(echo "$response" | _normalizeJson)"
4301 _debug2 response "$response"
4302 _d="$(echo "$response" | _egrep_o '"value" *: *"[^"]*"' | cut -d : -f 2 | tr -d ' "')"
4303 if _contains "$response" "\"wildcard\" *: *true"; then
4304 _d="*.$_d"
4305 fi
4306 _debug2 _d "$_d"
4307 _authorizations_map="$_d,$response
c1151b0d 4308$_authorizations_map"
af3ea2d4 4309 done
4310 _debug2 _authorizations_map "$_authorizations_map"
c1151b0d 4311
c1151b0d 4312 _index=0
a63b05a9 4313 _currentRoot=""
38f1b4d2 4314 _w_index=1
88bbe55b 4315 while true; do
88bbe55b 4316 d="$(echo "$_main_domain,$_alt_domains," | cut -d , -f "$_w_index")"
4317 _w_index="$(_math "$_w_index" + 1)"
4318 _debug d "$d"
4319 if [ -z "$d" ]; then
4320 break
4321 fi
ca7202eb 4322 _info "Getting webroot for domain" "$d"
c1151b0d 4323 _index=$(_math $_index + 1)
af1cc3b3 4324 _w="$(echo $_web_roots | cut -d , -f $_index)"
9d725af6 4325 _debug _w "$_w"
4c2a3841 4326 if [ "$_w" ]; then
a63b05a9 4327 _currentRoot="$_w"
4328 fi
4329 _debug "_currentRoot" "$_currentRoot"
4c2a3841 4330
a63b05a9 4331 vtype="$VTYPE_HTTP"
c1151b0d 4332 #todo, v2 wildcard force to use dns
3881f221 4333 if _startswith "$_currentRoot" "$W_DNS"; then
a63b05a9 4334 vtype="$VTYPE_DNS"
4335 fi
4c2a3841 4336
08681f4a 4337 if [ "$_currentRoot" = "$W_ALPN" ]; then
4338 vtype="$VTYPE_ALPN"
4339 fi
4340
af3ea2d4 4341 _idn_d="$(_idn "$d")"
4342 _candidates="$(echo "$_authorizations_map" | grep -i "^$_idn_d,")"
4343 _debug2 _candidates "$_candidates"
4344 if [ "$(echo "$_candidates" | wc -l)" -gt 1 ]; then
4345 for _can in $_candidates; do
4346 if _startswith "$(echo "$_can" | tr '.' '|')" "$(echo "$_idn_d" | tr '.' '|'),"; then
4347 _candidates="$_can"
4348 break
4349 fi
4350 done
4351 fi
4352 response="$(echo "$_candidates" | sed "s/$_idn_d,//")"
4353 _debug2 "response" "$response"
4354 if [ -z "$response" ]; then
4355 _err "get to authz error."
4356 _err "_authorizations_map" "$_authorizations_map"
4357 _clearup
4358 _on_issue_err "$_post_hook"
4359 return 1
c4d8fd83 4360 fi
4361
4c2a3841 4362 if [ -z "$thumbprint" ]; then
339a8ad6 4363 thumbprint="$(__calc_account_thumbprint)"
4c3b3608 4364 fi
4365
dbc44c08 4366 entry="$(echo "$response" | _egrep_o '[^\{]*"type":"'$vtype'"[^\}]*')"
4c3b3608 4367 _debug entry "$entry"
9541ea6a 4368 keyauthorization=""
4c2a3841 4369 if [ -z "$entry" ]; then
9541ea6a 4370 if ! _startswith "$d" '*.'; then
4371 _debug "Not a wildcard domain, lets check whether the validation is already valid."
4372 if echo "$response" | grep '"status":"valid"' >/dev/null 2>&1; then
4373 _debug "$d is already valid."
4374 keyauthorization="$STATE_VERIFIED"
4375 _debug keyauthorization "$keyauthorization"
4376 fi
4377 fi
4378 if [ -z "$keyauthorization" ]; then
fc3a1817 4379 _err "Error, can not get domain token entry $d for $vtype"
9541ea6a 4380 _supported_vtypes="$(echo "$response" | _egrep_o "\"challenges\":\[[^]]*]" | tr '{' "\n" | grep type | cut -d '"' -f 4 | tr "\n" ' ')"
4381 if [ "$_supported_vtypes" ]; then
4382 _err "The supported validation types are: $_supported_vtypes, but you specified: $vtype"
4383 fi
4384 _clearup
4385 _on_issue_err "$_post_hook"
4386 return 1
b51ed9bb 4387 fi
c1151b0d 4388 fi
f8b225e7 4389
9541ea6a 4390 if [ -z "$keyauthorization" ]; then
4391 token="$(echo "$entry" | _egrep_o '"token":"[^"]*' | cut -d : -f 2 | tr -d '"')"
4392 _debug token "$token"
cae203be 4393
9541ea6a 4394 if [ -z "$token" ]; then
4395 _err "Error, can not get domain token $entry"
4396 _clearup
4397 _on_issue_err "$_post_hook"
4398 return 1
4399 fi
af3ea2d4 4400
4401 uri="$(echo "$entry" | _egrep_o '"url":"[^"]*' | cut -d '"' -f 4 | _head_n 1)"
4402
9541ea6a 4403 _debug uri "$uri"
4c3b3608 4404
9541ea6a 4405 if [ -z "$uri" ]; then
4406 _err "Error, can not get domain uri. $entry"
4407 _clearup
4408 _on_issue_err "$_post_hook"
4409 return 1
4410 fi
4411 keyauthorization="$token.$thumbprint"
d35bf517 4412 _debug keyauthorization "$keyauthorization"
9541ea6a 4413
4414 if printf "%s" "$response" | grep '"status":"valid"' >/dev/null 2>&1; then
4415 _debug "$d is already verified."
4416 keyauthorization="$STATE_VERIFIED"
4417 _debug keyauthorization "$keyauthorization"
4418 fi
ec603bee 4419 fi
4420
a63b05a9 4421 dvlist="$d$sep$keyauthorization$sep$uri$sep$vtype$sep$_currentRoot"
4c3b3608 4422 _debug dvlist "$dvlist"
4c2a3841 4423
9d725af6 4424 vlist="$vlist$dvlist$dvsep"
4c3b3608 4425
4426 done
9d725af6 4427 _debug vlist "$vlist"
4c3b3608 4428 #add entry
b5ca9bba 4429 dns_entries=""
4c3b3608 4430 dnsadded=""
9d725af6 4431 ventries=$(echo "$vlist" | tr "$dvsep" ' ')
1f7df33e 4432 _alias_index=1
4c2a3841 4433 for ventry in $ventries; do
ca7202eb 4434 d=$(echo "$ventry" | cut -d "$sep" -f 1)
4435 keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2)
4436 vtype=$(echo "$ventry" | cut -d "$sep" -f 4)
4437 _currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5)
72f54ca6 4438 _debug d "$d"
4c2a3841 4439 if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then
69212114 4440 _debug "$d is already verified, skip $vtype."
fd536d37 4441 _alias_index="$(_math "$_alias_index" + 1)"
ec603bee 4442 continue
4443 fi
4444
4c2a3841 4445 if [ "$vtype" = "$VTYPE_DNS" ]; then
4c3b3608 4446 dnsadded='0'
72f54ca6 4447 _dns_root_d="$d"
4448 if _startswith "$_dns_root_d" "*."; then
4449 _dns_root_d="$(echo "$_dns_root_d" | sed 's/*.//')"
4450 fi
875625b1 4451 _d_alias="$(_getfield "$_challenge_alias" "$_alias_index")"
4452 _alias_index="$(_math "$_alias_index" + 1)"
4453 _debug "_d_alias" "$_d_alias"
4454 if [ "$_d_alias" ]; then
64821ad4 4455 if _startswith "$_d_alias" "$DNS_ALIAS_PREFIX"; then
4456 txtdomain="$(echo "$_d_alias" | sed "s/$DNS_ALIAS_PREFIX//")"
4457 else
4458 txtdomain="_acme-challenge.$_d_alias"
4459 fi
82b0ebb7 4460 dns_entry="${_dns_root_d}${dvsep}_acme-challenge.$_dns_root_d$dvsep$txtdomain$dvsep$_currentRoot"
875625b1 4461 else
4462 txtdomain="_acme-challenge.$_dns_root_d"
82b0ebb7 4463 dns_entry="${_dns_root_d}${dvsep}_acme-challenge.$_dns_root_d$dvsep$dvsep$_currentRoot"
875625b1 4464 fi
82b0ebb7 4465
4c3b3608 4466 _debug txtdomain "$txtdomain"
11927a76 4467 txt="$(printf "%s" "$keyauthorization" | _digest "sha256" | _url_replace)"
4c3b3608 4468 _debug txt "$txt"
a61fe418 4469
b50e701c 4470 d_api="$(_findHook "$_dns_root_d" $_SUB_FOLDER_DNSAPI "$_currentRoot")"
4c3b3608 4471 _debug d_api "$d_api"
82b0ebb7 4472
4473 dns_entry="$dns_entry$dvsep$txt${dvsep}$d_api"
4474 _debug2 dns_entry "$dns_entry"
4c2a3841 4475 if [ "$d_api" ]; then
a180b95c 4476 _debug "Found domain api file: $d_api"
4c3b3608 4477 else
3881f221 4478 if [ "$_currentRoot" != "$W_DNS" ]; then
4479 _err "Can not find dns api hook for: $_currentRoot"
4480 _info "You need to add the txt record manually."
4481 fi
5f8b60a0 4482 _info "$(__red "Add the following TXT record:")"
81772fb7 4483 _info "$(__red "Domain: '$(__green "$txtdomain")'")"
4484 _info "$(__red "TXT value: '$(__green "$txt")'")"
4485 _info "$(__red "Please be aware that you prepend _acme-challenge. before your domain")"
4486 _info "$(__red "so the resulting subdomain will be: $txtdomain")"
4c3b3608 4487 continue
4488 fi
4c2a3841 4489
73b8b120 4490 (
ca7202eb 4491 if ! . "$d_api"; then
73b8b120 4492 _err "Load file $d_api error. Please check your api file and try again."
4493 return 1
4494 fi
4c2a3841 4495
158f22f7 4496 addcommand="${_currentRoot}_add"
ca7202eb 4497 if ! _exists "$addcommand"; then
73b8b120 4498 _err "It seems that your api file is not correct, it must have a function named: $addcommand"
4499 return 1
4500 fi
a180b95c 4501 _info "Adding txt value: $txt for domain: $txtdomain"
ca7202eb 4502 if ! $addcommand "$txtdomain" "$txt"; then
73b8b120 4503 _err "Error add txt for domain:$txtdomain"
4504 return 1
4505 fi
a180b95c 4506 _info "The txt record is added: Success."
73b8b120 4507 )
4c2a3841 4508
4509 if [ "$?" != "0" ]; then
ea722da3 4510 _on_issue_err "$_post_hook" "$vlist"
545f2355 4511 _clearup
4c3b3608 4512 return 1
4513 fi
82b0ebb7 4514 dns_entries="$dns_entries$dns_entry
4515"
4516 _debug2 "$dns_entries"
4c3b3608 4517 dnsadded='1'
4518 fi
4519 done
4520
4c2a3841 4521 if [ "$dnsadded" = '0' ]; then
4522 _savedomainconf "Le_Vlist" "$vlist"
4c3b3608 4523 _debug "Dns record not added yet, so, save to $DOMAIN_CONF and exit."
a8b62261 4524 _err "Please add the TXT records to the domains, and re-run with --renew."
5f8b60a0 4525 _on_issue_err "$_post_hook"
545f2355 4526 _clearup
4c3b3608 4527 return 1
4528 fi
4c2a3841 4529
4c3b3608 4530 fi
4c2a3841 4531
b5ca9bba 4532 if [ "$dns_entries" ]; then
4c2a3841 4533 if [ -z "$Le_DNSSleep" ]; then
427c2780 4534 _info "Let's check each DNS record now. Sleep 20 seconds first."
b5ca9bba 4535 _sleep 20
4536 if ! _check_dns_entries; then
4537 _err "check dns error."
4538 _on_issue_err "$_post_hook"
4539 _clearup
4540 return 1
4541 fi
0e38c60d 4542 else
4c2a3841 4543 _savedomainconf "Le_DNSSleep" "$Le_DNSSleep"
b5ca9bba 4544 _info "Sleep $(__green $Le_DNSSleep) seconds for the txt records to take effect"
4545 _sleep "$Le_DNSSleep"
0e38c60d 4546 fi
4c3b3608 4547 fi
4c2a3841 4548
5d943a35 4549 NGINX_RESTORE_VLIST=""
4c3b3608 4550 _debug "ok, let's start to verify"
a63b05a9 4551
0463b5d6 4552 _ncIndex=1
9d725af6 4553 ventries=$(echo "$vlist" | tr "$dvsep" ' ')
4c2a3841 4554 for ventry in $ventries; do
ca7202eb 4555 d=$(echo "$ventry" | cut -d "$sep" -f 1)
4556 keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2)
4557 uri=$(echo "$ventry" | cut -d "$sep" -f 3)
4558 vtype=$(echo "$ventry" | cut -d "$sep" -f 4)
4559 _currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5)
ec603bee 4560
4c2a3841 4561 if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then
ec603bee 4562 _info "$d is already verified, skip $vtype."
4563 continue
4564 fi
4565
dd068467 4566 _info "Verifying: $d"
4c3b3608 4567 _debug "d" "$d"
4568 _debug "keyauthorization" "$keyauthorization"
4569 _debug "uri" "$uri"
4570 removelevel=""
e22bcf7c 4571 token="$(printf "%s" "$keyauthorization" | cut -d '.' -f 1)"
a63b05a9 4572
4573 _debug "_currentRoot" "$_currentRoot"
4574
4c2a3841 4575 if [ "$vtype" = "$VTYPE_HTTP" ]; then
4576 if [ "$_currentRoot" = "$NO_VALUE" ]; then
4c3b3608 4577 _info "Standalone mode server"
85e1f4ea 4578 _ncaddr="$(_getfield "$_local_addr" "$_ncIndex")"
0463b5d6 4579 _ncIndex="$(_math $_ncIndex + 1)"
3794b5cb 4580 _startserver "$keyauthorization" "$_ncaddr"
4c2a3841 4581 if [ "$?" != "0" ]; then
5ef501c5 4582 _clearup
58e4d337 4583 _on_issue_err "$_post_hook" "$vlist"
6fc1447f 4584 return 1
4585 fi
5dbf664a 4586 sleep 1
ca7202eb 4587 _debug serverproc "$serverproc"
0e44f587 4588 elif [ "$_currentRoot" = "$MODE_STATELESS" ]; then
4589 _info "Stateless mode for domain:$d"
4590 _sleep 1
9d725af6 4591 elif _startswith "$_currentRoot" "$NGINX"; then
4592 _info "Nginx mode for domain:$d"
4593 #set up nginx server
4594 FOUND_REAL_NGINX_CONF=""
4595 BACKUP_NGINX_CONF=""
4596 if ! _setNginx "$d" "$_currentRoot" "$thumbprint"; then
4597 _clearup
58e4d337 4598 _on_issue_err "$_post_hook" "$vlist"
9d725af6 4599 return 1
03f8d6e9 4600 fi
302c41ed 4601
03f8d6e9 4602 if [ "$FOUND_REAL_NGINX_CONF" ]; then
9d725af6 4603 _realConf="$FOUND_REAL_NGINX_CONF"
4604 _backup="$BACKUP_NGINX_CONF"
4605 _debug _realConf "$_realConf"
5d943a35 4606 NGINX_RESTORE_VLIST="$d$sep$_realConf$sep$_backup$dvsep$NGINX_RESTORE_VLIST"
9d725af6 4607 fi
4608 _sleep 1
4c3b3608 4609 else
4c2a3841 4610 if [ "$_currentRoot" = "apache" ]; then
6f930641 4611 wellknown_path="$ACME_DIR"
4612 else
a63b05a9 4613 wellknown_path="$_currentRoot/.well-known/acme-challenge"
4c2a3841 4614 if [ ! -d "$_currentRoot/.well-known" ]; then
6f930641 4615 removelevel='1'
4c2a3841 4616 elif [ ! -d "$_currentRoot/.well-known/acme-challenge" ]; then
6f930641 4617 removelevel='2'
4618 else
4619 removelevel='3'
4620 fi
4c3b3608 4621 fi
6f930641 4622
4c3b3608 4623 _debug wellknown_path "$wellknown_path"
6f930641 4624
4c3b3608 4625 _debug "writing token:$token to $wellknown_path/$token"
4626
4627 mkdir -p "$wellknown_path"
93fc48a2 4628
4c2a3841 4629 if ! printf "%s" "$keyauthorization" >"$wellknown_path/$token"; then
93fc48a2 4630 _err "$d:Can not write token to file : $wellknown_path/$token"
4631 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4632 _clearup
58e4d337 4633 _on_issue_err "$_post_hook" "$vlist"
93fc48a2 4634 return 1
4635 fi
4636
4c2a3841 4637 if [ ! "$usingApache" ]; then
44edb2bd 4638 if webroot_owner=$(_stat "$_currentRoot"); then
32fdc196 4639 _debug "Changing owner/group of .well-known to $webroot_owner"
c87cd0de 4640 if ! _exec "chown -R \"$webroot_owner\" \"$_currentRoot/.well-known\""; then
4641 _debug "$(cat "$_EXEC_TEMP_ERR")"
4642 _exec_err >/dev/null 2>&1
4643 fi
32fdc196 4644 else
b54ce310 4645 _debug "not changing owner/group of webroot"
32fdc196 4646 fi
df886ffa 4647 fi
4c2a3841 4648
4c3b3608 4649 fi
08681f4a 4650 elif [ "$vtype" = "$VTYPE_ALPN" ]; then
4651 acmevalidationv1="$(printf "%s" "$keyauthorization" | _digest "sha256" "hex")"
4652 _debug acmevalidationv1 "$acmevalidationv1"
4653 if ! _starttlsserver "$d" "" "$Le_TLSPort" "$keyauthorization" "$_ncaddr" "$acmevalidationv1"; then
4654 _err "Start tls server error."
4655 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4656 _clearup
4657 _on_issue_err "$_post_hook" "$vlist"
4658 return 1
4659 fi
4c3b3608 4660 fi
4c2a3841 4661
920cab6f 4662 if ! __trigger_validation "$uri" "$keyauthorization" "$vtype"; then
c4d8fd83 4663 _err "$d:Can not get challenge: $response"
4664 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4665 _clearup
58e4d337 4666 _on_issue_err "$_post_hook" "$vlist"
c4d8fd83 4667 return 1
4668 fi
4c2a3841 4669
c1151b0d 4670 if [ "$code" ] && [ "$code" != '202' ]; then
8bd12ed0 4671 if [ "$code" = '200' ]; then
c1151b0d 4672 _debug "trigger validation code: $code"
4673 else
8bd12ed0
K
4674 _err "$d:Challenge error: $response"
4675 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4676 _clearup
4677 _on_issue_err "$_post_hook" "$vlist"
4678 return 1
c1151b0d 4679 fi
4c3b3608 4680 fi
4c2a3841 4681
6fc1447f 4682 waittimes=0
4c2a3841 4683 if [ -z "$MAX_RETRY_TIMES" ]; then
6fc1447f 4684 MAX_RETRY_TIMES=30
4685 fi
4c2a3841 4686
4687 while true; do
0c538f75 4688 waittimes=$(_math "$waittimes" + 1)
4c2a3841 4689 if [ "$waittimes" -ge "$MAX_RETRY_TIMES" ]; then
6fc1447f 4690 _err "$d:Timeout"
4691 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4692 _clearup
58e4d337 4693 _on_issue_err "$_post_hook" "$vlist"
6fc1447f 4694 return 1
4695 fi
4c2a3841 4696
5dbf664a 4697 _debug "sleep 2 secs to verify"
4698 sleep 2
4c3b3608 4699 _debug "checking"
af3ea2d4 4700
4701 _send_signed_request "$uri"
4702
4c2a3841 4703 if [ "$?" != "0" ]; then
c60883ef 4704 _err "$d:Verify error:$response"
a63b05a9 4705 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4c3b3608 4706 _clearup
58e4d337 4707 _on_issue_err "$_post_hook" "$vlist"
4c3b3608 4708 return 1
4709 fi
9aaf36cd 4710 _debug2 original "$response"
4c2a3841 4711
4712 response="$(echo "$response" | _normalizeJson)"
7012b91f 4713 _debug2 response "$response"
4c2a3841 4714
4715 status=$(echo "$response" | _egrep_o '"status":"[^"]*' | cut -d : -f 2 | tr -d '"')
4c2a3841 4716
aede5c48 4717 if _contains "$status" "invalid"; then
d0d74907 4718 error="$(echo "$response" | _egrep_o '"error":\{[^\}]*')"
4c2a3841 4719 _debug2 error "$error"
4720 errordetail="$(echo "$error" | _egrep_o '"detail": *"[^"]*' | cut -d '"' -f 4)"
4721 _debug2 errordetail "$errordetail"
4722 if [ "$errordetail" ]; then
4723 _err "$d:Verify error:$errordetail"
4724 else
4725 _err "$d:Verify error:$error"
4726 fi
4727 if [ "$DEBUG" ]; then
4728 if [ "$vtype" = "$VTYPE_HTTP" ]; then
4729 _debug "Debug: get token url."
4730 _get "http://$d/.well-known/acme-challenge/$token" "" 1
4731 fi
4732 fi
a63b05a9 4733 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4c3b3608 4734 _clearup
58e4d337 4735 _on_issue_err "$_post_hook" "$vlist"
4c2a3841 4736 return 1
4c3b3608 4737 fi
4c2a3841 4738
aede5c48 4739 if _contains "$status" "valid"; then
4740 _info "$(__green Success)"
4741 _stopserver "$serverproc"
4742 serverproc=""
4743 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4744 break
4745 fi
4746
4c2a3841 4747 if [ "$status" = "pending" ]; then
4c3b3608 4748 _info "Pending"
93740c99 4749 elif [ "$status" = "processing" ]; then
4750 _info "Processing"
4c3b3608 4751 else
4c2a3841 4752 _err "$d:Verify error:$response"
a63b05a9 4753 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4c3b3608 4754 _clearup
58e4d337 4755 _on_issue_err "$_post_hook" "$vlist"
4c3b3608 4756 return 1
4757 fi
4c2a3841 4758
4c3b3608 4759 done
4c2a3841 4760
4c3b3608 4761 done
4762
4763 _clearup
4764 _info "Verify finished, start to sign."
11927a76 4765 der="$(_getfile "${CSR_PATH}" "${BEGIN_CSR}" "${END_CSR}" | tr -d "\r\n" | _url_replace)"
4c2a3841 4766
af3ea2d4 4767 _info "Lets finalize the order."
4768 _info "Le_OrderFinalize" "$Le_OrderFinalize"
4769 if ! _send_signed_request "${Le_OrderFinalize}" "{\"csr\": \"$der\"}"; then
4770 _err "Sign failed."
4771 _on_issue_err "$_post_hook"
4772 return 1
4773 fi
4774 if [ "$code" != "200" ]; then
4775 _err "Sign failed, finalize code is not 200."
4776 _err "$response"
4777 _on_issue_err "$_post_hook"
4778 return 1
4779 fi
4780 if [ -z "$Le_LinkOrder" ]; then
4781 Le_LinkOrder="$(echo "$responseHeaders" | grep -i '^Location.*$' | _tail_n 1 | tr -d "\r\n \t" | cut -d ":" -f 2-)"
4782 fi
e7f7e96d 4783
af3ea2d4 4784 _savedomainconf "Le_LinkOrder" "$Le_LinkOrder"
4785
4786 _link_cert_retry=0
4787 _MAX_CERT_RETRY=30
4788 while [ "$_link_cert_retry" -lt "$_MAX_CERT_RETRY" ]; do
4789 if _contains "$response" "\"status\":\"valid\""; then
4790 _debug "Order status is valid."
4791 Le_LinkCert="$(echo "$response" | _egrep_o '"certificate" *: *"[^"]*"' | cut -d '"' -f 4)"
4792 _debug Le_LinkCert "$Le_LinkCert"
4793 if [ -z "$Le_LinkCert" ]; then
4794 _err "Sign error, can not find Le_LinkCert"
e7f7e96d 4795 _err "$response"
4796 _on_issue_err "$_post_hook"
4797 return 1
4798 fi
af3ea2d4 4799 break
4800 elif _contains "$response" "\"processing\""; then
4801 _info "Order status is processing, lets sleep and retry."
4802 _retryafter=$(echo "$responseHeaders" | grep -i "^Retry-After *:" | cut -d : -f 2 | tr -d ' ' | tr -d '\r')
4803 _debug "_retryafter" "$_retryafter"
4804 if [ "$_retryafter" ]; then
4805 _info "Retry after: $_retryafter"
4806 _sleep $_retryafter
4807 else
4808 _sleep 2
e7f7e96d 4809 fi
af3ea2d4 4810 else
4811 _err "Sign error, wrong status"
e7f7e96d 4812 _err "$response"
4813 _on_issue_err "$_post_hook"
4814 return 1
4815 fi
af3ea2d4 4816 #the order is processing, so we are going to poll order status
4817 if [ -z "$Le_LinkOrder" ]; then
4818 _err "Sign error, can not get order link location header"
4819 _err "responseHeaders" "$responseHeaders"
4820 _on_issue_err "$_post_hook"
4821 return 1
4822 fi
4823 _info "Polling order status: $Le_LinkOrder"
4824 if ! _send_signed_request "$Le_LinkOrder"; then
4825 _err "Sign failed, can not post to Le_LinkOrder cert:$Le_LinkOrder."
668c43ab 4826 _err "$response"
c1151b0d 4827 _on_issue_err "$_post_hook"
4828 return 1
4829 fi
af3ea2d4 4830 _link_cert_retry="$(_math $_link_cert_retry + 1)"
4831 done
4c3b3608 4832
af3ea2d4 4833 if [ -z "$Le_LinkCert" ]; then
4834 _err "Sign failed, can not get Le_LinkCert, retry time limit."
4835 _err "$response"
4836 _on_issue_err "$_post_hook"
4837 return 1
4838 fi
4839 _info "Downloading cert."
4840 _info "Le_LinkCert" "$Le_LinkCert"
4841 if ! _send_signed_request "$Le_LinkCert"; then
4842 _err "Sign failed, can not download cert:$Le_LinkCert."
4843 _err "$response"
4844 _on_issue_err "$_post_hook"
4845 return 1
4846 fi
e3ebd582 4847
af3ea2d4 4848 echo "$response" >"$CERT_PATH"
4849 _split_cert_chain "$CERT_PATH" "$CERT_FULLCHAIN_PATH" "$CA_CERT_PATH"
4850
4851 if [ "$_preferred_chain" ] && [ -f "$CERT_FULLCHAIN_PATH" ]; then
4852 if [ "$DEBUG" ]; then
4853 _debug "default chain issuers: " "$(_get_chain_issuers "$CERT_FULLCHAIN_PATH")"
4854 fi
4855 if ! _match_issuer "$CERT_FULLCHAIN_PATH" "$_preferred_chain"; then
4856 rels="$(echo "$responseHeaders" | tr -d ' <>' | grep -i "^link:" | grep -i 'rel="alternate"' | cut -d : -f 2- | cut -d ';' -f 1)"
4857 _debug2 "rels" "$rels"
4858 for rel in $rels; do
4859 _info "Try rel: $rel"
4860 if ! _send_signed_request "$rel"; then
4861 _err "Sign failed, can not download cert:$rel"
4862 _err "$response"
4863 continue
4864 fi
4865 _relcert="$CERT_PATH.alt"
4866 _relfullchain="$CERT_FULLCHAIN_PATH.alt"
4867 _relca="$CA_CERT_PATH.alt"
4868 echo "$response" >"$_relcert"
4869 _split_cert_chain "$_relcert" "$_relfullchain" "$_relca"
4870 if [ "$DEBUG" ]; then
4871 _debug "rel chain issuers: " "$(_get_chain_issuers "$_relfullchain")"
4872 fi
4873 if _match_issuer "$_relfullchain" "$_preferred_chain"; then
4874 _info "Matched issuer in: $rel"
4875 cat $_relcert >"$CERT_PATH"
4876 cat $_relfullchain >"$CERT_FULLCHAIN_PATH"
4877 cat $_relca >"$CA_CERT_PATH"
12b19165 4878 rm -f "$_relcert"
4879 rm -f "$_relfullchain"
4880 rm -f "$_relca"
af3ea2d4 4881 break
4882 fi
4883 rm -f "$_relcert"
4884 rm -f "$_relfullchain"
4885 rm -f "$_relca"
4886 done
d404e92d 4887 fi
c1151b0d 4888 fi
4889
4890 _debug "Le_LinkCert" "$Le_LinkCert"
4891 _savedomainconf "Le_LinkCert" "$Le_LinkCert"
4892
183063a2 4893 if [ -z "$Le_LinkCert" ] || ! _checkcert "$CERT_PATH"; then
716f7277 4894 response="$(echo "$response" | _dbase64 "multiline" | tr -d '\0' | _normalizeJson)"
183063a2 4895 _err "Sign failed: $(echo "$response" | _egrep_o '"detail":"[^"]*"')"
4896 _on_issue_err "$_post_hook"
4897 return 1
4898 fi
4899
c1151b0d 4900 if [ "$Le_LinkCert" ]; then
43822d37 4901 _info "$(__green "Cert success.")"
4c3b3608 4902 cat "$CERT_PATH"
5980ebc7 4903
4c2a3841 4904 _info "Your cert is in $(__green " $CERT_PATH ")"
4905
4906 if [ -f "$CERT_KEY_PATH" ]; then
4907 _info "Your cert key is in $(__green " $CERT_KEY_PATH ")"
5980ebc7 4908 fi
4909
bd04638d 4910 if [ ! "$USER_PATH" ] || [ ! "$_ACME_IN_CRON" ]; then
281aa349 4911 USER_PATH="$PATH"
4912 _saveaccountconf "USER_PATH" "$USER_PATH"
4913 fi
4c3b3608 4914 fi
4c3b3608 4915
1c35f46b 4916 [ -f "$CA_CERT_PATH" ] && _info "The intermediate CA cert is in $(__green " $CA_CERT_PATH ")"
4917 [ -f "$CERT_FULLCHAIN_PATH" ] && _info "And the full chain certs is there: $(__green " $CERT_FULLCHAIN_PATH ")"
4c2a3841 4918
3aae1ae3 4919 Le_CertCreateTime=$(_time)
4c2a3841 4920 _savedomainconf "Le_CertCreateTime" "$Le_CertCreateTime"
4921
4922 Le_CertCreateTimeStr=$(date -u)
4923 _savedomainconf "Le_CertCreateTimeStr" "$Le_CertCreateTimeStr"
4924
ec67a1b2 4925 if [ -z "$Le_RenewalDays" ] || [ "$Le_RenewalDays" -lt "0" ]; then
4926 Le_RenewalDays="$DEFAULT_RENEW"
054cb72e 4927 else
4c2a3841 4928 _savedomainconf "Le_RenewalDays" "$Le_RenewalDays"
13d7cae9 4929 fi
4c2a3841 4930
4931 if [ "$CA_BUNDLE" ]; then
78009539
PS
4932 _saveaccountconf CA_BUNDLE "$CA_BUNDLE"
4933 else
4934 _clearaccountconf "CA_BUNDLE"
4935 fi
4936
2aa75f03 4937 if [ "$CA_PATH" ]; then
4938 _saveaccountconf CA_PATH "$CA_PATH"
4939 else
4940 _clearaccountconf "CA_PATH"
4941 fi
78009539 4942
4c2a3841 4943 if [ "$HTTPS_INSECURE" ]; then
fac1e367 4944 _saveaccountconf HTTPS_INSECURE "$HTTPS_INSECURE"
4945 else
4c2a3841 4946 _clearaccountconf "HTTPS_INSECURE"
13d7cae9 4947 fi
00a50605 4948
4c2a3841 4949 if [ "$Le_Listen_V4" ]; then
4950 _savedomainconf "Le_Listen_V4" "$Le_Listen_V4"
50827188 4951 _cleardomainconf Le_Listen_V6
4c2a3841 4952 elif [ "$Le_Listen_V6" ]; then
4953 _savedomainconf "Le_Listen_V6" "$Le_Listen_V6"
50827188 4954 _cleardomainconf Le_Listen_V4
4955 fi
f6dcd989 4956
c4b2e582 4957 if [ "$Le_ForceNewDomainKey" = "1" ]; then
4958 _savedomainconf "Le_ForceNewDomainKey" "$Le_ForceNewDomainKey"
4959 else
4960 _cleardomainconf Le_ForceNewDomainKey
4961 fi
4962
ca7202eb 4963 Le_NextRenewTime=$(_math "$Le_CertCreateTime" + "$Le_RenewalDays" \* 24 \* 60 \* 60)
4c2a3841 4964
ca7202eb 4965 Le_NextRenewTimeStr=$(_time2str "$Le_NextRenewTime")
4c2a3841 4966 _savedomainconf "Le_NextRenewTimeStr" "$Le_NextRenewTimeStr"
4967
ca7202eb 4968 Le_NextRenewTime=$(_math "$Le_NextRenewTime" - 86400)
4c2a3841 4969 _savedomainconf "Le_NextRenewTime" "$Le_NextRenewTime"
f6dcd989 4970
85e1f4ea 4971 if [ "$_real_cert$_real_key$_real_ca$_reload_cmd$_real_fullchain" ]; then
4972 _savedomainconf "Le_RealCertPath" "$_real_cert"
4973 _savedomainconf "Le_RealCACertPath" "$_real_ca"
4974 _savedomainconf "Le_RealKeyPath" "$_real_key"
7690f73e 4975 _savedomainconf "Le_ReloadCmd" "$_reload_cmd" "base64"
85e1f4ea 4976 _savedomainconf "Le_RealFullChainPath" "$_real_fullchain"
ce8dca7a 4977 if ! _installcert "$_main_domain" "$_real_cert" "$_real_key" "$_real_ca" "$_real_fullchain" "$_reload_cmd"; then
4978 return 1
4979 fi
01f54558 4980 fi
4c0d3f1b 4981
ce8dca7a 4982 if ! _on_issue_success "$_post_hook" "$_renew_hook"; then
4983 _err "Call hook error."
4984 return 1
4985 fi
4c3b3608 4986}
4987
d73438a3 4988#in_out_cert out_fullchain out_ca
e3ebd582 4989_split_cert_chain() {
4990 _certf="$1"
4991 _fullchainf="$2"
4992 _caf="$3"
4993 if [ "$(grep -- "$BEGIN_CERT" "$_certf" | wc -l)" -gt "1" ]; then
4994 _debug "Found cert chain"
4995 cat "$_certf" >"$_fullchainf"
4996 _end_n="$(grep -n -- "$END_CERT" "$_fullchainf" | _head_n 1 | cut -d : -f 1)"
4997 _debug _end_n "$_end_n"
4998 sed -n "1,${_end_n}p" "$_fullchainf" >"$_certf"
4999 _end_n="$(_math $_end_n + 1)"
5000 sed -n "${_end_n},9999p" "$_fullchainf" >"$_caf"
5001 fi
5002}
5003
43822d37 5004#domain [isEcc]
4c3b3608 5005renew() {
5006 Le_Domain="$1"
4c2a3841 5007 if [ -z "$Le_Domain" ]; then
2e87e64b 5008 _usage "Usage: $PROJECT_ENTRY --renew --domain <domain.tld> [--ecc]"
4c3b3608 5009 return 1
5010 fi
5011
43822d37 5012 _isEcc="$2"
5013
e799ef29 5014 _initpath "$Le_Domain" "$_isEcc"
43822d37 5015
e2053b22 5016 _info "$(__green "Renew: '$Le_Domain'")"
4c2a3841 5017 if [ ! -f "$DOMAIN_CONF" ]; then
2e87e64b 5018 _info "'$Le_Domain' is not an issued domain, skip."
acae0ac2 5019 return $RENEW_SKIP
4c3b3608 5020 fi
4c2a3841 5021
5022 if [ "$Le_RenewalDays" ]; then
1e6b68f5 5023 _savedomainconf Le_RenewalDays "$Le_RenewalDays"
5024 fi
5025
8663fb7e 5026 . "$DOMAIN_CONF"
c5f1cca3 5027 _debug Le_API "$Le_API"
f2add8de 5028
4c2a3841 5029 if [ "$Le_API" ]; then
48d9a8c1 5030 export ACME_DIRECTORY="$Le_API"
c4236e58 5031 #reload ca configs
5032 ACCOUNT_KEY_PATH=""
5033 ACCOUNT_JSON_PATH=""
5034 CA_CONF=""
5035 _debug3 "initpath again."
5036 _initpath "$Le_Domain" "$_isEcc"
5c48e139 5037 fi
4c2a3841 5038
5039 if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(_time)" -lt "$Le_NextRenewTime" ]; then
e2053b22 5040 _info "Skip, Next renewal time is: $(__green "$Le_NextRenewTimeStr")"
5041 _info "Add '$(__red '--force')' to force to renew."
e799ef29 5042 return "$RENEW_SKIP"
4c3b3608 5043 fi
4c2a3841 5044
bd04638d 5045 if [ "$_ACME_IN_CRON" = "1" ] && [ -z "$Le_CertCreateTime" ]; then
c4d0aec5 5046 _info "Skip invalid cert for: $Le_Domain"
acae0ac2 5047 return $RENEW_SKIP
c4d0aec5 5048 fi
5049
bd04638d 5050 _ACME_IS_RENEW="1"
7690f73e 5051 Le_ReloadCmd="$(_readdomainconf Le_ReloadCmd)"
c7257bcf 5052 Le_PreHook="$(_readdomainconf Le_PreHook)"
5053 Le_PostHook="$(_readdomainconf Le_PostHook)"
5054 Le_RenewHook="$(_readdomainconf Le_RenewHook)"
b7b01999 5055 Le_Preferred_Chain="$(_readdomainconf Le_Preferred_Chain)"
e3ebd582 5056 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" "$Le_Preferred_Chain"
e799ef29 5057 res="$?"
4c2a3841 5058 if [ "$res" != "0" ]; then
e799ef29 5059 return "$res"
a61fe418 5060 fi
4c2a3841 5061
5062 if [ "$Le_DeployHook" ]; then
93bce1b2 5063 _deploy "$Le_Domain" "$Le_DeployHook"
e799ef29 5064 res="$?"
a61fe418 5065 fi
4c2a3841 5066
bd04638d 5067 _ACME_IS_RENEW=""
4c3b3608 5068
e799ef29 5069 return "$res"
4c3b3608 5070}
5071
cc179731 5072#renewAll [stopRenewOnError]
4c3b3608 5073renewAll() {
5074 _initpath
cc179731 5075 _stopRenewOnError="$1"
5076 _debug "_stopRenewOnError" "$_stopRenewOnError"
5077 _ret="0"
b50e701c 5078 _success_msg=""
5079 _error_msg=""
5080 _skipped_msg=""
c6b68551 5081 _error_level=$NOTIFY_LEVEL_SKIP
5082 _notify_code=$RENEW_SKIP
f803c6c0 5083 _set_level=${NOTIFY_LEVEL:-$NOTIFY_LEVEL_DEFAULT}
5084 _debug "_set_level" "$_set_level"
e591d5cf 5085 for di in "${CERT_HOME}"/*.*/; do
5086 _debug di "$di"
44483dba 5087 if ! [ -d "$di" ]; then
2e87e64b 5088 _debug "Not a directory, skip: $di"
3498a585 5089 continue
5090 fi
e591d5cf 5091 d=$(basename "$di")
201aa244 5092 _debug d "$d"
43822d37 5093 (
201aa244 5094 if _endswith "$d" "$ECC_SUFFIX"; then
5095 _isEcc=$(echo "$d" | cut -d "$ECC_SEP" -f 2)
5096 d=$(echo "$d" | cut -d "$ECC_SEP" -f 1)
43822d37 5097 fi
5098 renew "$d" "$_isEcc"
4d2f38b0 5099 )
cc179731 5100 rc="$?"
5101 _debug "Return code: $rc"
c6b68551 5102 if [ "$rc" = "0" ]; then
5103 if [ $_error_level -gt $NOTIFY_LEVEL_RENEW ]; then
5104 _error_level="$NOTIFY_LEVEL_RENEW"
5105 _notify_code=0
5106 fi
bd04638d 5107 if [ "$_ACME_IN_CRON" ]; then
f803c6c0 5108 if [ $_set_level -ge $NOTIFY_LEVEL_RENEW ]; then
c6b68551 5109 if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
5110 _send_notify "Renew $d success" "Good, the cert is renewed." "$NOTIFY_HOOK" 0
5111 fi
5112 fi
5113 fi
5114 _success_msg="${_success_msg} $d
b50e701c 5115"
c6b68551 5116 elif [ "$rc" = "$RENEW_SKIP" ]; then
5117 if [ $_error_level -gt $NOTIFY_LEVEL_SKIP ]; then
5118 _error_level="$NOTIFY_LEVEL_SKIP"
5119 _notify_code=$RENEW_SKIP
5120 fi
bd04638d 5121 if [ "$_ACME_IN_CRON" ]; then
f803c6c0 5122 if [ $_set_level -ge $NOTIFY_LEVEL_SKIP ]; then
c6b68551 5123 if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
5124 _send_notify "Renew $d skipped" "Good, the cert is skipped." "$NOTIFY_HOOK" "$RENEW_SKIP"
5125 fi
b50e701c 5126 fi
cc179731 5127 fi
c6b68551 5128 _info "Skipped $d"
5129 _skipped_msg="${_skipped_msg} $d
5130"
b50e701c 5131 else
c6b68551 5132 if [ $_error_level -gt $NOTIFY_LEVEL_ERROR ]; then
5133 _error_level="$NOTIFY_LEVEL_ERROR"
5134 _notify_code=1
5135 fi
bd04638d 5136 if [ "$_ACME_IN_CRON" ]; then
f803c6c0 5137 if [ $_set_level -ge $NOTIFY_LEVEL_ERROR ]; then
c6b68551 5138 if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
5139 _send_notify "Renew $d error" "There is an error." "$NOTIFY_HOOK" 1
5140 fi
5141 fi
5142 fi
5143 _error_msg="${_error_msg} $d
b50e701c 5144"
c6b68551 5145 if [ "$_stopRenewOnError" ]; then
5146 _err "Error renew $d, stop now."
5147 _ret="$rc"
5148 break
5149 else
5150 _ret="$rc"
5151 _err "Error renew $d."
5152 fi
cc179731 5153 fi
4c3b3608 5154 done
c6b68551 5155 _debug _error_level "$_error_level"
a2738e85 5156 _debug _set_level "$_set_level"
bd04638d 5157 if [ "$_ACME_IN_CRON" ] && [ $_error_level -le $_set_level ]; then
b50e701c 5158 if [ -z "$NOTIFY_MODE" ] || [ "$NOTIFY_MODE" = "$NOTIFY_MODE_BULK" ]; then
5159 _msg_subject="Renew"
5160 if [ "$_error_msg" ]; then
5161 _msg_subject="${_msg_subject} Error"
c6b68551 5162 _msg_data="Error certs:
5163${_error_msg}
5164"
b50e701c 5165 fi
5166 if [ "$_success_msg" ]; then
5167 _msg_subject="${_msg_subject} Success"
c6b68551 5168 _msg_data="${_msg_data}Success certs:
5169${_success_msg}
5170"
b50e701c 5171 fi
5172 if [ "$_skipped_msg" ]; then
5173 _msg_subject="${_msg_subject} Skipped"
c6b68551 5174 _msg_data="${_msg_data}Skipped certs:
5175${_skipped_msg}
b50e701c 5176"
c6b68551 5177 fi
5178
5179 _send_notify "$_msg_subject" "$_msg_data" "$NOTIFY_HOOK" "$_notify_code"
b50e701c 5180 fi
5181 fi
5182
201aa244 5183 return "$_ret"
4c3b3608 5184}
5185
10afcaca 5186#csr webroot
4c2a3841 5187signcsr() {
10afcaca 5188 _csrfile="$1"
5189 _csrW="$2"
5190 if [ -z "$_csrfile" ] || [ -z "$_csrW" ]; then
2e87e64b 5191 _usage "Usage: $PROJECT_ENTRY --sign-csr --csr <csr-file> --webroot <directory>"
10afcaca 5192 return 1
5193 fi
5194
875625b1 5195 _real_cert="$3"
5196 _real_key="$4"
5197 _real_ca="$5"
5198 _reload_cmd="$6"
5199 _real_fullchain="$7"
5200 _pre_hook="${8}"
5201 _post_hook="${9}"
5202 _renew_hook="${10}"
5203 _local_addr="${11}"
5204 _challenge_alias="${12}"
96a95ba9 5205 _preferred_chain="${13}"
875625b1 5206
10afcaca 5207 _csrsubj=$(_readSubjectFromCSR "$_csrfile")
4c2a3841 5208 if [ "$?" != "0" ]; then
10afcaca 5209 _err "Can not read subject from csr: $_csrfile"
5210 return 1
5211 fi
ad752b31 5212 _debug _csrsubj "$_csrsubj"
2c9ed4c5 5213 if _contains "$_csrsubj" ' ' || ! _contains "$_csrsubj" '.'; then
5214 _info "It seems that the subject: $_csrsubj is not a valid domain name. Drop it."
5215 _csrsubj=""
5216 fi
10afcaca 5217
5218 _csrdomainlist=$(_readSubjectAltNamesFromCSR "$_csrfile")
4c2a3841 5219 if [ "$?" != "0" ]; then
10afcaca 5220 _err "Can not read domain list from csr: $_csrfile"
5221 return 1
5222 fi
5223 _debug "_csrdomainlist" "$_csrdomainlist"
4c2a3841 5224
5225 if [ -z "$_csrsubj" ]; then
ad752b31 5226 _csrsubj="$(_getfield "$_csrdomainlist" 1)"
5227 _debug _csrsubj "$_csrsubj"
5228 _csrdomainlist="$(echo "$_csrdomainlist" | cut -d , -f 2-)"
5229 _debug "_csrdomainlist" "$_csrdomainlist"
5230 fi
4c2a3841 5231
5232 if [ -z "$_csrsubj" ]; then
ad752b31 5233 _err "Can not read subject from csr: $_csrfile"
5234 return 1
5235 fi
4c2a3841 5236
10afcaca 5237 _csrkeylength=$(_readKeyLengthFromCSR "$_csrfile")
4c2a3841 5238 if [ "$?" != "0" ] || [ -z "$_csrkeylength" ]; then
10afcaca 5239 _err "Can not read key length from csr: $_csrfile"
5240 return 1
5241 fi
4c2a3841 5242
10afcaca 5243 _initpath "$_csrsubj" "$_csrkeylength"
5244 mkdir -p "$DOMAIN_PATH"
4c2a3841 5245
10afcaca 5246 _info "Copy csr to: $CSR_PATH"
5247 cp "$_csrfile" "$CSR_PATH"
4c2a3841 5248
96a95ba9 5249 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" "$_preferred_chain"
4c2a3841 5250
10afcaca 5251}
5252
5253showcsr() {
4c2a3841 5254 _csrfile="$1"
10afcaca 5255 _csrd="$2"
5256 if [ -z "$_csrfile" ] && [ -z "$_csrd" ]; then
2e87e64b 5257 _usage "Usage: $PROJECT_ENTRY --show-csr --csr <csr-file>"
10afcaca 5258 return 1
5259 fi
5260
5261 _initpath
4c2a3841 5262
10afcaca 5263 _csrsubj=$(_readSubjectFromCSR "$_csrfile")
4c2a3841 5264 if [ "$?" != "0" ] || [ -z "$_csrsubj" ]; then
10afcaca 5265 _err "Can not read subject from csr: $_csrfile"
5266 return 1
5267 fi
4c2a3841 5268
10afcaca 5269 _info "Subject=$_csrsubj"
5270
5271 _csrdomainlist=$(_readSubjectAltNamesFromCSR "$_csrfile")
4c2a3841 5272 if [ "$?" != "0" ]; then
10afcaca 5273 _err "Can not read domain list from csr: $_csrfile"
5274 return 1
5275 fi
5276 _debug "_csrdomainlist" "$_csrdomainlist"
5277
5278 _info "SubjectAltNames=$_csrdomainlist"
5279
10afcaca 5280 _csrkeylength=$(_readKeyLengthFromCSR "$_csrfile")
4c2a3841 5281 if [ "$?" != "0" ] || [ -z "$_csrkeylength" ]; then
10afcaca 5282 _err "Can not read key length from csr: $_csrfile"
5283 return 1
5284 fi
5285 _info "KeyLength=$_csrkeylength"
5286}
5287
95ef046d 5288#listraw domain
6d7eda3e 5289list() {
22ea4004 5290 _raw="$1"
95ef046d 5291 _domain="$2"
6d7eda3e 5292 _initpath
4c2a3841 5293
dcf4f8f6 5294 _sep="|"
4c2a3841 5295 if [ "$_raw" ]; then
95ef046d 5296 if [ -z "$_domain" ]; then
5297 printf "%s\n" "Main_Domain${_sep}KeyLength${_sep}SAN_Domains${_sep}CA${_sep}Created${_sep}Renew"
5298 fi
e591d5cf 5299 for di in "${CERT_HOME}"/*.*/; do
5300 d=$(basename "$di")
201aa244 5301 _debug d "$d"
dcf4f8f6 5302 (
201aa244 5303 if _endswith "$d" "$ECC_SUFFIX"; then
be0df07d 5304 _isEcc="ecc"
201aa244 5305 d=$(echo "$d" | cut -d "$ECC_SEP" -f 1)
43822d37 5306 fi
be0df07d 5307 DOMAIN_CONF="$di/$d.conf"
4c2a3841 5308 if [ -f "$DOMAIN_CONF" ]; then
dcf4f8f6 5309 . "$DOMAIN_CONF"
269847d1 5310 _ca="$(_getCAShortName "$Le_API")"
95ef046d 5311 if [ -z "$_domain" ]; then
5312 printf "%s\n" "$Le_Domain${_sep}\"$Le_Keylength\"${_sep}$Le_Alt${_sep}$_ca${_sep}$Le_CertCreateTimeStr${_sep}$Le_NextRenewTimeStr"
5313 else
5314 if [ "$_domain" = "$d" ]; then
5315 cat "$DOMAIN_CONF"
5316 fi
5317 fi
dcf4f8f6 5318 fi
5319 )
5320 done
5321 else
4c2a3841 5322 if _exists column; then
95ef046d 5323 list "raw" "$_domain" | column -t -s "$_sep"
22ea4004 5324 else
95ef046d 5325 list "raw" "$_domain" | tr "$_sep" '\t'
22ea4004 5326 fi
dcf4f8f6 5327 fi
6d7eda3e 5328
6d7eda3e 5329}
5330
93bce1b2 5331_deploy() {
5332 _d="$1"
5333 _hooks="$2"
5334
5335 for _d_api in $(echo "$_hooks" | tr ',' " "); do
b50e701c 5336 _deployApi="$(_findHook "$_d" $_SUB_FOLDER_DEPLOY "$_d_api")"
93bce1b2 5337 if [ -z "$_deployApi" ]; then
5338 _err "The deploy hook $_d_api is not found."
5339 return 1
5340 fi
5341 _debug _deployApi "$_deployApi"
5342
5343 if ! (
5344 if ! . "$_deployApi"; then
5345 _err "Load file $_deployApi error. Please check your api file and try again."
5346 return 1
5347 fi
5348
5349 d_command="${_d_api}_deploy"
5350 if ! _exists "$d_command"; then
5351 _err "It seems that your api file is not correct, it must have a function named: $d_command"
5352 return 1
5353 fi
5354
5355 if ! $d_command "$_d" "$CERT_KEY_PATH" "$CERT_PATH" "$CA_CERT_PATH" "$CERT_FULLCHAIN_PATH"; then
5356 _err "Error deploy for domain:$_d"
5357 return 1
5358 fi
5359 ); then
5360 _err "Deploy error."
5361 return 1
5362 else
5363 _info "$(__green Success)"
5364 fi
5365 done
5366}
5367
5368#domain hooks
a61fe418 5369deploy() {
93bce1b2 5370 _d="$1"
5371 _hooks="$2"
a61fe418 5372 _isEcc="$3"
93bce1b2 5373 if [ -z "$_hooks" ]; then
2e87e64b 5374 _usage "Usage: $PROJECT_ENTRY --deploy --domain <domain.tld> --deploy-hook <hookname> [--ecc] "
a61fe418 5375 return 1
5376 fi
5377
93bce1b2 5378 _initpath "$_d" "$_isEcc"
4c2a3841 5379 if [ ! -d "$DOMAIN_PATH" ]; then
9672c6b8 5380 _err "The domain '$_d' is not a cert name. You must use the cert name to specify the cert to install."
5381 _err "Can not find path:'$DOMAIN_PATH'"
a61fe418 5382 return 1
5383 fi
4c2a3841 5384
93bce1b2 5385 . "$DOMAIN_CONF"
4c2a3841 5386
93bce1b2 5387 _savedomainconf Le_DeployHook "$_hooks"
4c2a3841 5388
93bce1b2 5389 _deploy "$_d" "$_hooks"
a61fe418 5390}
5391
4c3b3608 5392installcert() {
85e1f4ea 5393 _main_domain="$1"
5394 if [ -z "$_main_domain" ]; then
2e87e64b 5395 _usage "Usage: $PROJECT_ENTRY --install-cert --domain <domain.tld> [--ecc] [--cert-file <file>] [--key-file <file>] [--ca-file <file>] [ --reloadcmd <command>] [--fullchain-file <file>]"
4c3b3608 5396 return 1
5397 fi
5398
85e1f4ea 5399 _real_cert="$2"
5400 _real_key="$3"
5401 _real_ca="$4"
5402 _reload_cmd="$5"
5403 _real_fullchain="$6"
43822d37 5404 _isEcc="$7"
5405
85e1f4ea 5406 _initpath "$_main_domain" "$_isEcc"
4c2a3841 5407 if [ ! -d "$DOMAIN_PATH" ]; then
9672c6b8 5408 _err "The domain '$_main_domain' is not a cert name. You must use the cert name to specify the cert to install."
5409 _err "Can not find path:'$DOMAIN_PATH'"
43822d37 5410 return 1
5411 fi
5412
85e1f4ea 5413 _savedomainconf "Le_RealCertPath" "$_real_cert"
5414 _savedomainconf "Le_RealCACertPath" "$_real_ca"
5415 _savedomainconf "Le_RealKeyPath" "$_real_key"
7690f73e 5416 _savedomainconf "Le_ReloadCmd" "$_reload_cmd" "base64"
85e1f4ea 5417 _savedomainconf "Le_RealFullChainPath" "$_real_fullchain"
5418
044da37c 5419 _installcert "$_main_domain" "$_real_cert" "$_real_key" "$_real_ca" "$_real_fullchain" "$_reload_cmd"
43822d37 5420}
4c3b3608 5421
044da37c 5422#domain cert key ca fullchain reloadcmd backup-prefix
43822d37 5423_installcert() {
85e1f4ea 5424 _main_domain="$1"
5425 _real_cert="$2"
5426 _real_key="$3"
5427 _real_ca="$4"
044da37c 5428 _real_fullchain="$5"
5429 _reload_cmd="$6"
5430 _backup_prefix="$7"
4c3b3608 5431
85e1f4ea 5432 if [ "$_real_cert" = "$NO_VALUE" ]; then
5433 _real_cert=""
4d2f38b0 5434 fi
85e1f4ea 5435 if [ "$_real_key" = "$NO_VALUE" ]; then
5436 _real_key=""
4d2f38b0 5437 fi
85e1f4ea 5438 if [ "$_real_ca" = "$NO_VALUE" ]; then
5439 _real_ca=""
4d2f38b0 5440 fi
85e1f4ea 5441 if [ "$_reload_cmd" = "$NO_VALUE" ]; then
5442 _reload_cmd=""
4d2f38b0 5443 fi
85e1f4ea 5444 if [ "$_real_fullchain" = "$NO_VALUE" ]; then
5445 _real_fullchain=""
4d2f38b0 5446 fi
4c2a3841 5447
044da37c 5448 _backup_path="$DOMAIN_BACKUP_PATH/$_backup_prefix"
5449 mkdir -p "$_backup_path"
5450
85e1f4ea 5451 if [ "$_real_cert" ]; then
5452 _info "Installing cert to:$_real_cert"
bd04638d 5453 if [ -f "$_real_cert" ] && [ ! "$_ACME_IS_RENEW" ]; then
044da37c 5454 cp "$_real_cert" "$_backup_path/cert.bak"
4c3b3608 5455 fi
206be3c1 5456 cat "$CERT_PATH" >"$_real_cert" || return 1
4c3b3608 5457 fi
4c2a3841 5458
85e1f4ea 5459 if [ "$_real_ca" ]; then
5460 _info "Installing CA to:$_real_ca"
5461 if [ "$_real_ca" = "$_real_cert" ]; then
5462 echo "" >>"$_real_ca"
206be3c1 5463 cat "$CA_CERT_PATH" >>"$_real_ca" || return 1
4c3b3608 5464 else
bd04638d 5465 if [ -f "$_real_ca" ] && [ ! "$_ACME_IS_RENEW" ]; then
044da37c 5466 cp "$_real_ca" "$_backup_path/ca.bak"
78552b18 5467 fi
206be3c1 5468 cat "$CA_CERT_PATH" >"$_real_ca" || return 1
4c3b3608 5469 fi
5470 fi
5471
85e1f4ea 5472 if [ "$_real_key" ]; then
5473 _info "Installing key to:$_real_key"
bd04638d 5474 if [ -f "$_real_key" ] && [ ! "$_ACME_IS_RENEW" ]; then
044da37c 5475 cp "$_real_key" "$_backup_path/key.bak"
4c3b3608 5476 fi
82014583 5477 if [ -f "$_real_key" ]; then
206be3c1 5478 cat "$CERT_KEY_PATH" >"$_real_key" || return 1
82014583 5479 else
206be3c1 5480 cat "$CERT_KEY_PATH" >"$_real_key" || return 1
7b92371a 5481 chmod 600 "$_real_key"
82014583 5482 fi
4c3b3608 5483 fi
4c2a3841 5484
85e1f4ea 5485 if [ "$_real_fullchain" ]; then
5486 _info "Installing full chain to:$_real_fullchain"
bd04638d 5487 if [ -f "$_real_fullchain" ] && [ ! "$_ACME_IS_RENEW" ]; then
044da37c 5488 cp "$_real_fullchain" "$_backup_path/fullchain.bak"
a63b05a9 5489 fi
206be3c1 5490 cat "$CERT_FULLCHAIN_PATH" >"$_real_fullchain" || return 1
4c2a3841 5491 fi
4c3b3608 5492
85e1f4ea 5493 if [ "$_reload_cmd" ]; then
5494 _info "Run reload cmd: $_reload_cmd"
25555b8c 5495 if (
839bf0e2 5496 export CERT_PATH
5497 export CERT_KEY_PATH
5498 export CA_CERT_PATH
5499 export CERT_FULLCHAIN_PATH
b3f61297 5500 export Le_Domain="$_main_domain"
85e1f4ea 5501 cd "$DOMAIN_PATH" && eval "$_reload_cmd"
839bf0e2 5502 ); then
43822d37 5503 _info "$(__green "Reload success")"
4d2f38b0 5504 else
5505 _err "Reload error for :$Le_Domain"
5506 fi
5507 fi
5508
4c3b3608 5509}
5510
77f96b38 5511__read_password() {
5512 unset _pp
5513 prompt="Enter Password:"
0b04a7f1 5514 while IFS= read -p "$prompt" -r -s -n 1 char; do
5515 if [ "$char" = $'\0' ]; then
4ebad105 5516 break
0b04a7f1 5517 fi
5518 prompt='*'
5519 _pp="$_pp$char"
77f96b38 5520 done
5521 echo "$_pp"
5522}
5523
5524_install_win_taskscheduler() {
5525 _lesh="$1"
5526 _centry="$2"
5527 _randomminute="$3"
5528 if ! _exists cygpath; then
5529 _err "cygpath not found"
5530 return 1
5531 fi
5532 if ! _exists schtasks; then
5533 _err "schtasks.exe is not found, are you on Windows?"
5534 return 1
5535 fi
5536 _winbash="$(cygpath -w $(which bash))"
5537 _debug _winbash "$_winbash"
5538 if [ -z "$_winbash" ]; then
5539 _err "can not find bash path"
5540 return 1
5541 fi
5542 _myname="$(whoami)"
5543 _debug "_myname" "$_myname"
5544 if [ -z "$_myname" ]; then
5545 _err "can not find my user name"
5546 return 1
5547 fi
5548 _debug "_lesh" "$_lesh"
5549
5550 _info "To install scheduler task in your Windows account, you must input your windows password."
5551 _info "$PROJECT_NAME doesn't save your password."
5552 _info "Please input your Windows password for: $(__green "$_myname")"
5553 _password="$(__read_password)"
5554 #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
5555 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
5556 echo
5557
5558}
5559
5560_uninstall_win_taskscheduler() {
5561 if ! _exists schtasks; then
5562 _err "schtasks.exe is not found, are you on Windows?"
5563 return 1
5564 fi
5565 if ! echo SCHTASKS /query /tn "$_WINDOWS_SCHEDULER_NAME" | cmd.exe >/dev/null; then
5566 _debug "scheduler $_WINDOWS_SCHEDULER_NAME is not found."
5567 else
5568 _info "Removing $_WINDOWS_SCHEDULER_NAME"
0b04a7f1 5569 echo SCHTASKS /delete /f /tn "$_WINDOWS_SCHEDULER_NAME" | cmd.exe >/dev/null
77f96b38 5570 fi
5571}
5572
27dbe77f 5573#confighome
4c3b3608 5574installcronjob() {
27dbe77f 5575 _c_home="$1"
4c3b3608 5576 _initpath
415f375c 5577 _CRONTAB="crontab"
77f96b38 5578 if [ -f "$LE_WORKING_DIR/$PROJECT_ENTRY" ]; then
5579 lesh="\"$LE_WORKING_DIR\"/$PROJECT_ENTRY"
5580 else
5581 _err "Can not install cronjob, $PROJECT_ENTRY not found."
5582 return 1
5583 fi
5584 if [ "$_c_home" ]; then
5585 _c_entry="--config-home \"$_c_home\" "
5586 fi
5587 _t=$(_time)
5588 random_minute=$(_math $_t % 60)
5589
415f375c 5590 if ! _exists "$_CRONTAB" && _exists "fcrontab"; then
5591 _CRONTAB="fcrontab"
5592 fi
77f96b38 5593
415f375c 5594 if ! _exists "$_CRONTAB"; then
77f96b38 5595 if _exists cygpath && _exists schtasks.exe; then
5596 _info "It seems you are on Windows, let's install Windows scheduler task."
5597 if _install_win_taskscheduler "$lesh" "$_c_entry" "$random_minute"; then
5598 _info "Install Windows scheduler task success."
5599 return 0
5600 else
5601 _err "Install Windows scheduler task failed."
5602 return 1
5603 fi
5604 fi
415f375c 5605 _err "crontab/fcrontab doesn't exist, so, we can not install cron jobs."
77546ea5 5606 _err "All your certs will not be renewed automatically."
a7b7355d 5607 _err "You must add your own cron job to call '$PROJECT_ENTRY --cron' everyday."
77546ea5 5608 return 1
5609 fi
4c3b3608 5610 _info "Installing cron job"
415f375c 5611 if ! $_CRONTAB -l | grep "$PROJECT_ENTRY --cron"; then
e2c939fb 5612 if _exists uname && uname -a | grep SunOS >/dev/null; then
415f375c 5613 $_CRONTAB -l | {
4c2a3841 5614 cat
0533bde9 5615 echo "$random_minute 0 * * * $lesh --cron --home \"$LE_WORKING_DIR\" $_c_entry> /dev/null"
415f375c 5616 } | $_CRONTAB --
22ea4004 5617 else
415f375c 5618 $_CRONTAB -l | {
4c2a3841 5619 cat
0533bde9 5620 echo "$random_minute 0 * * * $lesh --cron --home \"$LE_WORKING_DIR\" $_c_entry> /dev/null"
415f375c 5621 } | $_CRONTAB -
22ea4004 5622 fi
4c3b3608 5623 fi
4c2a3841 5624 if [ "$?" != "0" ]; then
4c3b3608 5625 _err "Install cron job failed. You need to manually renew your certs."
5626 _err "Or you can add cronjob by yourself:"
a7b7355d 5627 _err "$lesh --cron --home \"$LE_WORKING_DIR\" > /dev/null"
4c3b3608 5628 return 1
5629 fi
5630}
5631
5632uninstallcronjob() {
415f375c 5633 _CRONTAB="crontab"
5634 if ! _exists "$_CRONTAB" && _exists "fcrontab"; then
5635 _CRONTAB="fcrontab"
5636 fi
5637
5638 if ! _exists "$_CRONTAB"; then
77f96b38 5639 if _exists cygpath && _exists schtasks.exe; then
5640 _info "It seems you are on Windows, let's uninstall Windows scheduler task."
5641 if _uninstall_win_taskscheduler; then
5642 _info "Uninstall Windows scheduler task success."
5643 return 0
5644 else
5645 _err "Uninstall Windows scheduler task failed."
5646 return 1
5647 fi
5648 fi
37db5b81 5649 return
5650 fi
4c3b3608 5651 _info "Removing cron job"
415f375c 5652 cr="$($_CRONTAB -l | grep "$PROJECT_ENTRY --cron")"
4c2a3841 5653 if [ "$cr" ]; then
5654 if _exists uname && uname -a | grep solaris >/dev/null; then
415f375c 5655 $_CRONTAB -l | sed "/$PROJECT_ENTRY --cron/d" | $_CRONTAB --
22ea4004 5656 else
415f375c 5657 $_CRONTAB -l | sed "/$PROJECT_ENTRY --cron/d" | $_CRONTAB -
22ea4004 5658 fi
a7b7355d 5659 LE_WORKING_DIR="$(echo "$cr" | cut -d ' ' -f 9 | tr -d '"')"
4c3b3608 5660 _info LE_WORKING_DIR "$LE_WORKING_DIR"
27dbe77f 5661 if _contains "$cr" "--config-home"; then
f5b546b3 5662 LE_CONFIG_HOME="$(echo "$cr" | cut -d ' ' -f 11 | tr -d '"')"
5663 _debug LE_CONFIG_HOME "$LE_CONFIG_HOME"
27dbe77f 5664 fi
4c2a3841 5665 fi
4c3b3608 5666 _initpath
a7b7355d 5667
4c3b3608 5668}
5669
1041c9f9 5670#domain isECC revokeReason
6cb415f5 5671revoke() {
5672 Le_Domain="$1"
4c2a3841 5673 if [ -z "$Le_Domain" ]; then
2e87e64b 5674 _usage "Usage: $PROJECT_ENTRY --revoke --domain <domain.tld> [--ecc]"
6cb415f5 5675 return 1
5676 fi
4c2a3841 5677
43822d37 5678 _isEcc="$2"
1041c9f9 5679 _reason="$3"
5680 if [ -z "$_reason" ]; then
5681 _reason="0"
5682 fi
c4a375b3 5683 _initpath "$Le_Domain" "$_isEcc"
4c2a3841 5684 if [ ! -f "$DOMAIN_CONF" ]; then
6cb415f5 5685 _err "$Le_Domain is not a issued domain, skip."
4c2a3841 5686 return 1
6cb415f5 5687 fi
4c2a3841 5688
5689 if [ ! -f "$CERT_PATH" ]; then
6cb415f5 5690 _err "Cert for $Le_Domain $CERT_PATH is not found, skip."
5691 return 1
5692 fi
6cb415f5 5693
11927a76 5694 cert="$(_getfile "${CERT_PATH}" "${BEGIN_CERT}" "${END_CERT}" | tr -d "\r\n" | _url_replace)"
4c2a3841 5695
5696 if [ -z "$cert" ]; then
6cb415f5 5697 _err "Cert for $Le_Domain is empty found, skip."
5698 return 1
5699 fi
4c2a3841 5700
48d9a8c1 5701 _initAPI
5702
af3ea2d4 5703 data="{\"certificate\": \"$cert\",\"reason\":$_reason}"
5704
48d9a8c1 5705 uri="${ACME_REVOKE_CERT}"
6cb415f5 5706
4c2a3841 5707 if [ -f "$CERT_KEY_PATH" ]; then
1befee5a 5708 _info "Try domain key first."
c4a375b3 5709 if _send_signed_request "$uri" "$data" "" "$CERT_KEY_PATH"; then
4c2a3841 5710 if [ -z "$response" ]; then
1befee5a 5711 _info "Revoke success."
c4a375b3 5712 rm -f "$CERT_PATH"
1befee5a 5713 return 0
4c2a3841 5714 else
1befee5a 5715 _err "Revoke error by domain key."
5716 _err "$response"
5717 fi
6cb415f5 5718 fi
4c2a3841 5719 else
eca57bee 5720 _info "Domain key file doesn't exist."
6cb415f5 5721 fi
6cb415f5 5722
1befee5a 5723 _info "Try account key."
6cb415f5 5724
c4a375b3 5725 if _send_signed_request "$uri" "$data" "" "$ACCOUNT_KEY_PATH"; then
4c2a3841 5726 if [ -z "$response" ]; then
6cb415f5 5727 _info "Revoke success."
c4a375b3 5728 rm -f "$CERT_PATH"
6cb415f5 5729 return 0
4c2a3841 5730 else
6cb415f5 5731 _err "Revoke error."
c9c31c04 5732 _debug "$response"
6cb415f5 5733 fi
5734 fi
5735 return 1
5736}
4c3b3608 5737
78f0201d 5738#domain ecc
5739remove() {
5740 Le_Domain="$1"
5741 if [ -z "$Le_Domain" ]; then
2e87e64b 5742 _usage "Usage: $PROJECT_ENTRY --remove --domain <domain.tld> [--ecc]"
78f0201d 5743 return 1
5744 fi
5745
5746 _isEcc="$2"
5747
5748 _initpath "$Le_Domain" "$_isEcc"
5749 _removed_conf="$DOMAIN_CONF.removed"
5750 if [ ! -f "$DOMAIN_CONF" ]; then
5751 if [ -f "$_removed_conf" ]; then
5752 _err "$Le_Domain is already removed, You can remove the folder by yourself: $DOMAIN_PATH"
5753 else
5754 _err "$Le_Domain is not a issued domain, skip."
5755 fi
5756 return 1
5757 fi
5758
5759 if mv "$DOMAIN_CONF" "$_removed_conf"; then
68aea3af 5760 _info "$Le_Domain is removed, the key and cert files are in $(__green $DOMAIN_PATH)"
78f0201d 5761 _info "You can remove them by yourself."
5762 return 0
5763 else
5764 _err "Remove $Le_Domain failed."
5765 return 1
5766 fi
5767}
5768
0c00e870 5769#domain vtype
5770_deactivate() {
5771 _d_domain="$1"
5772 _d_type="$2"
5773 _initpath
4c2a3841 5774
af3ea2d4 5775 _identifiers="{\"type\":\"dns\",\"value\":\"$_d_domain\"}"
5776 if ! _send_signed_request "$ACME_NEW_ORDER" "{\"identifiers\": [$_identifiers]}"; then
5777 _err "Can not get domain new order."
5778 return 1
5779 fi
5780 _authorizations_seg="$(echo "$response" | _egrep_o '"authorizations" *: *\[[^\]*\]' | cut -d '[' -f 2 | tr -d ']' | tr -d '"')"
5781 _debug2 _authorizations_seg "$_authorizations_seg"
5782 if [ -z "$_authorizations_seg" ]; then
5783 _err "_authorizations_seg not found."
5784 _clearup
5785 _on_issue_err "$_post_hook"
5786 return 1
5787 fi
d2cde379 5788
af3ea2d4 5789 authzUri="$_authorizations_seg"
5790 _debug2 "authzUri" "$authzUri"
5791 if ! _send_signed_request "$authzUri"; then
5792 _err "get to authz error."
5793 _err "_authorizations_seg" "$_authorizations_seg"
5794 _err "authzUri" "$authzUri"
5795 _clearup
5796 _on_issue_err "$_post_hook"
5797 return 1
14d7bfda 5798 fi
0c00e870 5799
af3ea2d4 5800 response="$(echo "$response" | _normalizeJson)"
5801 _debug2 response "$response"
5802 _URL_NAME="url"
5803
cc8f2afc 5804 entries="$(echo "$response" | tr '][' '==' | _egrep_o "challenges\": *=[^=]*=" | tr '}{' '\n' | grep "\"status\": *\"valid\"")"
14d7bfda 5805 if [ -z "$entries" ]; then
5806 _info "No valid entries found."
5807 if [ -z "$thumbprint" ]; then
5808 thumbprint="$(__calc_account_thumbprint)"
5809 fi
5810 _debug "Trigger validation."
d2cde379 5811 vtype="$VTYPE_DNS"
d0d74907 5812 entry="$(echo "$response" | _egrep_o '[^\{]*"type":"'$vtype'"[^\}]*')"
14d7bfda 5813 _debug entry "$entry"
5814 if [ -z "$entry" ]; then
5815 _err "Error, can not get domain token $d"
0c00e870 5816 return 1
5817 fi
d0d74907 5818 token="$(echo "$entry" | _egrep_o '"token":"[^"]*' | cut -d : -f 2 | tr -d '"')"
14d7bfda 5819 _debug token "$token"
4c2a3841 5820
d0d74907 5821 uri="$(echo "$entry" | _egrep_o "\"$_URL_NAME\":\"[^\"]*" | cut -d : -f 2,3 | tr -d '"')"
14d7bfda 5822 _debug uri "$uri"
5823
5824 keyauthorization="$token.$thumbprint"
5825 _debug keyauthorization "$keyauthorization"
5826 __trigger_validation "$uri" "$keyauthorization"
5827
5828 fi
5829
5830 _d_i=0
5831 _d_max_retry=$(echo "$entries" | wc -l)
5832 while [ "$_d_i" -lt "$_d_max_retry" ]; do
5833 _info "Deactivate: $_d_domain"
5834 _d_i="$(_math $_d_i + 1)"
5835 entry="$(echo "$entries" | sed -n "${_d_i}p")"
0c00e870 5836 _debug entry "$entry"
4c2a3841 5837
5838 if [ -z "$entry" ]; then
fb2029e7 5839 _info "No more valid entry found."
0c00e870 5840 break
5841 fi
4c2a3841 5842
d0d74907 5843 _vtype="$(echo "$entry" | _egrep_o '"type": *"[^"]*"' | cut -d : -f 2 | tr -d '"')"
c4a375b3 5844 _debug _vtype "$_vtype"
0c00e870 5845 _info "Found $_vtype"
5846
199ca77c 5847 uri="$(echo "$entry" | _egrep_o "\"$_URL_NAME\":\"[^\"]*\"" | tr -d '" ' | cut -d : -f 2-)"
c4a375b3 5848 _debug uri "$uri"
4c2a3841 5849
5850 if [ "$_d_type" ] && [ "$_d_type" != "$_vtype" ]; then
0c00e870 5851 _info "Skip $_vtype"
5852 continue
5853 fi
4c2a3841 5854
0c00e870 5855 _info "Deactivate: $_vtype"
4c2a3841 5856
af3ea2d4 5857 _djson="{\"status\":\"deactivated\"}"
d2cde379 5858
5859 if _send_signed_request "$authzUri" "$_djson" && _contains "$response" '"deactivated"'; then
14d7bfda 5860 _info "Deactivate: $_vtype success."
5861 else
0c00e870 5862 _err "Can not deactivate $_vtype."
14d7bfda 5863 break
0c00e870 5864 fi
4c2a3841 5865
0c00e870 5866 done
5867 _debug "$_d_i"
14d7bfda 5868 if [ "$_d_i" -eq "$_d_max_retry" ]; then
0c00e870 5869 _info "Deactivated success!"
5870 else
5871 _err "Deactivate failed."
5872 fi
5873
5874}
5875
5876deactivate() {
3f4513b3 5877 _d_domain_list="$1"
0c00e870 5878 _d_type="$2"
5879 _initpath
a3bdaa85 5880 _initAPI
3f4513b3 5881 _debug _d_domain_list "$_d_domain_list"
4c2a3841 5882 if [ -z "$(echo $_d_domain_list | cut -d , -f 1)" ]; then
2e87e64b 5883 _usage "Usage: $PROJECT_ENTRY --deactivate --domain <domain.tld> [--domain <domain2.tld> ...]"
0c00e870 5884 return 1
5885 fi
4c2a3841 5886 for _d_dm in $(echo "$_d_domain_list" | tr ',' ' '); do
5887 if [ -z "$_d_dm" ] || [ "$_d_dm" = "$NO_VALUE" ]; then
3f4513b3 5888 continue
5889 fi
c4a375b3 5890 if ! _deactivate "$_d_dm" "$_d_type"; then
86c017ec 5891 return 1
5892 fi
3f4513b3 5893 done
0c00e870 5894}
5895
4c3b3608 5896# Detect profile file if not specified as environment variable
5897_detect_profile() {
4c2a3841 5898 if [ -n "$PROFILE" -a -f "$PROFILE" ]; then
4c3b3608 5899 echo "$PROFILE"
5900 return
5901 fi
5902
4c3b3608 5903 DETECTED_PROFILE=''
4c3b3608 5904 SHELLTYPE="$(basename "/$SHELL")"
5905
4c2a3841 5906 if [ "$SHELLTYPE" = "bash" ]; then
5907 if [ -f "$HOME/.bashrc" ]; then
4c3b3608 5908 DETECTED_PROFILE="$HOME/.bashrc"
4c2a3841 5909 elif [ -f "$HOME/.bash_profile" ]; then
4c3b3608 5910 DETECTED_PROFILE="$HOME/.bash_profile"
5911 fi
4c2a3841 5912 elif [ "$SHELLTYPE" = "zsh" ]; then
4c3b3608 5913 DETECTED_PROFILE="$HOME/.zshrc"
5914 fi
5915
4c2a3841 5916 if [ -z "$DETECTED_PROFILE" ]; then
5917 if [ -f "$HOME/.profile" ]; then
4c3b3608 5918 DETECTED_PROFILE="$HOME/.profile"
4c2a3841 5919 elif [ -f "$HOME/.bashrc" ]; then
4c3b3608 5920 DETECTED_PROFILE="$HOME/.bashrc"
4c2a3841 5921 elif [ -f "$HOME/.bash_profile" ]; then
4c3b3608 5922 DETECTED_PROFILE="$HOME/.bash_profile"
4c2a3841 5923 elif [ -f "$HOME/.zshrc" ]; then
4c3b3608 5924 DETECTED_PROFILE="$HOME/.zshrc"
5925 fi
5926 fi
5927
1be222f6 5928 echo "$DETECTED_PROFILE"
4c3b3608 5929}
5930
5931_initconf() {
5932 _initpath
4c2a3841 5933 if [ ! -f "$ACCOUNT_CONF_PATH" ]; then
0ca5b799 5934 echo "
d404e92d 5935
d0871bda 5936#LOG_FILE=\"$DEFAULT_LOG_FILE\"
6b500036 5937#LOG_LEVEL=1
5ea6e9c9 5938
251d1c5c 5939#AUTO_UPGRADE=\"1\"
89002ed2 5940
569d6c55 5941#NO_TIMESTAMP=1
5b771039 5942
d5ec5f80 5943 " >"$ACCOUNT_CONF_PATH"
4c3b3608 5944 fi
5945}
5946
c8e9a31e 5947# nocron
c60883ef 5948_precheck() {
c8e9a31e 5949 _nocron="$1"
4c2a3841 5950
5951 if ! _exists "curl" && ! _exists "wget"; then
c60883ef 5952 _err "Please install curl or wget first, we need to access http resources."
4c3b3608 5953 return 1
5954 fi
4c2a3841 5955
5956 if [ -z "$_nocron" ]; then
415f375c 5957 if ! _exists "crontab" && ! _exists "fcrontab"; then
77f96b38 5958 if _exists cygpath && _exists schtasks.exe; then
5959 _info "It seems you are on Windows, we will install Windows scheduler task."
5960 else
5961 _err "It is recommended to install crontab first. try to install 'cron, crontab, crontabs or vixie-cron'."
5962 _err "We need to set cron job to renew the certs automatically."
5963 _err "Otherwise, your certs will not be able to be renewed automatically."
5964 if [ -z "$FORCE" ]; then
5965 _err "Please add '--force' and try install again to go without crontab."
5966 _err "./$PROJECT_ENTRY --install --force"
5967 return 1
5968 fi
c8e9a31e 5969 fi
77546ea5 5970 fi
4c3b3608 5971 fi
4c2a3841 5972
d8ba26e6 5973 if ! _exists "${ACME_OPENSSL_BIN:-openssl}"; then
851fedf7 5974 _err "Please install openssl first. ACME_OPENSSL_BIN=$ACME_OPENSSL_BIN"
c60883ef 5975 _err "We need openssl to generate keys."
4c3b3608 5976 return 1
5977 fi
4c2a3841 5978
3794b5cb 5979 if ! _exists "socat"; then
5980 _err "It is recommended to install socat first."
5981 _err "We use socat for standalone server if you use standalone mode."
c60883ef 5982 _err "If you don't use standalone mode, just ignore this warning."
5983 fi
4c2a3841 5984
c60883ef 5985 return 0
5986}
5987
0a7c9364 5988_setShebang() {
5989 _file="$1"
5990 _shebang="$2"
4c2a3841 5991 if [ -z "$_shebang" ]; then
43822d37 5992 _usage "Usage: file shebang"
0a7c9364 5993 return 1
5994 fi
5995 cp "$_file" "$_file.tmp"
4c2a3841 5996 echo "$_shebang" >"$_file"
5997 sed -n 2,99999p "$_file.tmp" >>"$_file"
5998 rm -f "$_file.tmp"
0a7c9364 5999}
6000
27dbe77f 6001#confighome
94dc5f33 6002_installalias() {
27dbe77f 6003 _c_home="$1"
94dc5f33 6004 _initpath
6005
6006 _envfile="$LE_WORKING_DIR/$PROJECT_ENTRY.env"
4c2a3841 6007 if [ "$_upgrading" ] && [ "$_upgrading" = "1" ]; then
44edb2bd 6008 echo "$(cat "$_envfile")" | sed "s|^LE_WORKING_DIR.*$||" >"$_envfile"
6009 echo "$(cat "$_envfile")" | sed "s|^alias le.*$||" >"$_envfile"
6010 echo "$(cat "$_envfile")" | sed "s|^alias le.sh.*$||" >"$_envfile"
94dc5f33 6011 fi
6012
27dbe77f 6013 if [ "$_c_home" ]; then
be83a6a3 6014 _c_entry=" --config-home '$_c_home'"
27dbe77f 6015 fi
6016
1786a5e5 6017 _setopt "$_envfile" "export LE_WORKING_DIR" "=" "\"$LE_WORKING_DIR\""
f5b546b3 6018 if [ "$_c_home" ]; then
6019 _setopt "$_envfile" "export LE_CONFIG_HOME" "=" "\"$LE_CONFIG_HOME\""
d04434e3 6020 else
6021 _sed_i "/^export LE_CONFIG_HOME/d" "$_envfile"
f5b546b3 6022 fi
be83a6a3 6023 _setopt "$_envfile" "alias $PROJECT_ENTRY" "=" "\"$LE_WORKING_DIR/$PROJECT_ENTRY$_c_entry\""
94dc5f33 6024
6025 _profile="$(_detect_profile)"
4c2a3841 6026 if [ "$_profile" ]; then
94dc5f33 6027 _debug "Found profile: $_profile"
aba5c634 6028 _info "Installing alias to '$_profile'"
94dc5f33 6029 _setopt "$_profile" ". \"$_envfile\""
6030 _info "OK, Close and reopen your terminal to start using $PROJECT_NAME"
6031 else
6032 _info "No profile is found, you will need to go into $LE_WORKING_DIR to use $PROJECT_NAME"
6033 fi
94dc5f33 6034
6035 #for csh
6036 _cshfile="$LE_WORKING_DIR/$PROJECT_ENTRY.csh"
94dc5f33 6037 _csh_profile="$HOME/.cshrc"
4c2a3841 6038 if [ -f "$_csh_profile" ]; then
aba5c634 6039 _info "Installing alias to '$_csh_profile'"
6626371d 6040 _setopt "$_cshfile" "setenv LE_WORKING_DIR" " " "\"$LE_WORKING_DIR\""
f5b546b3 6041 if [ "$_c_home" ]; then
6042 _setopt "$_cshfile" "setenv LE_CONFIG_HOME" " " "\"$LE_CONFIG_HOME\""
d04434e3 6043 else
6044 _sed_i "/^setenv LE_CONFIG_HOME/d" "$_cshfile"
f5b546b3 6045 fi
be83a6a3 6046 _setopt "$_cshfile" "alias $PROJECT_ENTRY" " " "\"$LE_WORKING_DIR/$PROJECT_ENTRY$_c_entry\""
4c2a3841 6047 _setopt "$_csh_profile" "source \"$_cshfile\""
94dc5f33 6048 fi
4c2a3841 6049
acafa585 6050 #for tcsh
6051 _tcsh_profile="$HOME/.tcshrc"
4c2a3841 6052 if [ -f "$_tcsh_profile" ]; then
aba5c634 6053 _info "Installing alias to '$_tcsh_profile'"
acafa585 6054 _setopt "$_cshfile" "setenv LE_WORKING_DIR" " " "\"$LE_WORKING_DIR\""
f5b546b3 6055 if [ "$_c_home" ]; then
6056 _setopt "$_cshfile" "setenv LE_CONFIG_HOME" " " "\"$LE_CONFIG_HOME\""
6057 fi
be83a6a3 6058 _setopt "$_cshfile" "alias $PROJECT_ENTRY" " " "\"$LE_WORKING_DIR/$PROJECT_ENTRY$_c_entry\""
4c2a3841 6059 _setopt "$_tcsh_profile" "source \"$_cshfile\""
acafa585 6060 fi
94dc5f33 6061
6062}
6063
58c4eaaf 6064# nocron confighome noprofile accountemail
c60883ef 6065install() {
f3e4cea3 6066
4c2a3841 6067 if [ -z "$LE_WORKING_DIR" ]; then
f3e4cea3 6068 LE_WORKING_DIR="$DEFAULT_INSTALL_HOME"
6069 fi
4c2a3841 6070
c8e9a31e 6071 _nocron="$1"
27dbe77f 6072 _c_home="$2"
86ef0a26 6073 _noprofile="$3"
58c4eaaf 6074 _accountemail="$4"
6075
4c2a3841 6076 if ! _initpath; then
c60883ef 6077 _err "Install failed."
4c3b3608 6078 return 1
6079 fi
4c2a3841 6080 if [ "$_nocron" ]; then
52677b0a 6081 _debug "Skip install cron job"
6082 fi
4c2a3841 6083
bd04638d 6084 if [ "$_ACME_IN_CRON" != "1" ]; then
4356eefb 6085 if ! _precheck "$_nocron"; then
6086 _err "Pre-check failed, can not install."
6087 return 1
6088 fi
4c3b3608 6089 fi
4c2a3841 6090
8e845d9f 6091 if [ -z "$_c_home" ] && [ "$LE_CONFIG_HOME" != "$LE_WORKING_DIR" ]; then
6092 _info "Using config home: $LE_CONFIG_HOME"
6093 _c_home="$LE_CONFIG_HOME"
6094 fi
6095
6cc11ffb 6096 #convert from le
4c2a3841 6097 if [ -d "$HOME/.le" ]; then
6098 for envfile in "le.env" "le.sh.env"; do
6099 if [ -f "$HOME/.le/$envfile" ]; then
6100 if grep "le.sh" "$HOME/.le/$envfile" >/dev/null; then
6101 _upgrading="1"
6102 _info "You are upgrading from le.sh"
6103 _info "Renaming \"$HOME/.le\" to $LE_WORKING_DIR"
6104 mv "$HOME/.le" "$LE_WORKING_DIR"
6105 mv "$LE_WORKING_DIR/$envfile" "$LE_WORKING_DIR/$PROJECT_ENTRY.env"
6106 break
6cc11ffb 6107 fi
6108 fi
6109 done
6110 fi
6111
4c3b3608 6112 _info "Installing to $LE_WORKING_DIR"
635695ec 6113
d04434e3 6114 if [ ! -d "$LE_WORKING_DIR" ]; then
6115 if ! mkdir -p "$LE_WORKING_DIR"; then
6116 _err "Can not create working dir: $LE_WORKING_DIR"
6117 return 1
6118 fi
6119
6120 chmod 700 "$LE_WORKING_DIR"
4a0f23e2 6121 fi
4c2a3841 6122
d04434e3 6123 if [ ! -d "$LE_CONFIG_HOME" ]; then
6124 if ! mkdir -p "$LE_CONFIG_HOME"; then
6125 _err "Can not create config dir: $LE_CONFIG_HOME"
6126 return 1
6127 fi
762978f8 6128
d04434e3 6129 chmod 700 "$LE_CONFIG_HOME"
27dbe77f 6130 fi
6131
d5ec5f80 6132 cp "$PROJECT_ENTRY" "$LE_WORKING_DIR/" && chmod +x "$LE_WORKING_DIR/$PROJECT_ENTRY"
4c3b3608 6133
4c2a3841 6134 if [ "$?" != "0" ]; then
a7b7355d 6135 _err "Install failed, can not copy $PROJECT_ENTRY"
4c3b3608 6136 return 1
6137 fi
6138
a7b7355d 6139 _info "Installed to $LE_WORKING_DIR/$PROJECT_ENTRY"
4c3b3608 6140
bd04638d 6141 if [ "$_ACME_IN_CRON" != "1" ] && [ -z "$_noprofile" ]; then
4356eefb 6142 _installalias "$_c_home"
6143 fi
4c3b3608 6144
4c2a3841 6145 for subf in $_SUB_FOLDERS; do
6146 if [ -d "$subf" ]; then
d5ec5f80 6147 mkdir -p "$LE_WORKING_DIR/$subf"
6148 cp "$subf"/* "$LE_WORKING_DIR"/"$subf"/
a61fe418 6149 fi
6150 done
6151
4c2a3841 6152 if [ ! -f "$ACCOUNT_CONF_PATH" ]; then
4c3b3608 6153 _initconf
6154 fi
6cc11ffb 6155
4c2a3841 6156 if [ "$_DEFAULT_ACCOUNT_CONF_PATH" != "$ACCOUNT_CONF_PATH" ]; then
635695ec 6157 _setopt "$_DEFAULT_ACCOUNT_CONF_PATH" "ACCOUNT_CONF_PATH" "=" "\"$ACCOUNT_CONF_PATH\""
6cc11ffb 6158 fi
6159
4c2a3841 6160 if [ "$_DEFAULT_CERT_HOME" != "$CERT_HOME" ]; then
b2817897 6161 _saveaccountconf "CERT_HOME" "$CERT_HOME"
6162 fi
6163
4c2a3841 6164 if [ "$_DEFAULT_ACCOUNT_KEY_PATH" != "$ACCOUNT_KEY_PATH" ]; then
b2817897 6165 _saveaccountconf "ACCOUNT_KEY_PATH" "$ACCOUNT_KEY_PATH"
6166 fi
4c2a3841 6167
6168 if [ -z "$_nocron" ]; then
27dbe77f 6169 installcronjob "$_c_home"
c8e9a31e 6170 fi
0a7c9364 6171
4c2a3841 6172 if [ -z "$NO_DETECT_SH" ]; then
641989fd 6173 #Modify shebang
4c2a3841 6174 if _exists bash; then
694af4ae 6175 _bash_path="$(bash -c "command -v bash 2>/dev/null")"
6176 if [ -z "$_bash_path" ]; then
6177 _bash_path="$(bash -c 'echo $SHELL')"
6178 fi
6179 fi
6180 if [ "$_bash_path" ]; then
329174b6 6181 _info "Good, bash is found, so change the shebang to use bash as preferred."
694af4ae 6182 _shebang='#!'"$_bash_path"
641989fd 6183 _setShebang "$LE_WORKING_DIR/$PROJECT_ENTRY" "$_shebang"
4c2a3841 6184 for subf in $_SUB_FOLDERS; do
6185 if [ -d "$LE_WORKING_DIR/$subf" ]; then
6186 for _apifile in "$LE_WORKING_DIR/$subf/"*.sh; do
a61fe418 6187 _setShebang "$_apifile" "$_shebang"
6188 done
6189 fi
6190 done
0a7c9364 6191 fi
6192 fi
6193
58c4eaaf 6194 if [ "$_accountemail" ]; then
6195 _saveaccountconf "ACCOUNT_EMAIL" "$_accountemail"
6196 fi
6197
4c3b3608 6198 _info OK
6199}
6200
52677b0a 6201# nocron
4c3b3608 6202uninstall() {
52677b0a 6203 _nocron="$1"
4c2a3841 6204 if [ -z "$_nocron" ]; then
52677b0a 6205 uninstallcronjob
6206 fi
4c3b3608 6207 _initpath
6208
9aa3be7f 6209 _uninstallalias
4c2a3841 6210
d5ec5f80 6211 rm -f "$LE_WORKING_DIR/$PROJECT_ENTRY"
f5b546b3 6212 _info "The keys and certs are in \"$(__green "$LE_CONFIG_HOME")\", you can remove them by yourself."
9aa3be7f 6213
6214}
6215
6216_uninstallalias() {
6217 _initpath
6218
4c3b3608 6219 _profile="$(_detect_profile)"
4c2a3841 6220 if [ "$_profile" ]; then
9aa3be7f 6221 _info "Uninstalling alias from: '$_profile'"
d5ec5f80 6222 text="$(cat "$_profile")"
4c2a3841 6223 echo "$text" | sed "s|^.*\"$LE_WORKING_DIR/$PROJECT_NAME.env\"$||" >"$_profile"
4c3b3608 6224 fi
6225
94dc5f33 6226 _csh_profile="$HOME/.cshrc"
4c2a3841 6227 if [ -f "$_csh_profile" ]; then
9aa3be7f 6228 _info "Uninstalling alias from: '$_csh_profile'"
d5ec5f80 6229 text="$(cat "$_csh_profile")"
4c2a3841 6230 echo "$text" | sed "s|^.*\"$LE_WORKING_DIR/$PROJECT_NAME.csh\"$||" >"$_csh_profile"
94dc5f33 6231 fi
4c2a3841 6232
acafa585 6233 _tcsh_profile="$HOME/.tcshrc"
4c2a3841 6234 if [ -f "$_tcsh_profile" ]; then
9aa3be7f 6235 _info "Uninstalling alias from: '$_csh_profile'"
d5ec5f80 6236 text="$(cat "$_tcsh_profile")"
4c2a3841 6237 echo "$text" | sed "s|^.*\"$LE_WORKING_DIR/$PROJECT_NAME.csh\"$||" >"$_tcsh_profile"
acafa585 6238 fi
4c3b3608 6239
6240}
6241
6242cron() {
bd04638d 6243 export _ACME_IN_CRON=1
89002ed2 6244 _initpath
d8ba26e6 6245 _info "$(__green "===Starting cron===")"
4c2a3841 6246 if [ "$AUTO_UPGRADE" = "1" ]; then
89002ed2 6247 export LE_WORKING_DIR
6248 (
4c2a3841 6249 if ! upgrade; then
6250 _err "Cron:Upgrade failed!"
6251 return 1
6252 fi
89002ed2 6253 )
d5ec5f80 6254 . "$LE_WORKING_DIR/$PROJECT_ENTRY" >/dev/null
1ab63043 6255
4c2a3841 6256 if [ -t 1 ]; then
1ab63043 6257 __INTERACTIVE="1"
6258 fi
4c2a3841 6259
89002ed2 6260 _info "Auto upgraded to: $VER"
6261 fi
4c3b3608 6262 renewAll
cc179731 6263 _ret="$?"
bd04638d 6264 _ACME_IN_CRON=""
d8ba26e6 6265 _info "$(__green "===End cron===")"
0ba95a3d 6266 exit $_ret
4c3b3608 6267}
6268
6269version() {
a63b05a9 6270 echo "$PROJECT"
6271 echo "v$VER"
4c3b3608 6272}
6273
b50e701c 6274# subject content hooks code
6275_send_notify() {
6276 _nsubject="$1"
6277 _ncontent="$2"
6278 _nhooks="$3"
6279 _nerror="$4"
6280
6281 if [ "$NOTIFY_LEVEL" = "$NOTIFY_LEVEL_DISABLE" ]; then
6282 _debug "The NOTIFY_LEVEL is $NOTIFY_LEVEL, disabled, just return."
6283 return 0
6284 fi
6285
6286 if [ -z "$_nhooks" ]; then
6287 _debug "The NOTIFY_HOOK is empty, just return."
6288 return 0
6289 fi
6290
6291 _send_err=0
6292 for _n_hook in $(echo "$_nhooks" | tr ',' " "); do
6293 _n_hook_file="$(_findHook "" $_SUB_FOLDER_NOTIFY "$_n_hook")"
143eac09 6294 _info "Sending via: $_n_hook"
6295 _debug "Found $_n_hook_file for $_n_hook"
75191e71 6296 if [ -z "$_n_hook_file" ]; then
6297 _err "Can not find the hook file for $_n_hook"
6298 continue
6299 fi
b50e701c 6300 if ! (
6301 if ! . "$_n_hook_file"; then
6302 _err "Load file $_n_hook_file error. Please check your api file and try again."
6303 return 1
6304 fi
6305
6306 d_command="${_n_hook}_send"
6307 if ! _exists "$d_command"; then
6308 _err "It seems that your api file is not correct, it must have a function named: $d_command"
6309 return 1
6310 fi
6311
6312 if ! $d_command "$_nsubject" "$_ncontent" "$_nerror"; then
6313 _err "Error send message by $d_command"
6314 return 1
6315 fi
6316
6317 return 0
6318 ); then
6319 _err "Set $_n_hook_file error."
6320 _send_err=1
6321 else
6322 _info "$_n_hook $(__green Success)"
6323 fi
6324 done
6325 return $_send_err
6326
6327}
6328
6329# hook
6330_set_notify_hook() {
6331 _nhooks="$1"
6332
5698bec6 6333 _test_subject="Hello, this is a notification from $PROJECT_NAME"
143eac09 6334 _test_content="If you receive this message, your notification works."
b50e701c 6335
6336 _send_notify "$_test_subject" "$_test_content" "$_nhooks" 0
6337
6338}
6339
6340#[hook] [level] [mode]
6341setnotify() {
6342 _nhook="$1"
6343 _nlevel="$2"
6344 _nmode="$3"
6345
6346 _initpath
6347
6348 if [ -z "$_nhook$_nlevel$_nmode" ]; then
2e87e64b 6349 _usage "Usage: $PROJECT_ENTRY --set-notify [--notify-hook <hookname>] [--notify-level <0|1|2|3>] [--notify-mode <0|1>]"
b50e701c 6350 _usage "$_NOTIFY_WIKI"
6351 return 1
6352 fi
6353
6354 if [ "$_nlevel" ]; then
6355 _info "Set notify level to: $_nlevel"
6356 export "NOTIFY_LEVEL=$_nlevel"
6357 _saveaccountconf "NOTIFY_LEVEL" "$NOTIFY_LEVEL"
6358 fi
6359
6360 if [ "$_nmode" ]; then
6361 _info "Set notify mode to: $_nmode"
6362 export "NOTIFY_MODE=$_nmode"
6363 _saveaccountconf "NOTIFY_MODE" "$NOTIFY_MODE"
6364 fi
6365
6366 if [ "$_nhook" ]; then
6367 _info "Set notify hook to: $_nhook"
6368 if [ "$_nhook" = "$NO_VALUE" ]; then
6369 _info "Clear notify hook"
6370 _clearaccountconf "NOTIFY_HOOK"
6371 else
6372 if _set_notify_hook "$_nhook"; then
6373 export NOTIFY_HOOK="$_nhook"
6374 _saveaccountconf "NOTIFY_HOOK" "$NOTIFY_HOOK"
6375 return 0
6376 else
6377 _err "Can not set notify hook to: $_nhook"
6378 return 1
6379 fi
6380 fi
6381 fi
6382
6383}
6384
4c3b3608 6385showhelp() {
d0871bda 6386 _initpath
4c3b3608 6387 version
2e87e64b 6388 echo "Usage: $PROJECT_ENTRY <command> ... [parameters ...]
a63b05a9 6389Commands:
c0fbe823
CE
6390 -h, --help Show this help message.
6391 -v, --version Show version info.
a7b7355d 6392 --install Install $PROJECT_NAME to your system.
6393 --uninstall Uninstall $PROJECT_NAME, and uninstall the cron job.
d8beaf72 6394 --upgrade Upgrade $PROJECT_NAME to the latest code from $PROJECT.
a63b05a9 6395 --issue Issue a cert.
a61fe418 6396 --deploy Deploy the cert to your server.
d81369d6 6397 -i, --install-cert Install the issued cert to apache/nginx or any other server.
c0fbe823 6398 -r, --renew Renew a cert.
27dbe77f 6399 --renew-all Renew all the certs.
a63b05a9 6400 --revoke Revoke a cert.
47b49f1b 6401 --remove Remove the cert from list of certs known to $PROJECT_NAME.
10afcaca 6402 --list List all the certs.
58150f5d 6403 --to-pkcs12 Export the certificate and key to a pfx file.
d81369d6 6404 --to-pkcs8 Convert to pkcs8 format.
7decf768
CE
6405 --sign-csr Issue a cert from an existing csr.
6406 --show-csr Show the content of a csr.
6407 -ccr, --create-csr Create CSR, professional use.
6408 --create-domain-key Create an domain private key, professional use.
27dbe77f 6409 --update-account Update account info.
6410 --register-account Register account key.
422dd1fa 6411 --deactivate-account Deactivate the account.
0984585d 6412 --create-account-key Create an account private key, professional use.
7decf768
CE
6413 --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.
6414 --uninstall-cronjob Uninstall the cron job. The 'uninstall' command can do this automatically.
6415 --cron Run cron job to renew all the certs.
b50e701c 6416 --set-notify Set the cron notification hook, level or mode.
7decf768 6417 --deactivate Deactivate the domain authz, professional use.
8d0e4851 6418 --set-default-ca Used with '--server', Set the default CA to use.
6419 See: $_SERVER_WIKI
b50e701c 6420
3c07f57a 6421
a63b05a9 6422Parameters:
c0fbe823
CE
6423 -d, --domain <domain.tld> Specifies a domain, used to issue, renew or revoke etc.
6424 --challenge-alias <domain.tld> The challenge domain alias for DNS alias mode.
e3ebd582 6425 See: $_DNS_ALIAS_WIKI
a48c22d1 6426
c0fbe823 6427 --domain-alias <domain.tld> The domain alias for DNS alias mode.
e3ebd582 6428 See: $_DNS_ALIAS_WIKI
a48c22d1 6429
c0fbe823 6430 --preferred-chain <chain> If the CA offers multiple certificate chains, prefer the chain with an issuer matching this Subject Common Name.
e3ebd582 6431 If no match, the default offered chain will be used. (default: empty)
6432 See: $_PREFERRED_CHAIN_WIKI
a48c22d1 6433
c0fbe823
CE
6434 -f, --force Force install, force cert renewal or override sudo restrictions.
6435 --staging, --test Use staging server, for testing.
6436 --debug [0|1|2|3] Output debug info. Defaults to 1 if argument is omitted.
e3ebd582 6437 --output-insecure Output all the sensitive messages.
6438 By default all the credentials/sensitive messages are hidden from the output/debug/log for security.
b086afb2 6439 -w, --webroot <directory> Specifies the web root folder for web root mode.
a63b05a9 6440 --standalone Use standalone mode.
08681f4a 6441 --alpn Use standalone alpn mode.
e3ebd582 6442 --stateless Use stateless mode.
6443 See: $_STATELESS_WIKI
a48c22d1 6444
a63b05a9 6445 --apache Use apache mode.
c0fbe823 6446 --dns [dns_hook] Use dns manual mode or dns api. Defaults to manual mode when argument is omitted.
e3ebd582 6447 See: $_DNS_API_WIKI
a48c22d1 6448
c0fbe823 6449 --dnssleep <seconds> The time in seconds to wait for all the txt records to propagate in dns api mode.
e3ebd582 6450 It's not necessary to use this by default, $PROJECT_NAME polls dns status by DOH automatically.
c0fbe823
CE
6451 -k, --keylength <bits> Specifies the domain key length: 2048, 3072, 4096, 8192 or ec-256, ec-384, ec-521.
6452 -ak, --accountkeylength <bits> Specifies the account key length: 2048, 3072, 4096
b086afb2 6453 --log [file] Specifies the log file. Defaults to \"$DEFAULT_LOG_FILE\" if argument is omitted.
c0fbe823
CE
6454 --log-level <1|2> Specifies the log level, default is 1.
6455 --syslog <0|3|6|7> Syslog level, 0: disable syslog, 3: error, 6: info, 7: debug.
6456 --eab-kid <eab_key_id> Key Identifier for External Account Binding.
6457 --eab-hmac-key <eab_hmac_key> HMAC key for External Account Binding.
2d5f1438
OB
6458
6459
7903fcb4 6460 These parameters are to install the cert to nginx/apache or any other server after issue/renew a cert:
3c07f57a 6461
b086afb2
CE
6462 --cert-file <file> Path to copy the cert file to after issue/renew..
6463 --key-file <file> Path to copy the key file to after issue/renew.
6464 --ca-file <file> Path to copy the intermediate cert file to after issue/renew.
6465 --fullchain-file <file> Path to copy the fullchain cert file to after issue/renew.
c0fbe823 6466 --reloadcmd <command> Command to execute after issue/renew to reload the server.
a63b05a9 6467
c0fbe823 6468 --server <server_uri> ACME Directory Resource URI. (default: $DEFAULT_CA)
e3ebd582 6469 See: $_SERVER_WIKI
6470
c0fbe823
CE
6471 --accountconf <file> Specifies a customized account config file.
6472 --home <directory> Specifies the home dir for $PROJECT_NAME.
6473 --cert-home <directory> Specifies the home dir to save all the certs, only valid for '--install' command.
6474 --config-home <directory> Specifies the home dir to save all the configurations.
6475 --useragent <string> Specifies the user agent string. it will be saved for future use too.
58c4eaaf 6476 -m, --email <email> Specifies the account email, only valid for the '--install' and '--update-account' command.
c0fbe823
CE
6477 --accountkey <file> Specifies the account key path, only valid for the '--install' command.
6478 --days <ndays> Specifies the days to renew the cert when using '--issue' command. The default value is $DEFAULT_RENEW days.
6479 --httpport <port> Specifies the standalone listening port. Only valid if the server is behind a reverse proxy or load balancer.
6480 --tlsport <port> Specifies the standalone tls listening port. Only valid if the server is behind a reverse proxy or load balancer.
6481 --local-address <ip> Specifies the standalone/tls server listening address, in case you have multiple ip addresses.
dcf4f8f6 6482 --listraw Only used for '--list' command, list the certs in raw format.
d81369d6 6483 -se, --stop-renew-on-error Only valid for '--renew-all' command. Stop if one cert has error in renewal.
13d7cae9 6484 --insecure Do not check the server certificate, in some devices, the api server's certificate may not be trusted.
c0fbe823
CE
6485 --ca-bundle <file> Specifies the path to the CA certificate bundle to verify api server's certificate.
6486 --ca-path <directory> Specifies directory containing CA certificates in PEM format, used by wget or curl.
58c4eaaf 6487 --no-cron Only valid for '--install' command, which means: do not install the default cron job.
e3ebd582 6488 In this case, the certs will not be renewed automatically.
58c4eaaf 6489 --no-profile Only valid for '--install' command, which means: do not install aliases to user profile.
2910be82 6490 --no-color Do not output color text.
e32b3aac 6491 --force-color Force output of color text. Useful for non-interactive use with the aha tool for HTML E-Mails.
b67d663a 6492 --ecc Specifies to use the ECC cert. Valid for '--install-cert', '--renew', '--revoke', '--to-pkcs12' and '--create-csr'
c0fbe823
CE
6493 --csr <file> Specifies the input csr.
6494 --pre-hook <command> Command to be run before obtaining any certificates.
6495 --post-hook <command> Command to be run after attempting to obtain/renew certificates. Runs regardless of whether obtain/renew succeeded or failed.
6496 --renew-hook <command> Command to be run after each successfully renewed certificate.
6497 --deploy-hook <hookname> The hook file to deploy cert
6498 --ocsp, --ocsp-must-staple Generate OCSP-Must-Staple extension.
6499 --always-force-new-domain-key Generate new domain key on renewal. Otherwise, the domain key is not changed by default.
6500 --auto-upgrade [0|1] Valid for '--upgrade' command, indicating whether to upgrade automatically in future. Defaults to 1 if argument is omitted.
6ae0f7f5 6501 --listen-v4 Force standalone/tls server to listen at ipv4.
6502 --listen-v6 Force standalone/tls server to listen at ipv6.
c0fbe823 6503 --openssl-bin <file> Specifies a custom openssl bin location.
9b124070 6504 --use-wget Force to use wget, if you have both curl and wget installed.
07fdb087 6505 --yes-I-know-dns-manual-mode-enough-go-ahead-please Force use of dns manual mode.
e3ebd582 6506 See: $_DNS_MANUAL_WIKI
a48c22d1 6507
c0fbe823
CE
6508 -b, --branch <branch> Only valid for '--upgrade' command, specifies the branch name to upgrade to.
6509 --notify-level <0|1|2|3> Set the notification level: Default value is $NOTIFY_LEVEL_DEFAULT.
6510 0: disabled, no notification will be sent.
6511 1: send notifications only when there is an error.
6512 2: send notifications when a cert is successfully renewed, or there is an error.
6513 3: send notifications when a cert is skipped, renewed, or error.
6514 --notify-mode <0|1> Set notification mode. Default value is $NOTIFY_MODE_DEFAULT.
6515 0: Bulk mode. Send all the domain's notifications in one message(mail).
6516 1: Cert mode. Send a message for every single cert.
6517 --notify-hook <hookname> Set the notify hook
6518 --revoke-reason <0-10> The reason for revocation, can be used in conjunction with the '--revoke' command.
e3ebd582 6519 See: $_REVOKE_WIKI
6520
dd6c5c9e
CE
6521 --password <password> Add a password to exported pfx file. Use with --to-pkcs12.
6522
b50e701c 6523
6524"
4c3b3608 6525}
6526
58c4eaaf 6527installOnline() {
4a0f23e2 6528 _info "Installing from online archive."
58c4eaaf 6529
6530 _branch="$BRANCH"
6531 if [ -z "$_branch" ]; then
6532 _branch="master"
4a0f23e2 6533 fi
a8df88ab 6534
58c4eaaf 6535 target="$PROJECT/archive/$_branch.tar.gz"
4a0f23e2 6536 _info "Downloading $target"
58c4eaaf 6537 localname="$_branch.tar.gz"
4c2a3841 6538 if ! _get "$target" >$localname; then
df9547ae 6539 _err "Download error."
4a0f23e2 6540 return 1
6541 fi
0bbe6eef 6542 (
4c2a3841 6543 _info "Extracting $localname"
3a3b0dd5 6544 if ! (tar xzf $localname || gtar xzf $localname); then
6545 _err "Extraction error."
6546 exit 1
6547 fi
4c2a3841 6548
58c4eaaf 6549 cd "$PROJECT_NAME-$_branch"
4c2a3841 6550 chmod +x $PROJECT_ENTRY
58c4eaaf 6551 if ./$PROJECT_ENTRY --install "$@"; then
4c2a3841 6552 _info "Install success!"
ac3667c7 6553 _initpath
cb7e3857 6554 _saveaccountconf "UPGRADE_HASH" "$(_getUpgradeHash)"
4c2a3841 6555 fi
6556
6557 cd ..
6558
58c4eaaf 6559 rm -rf "$PROJECT_NAME-$_branch"
4c2a3841 6560 rm -f "$localname"
0bbe6eef 6561 )
4a0f23e2 6562}
6563
cb7e3857
OB
6564_getRepoHash() {
6565 _hash_path=$1
6566 shift
6567 _hash_url="https://api.github.com/repos/acmesh-official/$PROJECT_NAME/git/refs/$_hash_path"
6568 _get $_hash_url | tr -d "\r\n" | tr '{},' '\n' | grep '"sha":' | cut -d '"' -f 4
6569}
6570
6571_getUpgradeHash() {
f716f606 6572 _b="$BRANCH"
6573 if [ -z "$_b" ]; then
6574 _b="master"
6575 fi
cb7e3857
OB
6576 _hash=$(_getRepoHash "heads/$_b")
6577 if [ -z "$_hash" ]; then _hash=$(_getRepoHash "tags/$_b"); fi
6578 echo $_hash
7a3c61b7 6579}
6580
52677b0a 6581upgrade() {
6582 if (
267f283a 6583 _initpath
cb7e3857 6584 [ -z "$FORCE" ] && [ "$(_getUpgradeHash)" = "$(_readaccountconf "UPGRADE_HASH")" ] && _info "Already uptodate!" && exit 0
267f283a 6585 export LE_WORKING_DIR
d0b748a4 6586 cd "$LE_WORKING_DIR"
58c4eaaf 6587 installOnline "--nocron" "--noprofile"
4c2a3841 6588 ); then
52677b0a 6589 _info "Upgrade success!"
096d8992 6590 exit 0
52677b0a 6591 else
6592 _err "Upgrade failed!"
096d8992 6593 exit 1
52677b0a 6594 fi
6595}
a63b05a9 6596
5ea6e9c9 6597_processAccountConf() {
4c2a3841 6598 if [ "$_useragent" ]; then
5ea6e9c9 6599 _saveaccountconf "USER_AGENT" "$_useragent"
4c2a3841 6600 elif [ "$USER_AGENT" ] && [ "$USER_AGENT" != "$DEFAULT_USER_AGENT" ]; then
d0871bda 6601 _saveaccountconf "USER_AGENT" "$USER_AGENT"
5ea6e9c9 6602 fi
4c2a3841 6603
a746139c 6604 if [ "$_openssl_bin" ]; then
851fedf7 6605 _saveaccountconf "ACME_OPENSSL_BIN" "$_openssl_bin"
6606 elif [ "$ACME_OPENSSL_BIN" ] && [ "$ACME_OPENSSL_BIN" != "$DEFAULT_OPENSSL_BIN" ]; then
6607 _saveaccountconf "ACME_OPENSSL_BIN" "$ACME_OPENSSL_BIN"
a746139c 6608 fi
6609
4c2a3841 6610 if [ "$_auto_upgrade" ]; then
6bf281f9 6611 _saveaccountconf "AUTO_UPGRADE" "$_auto_upgrade"
4c2a3841 6612 elif [ "$AUTO_UPGRADE" ]; then
6bf281f9 6613 _saveaccountconf "AUTO_UPGRADE" "$AUTO_UPGRADE"
6614 fi
4c2a3841 6615
9b124070 6616 if [ "$_use_wget" ]; then
6617 _saveaccountconf "ACME_USE_WGET" "$_use_wget"
6618 elif [ "$ACME_USE_WGET" ]; then
6619 _saveaccountconf "ACME_USE_WGET" "$ACME_USE_WGET"
6620 fi
6621
5ea6e9c9 6622}
6623
5bdfdfef 6624_checkSudo() {
6625 if [ "$SUDO_GID" ] && [ "$SUDO_COMMAND" ] && [ "$SUDO_USER" ] && [ "$SUDO_UID" ]; then
6626 if [ "$SUDO_USER" = "root" ] && [ "$SUDO_UID" = "0" ]; then
6627 #it's root using sudo, no matter it's using sudo or not, just fine
6628 return 0
6629 fi
79ad0ff5 6630 if [ -n "$SUDO_COMMAND" ]; then
996f5337 6631 #it's a normal user doing "sudo su", or `sudo -i` or `sudo -s`, or `sudo su acmeuser1`
6632 _endswith "$SUDO_COMMAND" /bin/su || _contains "$SUDO_COMMAND" "/bin/su " || grep "^$SUDO_COMMAND\$" /etc/shells >/dev/null 2>&1
79ad0ff5 6633 return $?
5bdfdfef 6634 fi
6635 #otherwise
6636 return 1
6637 fi
6638 return 0
6639}
6640
737e9e48 6641#server
6642_selectServer() {
6643 _server="$1"
6644 _server_lower="$(echo "$_server" | _lower_case)"
6645 _sindex=0
6646 for snames in $CA_NAMES; do
6647 snames="$(echo "$snames" | _lower_case)"
6648 _sindex="$(_math $_sindex + 1)"
6649 _debug2 "_selectServer try snames" "$snames"
6650 for sname in $(echo "$snames" | tr ',' ' '); do
6651 if [ "$_server_lower" = "$sname" ]; then
6652 _debug2 "_selectServer match $sname"
6653 _serverdir="$(_getfield "$CA_SERVERS" $_sindex)"
6654 _debug "Selected server: $_serverdir"
6655 ACME_DIRECTORY="$_serverdir"
6656 export ACME_DIRECTORY
6657 return
6658 fi
6659 done
6660 done
6661 ACME_DIRECTORY="$_server"
6662 export ACME_DIRECTORY
6663}
6664
269847d1 6665#url
6666_getCAShortName() {
6667 caurl="$1"
95ef046d 6668 if [ -z "$caurl" ]; then
6669 caurl="$DEFAULT_CA"
6670 fi
269847d1 6671 caurl_lower="$(echo $caurl | _lower_case)"
6672 _sindex=0
6673 for surl in $(echo "$CA_SERVERS" | _lower_case | tr , ' '); do
6674 _sindex="$(_math $_sindex + 1)"
6675 if [ "$caurl_lower" = "$surl" ]; then
6676 _nindex=0
6677 for snames in $CA_NAMES; do
6678 _nindex="$(_math $_nindex + 1)"
6679 if [ $_nindex -ge $_sindex ]; then
6680 _getfield "$snames" 1
6681 return
6682 fi
6683 done
6684 fi
6685 done
6686 echo "$caurl"
6687}
6688
737e9e48 6689#set default ca to $ACME_DIRECTORY
6690setdefaultca() {
6691 if [ -z "$ACME_DIRECTORY" ]; then
6692 _err "Please give a --server parameter."
6693 return 1
6694 fi
6695 _saveaccountconf "DEFAULT_ACME_SERVER" "$ACME_DIRECTORY"
df22f680 6696 _info "Changed default CA to: $(__green "$ACME_DIRECTORY")"
737e9e48 6697}
6698
a63b05a9 6699_process() {
6700 _CMD=""
6701 _domain=""
3f4513b3 6702 _altdomains="$NO_VALUE"
a63b05a9 6703 _webroot=""
875625b1 6704 _challenge_alias=""
bdbf323f 6705 _keylength=""
6706 _accountkeylength=""
5c539af7 6707 _cert_file=""
6708 _key_file=""
6709 _ca_file=""
6710 _fullchain_file=""
4d2f38b0 6711 _reloadcmd=""
a63b05a9 6712 _password=""
635695ec 6713 _accountconf=""
6714 _useragent=""
b5eb4b90 6715 _accountemail=""
6716 _accountkey=""
b2817897 6717 _certhome=""
27dbe77f 6718 _confighome=""
39c8f79f 6719 _httpport=""
e22bcf7c 6720 _tlsport=""
0e38c60d 6721 _dnssleep=""
dcf4f8f6 6722 _listraw=""
cc179731 6723 _stopRenewOnError=""
e3698edd 6724 #_insecure=""
78009539 6725 _ca_bundle=""
2aa75f03 6726 _ca_path=""
c8e9a31e 6727 _nocron=""
61556a54 6728 _noprofile=""
43822d37 6729 _ecc=""
10afcaca 6730 _csr=""
b0070f03 6731 _pre_hook=""
6732 _post_hook=""
6733 _renew_hook=""
a61fe418 6734 _deploy_hook=""
5ea6e9c9 6735 _logfile=""
d0871bda 6736 _log=""
0463b5d6 6737 _local_address=""
a73c5b33 6738 _log_level=""
6bf281f9 6739 _auto_upgrade=""
6ae0f7f5 6740 _listen_v4=""
6741 _listen_v6=""
a746139c 6742 _openssl_bin=""
e2edf208 6743 _syslog=""
9b124070 6744 _use_wget=""
98394f99 6745 _server=""
b50e701c 6746 _notify_hook=""
6747 _notify_level=""
6748 _notify_mode=""
1041c9f9 6749 _revoke_reason=""
f96d91cb 6750 _eab_kid=""
6751 _eab_hmac_key=""
e3ebd582 6752 _preferred_chain=""
4c2a3841 6753 while [ ${#} -gt 0 ]; do
a63b05a9 6754 case "${1}" in
4c2a3841 6755
19c43451 6756 --help | -h)
6757 showhelp
6758 return
6759 ;;
6760 --version | -v)
6761 version
6762 return
6763 ;;
6764 --install)
6765 _CMD="install"
6766 ;;
58c4eaaf 6767 --install-online)
6768 shift
6769 installOnline "$@"
6770 return
6771 ;;
19c43451 6772 --uninstall)
6773 _CMD="uninstall"
6774 ;;
6775 --upgrade)
6776 _CMD="upgrade"
6777 ;;
6778 --issue)
6779 _CMD="issue"
6780 ;;
6781 --deploy)
6782 _CMD="deploy"
6783 ;;
7decf768 6784 --sign-csr | --signcsr)
19c43451 6785 _CMD="signcsr"
6786 ;;
7decf768 6787 --show-csr | --showcsr)
19c43451 6788 _CMD="showcsr"
6789 ;;
7decf768 6790 -i | --install-cert | --installcert)
19c43451 6791 _CMD="installcert"
6792 ;;
6793 --renew | -r)
6794 _CMD="renew"
6795 ;;
7decf768 6796 --renew-all | --renewAll | --renewall)
19c43451 6797 _CMD="renewAll"
6798 ;;
6799 --revoke)
6800 _CMD="revoke"
6801 ;;
6802 --remove)
6803 _CMD="remove"
6804 ;;
6805 --list)
6806 _CMD="list"
6807 ;;
7decf768 6808 --install-cronjob | --installcronjob)
19c43451 6809 _CMD="installcronjob"
6810 ;;
7decf768 6811 --uninstall-cronjob | --uninstallcronjob)
19c43451 6812 _CMD="uninstallcronjob"
6813 ;;
6814 --cron)
6815 _CMD="cron"
6816 ;;
1521199e 6817 --to-pkcs12 | --to-pkcs | --toPkcs)
19c43451 6818 _CMD="toPkcs"
6819 ;;
7decf768 6820 --to-pkcs8 | --toPkcs8)
19c43451 6821 _CMD="toPkcs8"
6822 ;;
7decf768 6823 --create-account-key | --createAccountKey | --createaccountkey | -cak)
19c43451 6824 _CMD="createAccountKey"
6825 ;;
7decf768 6826 --create-domain-key | --createDomainKey | --createdomainkey | -cdk)
19c43451 6827 _CMD="createDomainKey"
6828 ;;
7decf768 6829 -ccr | --create-csr | --createCSR | --createcsr)
19c43451 6830 _CMD="createCSR"
6831 ;;
6832 --deactivate)
6833 _CMD="deactivate"
6834 ;;
7decf768 6835 --update-account | --updateaccount)
19c43451 6836 _CMD="updateaccount"
6837 ;;
7decf768 6838 --register-account | --registeraccount)
19c43451 6839 _CMD="registeraccount"
6840 ;;
6841 --deactivate-account)
6842 _CMD="deactivateaccount"
6843 ;;
6844 --set-notify)
6845 _CMD="setnotify"
6846 ;;
6847 --set-default-ca)
6848 _CMD="setdefaultca"
6849 ;;
7decf768 6850 -d | --domain)
19c43451 6851 _dvalue="$2"
4c2a3841 6852
19c43451 6853 if [ "$_dvalue" ]; then
6854 if _startswith "$_dvalue" "-"; then
6855 _err "'$_dvalue' is not a valid domain for parameter '$1'"
6856 return 1
6857 fi
6858 if _is_idn "$_dvalue" && ! _exists idn; then
6859 _err "It seems that $_dvalue is an IDN( Internationalized Domain Names), please install 'idn' command first."
6860 return 1
6861 fi
4c2a3841 6862
19c43451 6863 if [ -z "$_domain" ]; then
6864 _domain="$_dvalue"
6865 else
6866 if [ "$_altdomains" = "$NO_VALUE" ]; then
6867 _altdomains="$_dvalue"
a63b05a9 6868 else
19c43451 6869 _altdomains="$_altdomains,$_dvalue"
a63b05a9 6870 fi
6871 fi
19c43451 6872 fi
4c2a3841 6873
19c43451 6874 shift
6875 ;;
a63b05a9 6876
7decf768 6877 -f | --force)
19c43451 6878 FORCE="1"
6879 ;;
6880 --staging | --test)
6881 STAGE="1"
6882 ;;
6883 --server)
6884 _server="$2"
6885 _selectServer "$_server"
6886 shift
6887 ;;
6888 --debug)
6889 if [ -z "$2" ] || _startswith "$2" "-"; then
6890 DEBUG="$DEBUG_LEVEL_DEFAULT"
6891 else
6892 DEBUG="$2"
64821ad4 6893 shift
19c43451 6894 fi
6895 ;;
6896 --output-insecure)
6897 export OUTPUT_INSECURE=1
6898 ;;
7decf768 6899 -w | --webroot)
19c43451 6900 wvalue="$2"
6901 if [ -z "$_webroot" ]; then
6902 _webroot="$wvalue"
6903 else
6904 _webroot="$_webroot,$wvalue"
6905 fi
6906 shift
6907 ;;
6908 --challenge-alias)
6909 cvalue="$2"
6910 _challenge_alias="$_challenge_alias$cvalue,"
6911 shift
6912 ;;
6913 --domain-alias)
6914 cvalue="$DNS_ALIAS_PREFIX$2"
6915 _challenge_alias="$_challenge_alias$cvalue,"
6916 shift
6917 ;;
6918 --standalone)
6919 wvalue="$NO_VALUE"
6920 if [ -z "$_webroot" ]; then
6921 _webroot="$wvalue"
6922 else
6923 _webroot="$_webroot,$wvalue"
6924 fi
6925 ;;
6926 --alpn)
6927 wvalue="$W_ALPN"
6928 if [ -z "$_webroot" ]; then
6929 _webroot="$wvalue"
6930 else
6931 _webroot="$_webroot,$wvalue"
6932 fi
6933 ;;
6934 --stateless)
6935 wvalue="$MODE_STATELESS"
6936 if [ -z "$_webroot" ]; then
6937 _webroot="$wvalue"
6938 else
6939 _webroot="$_webroot,$wvalue"
6940 fi
6941 ;;
6942 --local-address)
6943 lvalue="$2"
6944 _local_address="$_local_address$lvalue,"
6945 shift
6946 ;;
6947 --apache)
6948 wvalue="apache"
6949 if [ -z "$_webroot" ]; then
6950 _webroot="$wvalue"
6951 else
6952 _webroot="$_webroot,$wvalue"
6953 fi
6954 ;;
6955 --nginx)
6956 wvalue="$NGINX"
6957 if [ "$2" ] && ! _startswith "$2" "-"; then
6958 wvalue="$NGINX$2"
0463b5d6 6959 shift
19c43451 6960 fi
6961 if [ -z "$_webroot" ]; then
6962 _webroot="$wvalue"
6963 else
6964 _webroot="$_webroot,$wvalue"
6965 fi
6966 ;;
6967 --dns)
6968 wvalue="$W_DNS"
6969 if [ "$2" ] && ! _startswith "$2" "-"; then
6970 wvalue="$2"
0e38c60d 6971 shift
19c43451 6972 fi
6973 if [ -z "$_webroot" ]; then
6974 _webroot="$wvalue"
6975 else
6976 _webroot="$_webroot,$wvalue"
6977 fi
6978 ;;
6979 --dnssleep)
6980 _dnssleep="$2"
6981 Le_DNSSleep="$_dnssleep"
6982 shift
6983 ;;
4c2a3841 6984
19c43451 6985 --keylength | -k)
6986 _keylength="$2"
6987 shift
6988 ;;
7decf768 6989 -ak | --accountkeylength)
19c43451 6990 _accountkeylength="$2"
6991 shift
6992 ;;
a63b05a9 6993
19c43451 6994 --cert-file | --certpath)
6995 _cert_file="$2"
6996 shift
6997 ;;
6998 --key-file | --keypath)
6999 _key_file="$2"
7000 shift
7001 ;;
7002 --ca-file | --capath)
7003 _ca_file="$2"
7004 shift
7005 ;;
7006 --fullchain-file | --fullchainpath)
7007 _fullchain_file="$2"
7008 shift
7009 ;;
7010 --reloadcmd | --reloadCmd)
7011 _reloadcmd="$2"
7012 shift
7013 ;;
7014 --password)
7015 _password="$2"
7016 shift
7017 ;;
7018 --accountconf)
7019 _accountconf="$2"
7020 ACCOUNT_CONF_PATH="$_accountconf"
7021 shift
7022 ;;
7023 --home)
7024 LE_WORKING_DIR="$2"
7025 shift
7026 ;;
7decf768 7027 --cert-home | --certhome)
19c43451 7028 _certhome="$2"
7029 CERT_HOME="$_certhome"
7030 shift
7031 ;;
7032 --config-home)
7033 _confighome="$2"
7034 LE_CONFIG_HOME="$_confighome"
7035 shift
7036 ;;
7037 --useragent)
7038 _useragent="$2"
7039 USER_AGENT="$_useragent"
7040 shift
7041 ;;
58c4eaaf 7042 -m | --email | --accountemail)
19c43451 7043 _accountemail="$2"
58c4eaaf 7044 export ACCOUNT_EMAIL="$_accountemail"
19c43451 7045 shift
7046 ;;
7047 --accountkey)
7048 _accountkey="$2"
7049 ACCOUNT_KEY_PATH="$_accountkey"
7050 shift
7051 ;;
7052 --days)
7053 _days="$2"
7054 Le_RenewalDays="$_days"
7055 shift
7056 ;;
7057 --httpport)
7058 _httpport="$2"
7059 Le_HTTPPort="$_httpport"
7060 shift
7061 ;;
7062 --tlsport)
7063 _tlsport="$2"
7064 Le_TLSPort="$_tlsport"
7065 shift
7066 ;;
7067 --listraw)
7068 _listraw="raw"
7069 ;;
7decf768 7070 -se | --stop-renew-on-error | --stopRenewOnError | --stoprenewonerror)
19c43451 7071 _stopRenewOnError="1"
7072 ;;
7073 --insecure)
7074 #_insecure="1"
7075 HTTPS_INSECURE="1"
7076 ;;
7077 --ca-bundle)
7078 _ca_bundle="$(_readlink "$2")"
7079 CA_BUNDLE="$_ca_bundle"
7080 shift
7081 ;;
7082 --ca-path)
7083 _ca_path="$2"
7084 CA_PATH="$_ca_path"
7085 shift
7086 ;;
58c4eaaf 7087 --no-cron | --nocron)
19c43451 7088 _nocron="1"
7089 ;;
58c4eaaf 7090 --no-profile | --noprofile)
19c43451 7091 _noprofile="1"
7092 ;;
2910be82 7093 --no-color)
19c43451 7094 export ACME_NO_COLOR=1
7095 ;;
7096 --force-color)
7097 export ACME_FORCE_COLOR=1
7098 ;;
7099 --ecc)
7100 _ecc="isEcc"
7101 ;;
7102 --csr)
7103 _csr="$2"
7104 shift
7105 ;;
7106 --pre-hook)
7107 _pre_hook="$2"
7108 shift
7109 ;;
7110 --post-hook)
7111 _post_hook="$2"
7112 shift
7113 ;;
7114 --renew-hook)
7115 _renew_hook="$2"
7116 shift
7117 ;;
7118 --deploy-hook)
7119 if [ -z "$2" ] || _startswith "$2" "-"; then
7120 _usage "Please specify a value for '--deploy-hook'"
7121 return 1
7122 fi
7123 _deploy_hook="$_deploy_hook$2,"
7124 shift
7125 ;;
7126 --ocsp-must-staple | --ocsp)
7127 Le_OCSP_Staple="1"
7128 ;;
7129 --always-force-new-domain-key)
7130 if [ -z "$2" ] || _startswith "$2" "-"; then
7131 Le_ForceNewDomainKey=1
7132 else
7133 Le_ForceNewDomainKey="$2"
1041c9f9 7134 shift
19c43451 7135 fi
7136 ;;
7137 --yes-I-know-dns-manual-mode-enough-go-ahead-please)
7138 export FORCE_DNS_MANUAL=1
7139 ;;
7140 --log | --logfile)
7141 _log="1"
7142 _logfile="$2"
7143 if _startswith "$_logfile" '-'; then
7144 _logfile=""
7145 else
f96d91cb 7146 shift
19c43451 7147 fi
7148 LOG_FILE="$_logfile"
7149 if [ -z "$LOG_LEVEL" ]; then
7150 LOG_LEVEL="$DEFAULT_LOG_LEVEL"
7151 fi
7152 ;;
7153 --log-level)
7154 _log_level="$2"
7155 LOG_LEVEL="$_log_level"
7156 shift
7157 ;;
7158 --syslog)
7159 if ! _startswith "$2" '-'; then
7160 _syslog="$2"
f96d91cb 7161 shift
19c43451 7162 fi
7163 if [ -z "$_syslog" ]; then
7164 _syslog="$SYSLOG_LEVEL_DEFAULT"
7165 fi
7166 ;;
7167 --auto-upgrade)
7168 _auto_upgrade="$2"
7169 if [ -z "$_auto_upgrade" ] || _startswith "$_auto_upgrade" '-'; then
7170 _auto_upgrade="1"
7171 else
e3ebd582 7172 shift
19c43451 7173 fi
7174 AUTO_UPGRADE="$_auto_upgrade"
7175 ;;
7176 --listen-v4)
7177 _listen_v4="1"
7178 Le_Listen_V4="$_listen_v4"
7179 ;;
7180 --listen-v6)
7181 _listen_v6="1"
7182 Le_Listen_V6="$_listen_v6"
7183 ;;
7184 --openssl-bin)
7185 _openssl_bin="$2"
7186 ACME_OPENSSL_BIN="$_openssl_bin"
7187 shift
7188 ;;
7189 --use-wget)
7190 _use_wget="1"
7191 ACME_USE_WGET="1"
7192 ;;
7193 --branch | -b)
7194 export BRANCH="$2"
7195 shift
7196 ;;
7197 --notify-hook)
7198 _nhook="$2"
7199 if _startswith "$_nhook" "-"; then
7200 _err "'$_nhook' is not a hook name for '$1'"
a63b05a9 7201 return 1
19c43451 7202 fi
7203 if [ "$_notify_hook" ]; then
7204 _notify_hook="$_notify_hook,$_nhook"
7205 else
7206 _notify_hook="$_nhook"
7207 fi
7208 shift
7209 ;;
7210 --notify-level)
7211 _nlevel="$2"
7212 if _startswith "$_nlevel" "-"; then
7213 _err "'$_nlevel' is not a integer for '$1'"
7214 return 1
7215 fi
7216 _notify_level="$_nlevel"
7217 shift
7218 ;;
7219 --notify-mode)
7220 _nmode="$2"
7221 if _startswith "$_nmode" "-"; then
7222 _err "'$_nmode' is not a integer for '$1'"
7223 return 1
7224 fi
7225 _notify_mode="$_nmode"
7226 shift
7227 ;;
7228 --revoke-reason)
7229 _revoke_reason="$2"
7230 if _startswith "$_revoke_reason" "-"; then
7231 _err "'$_revoke_reason' is not a integer for '$1'"
7232 return 1
7233 fi
7234 shift
7235 ;;
7236 --eab-kid)
7237 _eab_kid="$2"
7238 shift
7239 ;;
7240 --eab-hmac-key)
7241 _eab_hmac_key="$2"
7242 shift
7243 ;;
7244 --preferred-chain)
7245 _preferred_chain="$2"
7246 shift
7247 ;;
7248 *)
7249 _err "Unknown parameter : $1"
7250 return 1
7251 ;;
a63b05a9 7252 esac
7253
7254 shift 1
7255 done
7256
4c2a3841 7257 if [ "${_CMD}" != "install" ]; then
5bdfdfef 7258 if [ "$__INTERACTIVE" ] && ! _checkSudo; then
7259 if [ -z "$FORCE" ]; then
7260 #Use "echo" here, instead of _info. it's too early
7261 echo "It seems that you are using sudo, please read this link first:"
7262 echo "$_SUDO_WIKI"
7263 return 1
7264 fi
7265 fi
5ea6e9c9 7266 __initHome
661f0583 7267 if [ "$_log" ]; then
4c2a3841 7268 if [ -z "$_logfile" ]; then
661f0583 7269 _logfile="$DEFAULT_LOG_FILE"
7270 fi
d0871bda 7271 fi
4c2a3841 7272 if [ "$_logfile" ]; then
5ea6e9c9 7273 _saveaccountconf "LOG_FILE" "$_logfile"
661f0583 7274 LOG_FILE="$_logfile"
5ea6e9c9 7275 fi
a73c5b33 7276
4c2a3841 7277 if [ "$_log_level" ]; then
a73c5b33 7278 _saveaccountconf "LOG_LEVEL" "$_log_level"
7279 LOG_LEVEL="$_log_level"
7280 fi
4c2a3841 7281
e2edf208 7282 if [ "$_syslog" ]; then
7283 if _exists logger; then
7284 if [ "$_syslog" = "0" ]; then
7285 _clearaccountconf "SYS_LOG"
7286 else
7287 _saveaccountconf "SYS_LOG" "$_syslog"
7288 fi
7289 SYS_LOG="$_syslog"
7290 else
7291 _err "The 'logger' command is not found, can not enable syslog."
7292 _clearaccountconf "SYS_LOG"
7293 SYS_LOG=""
7294 fi
7295 fi
7296
5ea6e9c9 7297 _processAccountConf
7298 fi
4c2a3841 7299
9d548d81 7300 _debug2 LE_WORKING_DIR "$LE_WORKING_DIR"
4c2a3841 7301
7302 if [ "$DEBUG" ]; then
dcf9cb58 7303 version
98394f99 7304 if [ "$_server" ]; then
7305 _debug "Using server: $_server"
7306 fi
dcf9cb58 7307 fi
9a733a57 7308 _debug "Running cmd: ${_CMD}"
a63b05a9 7309 case "${_CMD}" in
58c4eaaf 7310 install) install "$_nocron" "$_confighome" "$_noprofile" "$_accountemail" ;;
19c43451 7311 uninstall) uninstall "$_nocron" ;;
7312 upgrade) upgrade ;;
7313 issue)
7314 issue "$_webroot" "$_domain" "$_altdomains" "$_keylength" "$_cert_file" "$_key_file" "$_ca_file" "$_reloadcmd" "$_fullchain_file" "$_pre_hook" "$_post_hook" "$_renew_hook" "$_local_address" "$_challenge_alias" "$_preferred_chain"
7315 ;;
7316 deploy)
7317 deploy "$_domain" "$_deploy_hook" "$_ecc"
7318 ;;
7319 signcsr)
96a95ba9 7320 signcsr "$_csr" "$_webroot" "$_cert_file" "$_key_file" "$_ca_file" "$_reloadcmd" "$_fullchain_file" "$_pre_hook" "$_post_hook" "$_renew_hook" "$_local_address" "$_challenge_alias" "$_preferred_chain"
19c43451 7321 ;;
7322 showcsr)
7323 showcsr "$_csr" "$_domain"
7324 ;;
7325 installcert)
7326 installcert "$_domain" "$_cert_file" "$_key_file" "$_ca_file" "$_reloadcmd" "$_fullchain_file" "$_ecc"
7327 ;;
7328 renew)
7329 renew "$_domain" "$_ecc"
7330 ;;
7331 renewAll)
7332 renewAll "$_stopRenewOnError"
7333 ;;
7334 revoke)
7335 revoke "$_domain" "$_ecc" "$_revoke_reason"
7336 ;;
7337 remove)
7338 remove "$_domain" "$_ecc"
7339 ;;
7340 deactivate)
7341 deactivate "$_domain,$_altdomains"
7342 ;;
7343 registeraccount)
7344 registeraccount "$_accountkeylength" "$_eab_kid" "$_eab_hmac_key"
7345 ;;
7346 updateaccount)
7347 updateaccount
7348 ;;
7349 deactivateaccount)
7350 deactivateaccount
7351 ;;
7352 list)
7353 list "$_listraw" "$_domain"
7354 ;;
7355 installcronjob) installcronjob "$_confighome" ;;
7356 uninstallcronjob) uninstallcronjob ;;
7357 cron) cron ;;
7358 toPkcs)
7359 toPkcs "$_domain" "$_password" "$_ecc"
7360 ;;
7361 toPkcs8)
7362 toPkcs8 "$_domain" "$_ecc"
7363 ;;
7364 createAccountKey)
7365 createAccountKey "$_accountkeylength"
7366 ;;
7367 createDomainKey)
7368 createDomainKey "$_domain" "$_keylength"
7369 ;;
7370 createCSR)
7371 createCSR "$_domain" "$_altdomains" "$_ecc"
7372 ;;
7373 setnotify)
7374 setnotify "$_notify_hook" "$_notify_level" "$_notify_mode"
7375 ;;
7376 setdefaultca)
7377 setdefaultca
7378 ;;
7379 *)
7380 if [ "$_CMD" ]; then
7381 _err "Invalid command: $_CMD"
7382 fi
7383 showhelp
7384 return 1
7385 ;;
a63b05a9 7386 esac
d3595686 7387 _ret="$?"
4c2a3841 7388 if [ "$_ret" != "0" ]; then
d3595686 7389 return $_ret
7390 fi
4c2a3841 7391
7392 if [ "${_CMD}" = "install" ]; then
7393 if [ "$_log" ]; then
7394 if [ -z "$LOG_FILE" ]; then
d0871bda 7395 LOG_FILE="$DEFAULT_LOG_FILE"
7396 fi
7397 _saveaccountconf "LOG_FILE" "$LOG_FILE"
5ea6e9c9 7398 fi
4c2a3841 7399
7400 if [ "$_log_level" ]; then
a73c5b33 7401 _saveaccountconf "LOG_LEVEL" "$_log_level"
7402 fi
e2edf208 7403
7404 if [ "$_syslog" ]; then
7405 if _exists logger; then
7406 if [ "$_syslog" = "0" ]; then
7407 _clearaccountconf "SYS_LOG"
7408 else
7409 _saveaccountconf "SYS_LOG" "$_syslog"
7410 fi
7411 else
7412 _err "The 'logger' command is not found, can not enable syslog."
7413 _clearaccountconf "SYS_LOG"
7414 SYS_LOG=""
7415 fi
7416 fi
7417
5ea6e9c9 7418 _processAccountConf
b5eb4b90 7419 fi
635695ec 7420
a63b05a9 7421}
7422
319e0ae3 7423main() {
7424 [ -z "$1" ] && showhelp && return
4c2a3841 7425 if _startswith "$1" '-'; then _process "$@"; else "$@"; fi
319e0ae3 7426}
e69a7c38 7427
aa7b82de 7428main "$@"