v / vlib / net / http / backend_vschannel_windows.c.v
93 lines · 84 sloc · 4.2 KB · 5d739b1b1ac7ec2625d864cbb17d758c6c92f8bc
Raw
1// Copyright (c) 2019-2024 Alexander Medvednikov. All rights reserved.
2// Use of this source code is governed by an MIT license
3// that can be found in the LICENSE file.
4module http
5
6#flag windows -I @VEXEROOT/thirdparty/vschannel
7#flag -l ws2_32 -l crypt32 -l secur32 -l user32
8#include "vschannel.c"
9// Win7 needs TLS 1.2 selected before Schannel credentials are acquired.
10#define vschannel_use_tls12_client_protocol() (protocol = SP_PROT_TLS1_2_CLIENT)
11
12pub struct C.TlsContext {}
13
14const C.vsc_init_resp_buff_size int
15
16fn C.new_tls_context() C.TlsContext
17fn C.vschannel_use_tls12_client_protocol()
18fn C.vschannel_init(tls_ctx &C.TlsContext, validate_server_certificate C.BOOL)
19fn C.vschannel_last_error(tls_ctx &C.TlsContext) int
20fn C.vschannel_alpn_supported() int
21
22// vschannel_request_on_open mirrors C.request (declared in builtin/cfns.c.v) but
23// runs over an already-open connection. See thirdparty/vschannel/vschannel.c.
24fn C.vschannel_request_on_open(&C.TlsContext, &u8, u32, &&u8, fn (voidptr, isize) voidptr) i32
25
26fn vschannel_ssl_do(req &Request, port int, method Method, host_name string, path string, data string, header Header) !Response {
27 // When HTTP/2 is enabled (the default for https), advertise ALPN `h2` and,
28 // if the server selects it, speak HTTP/2. Otherwise fall back to HTTP/1.1
29 // over the same connection (see vschannel_h2_do). When HTTP/2 is opted out
30 // of — or this Windows version's SChannel predates client-side ALPN
31 // (pre-8.1), where injecting the ALPN buffer can fail the handshake
32 // outright — use the original one-shot HTTP/1.1 path with no ALPN.
33 if req.enable_http2 && C.vschannel_alpn_supported() != 0 {
34 return vschannel_h2_do(req, port, method, host_name, path, data, header)!
35 }
36 return vschannel_h1_do(req, port, method, host_name, path, data, header)!
37}
38
39// vschannel_h1_do is the original one-shot HTTP/1.1 SChannel request path:
40// connect, handshake, send the whole request, read the whole response,
41// disconnect. It is used when HTTP/2 is disabled.
42fn vschannel_h1_do(req &Request, port int, method Method, host_name string, path string, data string, header Header) !Response {
43 mut ctx := C.new_tls_context()
44 C.vschannel_use_tls12_client_protocol()
45 C.vschannel_init(&ctx, C.BOOL(if req.validate { 1 } else { 0 }))
46 mut buff := unsafe { malloc_noscan(C.vsc_init_resp_buff_size) }
47 addr := host_name
48 sdata := req.build_request_headers_with(method, host_name, port, path, data, header)
49 $if trace_http_request ? {
50 eprintln('> ${sdata}')
51 }
52 length := C.request(&ctx, port, addr.to_wide(), sdata.str, sdata.len, &buff, v_realloc)
53 err_code := C.vschannel_last_error(&ctx)
54 C.vschannel_cleanup(&ctx)
55 return req.vschannel_finish_response(buff, length, err_code)!
56}
57
58// vschannel_h1_on_open runs the one-shot HTTP/1.1 request over a connection that
59// vschannel_h2_connect() already opened, used as the fallback when the server
60// did not negotiate `h2`. It consumes (and cleans up) `ctx`.
61fn (req &Request) vschannel_h1_on_open(ctx &C.TlsContext, method Method, host_name string, port int, path string, data string, header Header) !Response {
62 mut buff := unsafe { malloc_noscan(C.vsc_init_resp_buff_size) }
63 sdata := req.build_request_headers_with(method, host_name, port, path, data, header)
64 $if trace_http_request ? {
65 eprintln('> ${sdata}')
66 }
67 length := C.vschannel_request_on_open(ctx, sdata.str, sdata.len, &buff, v_realloc)
68 err_code := C.vschannel_last_error(ctx)
69 C.vschannel_cleanup(ctx)
70 return req.vschannel_finish_response(buff, length, err_code)!
71}
72
73// vschannel_finish_response turns the raw response buffer produced by the C
74// request paths into a parsed Response, firing the progress/finish callbacks.
75fn (req &Request) vschannel_finish_response(buff &u8, length int, err_code int) !Response {
76 if length <= 0 {
77 if err_code != 0 {
78 return vschannel_request_error(err_code)
79 }
80 return error('http: vschannel request failed')
81 }
82 response_text := unsafe { buff.vstring_with_len(length) }
83 if req.on_progress != unsafe { nil } {
84 req.on_progress(req, unsafe { buff.vbytes(length) }, u64(length))!
85 }
86 $if trace_http_response ? {
87 eprintln('< ${response_text}')
88 }
89 if req.on_finish != unsafe { nil } {
90 req.on_finish(req, u64(response_text.len))!
91 }
92 return vschannel_parse_response(response_text, err_code)
93}
94