-
Notifications
You must be signed in to change notification settings - Fork 654
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1243 from murgatroid99/grpc-js_proxy_support
grpc-js: Add HTTP CONNECT support, i.e. egress proxy support
- Loading branch information
Showing
3 changed files
with
204 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
/* | ||
* Copyright 2019 gRPC authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
import { URL, parse } from "url"; | ||
import { log } from "./logging"; | ||
import { LogVerbosity } from "./constants"; | ||
import { parseTarget } from "./resolver-dns"; | ||
import { Socket } from "net"; | ||
import * as http from 'http'; | ||
import * as logging from './logging'; | ||
import { SubchannelAddress, TcpSubchannelAddress, isTcpSubchannelAddress } from "./subchannel"; | ||
|
||
const TRACER_NAME = 'proxy'; | ||
|
||
function trace(text: string): void { | ||
logging.trace(LogVerbosity.DEBUG, TRACER_NAME, text); | ||
} | ||
|
||
interface ProxyInfo { | ||
address?: string; | ||
creds?: string; | ||
} | ||
|
||
function getProxyInfo(): ProxyInfo { | ||
let proxyEnv: string = ''; | ||
let envVar: string = ''; | ||
/* Prefer using 'grpc_proxy'. Fallback on 'http_proxy' if it is not set. | ||
* Also prefer using 'https_proxy' with fallback on 'http_proxy'. The | ||
* fallback behavior can be removed if there's a demand for it. | ||
*/ | ||
if (process.env.grpc_proxy) { | ||
envVar = 'grpc_proxy'; | ||
proxyEnv = process.env.grpc_proxy; | ||
} else if (process.env.https_proxy) { | ||
envVar = 'https_proxy'; | ||
proxyEnv = process.env.https_proxy; | ||
} else if (process.env.http_proxy) { | ||
envVar = 'http_proxy'; | ||
proxyEnv = process.env.http_proxy; | ||
} else { | ||
return {}; | ||
} | ||
let proxyUrl: URL; | ||
try { | ||
proxyUrl = new URL(proxyEnv); | ||
} catch (e) { | ||
log(LogVerbosity.INFO, `cannot parse value of "${envVar}" env var`); | ||
return {}; | ||
} | ||
if (proxyUrl.protocol !== 'http') { | ||
log(LogVerbosity.ERROR, `"${proxyUrl.protocol}" scheme not supported in proxy URI`); | ||
return {}; | ||
} | ||
let userCred: string | null = null; | ||
if (proxyUrl.username) { | ||
if (proxyUrl.password) { | ||
log(LogVerbosity.INFO, 'userinfo found in proxy URI'); | ||
userCred = `${proxyUrl.username}:${proxyUrl.password}`; | ||
} else { | ||
userCred = proxyUrl.username; | ||
} | ||
} | ||
const result: ProxyInfo = { | ||
address: proxyUrl.host | ||
}; | ||
if (userCred) { | ||
result.creds = userCred; | ||
} | ||
trace('Proxy server ' + result.address + ' set by environment variable ' + envVar); | ||
return result; | ||
} | ||
|
||
const PROXY_INFO = getProxyInfo(); | ||
|
||
function getNoProxyHostList(): string[] { | ||
/* Prefer using 'no_grpc_proxy'. Fallback on 'no_proxy' if it is not set. */ | ||
let noProxyStr: string | undefined = process.env.no_grpc_proxy; | ||
let envVar: string = 'no_grpc_proxy'; | ||
if (!noProxyStr) { | ||
noProxyStr = process.env.no_proxy; | ||
envVar = 'no_proxy'; | ||
} | ||
if (noProxyStr) { | ||
trace('No proxy server list set by environment variable ' + envVar); | ||
return noProxyStr.split(','); | ||
} else { | ||
return []; | ||
} | ||
} | ||
|
||
const NO_PROXY_HOSTS = getNoProxyHostList(); | ||
|
||
export function shouldUseProxy(target: string): boolean { | ||
if (!PROXY_INFO.address) { | ||
return false; | ||
} | ||
let serverHost: string; | ||
const parsedTarget = parseTarget(target); | ||
if (parsedTarget) { | ||
serverHost = parsedTarget.host; | ||
} else { | ||
return false; | ||
} | ||
for (const host of NO_PROXY_HOSTS) { | ||
if (host === serverHost) { | ||
trace('Not using proxy for target in no_proxy list: ' + target); | ||
return false; | ||
} | ||
} | ||
return true; | ||
} | ||
|
||
export function getProxiedConnection(target: string, subchannelAddress: SubchannelAddress): Promise<Socket> { | ||
if (!(PROXY_INFO.address && shouldUseProxy(target) && isTcpSubchannelAddress(subchannelAddress))) { | ||
return Promise.reject<Socket>(); | ||
} | ||
const subchannelAddressPathString = `${subchannelAddress.host}:${subchannelAddress.port}`; | ||
trace('Using proxy ' + PROXY_INFO.address + ' to connect to ' + target + ' at ' + subchannelAddress); | ||
const options: http.RequestOptions = { | ||
method: 'CONNECT', | ||
host: PROXY_INFO.address, | ||
path: subchannelAddressPathString | ||
}; | ||
if (PROXY_INFO.creds) { | ||
options.headers = { | ||
'Proxy-Authorization': 'Basic ' + Buffer.from(PROXY_INFO.creds).toString('base64') | ||
}; | ||
} | ||
return new Promise<Socket>((resolve, reject) => { | ||
const request = http.request(options); | ||
request.once('connect', (res, socket, head) => { | ||
request.removeAllListeners(); | ||
socket.removeAllListeners(); | ||
if (res.statusCode === http.STATUS_CODES.OK) { | ||
trace('Successfully connected to ' + subchannelAddress + ' through proxy ' + PROXY_INFO.address); | ||
resolve(socket); | ||
} else { | ||
trace('Failed to connect to ' + subchannelAddress + ' through proxy ' + PROXY_INFO.address); | ||
reject(); | ||
} | ||
}); | ||
request.once('error', (err) => { | ||
request.removeAllListeners(); | ||
trace('Failed to connect to proxy ' + PROXY_INFO.address); | ||
reject(); | ||
}); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters