]> git.proxmox.com Git - mirror_acme.sh.git/blob - deploy/synology_dsm.sh
Fix Auth API access for DSM 6
[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_path=$(echo "$response" | grep "SYNO.API.Auth" | sed -n 's/.*"path" *: *"\([0-9]*\)".*/\1/p')
95 api_version=$(echo "$response" | grep "SYNO.API.Auth" | sed -n 's/.*"maxVersion" *: *\([0-9]*\).*/\1/p')
96 _debug3 response "$response"
97 _debug3 api_path "$api_path"
98 _debug3 api_version "$api_version"
99
100 # Login, get the session ID & SynoToken from JSON
101 _info "Logging into $SYNO_Hostname:$SYNO_Port"
102 encoded_username="$(printf "%s" "$SYNO_Username" | _url_encode)"
103 encoded_password="$(printf "%s" "$SYNO_Password" | _url_encode)"
104
105 otp_code=""
106 # START - DEPRECATED, only kept for legacy compatibility reasons
107 if [ -n "$SYNO_TOTP_SECRET" ]; then
108 _info "WARNING: Usage of SYNO_TOTP_SECRET is deprecated!"
109 _info " See synology_dsm.sh script or ACME.sh Wiki page for details:"
110 _info " https://github.com/acmesh-official/acme.sh/wiki/Synology-NAS-Guide"
111 DEPRECATED_otp_code=""
112 if _exists oathtool; then
113 DEPRECATED_otp_code="$(oathtool --base32 --totp "${SYNO_TOTP_SECRET}" 2>/dev/null)"
114 else
115 _err "oathtool could not be found, install oathtool to use SYNO_TOTP_SECRET"
116 return 1
117 fi
118
119 if [ -n "$SYNO_DID" ]; then
120 _H1="Cookie: did=$SYNO_DID"
121 export _H1
122 _debug3 H1 "${_H1}"
123 fi
124
125 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")
126 _debug3 response "$response"
127 # END - DEPRECATED, only kept for legacy compatibility reasons
128 # Get device ID if still empty first, otherwise log in right away
129 elif [ -z "${SYNO_Device_ID:-}" ]; then
130 printf "Enter OTP code for user '%s': " "$SYNO_Username"
131 read -r otp_code
132 if [ -z "${SYNO_Device_Name:-}" ]; then
133 printf "Enter device name or leave empty for default (CertRenewal): "
134 read -r SYNO_Device_Name
135 [ -n "${SYNO_Device_Name}" ] || SYNO_Device_Name="CertRenewal"
136 fi
137
138 response=$(_get "$_base_url/webapi/$api_path?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")
139 _debug3 response "$response"
140 SYNO_Device_ID=$(echo "$response" | grep "device_id" | sed -n 's/.*"device_id" *: *"\([^"]*\).*/\1/p')
141 _secure_debug2 SYNO_Device_ID "$SYNO_Device_ID"
142 else
143 response=$(_get "$_base_url/webapi/$api_path?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")
144 _debug3 response "$response"
145 fi
146
147 sid=$(echo "$response" | grep "sid" | sed -n 's/.*"sid" *: *"\([^"]*\).*/\1/p')
148 token=$(echo "$response" | grep "synotoken" | sed -n 's/.*"synotoken" *: *"\([^"]*\).*/\1/p')
149 _debug "Session ID" "$sid"
150 _debug SynoToken "$token"
151 if [ -z "$SYNO_DID" ] && [ -z "$SYNO_Device_ID" ] || [ -z "$sid" ] || [ -z "$token" ]; then
152 _err "Unable to authenticate to $_base_url - check your username & password."
153 _err "If two-factor authentication is enabled for the user, set SYNO_Device_ID."
154 return 1
155 fi
156
157 _H1="X-SYNO-TOKEN: $token"
158 export _H1
159 _debug2 H1 "${_H1}"
160
161 # Now that we know the username & password are good, save them
162 _savedeployconf SYNO_Username "$SYNO_Username"
163 _savedeployconf SYNO_Password "$SYNO_Password"
164 _savedeployconf SYNO_Device_Name "$SYNO_Device_Name"
165 _savedeployconf SYNO_Device_ID "$SYNO_Device_ID"
166
167 _info "Getting certificates in Synology DSM"
168 response=$(_post "api=SYNO.Core.Certificate.CRT&method=list&version=1&_sid=$sid" "$_base_url/webapi/entry.cgi")
169 _debug3 response "$response"
170 escaped_certificate="$(printf "%s" "$SYNO_Certificate" | sed 's/\([].*^$[]\)/\\\1/g;s/"/\\\\"/g')"
171 _debug escaped_certificate "$escaped_certificate"
172 id=$(echo "$response" | sed -n "s/.*\"desc\":\"$escaped_certificate\",\"id\":\"\([^\"]*\).*/\1/p")
173 _debug2 id "$id"
174
175 if [ -z "$id" ] && [ -z "${SYNO_Create:-}" ]; then
176 _err "Unable to find certificate: $SYNO_Certificate & \$SYNO_Create is not set"
177 return 1
178 fi
179
180 # We've verified this certificate description is a thing, so save it
181 _savedeployconf SYNO_Certificate "$SYNO_Certificate" "base64"
182
183 _info "Generate form POST request"
184 nl="\0015\0012"
185 delim="--------------------------$(_utc_date | tr -d -- '-: ')"
186 content="--$delim${nl}Content-Disposition: form-data; name=\"key\"; filename=\"$(basename "$_ckey")\"${nl}Content-Type: application/octet-stream${nl}${nl}$(cat "$_ckey")\0012"
187 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"
188 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"
189 content="$content${nl}--$delim${nl}Content-Disposition: form-data; name=\"id\"${nl}${nl}$id"
190 content="$content${nl}--$delim${nl}Content-Disposition: form-data; name=\"desc\"${nl}${nl}${SYNO_Certificate}"
191 if echo "$response" | sed -n "s/.*\"desc\":\"$escaped_certificate\",\([^{]*\).*/\1/p" | grep -- 'is_default":true' >/dev/null; then
192 _debug2 default "This is the default certificate"
193 content="$content${nl}--$delim${nl}Content-Disposition: form-data; name=\"as_default\"${nl}${nl}true"
194 else
195 _debug2 default "This is NOT the default certificate"
196 fi
197 content="$content${nl}--$delim--${nl}"
198 content="$(printf "%b_" "$content")"
199 content="${content%_}" # protect trailing \n
200
201 _info "Upload certificate to the Synology DSM"
202 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}")
203 _debug3 response "$response"
204
205 if ! echo "$response" | grep '"error":' >/dev/null; then
206 if echo "$response" | grep '"restart_httpd":true' >/dev/null; then
207 _info "Restarting HTTP services succeeded"
208 else
209 _info "Restarting HTTP services failed"
210 fi
211
212 _logout
213 return 0
214 else
215 _err "Unable to update certificate, error code $response"
216 _logout
217 return 1
218 fi
219 }
220
221 #################### Private functions below ##################################
222 _logout() {
223 # Logout to not occupy a permanent session, e.g. in DSM's "Connected Users" widget
224 response=$(_get "$_base_url/webapi/entry.cgi?api=SYNO.API.Auth&version=$api_version&method=logout")
225 _debug3 response "$response"
226 }