-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSslProxyContextHandler.cs
200 lines (151 loc) · 8.01 KB
/
SslProxyContextHandler.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
// The Sisk Framework source code
// Copyright (c) 2024- PROJECT PRINCIPIUM and all Sisk contributors
//
// The code below is licensed under the MIT license as
// of the date of its publication, available at
//
// File name: SslProxyContextHandler.cs
// Repository: https://github.com/sisk-http/core
using System.Buffers;
using System.Diagnostics;
using System.Net.Sockets;
using System.Reflection;
using Sisk.Cadente;
using Sisk.Core.Http;
namespace Sisk.Ssl;
class SslProxyContextHandler : HttpHostHandler {
internal readonly static byte [] ChunkedEOF = "0\r\n\r\n"u8.ToArray ();
internal readonly static string [] UnnalowedProxiedHeaders = [ "Server", "Date", "Host", "Connection" ];
readonly SslProxy ProxyHost;
public SslProxyContextHandler ( SslProxy proxy ) {
ProxyHost = proxy;
}
public override Task OnClientConnectedAsync ( HttpHost host, HttpHostClient client ) {
client.State = new ProxyGateway ( ProxyHost.GatewayEndpoint );
return Task.CompletedTask;
}
public override Task OnClientDisconnectedAsync ( HttpHost host, HttpHostClient client ) {
(client.State as IDisposable)?.Dispose ();
return Task.CompletedTask;
}
public override async Task OnContextCreatedAsync ( HttpHost host, HttpHostContext context ) {
ProxyGateway state = (ProxyGateway) context.Client.State!;
CancellationTokenSource gatewayCancellation = new CancellationTokenSource ();
gatewayCancellation.CancelAfter ( ProxyHost.GatewayTimeout );
HttpMethod requestMethod = new HttpMethod ( context.Request.Method );
string requestPath = context.Request.Path;
string requestUri = $"http://{ProxyHost.GatewayEndpoint.Address}:{ProxyHost.GatewayEndpoint.Port}{requestPath}";
bool isWebsocketConnection = context.Request.Headers.Any ( c => c.Name.Equals ( HttpKnownHeaderNames.SecWebSocketKey, StringComparison.OrdinalIgnoreCase ) );
HttpRequestMessage proxyRequest = new HttpRequestMessage ( requestMethod, requestUri );
proxyRequest.Headers.Host = ProxyHost.GatewayHostname;
if (context.Request.ContentLength > 0) {
Stream requestStream = context.Request.GetRequestStream ();
proxyRequest.Content = new StreamContent ( requestStream );
}
for (int i = 0; i < context.Request.Headers.Length; i++) {
HttpHeader header = context.Request.Headers [ i ];
if (UnnalowedProxiedHeaders.Contains ( header.Name, StringComparer.OrdinalIgnoreCase )) {
continue;
}
else {
proxyRequest.Headers.TryAddWithoutValidation ( header.Name, header.Value );
}
}
if (isWebsocketConnection) {
proxyRequest.Headers.Connection.Add ( "Upgrade" );
}
if (ProxyHost.ProxyAuthorization != null) {
proxyRequest.Headers.TryAddWithoutValidation ( HttpKnownHeaderNames.ProxyAuthorization, ProxyHost.ProxyAuthorization );
}
HttpResponseMessage proxyResponse = await state.SendMessageAsync ( proxyRequest, gatewayCancellation.Token );
context.Response.StatusCode = (int) proxyResponse.StatusCode;
context.Response.StatusDescription = proxyResponse.ReasonPhrase ?? HttpStatusInformation.GetStatusCodeDescription ( proxyResponse.StatusCode );
IEnumerable<KeyValuePair<string, IEnumerable<string>>> proxyResponseHeaders =
[ .. proxyResponse.Headers, .. proxyResponse.Content.Headers ];
foreach (var header in proxyResponseHeaders) {
if (UnnalowedProxiedHeaders.Contains ( header.Key, StringComparer.OrdinalIgnoreCase ))
continue;
foreach (var headerValue in header.Value)
context.Response.Headers.Add ( new HttpHeader ( header.Key, headerValue ) );
}
Stream gatewayStream = ResolveRawResponseStream ( await proxyResponse.Content.ReadAsStreamAsync (), out bool isChunked );
if (isWebsocketConnection) {
context.Response.Headers.Add ( new HttpHeader ( HttpKnownHeaderNames.Connection, "Upgrade" ) );
Stream responseStream = context.Response.GetResponseStream ();
Task copyToProxy = CopyToAsyncUnchecked ( responseStream, gatewayStream, eof: null, gatewayCancellation.Token );
Task copyFromProxy = CopyToAsyncUnchecked ( gatewayStream, responseStream, eof: null, gatewayCancellation.Token );
await Task.WhenAny ( copyToProxy, copyFromProxy );
await gatewayCancellation.CancelAsync ();
;
}
else {
Stream responseStream = context.Response.GetResponseStream ();
byte []? eof = isChunked ? ChunkedEOF : null;
await CopyToAsyncUnchecked ( gatewayStream, responseStream, eof, gatewayCancellation.Token );
;
}
}
static async Task CopyToAsyncUnchecked ( Stream from, Stream to, byte []? eof, CancellationToken cancellationToken ) {
try {
if (!from.CanRead) {
if (to.CanWrite) {
throw new Exception ( "@to is not writable" );
}
throw new Exception ( "@from is not readable" );
}
const int DefaultCopySize = 81920;
Memory<byte> eofMemory = eof;
byte [] buffer = ArrayPool<byte>.Shared.Rent ( DefaultCopySize );
var bufferMemory = new Memory<byte> ( buffer );
try {
int bytesRead;
while ((bytesRead = await from.ReadAsync ( bufferMemory, cancellationToken ).ConfigureAwait ( false )) != 0) {
var bufferedResult = bufferMemory [ 0..bytesRead ];
await to.WriteAsync ( bufferedResult, cancellationToken ).ConfigureAwait ( false );
if (eof != null && bufferedResult [ Index.FromEnd ( eofMemory.Length ).. ].Span.SequenceEqual ( eofMemory.Span )) {
break;
}
}
}
finally {
ArrayPool<byte>.Shared.Return ( buffer );
}
}
catch (IOException) {
}
catch (SocketException) {
}
catch (OperationCanceledException) {
}
}
static FieldInfo? ResolveRawResponseStream__f_connection;
static FieldInfo? ResolveRawResponseStream__f_stream;
static Stream ResolveRawResponseStream ( Stream gatewayStream, out bool isChunked ) {
/*
The HttpClient places the response stream into a Stream to deserialize the chunked encoding
and retrieve the deserialized content.
The problem with this is that the proxy sends the transfer-encoding: chunked header and a
non-chunked response, which causes a deserialization issue.
The code below uses reflection to get the underlying NetworkStream of the connection between
the proxy and the gateway to send a raw response without data decompression,
to the proxy client.
*/
Type typeName = gatewayStream.GetType ();
if (typeName.FullName == "System.Net.Http.HttpConnection+ChunkedEncodingReadStream") {
ResolveRawResponseStream__f_connection ??= typeName.GetField ( "_connection", BindingFlags.NonPublic | BindingFlags.Instance );
Debug.Assert ( ResolveRawResponseStream__f_connection != null );
object? _connection = ResolveRawResponseStream__f_connection.GetValue ( gatewayStream );
Debug.Assert ( _connection != null );
ResolveRawResponseStream__f_stream ??= _connection.GetType ()?.GetField ( "_stream", BindingFlags.NonPublic | BindingFlags.Instance );
Debug.Assert ( ResolveRawResponseStream__f_stream != null );
object? stream = ResolveRawResponseStream__f_stream.GetValue ( _connection );
Debug.Assert ( stream != null );
isChunked = true;
return (Stream) stream;
}
else {
isChunked = false;
return gatewayStream;
}
}
}