mirror of
https://github.com/openssl/openssl.git
synced 2025-02-17 14:32:04 +08:00
HTTP client: fix use of OSSL_HTTP_adapt_proxy(), which is needed also in cmp.c
For this reason, export this function, which allows removing http_local.h Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15764)
This commit is contained in:
parent
eefdb8e013
commit
ab9d67efa4
10
apps/cmp.c
10
apps/cmp.c
@ -1765,8 +1765,7 @@ static int setup_client_ctx(OSSL_CMP_CTX *ctx, ENGINE *engine)
|
||||
int portnum, ssl;
|
||||
char server_buf[200] = { '\0' };
|
||||
char proxy_buf[200] = { '\0' };
|
||||
char *proxy_host = NULL;
|
||||
char *proxy_port_str = NULL;
|
||||
const char *proxy_host = NULL;
|
||||
|
||||
if (opt_server == NULL) {
|
||||
CMP_err("missing -server option");
|
||||
@ -1795,8 +1794,9 @@ static int setup_client_ctx(OSSL_CMP_CTX *ctx, ENGINE *engine)
|
||||
opt_tls_used ? "s" : "", host, port,
|
||||
*used_path == '/' ? used_path + 1 : used_path);
|
||||
|
||||
if (opt_proxy != NULL)
|
||||
(void)BIO_snprintf(proxy_buf, sizeof(proxy_buf), " via %s", opt_proxy);
|
||||
proxy_host = OSSL_HTTP_adapt_proxy(opt_proxy, opt_no_proxy, host, ssl);
|
||||
if (proxy_host != NULL)
|
||||
(void)BIO_snprintf(proxy_buf, sizeof(proxy_buf), " via %s", proxy_host);
|
||||
|
||||
if (!transform_opts())
|
||||
goto err;
|
||||
@ -1902,8 +1902,6 @@ static int setup_client_ctx(OSSL_CMP_CTX *ctx, ENGINE *engine)
|
||||
OPENSSL_free(host);
|
||||
OPENSSL_free(port);
|
||||
OPENSSL_free(path);
|
||||
OPENSSL_free(proxy_host);
|
||||
OPENSSL_free(proxy_port_str);
|
||||
return ret;
|
||||
oom:
|
||||
CMP_err("out of memory");
|
||||
|
@ -23,8 +23,6 @@
|
||||
#include "internal/sockets.h"
|
||||
#include "internal/cryptlib.h" /* for ossl_assert() */
|
||||
|
||||
#include "http_local.h"
|
||||
|
||||
#define HTTP_PREFIX "HTTP/"
|
||||
#define HTTP_VERSION_PATT "1." /* allow 1.x */
|
||||
#define HTTP_PREFIX_VERSION HTTP_PREFIX""HTTP_VERSION_PATT
|
||||
@ -897,7 +895,7 @@ OSSL_HTTP_REQ_CTX *OSSL_HTTP_open(const char *server, const char *port,
|
||||
port = NULL;
|
||||
if (port == NULL && strchr(server, ':') == NULL)
|
||||
port = use_ssl ? OSSL_HTTPS_PORT : OSSL_HTTP_PORT;
|
||||
proxy = ossl_http_adapt_proxy(proxy, no_proxy, server, use_ssl);
|
||||
proxy = OSSL_HTTP_adapt_proxy(proxy, no_proxy, server, use_ssl);
|
||||
if (proxy != NULL
|
||||
&& !OSSL_HTTP_parse_url(proxy, NULL /* use_ssl */, NULL /* user */,
|
||||
&proxy_host, &proxy_port, NULL /* num */,
|
||||
|
@ -15,8 +15,6 @@
|
||||
#include <openssl/err.h>
|
||||
#include "internal/cryptlib.h" /* for ossl_assert() */
|
||||
|
||||
#include "http_local.h"
|
||||
|
||||
static void init_pstring(char **pstr)
|
||||
{
|
||||
if (pstr != NULL) {
|
||||
@ -241,7 +239,7 @@ int OSSL_HTTP_parse_url(const char *url, int *pssl, char **puser, char **phost,
|
||||
}
|
||||
|
||||
/* Respect no_proxy, taking default value from environment variable(s) */
|
||||
int ossl_http_use_proxy(const char *no_proxy, const char *server)
|
||||
static int use_proxy(const char *no_proxy, const char *server)
|
||||
{
|
||||
size_t sl;
|
||||
const char *found = NULL;
|
||||
@ -269,7 +267,7 @@ int ossl_http_use_proxy(const char *no_proxy, const char *server)
|
||||
}
|
||||
|
||||
/* Take default value from environment variable(s), respect no_proxy */
|
||||
const char *ossl_http_adapt_proxy(const char *proxy, const char *no_proxy,
|
||||
const char *OSSL_HTTP_adapt_proxy(const char *proxy, const char *no_proxy,
|
||||
const char *server, int use_ssl)
|
||||
{
|
||||
/*
|
||||
@ -282,8 +280,7 @@ const char *ossl_http_adapt_proxy(const char *proxy, const char *no_proxy,
|
||||
proxy = getenv(use_ssl ? OPENSSL_HTTP_PROXY :
|
||||
OPENSSL_HTTPS_PROXY);
|
||||
|
||||
if (proxy == NULL || *proxy == '\0'
|
||||
|| !ossl_http_use_proxy(no_proxy, server))
|
||||
if (proxy == NULL || *proxy == '\0' || !use_proxy(no_proxy, server))
|
||||
return NULL;
|
||||
return proxy;
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
/*
|
||||
* Copyright 2007-2021 The OpenSSL Project Authors. All Rights Reserved.
|
||||
* Copyright Siemens AG 2018-2020
|
||||
*
|
||||
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
||||
* this file except in compliance with the License. You can obtain a copy
|
||||
* in the file LICENSE in the source distribution or at
|
||||
* https://www.openssl.org/source/license.html
|
||||
*/
|
||||
|
||||
#ifndef OSSL_CRYPTO_HTTP_LOCAL_H
|
||||
# define OSSL_CRYPTO_HTTP_LOCAL_H
|
||||
|
||||
int ossl_http_use_proxy(const char *no_proxy, const char *server);
|
||||
const char *ossl_http_adapt_proxy(const char *proxy, const char *no_proxy,
|
||||
const char *server, int use_ssl);
|
||||
|
||||
#endif /* !defined(OSSL_CRYPTO_HTTP_LOCAL_H) */
|
@ -9,7 +9,6 @@
|
||||
|
||||
#include <openssl/ocsp.h>
|
||||
#include <openssl/http.h>
|
||||
#include "../http/http_local.h"
|
||||
|
||||
#ifndef OPENSSL_NO_OCSP
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
=head1 NAME
|
||||
|
||||
OSSL_HTTP_adapt_proxy,
|
||||
OSSL_parse_url,
|
||||
OSSL_HTTP_parse_url,
|
||||
OCSP_parse_url
|
||||
@ -11,6 +12,9 @@ OCSP_parse_url
|
||||
|
||||
#include <openssl/http.h>
|
||||
|
||||
const char *OSSL_HTTP_adapt_proxy(const char *proxy, const char *no_proxy,
|
||||
const char *server, int use_ssl);
|
||||
|
||||
int OSSL_parse_url(const char *url, char **pscheme, char **puser, char **phost,
|
||||
char **pport, int *pport_num,
|
||||
char **ppath, char **pquery, char **pfrag);
|
||||
@ -28,6 +32,19 @@ L<openssl_user_macros(7)>:
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
OSSL_HTTP_adapt_proxy() takes an optional proxy hostname I<proxy>
|
||||
and returns it transformed according to the optional I<no_proxy> parameter,
|
||||
I<server>, I<use_ssl>, and the applicable environment variable, as follows.
|
||||
If I<proxy> is NULL, take any default value from the C<http_proxy>
|
||||
environment variable, or from C<https_proxy> if I<use_ssl> is nonzero.
|
||||
If this still does not yield a proxy hostname,
|
||||
take any further default value from the C<HTTP_PROXY>
|
||||
environment variable, or from C<HTTPS_PROXY> if I<use_ssl> is nonzero.
|
||||
If I<no_proxy> is NULL, take any default exclusion value from the C<no_proxy>
|
||||
environment variable, or else from C<NO_PROXY>.
|
||||
Return the determined proxy hostname unless the exclusion contains I<server>.
|
||||
Otherwise return NULL.
|
||||
|
||||
OSSL_parse_url() parses its input string I<url> as a URL of the form
|
||||
C<[scheme://][userinfo@]host[:port][/path][?query][#fragment]> and splits it up
|
||||
into scheme, userinfo, host, port, path, query, and fragment components.
|
||||
@ -61,6 +78,10 @@ OSSL_HTTP_parse_url(url, ssl, NULL, host, port, NULL, path, NULL, NULL).
|
||||
|
||||
=head1 RETURN VALUES
|
||||
|
||||
OSSL_HTTP_adapt_proxy() returns NULL if no proxy is to be used,
|
||||
otherwise a constant proxy hostname string,
|
||||
which is either the proxy name handed in or an environment variable value.
|
||||
|
||||
OSSL_parse_url(), OSSL_HTTP_parse_url(), and OCSP_parse_url()
|
||||
return 1 on success, 0 on error.
|
||||
|
||||
@ -70,6 +91,7 @@ L<OSSL_HTTP_transfer(3)>
|
||||
|
||||
=head1 HISTORY
|
||||
|
||||
OSSL_HTTP_adapt_proxy(),
|
||||
OSSL_parse_url() and OSSL_HTTP_parse_url() were added in OpenSSL 3.0.
|
||||
OCSP_parse_url() was deprecated in OpenSSL 3.0.
|
||||
|
||||
|
@ -100,6 +100,8 @@ int OSSL_parse_url(const char *url, char **pscheme, char **puser, char **phost,
|
||||
int OSSL_HTTP_parse_url(const char *url, int *pssl, char **puser, char **phost,
|
||||
char **pport, int *pport_num,
|
||||
char **ppath, char **pquery, char **pfrag);
|
||||
const char *OSSL_HTTP_adapt_proxy(const char *proxy, const char *no_proxy,
|
||||
const char *server, int use_ssl);
|
||||
|
||||
# ifdef __cplusplus
|
||||
}
|
||||
|
@ -4873,6 +4873,7 @@ BIO_socket_wait ? 3_0_0 EXIST::FUNCTION:SOCK
|
||||
BIO_wait ? 3_0_0 EXIST::FUNCTION:
|
||||
BIO_do_connect_retry ? 3_0_0 EXIST::FUNCTION:
|
||||
OSSL_parse_url ? 3_0_0 EXIST::FUNCTION:
|
||||
OSSL_HTTP_adapt_proxy ? 3_0_0 EXIST::FUNCTION:
|
||||
OSSL_HTTP_REQ_CTX_get_resp_len ? 3_0_0 EXIST::FUNCTION:
|
||||
OSSL_HTTP_REQ_CTX_set_expected ? 3_0_0 EXIST::FUNCTION:
|
||||
OSSL_HTTP_is_alive ? 3_0_0 EXIST::FUNCTION:
|
||||
|
Loading…
Reference in New Issue
Block a user