l10n: Update translation catalogues
[libisds.git] / src / soap.c
blobc04ae70bcc14f6c1aff56275e26db32cfd2aa95a
1 #include "isds_priv.h"
2 #include "soap.h"
3 #include "utils.h"
4 #include <stdlib.h>
5 #include <string.h>
6 #include <strings.h> /* strncasecmp(3) */
7 #include "system.h"
9 /* Private structure for write_body() call back */
10 struct soap_body {
11 void *data;
12 size_t length;
15 /* Private structure for write_header() call back */
16 struct auth_headers {
17 _Bool is_complete; /* Response has finished, next iteration is new
18 response, values become obsolete. */
19 char *last_header; /* Temporary storage for previous unfinished header */
20 char *method; /* WWW-Authenticate value */
21 char *code; /* X-Response-message-code value */
22 isds_otp_resolution resolution; /* Decoded .code member */
23 char *message; /* X-Response-message-text value */
24 char *redirect; /* Redirect URL */
28 /* Deallocate content of struct auth_headers */
29 static void auth_headers_free(struct auth_headers *headers) {
30 zfree(headers->last_header);
31 zfree(headers->method);
32 zfree(headers->code);
33 zfree(headers->message);
34 zfree(headers->redirect);
38 /* If given @line is HTTP header of @name,
39 * return pointer to the header value. Otherwise return NULL.
40 * @name is header name without name---value separator, terminated with 0. */
41 static const char *header_value(const char *line, const char *name) {
42 const char *value;
43 if (line == NULL || name == NULL) return NULL;
45 for (value = line; ; value++, name++) {
46 if (*value == '\0') return NULL; /* Line too short */
47 if (*name == '\0') break; /* Name matches */
48 if (*name != *value) return NULL; /* Name does not match */
51 /* Check separator. RFC2616, section 4.2 requires collon only. */
52 if (*value++ != ':') return NULL;
54 return value;
58 /* Try to decode header value per RFC 2047.
59 * @prepend_space is true if a space should be inserted before decoded word
60 * into @output in case the word has been decoded successfully.
61 * @input is zero terminated input, it's updated to point all consumed
62 * input - 1.
63 * @output is buffer to store decoded value, it's updated to point after last
64 * written character. The buffer must be preallocated.
65 * @return 0 if input has been successfully decoded, then @input and @output
66 * poineres will be updated. Otherwise return non-zero value and keeps
67 * argument pointers and memory unchanged. */
68 static int try_rfc2047_decode(_Bool prepend_space, const char **input,
69 char **output) {
70 const char *encoded;
71 const char *charset_start, *encoding, *end;
72 size_t charset_length;
73 char *charset = NULL;
74 /* ISDS prescribes B encoding only, but RFC 2047 requires to support Q
75 * encoding too. ISDS prescribes UTF-8 charset only, RFC requiers to
76 * support any MIME charset. */
77 if (input == NULL || *input == NULL || output == NULL || *output == NULL)
78 return -1;
80 /* Start is "=?" */
81 encoded = *input;
82 if (encoded[0] != '=' || encoded[1] != '?')
83 return -1;
85 /* Then is "CHARSET?" */
86 charset_start = (encoded += 2);
87 while (*encoded != '?') {
88 if (*encoded == '\0')
89 return -1;
90 if (*encoded == ' ' || *encoded == '\t' || *encoded == '\r' || *encoded == '\n')
91 return -1;
92 encoded++;
94 encoded++;
96 /* Then is "ENCODING?", where ENCODING is /[BbQq]/ */
97 if (*encoded == '\0') return -1;
98 encoding = encoded++;
99 if (*encoded != '?')
100 return -1;
101 encoded++;
103 /* Then is "ENCODED_TEXT?=" */
104 while (*encoded != '?') {
105 if (*encoded == '\0')
106 return -1;
107 if (*encoded == ' ' || *encoded == '\t' || *encoded == '\r' || *encoded == '\n')
108 return -1;
109 encoded++;
111 end = encoded;
112 if (*(++encoded) != '=') return -1;
114 /* Now pointers are:
115 * "=?CHARSET?E?ENCODED_TEXT?="
116 * | | | ||
117 * | | | |\- encoded
118 * | | | \- end
119 * | | \- encoding
120 * | \- charset_start
121 * \- *input
124 charset_length = encoding - charset_start - 1;
125 if (charset_length < 1)
126 return -1;
127 charset = strndup(charset_start, charset_length);
128 if (charset == NULL)
129 return -1;
131 /* Decode encoding */
132 char *bit_stream = NULL;
133 size_t bit_length = 0;
134 size_t encoding_length = end - encoding - 2;
136 if (*encoding == 'B') {
137 /* Decode Base-64 */
138 char *b64_stream = NULL;
139 if (NULL == (b64_stream =
140 malloc((encoding_length + 1) * sizeof(*encoding)))) {
141 free(charset);
142 return -1;
144 memcpy(b64_stream, encoding + 2, encoding_length);
145 b64_stream[encoding_length] = '\0';
146 bit_length = _isds_b64decode(b64_stream, (void **)&bit_stream);
147 free(b64_stream);
148 if (bit_length == (size_t) -1) {
149 free(charset);
150 return -1;
152 } else if (*encoding == 'Q') {
153 /* Decode Quoted-printable-like */
154 if (NULL == (bit_stream =
155 malloc((encoding_length) * sizeof(*encoding)))) {
156 free(charset);
157 return -1;
159 for (size_t q = 2; q < encoding_length + 2; q++) {
160 if (encoding[q] == '_') {
161 bit_stream[bit_length] = '\x20';
162 } else if (encoding[q] == '=') {
163 int ordinar;
164 /* Validate "=HH", where H is hexadecimal digit */
165 if (q + 2 >= encoding_length + 2 ) {
166 free(bit_stream);
167 free(charset);
168 return -1;
170 /* Convert =HH */
171 if ((ordinar = _isds_hex2i(encoding[++q])) < 0) {
172 free(bit_stream);
173 free(charset);
174 return -1;
176 bit_stream[bit_length] = (ordinar << 4);
177 if ((ordinar = _isds_hex2i(encoding[++q])) < 0) {
178 free(bit_stream);
179 free(charset);
180 return -1;
182 bit_stream[bit_length] += ordinar;
183 } else {
184 bit_stream[bit_length] = encoding[q];
186 bit_length++;
188 } else {
189 /* Unknown encoding */
190 free(charset);
191 return -1;
194 /* Convert to UTF-8 */
195 char *utf_stream = NULL;
196 size_t utf_length;
197 utf_length = _isds_any2any(charset, "UTF-8", bit_stream, bit_length,
198 (void **)&utf_stream);
199 free(bit_stream);
200 free(charset);
201 if (utf_length == (size_t) -1) {
202 return -1;
205 /* Copy UTF-8 stream to output buffer */
206 if (prepend_space) {
207 **output = ' ';
208 (*output)++;
210 memcpy(*output, utf_stream, utf_length);
211 free(utf_stream);
212 *output += utf_length;
214 *input = encoded;
215 return 0;
219 /* Decode HTTP header value per RFC 2047.
220 * @encoded_value is encoded HTTP header value terminated with NUL. It can
221 * contain HTTP LWS separators that will be replaced with a space.
222 * @return newly allocated decoded value without EOL, or return NULL. */
223 static char *decode_header_value(const char *encoded_value) {
224 char *decoded = NULL, *decoded_cursor;
225 size_t content_length;
226 _Bool text_started = 0, lws_seen = 0, encoded_word_seen = 0;
228 if (encoded_value == NULL) return NULL;
229 content_length = strlen(encoded_value);
231 /* A character can occupy up to 6 bytes in UTF-8 */
232 decoded = malloc(content_length * 6 + 1);
233 if (decoded == NULL) {
234 /* ENOMEM */
235 return NULL;
238 /* Decode */
239 /* RFC 2616, section 4.2: Remove surrounding LWS, replace inner ones with
240 * a space. */
241 /* RFC 2047, section 6.2: LWS between adjacent encoded words is ignored.
242 * */
243 for (decoded_cursor = decoded; *encoded_value; encoded_value++) {
244 if (*encoded_value == '\r' || *encoded_value == '\n' ||
245 *encoded_value == '\t' || *encoded_value == ' ') {
246 lws_seen = 1;
247 continue;
249 if (*encoded_value == '=' &&
250 !try_rfc2047_decode(
251 lws_seen && text_started && !encoded_word_seen,
252 &encoded_value, &decoded_cursor)) {
253 encoded_word_seen = 1;
254 } else {
255 if (lws_seen && text_started)
256 *(decoded_cursor++) = ' ';
257 *(decoded_cursor++) = *encoded_value;
258 encoded_word_seen = 0;
260 lws_seen = 0;
261 text_started = 1;
263 *decoded_cursor = '\0';
265 return decoded;
269 /* Return true, if server requests OTP authorization method that client
270 * requested. Otherwise return false.
271 * @client_method is method client requested
272 * @server_method is value of WWW-Authenticate header */
273 /*static _Bool otp_method_matches(const isds_otp_method client_method,
274 const char *server_method) {
275 char *method_name = NULL;
277 switch (client_method) {
278 case OTP_HMAC: method_name = "hotp"; break;
279 case OTP_TIME: method_name = "totp"; break;
280 default: return 0;
283 if (!strncmp(server_method, method_name, 4) && (
284 server_method[4] == '\0' || server_method[4] == ' ' ||
285 server_method[4] == '\t'))
286 return 1;
287 return 0;
291 /* Convert UTF-8 @string to HTTP OTP resolution enum type.
292 * @Return corresponding value or OTP_RESOLUTION_UNKNOWN if @string is not
293 * defined or unknown value. */
294 static isds_otp_resolution string2isds_otp_resolution(const char *string) {
295 if (string == NULL)
296 return OTP_RESOLUTION_UNKNOWN;
297 else if (!strcmp(string, "authentication.info.totpSended"))
298 return OTP_RESOLUTION_TOTP_SENT;
299 else if (!strcmp(string, "authentication.error.userIsNotAuthenticated"))
300 return OTP_RESOLUTION_BAD_AUTHENTICATION;
301 else if (!strcmp(string, "authentication.error.intruderDetected"))
302 return OTP_RESOLUTION_ACCESS_BLOCKED;
303 else if (!strcmp(string, "authentication.error.paswordExpired"))
304 return OTP_RESOLUTION_PASSWORD_EXPIRED;
305 else if (!strcmp(string, "authentication.info.cannotSendQuickly"))
306 return OTP_RESOLUTION_TO_FAST;
307 else if (!strcmp(string, "authentication.error.badRole"))
308 return OTP_RESOLUTION_UNAUTHORIZED;
309 else if (!strcmp(string, "authentication.info.totpNotSended"))
310 return OTP_RESOLUTION_TOTP_NOT_SENT;
311 else
312 return OTP_RESOLUTION_UNKNOWN;
316 /* Close connection to server and destroy CURL handle associated
317 * with @context */
318 _hidden isds_error _isds_close_connection(struct isds_ctx *context) {
319 if (!context) return IE_INVALID_CONTEXT;
321 if (context->curl) {
322 curl_easy_cleanup(context->curl);
323 context->curl = NULL;
324 isds_log(ILF_HTTP, ILL_DEBUG, _("Connection to server %s closed\n"),
325 context->url);
326 return IE_SUCCESS;
327 } else {
328 return IE_CONNECTION_CLOSED;
333 /* Remove username and password from context CURL handle. */
334 static isds_error unset_http_authorization(struct isds_ctx *context) {
335 isds_error error = IE_SUCCESS;
337 if (context == NULL) return IE_INVALID_CONTEXT;
338 if (context->curl == NULL) return IE_CONNECTION_CLOSED;
340 #if HAVE_DECL_CURLOPT_USERNAME /* Since curl-7.19.1 */
341 if (curl_easy_setopt(context->curl, CURLOPT_USERNAME, NULL))
342 error = IE_ERROR;
343 if (curl_easy_setopt(context->curl, CURLOPT_PASSWORD, NULL))
344 error = IE_ERROR;
345 #else
346 if (curl_easy_setopt(context->curl, CURLOPT_USERPWD, NULL))
347 error = IE_ERROR;
348 #endif /* not HAVE_DECL_CURLOPT_USERNAME */
350 if (error)
351 isds_log(ILF_HTTP, ILL_ERR, _("Error while unsetting user name and "
352 "password from CURL handle for connection to server %s.\n"),
353 context->url);
354 else
355 isds_log(ILF_HTTP, ILL_DEBUG, _("User name and password for server %s "
356 "have been unset from CURL handle.\n"), context->url);
357 return error;
361 /* CURL call back function called when chunk of HTTP response body is available.
362 * @buffer points to new data
363 * @size * @nmemb is length of the chunk in bytes. Zero means empty body.
364 * @userp is private structure.
365 * Must return the length of the chunk, otherwise CURL will signal
366 * CURL_WRITE_ERROR. */
367 static size_t write_body(void *buffer, size_t size, size_t nmemb, void *userp) {
368 struct soap_body *body = (struct soap_body *) userp;
369 void *new_data;
371 /* FIXME: Check for (size * nmemb + body->lengt) !> SIZE_T_MAX.
372 * Precompute the product then. */
374 if (!body) return 0; /* This should never happen */
375 if (0 == (size * nmemb)) return 0; /* Empty body */
377 new_data = realloc(body->data, body->length + size * nmemb);
378 if (!new_data) return 0;
380 memcpy(new_data + body->length, buffer, size * nmemb);
382 body->data = new_data;
383 body->length += size * nmemb;
385 return (size * nmemb);
389 /* CURL call back function called when a HTTP response header is available.
390 * This is called for each header even if reply consists of more responses.
391 * @buffer points to new header (no zero terminator, but HTTP EOL is included)
392 * @size * @nmemb is length of the header in bytes
393 * @userp is private structure.
394 * Must return the length of the header, otherwise CURL will signal
395 * CURL_WRITE_ERROR. */
396 static size_t write_header(void *buffer, size_t size, size_t nmemb, void *userp) {
397 struct auth_headers *headers = (struct auth_headers *) userp;
398 size_t length;
399 const char *value;
401 /* FIXME: Check for (size * nmemb) !> SIZE_T_MAX.
402 * Precompute the product then. */
403 length = size * nmemb;
405 if (NULL == headers) return 0; /* This should never happen */
406 if (0 == length) {
407 /* ??? Is this the empty line delimiter? */
408 return 0; /* Empty headers */
411 /* New response, invalide authentication headers. */
412 /* XXX: Chunked encoding trailer is not supported */
413 if (headers->is_complete) auth_headers_free(headers);
415 /* Append continuation to multi-line header */
416 if (*(char *)buffer == ' ' || *(char *)buffer == '\t') {
417 if (headers->last_header != NULL) {
418 size_t old_length = strlen(headers->last_header);
419 char *longer_header = realloc(headers->last_header, old_length + length);
420 if (longer_header == NULL) {
421 /* ENOMEM */
422 return 0;
424 strncpy(longer_header + old_length, (char*)buffer + 1, length - 1);
425 longer_header[old_length + length - 1] = '\0';
426 headers->last_header = longer_header;
427 } else {
428 /* Invalid continuation without starting header will be skipped. */
429 isds_log(ILF_HTTP, ILL_WARNING,
430 _("HTTP header continuation without starting header has "
431 "been encountered. Skipping invalid HTTP response "
432 "line.\n"));
434 goto leave;
437 /* Decode last header */
438 value = header_value(headers->last_header, "WWW-Authenticate");
439 if (value != NULL) {
440 free(headers->method);
441 if (NULL == (headers->method = decode_header_value(value))) {
442 /* TODO: Set IE_NOMEM to context */
443 return 0;
445 goto store;
448 value = header_value(headers->last_header, "X-Response-message-code");
449 if (value != NULL) {
450 free(headers->code);
451 if (NULL == (headers->code = decode_header_value(value))) {
452 /* TODO: Set IE_NOMEM to context */
453 return 0;
455 goto store;
458 value = header_value(headers->last_header, "X-Response-message-text");
459 if (value != NULL) {
460 free(headers->message);
461 if (NULL == (headers->message = decode_header_value(value))) {
462 /* TODO: Set IE_NOMEM to context */
463 return 0;
465 goto store;
468 store:
469 /* Last header decoded, free it */
470 zfree(headers->last_header);
472 if (!strncmp(buffer, "\r\n", length)) {
473 /* Current line is header---body separator */
474 headers->is_complete = 1;
475 goto leave;
476 } else {
477 /* Current line is new header, store it */
478 headers->last_header = malloc(length + 1);
479 if (headers->last_header == NULL) {
480 /* TODO: Set IE_NOMEM to context */
481 return 0;
483 memcpy(headers->last_header, buffer, length);
484 headers->last_header[length] = '\0';
487 leave:
488 return (length);
492 /* CURL progress callback proxy to rearrange arguments.
493 * @curl_data is session context */
494 static int progress_proxy(void *curl_data, double download_total,
495 double download_current, double upload_total, double upload_current) {
496 struct isds_ctx *context = (struct isds_ctx *) curl_data;
497 int abort = 0;
499 if (context && context->progress_callback) {
500 abort = context->progress_callback(
501 upload_total, upload_current,
502 download_total, download_current,
503 context->progress_callback_data);
504 if (abort) {
505 isds_log(ILF_HTTP, ILL_INFO,
506 _("Application aborted HTTP transfer"));
510 return abort;
514 /* CURL call back function called when curl has something to log.
515 * @curl is cURL context
516 * @type is cURL log facility
517 * @buffer points to log data, XXX: not zero-terminated
518 * @size is length of log data
519 * @userp is private structure.
520 * Must return 0. */
521 static int log_curl(CURL *curl, curl_infotype type, char *buffer, size_t size,
522 void *userp) {
523 /* Silent warning about usused arguments.
524 * This prototype is cURL's debug_callback type. */
525 (void)curl;
526 (void)userp;
528 if (!buffer || 0 == size) return 0;
529 if (type == CURLINFO_TEXT || type == CURLINFO_HEADER_IN ||
530 type == CURLINFO_HEADER_OUT)
531 isds_log(ILF_HTTP, ILL_DEBUG, "%*s", size, buffer);
532 return 0;
536 /* Do HTTP request.
537 * @context holds the base URL,
538 * @url is a (CGI) file of SOAP URL,
539 * @use_get is a false to do a POST request, true to do a GET request.
540 * @request is body for POST request
541 * @request_length is length of @request in bytes
542 * @reponse is automatically reallocated() buffer to fit HTTP response with
543 * @response_length (does not need to match allocated memory exactly). You must
544 * free() the @response.
545 * @mime_type is automatically allocated MIME type send by server (*NULL if not
546 * sent). Set NULL if you don't care.
547 * @charset is charset of the body signaled by server. The same constrains
548 * like on @mime_type apply.
549 * @http_code is final HTTP code returned by server. This can be 200, 401, 500
550 * or any other one. Pass NULL if you don't interest.
551 * In case of error, the response memory, MIME type, charset and length will be
552 * deallocated and zeroed automatically. Thus be sure they are preallocated or
553 * they points to NULL.
554 * @response_otp_headers is pre-allocated structure for OTP authentication
555 * headers sent by server. Members must be valid pointers or NULLs.
556 * Pass NULL if you don't interest.
557 * Be ware that successful return value does not mean the HTTP request has
558 * been accepted by the server. You must consult @http_code. OTOH, failure
559 * return value means the request could not been sent (e.g. SSL error).
560 * Side effect: message buffer */
561 static isds_error http(struct isds_ctx *context,
562 const char *url, _Bool use_get,
563 const void *request, const size_t request_length,
564 void **response, size_t *response_length,
565 char **mime_type, char **charset, long *http_code,
566 struct auth_headers *response_otp_headers) {
568 CURLcode curl_err;
569 isds_error err = IE_SUCCESS;
570 struct soap_body body;
571 char *content_type;
572 struct curl_slist *headers = NULL;
575 if (!context) return IE_INVALID_CONTEXT;
576 if (!url) return IE_INVAL;
577 if (request_length > 0 && !request) return IE_INVAL;
578 if (!response || !response_length) return IE_INVAL;
580 /* Clean authentication headers */
582 /* Set the body here to allow deallocation in leave block */
583 body.data = *response;
584 body.length = 0;
586 /* Set Request-URI */
587 curl_err = curl_easy_setopt(context->curl, CURLOPT_URL, url);
589 /* Set TLS options */
590 if (!curl_err && context->tls_verify_server) {
591 if (!*context->tls_verify_server)
592 isds_log(ILF_SEC, ILL_WARNING,
593 _("Disabling server identity verification. "
594 "That was your decision.\n"));
595 curl_err = curl_easy_setopt(context->curl, CURLOPT_SSL_VERIFYPEER,
596 (*context->tls_verify_server)? 1L : 0L);
597 if (!curl_err) {
598 curl_err = curl_easy_setopt(context->curl, CURLOPT_SSL_VERIFYHOST,
599 (*context->tls_verify_server)? 2L : 0L);
602 if (!curl_err && context->tls_ca_file) {
603 isds_log(ILF_SEC, ILL_INFO,
604 _("CA certificates will be searched in `%s' file since now\n"),
605 context->tls_ca_file);
606 curl_err = curl_easy_setopt(context->curl, CURLOPT_CAINFO,
607 context->tls_ca_file);
609 if (!curl_err && context->tls_ca_dir) {
610 isds_log(ILF_SEC, ILL_INFO,
611 _("CA certificates will be searched in `%s' directory "
612 "since now\n"), context->tls_ca_dir);
613 curl_err = curl_easy_setopt(context->curl, CURLOPT_CAPATH,
614 context->tls_ca_dir);
616 if (!curl_err && context->tls_crl_file) {
617 #if HAVE_DECL_CURLOPT_CRLFILE /* Since curl-7.19.0 */
618 isds_log(ILF_SEC, ILL_INFO,
619 _("CRLs will be searched in `%s' file since now\n"),
620 context->tls_crl_file);
621 curl_err = curl_easy_setopt(context->curl, CURLOPT_CRLFILE,
622 context->tls_crl_file);
623 #else
624 isds_log(ILF_SEC, ILL_WARNING,
625 _("Your curl library cannot pass certificate revocation "
626 "list to cryptographic library.\n"
627 "Make sure cryptographic library default setting "
628 "delivers proper CRLs,\n"
629 "or upgrade curl.\n"));
630 #endif /* not HAVE_DECL_CURLOPT_CRLFILE */
634 /* Set credentials */
635 #if HAVE_DECL_CURLOPT_USERNAME /* Since curl-7.19.1 */
636 if (!curl_err && context->username) {
637 curl_err = curl_easy_setopt(context->curl, CURLOPT_USERNAME,
638 context->username);
640 if (!curl_err && context->password) {
641 curl_err = curl_easy_setopt(context->curl, CURLOPT_PASSWORD,
642 context->password);
644 #else
645 if (!curl_err && (context->username || context->password)) {
646 char *userpwd =
647 _isds_astrcat3(context->username, ":", context->password);
648 if (!userpwd) {
649 isds_log_message(context, _("Could not pass credentials to CURL"));
650 err = IE_NOMEM;
651 goto leave;
653 curl_err = curl_easy_setopt(context->curl, CURLOPT_USERPWD, userpwd);
654 free(userpwd);
656 #endif /* not HAVE_DECL_CURLOPT_USERNAME */
658 /* Set PKI credentials */
659 if (!curl_err && (context->pki_credentials)) {
660 if (context->pki_credentials->engine) {
661 /* Select SSL engine */
662 isds_log(ILF_SEC, ILL_INFO,
663 _("Cryptographic engine `%s' will be used for "
664 "key or certificate\n"),
665 context->pki_credentials->engine);
666 curl_err = curl_easy_setopt(context->curl, CURLOPT_SSLENGINE,
667 context->pki_credentials->engine);
670 if (!curl_err) {
671 /* Select certificate format */
672 #if HAVE_DECL_CURLOPT_SSLCERTTYPE /* since curl-7.9.3 */
673 if (context->pki_credentials->certificate_format ==
674 PKI_FORMAT_ENG) {
675 /* XXX: It's valid to have certificate in engine without name.
676 * Engines can select certificate according private key and
677 * vice versa. */
678 if (context->pki_credentials->certificate)
679 isds_log(ILF_SEC, ILL_INFO, _("Client `%s' certificate "
680 "will be read from `%s' engine\n"),
681 context->pki_credentials->certificate,
682 context->pki_credentials->engine);
683 else
684 isds_log(ILF_SEC, ILL_INFO, _("Client certificate "
685 "will be read from `%s' engine\n"),
686 context->pki_credentials->engine);
687 curl_err = curl_easy_setopt(context->curl, CURLOPT_SSLCERTTYPE,
688 "ENG");
689 } else if (context->pki_credentials->certificate) {
690 isds_log(ILF_SEC, ILL_INFO, _("Client %s certificate "
691 "will be read from `%s' file\n"),
692 (context->pki_credentials->certificate_format ==
693 PKI_FORMAT_DER) ? _("DER") : _("PEM"),
694 context->pki_credentials->certificate);
695 curl_err = curl_easy_setopt(context->curl, CURLOPT_SSLCERTTYPE,
696 (context->pki_credentials->certificate_format ==
697 PKI_FORMAT_DER) ? "DER" : "PEM");
699 #else
700 if ((context->pki_credentials->certificate_format ==
701 PKI_FORMAT_ENG ||
702 context->pki_credentials->certificate))
703 isds_log(ILF_SEC, ILL_WARNING,
704 _("Your curl library cannot distinguish certificate "
705 "formats. Make sure your cryptographic library\n"
706 "understands your certificate file by default, "
707 "or upgrade curl.\n"));
708 #endif /* not HAVE_DECL_CURLOPT_SSLCERTTYPE */
711 if (!curl_err && context->pki_credentials->certificate) {
712 /* Select certificate */
713 if (!curl_err)
714 curl_err = curl_easy_setopt(context->curl, CURLOPT_SSLCERT,
715 context->pki_credentials->certificate);
718 if (!curl_err) {
719 /* Select key format */
720 if (context->pki_credentials->key_format == PKI_FORMAT_ENG) {
721 if (context->pki_credentials->key)
722 isds_log(ILF_SEC, ILL_INFO, _("Client private key `%s' "
723 "from `%s' engine will be used\n"),
724 context->pki_credentials->key,
725 context->pki_credentials->engine);
726 else
727 isds_log(ILF_SEC, ILL_INFO, _("Client private key "
728 "from `%s' engine will be used\n"),
729 context->pki_credentials->engine);
730 curl_err = curl_easy_setopt(context->curl, CURLOPT_SSLKEYTYPE,
731 "ENG");
732 } else if (context->pki_credentials->key) {
733 isds_log(ILF_SEC, ILL_INFO, _("Client %s private key will be "
734 "read from `%s' file\n"),
735 (context->pki_credentials->key_format ==
736 PKI_FORMAT_DER) ? _("DER") : _("PEM"),
737 context->pki_credentials->key);
738 curl_err = curl_easy_setopt(context->curl, CURLOPT_SSLKEYTYPE,
739 (context->pki_credentials->key_format ==
740 PKI_FORMAT_DER) ? "DER" : "PEM");
743 if (!curl_err)
744 /* Select key */
745 curl_err = curl_easy_setopt(context->curl, CURLOPT_SSLKEY,
746 context->pki_credentials->key);
748 if (!curl_err) {
749 /* Pass key pass-phrase */
750 #if HAVE_DECL_CURLOPT_KEYPASSWD /* since curl-7.16.5 */
751 curl_err = curl_easy_setopt(context->curl,
752 CURLOPT_KEYPASSWD,
753 context->pki_credentials->passphrase);
754 #elif HAVE_DECL_CURLOPT_SSLKEYPASSWD /* up to curl-7.16.4 */
755 curl_err = curl_easy_setopt(context->curl,
756 CURLOPT_SSLKEYPASSWD,
757 context->pki_credentials->passphrase);
758 #else /* up to curl-7.9.2 */
759 curl_err = curl_easy_setopt(context->curl,
760 CURLOPT_SSLCERTPASSWD,
761 context->pki_credentials->passphrase);
762 #endif
767 /* Set authorization cookie for OTP session */
768 if (!curl_err && context->otp) {
769 isds_log(ILF_SEC, ILL_INFO,
770 _("Cookies will be stored and sent "
771 "because context has been authorized by OTP.\n"));
772 curl_err = curl_easy_setopt(context->curl, CURLOPT_COOKIEFILE, "");
775 /* Set timeout */
776 if (!curl_err) {
777 curl_err = curl_easy_setopt(context->curl, CURLOPT_NOSIGNAL, 1);
779 if (!curl_err && context->timeout) {
780 #if HAVE_DECL_CURLOPT_TIMEOUT_MS /* Since curl-7.16.2 */
781 curl_err = curl_easy_setopt(context->curl, CURLOPT_TIMEOUT_MS,
782 context->timeout);
783 #else
784 curl_err = curl_easy_setopt(context->curl, CURLOPT_TIMEOUT,
785 context->timeout / 1000);
786 #endif /* not HAVE_DECL_CURLOPT_TIMEOUT_MS */
789 /* Register callback */
790 if (context->progress_callback) {
791 if (!curl_err) {
792 curl_err = curl_easy_setopt(context->curl, CURLOPT_NOPROGRESS, 0);
794 if (!curl_err) {
795 curl_err = curl_easy_setopt(context->curl,
796 CURLOPT_PROGRESSFUNCTION, progress_proxy);
798 if (!curl_err) {
799 curl_err = curl_easy_setopt(context->curl, CURLOPT_PROGRESSDATA,
800 context);
804 /* Set other CURL features */
805 if (!curl_err) {
806 curl_err = curl_easy_setopt(context->curl, CURLOPT_FAILONERROR, 0);
809 /* Set get-response function */
810 if (!curl_err) {
811 curl_err = curl_easy_setopt(context->curl, CURLOPT_WRITEFUNCTION,
812 write_body);
814 if (!curl_err) {
815 curl_err = curl_easy_setopt(context->curl, CURLOPT_WRITEDATA, &body);
818 /* Set get-response-headers function if needed.
819 * XXX: Both CURLOPT_HEADERFUNCTION and CURLOPT_WRITEHEADER must be set or
820 * unset at the same time (see curl_easy_setopt(3)) ASAP, otherwise old
821 * invalid CURLOPT_WRITEHEADER value could be derefenced. */
822 if (!curl_err) {
823 curl_err = curl_easy_setopt(context->curl, CURLOPT_HEADERFUNCTION,
824 (response_otp_headers == NULL) ? NULL: write_header);
826 if (!curl_err) {
827 curl_err = curl_easy_setopt(context->curl, CURLOPT_WRITEHEADER,
828 response_otp_headers);
831 /* Set MIME types and headers requires by SOAP 1.1.
832 * SOAP 1.1 requires text/xml, SOAP 1.2 requires application/soap+xml */
833 if (!curl_err) {
834 headers = curl_slist_append(headers,
835 "Accept: application/soap+xml,application/xml,text/xml");
836 if (!headers) {
837 err = IE_NOMEM;
838 goto leave;
840 headers = curl_slist_append(headers, "Content-Type: text/xml");
841 if (!headers) {
842 err = IE_NOMEM;
843 goto leave;
845 headers = curl_slist_append(headers, "SOAPAction: ");
846 if (!headers) {
847 err = IE_NOMEM;
848 goto leave;
850 curl_err = curl_easy_setopt(context->curl, CURLOPT_HTTPHEADER, headers);
852 if (!curl_err) {
853 /* Set user agent identification */
854 curl_err = curl_easy_setopt(context->curl, CURLOPT_USERAGENT,
855 "libisds/" PACKAGE_VERSION);
858 if (use_get) {
859 /* Set GET request */
860 if (!curl_err) {
861 curl_err = curl_easy_setopt(context->curl, CURLOPT_HTTPGET, 1);
863 } else {
864 /* Set POST request body */
865 if (!curl_err) {
866 curl_err = curl_easy_setopt(context->curl, CURLOPT_POST, 1);
868 if (!curl_err) {
869 curl_err = curl_easy_setopt(context->curl, CURLOPT_POSTFIELDS, request);
871 if (!curl_err) {
872 curl_err = curl_easy_setopt(context->curl, CURLOPT_POSTFIELDSIZE,
873 request_length);
878 /* Debug cURL if requested */
879 _Bool debug_curl =
880 ((log_facilities & ILF_HTTP) && (log_level >= ILL_DEBUG));
881 if (!curl_err) {
882 curl_err = curl_easy_setopt(context->curl, CURLOPT_VERBOSE,
883 (debug_curl) ? 1 : 0);
885 if (!curl_err) {
886 curl_err = curl_easy_setopt(context->curl, CURLOPT_DEBUGFUNCTION,
887 (debug_curl) ? log_curl : NULL);
891 /* Check for errors so far */
892 if (curl_err) {
893 isds_log_message(context, curl_easy_strerror(curl_err));
894 err = IE_NETWORK;
895 goto leave;
898 isds_log(ILF_HTTP, ILL_DEBUG, _("Sending %s request to <%s>\n"),
899 use_get ? "GET" : "POST", url);
900 if (!use_get) {
901 isds_log(ILF_HTTP, ILL_DEBUG,
902 _("POST body length: %zu, content follows:\n"), request_length);
903 if (_isds_sizet2int(request_length) >= 0 ) {
904 isds_log(ILF_HTTP, ILL_DEBUG, "%.*s\n",
905 _isds_sizet2int(request_length), request);
907 isds_log(ILF_HTTP, ILL_DEBUG, _("End of POST body\n"));
911 /* Do the request */
912 curl_err = curl_easy_perform(context->curl);
914 if (!curl_err)
915 curl_err = curl_easy_getinfo(context->curl, CURLINFO_CONTENT_TYPE,
916 &content_type);
918 if (curl_err) {
919 /* TODO: Use curl_easy_setopt(CURLOPT_ERRORBUFFER) to obtain detailed
920 * error message. */
921 /* TODO: CURL is not internationalized yet. Collect CURL messages for
922 * I18N. */
923 isds_printf_message(context,
924 _("%s: %s"), url, _(curl_easy_strerror(curl_err)));
925 if (curl_err == CURLE_ABORTED_BY_CALLBACK)
926 err = IE_ABORTED;
927 else if (
928 curl_err == CURLE_SSL_CONNECT_ERROR ||
929 curl_err == CURLE_SSL_ENGINE_NOTFOUND ||
930 curl_err == CURLE_SSL_ENGINE_SETFAILED ||
931 curl_err == CURLE_SSL_CERTPROBLEM ||
932 curl_err == CURLE_SSL_CIPHER ||
933 curl_err == CURLE_SSL_CACERT ||
934 curl_err == CURLE_USE_SSL_FAILED ||
935 curl_err == CURLE_SSL_ENGINE_INITFAILED ||
936 curl_err == CURLE_SSL_CACERT_BADFILE ||
937 curl_err == CURLE_SSL_SHUTDOWN_FAILED ||
938 curl_err == CURLE_SSL_CRL_BADFILE ||
939 curl_err == CURLE_SSL_ISSUER_ERROR
941 err = IE_SECURITY;
942 else
943 err = IE_NETWORK;
944 goto leave;
947 isds_log(ILF_HTTP, ILL_DEBUG, _("Final response to %s received\n"), url);
948 isds_log(ILF_HTTP, ILL_DEBUG,
949 _("Response body length: %zu, content follows:\n"),
950 body.length);
951 if (_isds_sizet2int(body.length) >= 0) {
952 isds_log(ILF_HTTP, ILL_DEBUG, "%.*s\n",
953 _isds_sizet2int(body.length), body.data);
955 isds_log(ILF_HTTP, ILL_DEBUG, _("End of response body\n"));
958 /* Extract MIME type and charset */
959 if (content_type) {
960 char *sep;
961 size_t offset;
963 sep = strchr(content_type, ';');
964 if (sep) offset = (size_t) (sep - content_type);
965 else offset = strlen(content_type);
967 if (mime_type) {
968 *mime_type = malloc(offset + 1);
969 if (!*mime_type) {
970 err = IE_NOMEM;
971 goto leave;
973 memcpy(*mime_type, content_type, offset);
974 (*mime_type)[offset] = '\0';
977 if (charset) {
978 if (!sep) {
979 *charset = NULL;
980 } else {
981 sep = strstr(sep, "charset=");
982 if (!sep) {
983 *charset = NULL;
984 } else {
985 *charset = strdup(sep + 8);
986 if (!*charset) {
987 err = IE_NOMEM;
988 goto leave;
995 /* Get HTTP response code */
996 if (http_code) {
997 curl_err = curl_easy_getinfo(context->curl,
998 CURLINFO_RESPONSE_CODE, http_code);
999 if (curl_err) {
1000 err = IE_ERROR;
1001 goto leave;
1005 /* Store OTP authentication results */
1006 if (response_otp_headers && response_otp_headers->is_complete) {
1007 isds_log(ILF_SEC, ILL_DEBUG,
1008 _("OTP authentication headers received: "
1009 "method=%s, code=%s, message=%s\n"),
1010 response_otp_headers->method, response_otp_headers->code,
1011 response_otp_headers->message);
1013 /* XXX: Don't make unknown code fatal. Missing code can be succcess if
1014 * HTTP code is 302. This is checked in _isds_soap(). */
1015 response_otp_headers->resolution =
1016 string2isds_otp_resolution(response_otp_headers->code);
1018 if (response_otp_headers->message != NULL) {
1019 char *message_locale = _isds_utf82locale(response_otp_headers->message);
1020 /* _isds_utf82locale() return NULL on inconverable string. Do not
1021 * panic on it.
1022 * TODO: Escape such characters.
1023 * if (message_locale == NULL) {
1024 err = IE_NOMEM;
1025 goto leave;
1027 isds_printf_message(context,
1028 _("Server returned OTP authentication message: %s"),
1029 message_locale);
1030 free(message_locale);
1033 char *next_url = NULL; /* Weak pointer managed by cURL */
1034 curl_err = curl_easy_getinfo(context->curl, CURLINFO_REDIRECT_URL,
1035 &next_url);
1036 if (curl_err) {
1037 err = IE_ERROR;
1038 goto leave;
1040 if (next_url != NULL) {
1041 isds_log(ILF_SEC, ILL_DEBUG,
1042 _("OTP authentication headers redirect to: <%s>\n"),
1043 next_url);
1044 free(response_otp_headers->redirect);
1045 response_otp_headers->redirect = strdup(next_url);
1046 if (response_otp_headers->redirect == NULL) {
1047 err = IE_NOMEM;
1048 goto leave;
1052 leave:
1053 curl_slist_free_all(headers);
1055 if (err) {
1056 free(body.data);
1057 body.data = NULL;
1058 body.length = 0;
1060 if (mime_type) {
1061 free(*mime_type);
1062 *mime_type = NULL;
1064 if (charset) {
1065 free(*charset);
1066 *charset = NULL;
1069 if (err != IE_ABORTED) _isds_close_connection(context);
1072 *response = body.data;
1073 *response_length = body.length;
1075 return err;
1079 /* Do SOAP request.
1080 * @context holds the base URL,
1081 * @file is a (CGI) file of SOAP URL,
1082 * @request is XML node set with SOAP request body.
1083 * @file must be NULL, @request should be NULL rather than empty, if they should
1084 * not be signaled in the SOAP request.
1085 * @response_document is an automatically allocated XML document whose subtree
1086 * identified by @response_node_list holds the SOAP response body content. You
1087 * must xmlFreeDoc() it. If you don't care pass NULL and also
1088 * NULL @response_node_list.
1089 * @response_node_list is a pointer to node set with SOAP response body
1090 * content. The returned pointer points into @response_document to the first
1091 * child of SOAP Body element. Pass NULL and NULL @response_document, if you
1092 * don't care.
1093 * @raw_response is automatically allocated bit stream with response body. Use
1094 * NULL if you don't care
1095 * @raw_response_length is size of @raw_response in bytes
1096 * In case of error the response will be deallocated automatically.
1097 * Side effect: message buffer */
1098 _hidden isds_error _isds_soap(struct isds_ctx *context, const char *file,
1099 const xmlNodePtr request,
1100 xmlDocPtr *response_document, xmlNodePtr *response_node_list,
1101 void **raw_response, size_t *raw_response_length) {
1103 isds_error err = IE_SUCCESS;
1104 char *url = NULL;
1105 char *mime_type = NULL;
1106 long http_code = 0;
1107 struct auth_headers response_otp_headers;
1108 xmlBufferPtr http_request = NULL;
1109 xmlSaveCtxtPtr save_ctx = NULL;
1110 xmlDocPtr request_soap_doc = NULL;
1111 xmlNodePtr request_soap_envelope = NULL, request_soap_body = NULL;
1112 xmlNsPtr soap_ns = NULL;
1113 void *http_response = NULL;
1114 size_t response_length = 0;
1115 xmlDocPtr response_soap_doc = NULL;
1116 xmlNodePtr response_root = NULL;
1117 xmlXPathContextPtr xpath_ctx = NULL;
1118 xmlXPathObjectPtr response_soap_headers = NULL, response_soap_body = NULL,
1119 response_soap_fault = NULL;
1122 if (!context) return IE_INVALID_CONTEXT;
1123 if ( (NULL == response_document && NULL != response_node_list) ||
1124 (NULL != response_document && NULL == response_node_list))
1125 return IE_INVAL;
1126 if (!raw_response_length && raw_response) return IE_INVAL;
1128 if (response_document) *response_document = NULL;
1129 if (response_node_list) *response_node_list = NULL;
1130 if (raw_response) *raw_response = NULL;
1132 url = _isds_astrcat(context->url, file);
1133 if (!url) return IE_NOMEM;
1135 /* Build SOAP request envelope */
1136 request_soap_doc = xmlNewDoc(BAD_CAST "1.0");
1137 if (!request_soap_doc) {
1138 isds_log_message(context, _("Could not build SOAP request document"));
1139 err = IE_ERROR;
1140 goto leave;
1142 request_soap_envelope = xmlNewNode(NULL, BAD_CAST "Envelope");
1143 if (!request_soap_envelope) {
1144 isds_log_message(context, _("Could not build SOAP request envelope"));
1145 err = IE_ERROR;
1146 goto leave;
1148 xmlDocSetRootElement(request_soap_doc, request_soap_envelope);
1149 /* Only this way we get namespace definition as @xmlns:soap,
1150 * otherwise we get namespace prefix without definition */
1151 soap_ns = xmlNewNs(request_soap_envelope, BAD_CAST SOAP_NS, NULL);
1152 if(!soap_ns) {
1153 isds_log_message(context, _("Could not create SOAP name space"));
1154 err = IE_ERROR;
1155 goto leave;
1157 xmlSetNs(request_soap_envelope, soap_ns);
1158 request_soap_body = xmlNewChild(request_soap_envelope, NULL,
1159 BAD_CAST "Body", NULL);
1160 if (!request_soap_body) {
1161 isds_log_message(context,
1162 _("Could not add Body to SOAP request envelope"));
1163 err = IE_ERROR;
1164 goto leave;
1167 /* Append request XML node set to SOAP body if request is not empty */
1168 /* XXX: Copy of request must be used, otherwise xmlFreeDoc(request_soap_doc)
1169 * would destroy this outer structure. */
1170 if (request) {
1171 xmlNodePtr request_copy = xmlCopyNodeList(request);
1172 if (!request_copy) {
1173 isds_log_message(context,
1174 _("Could not copy request content"));
1175 err = IE_ERROR;
1176 goto leave;
1178 if (!xmlAddChildList(request_soap_body, request_copy)) {
1179 xmlFreeNodeList(request_copy);
1180 isds_log_message(context,
1181 _("Could not add request content to SOAP "
1182 "request envelope"));
1183 err = IE_ERROR;
1184 goto leave;
1189 /* Serialize the SOAP request into HTTP request body */
1190 http_request = xmlBufferCreate();
1191 if (!http_request) {
1192 isds_log_message(context,
1193 _("Could not create xmlBuffer for HTTP request body"));
1194 err = IE_ERROR;
1195 goto leave;
1197 /* Last argument 1 means format the XML tree. This is pretty but it breaks
1198 * XML document transport as it adds text nodes (indentiation) between
1199 * elements. */
1200 save_ctx = xmlSaveToBuffer(http_request, "UTF-8", 0);
1201 if (!save_ctx) {
1202 isds_log_message(context,
1203 _("Could not create XML serializer"));
1204 err = IE_ERROR;
1205 goto leave;
1207 /* XXX: According LibXML documentation, this function does not return
1208 * meaningful value yet */
1209 xmlSaveDoc(save_ctx, request_soap_doc);
1210 if (-1 == xmlSaveFlush(save_ctx)) {
1211 isds_log_message(context,
1212 _("Could not serialize SOAP request to HTTP request body"));
1213 err = IE_ERROR;
1214 goto leave;
1217 if (context->otp_credentials != NULL)
1218 memset(&response_otp_headers, 0, sizeof(response_otp_headers));
1219 redirect:
1220 if (context->otp_credentials != NULL)
1221 auth_headers_free(&response_otp_headers);
1222 isds_log(ILF_SOAP, ILL_DEBUG,
1223 _("SOAP request to sent to %s:\n%.*s\nEnd of SOAP request\n"),
1224 url, http_request->use, http_request->content);
1226 err = http(context, url, 0, http_request->content, http_request->use,
1227 &http_response, &response_length,
1228 &mime_type, NULL, &http_code,
1229 (context->otp_credentials == NULL) ? NULL: &response_otp_headers);
1231 /* TODO: HTTP binding for SOAP prescribes non-200 HTTP return codes
1232 * to be processed too. */
1234 if (err) {
1235 goto leave;
1238 if (NULL != context->otp_credentials)
1239 context->otp_credentials->resolution = response_otp_headers.resolution;
1241 /* Check for HTTP return code */
1242 isds_log(ILF_SOAP, ILL_DEBUG, _("Server returned %ld HTTP code\n"),
1243 http_code);
1244 switch (http_code) {
1245 /* XXX: We must see which code is used for not permitted ISDS
1246 * operation like downloading message without proper user
1247 * permissions. In that case we should keep connection opened. */
1248 case 200:
1249 if (NULL != context->otp_credentials) {
1250 if (context->otp_credentials->resolution ==
1251 OTP_RESOLUTION_UNKNOWN)
1252 context->otp_credentials->resolution =
1253 OTP_RESOLUTION_SUCCESS;
1255 break;
1256 case 302:
1257 if (NULL != context->otp_credentials) {
1258 if (context->otp_credentials->resolution ==
1259 OTP_RESOLUTION_UNKNOWN)
1260 context->otp_credentials->resolution =
1261 OTP_RESOLUTION_SUCCESS;
1262 err = IE_PARTIAL_SUCCESS;
1263 isds_printf_message(context,
1264 _("Server redirects on <%s> because OTP authentication "
1265 "succeeded."),
1266 url);
1267 if (context->otp_credentials->otp_code != NULL &&
1268 response_otp_headers.redirect != NULL) {
1269 /* XXX: If OTP code is known, this must be second OTP phase, so
1270 * send final POST request and unset Basic authentication
1271 * from cURL context as cookie is used instead. */
1272 free(url);
1273 url = response_otp_headers.redirect;
1274 response_otp_headers.redirect = NULL;
1275 _isds_discard_credentials(context, 0);
1276 err = unset_http_authorization(context);
1277 if (err) {
1278 isds_log_message(context, _("Could not remove "
1279 "credentials from CURL handle."));
1280 goto leave;
1282 goto redirect;
1283 } else {
1284 /* XXX: Otherwise bail out to ask application for OTP code. */
1285 goto leave;
1287 } else {
1288 err = IE_HTTP;
1289 isds_printf_message(context,
1290 _("Code 302: Server redirects on <%s> request. "
1291 "Redirection is forbidden in stateless mode."),
1292 url);
1293 goto leave;
1295 break;
1296 case 401: /* ISDS server returns 401 even if Authorization
1297 presents. */
1298 case 403: /* HTTP/1.0 prescribes 403 if Authorization presents. */
1299 err = IE_NOT_LOGGED_IN;
1300 isds_log_message(context, _("Authentication failed"));
1301 goto leave;
1302 break;
1303 case 404:
1304 err = IE_HTTP;
1305 isds_printf_message(context,
1306 _("Code 404: Document (%s) not found on server"), url);
1307 goto leave;
1308 break;
1309 /* 500 should return standard SOAP message */
1312 /* Check for Content-Type: text/xml.
1313 * Do it after HTTP code check because 401 Unauthorized returns HTML web
1314 * page for browsers. */
1315 if (mime_type && strcmp(mime_type, "text/xml")
1316 && strcmp(mime_type, "application/soap+xml")
1317 && strcmp(mime_type, "application/xml")) {
1318 char *mime_type_locale = _isds_utf82locale(mime_type);
1319 isds_printf_message(context,
1320 _("%s: bad MIME type sent by server: %s"), url,
1321 mime_type_locale);
1322 free(mime_type_locale);
1323 err = IE_SOAP;
1324 goto leave;
1327 /* TODO: Convert returned body into XML default encoding */
1329 /* Parse the HTTP body as XML */
1330 response_soap_doc = xmlParseMemory(http_response, response_length);
1331 if (!response_soap_doc) {
1332 err = IE_XML;
1333 goto leave;
1336 xpath_ctx = xmlXPathNewContext(response_soap_doc);
1337 if (!xpath_ctx) {
1338 err = IE_ERROR;
1339 goto leave;
1342 if (_isds_register_namespaces(xpath_ctx, MESSAGE_NS_UNSIGNED)) {
1343 err = IE_ERROR;
1344 goto leave;
1347 if (_isds_sizet2int(response_length) >= 0) {
1348 isds_log(ILF_SOAP, ILL_DEBUG,
1349 _("SOAP response received:\n%.*s\nEnd of SOAP response\n"),
1350 _isds_sizet2int(response_length), http_response);
1353 /* Check for SOAP version */
1354 response_root = xmlDocGetRootElement(response_soap_doc);
1355 if (!response_root) {
1356 isds_log_message(context, "SOAP response has no root element");
1357 err = IE_SOAP;
1358 goto leave;
1360 if (xmlStrcmp(response_root->name, BAD_CAST "Envelope") ||
1361 xmlStrcmp(response_root->ns->href, BAD_CAST SOAP_NS)) {
1362 isds_log_message(context, "SOAP response is not SOAP 1.1 document");
1363 err = IE_SOAP;
1364 goto leave;
1367 /* Check for SOAP Headers */
1368 response_soap_headers = xmlXPathEvalExpression(
1369 BAD_CAST "/soap:Envelope/soap:Header/"
1370 "*[@soap:mustUnderstand/text() = true()]", xpath_ctx);
1371 if (!response_soap_headers) {
1372 err = IE_ERROR;
1373 goto leave;
1375 if (!xmlXPathNodeSetIsEmpty(response_soap_headers->nodesetval)) {
1376 isds_log_message(context,
1377 _("SOAP response requires unsupported feature"));
1378 /* TODO: log the headers
1379 * xmlChar *fragment = NULL;
1380 * fragment = xmlXPathCastNodeSetToSting(response_soap_headers->nodesetval);*/
1381 err = IE_NOTSUP;
1382 goto leave;
1385 /* Get SOAP Body */
1386 response_soap_body = xmlXPathEvalExpression(
1387 BAD_CAST "/soap:Envelope/soap:Body", xpath_ctx);
1388 if (!response_soap_body) {
1389 err = IE_ERROR;
1390 goto leave;
1392 if (xmlXPathNodeSetIsEmpty(response_soap_body->nodesetval)) {
1393 isds_log_message(context,
1394 _("SOAP response does not contain SOAP Body element"));
1395 err = IE_SOAP;
1396 goto leave;
1398 if (response_soap_body->nodesetval->nodeNr > 1) {
1399 isds_log_message(context,
1400 _("SOAP response has more than one Body element"));
1401 err = IE_SOAP;
1402 goto leave;
1405 /* Check for SOAP Fault */
1406 response_soap_fault = xmlXPathEvalExpression(
1407 BAD_CAST "/soap:Envelope/soap:Body/soap:Fault", xpath_ctx);
1408 if (!response_soap_fault) {
1409 err = IE_ERROR;
1410 goto leave;
1412 if (!xmlXPathNodeSetIsEmpty(response_soap_fault->nodesetval)) {
1413 /* Server signals Fault. Gather error message and croak. */
1414 /* XXX: Only first message is passed */
1415 char *message = NULL, *message_locale = NULL;
1416 xpath_ctx->node = response_soap_fault->nodesetval->nodeTab[0];
1417 xmlXPathFreeObject(response_soap_fault);
1418 /* XXX: faultstring and faultcode are in no name space according
1419 * ISDS specification */
1420 /* First more verbose faultstring */
1421 response_soap_fault = xmlXPathEvalExpression(
1422 BAD_CAST "faultstring[1]/text()", xpath_ctx);
1423 if (response_soap_fault &&
1424 !xmlXPathNodeSetIsEmpty(response_soap_fault->nodesetval)) {
1425 message = (char *)
1426 xmlXPathCastNodeSetToString(response_soap_fault->nodesetval);
1427 message_locale = _isds_utf82locale(message);
1429 /* If not available, try shorter faultcode */
1430 if (!message_locale) {
1431 free(message);
1432 xmlXPathFreeObject(response_soap_fault);
1433 response_soap_fault = xmlXPathEvalExpression(
1434 BAD_CAST "faultcode[1]/text()", xpath_ctx);
1435 if (response_soap_fault &&
1436 !xmlXPathNodeSetIsEmpty(response_soap_fault->nodesetval)) {
1437 message = (char *)
1438 xmlXPathCastNodeSetToString(
1439 response_soap_fault->nodesetval);
1440 message_locale = _isds_utf82locale(message);
1444 /* Croak */
1445 if (message_locale)
1446 isds_printf_message(context, _("SOAP response signals Fault: %s"),
1447 message_locale);
1448 else
1449 isds_log_message(context, _("SOAP response signals Fault"));
1451 free(message_locale);
1452 free(message);
1454 err = IE_SOAP;
1455 goto leave;
1459 /* Extract XML tree with ISDS response from SOAP envelope and return it.
1460 * XXX: response_soap_body lists only one Body element here. We need
1461 * children which may not exist (i.e. empty Body) or being more than one
1462 * (this is not the case of ISDS payload, but let's support generic SOAP).
1463 * XXX: We will return the XML document and children as a node list for
1464 * two reasons:
1465 * (1) We won't to do expensive xmlDocCopyNodeList(),
1466 * (2) Any node is unusable after calling xmlFreeDoc() on it's document
1467 * because the document holds a dictionary with identifiers. Caller always
1468 * can do xmlDocCopyNodeList() on a fresh document later. */
1469 if (NULL != response_document && NULL != response_node_list) {
1470 *response_document = response_soap_doc;
1471 *response_node_list =
1472 response_soap_body->nodesetval->nodeTab[0]->children;
1475 /* Save raw response */
1476 if (raw_response) {
1477 *raw_response = http_response;
1478 *raw_response_length = response_length;
1479 http_response = NULL;
1483 leave:
1484 xmlXPathFreeObject(response_soap_fault);
1485 xmlXPathFreeObject(response_soap_body);
1486 xmlXPathFreeObject(response_soap_headers);
1487 xmlXPathFreeContext(xpath_ctx);
1488 if (NULL == response_document || NULL == *response_document) {
1489 xmlFreeDoc(response_soap_doc);
1491 if (context->otp_credentials != NULL)
1492 auth_headers_free(&response_otp_headers);
1493 free(mime_type);
1494 free(http_response);
1495 xmlSaveClose(save_ctx);
1496 xmlBufferFree(http_request);
1497 xmlFreeDoc(request_soap_doc); /* recursive, frees request_body, soap_ns*/
1498 free(url);
1500 return err;
1504 /* Build new URL from current @context and template.
1505 * @context is context carrying an URL
1506 * @template is printf(3) format string. First argument is length of the base
1507 * URL found in @context, second argument is the base URL, third argument is
1508 * again the base URL.
1509 * XXX: We cannot use "$" formatting character because it's not in the ISO C99.
1510 * @new_url is newly allocated URL built from @template. Caller must free it.
1511 * Return IE_SUCCESS, or corresponding error code and @new_url will not be
1512 * allocated.
1513 * */
1514 _hidden isds_error _isds_build_url_from_context(struct isds_ctx *context,
1515 const char *template, char **new_url) {
1516 int length, slashes;
1518 if (NULL != new_url) *new_url = NULL;
1519 if (NULL == context) return IE_INVALID_CONTEXT;
1520 if (NULL == template) return IE_INVAL;
1521 if (NULL == new_url) return IE_INVAL;
1523 /* Find length of base URL from context URL */
1524 if (NULL == context->url) {
1525 isds_log_message(context, _("Base URL could not have been determined "
1526 "from context URL because there was no URL set in the "
1527 "context"));
1528 return IE_ERROR;
1530 for (length = 0, slashes = 0; context->url[length] != '\0'; length++) {
1531 if (context->url[length] == '/') slashes++;
1532 if (slashes == 3) break;
1534 if (slashes != 3) {
1535 isds_log_message(context, _("Base URL could not have been determined "
1536 "from context URL"));
1537 return IE_ERROR;
1539 length++;
1541 /* Build new URL */
1542 if (-1 == isds_asprintf(new_url, template, length, context->url,
1543 context->url))
1544 return IE_NOMEM;
1546 return IE_SUCCESS;
1550 /* Invalidate session cookie for otp authenticated @context */
1551 _hidden isds_error _isds_invalidate_otp_cookie(struct isds_ctx *context) {
1552 isds_error err;
1553 char *url = NULL;
1554 long http_code;
1555 void *response = NULL;
1556 size_t response_length;
1558 if (context == NULL || !context->otp) return IE_INVALID_CONTEXT;
1559 if (context->curl == NULL) return IE_CONNECTION_CLOSED;
1561 /* Build logout URL */
1562 /*"https://DOMAINNAME/as/processLogout?uri=https://DOMAINNAME/apps/DS/WEB_SERVICE_ENDPOINT"*/
1563 err = _isds_build_url_from_context(context,
1564 "%.*sas/processLogout?uri=%sDS/dz", &url);
1565 if (err) return err;
1567 /* Invalidate the cookie by GET request */
1568 err = http(context,
1569 url, 1,
1570 NULL, 0,
1571 &response, &response_length,
1572 NULL, NULL, &http_code,
1573 NULL);
1574 free(response);
1575 free(url);
1576 if (err) {
1577 /* long message set by http() */
1578 } else if (http_code != 200) {
1579 /* TODO: Specification does not define response for this request.
1580 * Especially it does not state whether direct 200 or 302 redirect is
1581 * sent. We need to check real implementation. */
1582 err = IE_ISDS;
1583 isds_printf_message(context, _("Cookie for OTP authenticated "
1584 "connection to <%s> could not been invalidated"),
1585 context->url);
1586 } else {
1587 isds_log(ILF_SEC, ILL_DEBUG, _("Cookie for OTP authenticated "
1588 "connection to <%s> has been invalidated.\n"),
1589 context->url);
1591 return err;
1595 /* LibXML functions:
1597 * void xmlInitParser(void)
1598 * Initialization function for the XML parser. This is not reentrant. Call
1599 * once before processing in case of use in multithreaded programs.
1601 * int xmlInitParserCtxt(xmlParserCtxtPtr ctxt)
1602 * Initialize a parser context
1604 * xmlDocPtr xmlCtxtReadDoc(xmlParserCtxtPtr ctxt, const xmlChar * cur,
1605 * const * char URL, const char * encoding, int options);
1606 * Parse in-memory NULL-terminated document @cur.
1608 * xmlDocPtr xmlParseMemory(const char * buffer, int size)
1609 * Parse an XML in-memory block and build a tree.
1611 * xmlParserCtxtPtr xmlCreateMemoryParserCtxt(const char * buffer, int
1612 * size);
1613 * Create a parser context for an XML in-memory document.
1615 * xmlParserCtxtPtr xmlCreateDocParserCtxt(const xmlChar * cur)
1616 * Creates a parser context for an XML in-memory document.
1618 * xmlDocPtr xmlCtxtReadMemory(xmlParserCtxtPtr ctxt,
1619 * const char * buffer, int size, const char * URL, const char * encoding,
1620 * int options)
1621 * Parse an XML in-memory document and build a tree. This reuses the existing
1622 * @ctxt parser context.
1624 * void xmlCleanupParser(void)
1625 * Cleanup function for the XML library. It tries to reclaim all parsing
1626 * related glob document related memory. Calling this function should not
1627 * prevent reusing the libr finished using the library or XML document built
1628 * with it.
1630 * void xmlClearParserCtxt(xmlParserCtxtPtr ctxt)
1631 * Clear (release owned resources) and reinitialize a parser context.
1633 * void xmlCtxtReset(xmlParserCtxtPtr ctxt)
1634 * Reset a parser context
1636 * void xmlFreeParserCtxt(xmlParserCtxtPtr ctxt)
1637 * Free all the memory used by a parser context. However the parsed document
1638 * in ctxt->myDoc is not freed.
1640 * void xmlFreeDoc(xmlDocPtr cur)
1641 * Free up all the structures used by a document, tree included.