]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/cmp/cmp_http.c
Chunk 10 of CMP contribution to OpenSSL: CMP http client and related tests
[thirdparty/openssl.git] / crypto / cmp / cmp_http.c
CommitLineData
afe554c2
DDO
1/*
2 * Copyright 2007-2019 The OpenSSL Project Authors. All Rights Reserved.
3 * Copyright Nokia 2007-2019
4 * Copyright Siemens AG 2015-2019
5 *
6 * Licensed under the Apache License 2.0 (the "License"). You may not use
7 * this file except in compliance with the License. You can obtain a copy
8 * in the file LICENSE in the source distribution or at
9 * https://www.openssl.org/source/license.html
10 */
11
12#include <string.h>
13#include <stdio.h>
14
15#include <openssl/asn1t.h>
16#include <openssl/http.h>
17#include "internal/sockets.h"
18
19#include "openssl/cmp.h"
20#include "cmp_local.h"
21
22/* explicit #includes not strictly needed since implied by the above: */
23#include <ctype.h>
24#include <fcntl.h>
25#include <stdlib.h>
26#include <openssl/bio.h>
27#include <openssl/buffer.h>
28#include <openssl/cmp.h>
29#include <openssl/err.h>
30
31/*
32 * Send the PKIMessage req and on success return the response, else NULL.
33 * Any previous error queue entries will likely be removed by ERR_clear_error().
34 */
35OSSL_CMP_MSG *OSSL_CMP_MSG_http_perform(OSSL_CMP_CTX *ctx,
36 const OSSL_CMP_MSG *req)
37{
38 char server_port[32];
39 STACK_OF(CONF_VALUE) *headers = NULL;
40 OSSL_CMP_MSG *res = NULL;
41 const char *const content_type_pkix = "application/pkixcmp";
42
43 if (ctx == NULL || req == NULL
44 || ctx->serverName == NULL || ctx->serverPort == 0) {
45 CMPerr(0, CMP_R_NULL_ARGUMENT);
46 return 0;
47 }
48
49 if (!X509V3_add_value("Pragma", "no-cache", &headers))
50 return NULL;
51
52 BIO_snprintf(server_port, sizeof(server_port), "%d", ctx->serverPort);
53
54 res = (OSSL_CMP_MSG *)
55 OSSL_HTTP_post_asn1(ctx->serverName, server_port, ctx->serverPath,
56 OSSL_CMP_CTX_get_http_cb_arg(ctx) != NULL,
57 ctx->proxy, ctx->no_proxy, NULL, NULL,
58 ctx->http_cb, OSSL_CMP_CTX_get_http_cb_arg(ctx),
59 headers, content_type_pkix,
60 (ASN1_VALUE *)req, ASN1_ITEM_rptr(OSSL_CMP_MSG),
61 0, 0, ctx->msg_timeout, content_type_pkix,
62 ASN1_ITEM_rptr(OSSL_CMP_MSG));
63
64 sk_CONF_VALUE_pop_free(headers, X509V3_conf_free);
65 return res;
66}