iPXE
https.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2007 Michael Brown <mbrown@fensystems.co.uk>.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA.
18  *
19  * You can also choose to distribute this program under the terms of
20  * the Unmodified Binary Distribution Licence (as given in the file
21  * COPYING.UBDL), provided that you have satisfied its requirements.
22  */
23 
24 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
25 
26 /**
27  * @file
28  *
29  * Secure Hyper Text Transfer Protocol (HTTPS)
30  *
31  */
32 
33 #include <ipxe/open.h>
34 #include <ipxe/uri.h>
35 #include <ipxe/tls.h>
36 #include <ipxe/http.h>
37 #include <ipxe/features.h>
38 
40 
41 /**
42  * Add HTTPS filter
43  *
44  * @v conn HTTP connection
45  * @ret rc Return status code
46  */
47 static int https_filter ( struct http_connection *conn ) {
48 
49  return add_tls ( &conn->socket, conn->uri->host, NULL, NULL );
50 }
51 
52 /** HTTPS URI opener */
53 struct uri_opener https_uri_opener __uri_opener = {
54  .scheme = "https",
55  .open = http_open_uri,
56 };
57 
58 /** HTTP URI scheme */
59 struct http_scheme https_scheme __http_scheme = {
60  .name = "https",
61  .port = HTTPS_PORT,
62  .filter = https_filter,
63 };
Transport Layer Security Protocol.
#define FEATURE_PROTOCOL
Network protocols.
Definition: features.h:21
struct http_scheme https_scheme __http_scheme
HTTP URI scheme.
Definition: https.c:59
struct interface socket
Transport layer interface.
Definition: http.h:84
Uniform Resource Identifiers.
Hyper Text Transport Protocol.
struct uri_opener https_uri_opener __uri_opener
HTTPS URI opener.
Definition: https.c:53
const char * scheme
URI protocol name.
Definition: open.h:53
Feature list.
int http_open_uri(struct interface *xfer, struct uri *uri)
Open HTTP transaction for simple URI.
Definition: httpcore.c:1937
const char * name
Scheme name (e.g.
Definition: http.h:42
FEATURE(FEATURE_PROTOCOL, "HTTPS", DHCP_EB_FEATURE_HTTPS, 1)
Data transfer interface opening.
const char * host
Host name.
Definition: uri.h:76
#define HTTPS_PORT
HTTPS default port.
Definition: http.h:37
#define DHCP_EB_FEATURE_HTTPS
HTTPS protocol.
Definition: features.h:40
An HTTP URI scheme.
Definition: http.h:40
struct uri * uri
Connection URI.
Definition: http.h:80
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
static int https_filter(struct http_connection *conn)
Add HTTPS filter.
Definition: https.c:47
A URI opener.
Definition: open.h:47
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
An HTTP connection.
Definition: http.h:71
int add_tls(struct interface *xfer, const char *name, struct x509_root *root, struct private_key *key)
Add TLS on an interface.
Definition: tls.c:3816