]> git.proxmox.com Git - mirror_acme.sh.git/blob - deploy/synology_dsm.sh
RI
[mirror_acme.sh.git] / deploy / synology_dsm.sh
1 #!/bin/bash
2
3 ################################################################################
4 # ACME.sh 3rd party deploy plugin for Synology DSM
5 ################################################################################
6 # Authors: Brian Hartvigsen (creator), https://github.com/tresni
7 # Martin Arndt (contributor), https://troublezone.net/
8 # Updated: 2023-07-03
9 # Issues: https://github.com/acmesh-official/acme.sh/issues/2727
10 ################################################################################
11 # Usage:
12 # 1. export SYNO_Username="adminUser"
13 # 2. export SYNO_Password="adminPassword"
14 # Optional exports (shown values are the defaults):
15 # - export SYNO_Certificate="" to replace a specific certificate via description
16 # - export SYNO_Scheme="http"
17 # - export SYNO_Hostname="localhost"
18 # - export SYNO_Port="5000"
19 # - export SYNO_Device_Name="CertRenewal" - required for skipping 2FA-OTP
20 # - export SYNO_Device_ID="" - required for skipping 2FA-OTP
21 # 3. acme.sh --deploy --deploy-hook synology_dsm -d example.com
22 ################################################################################
23 # Dependencies:
24 # - jq & curl
25 ################################################################################
26 # Return value:
27 # 0 means success, otherwise error.
28 ################################################################################
29
30 ########## Public functions ####################################################
31 #domain keyfile certfile cafile fullchain
32 synology_dsm_deploy() {
33 _cdomain="$1"
34 _ckey="$2"
35 _ccert="$3"
36 _cca="$4"
37
38 _debug _cdomain "$_cdomain"
39
40 # Get username & password, but don't save until we authenticated successfully
41 _getdeployconf SYNO_Username
42 _getdeployconf SYNO_Password
43 _getdeployconf SYNO_Create
44 _getdeployconf SYNO_DID
45 _getdeployconf SYNO_TOTP_SECRET
46 _getdeployconf SYNO_Device_Name
47 _getdeployconf SYNO_Device_ID
48 if [ -z "${SYNO_Username:-}" ] || [ -z "${SYNO_Password:-}" ]; then
49 _err "SYNO_Username & SYNO_Password must be set"
50 return 1
51 fi
52 if [ -n "${SYNO_Device_Name:-}" ] && [ -z "${SYNO_Device_ID:-}" ]; then
53 _err "SYNO_Device_Name set, but SYNO_Device_ID is empty"
54 return 1
55 fi
56 _debug2 SYNO_Username "$SYNO_Username"
57 _secure_debug2 SYNO_Password "$SYNO_Password"
58 _debug2 SYNO_Create "$SYNO_Create"
59 _debug2 SYNO_Device_Name "$SYNO_Device_Name"
60 _secure_debug2 SYNO_Device_ID "$SYNO_Device_ID"
61
62 # Optional scheme, hostname & port for Synology DSM
63 _getdeployconf SYNO_Scheme
64 _getdeployconf SYNO_Hostname
65 _getdeployconf SYNO_Port
66
67 # Default values for scheme, hostname & port
68 # Defaulting to localhost & http, because it's localhost…
69 [ -n "${SYNO_Scheme}" ] || SYNO_Scheme="http"
70 [ -n "${SYNO_Hostname}" ] || SYNO_Hostname="localhost"
71 [ -n "${SYNO_Port}" ] || SYNO_Port="5000"
72 _savedeployconf SYNO_Scheme "$SYNO_Scheme"
73 _savedeployconf SYNO_Hostname "$SYNO_Hostname"
74 _savedeployconf SYNO_Port "$SYNO_Port"
75 _debug2 SYNO_Scheme "$SYNO_Scheme"
76 _debug2 SYNO_Hostname "$SYNO_Hostname"
77 _debug2 SYNO_Port "$SYNO_Port"
78
79 # Get the certificate description, but don't save it until we verify it's real
80 _getdeployconf SYNO_Certificate
81 _debug SYNO_Certificate "${SYNO_Certificate:-}"
82
83 # shellcheck disable=SC1003 # We are not trying to escape a single quote
84 if printf "%s" "$SYNO_Certificate" | grep '\\'; then
85 _err "Do not use a backslash (\) in your certificate description"
86 return 1
87 fi
88
89 _base_url="$SYNO_Scheme://$SYNO_Hostname:$SYNO_Port"
90 _debug _base_url "$_base_url"
91
92 _debug "Getting API version"
93 response=$(_get "$_base_url/webapi/query.cgi?api=SYNO.API.Info&version=1&method=query&query=SYNO.API.Auth")
94 api_version=$(echo "$response" | grep "SYNO.API.Auth" | sed -n 's/.*"maxVersion" *: *\([0-9]*\).*/\1/p')
95 _debug3 response "$response"
96 _debug3 api_version "$api_version"
97
98 # Login, get the session ID & SynoToken from JSON
99 _info "Logging into $SYNO_Hostname:$SYNO_Port"
100 encoded_username="$(printf "%s" "$SYNO_Username" | _url_encode)"
101 encoded_password="$(printf "%s" "$SYNO_Password" | _url_encode)"
102
103 otp_code=""
104 # START - DEPRECATED, only kept for legacy compatibility reasons
105 if [ -n "$SYNO_TOTP_SECRET" ]; then
106 _info "WARNING: Usage of SYNO_TOTP_SECRET is deprecated!"
107 _info " See synology_dsm.sh script or ACME.sh Wiki page for details:"
108 _info " https://github.com/acmesh-official/acme.sh/wiki/Synology-NAS-Guide"
109 DEPRECATED_otp_code=""
110 if _exists oathtool; then
111 DEPRECATED_otp_code="$(oathtool --base32 --totp "${SYNO_TOTP_SECRET}" 2>/dev/null)"
112 else
113 _err "oathtool could not be found, install oathtool to use SYNO_TOTP_SECRET"
114 return 1
115 fi
116
117 if [ -n "$SYNO_DID" ]; then
118 _H1="Cookie: did=$SYNO_DID"
119 export _H1
120 _debug3 H1 "${_H1}"
121 fi
122
123 response=$(_post "method=login&account=$encoded_username&passwd=$encoded_password&api=SYNO.API.Auth&version=$api_version&enable_syno_token=yes&otp_code=$DEPRECATED_otp_code&device_name=certrenewal&device_id=$SYNO_DID" "$_base_url/webapi/auth.cgi?enable_syno_token=yes")
124 _debug3 response "$response"
125 # END - DEPRECATED, only kept for legacy compatibility reasons
126 # Get device ID if still empty first, otherwise log in right away
127 elif [ -z "${SYNO_Device_ID:-}" ]; then
128 printf "Enter OTP code for user '%s': " "$SYNO_Username"
129 read -r otp_code
130 if [ -z "${SYNO_Device_Name:-}" ]; then
131 printf "Enter device name or leave empty for default (CertRenewal): "
132 read -r SYNO_Device_Name
133 [ -n "${SYNO_Device_Name}" ] || SYNO_Device_Name="CertRenewal"
134 fi
135
136 response=$(_get "$_base_url/webapi/entry.cgi?api=SYNO.API.Auth&version=$api_version&method=login&format=sid&account=$encoded_username&passwd=$encoded_password&otp_code=$otp_code&enable_syno_token=yes&enable_device_token=yes&device_name=$SYNO_Device_Name")
137 _debug3 response "$response"
138 SYNO_Device_ID=$(echo "$response" | grep "device_id" | sed -n 's/.*"device_id" *: *"\([^"]*\).*/\1/p')
139 _secure_debug2 SYNO_Device_ID "$SYNO_Device_ID"
140 else
141 response=$(_get "$_base_url/webapi/entry.cgi?api=SYNO.API.Auth&version=$api_version&method=login&format=sid&account=$encoded_username&passwd=$encoded_password&enable_syno_token=yes&device_name=$SYNO_Device_Name&device_id=$SYNO_Device_ID")
142 _debug3 response "$response"
143 fi
144
145 sid=$(echo "$response" | grep "sid" | sed -n 's/.*"sid" *: *"\([^"]*\).*/\1/p')
146 token=$(echo "$response" | grep "synotoken" | sed -n 's/.*"synotoken" *: *"\([^"]*\).*/\1/p')
147 _debug "Session ID" "$sid"
148 _debug SynoToken "$token"
149 if [ -z "$SYNO_DID" ] && [ -z "$SYNO_Device_ID" ] || [ -z "$sid" ] || [ -z "$token" ]; then
150 _err "Unable to authenticate to $_base_url - check your username & password."
151 _err "If two-factor authentication is enabled for the user, set SYNO_Device_ID."
152 return 1
153 fi
154
155 _H1="X-SYNO-TOKEN: $token"
156 export _H1
157 _debug2 H1 "${_H1}"
158
159 # Now that we know the username & password are good, save them
160 _savedeployconf SYNO_Username "$SYNO_Username"
161 _savedeployconf SYNO_Password "$SYNO_Password"
162 _savedeployconf SYNO_Device_Name "$SYNO_Device_Name"
163 _savedeployconf SYNO_Device_ID "$SYNO_Device_ID"
164
165 _info "Getting certificates in Synology DSM"
166 response=$(_post "api=SYNO.Core.Certificate.CRT&method=list&version=1&_sid=$sid" "$_base_url/webapi/entry.cgi")
167 _debug3 response "$response"
168 escaped_certificate="$(printf "%s" "$SYNO_Certificate" | sed 's/\([].*^$[]\)/\\\1/g;s/"/\\\\"/g')"
169 _debug escaped_certificate "$escaped_certificate"
170 id=$(echo "$response" | sed -n "s/.*\"desc\":\"$escaped_certificate\",\"id\":\"\([^\"]*\).*/\1/p")
171 _debug2 id "$id"
172
173 if [ -z "$id" ] && [ -z "${SYNO_Create:-}" ]; then
174 _err "Unable to find certificate: $SYNO_Certificate & \$SYNO_Create is not set"
175 return 1
176 fi
177
178 # We've verified this certificate description is a thing, so save it
179 _savedeployconf SYNO_Certificate "$SYNO_Certificate" "base64"
180
181 _info "Generate form POST request"
182 nl="\0015\0012"
183 delim="--------------------------$(_utc_date | tr -d -- '-: ')"
184 content="--$delim${nl}Content-Disposition: form-data; name=\"key\"; filename=\"$(basename "$_ckey")\"${nl}Content-Type: application/octet-stream${nl}${nl}$(cat "$_ckey")\0012"
185 content="$content${nl}--$delim${nl}Content-Disposition: form-data; name=\"cert\"; filename=\"$(basename "$_ccert")\"${nl}Content-Type: application/octet-stream${nl}${nl}$(cat "$_ccert")\0012"
186 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")\0012"
187 content="$content${nl}--$delim${nl}Content-Disposition: form-data; name=\"id\"${nl}${nl}$id"
188 content="$content${nl}--$delim${nl}Content-Disposition: form-data; name=\"desc\"${nl}${nl}${SYNO_Certificate}"
189 if echo "$response" | sed -n "s/.*\"desc\":\"$escaped_certificate\",\([^{]*\).*/\1/p" | grep -- 'is_default":true' >/dev/null; then
190 _debug2 default "This is the default certificate"
191 content="$content${nl}--$delim${nl}Content-Disposition: form-data; name=\"as_default\"${nl}${nl}true"
192 else
193 _debug2 default "This is NOT the default certificate"
194 fi
195 content="$content${nl}--$delim--${nl}"
196 content="$(printf "%b_" "$content")"
197 content="${content%_}" # protect trailing \n
198
199 _info "Upload certificate to the Synology DSM"
200 response=$(_post "$content" "$_base_url/webapi/entry.cgi?api=SYNO.Core.Certificate&method=import&version=1&SynoToken=$token&_sid=$sid" "" "POST" "multipart/form-data; boundary=${delim}")
201 _debug3 response "$response"
202
203 if ! echo "$response" | grep '"error":' >/dev/null; then
204 if echo "$response" | grep '"restart_httpd":true' >/dev/null; then
205 _info "Restarting HTTP services succeeded"
206 else
207 _info "Restarting HTTP services failed"
208 fi
209
210 _logout
211 return 0
212 else
213 _err "Unable to update certificate, error code $response"
214 _logout
215 return 1
216 fi
217 }
218
219 #################### Private functions below ##################################
220 _logout() {
221 # Logout to not occupy a permanent session, e.g. in DSM's "Connected Users" widget
222 response=$(_get "$_base_url/webapi/entry.cgi?api=SYNO.API.Auth&version=$api_version&method=logout")
223 _debug3 response "$response"
224 }