]> git.proxmox.com Git - mirror_acme.sh.git/blame - acme.sh
fix bug
[mirror_acme.sh.git] / acme.sh
CommitLineData
0a7c9364 1#!/usr/bin/env sh
bfdf1f48 2
0881cf13 3VER=2.9.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
737e9e48 32DEFAULT_CA=$CA_LETSENCRYPT_V2
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"
0a4ef171 3059 if !_startswith "$included" "/" && _exists dirname; then
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
3529 _err "Please provide a email address for ZeroSSL account."
3530 _err "See ZeroSSL usage: $_ZEROSSL_WIKI"
3531 return 1
3532 fi
3533 _eabresp=$(_post "email=$_email" $_ZERO_EAB_ENDPOINT)
3534 if [ "$?" != "0" ]; then
aa59c46c 3535 _debug2 "$_eabresp"
af3ea2d4 3536 _err "Can not get EAB credentials from ZeroSSL."
3537 return 1
389518e1 3538 fi
af3ea2d4 3539 _debug2 "$_eabresp"
3540 _eab_id="$(echo "$_eabresp" | tr ',}' '\n' | grep '"eab_kid"' | cut -d : -f 2 | tr -d '"')"
3541 if [ -z "$_eab_id" ]; then
3542 _err "Can not resolve _eab_id"
3543 return 1
3544 fi
3545 _eab_hmac_key="$(echo "$_eabresp" | tr ',}' '\n' | grep '"eab_hmac_key"' | cut -d : -f 2 | tr -d '"')"
3546 if [ -z "$_eab_hmac_key" ]; then
3547 _err "Can not resolve _eab_hmac_key"
3548 return 1
3549 fi
3550 _savecaconf CA_EAB_KEY_ID "$_eab_id"
3551 _savecaconf CA_EAB_HMAC_KEY "$_eab_hmac_key"
389518e1 3552 fi
af3ea2d4 3553 fi
3554 if [ "$_eab_id" ] && [ "$_eab_hmac_key" ]; then
3555 eab_protected="{\"alg\":\"HS256\",\"kid\":\"$_eab_id\",\"url\":\"${ACME_NEW_ACCOUNT}\"}"
3556 _debug3 eab_protected "$eab_protected"
f96d91cb 3557
af3ea2d4 3558 eab_protected64=$(printf "%s" "$eab_protected" | _base64 | _url_replace)
3559 _debug3 eab_protected64 "$eab_protected64"
f96d91cb 3560
af3ea2d4 3561 eab_payload64=$(printf "%s" "$jwk" | _base64 | _url_replace)
3562 _debug3 eab_payload64 "$eab_payload64"
f96d91cb 3563
af3ea2d4 3564 eab_sign_t="$eab_protected64.$eab_payload64"
3565 _debug3 eab_sign_t "$eab_sign_t"
f96d91cb 3566
af3ea2d4 3567 key_hex="$(_durl_replace_base64 "$_eab_hmac_key" | _dbase64 | _hex_dump | tr -d ' ')"
3568 _debug3 key_hex "$key_hex"
f96d91cb 3569
af3ea2d4 3570 eab_signature=$(printf "%s" "$eab_sign_t" | _hmac sha256 $key_hex | _base64 | _url_replace)
3571 _debug3 eab_signature "$eab_signature"
f96d91cb 3572
af3ea2d4 3573 externalBinding=",\"externalAccountBinding\":{\"protected\":\"$eab_protected64\", \"payload\":\"$eab_payload64\", \"signature\":\"$eab_signature\"}"
3574 _debug3 externalBinding "$externalBinding"
f87890cb 3575 fi
af3ea2d4 3576 if [ "$_email" ]; then
3577 email_sg="\"contact\": [\"mailto:$_email\"], "
3578 fi
3579 regjson="{$email_sg\"termsOfServiceAgreed\": true$externalBinding}"
4c2a3841 3580
389518e1 3581 _info "Registering account: $ACME_DIRECTORY"
d404e92d 3582
f87890cb 3583 if ! _send_signed_request "${ACME_NEW_ACCOUNT}" "$regjson"; then
3584 _err "Register account Error: $response"
3585 return 1
3586 fi
d404e92d 3587
389518e1 3588 _eabAlreadyBound=""
f87890cb 3589 if [ "$code" = "" ] || [ "$code" = '201' ]; then
3590 echo "$response" >"$ACCOUNT_JSON_PATH"
3591 _info "Registered"
7df20e50 3592 elif [ "$code" = '409' ] || [ "$code" = '200' ]; then
f87890cb 3593 _info "Already registered"
389518e1 3594 elif [ "$code" = '400' ] && _contains "$response" 'The account is not awaiting external account binding'; then
3595 _info "Already register EAB."
3596 _eabAlreadyBound=1
f87890cb 3597 else
3598 _err "Register account Error: $response"
3599 return 1
3600 fi
d404e92d 3601
389518e1 3602 if [ -z "$_eabAlreadyBound" ]; then
3603 _debug2 responseHeaders "$responseHeaders"
3604 _accUri="$(echo "$responseHeaders" | grep -i "^Location:" | _head_n 1 | cut -d ':' -f 2- | tr -d "\r\n ")"
3605 _debug "_accUri" "$_accUri"
3606 if [ -z "$_accUri" ]; then
3607 _err "Can not find account id url."
3608 _err "$responseHeaders"
3609 return 1
3610 fi
3611 _savecaconf "ACCOUNT_URL" "$_accUri"
3612 else
3613 ACCOUNT_URL="$(_readcaconf ACCOUNT_URL)"
7e0b334b 3614 fi
7e0b334b 3615 export ACCOUNT_URL="$_accUri"
d404e92d 3616
f87890cb 3617 CA_KEY_HASH="$(__calcAccountKeyHash)"
3618 _debug "Calc CA_KEY_HASH" "$CA_KEY_HASH"
3619 _savecaconf CA_KEY_HASH "$CA_KEY_HASH"
d404e92d 3620
f87890cb 3621 if [ "$code" = '403' ]; then
3622 _err "It seems that the account key is already deactivated, please use a new account key."
3623 return 1
3624 fi
4c2a3841 3625
f87890cb 3626 ACCOUNT_THUMBPRINT="$(__calc_account_thumbprint)"
3627 _info "ACCOUNT_THUMBPRINT" "$ACCOUNT_THUMBPRINT"
d404e92d 3628}
3629
79e2f8a2 3630#implement updateaccount
3631updateaccount() {
3632 _initpath
3633
3634 if [ ! -f "$ACCOUNT_KEY_PATH" ] && [ -f "$_OLD_ACCOUNT_KEY" ]; then
3635 _info "mv $_OLD_ACCOUNT_KEY to $ACCOUNT_KEY_PATH"
3636 mv "$_OLD_ACCOUNT_KEY" "$ACCOUNT_KEY_PATH"
3637 fi
3638
3639 if [ ! -f "$ACCOUNT_JSON_PATH" ] && [ -f "$_OLD_ACCOUNT_JSON" ]; then
3640 _info "mv $_OLD_ACCOUNT_JSON to $ACCOUNT_JSON_PATH"
3641 mv "$_OLD_ACCOUNT_JSON" "$ACCOUNT_JSON_PATH"
3642 fi
3643
3644 if [ ! -f "$ACCOUNT_KEY_PATH" ]; then
3645 _err "Account key is not found at: $ACCOUNT_KEY_PATH"
3646 return 1
3647 fi
3648
3649 _accUri=$(_readcaconf "ACCOUNT_URL")
3650 _debug _accUri "$_accUri"
3651
3652 if [ -z "$_accUri" ]; then
3653 _err "The account url is empty, please run '--update-account' first to update the account info first,"
3654 _err "Then try again."
3655 return 1
3656 fi
3657
3658 if ! _calcjwk "$ACCOUNT_KEY_PATH"; then
3659 return 1
3660 fi
3661 _initAPI
3662
389518e1 3663 _email="$(_getAccountEmail)"
af3ea2d4 3664
3665 if [ "$ACCOUNT_EMAIL" ]; then
3666 updjson='{"contact": ["mailto:'$_email'"]}'
79e2f8a2 3667 else
af3ea2d4 3668 updjson='{"contact": []}'
79e2f8a2 3669 fi
3670
79e2f8a2 3671 _send_signed_request "$_accUri" "$updjson"
3672
3673 if [ "$code" = '200' ]; then
72e1a1b2 3674 echo "$response" >"$ACCOUNT_JSON_PATH"
79e2f8a2 3675 _info "account update success for $_accUri."
3676 else
3677 _info "Error. The account was not updated."
3678 return 1
3679 fi
3680}
3681
422dd1fa 3682#Implement deactivate account
3683deactivateaccount() {
3684 _initpath
3685
3686 if [ ! -f "$ACCOUNT_KEY_PATH" ] && [ -f "$_OLD_ACCOUNT_KEY" ]; then
422dd1fa 3687 _info "mv $_OLD_ACCOUNT_KEY to $ACCOUNT_KEY_PATH"
3688 mv "$_OLD_ACCOUNT_KEY" "$ACCOUNT_KEY_PATH"
3689 fi
3690
3691 if [ ! -f "$ACCOUNT_JSON_PATH" ] && [ -f "$_OLD_ACCOUNT_JSON" ]; then
422dd1fa 3692 _info "mv $_OLD_ACCOUNT_JSON to $ACCOUNT_JSON_PATH"
3693 mv "$_OLD_ACCOUNT_JSON" "$ACCOUNT_JSON_PATH"
3694 fi
3695
3696 if [ ! -f "$ACCOUNT_KEY_PATH" ]; then
3697 _err "Account key is not found at: $ACCOUNT_KEY_PATH"
3698 return 1
3699 fi
3700
3701 _accUri=$(_readcaconf "ACCOUNT_URL")
3702 _debug _accUri "$_accUri"
3703
3704 if [ -z "$_accUri" ]; then
3705 _err "The account url is empty, please run '--update-account' first to update the account info first,"
3706 _err "Then try again."
3707 return 1
3708 fi
3709
3710 if ! _calcjwk "$ACCOUNT_KEY_PATH"; then
3711 return 1
3712 fi
3713 _initAPI
3714
af3ea2d4 3715 _djson="{\"status\":\"deactivated\"}"
3716
d2cde379 3717 if _send_signed_request "$_accUri" "$_djson" && _contains "$response" '"deactivated"'; then
422dd1fa 3718 _info "Deactivate account success for $_accUri."
3719 _accid=$(echo "$response" | _egrep_o "\"id\" *: *[^,]*," | cut -d : -f 2 | tr -d ' ,')
3720 elif [ "$code" = "403" ]; then
3721 _info "The account is already deactivated."
3722 _accid=$(_getfield "$_accUri" "999" "/")
3723 else
3724 _err "Deactivate: account failed for $_accUri."
3725 return 1
3726 fi
3727
3728 _debug "Account id: $_accid"
3729 if [ "$_accid" ]; then
3730 _deactivated_account_path="$CA_DIR/deactivated/$_accid"
3731 _debug _deactivated_account_path "$_deactivated_account_path"
3732 if mkdir -p "$_deactivated_account_path"; then
3733 _info "Moving deactivated account info to $_deactivated_account_path/"
3734 mv "$CA_CONF" "$_deactivated_account_path/"
3735 mv "$ACCOUNT_JSON_PATH" "$_deactivated_account_path/"
3736 mv "$ACCOUNT_KEY_PATH" "$_deactivated_account_path/"
3737 else
3738 _err "Can not create dir: $_deactivated_account_path, try to remove the deactivated account key."
3739 rm -f "$CA_CONF"
3740 rm -f "$ACCOUNT_JSON_PATH"
3741 rm -f "$ACCOUNT_KEY_PATH"
3742 fi
3743 fi
3744}
3745
a61fe418 3746# domain folder file
3747_findHook() {
3748 _hookdomain="$1"
3749 _hookcat="$2"
3750 _hookname="$3"
3751
c7b16249 3752 if [ -f "$_SCRIPT_HOME/$_hookcat/$_hookname" ]; then
3753 d_api="$_SCRIPT_HOME/$_hookcat/$_hookname"
3754 elif [ -f "$_SCRIPT_HOME/$_hookcat/$_hookname.sh" ]; then
3755 d_api="$_SCRIPT_HOME/$_hookcat/$_hookname.sh"
b50e701c 3756 elif [ "$_hookdomain" ] && [ -f "$LE_WORKING_DIR/$_hookdomain/$_hookname" ]; then
a61fe418 3757 d_api="$LE_WORKING_DIR/$_hookdomain/$_hookname"
b50e701c 3758 elif [ "$_hookdomain" ] && [ -f "$LE_WORKING_DIR/$_hookdomain/$_hookname.sh" ]; then
a61fe418 3759 d_api="$LE_WORKING_DIR/$_hookdomain/$_hookname.sh"
4c2a3841 3760 elif [ -f "$LE_WORKING_DIR/$_hookname" ]; then
a61fe418 3761 d_api="$LE_WORKING_DIR/$_hookname"
4c2a3841 3762 elif [ -f "$LE_WORKING_DIR/$_hookname.sh" ]; then
a61fe418 3763 d_api="$LE_WORKING_DIR/$_hookname.sh"
4c2a3841 3764 elif [ -f "$LE_WORKING_DIR/$_hookcat/$_hookname" ]; then
a61fe418 3765 d_api="$LE_WORKING_DIR/$_hookcat/$_hookname"
4c2a3841 3766 elif [ -f "$LE_WORKING_DIR/$_hookcat/$_hookname.sh" ]; then
a61fe418 3767 d_api="$LE_WORKING_DIR/$_hookcat/$_hookname.sh"
3768 fi
3769
3770 printf "%s" "$d_api"
3771}
3772
f940b2a5 3773#domain
3774__get_domain_new_authz() {
3775 _gdnd="$1"
3776 _info "Getting new-authz for domain" "$_gdnd"
40ef86f4 3777 _initAPI
f940b2a5 3778 _Max_new_authz_retry_times=5
3779 _authz_i=0
4c2a3841 3780 while [ "$_authz_i" -lt "$_Max_new_authz_retry_times" ]; do
efd96153 3781 _debug "Try new-authz for the $_authz_i time."
48d9a8c1 3782 if ! _send_signed_request "${ACME_NEW_AUTHZ}" "{\"resource\": \"new-authz\", \"identifier\": {\"type\": \"dns\", \"value\": \"$(_idn "$_gdnd")\"}}"; then
f940b2a5 3783 _err "Can not get domain new authz."
3784 return 1
3785 fi
5413bf87 3786 if _contains "$response" "No registration exists matching provided key"; then
3787 _err "It seems there is an error, but it's recovered now, please try again."
3788 _err "If you see this message for a second time, please report bug: $(__green "$PROJECT")"
3789 _clearcaconf "CA_KEY_HASH"
3790 break
3791 fi
4c2a3841 3792 if ! _contains "$response" "An error occurred while processing your request"; then
f940b2a5 3793 _info "The new-authz request is ok."
3794 break
3795 fi
3796 _authz_i="$(_math "$_authz_i" + 1)"
9e45ac93 3797 _info "The server is busy, Sleep $_authz_i to retry."
f940b2a5 3798 _sleep "$_authz_i"
4c2a3841 3799 done
f940b2a5 3800
4c2a3841 3801 if [ "$_authz_i" = "$_Max_new_authz_retry_times" ]; then
efd96153 3802 _err "new-authz retry reach the max $_Max_new_authz_retry_times times."
f940b2a5 3803 fi
4c2a3841 3804
78915896 3805 if [ "$code" ] && [ "$code" != '201' ]; then
f940b2a5 3806 _err "new-authz error: $response"
3807 return 1
3808 fi
3809
3810}
3811
58e4d337 3812#uri keyAuthorization
f94433e5 3813__trigger_validation() {
8bd12ed0 3814 _debug2 "Trigger domain validation."
58e4d337 3815 _t_url="$1"
3816 _debug2 _t_url "$_t_url"
3817 _t_key_authz="$2"
3818 _debug2 _t_key_authz "$_t_key_authz"
920cab6f
K
3819 _t_vtype="$3"
3820 _debug2 _t_vtype "$_t_vtype"
af3ea2d4 3821
3822 _send_signed_request "$_t_url" "{}"
3823
58e4d337 3824}
3825
b5ca9bba 3826#endpoint domain type
10eec7d4 3827_ns_lookup_impl() {
b5ca9bba 3828 _ns_ep="$1"
3829 _ns_domain="$2"
3830 _ns_type="$3"
3831 _debug2 "_ns_ep" "$_ns_ep"
3832 _debug2 "_ns_domain" "$_ns_domain"
3833 _debug2 "_ns_type" "$_ns_type"
3834
3835 response="$(_H1="accept: application/dns-json" _get "$_ns_ep?name=$_ns_domain&type=$_ns_type")"
3836 _ret=$?
3837 _debug2 "response" "$response"
3838 if [ "$_ret" != "0" ]; then
3839 return $_ret
3840 fi
3841 _answers="$(echo "$response" | tr '{}' '<>' | _egrep_o '"Answer":\[[^]]*]' | tr '<>' '\n\n')"
3842 _debug2 "_answers" "$_answers"
3843 echo "$_answers"
3844}
3845
3846#domain, type
3847_ns_lookup_cf() {
3848 _cf_ld="$1"
3849 _cf_ld_type="$2"
3850 _cf_ep="https://cloudflare-dns.com/dns-query"
10eec7d4 3851 _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type"
b5ca9bba 3852}
3853
3854#domain, type
3855_ns_purge_cf() {
3856 _cf_d="$1"
3857 _cf_d_type="$2"
3858 _debug "Cloudflare purge $_cf_d_type record for domain $_cf_d"
b9b2cd27 3859 _cf_purl="https://cloudflare-dns.com/api/v1/purge?domain=$_cf_d&type=$_cf_d_type"
b5ca9bba 3860 response="$(_post "" "$_cf_purl")"
3861 _debug2 response "$response"
3862}
3863
10eec7d4 3864#checks if cf server is available
3865_ns_is_available_cf() {
e65144a1 3866 if _get "https://cloudflare-dns.com" "" 1 >/dev/null 2>&1; then
3867 return 0
3868 else
3869 return 1
3870 fi
3871}
3872
3873_ns_is_available_google() {
3874 if _get "https://dns.google" "" 1 >/dev/null 2>&1; then
10eec7d4 3875 return 0
3876 else
3877 return 1
3878 fi
3879}
3880
3881#domain, type
3882_ns_lookup_google() {
3883 _cf_ld="$1"
3884 _cf_ld_type="$2"
3885 _cf_ep="https://dns.google/resolve"
3886 _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type"
3887}
3888
e65144a1 3889_ns_is_available_ali() {
3890 if _get "https://dns.alidns.com" "" 1 >/dev/null 2>&1; then
3891 return 0
3892 else
3893 return 1
3894 fi
3895}
3896
3897#domain, type
3898_ns_lookup_ali() {
3899 _cf_ld="$1"
3900 _cf_ld_type="$2"
3901 _cf_ep="https://dns.alidns.com/resolve"
3902 _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type"
3903}
3904
3905_ns_is_available_dp() {
3906 if _get "https://dns.alidns.com" "" 1 >/dev/null 2>&1; then
3907 return 0
3908 else
3909 return 1
3910 fi
3911}
3912
3913#dnspod
3914_ns_lookup_dp() {
3915 _cf_ld="$1"
3916 _cf_ld_type="$2"
3917 _cf_ep="https://doh.pub/dns-query"
3918 _ns_lookup_impl "$_cf_ep" "$_cf_ld" "$_cf_ld_type"
3919}
3920
10eec7d4 3921#domain, type
3922_ns_lookup() {
3923 if [ -z "$DOH_USE" ]; then
3924 _debug "Detect dns server first."
3925 if _ns_is_available_cf; then
3926 _debug "Use cloudflare doh server"
3927 export DOH_USE=$DOH_CLOUDFLARE
e65144a1 3928 elif _ns_is_available_google; then
10eec7d4 3929 _debug "Use google doh server"
3930 export DOH_USE=$DOH_GOOGLE
e65144a1 3931 elif _ns_is_available_ali; then
3932 _debug "Use aliyun doh server"
3933 export DOH_USE=$DOH_ALI
290beb90 3934 elif _ns_is_available_dp; then
e65144a1 3935 _debug "Use dns pod doh server"
3936 export DOH_USE=$DOH_DP
e0c32ce7 3937 else
3938 _err "No doh"
10eec7d4 3939 fi
3940 fi
3941
3942 if [ "$DOH_USE" = "$DOH_CLOUDFLARE" ] || [ -z "$DOH_USE" ]; then
3943 _ns_lookup_cf "$@"
e65144a1 3944 elif [ "$DOH_USE" = "$DOH_GOOGLE" ]; then
10eec7d4 3945 _ns_lookup_google "$@"
e65144a1 3946 elif [ "$DOH_USE" = "$DOH_ALI" ]; then
3947 _ns_lookup_ali "$@"
3948 elif [ "$DOH_USE" = "$DOH_DP" ]; then
3949 _ns_lookup_dp "$@"
3950 else
3951 _err "Unknown doh provider: DOH_USE=$DOH_USE"
10eec7d4 3952 fi
3953
3954}
3955
b5ca9bba 3956#txtdomain, alias, txt
3957__check_txt() {
3958 _c_txtdomain="$1"
3959 _c_aliasdomain="$2"
3960 _c_txt="$3"
3961 _debug "_c_txtdomain" "$_c_txtdomain"
3962 _debug "_c_aliasdomain" "$_c_aliasdomain"
3963 _debug "_c_txt" "$_c_txt"
10eec7d4 3964 _answers="$(_ns_lookup "$_c_aliasdomain" TXT)"
b5ca9bba 3965 _contains "$_answers" "$_c_txt"
3966
3967}
3968
3969#txtdomain
3970__purge_txt() {
3971 _p_txtdomain="$1"
3972 _debug _p_txtdomain "$_p_txtdomain"
10eec7d4 3973 if [ "$DOH_USE" = "$DOH_CLOUDFLARE" ] || [ -z "$DOH_USE" ]; then
3974 _ns_purge_cf "$_p_txtdomain" "TXT"
3975 else
e65144a1 3976 _debug "no purge api for this doh api, just sleep 5 secs"
10eec7d4 3977 _sleep 5
3978 fi
3979
b5ca9bba 3980}
3981
3982#wait and check each dns entries
3983_check_dns_entries() {
3984 _success_txt=","
3985 _end_time="$(_time)"
3986 _end_time="$(_math "$_end_time" + 1200)" #let's check no more than 20 minutes.
3987
3988 while [ "$(_time)" -le "$_end_time" ]; do
8a24275b 3989 _info "You can use '--dnssleep' to disable public dns checks."
3990 _info "See: $_DNSCHECK_WIKI"
b5ca9bba 3991 _left=""
3992 for entry in $dns_entries; do
3993 d=$(_getfield "$entry" 1)
3994 txtdomain=$(_getfield "$entry" 2)
0093dc3d 3995 txtdomain=$(_idn "$txtdomain")
b5ca9bba 3996 aliasDomain=$(_getfield "$entry" 3)
0093dc3d 3997 aliasDomain=$(_idn "$aliasDomain")
b5ca9bba 3998 txt=$(_getfield "$entry" 5)
3999 d_api=$(_getfield "$entry" 6)
4000 _debug "d" "$d"
4001 _debug "txtdomain" "$txtdomain"
4002 _debug "aliasDomain" "$aliasDomain"
4003 _debug "txt" "$txt"
4004 _debug "d_api" "$d_api"
4005 _info "Checking $d for $aliasDomain"
4006 if _contains "$_success_txt" ",$txt,"; then
4007 _info "Already success, continue next one."
4008 continue
4009 fi
4010
4011 if __check_txt "$txtdomain" "$aliasDomain" "$txt"; then
4012 _info "Domain $d '$aliasDomain' success."
4013 _success_txt="$_success_txt,$txt,"
4014 continue
4015 fi
4016 _left=1
4017 _info "Not valid yet, let's wait 10 seconds and check next one."
b5ca9bba 4018 __purge_txt "$txtdomain"
4019 if [ "$txtdomain" != "$aliasDomain" ]; then
4020 __purge_txt "$aliasDomain"
4021 fi
b9b2cd27 4022 _sleep 10
b5ca9bba 4023 done
4024 if [ "$_left" ]; then
4025 _info "Let's wait 10 seconds and check again".
4026 _sleep 10
4027 else
4028 _info "All success, let's return"
a44ea0dd 4029 return 0
b5ca9bba 4030 fi
4031 done
a44ea0dd 4032 _info "Timed out waiting for DNS."
4033 return 1
b5ca9bba 4034
4035}
4036
e3ebd582 4037#file
12b19165 4038_get_chain_issuers() {
e3ebd582 4039 _cfile="$1"
987571ce 4040 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 4041 ${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 4042 else
12b19165 4043 _cindex=1
4044 for _startn in $(grep -n -- "$BEGIN_CERT" "$_cfile" | cut -d : -f 1); do
4045 _endn="$(grep -n -- "$END_CERT" "$_cfile" | cut -d : -f 1 | _head_n $_cindex | _tail_n 1)"
4046 _debug2 "_startn" "$_startn"
4047 _debug2 "_endn" "$_endn"
4048 if [ "$DEBUG" ]; then
4049 _debug2 "cert$_cindex" "$(sed -n "$_startn,${_endn}p" "$_cfile")"
4050 fi
4051 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/"
4052 _cindex=$(_math $_cindex + 1)
4053 done
4054 fi
4055}
4056
4057#
4058_get_chain_subjects() {
4059 _cfile="$1"
4060 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
4061 ${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
4062 else
4063 _cindex=1
4064 for _startn in $(grep -n -- "$BEGIN_CERT" "$_cfile" | cut -d : -f 1); do
4065 _endn="$(grep -n -- "$END_CERT" "$_cfile" | cut -d : -f 1 | _head_n $_cindex | _tail_n 1)"
4066 _debug2 "_startn" "$_startn"
4067 _debug2 "_endn" "$_endn"
4068 if [ "$DEBUG" ]; then
4069 _debug2 "cert$_cindex" "$(sed -n "$_startn,${_endn}p" "$_cfile")"
4070 fi
4071 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/"
4072 _cindex=$(_math $_cindex + 1)
4073 done
d5d38b33 4074 fi
e3ebd582 4075}
4076
4077#cert issuer
4078_match_issuer() {
4079 _cfile="$1"
4080 _missuer="$2"
12b19165 4081 _fissuers="$(_get_chain_issuers $_cfile)"
d5d38b33 4082 _debug2 _fissuers "$_fissuers"
12b19165 4083 _rootissuer="$(echo "$_fissuers" | _lower_case | _tail_n 1)"
4084 _debug2 _rootissuer "$_rootissuer"
fdb96e91 4085 _missuer="$(echo "$_missuer" | _lower_case)"
12b19165 4086 _contains "$_rootissuer" "$_missuer"
e3ebd582 4087}
4088
3c07f57a 4089#webroot, domain domainlist keylength
4c3b3608 4090issue() {
4c2a3841 4091 if [ -z "$2" ]; then
2e87e64b 4092 _usage "Usage: $PROJECT_ENTRY --issue --domain <domain.tld> --webroot <directory>"
4c3b3608 4093 return 1
4094 fi
49d75a0c 4095 if [ -z "$1" ]; then
4096 _usage "Please specify at least one validation method: '--webroot', '--standalone', '--apache', '--nginx' or '--dns' etc."
4097 return 1
4098 fi
af1cc3b3 4099 _web_roots="$1"
4100 _main_domain="$2"
02140ce7 4101 _alt_domains="$3"
d2cde379 4102
af1cc3b3 4103 if _contains "$_main_domain" ","; then
4104 _main_domain=$(echo "$2,$3" | cut -d , -f 1)
02140ce7 4105 _alt_domains=$(echo "$2,$3" | cut -d , -f 2- | sed "s/,${NO_VALUE}$//")
2aff36e7 4106 fi
674b5088 4107 _debug _main_domain "$_main_domain"
4108 _debug _alt_domains "$_alt_domains"
4109
d9c9114b 4110 _key_length="$4"
85e1f4ea 4111 _real_cert="$5"
4112 _real_key="$6"
4113 _real_ca="$7"
4114 _reload_cmd="$8"
4115 _real_fullchain="$9"
4116 _pre_hook="${10}"
4117 _post_hook="${11}"
4118 _renew_hook="${12}"
4119 _local_addr="${13}"
875625b1 4120 _challenge_alias="${14}"
e3ebd582 4121 _preferred_chain="${15}"
4c2a3841 4122
bd04638d 4123 if [ -z "$_ACME_IS_RENEW" ]; then
d9c9114b 4124 _initpath "$_main_domain" "$_key_length"
43822d37 4125 mkdir -p "$DOMAIN_PATH"
4126 fi
eccec5f6 4127
a0923622 4128 if _hasfield "$_web_roots" "$W_DNS" && [ -z "$FORCE_DNS_MANUAL" ]; then
4129 _err "$_DNS_MANUAL_ERROR"
4130 return 1
4131 fi
4132
48d9a8c1 4133 _debug "Using ACME_DIRECTORY: $ACME_DIRECTORY"
4134
5f9daa66 4135 if ! _initAPI; then
4136 return 1
4137 fi
48d9a8c1 4138
4c2a3841 4139 if [ -f "$DOMAIN_CONF" ]; then
61623d22 4140 Le_NextRenewTime=$(_readdomainconf Le_NextRenewTime)
a4270efa 4141 _debug Le_NextRenewTime "$Le_NextRenewTime"
95e06de5 4142 if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(_time)" -lt "$Le_NextRenewTime" ]; then
bb25febd 4143 _saved_domain=$(_readdomainconf Le_Domain)
4144 _debug _saved_domain "$_saved_domain"
4145 _saved_alt=$(_readdomainconf Le_Alt)
4146 _debug _saved_alt "$_saved_alt"
02140ce7 4147 if [ "$_saved_domain,$_saved_alt" = "$_main_domain,$_alt_domains" ]; then
bb25febd 4148 _info "Domains not changed."
4149 _info "Skip, Next renewal time is: $(__green "$(_readdomainconf Le_NextRenewTimeStr)")"
4c2a3841 4150 _info "Add '$(__red '--force')' to force to renew."
bb25febd 4151 return $RENEW_SKIP
4152 else
4153 _info "Domains have changed."
4154 fi
4c3b3608 4155 fi
4156 fi
96a46cfc 4157
af1cc3b3 4158 _savedomainconf "Le_Domain" "$_main_domain"
02140ce7 4159 _savedomainconf "Le_Alt" "$_alt_domains"
af1cc3b3 4160 _savedomainconf "Le_Webroot" "$_web_roots"
4c2a3841 4161
c7257bcf 4162 _savedomainconf "Le_PreHook" "$_pre_hook" "base64"
4163 _savedomainconf "Le_PostHook" "$_post_hook" "base64"
4164 _savedomainconf "Le_RenewHook" "$_renew_hook" "base64"
4c2a3841 4165
85e1f4ea 4166 if [ "$_local_addr" ]; then
4167 _savedomainconf "Le_LocalAddress" "$_local_addr"
72518d48 4168 else
4169 _cleardomainconf "Le_LocalAddress"
4170 fi
875625b1 4171 if [ "$_challenge_alias" ]; then
4172 _savedomainconf "Le_ChallengeAlias" "$_challenge_alias"
4173 else
4174 _cleardomainconf "Le_ChallengeAlias"
4175 fi
e3ebd582 4176 if [ "$_preferred_chain" ]; then
4177 _savedomainconf "Le_Preferred_Chain" "$_preferred_chain" "base64"
4178 else
4179 _cleardomainconf "Le_Preferred_Chain"
4180 fi
6ae0f7f5 4181
a6d22e3b 4182 Le_API="$ACME_DIRECTORY"
4183 _savedomainconf "Le_API" "$Le_API"
4184
389518e1 4185 _info "Using CA: $ACME_DIRECTORY"
02140ce7 4186 if [ "$_alt_domains" = "$NO_VALUE" ]; then
4187 _alt_domains=""
4c3b3608 4188 fi
4c2a3841 4189
d9c9114b 4190 if [ "$_key_length" = "$NO_VALUE" ]; then
4191 _key_length=""
d404e92d 4192 fi
4c2a3841 4193
85e1f4ea 4194 if ! _on_before_issue "$_web_roots" "$_main_domain" "$_alt_domains" "$_pre_hook" "$_local_addr"; then
0463b5d6 4195 _err "_on_before_issue."
4196 return 1
4c3b3608 4197 fi
0463b5d6 4198
8a29fbc8 4199 _saved_account_key_hash="$(_readcaconf "CA_KEY_HASH")"
4200 _debug2 _saved_account_key_hash "$_saved_account_key_hash"
4c2a3841 4201
e8b54a50 4202 if [ -z "$ACCOUNT_URL" ] || [ -z "$_saved_account_key_hash" ] || [ "$_saved_account_key_hash" != "$(__calcAccountKeyHash)" ]; then
57e58ce7 4203 if ! _regAccount "$_accountkeylength"; then
85e1f4ea 4204 _on_issue_err "$_post_hook"
8a29fbc8 4205 return 1
4206 fi
57e58ce7 4207 else
4208 _debug "_saved_account_key_hash is not changed, skip register account."
166096dc 4209 fi
166096dc 4210
4c2a3841 4211 if [ -f "$CSR_PATH" ] && [ ! -f "$CERT_KEY_PATH" ]; then
10afcaca 4212 _info "Signing from existing CSR."
4213 else
4214 _key=$(_readdomainconf Le_Keylength)
4215 _debug "Read key length:$_key"
c4b2e582 4216 if [ ! -f "$CERT_KEY_PATH" ] || [ "$_key_length" != "$_key" ] || [ "$Le_ForceNewDomainKey" = "1" ]; then
d9c9114b 4217 if ! createDomainKey "$_main_domain" "$_key_length"; then
10afcaca 4218 _err "Create domain key error."
4219 _clearup
85e1f4ea 4220 _on_issue_err "$_post_hook"
10afcaca 4221 return 1
4222 fi
4223 fi
4224
02140ce7 4225 if ! _createcsr "$_main_domain" "$_alt_domains" "$CERT_KEY_PATH" "$CSR_PATH" "$DOMAIN_SSL_CONF"; then
10afcaca 4226 _err "Create CSR error."
5ef501c5 4227 _clearup
85e1f4ea 4228 _on_issue_err "$_post_hook"
41e3eafa 4229 return 1
4230 fi
4c3b3608 4231 fi
10afcaca 4232
d9c9114b 4233 _savedomainconf "Le_Keylength" "$_key_length"
4c2a3841 4234
4c3b3608 4235 vlist="$Le_Vlist"
882ac74a 4236 _cleardomainconf "Le_Vlist"
cae203be 4237 _info "Getting domain auth token for each domain"
4c3b3608 4238 sep='#'
9d725af6 4239 dvsep=','
4c2a3841 4240 if [ -z "$vlist" ]; then
af3ea2d4 4241 #make new order request
4242 _identifiers="{\"type\":\"dns\",\"value\":\"$(_idn "$_main_domain")\"}"
4243 _w_index=1
4244 while true; do
4245 d="$(echo "$_alt_domains," | cut -d , -f "$_w_index")"
4246 _w_index="$(_math "$_w_index" + 1)"
4247 _debug d "$d"
4248 if [ -z "$d" ]; then
4249 break
c1151b0d 4250 fi
af3ea2d4 4251 _identifiers="$_identifiers,{\"type\":\"dns\",\"value\":\"$(_idn "$d")\"}"
4252 done
4253 _debug2 _identifiers "$_identifiers"
4254 if ! _send_signed_request "$ACME_NEW_ORDER" "{\"identifiers\": [$_identifiers]}"; then
4255 _err "Create new order error."
4256 _clearup
4257 _on_issue_err "$_post_hook"
4258 return 1
4259 fi
4260 Le_LinkOrder="$(echo "$responseHeaders" | grep -i '^Location.*$' | _tail_n 1 | tr -d "\r\n " | cut -d ":" -f 2-)"
4261 _debug Le_LinkOrder "$Le_LinkOrder"
4262 Le_OrderFinalize="$(echo "$response" | _egrep_o '"finalize" *: *"[^"]*"' | cut -d '"' -f 4)"
4263 _debug Le_OrderFinalize "$Le_OrderFinalize"
4264 if [ -z "$Le_OrderFinalize" ]; then
4265 _err "Create new order error. Le_OrderFinalize not found. $response"
4266 _clearup
4267 _on_issue_err "$_post_hook"
4268 return 1
4269 fi
c1151b0d 4270
af3ea2d4 4271 #for dns manual mode
4272 _savedomainconf "Le_OrderFinalize" "$Le_OrderFinalize"
c1151b0d 4273
af3ea2d4 4274 _authorizations_seg="$(echo "$response" | _json_decode | _egrep_o '"authorizations" *: *\[[^\[]*\]' | cut -d '[' -f 2 | tr -d ']' | tr -d '"')"
4275 _debug2 _authorizations_seg "$_authorizations_seg"
4276 if [ -z "$_authorizations_seg" ]; then
4277 _err "_authorizations_seg not found."
4278 _clearup
4279 _on_issue_err "$_post_hook"
4280 return 1
4281 fi
4282
4283 #domain and authz map
4284 _authorizations_map=""
4285 for _authz_url in $(echo "$_authorizations_seg" | tr ',' ' '); do
4286 _debug2 "_authz_url" "$_authz_url"
4287 if ! _send_signed_request "$_authz_url"; then
4288 _err "get to authz error."
4289 _err "_authorizations_seg" "$_authorizations_seg"
4290 _err "_authz_url" "$_authz_url"
c1151b0d 4291 _clearup
4292 _on_issue_err "$_post_hook"
4293 return 1
4294 fi
4295
af3ea2d4 4296 response="$(echo "$response" | _normalizeJson)"
4297 _debug2 response "$response"
4298 _d="$(echo "$response" | _egrep_o '"value" *: *"[^"]*"' | cut -d : -f 2 | tr -d ' "')"
4299 if _contains "$response" "\"wildcard\" *: *true"; then
4300 _d="*.$_d"
4301 fi
4302 _debug2 _d "$_d"
4303 _authorizations_map="$_d,$response
c1151b0d 4304$_authorizations_map"
af3ea2d4 4305 done
4306 _debug2 _authorizations_map "$_authorizations_map"
c1151b0d 4307
c1151b0d 4308 _index=0
a63b05a9 4309 _currentRoot=""
38f1b4d2 4310 _w_index=1
88bbe55b 4311 while true; do
88bbe55b 4312 d="$(echo "$_main_domain,$_alt_domains," | cut -d , -f "$_w_index")"
4313 _w_index="$(_math "$_w_index" + 1)"
4314 _debug d "$d"
4315 if [ -z "$d" ]; then
4316 break
4317 fi
ca7202eb 4318 _info "Getting webroot for domain" "$d"
c1151b0d 4319 _index=$(_math $_index + 1)
af1cc3b3 4320 _w="$(echo $_web_roots | cut -d , -f $_index)"
9d725af6 4321 _debug _w "$_w"
4c2a3841 4322 if [ "$_w" ]; then
a63b05a9 4323 _currentRoot="$_w"
4324 fi
4325 _debug "_currentRoot" "$_currentRoot"
4c2a3841 4326
a63b05a9 4327 vtype="$VTYPE_HTTP"
c1151b0d 4328 #todo, v2 wildcard force to use dns
3881f221 4329 if _startswith "$_currentRoot" "$W_DNS"; then
a63b05a9 4330 vtype="$VTYPE_DNS"
4331 fi
4c2a3841 4332
08681f4a 4333 if [ "$_currentRoot" = "$W_ALPN" ]; then
4334 vtype="$VTYPE_ALPN"
4335 fi
4336
af3ea2d4 4337 _idn_d="$(_idn "$d")"
4338 _candidates="$(echo "$_authorizations_map" | grep -i "^$_idn_d,")"
4339 _debug2 _candidates "$_candidates"
4340 if [ "$(echo "$_candidates" | wc -l)" -gt 1 ]; then
4341 for _can in $_candidates; do
4342 if _startswith "$(echo "$_can" | tr '.' '|')" "$(echo "$_idn_d" | tr '.' '|'),"; then
4343 _candidates="$_can"
4344 break
4345 fi
4346 done
4347 fi
4348 response="$(echo "$_candidates" | sed "s/$_idn_d,//")"
4349 _debug2 "response" "$response"
4350 if [ -z "$response" ]; then
4351 _err "get to authz error."
4352 _err "_authorizations_map" "$_authorizations_map"
4353 _clearup
4354 _on_issue_err "$_post_hook"
4355 return 1
c4d8fd83 4356 fi
4357
4c2a3841 4358 if [ -z "$thumbprint" ]; then
339a8ad6 4359 thumbprint="$(__calc_account_thumbprint)"
4c3b3608 4360 fi
4361
dbc44c08 4362 entry="$(echo "$response" | _egrep_o '[^\{]*"type":"'$vtype'"[^\}]*')"
4c3b3608 4363 _debug entry "$entry"
9541ea6a 4364 keyauthorization=""
4c2a3841 4365 if [ -z "$entry" ]; then
9541ea6a 4366 if ! _startswith "$d" '*.'; then
4367 _debug "Not a wildcard domain, lets check whether the validation is already valid."
4368 if echo "$response" | grep '"status":"valid"' >/dev/null 2>&1; then
4369 _debug "$d is already valid."
4370 keyauthorization="$STATE_VERIFIED"
4371 _debug keyauthorization "$keyauthorization"
4372 fi
4373 fi
4374 if [ -z "$keyauthorization" ]; then
fc3a1817 4375 _err "Error, can not get domain token entry $d for $vtype"
9541ea6a 4376 _supported_vtypes="$(echo "$response" | _egrep_o "\"challenges\":\[[^]]*]" | tr '{' "\n" | grep type | cut -d '"' -f 4 | tr "\n" ' ')"
4377 if [ "$_supported_vtypes" ]; then
4378 _err "The supported validation types are: $_supported_vtypes, but you specified: $vtype"
4379 fi
4380 _clearup
4381 _on_issue_err "$_post_hook"
4382 return 1
b51ed9bb 4383 fi
c1151b0d 4384 fi
f8b225e7 4385
9541ea6a 4386 if [ -z "$keyauthorization" ]; then
4387 token="$(echo "$entry" | _egrep_o '"token":"[^"]*' | cut -d : -f 2 | tr -d '"')"
4388 _debug token "$token"
cae203be 4389
9541ea6a 4390 if [ -z "$token" ]; then
4391 _err "Error, can not get domain token $entry"
4392 _clearup
4393 _on_issue_err "$_post_hook"
4394 return 1
4395 fi
af3ea2d4 4396
4397 uri="$(echo "$entry" | _egrep_o '"url":"[^"]*' | cut -d '"' -f 4 | _head_n 1)"
4398
9541ea6a 4399 _debug uri "$uri"
4c3b3608 4400
9541ea6a 4401 if [ -z "$uri" ]; then
4402 _err "Error, can not get domain uri. $entry"
4403 _clearup
4404 _on_issue_err "$_post_hook"
4405 return 1
4406 fi
4407 keyauthorization="$token.$thumbprint"
d35bf517 4408 _debug keyauthorization "$keyauthorization"
9541ea6a 4409
4410 if printf "%s" "$response" | grep '"status":"valid"' >/dev/null 2>&1; then
4411 _debug "$d is already verified."
4412 keyauthorization="$STATE_VERIFIED"
4413 _debug keyauthorization "$keyauthorization"
4414 fi
ec603bee 4415 fi
4416
a63b05a9 4417 dvlist="$d$sep$keyauthorization$sep$uri$sep$vtype$sep$_currentRoot"
4c3b3608 4418 _debug dvlist "$dvlist"
4c2a3841 4419
9d725af6 4420 vlist="$vlist$dvlist$dvsep"
4c3b3608 4421
4422 done
9d725af6 4423 _debug vlist "$vlist"
4c3b3608 4424 #add entry
b5ca9bba 4425 dns_entries=""
4c3b3608 4426 dnsadded=""
9d725af6 4427 ventries=$(echo "$vlist" | tr "$dvsep" ' ')
1f7df33e 4428 _alias_index=1
4c2a3841 4429 for ventry in $ventries; do
ca7202eb 4430 d=$(echo "$ventry" | cut -d "$sep" -f 1)
4431 keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2)
4432 vtype=$(echo "$ventry" | cut -d "$sep" -f 4)
4433 _currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5)
72f54ca6 4434 _debug d "$d"
4c2a3841 4435 if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then
69212114 4436 _debug "$d is already verified, skip $vtype."
fd536d37 4437 _alias_index="$(_math "$_alias_index" + 1)"
ec603bee 4438 continue
4439 fi
4440
4c2a3841 4441 if [ "$vtype" = "$VTYPE_DNS" ]; then
4c3b3608 4442 dnsadded='0'
72f54ca6 4443 _dns_root_d="$d"
4444 if _startswith "$_dns_root_d" "*."; then
4445 _dns_root_d="$(echo "$_dns_root_d" | sed 's/*.//')"
4446 fi
875625b1 4447 _d_alias="$(_getfield "$_challenge_alias" "$_alias_index")"
4448 _alias_index="$(_math "$_alias_index" + 1)"
4449 _debug "_d_alias" "$_d_alias"
4450 if [ "$_d_alias" ]; then
64821ad4 4451 if _startswith "$_d_alias" "$DNS_ALIAS_PREFIX"; then
4452 txtdomain="$(echo "$_d_alias" | sed "s/$DNS_ALIAS_PREFIX//")"
4453 else
4454 txtdomain="_acme-challenge.$_d_alias"
4455 fi
82b0ebb7 4456 dns_entry="${_dns_root_d}${dvsep}_acme-challenge.$_dns_root_d$dvsep$txtdomain$dvsep$_currentRoot"
875625b1 4457 else
4458 txtdomain="_acme-challenge.$_dns_root_d"
82b0ebb7 4459 dns_entry="${_dns_root_d}${dvsep}_acme-challenge.$_dns_root_d$dvsep$dvsep$_currentRoot"
875625b1 4460 fi
82b0ebb7 4461
4c3b3608 4462 _debug txtdomain "$txtdomain"
11927a76 4463 txt="$(printf "%s" "$keyauthorization" | _digest "sha256" | _url_replace)"
4c3b3608 4464 _debug txt "$txt"
a61fe418 4465
b50e701c 4466 d_api="$(_findHook "$_dns_root_d" $_SUB_FOLDER_DNSAPI "$_currentRoot")"
4c3b3608 4467 _debug d_api "$d_api"
82b0ebb7 4468
4469 dns_entry="$dns_entry$dvsep$txt${dvsep}$d_api"
4470 _debug2 dns_entry "$dns_entry"
4c2a3841 4471 if [ "$d_api" ]; then
a180b95c 4472 _debug "Found domain api file: $d_api"
4c3b3608 4473 else
3881f221 4474 if [ "$_currentRoot" != "$W_DNS" ]; then
4475 _err "Can not find dns api hook for: $_currentRoot"
4476 _info "You need to add the txt record manually."
4477 fi
5f8b60a0 4478 _info "$(__red "Add the following TXT record:")"
81772fb7 4479 _info "$(__red "Domain: '$(__green "$txtdomain")'")"
4480 _info "$(__red "TXT value: '$(__green "$txt")'")"
4481 _info "$(__red "Please be aware that you prepend _acme-challenge. before your domain")"
4482 _info "$(__red "so the resulting subdomain will be: $txtdomain")"
4c3b3608 4483 continue
4484 fi
4c2a3841 4485
73b8b120 4486 (
ca7202eb 4487 if ! . "$d_api"; then
73b8b120 4488 _err "Load file $d_api error. Please check your api file and try again."
4489 return 1
4490 fi
4c2a3841 4491
158f22f7 4492 addcommand="${_currentRoot}_add"
ca7202eb 4493 if ! _exists "$addcommand"; then
73b8b120 4494 _err "It seems that your api file is not correct, it must have a function named: $addcommand"
4495 return 1
4496 fi
a180b95c 4497 _info "Adding txt value: $txt for domain: $txtdomain"
ca7202eb 4498 if ! $addcommand "$txtdomain" "$txt"; then
73b8b120 4499 _err "Error add txt for domain:$txtdomain"
4500 return 1
4501 fi
a180b95c 4502 _info "The txt record is added: Success."
73b8b120 4503 )
4c2a3841 4504
4505 if [ "$?" != "0" ]; then
ea722da3 4506 _on_issue_err "$_post_hook" "$vlist"
545f2355 4507 _clearup
4c3b3608 4508 return 1
4509 fi
82b0ebb7 4510 dns_entries="$dns_entries$dns_entry
4511"
4512 _debug2 "$dns_entries"
4c3b3608 4513 dnsadded='1'
4514 fi
4515 done
4516
4c2a3841 4517 if [ "$dnsadded" = '0' ]; then
4518 _savedomainconf "Le_Vlist" "$vlist"
4c3b3608 4519 _debug "Dns record not added yet, so, save to $DOMAIN_CONF and exit."
a8b62261 4520 _err "Please add the TXT records to the domains, and re-run with --renew."
5f8b60a0 4521 _on_issue_err "$_post_hook"
545f2355 4522 _clearup
4c3b3608 4523 return 1
4524 fi
4c2a3841 4525
4c3b3608 4526 fi
4c2a3841 4527
b5ca9bba 4528 if [ "$dns_entries" ]; then
4c2a3841 4529 if [ -z "$Le_DNSSleep" ]; then
427c2780 4530 _info "Let's check each DNS record now. Sleep 20 seconds first."
b5ca9bba 4531 _sleep 20
4532 if ! _check_dns_entries; then
4533 _err "check dns error."
4534 _on_issue_err "$_post_hook"
4535 _clearup
4536 return 1
4537 fi
0e38c60d 4538 else
4c2a3841 4539 _savedomainconf "Le_DNSSleep" "$Le_DNSSleep"
b5ca9bba 4540 _info "Sleep $(__green $Le_DNSSleep) seconds for the txt records to take effect"
4541 _sleep "$Le_DNSSleep"
0e38c60d 4542 fi
4c3b3608 4543 fi
4c2a3841 4544
5d943a35 4545 NGINX_RESTORE_VLIST=""
4c3b3608 4546 _debug "ok, let's start to verify"
a63b05a9 4547
0463b5d6 4548 _ncIndex=1
9d725af6 4549 ventries=$(echo "$vlist" | tr "$dvsep" ' ')
4c2a3841 4550 for ventry in $ventries; do
ca7202eb 4551 d=$(echo "$ventry" | cut -d "$sep" -f 1)
4552 keyauthorization=$(echo "$ventry" | cut -d "$sep" -f 2)
4553 uri=$(echo "$ventry" | cut -d "$sep" -f 3)
4554 vtype=$(echo "$ventry" | cut -d "$sep" -f 4)
4555 _currentRoot=$(echo "$ventry" | cut -d "$sep" -f 5)
ec603bee 4556
4c2a3841 4557 if [ "$keyauthorization" = "$STATE_VERIFIED" ]; then
ec603bee 4558 _info "$d is already verified, skip $vtype."
4559 continue
4560 fi
4561
dd068467 4562 _info "Verifying: $d"
4c3b3608 4563 _debug "d" "$d"
4564 _debug "keyauthorization" "$keyauthorization"
4565 _debug "uri" "$uri"
4566 removelevel=""
e22bcf7c 4567 token="$(printf "%s" "$keyauthorization" | cut -d '.' -f 1)"
a63b05a9 4568
4569 _debug "_currentRoot" "$_currentRoot"
4570
4c2a3841 4571 if [ "$vtype" = "$VTYPE_HTTP" ]; then
4572 if [ "$_currentRoot" = "$NO_VALUE" ]; then
4c3b3608 4573 _info "Standalone mode server"
85e1f4ea 4574 _ncaddr="$(_getfield "$_local_addr" "$_ncIndex")"
0463b5d6 4575 _ncIndex="$(_math $_ncIndex + 1)"
3794b5cb 4576 _startserver "$keyauthorization" "$_ncaddr"
4c2a3841 4577 if [ "$?" != "0" ]; then
5ef501c5 4578 _clearup
58e4d337 4579 _on_issue_err "$_post_hook" "$vlist"
6fc1447f 4580 return 1
4581 fi
5dbf664a 4582 sleep 1
ca7202eb 4583 _debug serverproc "$serverproc"
0e44f587 4584 elif [ "$_currentRoot" = "$MODE_STATELESS" ]; then
4585 _info "Stateless mode for domain:$d"
4586 _sleep 1
9d725af6 4587 elif _startswith "$_currentRoot" "$NGINX"; then
4588 _info "Nginx mode for domain:$d"
4589 #set up nginx server
4590 FOUND_REAL_NGINX_CONF=""
4591 BACKUP_NGINX_CONF=""
4592 if ! _setNginx "$d" "$_currentRoot" "$thumbprint"; then
4593 _clearup
58e4d337 4594 _on_issue_err "$_post_hook" "$vlist"
9d725af6 4595 return 1
03f8d6e9 4596 fi
302c41ed 4597
03f8d6e9 4598 if [ "$FOUND_REAL_NGINX_CONF" ]; then
9d725af6 4599 _realConf="$FOUND_REAL_NGINX_CONF"
4600 _backup="$BACKUP_NGINX_CONF"
4601 _debug _realConf "$_realConf"
5d943a35 4602 NGINX_RESTORE_VLIST="$d$sep$_realConf$sep$_backup$dvsep$NGINX_RESTORE_VLIST"
9d725af6 4603 fi
4604 _sleep 1
4c3b3608 4605 else
4c2a3841 4606 if [ "$_currentRoot" = "apache" ]; then
6f930641 4607 wellknown_path="$ACME_DIR"
4608 else
a63b05a9 4609 wellknown_path="$_currentRoot/.well-known/acme-challenge"
4c2a3841 4610 if [ ! -d "$_currentRoot/.well-known" ]; then
6f930641 4611 removelevel='1'
4c2a3841 4612 elif [ ! -d "$_currentRoot/.well-known/acme-challenge" ]; then
6f930641 4613 removelevel='2'
4614 else
4615 removelevel='3'
4616 fi
4c3b3608 4617 fi
6f930641 4618
4c3b3608 4619 _debug wellknown_path "$wellknown_path"
6f930641 4620
4c3b3608 4621 _debug "writing token:$token to $wellknown_path/$token"
4622
4623 mkdir -p "$wellknown_path"
93fc48a2 4624
4c2a3841 4625 if ! printf "%s" "$keyauthorization" >"$wellknown_path/$token"; then
93fc48a2 4626 _err "$d:Can not write token to file : $wellknown_path/$token"
4627 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4628 _clearup
58e4d337 4629 _on_issue_err "$_post_hook" "$vlist"
93fc48a2 4630 return 1
4631 fi
4632
4c2a3841 4633 if [ ! "$usingApache" ]; then
44edb2bd 4634 if webroot_owner=$(_stat "$_currentRoot"); then
32fdc196 4635 _debug "Changing owner/group of .well-known to $webroot_owner"
c87cd0de 4636 if ! _exec "chown -R \"$webroot_owner\" \"$_currentRoot/.well-known\""; then
4637 _debug "$(cat "$_EXEC_TEMP_ERR")"
4638 _exec_err >/dev/null 2>&1
4639 fi
32fdc196 4640 else
b54ce310 4641 _debug "not changing owner/group of webroot"
32fdc196 4642 fi
df886ffa 4643 fi
4c2a3841 4644
4c3b3608 4645 fi
08681f4a 4646 elif [ "$vtype" = "$VTYPE_ALPN" ]; then
4647 acmevalidationv1="$(printf "%s" "$keyauthorization" | _digest "sha256" "hex")"
4648 _debug acmevalidationv1 "$acmevalidationv1"
4649 if ! _starttlsserver "$d" "" "$Le_TLSPort" "$keyauthorization" "$_ncaddr" "$acmevalidationv1"; then
4650 _err "Start tls server error."
4651 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4652 _clearup
4653 _on_issue_err "$_post_hook" "$vlist"
4654 return 1
4655 fi
4c3b3608 4656 fi
4c2a3841 4657
920cab6f 4658 if ! __trigger_validation "$uri" "$keyauthorization" "$vtype"; then
c4d8fd83 4659 _err "$d:Can not get challenge: $response"
4660 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4661 _clearup
58e4d337 4662 _on_issue_err "$_post_hook" "$vlist"
c4d8fd83 4663 return 1
4664 fi
4c2a3841 4665
c1151b0d 4666 if [ "$code" ] && [ "$code" != '202' ]; then
8bd12ed0 4667 if [ "$code" = '200' ]; then
c1151b0d 4668 _debug "trigger validation code: $code"
4669 else
8bd12ed0
K
4670 _err "$d:Challenge error: $response"
4671 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4672 _clearup
4673 _on_issue_err "$_post_hook" "$vlist"
4674 return 1
c1151b0d 4675 fi
4c3b3608 4676 fi
4c2a3841 4677
6fc1447f 4678 waittimes=0
4c2a3841 4679 if [ -z "$MAX_RETRY_TIMES" ]; then
6fc1447f 4680 MAX_RETRY_TIMES=30
4681 fi
4c2a3841 4682
4683 while true; do
0c538f75 4684 waittimes=$(_math "$waittimes" + 1)
4c2a3841 4685 if [ "$waittimes" -ge "$MAX_RETRY_TIMES" ]; then
6fc1447f 4686 _err "$d:Timeout"
4687 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4688 _clearup
58e4d337 4689 _on_issue_err "$_post_hook" "$vlist"
6fc1447f 4690 return 1
4691 fi
4c2a3841 4692
5dbf664a 4693 _debug "sleep 2 secs to verify"
4694 sleep 2
4c3b3608 4695 _debug "checking"
af3ea2d4 4696
4697 _send_signed_request "$uri"
4698
4c2a3841 4699 if [ "$?" != "0" ]; then
c60883ef 4700 _err "$d:Verify error:$response"
a63b05a9 4701 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4c3b3608 4702 _clearup
58e4d337 4703 _on_issue_err "$_post_hook" "$vlist"
4c3b3608 4704 return 1
4705 fi
9aaf36cd 4706 _debug2 original "$response"
4c2a3841 4707
4708 response="$(echo "$response" | _normalizeJson)"
7012b91f 4709 _debug2 response "$response"
4c2a3841 4710
4711 status=$(echo "$response" | _egrep_o '"status":"[^"]*' | cut -d : -f 2 | tr -d '"')
4c2a3841 4712
aede5c48 4713 if _contains "$status" "invalid"; then
d0d74907 4714 error="$(echo "$response" | _egrep_o '"error":\{[^\}]*')"
4c2a3841 4715 _debug2 error "$error"
4716 errordetail="$(echo "$error" | _egrep_o '"detail": *"[^"]*' | cut -d '"' -f 4)"
4717 _debug2 errordetail "$errordetail"
4718 if [ "$errordetail" ]; then
4719 _err "$d:Verify error:$errordetail"
4720 else
4721 _err "$d:Verify error:$error"
4722 fi
4723 if [ "$DEBUG" ]; then
4724 if [ "$vtype" = "$VTYPE_HTTP" ]; then
4725 _debug "Debug: get token url."
4726 _get "http://$d/.well-known/acme-challenge/$token" "" 1
4727 fi
4728 fi
a63b05a9 4729 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4c3b3608 4730 _clearup
58e4d337 4731 _on_issue_err "$_post_hook" "$vlist"
4c2a3841 4732 return 1
4c3b3608 4733 fi
4c2a3841 4734
aede5c48 4735 if _contains "$status" "valid"; then
4736 _info "$(__green Success)"
4737 _stopserver "$serverproc"
4738 serverproc=""
4739 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4740 break
4741 fi
4742
4c2a3841 4743 if [ "$status" = "pending" ]; then
4c3b3608 4744 _info "Pending"
93740c99 4745 elif [ "$status" = "processing" ]; then
4746 _info "Processing"
4c3b3608 4747 else
4c2a3841 4748 _err "$d:Verify error:$response"
a63b05a9 4749 _clearupwebbroot "$_currentRoot" "$removelevel" "$token"
4c3b3608 4750 _clearup
58e4d337 4751 _on_issue_err "$_post_hook" "$vlist"
4c3b3608 4752 return 1
4753 fi
4c2a3841 4754
4c3b3608 4755 done
4c2a3841 4756
4c3b3608 4757 done
4758
4759 _clearup
4760 _info "Verify finished, start to sign."
11927a76 4761 der="$(_getfile "${CSR_PATH}" "${BEGIN_CSR}" "${END_CSR}" | tr -d "\r\n" | _url_replace)"
4c2a3841 4762
af3ea2d4 4763 _info "Lets finalize the order."
4764 _info "Le_OrderFinalize" "$Le_OrderFinalize"
4765 if ! _send_signed_request "${Le_OrderFinalize}" "{\"csr\": \"$der\"}"; then
4766 _err "Sign failed."
4767 _on_issue_err "$_post_hook"
4768 return 1
4769 fi
4770 if [ "$code" != "200" ]; then
4771 _err "Sign failed, finalize code is not 200."
4772 _err "$response"
4773 _on_issue_err "$_post_hook"
4774 return 1
4775 fi
4776 if [ -z "$Le_LinkOrder" ]; then
4777 Le_LinkOrder="$(echo "$responseHeaders" | grep -i '^Location.*$' | _tail_n 1 | tr -d "\r\n \t" | cut -d ":" -f 2-)"
4778 fi
e7f7e96d 4779
af3ea2d4 4780 _savedomainconf "Le_LinkOrder" "$Le_LinkOrder"
4781
4782 _link_cert_retry=0
4783 _MAX_CERT_RETRY=30
4784 while [ "$_link_cert_retry" -lt "$_MAX_CERT_RETRY" ]; do
4785 if _contains "$response" "\"status\":\"valid\""; then
4786 _debug "Order status is valid."
4787 Le_LinkCert="$(echo "$response" | _egrep_o '"certificate" *: *"[^"]*"' | cut -d '"' -f 4)"
4788 _debug Le_LinkCert "$Le_LinkCert"
4789 if [ -z "$Le_LinkCert" ]; then
4790 _err "Sign error, can not find Le_LinkCert"
e7f7e96d 4791 _err "$response"
4792 _on_issue_err "$_post_hook"
4793 return 1
4794 fi
af3ea2d4 4795 break
4796 elif _contains "$response" "\"processing\""; then
4797 _info "Order status is processing, lets sleep and retry."
4798 _retryafter=$(echo "$responseHeaders" | grep -i "^Retry-After *:" | cut -d : -f 2 | tr -d ' ' | tr -d '\r')
4799 _debug "_retryafter" "$_retryafter"
4800 if [ "$_retryafter" ]; then
4801 _info "Retry after: $_retryafter"
4802 _sleep $_retryafter
4803 else
4804 _sleep 2
e7f7e96d 4805 fi
af3ea2d4 4806 else
4807 _err "Sign error, wrong status"
e7f7e96d 4808 _err "$response"
4809 _on_issue_err "$_post_hook"
4810 return 1
4811 fi
af3ea2d4 4812 #the order is processing, so we are going to poll order status
4813 if [ -z "$Le_LinkOrder" ]; then
4814 _err "Sign error, can not get order link location header"
4815 _err "responseHeaders" "$responseHeaders"
4816 _on_issue_err "$_post_hook"
4817 return 1
4818 fi
4819 _info "Polling order status: $Le_LinkOrder"
4820 if ! _send_signed_request "$Le_LinkOrder"; then
4821 _err "Sign failed, can not post to Le_LinkOrder cert:$Le_LinkOrder."
668c43ab 4822 _err "$response"
c1151b0d 4823 _on_issue_err "$_post_hook"
4824 return 1
4825 fi
af3ea2d4 4826 _link_cert_retry="$(_math $_link_cert_retry + 1)"
4827 done
4c3b3608 4828
af3ea2d4 4829 if [ -z "$Le_LinkCert" ]; then
4830 _err "Sign failed, can not get Le_LinkCert, retry time limit."
4831 _err "$response"
4832 _on_issue_err "$_post_hook"
4833 return 1
4834 fi
4835 _info "Downloading cert."
4836 _info "Le_LinkCert" "$Le_LinkCert"
4837 if ! _send_signed_request "$Le_LinkCert"; then
4838 _err "Sign failed, can not download cert:$Le_LinkCert."
4839 _err "$response"
4840 _on_issue_err "$_post_hook"
4841 return 1
4842 fi
e3ebd582 4843
af3ea2d4 4844 echo "$response" >"$CERT_PATH"
4845 _split_cert_chain "$CERT_PATH" "$CERT_FULLCHAIN_PATH" "$CA_CERT_PATH"
4846
4847 if [ "$_preferred_chain" ] && [ -f "$CERT_FULLCHAIN_PATH" ]; then
4848 if [ "$DEBUG" ]; then
4849 _debug "default chain issuers: " "$(_get_chain_issuers "$CERT_FULLCHAIN_PATH")"
4850 fi
4851 if ! _match_issuer "$CERT_FULLCHAIN_PATH" "$_preferred_chain"; then
4852 rels="$(echo "$responseHeaders" | tr -d ' <>' | grep -i "^link:" | grep -i 'rel="alternate"' | cut -d : -f 2- | cut -d ';' -f 1)"
4853 _debug2 "rels" "$rels"
4854 for rel in $rels; do
4855 _info "Try rel: $rel"
4856 if ! _send_signed_request "$rel"; then
4857 _err "Sign failed, can not download cert:$rel"
4858 _err "$response"
4859 continue
4860 fi
4861 _relcert="$CERT_PATH.alt"
4862 _relfullchain="$CERT_FULLCHAIN_PATH.alt"
4863 _relca="$CA_CERT_PATH.alt"
4864 echo "$response" >"$_relcert"
4865 _split_cert_chain "$_relcert" "$_relfullchain" "$_relca"
4866 if [ "$DEBUG" ]; then
4867 _debug "rel chain issuers: " "$(_get_chain_issuers "$_relfullchain")"
4868 fi
4869 if _match_issuer "$_relfullchain" "$_preferred_chain"; then
4870 _info "Matched issuer in: $rel"
4871 cat $_relcert >"$CERT_PATH"
4872 cat $_relfullchain >"$CERT_FULLCHAIN_PATH"
4873 cat $_relca >"$CA_CERT_PATH"
12b19165 4874 rm -f "$_relcert"
4875 rm -f "$_relfullchain"
4876 rm -f "$_relca"
af3ea2d4 4877 break
4878 fi
4879 rm -f "$_relcert"
4880 rm -f "$_relfullchain"
4881 rm -f "$_relca"
4882 done
d404e92d 4883 fi
c1151b0d 4884 fi
4885
4886 _debug "Le_LinkCert" "$Le_LinkCert"
4887 _savedomainconf "Le_LinkCert" "$Le_LinkCert"
4888
183063a2 4889 if [ -z "$Le_LinkCert" ] || ! _checkcert "$CERT_PATH"; then
716f7277 4890 response="$(echo "$response" | _dbase64 "multiline" | tr -d '\0' | _normalizeJson)"
183063a2 4891 _err "Sign failed: $(echo "$response" | _egrep_o '"detail":"[^"]*"')"
4892 _on_issue_err "$_post_hook"
4893 return 1
4894 fi
4895
c1151b0d 4896 if [ "$Le_LinkCert" ]; then
43822d37 4897 _info "$(__green "Cert success.")"
4c3b3608 4898 cat "$CERT_PATH"
5980ebc7 4899
4c2a3841 4900 _info "Your cert is in $(__green " $CERT_PATH ")"
4901
4902 if [ -f "$CERT_KEY_PATH" ]; then
4903 _info "Your cert key is in $(__green " $CERT_KEY_PATH ")"
5980ebc7 4904 fi
4905
bd04638d 4906 if [ ! "$USER_PATH" ] || [ ! "$_ACME_IN_CRON" ]; then
281aa349 4907 USER_PATH="$PATH"
4908 _saveaccountconf "USER_PATH" "$USER_PATH"
4909 fi
4c3b3608 4910 fi
4c3b3608 4911
1c35f46b 4912 [ -f "$CA_CERT_PATH" ] && _info "The intermediate CA cert is in $(__green " $CA_CERT_PATH ")"
4913 [ -f "$CERT_FULLCHAIN_PATH" ] && _info "And the full chain certs is there: $(__green " $CERT_FULLCHAIN_PATH ")"
4c2a3841 4914
3aae1ae3 4915 Le_CertCreateTime=$(_time)
4c2a3841 4916 _savedomainconf "Le_CertCreateTime" "$Le_CertCreateTime"
4917
4918 Le_CertCreateTimeStr=$(date -u)
4919 _savedomainconf "Le_CertCreateTimeStr" "$Le_CertCreateTimeStr"
4920
ec67a1b2 4921 if [ -z "$Le_RenewalDays" ] || [ "$Le_RenewalDays" -lt "0" ]; then
4922 Le_RenewalDays="$DEFAULT_RENEW"
054cb72e 4923 else
4c2a3841 4924 _savedomainconf "Le_RenewalDays" "$Le_RenewalDays"
13d7cae9 4925 fi
4c2a3841 4926
4927 if [ "$CA_BUNDLE" ]; then
78009539
PS
4928 _saveaccountconf CA_BUNDLE "$CA_BUNDLE"
4929 else
4930 _clearaccountconf "CA_BUNDLE"
4931 fi
4932
2aa75f03 4933 if [ "$CA_PATH" ]; then
4934 _saveaccountconf CA_PATH "$CA_PATH"
4935 else
4936 _clearaccountconf "CA_PATH"
4937 fi
78009539 4938
4c2a3841 4939 if [ "$HTTPS_INSECURE" ]; then
fac1e367 4940 _saveaccountconf HTTPS_INSECURE "$HTTPS_INSECURE"
4941 else
4c2a3841 4942 _clearaccountconf "HTTPS_INSECURE"
13d7cae9 4943 fi
00a50605 4944
4c2a3841 4945 if [ "$Le_Listen_V4" ]; then
4946 _savedomainconf "Le_Listen_V4" "$Le_Listen_V4"
50827188 4947 _cleardomainconf Le_Listen_V6
4c2a3841 4948 elif [ "$Le_Listen_V6" ]; then
4949 _savedomainconf "Le_Listen_V6" "$Le_Listen_V6"
50827188 4950 _cleardomainconf Le_Listen_V4
4951 fi
f6dcd989 4952
c4b2e582 4953 if [ "$Le_ForceNewDomainKey" = "1" ]; then
4954 _savedomainconf "Le_ForceNewDomainKey" "$Le_ForceNewDomainKey"
4955 else
4956 _cleardomainconf Le_ForceNewDomainKey
4957 fi
4958
ca7202eb 4959 Le_NextRenewTime=$(_math "$Le_CertCreateTime" + "$Le_RenewalDays" \* 24 \* 60 \* 60)
4c2a3841 4960
ca7202eb 4961 Le_NextRenewTimeStr=$(_time2str "$Le_NextRenewTime")
4c2a3841 4962 _savedomainconf "Le_NextRenewTimeStr" "$Le_NextRenewTimeStr"
4963
ca7202eb 4964 Le_NextRenewTime=$(_math "$Le_NextRenewTime" - 86400)
4c2a3841 4965 _savedomainconf "Le_NextRenewTime" "$Le_NextRenewTime"
f6dcd989 4966
85e1f4ea 4967 if [ "$_real_cert$_real_key$_real_ca$_reload_cmd$_real_fullchain" ]; then
4968 _savedomainconf "Le_RealCertPath" "$_real_cert"
4969 _savedomainconf "Le_RealCACertPath" "$_real_ca"
4970 _savedomainconf "Le_RealKeyPath" "$_real_key"
7690f73e 4971 _savedomainconf "Le_ReloadCmd" "$_reload_cmd" "base64"
85e1f4ea 4972 _savedomainconf "Le_RealFullChainPath" "$_real_fullchain"
ce8dca7a 4973 if ! _installcert "$_main_domain" "$_real_cert" "$_real_key" "$_real_ca" "$_real_fullchain" "$_reload_cmd"; then
4974 return 1
4975 fi
01f54558 4976 fi
4c0d3f1b 4977
ce8dca7a 4978 if ! _on_issue_success "$_post_hook" "$_renew_hook"; then
4979 _err "Call hook error."
4980 return 1
4981 fi
4c3b3608 4982}
4983
d73438a3 4984#in_out_cert out_fullchain out_ca
e3ebd582 4985_split_cert_chain() {
4986 _certf="$1"
4987 _fullchainf="$2"
4988 _caf="$3"
4989 if [ "$(grep -- "$BEGIN_CERT" "$_certf" | wc -l)" -gt "1" ]; then
4990 _debug "Found cert chain"
4991 cat "$_certf" >"$_fullchainf"
4992 _end_n="$(grep -n -- "$END_CERT" "$_fullchainf" | _head_n 1 | cut -d : -f 1)"
4993 _debug _end_n "$_end_n"
4994 sed -n "1,${_end_n}p" "$_fullchainf" >"$_certf"
4995 _end_n="$(_math $_end_n + 1)"
4996 sed -n "${_end_n},9999p" "$_fullchainf" >"$_caf"
4997 fi
4998}
4999
43822d37 5000#domain [isEcc]
4c3b3608 5001renew() {
5002 Le_Domain="$1"
4c2a3841 5003 if [ -z "$Le_Domain" ]; then
2e87e64b 5004 _usage "Usage: $PROJECT_ENTRY --renew --domain <domain.tld> [--ecc]"
4c3b3608 5005 return 1
5006 fi
5007
43822d37 5008 _isEcc="$2"
5009
e799ef29 5010 _initpath "$Le_Domain" "$_isEcc"
43822d37 5011
e2053b22 5012 _info "$(__green "Renew: '$Le_Domain'")"
4c2a3841 5013 if [ ! -f "$DOMAIN_CONF" ]; then
2e87e64b 5014 _info "'$Le_Domain' is not an issued domain, skip."
acae0ac2 5015 return $RENEW_SKIP
4c3b3608 5016 fi
4c2a3841 5017
5018 if [ "$Le_RenewalDays" ]; then
1e6b68f5 5019 _savedomainconf Le_RenewalDays "$Le_RenewalDays"
5020 fi
5021
8663fb7e 5022 . "$DOMAIN_CONF"
c5f1cca3 5023 _debug Le_API "$Le_API"
f2add8de 5024
4c2a3841 5025 if [ "$Le_API" ]; then
48d9a8c1 5026 export ACME_DIRECTORY="$Le_API"
c4236e58 5027 #reload ca configs
5028 ACCOUNT_KEY_PATH=""
5029 ACCOUNT_JSON_PATH=""
5030 CA_CONF=""
5031 _debug3 "initpath again."
5032 _initpath "$Le_Domain" "$_isEcc"
5c48e139 5033 fi
4c2a3841 5034
5035 if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(_time)" -lt "$Le_NextRenewTime" ]; then
e2053b22 5036 _info "Skip, Next renewal time is: $(__green "$Le_NextRenewTimeStr")"
5037 _info "Add '$(__red '--force')' to force to renew."
e799ef29 5038 return "$RENEW_SKIP"
4c3b3608 5039 fi
4c2a3841 5040
bd04638d 5041 if [ "$_ACME_IN_CRON" = "1" ] && [ -z "$Le_CertCreateTime" ]; then
c4d0aec5 5042 _info "Skip invalid cert for: $Le_Domain"
acae0ac2 5043 return $RENEW_SKIP
c4d0aec5 5044 fi
5045
bd04638d 5046 _ACME_IS_RENEW="1"
7690f73e 5047 Le_ReloadCmd="$(_readdomainconf Le_ReloadCmd)"
c7257bcf 5048 Le_PreHook="$(_readdomainconf Le_PreHook)"
5049 Le_PostHook="$(_readdomainconf Le_PostHook)"
5050 Le_RenewHook="$(_readdomainconf Le_RenewHook)"
b7b01999 5051 Le_Preferred_Chain="$(_readdomainconf Le_Preferred_Chain)"
e3ebd582 5052 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 5053 res="$?"
4c2a3841 5054 if [ "$res" != "0" ]; then
e799ef29 5055 return "$res"
a61fe418 5056 fi
4c2a3841 5057
5058 if [ "$Le_DeployHook" ]; then
93bce1b2 5059 _deploy "$Le_Domain" "$Le_DeployHook"
e799ef29 5060 res="$?"
a61fe418 5061 fi
4c2a3841 5062
bd04638d 5063 _ACME_IS_RENEW=""
4c3b3608 5064
e799ef29 5065 return "$res"
4c3b3608 5066}
5067
cc179731 5068#renewAll [stopRenewOnError]
4c3b3608 5069renewAll() {
5070 _initpath
cc179731 5071 _stopRenewOnError="$1"
5072 _debug "_stopRenewOnError" "$_stopRenewOnError"
5073 _ret="0"
b50e701c 5074 _success_msg=""
5075 _error_msg=""
5076 _skipped_msg=""
c6b68551 5077 _error_level=$NOTIFY_LEVEL_SKIP
5078 _notify_code=$RENEW_SKIP
f803c6c0 5079 _set_level=${NOTIFY_LEVEL:-$NOTIFY_LEVEL_DEFAULT}
5080 _debug "_set_level" "$_set_level"
e591d5cf 5081 for di in "${CERT_HOME}"/*.*/; do
5082 _debug di "$di"
44483dba 5083 if ! [ -d "$di" ]; then
2e87e64b 5084 _debug "Not a directory, skip: $di"
3498a585 5085 continue
5086 fi
e591d5cf 5087 d=$(basename "$di")
201aa244 5088 _debug d "$d"
43822d37 5089 (
201aa244 5090 if _endswith "$d" "$ECC_SUFFIX"; then
5091 _isEcc=$(echo "$d" | cut -d "$ECC_SEP" -f 2)
5092 d=$(echo "$d" | cut -d "$ECC_SEP" -f 1)
43822d37 5093 fi
5094 renew "$d" "$_isEcc"
4d2f38b0 5095 )
cc179731 5096 rc="$?"
5097 _debug "Return code: $rc"
c6b68551 5098 if [ "$rc" = "0" ]; then
5099 if [ $_error_level -gt $NOTIFY_LEVEL_RENEW ]; then
5100 _error_level="$NOTIFY_LEVEL_RENEW"
5101 _notify_code=0
5102 fi
bd04638d 5103 if [ "$_ACME_IN_CRON" ]; then
f803c6c0 5104 if [ $_set_level -ge $NOTIFY_LEVEL_RENEW ]; then
c6b68551 5105 if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
5106 _send_notify "Renew $d success" "Good, the cert is renewed." "$NOTIFY_HOOK" 0
5107 fi
5108 fi
5109 fi
5110 _success_msg="${_success_msg} $d
b50e701c 5111"
c6b68551 5112 elif [ "$rc" = "$RENEW_SKIP" ]; then
5113 if [ $_error_level -gt $NOTIFY_LEVEL_SKIP ]; then
5114 _error_level="$NOTIFY_LEVEL_SKIP"
5115 _notify_code=$RENEW_SKIP
5116 fi
bd04638d 5117 if [ "$_ACME_IN_CRON" ]; then
f803c6c0 5118 if [ $_set_level -ge $NOTIFY_LEVEL_SKIP ]; then
c6b68551 5119 if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
5120 _send_notify "Renew $d skipped" "Good, the cert is skipped." "$NOTIFY_HOOK" "$RENEW_SKIP"
5121 fi
b50e701c 5122 fi
cc179731 5123 fi
c6b68551 5124 _info "Skipped $d"
5125 _skipped_msg="${_skipped_msg} $d
5126"
b50e701c 5127 else
c6b68551 5128 if [ $_error_level -gt $NOTIFY_LEVEL_ERROR ]; then
5129 _error_level="$NOTIFY_LEVEL_ERROR"
5130 _notify_code=1
5131 fi
bd04638d 5132 if [ "$_ACME_IN_CRON" ]; then
f803c6c0 5133 if [ $_set_level -ge $NOTIFY_LEVEL_ERROR ]; then
c6b68551 5134 if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
5135 _send_notify "Renew $d error" "There is an error." "$NOTIFY_HOOK" 1
5136 fi
5137 fi
5138 fi
5139 _error_msg="${_error_msg} $d
b50e701c 5140"
c6b68551 5141 if [ "$_stopRenewOnError" ]; then
5142 _err "Error renew $d, stop now."
5143 _ret="$rc"
5144 break
5145 else
5146 _ret="$rc"
5147 _err "Error renew $d."
5148 fi
cc179731 5149 fi
4c3b3608 5150 done
c6b68551 5151 _debug _error_level "$_error_level"
a2738e85 5152 _debug _set_level "$_set_level"
bd04638d 5153 if [ "$_ACME_IN_CRON" ] && [ $_error_level -le $_set_level ]; then
b50e701c 5154 if [ -z "$NOTIFY_MODE" ] || [ "$NOTIFY_MODE" = "$NOTIFY_MODE_BULK" ]; then
5155 _msg_subject="Renew"
5156 if [ "$_error_msg" ]; then
5157 _msg_subject="${_msg_subject} Error"
c6b68551 5158 _msg_data="Error certs:
5159${_error_msg}
5160"
b50e701c 5161 fi
5162 if [ "$_success_msg" ]; then
5163 _msg_subject="${_msg_subject} Success"
c6b68551 5164 _msg_data="${_msg_data}Success certs:
5165${_success_msg}
5166"
b50e701c 5167 fi
5168 if [ "$_skipped_msg" ]; then
5169 _msg_subject="${_msg_subject} Skipped"
c6b68551 5170 _msg_data="${_msg_data}Skipped certs:
5171${_skipped_msg}
b50e701c 5172"
c6b68551 5173 fi
5174
5175 _send_notify "$_msg_subject" "$_msg_data" "$NOTIFY_HOOK" "$_notify_code"
b50e701c 5176 fi
5177 fi
5178
201aa244 5179 return "$_ret"
4c3b3608 5180}
5181
10afcaca 5182#csr webroot
4c2a3841 5183signcsr() {
10afcaca 5184 _csrfile="$1"
5185 _csrW="$2"
5186 if [ -z "$_csrfile" ] || [ -z "$_csrW" ]; then
2e87e64b 5187 _usage "Usage: $PROJECT_ENTRY --sign-csr --csr <csr-file> --webroot <directory>"
10afcaca 5188 return 1
5189 fi
5190
875625b1 5191 _real_cert="$3"
5192 _real_key="$4"
5193 _real_ca="$5"
5194 _reload_cmd="$6"
5195 _real_fullchain="$7"
5196 _pre_hook="${8}"
5197 _post_hook="${9}"
5198 _renew_hook="${10}"
5199 _local_addr="${11}"
5200 _challenge_alias="${12}"
96a95ba9 5201 _preferred_chain="${13}"
875625b1 5202
10afcaca 5203 _csrsubj=$(_readSubjectFromCSR "$_csrfile")
4c2a3841 5204 if [ "$?" != "0" ]; then
10afcaca 5205 _err "Can not read subject from csr: $_csrfile"
5206 return 1
5207 fi
ad752b31 5208 _debug _csrsubj "$_csrsubj"
2c9ed4c5 5209 if _contains "$_csrsubj" ' ' || ! _contains "$_csrsubj" '.'; then
5210 _info "It seems that the subject: $_csrsubj is not a valid domain name. Drop it."
5211 _csrsubj=""
5212 fi
10afcaca 5213
5214 _csrdomainlist=$(_readSubjectAltNamesFromCSR "$_csrfile")
4c2a3841 5215 if [ "$?" != "0" ]; then
10afcaca 5216 _err "Can not read domain list from csr: $_csrfile"
5217 return 1
5218 fi
5219 _debug "_csrdomainlist" "$_csrdomainlist"
4c2a3841 5220
5221 if [ -z "$_csrsubj" ]; then
ad752b31 5222 _csrsubj="$(_getfield "$_csrdomainlist" 1)"
5223 _debug _csrsubj "$_csrsubj"
5224 _csrdomainlist="$(echo "$_csrdomainlist" | cut -d , -f 2-)"
5225 _debug "_csrdomainlist" "$_csrdomainlist"
5226 fi
4c2a3841 5227
5228 if [ -z "$_csrsubj" ]; then
ad752b31 5229 _err "Can not read subject from csr: $_csrfile"
5230 return 1
5231 fi
4c2a3841 5232
10afcaca 5233 _csrkeylength=$(_readKeyLengthFromCSR "$_csrfile")
4c2a3841 5234 if [ "$?" != "0" ] || [ -z "$_csrkeylength" ]; then
10afcaca 5235 _err "Can not read key length from csr: $_csrfile"
5236 return 1
5237 fi
4c2a3841 5238
10afcaca 5239 _initpath "$_csrsubj" "$_csrkeylength"
5240 mkdir -p "$DOMAIN_PATH"
4c2a3841 5241
10afcaca 5242 _info "Copy csr to: $CSR_PATH"
5243 cp "$_csrfile" "$CSR_PATH"
4c2a3841 5244
96a95ba9 5245 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 5246
10afcaca 5247}
5248
5249showcsr() {
4c2a3841 5250 _csrfile="$1"
10afcaca 5251 _csrd="$2"
5252 if [ -z "$_csrfile" ] && [ -z "$_csrd" ]; then
2e87e64b 5253 _usage "Usage: $PROJECT_ENTRY --show-csr --csr <csr-file>"
10afcaca 5254 return 1
5255 fi
5256
5257 _initpath
4c2a3841 5258
10afcaca 5259 _csrsubj=$(_readSubjectFromCSR "$_csrfile")
4c2a3841 5260 if [ "$?" != "0" ] || [ -z "$_csrsubj" ]; then
10afcaca 5261 _err "Can not read subject from csr: $_csrfile"
5262 return 1
5263 fi
4c2a3841 5264
10afcaca 5265 _info "Subject=$_csrsubj"
5266
5267 _csrdomainlist=$(_readSubjectAltNamesFromCSR "$_csrfile")
4c2a3841 5268 if [ "$?" != "0" ]; then
10afcaca 5269 _err "Can not read domain list from csr: $_csrfile"
5270 return 1
5271 fi
5272 _debug "_csrdomainlist" "$_csrdomainlist"
5273
5274 _info "SubjectAltNames=$_csrdomainlist"
5275
10afcaca 5276 _csrkeylength=$(_readKeyLengthFromCSR "$_csrfile")
4c2a3841 5277 if [ "$?" != "0" ] || [ -z "$_csrkeylength" ]; then
10afcaca 5278 _err "Can not read key length from csr: $_csrfile"
5279 return 1
5280 fi
5281 _info "KeyLength=$_csrkeylength"
5282}
5283
95ef046d 5284#listraw domain
6d7eda3e 5285list() {
22ea4004 5286 _raw="$1"
95ef046d 5287 _domain="$2"
6d7eda3e 5288 _initpath
4c2a3841 5289
dcf4f8f6 5290 _sep="|"
4c2a3841 5291 if [ "$_raw" ]; then
95ef046d 5292 if [ -z "$_domain" ]; then
5293 printf "%s\n" "Main_Domain${_sep}KeyLength${_sep}SAN_Domains${_sep}CA${_sep}Created${_sep}Renew"
5294 fi
e591d5cf 5295 for di in "${CERT_HOME}"/*.*/; do
5296 d=$(basename "$di")
201aa244 5297 _debug d "$d"
dcf4f8f6 5298 (
201aa244 5299 if _endswith "$d" "$ECC_SUFFIX"; then
be0df07d 5300 _isEcc="ecc"
201aa244 5301 d=$(echo "$d" | cut -d "$ECC_SEP" -f 1)
43822d37 5302 fi
be0df07d 5303 DOMAIN_CONF="$di/$d.conf"
4c2a3841 5304 if [ -f "$DOMAIN_CONF" ]; then
dcf4f8f6 5305 . "$DOMAIN_CONF"
269847d1 5306 _ca="$(_getCAShortName "$Le_API")"
95ef046d 5307 if [ -z "$_domain" ]; then
5308 printf "%s\n" "$Le_Domain${_sep}\"$Le_Keylength\"${_sep}$Le_Alt${_sep}$_ca${_sep}$Le_CertCreateTimeStr${_sep}$Le_NextRenewTimeStr"
5309 else
5310 if [ "$_domain" = "$d" ]; then
5311 cat "$DOMAIN_CONF"
5312 fi
5313 fi
dcf4f8f6 5314 fi
5315 )
5316 done
5317 else
4c2a3841 5318 if _exists column; then
95ef046d 5319 list "raw" "$_domain" | column -t -s "$_sep"
22ea4004 5320 else
95ef046d 5321 list "raw" "$_domain" | tr "$_sep" '\t'
22ea4004 5322 fi
dcf4f8f6 5323 fi
6d7eda3e 5324
6d7eda3e 5325}
5326
93bce1b2 5327_deploy() {
5328 _d="$1"
5329 _hooks="$2"
5330
5331 for _d_api in $(echo "$_hooks" | tr ',' " "); do
b50e701c 5332 _deployApi="$(_findHook "$_d" $_SUB_FOLDER_DEPLOY "$_d_api")"
93bce1b2 5333 if [ -z "$_deployApi" ]; then
5334 _err "The deploy hook $_d_api is not found."
5335 return 1
5336 fi
5337 _debug _deployApi "$_deployApi"
5338
5339 if ! (
5340 if ! . "$_deployApi"; then
5341 _err "Load file $_deployApi error. Please check your api file and try again."
5342 return 1
5343 fi
5344
5345 d_command="${_d_api}_deploy"
5346 if ! _exists "$d_command"; then
5347 _err "It seems that your api file is not correct, it must have a function named: $d_command"
5348 return 1
5349 fi
5350
5351 if ! $d_command "$_d" "$CERT_KEY_PATH" "$CERT_PATH" "$CA_CERT_PATH" "$CERT_FULLCHAIN_PATH"; then
5352 _err "Error deploy for domain:$_d"
5353 return 1
5354 fi
5355 ); then
5356 _err "Deploy error."
5357 return 1
5358 else
5359 _info "$(__green Success)"
5360 fi
5361 done
5362}
5363
5364#domain hooks
a61fe418 5365deploy() {
93bce1b2 5366 _d="$1"
5367 _hooks="$2"
a61fe418 5368 _isEcc="$3"
93bce1b2 5369 if [ -z "$_hooks" ]; then
2e87e64b 5370 _usage "Usage: $PROJECT_ENTRY --deploy --domain <domain.tld> --deploy-hook <hookname> [--ecc] "
a61fe418 5371 return 1
5372 fi
5373
93bce1b2 5374 _initpath "$_d" "$_isEcc"
4c2a3841 5375 if [ ! -d "$DOMAIN_PATH" ]; then
9672c6b8 5376 _err "The domain '$_d' is not a cert name. You must use the cert name to specify the cert to install."
5377 _err "Can not find path:'$DOMAIN_PATH'"
a61fe418 5378 return 1
5379 fi
4c2a3841 5380
93bce1b2 5381 . "$DOMAIN_CONF"
4c2a3841 5382
93bce1b2 5383 _savedomainconf Le_DeployHook "$_hooks"
4c2a3841 5384
93bce1b2 5385 _deploy "$_d" "$_hooks"
a61fe418 5386}
5387
4c3b3608 5388installcert() {
85e1f4ea 5389 _main_domain="$1"
5390 if [ -z "$_main_domain" ]; then
2e87e64b 5391 _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 5392 return 1
5393 fi
5394
85e1f4ea 5395 _real_cert="$2"
5396 _real_key="$3"
5397 _real_ca="$4"
5398 _reload_cmd="$5"
5399 _real_fullchain="$6"
43822d37 5400 _isEcc="$7"
5401
85e1f4ea 5402 _initpath "$_main_domain" "$_isEcc"
4c2a3841 5403 if [ ! -d "$DOMAIN_PATH" ]; then
9672c6b8 5404 _err "The domain '$_main_domain' is not a cert name. You must use the cert name to specify the cert to install."
5405 _err "Can not find path:'$DOMAIN_PATH'"
43822d37 5406 return 1
5407 fi
5408
85e1f4ea 5409 _savedomainconf "Le_RealCertPath" "$_real_cert"
5410 _savedomainconf "Le_RealCACertPath" "$_real_ca"
5411 _savedomainconf "Le_RealKeyPath" "$_real_key"
7690f73e 5412 _savedomainconf "Le_ReloadCmd" "$_reload_cmd" "base64"
85e1f4ea 5413 _savedomainconf "Le_RealFullChainPath" "$_real_fullchain"
5414
044da37c 5415 _installcert "$_main_domain" "$_real_cert" "$_real_key" "$_real_ca" "$_real_fullchain" "$_reload_cmd"
43822d37 5416}
4c3b3608 5417
044da37c 5418#domain cert key ca fullchain reloadcmd backup-prefix
43822d37 5419_installcert() {
85e1f4ea 5420 _main_domain="$1"
5421 _real_cert="$2"
5422 _real_key="$3"
5423 _real_ca="$4"
044da37c 5424 _real_fullchain="$5"
5425 _reload_cmd="$6"
5426 _backup_prefix="$7"
4c3b3608 5427
85e1f4ea 5428 if [ "$_real_cert" = "$NO_VALUE" ]; then
5429 _real_cert=""
4d2f38b0 5430 fi
85e1f4ea 5431 if [ "$_real_key" = "$NO_VALUE" ]; then
5432 _real_key=""
4d2f38b0 5433 fi
85e1f4ea 5434 if [ "$_real_ca" = "$NO_VALUE" ]; then
5435 _real_ca=""
4d2f38b0 5436 fi
85e1f4ea 5437 if [ "$_reload_cmd" = "$NO_VALUE" ]; then
5438 _reload_cmd=""
4d2f38b0 5439 fi
85e1f4ea 5440 if [ "$_real_fullchain" = "$NO_VALUE" ]; then
5441 _real_fullchain=""
4d2f38b0 5442 fi
4c2a3841 5443
044da37c 5444 _backup_path="$DOMAIN_BACKUP_PATH/$_backup_prefix"
5445 mkdir -p "$_backup_path"
5446
85e1f4ea 5447 if [ "$_real_cert" ]; then
5448 _info "Installing cert to:$_real_cert"
bd04638d 5449 if [ -f "$_real_cert" ] && [ ! "$_ACME_IS_RENEW" ]; then
044da37c 5450 cp "$_real_cert" "$_backup_path/cert.bak"
4c3b3608 5451 fi
206be3c1 5452 cat "$CERT_PATH" >"$_real_cert" || return 1
4c3b3608 5453 fi
4c2a3841 5454
85e1f4ea 5455 if [ "$_real_ca" ]; then
5456 _info "Installing CA to:$_real_ca"
5457 if [ "$_real_ca" = "$_real_cert" ]; then
5458 echo "" >>"$_real_ca"
206be3c1 5459 cat "$CA_CERT_PATH" >>"$_real_ca" || return 1
4c3b3608 5460 else
bd04638d 5461 if [ -f "$_real_ca" ] && [ ! "$_ACME_IS_RENEW" ]; then
044da37c 5462 cp "$_real_ca" "$_backup_path/ca.bak"
78552b18 5463 fi
206be3c1 5464 cat "$CA_CERT_PATH" >"$_real_ca" || return 1
4c3b3608 5465 fi
5466 fi
5467
85e1f4ea 5468 if [ "$_real_key" ]; then
5469 _info "Installing key to:$_real_key"
bd04638d 5470 if [ -f "$_real_key" ] && [ ! "$_ACME_IS_RENEW" ]; then
044da37c 5471 cp "$_real_key" "$_backup_path/key.bak"
4c3b3608 5472 fi
82014583 5473 if [ -f "$_real_key" ]; then
206be3c1 5474 cat "$CERT_KEY_PATH" >"$_real_key" || return 1
82014583 5475 else
206be3c1 5476 cat "$CERT_KEY_PATH" >"$_real_key" || return 1
7b92371a 5477 chmod 600 "$_real_key"
82014583 5478 fi
4c3b3608 5479 fi
4c2a3841 5480
85e1f4ea 5481 if [ "$_real_fullchain" ]; then
5482 _info "Installing full chain to:$_real_fullchain"
bd04638d 5483 if [ -f "$_real_fullchain" ] && [ ! "$_ACME_IS_RENEW" ]; then
044da37c 5484 cp "$_real_fullchain" "$_backup_path/fullchain.bak"
a63b05a9 5485 fi
206be3c1 5486 cat "$CERT_FULLCHAIN_PATH" >"$_real_fullchain" || return 1
4c2a3841 5487 fi
4c3b3608 5488
85e1f4ea 5489 if [ "$_reload_cmd" ]; then
5490 _info "Run reload cmd: $_reload_cmd"
25555b8c 5491 if (
839bf0e2 5492 export CERT_PATH
5493 export CERT_KEY_PATH
5494 export CA_CERT_PATH
5495 export CERT_FULLCHAIN_PATH
b3f61297 5496 export Le_Domain="$_main_domain"
85e1f4ea 5497 cd "$DOMAIN_PATH" && eval "$_reload_cmd"
839bf0e2 5498 ); then
43822d37 5499 _info "$(__green "Reload success")"
4d2f38b0 5500 else
5501 _err "Reload error for :$Le_Domain"
5502 fi
5503 fi
5504
4c3b3608 5505}
5506
77f96b38 5507__read_password() {
5508 unset _pp
5509 prompt="Enter Password:"
0b04a7f1 5510 while IFS= read -p "$prompt" -r -s -n 1 char; do
5511 if [ "$char" = $'\0' ]; then
4ebad105 5512 break
0b04a7f1 5513 fi
5514 prompt='*'
5515 _pp="$_pp$char"
77f96b38 5516 done
5517 echo "$_pp"
5518}
5519
5520_install_win_taskscheduler() {
5521 _lesh="$1"
5522 _centry="$2"
5523 _randomminute="$3"
5524 if ! _exists cygpath; then
5525 _err "cygpath not found"
5526 return 1
5527 fi
5528 if ! _exists schtasks; then
5529 _err "schtasks.exe is not found, are you on Windows?"
5530 return 1
5531 fi
5532 _winbash="$(cygpath -w $(which bash))"
5533 _debug _winbash "$_winbash"
5534 if [ -z "$_winbash" ]; then
5535 _err "can not find bash path"
5536 return 1
5537 fi
5538 _myname="$(whoami)"
5539 _debug "_myname" "$_myname"
5540 if [ -z "$_myname" ]; then
5541 _err "can not find my user name"
5542 return 1
5543 fi
5544 _debug "_lesh" "$_lesh"
5545
5546 _info "To install scheduler task in your Windows account, you must input your windows password."
5547 _info "$PROJECT_NAME doesn't save your password."
5548 _info "Please input your Windows password for: $(__green "$_myname")"
5549 _password="$(__read_password)"
5550 #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
5551 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
5552 echo
5553
5554}
5555
5556_uninstall_win_taskscheduler() {
5557 if ! _exists schtasks; then
5558 _err "schtasks.exe is not found, are you on Windows?"
5559 return 1
5560 fi
5561 if ! echo SCHTASKS /query /tn "$_WINDOWS_SCHEDULER_NAME" | cmd.exe >/dev/null; then
5562 _debug "scheduler $_WINDOWS_SCHEDULER_NAME is not found."
5563 else
5564 _info "Removing $_WINDOWS_SCHEDULER_NAME"
0b04a7f1 5565 echo SCHTASKS /delete /f /tn "$_WINDOWS_SCHEDULER_NAME" | cmd.exe >/dev/null
77f96b38 5566 fi
5567}
5568
27dbe77f 5569#confighome
4c3b3608 5570installcronjob() {
27dbe77f 5571 _c_home="$1"
4c3b3608 5572 _initpath
415f375c 5573 _CRONTAB="crontab"
77f96b38 5574 if [ -f "$LE_WORKING_DIR/$PROJECT_ENTRY" ]; then
5575 lesh="\"$LE_WORKING_DIR\"/$PROJECT_ENTRY"
5576 else
5577 _err "Can not install cronjob, $PROJECT_ENTRY not found."
5578 return 1
5579 fi
5580 if [ "$_c_home" ]; then
5581 _c_entry="--config-home \"$_c_home\" "
5582 fi
5583 _t=$(_time)
5584 random_minute=$(_math $_t % 60)
5585
415f375c 5586 if ! _exists "$_CRONTAB" && _exists "fcrontab"; then
5587 _CRONTAB="fcrontab"
5588 fi
77f96b38 5589
415f375c 5590 if ! _exists "$_CRONTAB"; then
77f96b38 5591 if _exists cygpath && _exists schtasks.exe; then
5592 _info "It seems you are on Windows, let's install Windows scheduler task."
5593 if _install_win_taskscheduler "$lesh" "$_c_entry" "$random_minute"; then
5594 _info "Install Windows scheduler task success."
5595 return 0
5596 else
5597 _err "Install Windows scheduler task failed."
5598 return 1
5599 fi
5600 fi
415f375c 5601 _err "crontab/fcrontab doesn't exist, so, we can not install cron jobs."
77546ea5 5602 _err "All your certs will not be renewed automatically."
a7b7355d 5603 _err "You must add your own cron job to call '$PROJECT_ENTRY --cron' everyday."
77546ea5 5604 return 1
5605 fi
4c3b3608 5606 _info "Installing cron job"
415f375c 5607 if ! $_CRONTAB -l | grep "$PROJECT_ENTRY --cron"; then
e2c939fb 5608 if _exists uname && uname -a | grep SunOS >/dev/null; then
415f375c 5609 $_CRONTAB -l | {
4c2a3841 5610 cat
0533bde9 5611 echo "$random_minute 0 * * * $lesh --cron --home \"$LE_WORKING_DIR\" $_c_entry> /dev/null"
415f375c 5612 } | $_CRONTAB --
22ea4004 5613 else
415f375c 5614 $_CRONTAB -l | {
4c2a3841 5615 cat
0533bde9 5616 echo "$random_minute 0 * * * $lesh --cron --home \"$LE_WORKING_DIR\" $_c_entry> /dev/null"
415f375c 5617 } | $_CRONTAB -
22ea4004 5618 fi
4c3b3608 5619 fi
4c2a3841 5620 if [ "$?" != "0" ]; then
4c3b3608 5621 _err "Install cron job failed. You need to manually renew your certs."
5622 _err "Or you can add cronjob by yourself:"
a7b7355d 5623 _err "$lesh --cron --home \"$LE_WORKING_DIR\" > /dev/null"
4c3b3608 5624 return 1
5625 fi
5626}
5627
5628uninstallcronjob() {
415f375c 5629 _CRONTAB="crontab"
5630 if ! _exists "$_CRONTAB" && _exists "fcrontab"; then
5631 _CRONTAB="fcrontab"
5632 fi
5633
5634 if ! _exists "$_CRONTAB"; then
77f96b38 5635 if _exists cygpath && _exists schtasks.exe; then
5636 _info "It seems you are on Windows, let's uninstall Windows scheduler task."
5637 if _uninstall_win_taskscheduler; then
5638 _info "Uninstall Windows scheduler task success."
5639 return 0
5640 else
5641 _err "Uninstall Windows scheduler task failed."
5642 return 1
5643 fi
5644 fi
37db5b81 5645 return
5646 fi
4c3b3608 5647 _info "Removing cron job"
415f375c 5648 cr="$($_CRONTAB -l | grep "$PROJECT_ENTRY --cron")"
4c2a3841 5649 if [ "$cr" ]; then
5650 if _exists uname && uname -a | grep solaris >/dev/null; then
415f375c 5651 $_CRONTAB -l | sed "/$PROJECT_ENTRY --cron/d" | $_CRONTAB --
22ea4004 5652 else
415f375c 5653 $_CRONTAB -l | sed "/$PROJECT_ENTRY --cron/d" | $_CRONTAB -
22ea4004 5654 fi
a7b7355d 5655 LE_WORKING_DIR="$(echo "$cr" | cut -d ' ' -f 9 | tr -d '"')"
4c3b3608 5656 _info LE_WORKING_DIR "$LE_WORKING_DIR"
27dbe77f 5657 if _contains "$cr" "--config-home"; then
f5b546b3 5658 LE_CONFIG_HOME="$(echo "$cr" | cut -d ' ' -f 11 | tr -d '"')"
5659 _debug LE_CONFIG_HOME "$LE_CONFIG_HOME"
27dbe77f 5660 fi
4c2a3841 5661 fi
4c3b3608 5662 _initpath
a7b7355d 5663
4c3b3608 5664}
5665
1041c9f9 5666#domain isECC revokeReason
6cb415f5 5667revoke() {
5668 Le_Domain="$1"
4c2a3841 5669 if [ -z "$Le_Domain" ]; then
2e87e64b 5670 _usage "Usage: $PROJECT_ENTRY --revoke --domain <domain.tld> [--ecc]"
6cb415f5 5671 return 1
5672 fi
4c2a3841 5673
43822d37 5674 _isEcc="$2"
1041c9f9 5675 _reason="$3"
5676 if [ -z "$_reason" ]; then
5677 _reason="0"
5678 fi
c4a375b3 5679 _initpath "$Le_Domain" "$_isEcc"
4c2a3841 5680 if [ ! -f "$DOMAIN_CONF" ]; then
6cb415f5 5681 _err "$Le_Domain is not a issued domain, skip."
4c2a3841 5682 return 1
6cb415f5 5683 fi
4c2a3841 5684
5685 if [ ! -f "$CERT_PATH" ]; then
6cb415f5 5686 _err "Cert for $Le_Domain $CERT_PATH is not found, skip."
5687 return 1
5688 fi
6cb415f5 5689
11927a76 5690 cert="$(_getfile "${CERT_PATH}" "${BEGIN_CERT}" "${END_CERT}" | tr -d "\r\n" | _url_replace)"
4c2a3841 5691
5692 if [ -z "$cert" ]; then
6cb415f5 5693 _err "Cert for $Le_Domain is empty found, skip."
5694 return 1
5695 fi
4c2a3841 5696
48d9a8c1 5697 _initAPI
5698
af3ea2d4 5699 data="{\"certificate\": \"$cert\",\"reason\":$_reason}"
5700
48d9a8c1 5701 uri="${ACME_REVOKE_CERT}"
6cb415f5 5702
4c2a3841 5703 if [ -f "$CERT_KEY_PATH" ]; then
1befee5a 5704 _info "Try domain key first."
c4a375b3 5705 if _send_signed_request "$uri" "$data" "" "$CERT_KEY_PATH"; then
4c2a3841 5706 if [ -z "$response" ]; then
1befee5a 5707 _info "Revoke success."
c4a375b3 5708 rm -f "$CERT_PATH"
1befee5a 5709 return 0
4c2a3841 5710 else
1befee5a 5711 _err "Revoke error by domain key."
5712 _err "$response"
5713 fi
6cb415f5 5714 fi
4c2a3841 5715 else
eca57bee 5716 _info "Domain key file doesn't exist."
6cb415f5 5717 fi
6cb415f5 5718
1befee5a 5719 _info "Try account key."
6cb415f5 5720
c4a375b3 5721 if _send_signed_request "$uri" "$data" "" "$ACCOUNT_KEY_PATH"; then
4c2a3841 5722 if [ -z "$response" ]; then
6cb415f5 5723 _info "Revoke success."
c4a375b3 5724 rm -f "$CERT_PATH"
6cb415f5 5725 return 0
4c2a3841 5726 else
6cb415f5 5727 _err "Revoke error."
c9c31c04 5728 _debug "$response"
6cb415f5 5729 fi
5730 fi
5731 return 1
5732}
4c3b3608 5733
78f0201d 5734#domain ecc
5735remove() {
5736 Le_Domain="$1"
5737 if [ -z "$Le_Domain" ]; then
2e87e64b 5738 _usage "Usage: $PROJECT_ENTRY --remove --domain <domain.tld> [--ecc]"
78f0201d 5739 return 1
5740 fi
5741
5742 _isEcc="$2"
5743
5744 _initpath "$Le_Domain" "$_isEcc"
5745 _removed_conf="$DOMAIN_CONF.removed"
5746 if [ ! -f "$DOMAIN_CONF" ]; then
5747 if [ -f "$_removed_conf" ]; then
5748 _err "$Le_Domain is already removed, You can remove the folder by yourself: $DOMAIN_PATH"
5749 else
5750 _err "$Le_Domain is not a issued domain, skip."
5751 fi
5752 return 1
5753 fi
5754
5755 if mv "$DOMAIN_CONF" "$_removed_conf"; then
68aea3af 5756 _info "$Le_Domain is removed, the key and cert files are in $(__green $DOMAIN_PATH)"
78f0201d 5757 _info "You can remove them by yourself."
5758 return 0
5759 else
5760 _err "Remove $Le_Domain failed."
5761 return 1
5762 fi
5763}
5764
0c00e870 5765#domain vtype
5766_deactivate() {
5767 _d_domain="$1"
5768 _d_type="$2"
5769 _initpath
4c2a3841 5770
af3ea2d4 5771 _identifiers="{\"type\":\"dns\",\"value\":\"$_d_domain\"}"
5772 if ! _send_signed_request "$ACME_NEW_ORDER" "{\"identifiers\": [$_identifiers]}"; then
5773 _err "Can not get domain new order."
5774 return 1
5775 fi
5776 _authorizations_seg="$(echo "$response" | _egrep_o '"authorizations" *: *\[[^\]*\]' | cut -d '[' -f 2 | tr -d ']' | tr -d '"')"
5777 _debug2 _authorizations_seg "$_authorizations_seg"
5778 if [ -z "$_authorizations_seg" ]; then
5779 _err "_authorizations_seg not found."
5780 _clearup
5781 _on_issue_err "$_post_hook"
5782 return 1
5783 fi
d2cde379 5784
af3ea2d4 5785 authzUri="$_authorizations_seg"
5786 _debug2 "authzUri" "$authzUri"
5787 if ! _send_signed_request "$authzUri"; then
5788 _err "get to authz error."
5789 _err "_authorizations_seg" "$_authorizations_seg"
5790 _err "authzUri" "$authzUri"
5791 _clearup
5792 _on_issue_err "$_post_hook"
5793 return 1
14d7bfda 5794 fi
0c00e870 5795
af3ea2d4 5796 response="$(echo "$response" | _normalizeJson)"
5797 _debug2 response "$response"
5798 _URL_NAME="url"
5799
cc8f2afc 5800 entries="$(echo "$response" | tr '][' '==' | _egrep_o "challenges\": *=[^=]*=" | tr '}{' '\n' | grep "\"status\": *\"valid\"")"
14d7bfda 5801 if [ -z "$entries" ]; then
5802 _info "No valid entries found."
5803 if [ -z "$thumbprint" ]; then
5804 thumbprint="$(__calc_account_thumbprint)"
5805 fi
5806 _debug "Trigger validation."
d2cde379 5807 vtype="$VTYPE_DNS"
d0d74907 5808 entry="$(echo "$response" | _egrep_o '[^\{]*"type":"'$vtype'"[^\}]*')"
14d7bfda 5809 _debug entry "$entry"
5810 if [ -z "$entry" ]; then
5811 _err "Error, can not get domain token $d"
0c00e870 5812 return 1
5813 fi
d0d74907 5814 token="$(echo "$entry" | _egrep_o '"token":"[^"]*' | cut -d : -f 2 | tr -d '"')"
14d7bfda 5815 _debug token "$token"
4c2a3841 5816
d0d74907 5817 uri="$(echo "$entry" | _egrep_o "\"$_URL_NAME\":\"[^\"]*" | cut -d : -f 2,3 | tr -d '"')"
14d7bfda 5818 _debug uri "$uri"
5819
5820 keyauthorization="$token.$thumbprint"
5821 _debug keyauthorization "$keyauthorization"
5822 __trigger_validation "$uri" "$keyauthorization"
5823
5824 fi
5825
5826 _d_i=0
5827 _d_max_retry=$(echo "$entries" | wc -l)
5828 while [ "$_d_i" -lt "$_d_max_retry" ]; do
5829 _info "Deactivate: $_d_domain"
5830 _d_i="$(_math $_d_i + 1)"
5831 entry="$(echo "$entries" | sed -n "${_d_i}p")"
0c00e870 5832 _debug entry "$entry"
4c2a3841 5833
5834 if [ -z "$entry" ]; then
fb2029e7 5835 _info "No more valid entry found."
0c00e870 5836 break
5837 fi
4c2a3841 5838
d0d74907 5839 _vtype="$(echo "$entry" | _egrep_o '"type": *"[^"]*"' | cut -d : -f 2 | tr -d '"')"
c4a375b3 5840 _debug _vtype "$_vtype"
0c00e870 5841 _info "Found $_vtype"
5842
199ca77c 5843 uri="$(echo "$entry" | _egrep_o "\"$_URL_NAME\":\"[^\"]*\"" | tr -d '" ' | cut -d : -f 2-)"
c4a375b3 5844 _debug uri "$uri"
4c2a3841 5845
5846 if [ "$_d_type" ] && [ "$_d_type" != "$_vtype" ]; then
0c00e870 5847 _info "Skip $_vtype"
5848 continue
5849 fi
4c2a3841 5850
0c00e870 5851 _info "Deactivate: $_vtype"
4c2a3841 5852
af3ea2d4 5853 _djson="{\"status\":\"deactivated\"}"
d2cde379 5854
5855 if _send_signed_request "$authzUri" "$_djson" && _contains "$response" '"deactivated"'; then
14d7bfda 5856 _info "Deactivate: $_vtype success."
5857 else
0c00e870 5858 _err "Can not deactivate $_vtype."
14d7bfda 5859 break
0c00e870 5860 fi
4c2a3841 5861
0c00e870 5862 done
5863 _debug "$_d_i"
14d7bfda 5864 if [ "$_d_i" -eq "$_d_max_retry" ]; then
0c00e870 5865 _info "Deactivated success!"
5866 else
5867 _err "Deactivate failed."
5868 fi
5869
5870}
5871
5872deactivate() {
3f4513b3 5873 _d_domain_list="$1"
0c00e870 5874 _d_type="$2"
5875 _initpath
a3bdaa85 5876 _initAPI
3f4513b3 5877 _debug _d_domain_list "$_d_domain_list"
4c2a3841 5878 if [ -z "$(echo $_d_domain_list | cut -d , -f 1)" ]; then
2e87e64b 5879 _usage "Usage: $PROJECT_ENTRY --deactivate --domain <domain.tld> [--domain <domain2.tld> ...]"
0c00e870 5880 return 1
5881 fi
4c2a3841 5882 for _d_dm in $(echo "$_d_domain_list" | tr ',' ' '); do
5883 if [ -z "$_d_dm" ] || [ "$_d_dm" = "$NO_VALUE" ]; then
3f4513b3 5884 continue
5885 fi
c4a375b3 5886 if ! _deactivate "$_d_dm" "$_d_type"; then
86c017ec 5887 return 1
5888 fi
3f4513b3 5889 done
0c00e870 5890}
5891
4c3b3608 5892# Detect profile file if not specified as environment variable
5893_detect_profile() {
4c2a3841 5894 if [ -n "$PROFILE" -a -f "$PROFILE" ]; then
4c3b3608 5895 echo "$PROFILE"
5896 return
5897 fi
5898
4c3b3608 5899 DETECTED_PROFILE=''
4c3b3608 5900 SHELLTYPE="$(basename "/$SHELL")"
5901
4c2a3841 5902 if [ "$SHELLTYPE" = "bash" ]; then
5903 if [ -f "$HOME/.bashrc" ]; then
4c3b3608 5904 DETECTED_PROFILE="$HOME/.bashrc"
4c2a3841 5905 elif [ -f "$HOME/.bash_profile" ]; then
4c3b3608 5906 DETECTED_PROFILE="$HOME/.bash_profile"
5907 fi
4c2a3841 5908 elif [ "$SHELLTYPE" = "zsh" ]; then
4c3b3608 5909 DETECTED_PROFILE="$HOME/.zshrc"
5910 fi
5911
4c2a3841 5912 if [ -z "$DETECTED_PROFILE" ]; then
5913 if [ -f "$HOME/.profile" ]; then
4c3b3608 5914 DETECTED_PROFILE="$HOME/.profile"
4c2a3841 5915 elif [ -f "$HOME/.bashrc" ]; then
4c3b3608 5916 DETECTED_PROFILE="$HOME/.bashrc"
4c2a3841 5917 elif [ -f "$HOME/.bash_profile" ]; then
4c3b3608 5918 DETECTED_PROFILE="$HOME/.bash_profile"
4c2a3841 5919 elif [ -f "$HOME/.zshrc" ]; then
4c3b3608 5920 DETECTED_PROFILE="$HOME/.zshrc"
5921 fi
5922 fi
5923
1be222f6 5924 echo "$DETECTED_PROFILE"
4c3b3608 5925}
5926
5927_initconf() {
5928 _initpath
4c2a3841 5929 if [ ! -f "$ACCOUNT_CONF_PATH" ]; then
0ca5b799 5930 echo "
d404e92d 5931
d0871bda 5932#LOG_FILE=\"$DEFAULT_LOG_FILE\"
6b500036 5933#LOG_LEVEL=1
5ea6e9c9 5934
251d1c5c 5935#AUTO_UPGRADE=\"1\"
89002ed2 5936
569d6c55 5937#NO_TIMESTAMP=1
5b771039 5938
d5ec5f80 5939 " >"$ACCOUNT_CONF_PATH"
4c3b3608 5940 fi
5941}
5942
c8e9a31e 5943# nocron
c60883ef 5944_precheck() {
c8e9a31e 5945 _nocron="$1"
4c2a3841 5946
5947 if ! _exists "curl" && ! _exists "wget"; then
c60883ef 5948 _err "Please install curl or wget first, we need to access http resources."
4c3b3608 5949 return 1
5950 fi
4c2a3841 5951
5952 if [ -z "$_nocron" ]; then
415f375c 5953 if ! _exists "crontab" && ! _exists "fcrontab"; then
77f96b38 5954 if _exists cygpath && _exists schtasks.exe; then
5955 _info "It seems you are on Windows, we will install Windows scheduler task."
5956 else
5957 _err "It is recommended to install crontab first. try to install 'cron, crontab, crontabs or vixie-cron'."
5958 _err "We need to set cron job to renew the certs automatically."
5959 _err "Otherwise, your certs will not be able to be renewed automatically."
5960 if [ -z "$FORCE" ]; then
5961 _err "Please add '--force' and try install again to go without crontab."
5962 _err "./$PROJECT_ENTRY --install --force"
5963 return 1
5964 fi
c8e9a31e 5965 fi
77546ea5 5966 fi
4c3b3608 5967 fi
4c2a3841 5968
d8ba26e6 5969 if ! _exists "${ACME_OPENSSL_BIN:-openssl}"; then
851fedf7 5970 _err "Please install openssl first. ACME_OPENSSL_BIN=$ACME_OPENSSL_BIN"
c60883ef 5971 _err "We need openssl to generate keys."
4c3b3608 5972 return 1
5973 fi
4c2a3841 5974
3794b5cb 5975 if ! _exists "socat"; then
5976 _err "It is recommended to install socat first."
5977 _err "We use socat for standalone server if you use standalone mode."
c60883ef 5978 _err "If you don't use standalone mode, just ignore this warning."
5979 fi
4c2a3841 5980
c60883ef 5981 return 0
5982}
5983
0a7c9364 5984_setShebang() {
5985 _file="$1"
5986 _shebang="$2"
4c2a3841 5987 if [ -z "$_shebang" ]; then
43822d37 5988 _usage "Usage: file shebang"
0a7c9364 5989 return 1
5990 fi
5991 cp "$_file" "$_file.tmp"
4c2a3841 5992 echo "$_shebang" >"$_file"
5993 sed -n 2,99999p "$_file.tmp" >>"$_file"
5994 rm -f "$_file.tmp"
0a7c9364 5995}
5996
27dbe77f 5997#confighome
94dc5f33 5998_installalias() {
27dbe77f 5999 _c_home="$1"
94dc5f33 6000 _initpath
6001
6002 _envfile="$LE_WORKING_DIR/$PROJECT_ENTRY.env"
4c2a3841 6003 if [ "$_upgrading" ] && [ "$_upgrading" = "1" ]; then
44edb2bd 6004 echo "$(cat "$_envfile")" | sed "s|^LE_WORKING_DIR.*$||" >"$_envfile"
6005 echo "$(cat "$_envfile")" | sed "s|^alias le.*$||" >"$_envfile"
6006 echo "$(cat "$_envfile")" | sed "s|^alias le.sh.*$||" >"$_envfile"
94dc5f33 6007 fi
6008
27dbe77f 6009 if [ "$_c_home" ]; then
be83a6a3 6010 _c_entry=" --config-home '$_c_home'"
27dbe77f 6011 fi
6012
1786a5e5 6013 _setopt "$_envfile" "export LE_WORKING_DIR" "=" "\"$LE_WORKING_DIR\""
f5b546b3 6014 if [ "$_c_home" ]; then
6015 _setopt "$_envfile" "export LE_CONFIG_HOME" "=" "\"$LE_CONFIG_HOME\""
d04434e3 6016 else
6017 _sed_i "/^export LE_CONFIG_HOME/d" "$_envfile"
f5b546b3 6018 fi
be83a6a3 6019 _setopt "$_envfile" "alias $PROJECT_ENTRY" "=" "\"$LE_WORKING_DIR/$PROJECT_ENTRY$_c_entry\""
94dc5f33 6020
6021 _profile="$(_detect_profile)"
4c2a3841 6022 if [ "$_profile" ]; then
94dc5f33 6023 _debug "Found profile: $_profile"
aba5c634 6024 _info "Installing alias to '$_profile'"
94dc5f33 6025 _setopt "$_profile" ". \"$_envfile\""
6026 _info "OK, Close and reopen your terminal to start using $PROJECT_NAME"
6027 else
6028 _info "No profile is found, you will need to go into $LE_WORKING_DIR to use $PROJECT_NAME"
6029 fi
94dc5f33 6030
6031 #for csh
6032 _cshfile="$LE_WORKING_DIR/$PROJECT_ENTRY.csh"
94dc5f33 6033 _csh_profile="$HOME/.cshrc"
4c2a3841 6034 if [ -f "$_csh_profile" ]; then
aba5c634 6035 _info "Installing alias to '$_csh_profile'"
6626371d 6036 _setopt "$_cshfile" "setenv LE_WORKING_DIR" " " "\"$LE_WORKING_DIR\""
f5b546b3 6037 if [ "$_c_home" ]; then
6038 _setopt "$_cshfile" "setenv LE_CONFIG_HOME" " " "\"$LE_CONFIG_HOME\""
d04434e3 6039 else
6040 _sed_i "/^setenv LE_CONFIG_HOME/d" "$_cshfile"
f5b546b3 6041 fi
be83a6a3 6042 _setopt "$_cshfile" "alias $PROJECT_ENTRY" " " "\"$LE_WORKING_DIR/$PROJECT_ENTRY$_c_entry\""
4c2a3841 6043 _setopt "$_csh_profile" "source \"$_cshfile\""
94dc5f33 6044 fi
4c2a3841 6045
acafa585 6046 #for tcsh
6047 _tcsh_profile="$HOME/.tcshrc"
4c2a3841 6048 if [ -f "$_tcsh_profile" ]; then
aba5c634 6049 _info "Installing alias to '$_tcsh_profile'"
acafa585 6050 _setopt "$_cshfile" "setenv LE_WORKING_DIR" " " "\"$LE_WORKING_DIR\""
f5b546b3 6051 if [ "$_c_home" ]; then
6052 _setopt "$_cshfile" "setenv LE_CONFIG_HOME" " " "\"$LE_CONFIG_HOME\""
6053 fi
be83a6a3 6054 _setopt "$_cshfile" "alias $PROJECT_ENTRY" " " "\"$LE_WORKING_DIR/$PROJECT_ENTRY$_c_entry\""
4c2a3841 6055 _setopt "$_tcsh_profile" "source \"$_cshfile\""
acafa585 6056 fi
94dc5f33 6057
6058}
6059
58c4eaaf 6060# nocron confighome noprofile accountemail
c60883ef 6061install() {
f3e4cea3 6062
4c2a3841 6063 if [ -z "$LE_WORKING_DIR" ]; then
f3e4cea3 6064 LE_WORKING_DIR="$DEFAULT_INSTALL_HOME"
6065 fi
4c2a3841 6066
c8e9a31e 6067 _nocron="$1"
27dbe77f 6068 _c_home="$2"
86ef0a26 6069 _noprofile="$3"
58c4eaaf 6070 _accountemail="$4"
6071
4c2a3841 6072 if ! _initpath; then
c60883ef 6073 _err "Install failed."
4c3b3608 6074 return 1
6075 fi
4c2a3841 6076 if [ "$_nocron" ]; then
52677b0a 6077 _debug "Skip install cron job"
6078 fi
4c2a3841 6079
bd04638d 6080 if [ "$_ACME_IN_CRON" != "1" ]; then
4356eefb 6081 if ! _precheck "$_nocron"; then
6082 _err "Pre-check failed, can not install."
6083 return 1
6084 fi
4c3b3608 6085 fi
4c2a3841 6086
8e845d9f 6087 if [ -z "$_c_home" ] && [ "$LE_CONFIG_HOME" != "$LE_WORKING_DIR" ]; then
6088 _info "Using config home: $LE_CONFIG_HOME"
6089 _c_home="$LE_CONFIG_HOME"
6090 fi
6091
6cc11ffb 6092 #convert from le
4c2a3841 6093 if [ -d "$HOME/.le" ]; then
6094 for envfile in "le.env" "le.sh.env"; do
6095 if [ -f "$HOME/.le/$envfile" ]; then
6096 if grep "le.sh" "$HOME/.le/$envfile" >/dev/null; then
6097 _upgrading="1"
6098 _info "You are upgrading from le.sh"
6099 _info "Renaming \"$HOME/.le\" to $LE_WORKING_DIR"
6100 mv "$HOME/.le" "$LE_WORKING_DIR"
6101 mv "$LE_WORKING_DIR/$envfile" "$LE_WORKING_DIR/$PROJECT_ENTRY.env"
6102 break
6cc11ffb 6103 fi
6104 fi
6105 done
6106 fi
6107
4c3b3608 6108 _info "Installing to $LE_WORKING_DIR"
635695ec 6109
d04434e3 6110 if [ ! -d "$LE_WORKING_DIR" ]; then
6111 if ! mkdir -p "$LE_WORKING_DIR"; then
6112 _err "Can not create working dir: $LE_WORKING_DIR"
6113 return 1
6114 fi
6115
6116 chmod 700 "$LE_WORKING_DIR"
4a0f23e2 6117 fi
4c2a3841 6118
d04434e3 6119 if [ ! -d "$LE_CONFIG_HOME" ]; then
6120 if ! mkdir -p "$LE_CONFIG_HOME"; then
6121 _err "Can not create config dir: $LE_CONFIG_HOME"
6122 return 1
6123 fi
762978f8 6124
d04434e3 6125 chmod 700 "$LE_CONFIG_HOME"
27dbe77f 6126 fi
6127
d5ec5f80 6128 cp "$PROJECT_ENTRY" "$LE_WORKING_DIR/" && chmod +x "$LE_WORKING_DIR/$PROJECT_ENTRY"
4c3b3608 6129
4c2a3841 6130 if [ "$?" != "0" ]; then
a7b7355d 6131 _err "Install failed, can not copy $PROJECT_ENTRY"
4c3b3608 6132 return 1
6133 fi
6134
a7b7355d 6135 _info "Installed to $LE_WORKING_DIR/$PROJECT_ENTRY"
4c3b3608 6136
bd04638d 6137 if [ "$_ACME_IN_CRON" != "1" ] && [ -z "$_noprofile" ]; then
4356eefb 6138 _installalias "$_c_home"
6139 fi
4c3b3608 6140
4c2a3841 6141 for subf in $_SUB_FOLDERS; do
6142 if [ -d "$subf" ]; then
d5ec5f80 6143 mkdir -p "$LE_WORKING_DIR/$subf"
6144 cp "$subf"/* "$LE_WORKING_DIR"/"$subf"/
a61fe418 6145 fi
6146 done
6147
4c2a3841 6148 if [ ! -f "$ACCOUNT_CONF_PATH" ]; then
4c3b3608 6149 _initconf
6150 fi
6cc11ffb 6151
4c2a3841 6152 if [ "$_DEFAULT_ACCOUNT_CONF_PATH" != "$ACCOUNT_CONF_PATH" ]; then
635695ec 6153 _setopt "$_DEFAULT_ACCOUNT_CONF_PATH" "ACCOUNT_CONF_PATH" "=" "\"$ACCOUNT_CONF_PATH\""
6cc11ffb 6154 fi
6155
4c2a3841 6156 if [ "$_DEFAULT_CERT_HOME" != "$CERT_HOME" ]; then
b2817897 6157 _saveaccountconf "CERT_HOME" "$CERT_HOME"
6158 fi
6159
4c2a3841 6160 if [ "$_DEFAULT_ACCOUNT_KEY_PATH" != "$ACCOUNT_KEY_PATH" ]; then
b2817897 6161 _saveaccountconf "ACCOUNT_KEY_PATH" "$ACCOUNT_KEY_PATH"
6162 fi
4c2a3841 6163
6164 if [ -z "$_nocron" ]; then
27dbe77f 6165 installcronjob "$_c_home"
c8e9a31e 6166 fi
0a7c9364 6167
4c2a3841 6168 if [ -z "$NO_DETECT_SH" ]; then
641989fd 6169 #Modify shebang
4c2a3841 6170 if _exists bash; then
694af4ae 6171 _bash_path="$(bash -c "command -v bash 2>/dev/null")"
6172 if [ -z "$_bash_path" ]; then
6173 _bash_path="$(bash -c 'echo $SHELL')"
6174 fi
6175 fi
6176 if [ "$_bash_path" ]; then
329174b6 6177 _info "Good, bash is found, so change the shebang to use bash as preferred."
694af4ae 6178 _shebang='#!'"$_bash_path"
641989fd 6179 _setShebang "$LE_WORKING_DIR/$PROJECT_ENTRY" "$_shebang"
4c2a3841 6180 for subf in $_SUB_FOLDERS; do
6181 if [ -d "$LE_WORKING_DIR/$subf" ]; then
6182 for _apifile in "$LE_WORKING_DIR/$subf/"*.sh; do
a61fe418 6183 _setShebang "$_apifile" "$_shebang"
6184 done
6185 fi
6186 done
0a7c9364 6187 fi
6188 fi
6189
58c4eaaf 6190 if [ "$_accountemail" ]; then
6191 _saveaccountconf "ACCOUNT_EMAIL" "$_accountemail"
6192 fi
6193
4c3b3608 6194 _info OK
6195}
6196
52677b0a 6197# nocron
4c3b3608 6198uninstall() {
52677b0a 6199 _nocron="$1"
4c2a3841 6200 if [ -z "$_nocron" ]; then
52677b0a 6201 uninstallcronjob
6202 fi
4c3b3608 6203 _initpath
6204
9aa3be7f 6205 _uninstallalias
4c2a3841 6206
d5ec5f80 6207 rm -f "$LE_WORKING_DIR/$PROJECT_ENTRY"
f5b546b3 6208 _info "The keys and certs are in \"$(__green "$LE_CONFIG_HOME")\", you can remove them by yourself."
9aa3be7f 6209
6210}
6211
6212_uninstallalias() {
6213 _initpath
6214
4c3b3608 6215 _profile="$(_detect_profile)"
4c2a3841 6216 if [ "$_profile" ]; then
9aa3be7f 6217 _info "Uninstalling alias from: '$_profile'"
d5ec5f80 6218 text="$(cat "$_profile")"
4c2a3841 6219 echo "$text" | sed "s|^.*\"$LE_WORKING_DIR/$PROJECT_NAME.env\"$||" >"$_profile"
4c3b3608 6220 fi
6221
94dc5f33 6222 _csh_profile="$HOME/.cshrc"
4c2a3841 6223 if [ -f "$_csh_profile" ]; then
9aa3be7f 6224 _info "Uninstalling alias from: '$_csh_profile'"
d5ec5f80 6225 text="$(cat "$_csh_profile")"
4c2a3841 6226 echo "$text" | sed "s|^.*\"$LE_WORKING_DIR/$PROJECT_NAME.csh\"$||" >"$_csh_profile"
94dc5f33 6227 fi
4c2a3841 6228
acafa585 6229 _tcsh_profile="$HOME/.tcshrc"
4c2a3841 6230 if [ -f "$_tcsh_profile" ]; then
9aa3be7f 6231 _info "Uninstalling alias from: '$_csh_profile'"
d5ec5f80 6232 text="$(cat "$_tcsh_profile")"
4c2a3841 6233 echo "$text" | sed "s|^.*\"$LE_WORKING_DIR/$PROJECT_NAME.csh\"$||" >"$_tcsh_profile"
acafa585 6234 fi
4c3b3608 6235
6236}
6237
6238cron() {
bd04638d 6239 export _ACME_IN_CRON=1
89002ed2 6240 _initpath
d8ba26e6 6241 _info "$(__green "===Starting cron===")"
4c2a3841 6242 if [ "$AUTO_UPGRADE" = "1" ]; then
89002ed2 6243 export LE_WORKING_DIR
6244 (
4c2a3841 6245 if ! upgrade; then
6246 _err "Cron:Upgrade failed!"
6247 return 1
6248 fi
89002ed2 6249 )
d5ec5f80 6250 . "$LE_WORKING_DIR/$PROJECT_ENTRY" >/dev/null
1ab63043 6251
4c2a3841 6252 if [ -t 1 ]; then
1ab63043 6253 __INTERACTIVE="1"
6254 fi
4c2a3841 6255
89002ed2 6256 _info "Auto upgraded to: $VER"
6257 fi
4c3b3608 6258 renewAll
cc179731 6259 _ret="$?"
bd04638d 6260 _ACME_IN_CRON=""
d8ba26e6 6261 _info "$(__green "===End cron===")"
0ba95a3d 6262 exit $_ret
4c3b3608 6263}
6264
6265version() {
a63b05a9 6266 echo "$PROJECT"
6267 echo "v$VER"
4c3b3608 6268}
6269
b50e701c 6270# subject content hooks code
6271_send_notify() {
6272 _nsubject="$1"
6273 _ncontent="$2"
6274 _nhooks="$3"
6275 _nerror="$4"
6276
6277 if [ "$NOTIFY_LEVEL" = "$NOTIFY_LEVEL_DISABLE" ]; then
6278 _debug "The NOTIFY_LEVEL is $NOTIFY_LEVEL, disabled, just return."
6279 return 0
6280 fi
6281
6282 if [ -z "$_nhooks" ]; then
6283 _debug "The NOTIFY_HOOK is empty, just return."
6284 return 0
6285 fi
6286
6287 _send_err=0
6288 for _n_hook in $(echo "$_nhooks" | tr ',' " "); do
6289 _n_hook_file="$(_findHook "" $_SUB_FOLDER_NOTIFY "$_n_hook")"
143eac09 6290 _info "Sending via: $_n_hook"
6291 _debug "Found $_n_hook_file for $_n_hook"
75191e71 6292 if [ -z "$_n_hook_file" ]; then
6293 _err "Can not find the hook file for $_n_hook"
6294 continue
6295 fi
b50e701c 6296 if ! (
6297 if ! . "$_n_hook_file"; then
6298 _err "Load file $_n_hook_file error. Please check your api file and try again."
6299 return 1
6300 fi
6301
6302 d_command="${_n_hook}_send"
6303 if ! _exists "$d_command"; then
6304 _err "It seems that your api file is not correct, it must have a function named: $d_command"
6305 return 1
6306 fi
6307
6308 if ! $d_command "$_nsubject" "$_ncontent" "$_nerror"; then
6309 _err "Error send message by $d_command"
6310 return 1
6311 fi
6312
6313 return 0
6314 ); then
6315 _err "Set $_n_hook_file error."
6316 _send_err=1
6317 else
6318 _info "$_n_hook $(__green Success)"
6319 fi
6320 done
6321 return $_send_err
6322
6323}
6324
6325# hook
6326_set_notify_hook() {
6327 _nhooks="$1"
6328
5698bec6 6329 _test_subject="Hello, this is a notification from $PROJECT_NAME"
143eac09 6330 _test_content="If you receive this message, your notification works."
b50e701c 6331
6332 _send_notify "$_test_subject" "$_test_content" "$_nhooks" 0
6333
6334}
6335
6336#[hook] [level] [mode]
6337setnotify() {
6338 _nhook="$1"
6339 _nlevel="$2"
6340 _nmode="$3"
6341
6342 _initpath
6343
6344 if [ -z "$_nhook$_nlevel$_nmode" ]; then
2e87e64b 6345 _usage "Usage: $PROJECT_ENTRY --set-notify [--notify-hook <hookname>] [--notify-level <0|1|2|3>] [--notify-mode <0|1>]"
b50e701c 6346 _usage "$_NOTIFY_WIKI"
6347 return 1
6348 fi
6349
6350 if [ "$_nlevel" ]; then
6351 _info "Set notify level to: $_nlevel"
6352 export "NOTIFY_LEVEL=$_nlevel"
6353 _saveaccountconf "NOTIFY_LEVEL" "$NOTIFY_LEVEL"
6354 fi
6355
6356 if [ "$_nmode" ]; then
6357 _info "Set notify mode to: $_nmode"
6358 export "NOTIFY_MODE=$_nmode"
6359 _saveaccountconf "NOTIFY_MODE" "$NOTIFY_MODE"
6360 fi
6361
6362 if [ "$_nhook" ]; then
6363 _info "Set notify hook to: $_nhook"
6364 if [ "$_nhook" = "$NO_VALUE" ]; then
6365 _info "Clear notify hook"
6366 _clearaccountconf "NOTIFY_HOOK"
6367 else
6368 if _set_notify_hook "$_nhook"; then
6369 export NOTIFY_HOOK="$_nhook"
6370 _saveaccountconf "NOTIFY_HOOK" "$NOTIFY_HOOK"
6371 return 0
6372 else
6373 _err "Can not set notify hook to: $_nhook"
6374 return 1
6375 fi
6376 fi
6377 fi
6378
6379}
6380
4c3b3608 6381showhelp() {
d0871bda 6382 _initpath
4c3b3608 6383 version
2e87e64b 6384 echo "Usage: $PROJECT_ENTRY <command> ... [parameters ...]
a63b05a9 6385Commands:
c0fbe823
CE
6386 -h, --help Show this help message.
6387 -v, --version Show version info.
a7b7355d 6388 --install Install $PROJECT_NAME to your system.
6389 --uninstall Uninstall $PROJECT_NAME, and uninstall the cron job.
d8beaf72 6390 --upgrade Upgrade $PROJECT_NAME to the latest code from $PROJECT.
a63b05a9 6391 --issue Issue a cert.
a61fe418 6392 --deploy Deploy the cert to your server.
d81369d6 6393 -i, --install-cert Install the issued cert to apache/nginx or any other server.
c0fbe823 6394 -r, --renew Renew a cert.
27dbe77f 6395 --renew-all Renew all the certs.
a63b05a9 6396 --revoke Revoke a cert.
47b49f1b 6397 --remove Remove the cert from list of certs known to $PROJECT_NAME.
10afcaca 6398 --list List all the certs.
58150f5d 6399 --to-pkcs12 Export the certificate and key to a pfx file.
d81369d6 6400 --to-pkcs8 Convert to pkcs8 format.
7decf768
CE
6401 --sign-csr Issue a cert from an existing csr.
6402 --show-csr Show the content of a csr.
6403 -ccr, --create-csr Create CSR, professional use.
6404 --create-domain-key Create an domain private key, professional use.
27dbe77f 6405 --update-account Update account info.
6406 --register-account Register account key.
422dd1fa 6407 --deactivate-account Deactivate the account.
0984585d 6408 --create-account-key Create an account private key, professional use.
7decf768
CE
6409 --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.
6410 --uninstall-cronjob Uninstall the cron job. The 'uninstall' command can do this automatically.
6411 --cron Run cron job to renew all the certs.
b50e701c 6412 --set-notify Set the cron notification hook, level or mode.
7decf768 6413 --deactivate Deactivate the domain authz, professional use.
8d0e4851 6414 --set-default-ca Used with '--server', Set the default CA to use.
6415 See: $_SERVER_WIKI
b50e701c 6416
3c07f57a 6417
a63b05a9 6418Parameters:
c0fbe823
CE
6419 -d, --domain <domain.tld> Specifies a domain, used to issue, renew or revoke etc.
6420 --challenge-alias <domain.tld> The challenge domain alias for DNS alias mode.
e3ebd582 6421 See: $_DNS_ALIAS_WIKI
a48c22d1 6422
c0fbe823 6423 --domain-alias <domain.tld> The domain alias for DNS alias mode.
e3ebd582 6424 See: $_DNS_ALIAS_WIKI
a48c22d1 6425
c0fbe823 6426 --preferred-chain <chain> If the CA offers multiple certificate chains, prefer the chain with an issuer matching this Subject Common Name.
e3ebd582 6427 If no match, the default offered chain will be used. (default: empty)
6428 See: $_PREFERRED_CHAIN_WIKI
a48c22d1 6429
c0fbe823
CE
6430 -f, --force Force install, force cert renewal or override sudo restrictions.
6431 --staging, --test Use staging server, for testing.
6432 --debug [0|1|2|3] Output debug info. Defaults to 1 if argument is omitted.
e3ebd582 6433 --output-insecure Output all the sensitive messages.
6434 By default all the credentials/sensitive messages are hidden from the output/debug/log for security.
b086afb2 6435 -w, --webroot <directory> Specifies the web root folder for web root mode.
a63b05a9 6436 --standalone Use standalone mode.
08681f4a 6437 --alpn Use standalone alpn mode.
e3ebd582 6438 --stateless Use stateless mode.
6439 See: $_STATELESS_WIKI
a48c22d1 6440
a63b05a9 6441 --apache Use apache mode.
c0fbe823 6442 --dns [dns_hook] Use dns manual mode or dns api. Defaults to manual mode when argument is omitted.
e3ebd582 6443 See: $_DNS_API_WIKI
a48c22d1 6444
c0fbe823 6445 --dnssleep <seconds> The time in seconds to wait for all the txt records to propagate in dns api mode.
e3ebd582 6446 It's not necessary to use this by default, $PROJECT_NAME polls dns status by DOH automatically.
c0fbe823
CE
6447 -k, --keylength <bits> Specifies the domain key length: 2048, 3072, 4096, 8192 or ec-256, ec-384, ec-521.
6448 -ak, --accountkeylength <bits> Specifies the account key length: 2048, 3072, 4096
b086afb2 6449 --log [file] Specifies the log file. Defaults to \"$DEFAULT_LOG_FILE\" if argument is omitted.
c0fbe823
CE
6450 --log-level <1|2> Specifies the log level, default is 1.
6451 --syslog <0|3|6|7> Syslog level, 0: disable syslog, 3: error, 6: info, 7: debug.
6452 --eab-kid <eab_key_id> Key Identifier for External Account Binding.
6453 --eab-hmac-key <eab_hmac_key> HMAC key for External Account Binding.
2d5f1438
OB
6454
6455
7903fcb4 6456 These parameters are to install the cert to nginx/apache or any other server after issue/renew a cert:
3c07f57a 6457
b086afb2
CE
6458 --cert-file <file> Path to copy the cert file to after issue/renew..
6459 --key-file <file> Path to copy the key file to after issue/renew.
6460 --ca-file <file> Path to copy the intermediate cert file to after issue/renew.
6461 --fullchain-file <file> Path to copy the fullchain cert file to after issue/renew.
c0fbe823 6462 --reloadcmd <command> Command to execute after issue/renew to reload the server.
a63b05a9 6463
c0fbe823 6464 --server <server_uri> ACME Directory Resource URI. (default: $DEFAULT_CA)
e3ebd582 6465 See: $_SERVER_WIKI
6466
c0fbe823
CE
6467 --accountconf <file> Specifies a customized account config file.
6468 --home <directory> Specifies the home dir for $PROJECT_NAME.
6469 --cert-home <directory> Specifies the home dir to save all the certs, only valid for '--install' command.
6470 --config-home <directory> Specifies the home dir to save all the configurations.
6471 --useragent <string> Specifies the user agent string. it will be saved for future use too.
58c4eaaf 6472 -m, --email <email> Specifies the account email, only valid for the '--install' and '--update-account' command.
c0fbe823
CE
6473 --accountkey <file> Specifies the account key path, only valid for the '--install' command.
6474 --days <ndays> Specifies the days to renew the cert when using '--issue' command. The default value is $DEFAULT_RENEW days.
6475 --httpport <port> Specifies the standalone listening port. Only valid if the server is behind a reverse proxy or load balancer.
6476 --tlsport <port> Specifies the standalone tls listening port. Only valid if the server is behind a reverse proxy or load balancer.
6477 --local-address <ip> Specifies the standalone/tls server listening address, in case you have multiple ip addresses.
dcf4f8f6 6478 --listraw Only used for '--list' command, list the certs in raw format.
d81369d6 6479 -se, --stop-renew-on-error Only valid for '--renew-all' command. Stop if one cert has error in renewal.
13d7cae9 6480 --insecure Do not check the server certificate, in some devices, the api server's certificate may not be trusted.
c0fbe823
CE
6481 --ca-bundle <file> Specifies the path to the CA certificate bundle to verify api server's certificate.
6482 --ca-path <directory> Specifies directory containing CA certificates in PEM format, used by wget or curl.
58c4eaaf 6483 --no-cron Only valid for '--install' command, which means: do not install the default cron job.
e3ebd582 6484 In this case, the certs will not be renewed automatically.
58c4eaaf 6485 --no-profile Only valid for '--install' command, which means: do not install aliases to user profile.
2910be82 6486 --no-color Do not output color text.
e32b3aac 6487 --force-color Force output of color text. Useful for non-interactive use with the aha tool for HTML E-Mails.
b67d663a 6488 --ecc Specifies to use the ECC cert. Valid for '--install-cert', '--renew', '--revoke', '--to-pkcs12' and '--create-csr'
c0fbe823
CE
6489 --csr <file> Specifies the input csr.
6490 --pre-hook <command> Command to be run before obtaining any certificates.
6491 --post-hook <command> Command to be run after attempting to obtain/renew certificates. Runs regardless of whether obtain/renew succeeded or failed.
6492 --renew-hook <command> Command to be run after each successfully renewed certificate.
6493 --deploy-hook <hookname> The hook file to deploy cert
6494 --ocsp, --ocsp-must-staple Generate OCSP-Must-Staple extension.
6495 --always-force-new-domain-key Generate new domain key on renewal. Otherwise, the domain key is not changed by default.
6496 --auto-upgrade [0|1] Valid for '--upgrade' command, indicating whether to upgrade automatically in future. Defaults to 1 if argument is omitted.
6ae0f7f5 6497 --listen-v4 Force standalone/tls server to listen at ipv4.
6498 --listen-v6 Force standalone/tls server to listen at ipv6.
c0fbe823 6499 --openssl-bin <file> Specifies a custom openssl bin location.
9b124070 6500 --use-wget Force to use wget, if you have both curl and wget installed.
07fdb087 6501 --yes-I-know-dns-manual-mode-enough-go-ahead-please Force use of dns manual mode.
e3ebd582 6502 See: $_DNS_MANUAL_WIKI
a48c22d1 6503
c0fbe823
CE
6504 -b, --branch <branch> Only valid for '--upgrade' command, specifies the branch name to upgrade to.
6505 --notify-level <0|1|2|3> Set the notification level: Default value is $NOTIFY_LEVEL_DEFAULT.
6506 0: disabled, no notification will be sent.
6507 1: send notifications only when there is an error.
6508 2: send notifications when a cert is successfully renewed, or there is an error.
6509 3: send notifications when a cert is skipped, renewed, or error.
6510 --notify-mode <0|1> Set notification mode. Default value is $NOTIFY_MODE_DEFAULT.
6511 0: Bulk mode. Send all the domain's notifications in one message(mail).
6512 1: Cert mode. Send a message for every single cert.
6513 --notify-hook <hookname> Set the notify hook
6514 --revoke-reason <0-10> The reason for revocation, can be used in conjunction with the '--revoke' command.
e3ebd582 6515 See: $_REVOKE_WIKI
6516
dd6c5c9e
CE
6517 --password <password> Add a password to exported pfx file. Use with --to-pkcs12.
6518
b50e701c 6519
6520"
4c3b3608 6521}
6522
58c4eaaf 6523installOnline() {
4a0f23e2 6524 _info "Installing from online archive."
58c4eaaf 6525
6526 _branch="$BRANCH"
6527 if [ -z "$_branch" ]; then
6528 _branch="master"
4a0f23e2 6529 fi
a8df88ab 6530
58c4eaaf 6531 target="$PROJECT/archive/$_branch.tar.gz"
4a0f23e2 6532 _info "Downloading $target"
58c4eaaf 6533 localname="$_branch.tar.gz"
4c2a3841 6534 if ! _get "$target" >$localname; then
df9547ae 6535 _err "Download error."
4a0f23e2 6536 return 1
6537 fi
0bbe6eef 6538 (
4c2a3841 6539 _info "Extracting $localname"
3a3b0dd5 6540 if ! (tar xzf $localname || gtar xzf $localname); then
6541 _err "Extraction error."
6542 exit 1
6543 fi
4c2a3841 6544
58c4eaaf 6545 cd "$PROJECT_NAME-$_branch"
4c2a3841 6546 chmod +x $PROJECT_ENTRY
58c4eaaf 6547 if ./$PROJECT_ENTRY --install "$@"; then
4c2a3841 6548 _info "Install success!"
ac3667c7 6549 _initpath
cb7e3857 6550 _saveaccountconf "UPGRADE_HASH" "$(_getUpgradeHash)"
4c2a3841 6551 fi
6552
6553 cd ..
6554
58c4eaaf 6555 rm -rf "$PROJECT_NAME-$_branch"
4c2a3841 6556 rm -f "$localname"
0bbe6eef 6557 )
4a0f23e2 6558}
6559
cb7e3857
OB
6560_getRepoHash() {
6561 _hash_path=$1
6562 shift
6563 _hash_url="https://api.github.com/repos/acmesh-official/$PROJECT_NAME/git/refs/$_hash_path"
6564 _get $_hash_url | tr -d "\r\n" | tr '{},' '\n' | grep '"sha":' | cut -d '"' -f 4
6565}
6566
6567_getUpgradeHash() {
f716f606 6568 _b="$BRANCH"
6569 if [ -z "$_b" ]; then
6570 _b="master"
6571 fi
cb7e3857
OB
6572 _hash=$(_getRepoHash "heads/$_b")
6573 if [ -z "$_hash" ]; then _hash=$(_getRepoHash "tags/$_b"); fi
6574 echo $_hash
7a3c61b7 6575}
6576
52677b0a 6577upgrade() {
6578 if (
267f283a 6579 _initpath
cb7e3857 6580 [ -z "$FORCE" ] && [ "$(_getUpgradeHash)" = "$(_readaccountconf "UPGRADE_HASH")" ] && _info "Already uptodate!" && exit 0
267f283a 6581 export LE_WORKING_DIR
d0b748a4 6582 cd "$LE_WORKING_DIR"
58c4eaaf 6583 installOnline "--nocron" "--noprofile"
4c2a3841 6584 ); then
52677b0a 6585 _info "Upgrade success!"
096d8992 6586 exit 0
52677b0a 6587 else
6588 _err "Upgrade failed!"
096d8992 6589 exit 1
52677b0a 6590 fi
6591}
a63b05a9 6592
5ea6e9c9 6593_processAccountConf() {
4c2a3841 6594 if [ "$_useragent" ]; then
5ea6e9c9 6595 _saveaccountconf "USER_AGENT" "$_useragent"
4c2a3841 6596 elif [ "$USER_AGENT" ] && [ "$USER_AGENT" != "$DEFAULT_USER_AGENT" ]; then
d0871bda 6597 _saveaccountconf "USER_AGENT" "$USER_AGENT"
5ea6e9c9 6598 fi
4c2a3841 6599
a746139c 6600 if [ "$_openssl_bin" ]; then
851fedf7 6601 _saveaccountconf "ACME_OPENSSL_BIN" "$_openssl_bin"
6602 elif [ "$ACME_OPENSSL_BIN" ] && [ "$ACME_OPENSSL_BIN" != "$DEFAULT_OPENSSL_BIN" ]; then
6603 _saveaccountconf "ACME_OPENSSL_BIN" "$ACME_OPENSSL_BIN"
a746139c 6604 fi
6605
4c2a3841 6606 if [ "$_auto_upgrade" ]; then
6bf281f9 6607 _saveaccountconf "AUTO_UPGRADE" "$_auto_upgrade"
4c2a3841 6608 elif [ "$AUTO_UPGRADE" ]; then
6bf281f9 6609 _saveaccountconf "AUTO_UPGRADE" "$AUTO_UPGRADE"
6610 fi
4c2a3841 6611
9b124070 6612 if [ "$_use_wget" ]; then
6613 _saveaccountconf "ACME_USE_WGET" "$_use_wget"
6614 elif [ "$ACME_USE_WGET" ]; then
6615 _saveaccountconf "ACME_USE_WGET" "$ACME_USE_WGET"
6616 fi
6617
5ea6e9c9 6618}
6619
5bdfdfef 6620_checkSudo() {
6621 if [ "$SUDO_GID" ] && [ "$SUDO_COMMAND" ] && [ "$SUDO_USER" ] && [ "$SUDO_UID" ]; then
6622 if [ "$SUDO_USER" = "root" ] && [ "$SUDO_UID" = "0" ]; then
6623 #it's root using sudo, no matter it's using sudo or not, just fine
6624 return 0
6625 fi
79ad0ff5 6626 if [ -n "$SUDO_COMMAND" ]; then
996f5337 6627 #it's a normal user doing "sudo su", or `sudo -i` or `sudo -s`, or `sudo su acmeuser1`
6628 _endswith "$SUDO_COMMAND" /bin/su || _contains "$SUDO_COMMAND" "/bin/su " || grep "^$SUDO_COMMAND\$" /etc/shells >/dev/null 2>&1
79ad0ff5 6629 return $?
5bdfdfef 6630 fi
6631 #otherwise
6632 return 1
6633 fi
6634 return 0
6635}
6636
737e9e48 6637#server
6638_selectServer() {
6639 _server="$1"
6640 _server_lower="$(echo "$_server" | _lower_case)"
6641 _sindex=0
6642 for snames in $CA_NAMES; do
6643 snames="$(echo "$snames" | _lower_case)"
6644 _sindex="$(_math $_sindex + 1)"
6645 _debug2 "_selectServer try snames" "$snames"
6646 for sname in $(echo "$snames" | tr ',' ' '); do
6647 if [ "$_server_lower" = "$sname" ]; then
6648 _debug2 "_selectServer match $sname"
6649 _serverdir="$(_getfield "$CA_SERVERS" $_sindex)"
6650 _debug "Selected server: $_serverdir"
6651 ACME_DIRECTORY="$_serverdir"
6652 export ACME_DIRECTORY
6653 return
6654 fi
6655 done
6656 done
6657 ACME_DIRECTORY="$_server"
6658 export ACME_DIRECTORY
6659}
6660
269847d1 6661#url
6662_getCAShortName() {
6663 caurl="$1"
95ef046d 6664 if [ -z "$caurl" ]; then
6665 caurl="$DEFAULT_CA"
6666 fi
269847d1 6667 caurl_lower="$(echo $caurl | _lower_case)"
6668 _sindex=0
6669 for surl in $(echo "$CA_SERVERS" | _lower_case | tr , ' '); do
6670 _sindex="$(_math $_sindex + 1)"
6671 if [ "$caurl_lower" = "$surl" ]; then
6672 _nindex=0
6673 for snames in $CA_NAMES; do
6674 _nindex="$(_math $_nindex + 1)"
6675 if [ $_nindex -ge $_sindex ]; then
6676 _getfield "$snames" 1
6677 return
6678 fi
6679 done
6680 fi
6681 done
6682 echo "$caurl"
6683}
6684
737e9e48 6685#set default ca to $ACME_DIRECTORY
6686setdefaultca() {
6687 if [ -z "$ACME_DIRECTORY" ]; then
6688 _err "Please give a --server parameter."
6689 return 1
6690 fi
6691 _saveaccountconf "DEFAULT_ACME_SERVER" "$ACME_DIRECTORY"
df22f680 6692 _info "Changed default CA to: $(__green "$ACME_DIRECTORY")"
737e9e48 6693}
6694
a63b05a9 6695_process() {
6696 _CMD=""
6697 _domain=""
3f4513b3 6698 _altdomains="$NO_VALUE"
a63b05a9 6699 _webroot=""
875625b1 6700 _challenge_alias=""
bdbf323f 6701 _keylength=""
6702 _accountkeylength=""
5c539af7 6703 _cert_file=""
6704 _key_file=""
6705 _ca_file=""
6706 _fullchain_file=""
4d2f38b0 6707 _reloadcmd=""
a63b05a9 6708 _password=""
635695ec 6709 _accountconf=""
6710 _useragent=""
b5eb4b90 6711 _accountemail=""
6712 _accountkey=""
b2817897 6713 _certhome=""
27dbe77f 6714 _confighome=""
39c8f79f 6715 _httpport=""
e22bcf7c 6716 _tlsport=""
0e38c60d 6717 _dnssleep=""
dcf4f8f6 6718 _listraw=""
cc179731 6719 _stopRenewOnError=""
e3698edd 6720 #_insecure=""
78009539 6721 _ca_bundle=""
2aa75f03 6722 _ca_path=""
c8e9a31e 6723 _nocron=""
61556a54 6724 _noprofile=""
43822d37 6725 _ecc=""
10afcaca 6726 _csr=""
b0070f03 6727 _pre_hook=""
6728 _post_hook=""
6729 _renew_hook=""
a61fe418 6730 _deploy_hook=""
5ea6e9c9 6731 _logfile=""
d0871bda 6732 _log=""
0463b5d6 6733 _local_address=""
a73c5b33 6734 _log_level=""
6bf281f9 6735 _auto_upgrade=""
6ae0f7f5 6736 _listen_v4=""
6737 _listen_v6=""
a746139c 6738 _openssl_bin=""
e2edf208 6739 _syslog=""
9b124070 6740 _use_wget=""
98394f99 6741 _server=""
b50e701c 6742 _notify_hook=""
6743 _notify_level=""
6744 _notify_mode=""
1041c9f9 6745 _revoke_reason=""
f96d91cb 6746 _eab_kid=""
6747 _eab_hmac_key=""
e3ebd582 6748 _preferred_chain=""
4c2a3841 6749 while [ ${#} -gt 0 ]; do
a63b05a9 6750 case "${1}" in
4c2a3841 6751
19c43451 6752 --help | -h)
6753 showhelp
6754 return
6755 ;;
6756 --version | -v)
6757 version
6758 return
6759 ;;
6760 --install)
6761 _CMD="install"
6762 ;;
58c4eaaf 6763 --install-online)
6764 shift
6765 installOnline "$@"
6766 return
6767 ;;
19c43451 6768 --uninstall)
6769 _CMD="uninstall"
6770 ;;
6771 --upgrade)
6772 _CMD="upgrade"
6773 ;;
6774 --issue)
6775 _CMD="issue"
6776 ;;
6777 --deploy)
6778 _CMD="deploy"
6779 ;;
7decf768 6780 --sign-csr | --signcsr)
19c43451 6781 _CMD="signcsr"
6782 ;;
7decf768 6783 --show-csr | --showcsr)
19c43451 6784 _CMD="showcsr"
6785 ;;
7decf768 6786 -i | --install-cert | --installcert)
19c43451 6787 _CMD="installcert"
6788 ;;
6789 --renew | -r)
6790 _CMD="renew"
6791 ;;
7decf768 6792 --renew-all | --renewAll | --renewall)
19c43451 6793 _CMD="renewAll"
6794 ;;
6795 --revoke)
6796 _CMD="revoke"
6797 ;;
6798 --remove)
6799 _CMD="remove"
6800 ;;
6801 --list)
6802 _CMD="list"
6803 ;;
7decf768 6804 --install-cronjob | --installcronjob)
19c43451 6805 _CMD="installcronjob"
6806 ;;
7decf768 6807 --uninstall-cronjob | --uninstallcronjob)
19c43451 6808 _CMD="uninstallcronjob"
6809 ;;
6810 --cron)
6811 _CMD="cron"
6812 ;;
1521199e 6813 --to-pkcs12 | --to-pkcs | --toPkcs)
19c43451 6814 _CMD="toPkcs"
6815 ;;
7decf768 6816 --to-pkcs8 | --toPkcs8)
19c43451 6817 _CMD="toPkcs8"
6818 ;;
7decf768 6819 --create-account-key | --createAccountKey | --createaccountkey | -cak)
19c43451 6820 _CMD="createAccountKey"
6821 ;;
7decf768 6822 --create-domain-key | --createDomainKey | --createdomainkey | -cdk)
19c43451 6823 _CMD="createDomainKey"
6824 ;;
7decf768 6825 -ccr | --create-csr | --createCSR | --createcsr)
19c43451 6826 _CMD="createCSR"
6827 ;;
6828 --deactivate)
6829 _CMD="deactivate"
6830 ;;
7decf768 6831 --update-account | --updateaccount)
19c43451 6832 _CMD="updateaccount"
6833 ;;
7decf768 6834 --register-account | --registeraccount)
19c43451 6835 _CMD="registeraccount"
6836 ;;
6837 --deactivate-account)
6838 _CMD="deactivateaccount"
6839 ;;
6840 --set-notify)
6841 _CMD="setnotify"
6842 ;;
6843 --set-default-ca)
6844 _CMD="setdefaultca"
6845 ;;
7decf768 6846 -d | --domain)
19c43451 6847 _dvalue="$2"
4c2a3841 6848
19c43451 6849 if [ "$_dvalue" ]; then
6850 if _startswith "$_dvalue" "-"; then
6851 _err "'$_dvalue' is not a valid domain for parameter '$1'"
6852 return 1
6853 fi
6854 if _is_idn "$_dvalue" && ! _exists idn; then
6855 _err "It seems that $_dvalue is an IDN( Internationalized Domain Names), please install 'idn' command first."
6856 return 1
6857 fi
4c2a3841 6858
19c43451 6859 if [ -z "$_domain" ]; then
6860 _domain="$_dvalue"
6861 else
6862 if [ "$_altdomains" = "$NO_VALUE" ]; then
6863 _altdomains="$_dvalue"
a63b05a9 6864 else
19c43451 6865 _altdomains="$_altdomains,$_dvalue"
a63b05a9 6866 fi
6867 fi
19c43451 6868 fi
4c2a3841 6869
19c43451 6870 shift
6871 ;;
a63b05a9 6872
7decf768 6873 -f | --force)
19c43451 6874 FORCE="1"
6875 ;;
6876 --staging | --test)
6877 STAGE="1"
6878 ;;
6879 --server)
6880 _server="$2"
6881 _selectServer "$_server"
6882 shift
6883 ;;
6884 --debug)
6885 if [ -z "$2" ] || _startswith "$2" "-"; then
6886 DEBUG="$DEBUG_LEVEL_DEFAULT"
6887 else
6888 DEBUG="$2"
64821ad4 6889 shift
19c43451 6890 fi
6891 ;;
6892 --output-insecure)
6893 export OUTPUT_INSECURE=1
6894 ;;
7decf768 6895 -w | --webroot)
19c43451 6896 wvalue="$2"
6897 if [ -z "$_webroot" ]; then
6898 _webroot="$wvalue"
6899 else
6900 _webroot="$_webroot,$wvalue"
6901 fi
6902 shift
6903 ;;
6904 --challenge-alias)
6905 cvalue="$2"
6906 _challenge_alias="$_challenge_alias$cvalue,"
6907 shift
6908 ;;
6909 --domain-alias)
6910 cvalue="$DNS_ALIAS_PREFIX$2"
6911 _challenge_alias="$_challenge_alias$cvalue,"
6912 shift
6913 ;;
6914 --standalone)
6915 wvalue="$NO_VALUE"
6916 if [ -z "$_webroot" ]; then
6917 _webroot="$wvalue"
6918 else
6919 _webroot="$_webroot,$wvalue"
6920 fi
6921 ;;
6922 --alpn)
6923 wvalue="$W_ALPN"
6924 if [ -z "$_webroot" ]; then
6925 _webroot="$wvalue"
6926 else
6927 _webroot="$_webroot,$wvalue"
6928 fi
6929 ;;
6930 --stateless)
6931 wvalue="$MODE_STATELESS"
6932 if [ -z "$_webroot" ]; then
6933 _webroot="$wvalue"
6934 else
6935 _webroot="$_webroot,$wvalue"
6936 fi
6937 ;;
6938 --local-address)
6939 lvalue="$2"
6940 _local_address="$_local_address$lvalue,"
6941 shift
6942 ;;
6943 --apache)
6944 wvalue="apache"
6945 if [ -z "$_webroot" ]; then
6946 _webroot="$wvalue"
6947 else
6948 _webroot="$_webroot,$wvalue"
6949 fi
6950 ;;
6951 --nginx)
6952 wvalue="$NGINX"
6953 if [ "$2" ] && ! _startswith "$2" "-"; then
6954 wvalue="$NGINX$2"
0463b5d6 6955 shift
19c43451 6956 fi
6957 if [ -z "$_webroot" ]; then
6958 _webroot="$wvalue"
6959 else
6960 _webroot="$_webroot,$wvalue"
6961 fi
6962 ;;
6963 --dns)
6964 wvalue="$W_DNS"
6965 if [ "$2" ] && ! _startswith "$2" "-"; then
6966 wvalue="$2"
0e38c60d 6967 shift
19c43451 6968 fi
6969 if [ -z "$_webroot" ]; then
6970 _webroot="$wvalue"
6971 else
6972 _webroot="$_webroot,$wvalue"
6973 fi
6974 ;;
6975 --dnssleep)
6976 _dnssleep="$2"
6977 Le_DNSSleep="$_dnssleep"
6978 shift
6979 ;;
4c2a3841 6980
19c43451 6981 --keylength | -k)
6982 _keylength="$2"
6983 shift
6984 ;;
7decf768 6985 -ak | --accountkeylength)
19c43451 6986 _accountkeylength="$2"
6987 shift
6988 ;;
a63b05a9 6989
19c43451 6990 --cert-file | --certpath)
6991 _cert_file="$2"
6992 shift
6993 ;;
6994 --key-file | --keypath)
6995 _key_file="$2"
6996 shift
6997 ;;
6998 --ca-file | --capath)
6999 _ca_file="$2"
7000 shift
7001 ;;
7002 --fullchain-file | --fullchainpath)
7003 _fullchain_file="$2"
7004 shift
7005 ;;
7006 --reloadcmd | --reloadCmd)
7007 _reloadcmd="$2"
7008 shift
7009 ;;
7010 --password)
7011 _password="$2"
7012 shift
7013 ;;
7014 --accountconf)
7015 _accountconf="$2"
7016 ACCOUNT_CONF_PATH="$_accountconf"
7017 shift
7018 ;;
7019 --home)
7020 LE_WORKING_DIR="$2"
7021 shift
7022 ;;
7decf768 7023 --cert-home | --certhome)
19c43451 7024 _certhome="$2"
7025 CERT_HOME="$_certhome"
7026 shift
7027 ;;
7028 --config-home)
7029 _confighome="$2"
7030 LE_CONFIG_HOME="$_confighome"
7031 shift
7032 ;;
7033 --useragent)
7034 _useragent="$2"
7035 USER_AGENT="$_useragent"
7036 shift
7037 ;;
58c4eaaf 7038 -m | --email | --accountemail)
19c43451 7039 _accountemail="$2"
58c4eaaf 7040 export ACCOUNT_EMAIL="$_accountemail"
19c43451 7041 shift
7042 ;;
7043 --accountkey)
7044 _accountkey="$2"
7045 ACCOUNT_KEY_PATH="$_accountkey"
7046 shift
7047 ;;
7048 --days)
7049 _days="$2"
7050 Le_RenewalDays="$_days"
7051 shift
7052 ;;
7053 --httpport)
7054 _httpport="$2"
7055 Le_HTTPPort="$_httpport"
7056 shift
7057 ;;
7058 --tlsport)
7059 _tlsport="$2"
7060 Le_TLSPort="$_tlsport"
7061 shift
7062 ;;
7063 --listraw)
7064 _listraw="raw"
7065 ;;
7decf768 7066 -se | --stop-renew-on-error | --stopRenewOnError | --stoprenewonerror)
19c43451 7067 _stopRenewOnError="1"
7068 ;;
7069 --insecure)
7070 #_insecure="1"
7071 HTTPS_INSECURE="1"
7072 ;;
7073 --ca-bundle)
7074 _ca_bundle="$(_readlink "$2")"
7075 CA_BUNDLE="$_ca_bundle"
7076 shift
7077 ;;
7078 --ca-path)
7079 _ca_path="$2"
7080 CA_PATH="$_ca_path"
7081 shift
7082 ;;
58c4eaaf 7083 --no-cron | --nocron)
19c43451 7084 _nocron="1"
7085 ;;
58c4eaaf 7086 --no-profile | --noprofile)
19c43451 7087 _noprofile="1"
7088 ;;
2910be82 7089 --no-color)
19c43451 7090 export ACME_NO_COLOR=1
7091 ;;
7092 --force-color)
7093 export ACME_FORCE_COLOR=1
7094 ;;
7095 --ecc)
7096 _ecc="isEcc"
7097 ;;
7098 --csr)
7099 _csr="$2"
7100 shift
7101 ;;
7102 --pre-hook)
7103 _pre_hook="$2"
7104 shift
7105 ;;
7106 --post-hook)
7107 _post_hook="$2"
7108 shift
7109 ;;
7110 --renew-hook)
7111 _renew_hook="$2"
7112 shift
7113 ;;
7114 --deploy-hook)
7115 if [ -z "$2" ] || _startswith "$2" "-"; then
7116 _usage "Please specify a value for '--deploy-hook'"
7117 return 1
7118 fi
7119 _deploy_hook="$_deploy_hook$2,"
7120 shift
7121 ;;
7122 --ocsp-must-staple | --ocsp)
7123 Le_OCSP_Staple="1"
7124 ;;
7125 --always-force-new-domain-key)
7126 if [ -z "$2" ] || _startswith "$2" "-"; then
7127 Le_ForceNewDomainKey=1
7128 else
7129 Le_ForceNewDomainKey="$2"
1041c9f9 7130 shift
19c43451 7131 fi
7132 ;;
7133 --yes-I-know-dns-manual-mode-enough-go-ahead-please)
7134 export FORCE_DNS_MANUAL=1
7135 ;;
7136 --log | --logfile)
7137 _log="1"
7138 _logfile="$2"
7139 if _startswith "$_logfile" '-'; then
7140 _logfile=""
7141 else
f96d91cb 7142 shift
19c43451 7143 fi
7144 LOG_FILE="$_logfile"
7145 if [ -z "$LOG_LEVEL" ]; then
7146 LOG_LEVEL="$DEFAULT_LOG_LEVEL"
7147 fi
7148 ;;
7149 --log-level)
7150 _log_level="$2"
7151 LOG_LEVEL="$_log_level"
7152 shift
7153 ;;
7154 --syslog)
7155 if ! _startswith "$2" '-'; then
7156 _syslog="$2"
f96d91cb 7157 shift
19c43451 7158 fi
7159 if [ -z "$_syslog" ]; then
7160 _syslog="$SYSLOG_LEVEL_DEFAULT"
7161 fi
7162 ;;
7163 --auto-upgrade)
7164 _auto_upgrade="$2"
7165 if [ -z "$_auto_upgrade" ] || _startswith "$_auto_upgrade" '-'; then
7166 _auto_upgrade="1"
7167 else
e3ebd582 7168 shift
19c43451 7169 fi
7170 AUTO_UPGRADE="$_auto_upgrade"
7171 ;;
7172 --listen-v4)
7173 _listen_v4="1"
7174 Le_Listen_V4="$_listen_v4"
7175 ;;
7176 --listen-v6)
7177 _listen_v6="1"
7178 Le_Listen_V6="$_listen_v6"
7179 ;;
7180 --openssl-bin)
7181 _openssl_bin="$2"
7182 ACME_OPENSSL_BIN="$_openssl_bin"
7183 shift
7184 ;;
7185 --use-wget)
7186 _use_wget="1"
7187 ACME_USE_WGET="1"
7188 ;;
7189 --branch | -b)
7190 export BRANCH="$2"
7191 shift
7192 ;;
7193 --notify-hook)
7194 _nhook="$2"
7195 if _startswith "$_nhook" "-"; then
7196 _err "'$_nhook' is not a hook name for '$1'"
a63b05a9 7197 return 1
19c43451 7198 fi
7199 if [ "$_notify_hook" ]; then
7200 _notify_hook="$_notify_hook,$_nhook"
7201 else
7202 _notify_hook="$_nhook"
7203 fi
7204 shift
7205 ;;
7206 --notify-level)
7207 _nlevel="$2"
7208 if _startswith "$_nlevel" "-"; then
7209 _err "'$_nlevel' is not a integer for '$1'"
7210 return 1
7211 fi
7212 _notify_level="$_nlevel"
7213 shift
7214 ;;
7215 --notify-mode)
7216 _nmode="$2"
7217 if _startswith "$_nmode" "-"; then
7218 _err "'$_nmode' is not a integer for '$1'"
7219 return 1
7220 fi
7221 _notify_mode="$_nmode"
7222 shift
7223 ;;
7224 --revoke-reason)
7225 _revoke_reason="$2"
7226 if _startswith "$_revoke_reason" "-"; then
7227 _err "'$_revoke_reason' is not a integer for '$1'"
7228 return 1
7229 fi
7230 shift
7231 ;;
7232 --eab-kid)
7233 _eab_kid="$2"
7234 shift
7235 ;;
7236 --eab-hmac-key)
7237 _eab_hmac_key="$2"
7238 shift
7239 ;;
7240 --preferred-chain)
7241 _preferred_chain="$2"
7242 shift
7243 ;;
7244 *)
7245 _err "Unknown parameter : $1"
7246 return 1
7247 ;;
a63b05a9 7248 esac
7249
7250 shift 1
7251 done
7252
4c2a3841 7253 if [ "${_CMD}" != "install" ]; then
5bdfdfef 7254 if [ "$__INTERACTIVE" ] && ! _checkSudo; then
7255 if [ -z "$FORCE" ]; then
7256 #Use "echo" here, instead of _info. it's too early
7257 echo "It seems that you are using sudo, please read this link first:"
7258 echo "$_SUDO_WIKI"
7259 return 1
7260 fi
7261 fi
5ea6e9c9 7262 __initHome
661f0583 7263 if [ "$_log" ]; then
4c2a3841 7264 if [ -z "$_logfile" ]; then
661f0583 7265 _logfile="$DEFAULT_LOG_FILE"
7266 fi
d0871bda 7267 fi
4c2a3841 7268 if [ "$_logfile" ]; then
5ea6e9c9 7269 _saveaccountconf "LOG_FILE" "$_logfile"
661f0583 7270 LOG_FILE="$_logfile"
5ea6e9c9 7271 fi
a73c5b33 7272
4c2a3841 7273 if [ "$_log_level" ]; then
a73c5b33 7274 _saveaccountconf "LOG_LEVEL" "$_log_level"
7275 LOG_LEVEL="$_log_level"
7276 fi
4c2a3841 7277
e2edf208 7278 if [ "$_syslog" ]; then
7279 if _exists logger; then
7280 if [ "$_syslog" = "0" ]; then
7281 _clearaccountconf "SYS_LOG"
7282 else
7283 _saveaccountconf "SYS_LOG" "$_syslog"
7284 fi
7285 SYS_LOG="$_syslog"
7286 else
7287 _err "The 'logger' command is not found, can not enable syslog."
7288 _clearaccountconf "SYS_LOG"
7289 SYS_LOG=""
7290 fi
7291 fi
7292
5ea6e9c9 7293 _processAccountConf
7294 fi
4c2a3841 7295
9d548d81 7296 _debug2 LE_WORKING_DIR "$LE_WORKING_DIR"
4c2a3841 7297
7298 if [ "$DEBUG" ]; then
dcf9cb58 7299 version
98394f99 7300 if [ "$_server" ]; then
7301 _debug "Using server: $_server"
7302 fi
dcf9cb58 7303 fi
9a733a57 7304 _debug "Running cmd: ${_CMD}"
a63b05a9 7305 case "${_CMD}" in
58c4eaaf 7306 install) install "$_nocron" "$_confighome" "$_noprofile" "$_accountemail" ;;
19c43451 7307 uninstall) uninstall "$_nocron" ;;
7308 upgrade) upgrade ;;
7309 issue)
7310 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"
7311 ;;
7312 deploy)
7313 deploy "$_domain" "$_deploy_hook" "$_ecc"
7314 ;;
7315 signcsr)
96a95ba9 7316 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 7317 ;;
7318 showcsr)
7319 showcsr "$_csr" "$_domain"
7320 ;;
7321 installcert)
7322 installcert "$_domain" "$_cert_file" "$_key_file" "$_ca_file" "$_reloadcmd" "$_fullchain_file" "$_ecc"
7323 ;;
7324 renew)
7325 renew "$_domain" "$_ecc"
7326 ;;
7327 renewAll)
7328 renewAll "$_stopRenewOnError"
7329 ;;
7330 revoke)
7331 revoke "$_domain" "$_ecc" "$_revoke_reason"
7332 ;;
7333 remove)
7334 remove "$_domain" "$_ecc"
7335 ;;
7336 deactivate)
7337 deactivate "$_domain,$_altdomains"
7338 ;;
7339 registeraccount)
7340 registeraccount "$_accountkeylength" "$_eab_kid" "$_eab_hmac_key"
7341 ;;
7342 updateaccount)
7343 updateaccount
7344 ;;
7345 deactivateaccount)
7346 deactivateaccount
7347 ;;
7348 list)
7349 list "$_listraw" "$_domain"
7350 ;;
7351 installcronjob) installcronjob "$_confighome" ;;
7352 uninstallcronjob) uninstallcronjob ;;
7353 cron) cron ;;
7354 toPkcs)
7355 toPkcs "$_domain" "$_password" "$_ecc"
7356 ;;
7357 toPkcs8)
7358 toPkcs8 "$_domain" "$_ecc"
7359 ;;
7360 createAccountKey)
7361 createAccountKey "$_accountkeylength"
7362 ;;
7363 createDomainKey)
7364 createDomainKey "$_domain" "$_keylength"
7365 ;;
7366 createCSR)
7367 createCSR "$_domain" "$_altdomains" "$_ecc"
7368 ;;
7369 setnotify)
7370 setnotify "$_notify_hook" "$_notify_level" "$_notify_mode"
7371 ;;
7372 setdefaultca)
7373 setdefaultca
7374 ;;
7375 *)
7376 if [ "$_CMD" ]; then
7377 _err "Invalid command: $_CMD"
7378 fi
7379 showhelp
7380 return 1
7381 ;;
a63b05a9 7382 esac
d3595686 7383 _ret="$?"
4c2a3841 7384 if [ "$_ret" != "0" ]; then
d3595686 7385 return $_ret
7386 fi
4c2a3841 7387
7388 if [ "${_CMD}" = "install" ]; then
7389 if [ "$_log" ]; then
7390 if [ -z "$LOG_FILE" ]; then
d0871bda 7391 LOG_FILE="$DEFAULT_LOG_FILE"
7392 fi
7393 _saveaccountconf "LOG_FILE" "$LOG_FILE"
5ea6e9c9 7394 fi
4c2a3841 7395
7396 if [ "$_log_level" ]; then
a73c5b33 7397 _saveaccountconf "LOG_LEVEL" "$_log_level"
7398 fi
e2edf208 7399
7400 if [ "$_syslog" ]; then
7401 if _exists logger; then
7402 if [ "$_syslog" = "0" ]; then
7403 _clearaccountconf "SYS_LOG"
7404 else
7405 _saveaccountconf "SYS_LOG" "$_syslog"
7406 fi
7407 else
7408 _err "The 'logger' command is not found, can not enable syslog."
7409 _clearaccountconf "SYS_LOG"
7410 SYS_LOG=""
7411 fi
7412 fi
7413
5ea6e9c9 7414 _processAccountConf
b5eb4b90 7415 fi
635695ec 7416
a63b05a9 7417}
7418
319e0ae3 7419main() {
7420 [ -z "$1" ] && showhelp && return
4c2a3841 7421 if _startswith "$1" '-'; then _process "$@"; else "$@"; fi
319e0ae3 7422}
e69a7c38 7423
aa7b82de 7424main "$@"