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

154 lines
6.0 KiB

  1. #!/usr/bin/env sh
  2. # Here is a script to deploy cert to Synology DSM
  3. #
  4. # it requires the jq and curl are in the $PATH and the following
  5. # environment variables must be set:
  6. #
  7. # SYNO_Username - Synology Username to login (must be an administrator)
  8. # SYNO_Password - Synology Password to login
  9. # SYNO_Certificate - Certificate description to target for replacement
  10. #
  11. # The following environmental variables may be set if you don't like their
  12. # default values:
  13. #
  14. # SYNO_Scheme - defaults to http
  15. # SYNO_Hostname - defaults to localhost
  16. # SYNO_Port - defaults to 5000
  17. #
  18. #returns 0 means success, otherwise error.
  19. ######## Public functions #####################
  20. _syno_get_cookie_data() {
  21. _debug2 Cookie "$1"
  22. _debug3 grep "$(grep "\W$1=" "$HTTP_HEADER" | grep "^Set-Cookie:" | _tail_n 1 | _egrep_o "$1=[^;]*;" | tr -d ';')"
  23. grep "\W$1=" "$HTTP_HEADER" | grep "^Set-Cookie:" | _tail_n 1 | _egrep_o "$1=[^;]*;" | tr -d ';'
  24. }
  25. #domain keyfile certfile cafile fullchain
  26. synology_dsm_deploy() {
  27. _cdomain="$1"
  28. _ckey="$2"
  29. _ccert="$3"
  30. _cca="$4"
  31. _debug _cdomain "$_cdomain"
  32. # Get Username and Password, but don't save until we successfully authenticate
  33. SYNO_Username="${SYNO_Username:-$(_getdeployconf SYNO_Username)}"
  34. SYNO_Password="${SYNO_Password:-$(_getdeployconf SYNO_Password)}"
  35. SYNO_Create="${SYNO_Create:-$(_getdeployconf SYNO_Create)}"
  36. if [ -z "$SYNO_Username" ] || [ -z "$SYNO_Password" ]; then
  37. SYNO_Username=""
  38. SYNO_Password=""
  39. _err "SYNO_Username & SYNO_Password must be set"
  40. return 1
  41. fi
  42. _debug2 SYNO_Username "$SYNO_Username"
  43. _secure_debug2 SYNO_Password "$SYNO_Password"
  44. # Optional scheme, hostname, and port for Synology DSM
  45. SYNO_Scheme="${SYNO_Scheme:-$(_getdeployconf SYNO_Scheme)}"
  46. SYNO_Hostname="${SYNO_Hostname:-$(_getdeployconf SYNO_Hostname)}"
  47. SYNO_Port="${SYNO_Port:-$(_getdeployconf SYNO_Port)}"
  48. _savedeployconf SYNO_Scheme "$SYNO_Scheme"
  49. _savedeployconf SYNO_Hostname "$SYNO_Hostname"
  50. _savedeployconf SYNO_Port "$SYNO_Port"
  51. # default vaules for scheme, hostname, and port
  52. # defaulting to localhost and http because it's localhost...
  53. [ -n "${SYNO_Scheme}" ] || SYNO_Scheme="http"
  54. [ -n "${SYNO_Hostname}" ] || SYNO_Hostname="localhost"
  55. [ -n "${SYNO_Port}" ] || SYNO_Port="5000"
  56. _debug2 SYNO_Scheme "$SYNO_Scheme"
  57. _debug2 SYNO_Hostname "$SYNO_Hostname"
  58. _debug2 SYNO_Port "$SYNO_Port"
  59. # Get the certificate description, but don't save it until we verfiy it's real
  60. _getdeployconf SYNO_Certificate
  61. # shellcheck disable=SC2154
  62. if [ -z "${SYNO_Certificate}" ]; then
  63. _err "SYNO_Certificate needs to be defined (with the Certificate description name)"
  64. return 1
  65. fi
  66. _debug SYNO_Certificate "$SYNO_Certificate"
  67. _base_url="$SYNO_Scheme://$SYNO_Hostname:$SYNO_Port"
  68. _debug _base_url "$_base_url"
  69. # Login, get the token from JSON and session id from cookie
  70. _info "Logging into $SYNO_Hostname:$SYNO_Port"
  71. response=$(_get "$_base_url/webman/login.cgi?username=$SYNO_Username&passwd=$SYNO_Password&enable_syno_token=yes")
  72. token=$(echo "$response" | grep "SynoToken" | sed -n 's/.*"SynoToken" *: *"\([^"]*\).*/\1/p')
  73. _debug3 response "$response"
  74. if [ -z "$token" ]; then
  75. _err "Unable to authenticate to $SYNO_Hostname:$SYNO_Port using $SYNO_Scheme."
  76. _err "Check your username and password."
  77. return 1
  78. fi
  79. _H1="Cookie: $(_syno_get_cookie_data "id"); $(_syno_get_cookie_data "smid")"
  80. _H2="X-SYNO-TOKEN: $token"
  81. export _H1
  82. export _H2
  83. _debug3 H1 "${_H1}"
  84. _debug3 H2 "${_H2}"
  85. # Now that we know the username and password are good, save them
  86. _savedeployconf SYNO_Username "$SYNO_Username"
  87. _savedeployconf SYNO_Password "$SYNO_Password"
  88. _secure_debug2 token "$token"
  89. _info "Getting certificates in Synology DSM"
  90. response=$(_post "api=SYNO.Core.Certificate.CRT&method=list&version=1" "$_base_url/webapi/entry.cgi")
  91. _debug3 response "$response"
  92. id=$(echo "$response" | sed -n "s/.*\"desc\":\"$SYNO_Certificate\",\"id\":\"\([^\"]*\).*/\1/p")
  93. _debug2 id "$id"
  94. if [ -z "$id" ] && [ -z "$SYNO_Create" ]; then
  95. _err "Unable to find certificate: $SYNO_Certificate and \$SYNO_Create is not set"
  96. return 1
  97. fi
  98. # we've verified this certificate description is a thing, so save it
  99. _savedeployconf SYNO_Certificate "$SYNO_Certificate"
  100. default=false
  101. if echo "$response" | sed -n "s/.*\"desc\":\"$SYNO_Certificate\",\([^{]*\).*/\1/p" | grep -q -- 'is_default":true'; then
  102. default=true
  103. fi
  104. _debug2 default "$default"
  105. _info "Generate form POST request"
  106. nl="\015\012"
  107. delim="--------------------------$(date +%Y%m%d%H%M%S)"
  108. content="--$delim${nl}Content-Disposition: form-data; name=\"key\"; filename=\"$(basename "$_ckey")\"${nl}Content-Type: application/octet-stream${nl}${nl}$(cat "$_ckey")\012"
  109. content="$content${nl}--$delim${nl}Content-Disposition: form-data; name=\"cert\"; filename=\"$(basename "$_ccert")\"${nl}Content-Type: application/octet-stream${nl}${nl}$(cat "$_ccert")\012"
  110. content="$content${nl}--$delim${nl}Content-Disposition: form-data; name=\"inter_cert\"; filename=\"$(basename "$_cca")\"${nl}Content-Type: application/octet-stream${nl}${nl}$(cat "$_cca")\012"
  111. content="$content${nl}--$delim${nl}Content-Disposition: form-data; name=\"id\"${nl}${nl}$id"
  112. content="$content${nl}--$delim${nl}Content-Disposition: form-data; name=\"desc\"${nl}${nl}${SYNO_Certificate}"
  113. content="$content${nl}--$delim${nl}Content-Disposition: form-data; name=\"as_default\"${nl}${nl}${default}"
  114. content="$content${nl}--$delim--${nl}"
  115. content="$(printf "%b_" "$content")"
  116. content="${content%_}" # protect trailing \n
  117. _info "Upload certificate to the Synology DSM"
  118. response=$(_post "$content" "$_base_url/webapi/entry.cgi?api=SYNO.Core.Certificate&method=import&version=1&SynoToken=$token" "" "POST" "multipart/form-data; boundary=${delim}")
  119. _debug3 response "$response"
  120. if ! echo "$response" | grep -q '"error":'; then
  121. if echo "$response" | grep -q '"restart_httpd":true'; then
  122. _info "http services were restarted"
  123. else
  124. _info "http services were NOT restarted"
  125. fi
  126. return 0
  127. else
  128. _err "Unable to update certificate, error code $response"
  129. return 1
  130. fi
  131. }