Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add enableUnixSockets option #2062

Merged
merged 20 commits into from Jul 21, 2022
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
29 changes: 29 additions & 0 deletions documentation/2-options.md
Expand Up @@ -918,6 +918,35 @@ By default, requests will not use [method rewriting](https://datatracker.ietf.or

For example, when sending a `POST` request and receiving a `302`, it will resend the body to the new location using the same HTTP method (`POST` in this case). To rewrite the request as `GET`, set this option to `true`.

### `enableUnixSockets`

**Type: `boolean`**\
**Default: `true`**

sindresorhus marked this conversation as resolved.
Show resolved Hide resolved
When it is enabled, requests can also be sent via [UNIX Domain Sockets](https://serverfault.com/questions/124517/what-is-the-difference-between-unix-sockets-and-tcp-ip-sockets).\
sindresorhus marked this conversation as resolved.
Show resolved Hide resolved
Use the following URL scheme: `PROTOCOL://unix:SOCKET:PATH`

By default it is enabled, so make sure you do your own URL sanitizing if you accept untrusted user input for the URL.
szmarczak marked this conversation as resolved.
Show resolved Hide resolved

- `PROTOCOL` - `http` or `https`
- `SOCKET` - Absolute path to a UNIX domain socket, for example: `/var/run/docker.sock`
- `PATH` - Request path, for example: `/v2/keys`

```js
import got from 'got';

await got('http://unix:/var/run/docker.sock:/containers/json');

// Or without protocol (HTTP by default)
await got('unix:/var/run/docker.sock:/containers/json');
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing the actual option.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we actually include the option in all examples? This way we'd encourage users to explicitly enable/disable UNIX sockets, which will ease transitioning to a new major release.


// Disable Unix sockets
const gotUnixSocketsDisabled = got.extend({enableUnixSockets: false});

// Error!
gotUnixSocketsDisabled('http://unix:/var/run/docker.sock:/containers/json')
sindresorhus marked this conversation as resolved.
Show resolved Hide resolved
```

## Methods

### `options.merge(other: Options | OptionsInit)`
Expand Down
2 changes: 1 addition & 1 deletion documentation/migration-guides/axios.md
Expand Up @@ -24,7 +24,7 @@ We deeply care about readability, so we renamed these options:

- `httpAgent` → [`agent.http`](../2-options.md#agent)
- `httpsAgent` → [`agent.https`](../2-options.md#agent)
- `socketPath` → [`url`](../tips.md#unix)
- `socketPath` → [`url`](../2-options.md#enableunixsockets)
- `responseEncoding` → [`encoding`](../2-options.md#encoding)
- `auth.username` → [`username`](../2-options.md#username)
- `auth.password` → [`password`](../2-options.md#password)
Expand Down
2 changes: 1 addition & 1 deletion documentation/migration-guides/request.md
Expand Up @@ -46,7 +46,7 @@ These Got options are the same as with Request:
- [`localAddress`](../2-options.md#localaddress)
- [`headers`](../2-options.md#headers)
- [`createConnection`](../2-options.md#createconnection)
- [UNIX sockets](../tips.md#unixsockets): `http://unix:SOCKET:PATH`
- [UNIX sockets](../2-options.md#enableunixsockets): `http://unix:SOCKET:PATH`

The `time` option does not exist, assume [it's always true](../6-timeout.md).

Expand Down
16 changes: 1 addition & 15 deletions documentation/tips.md
Expand Up @@ -92,21 +92,7 @@ for await (const commitData of pagination) {
<a name="unix"></a>
szmarczak marked this conversation as resolved.
Show resolved Hide resolved
### UNIX Domain Sockets

Requests can also be sent via [UNIX Domain Sockets](https://serverfault.com/questions/124517/what-is-the-difference-between-unix-sockets-and-tcp-ip-sockets).\
Use the following URL scheme: `PROTOCOL://unix:SOCKET:PATH`

- `PROTOCOL` - `http` or `https`
- `SOCKET` - Absolute path to a unix domain socket, for example: `/var/run/docker.sock`
- `PATH` - Request path, for example: `/v2/keys`

```js
import got from 'got';

await got('http://unix:/var/run/docker.sock:/containers/json');

// Or without protocol (HTTP by default)
await got('unix:/var/run/docker.sock:/containers/json');
```
See the [`enableUnixSockets` option](./2-options.md#enableunixsockets).

### Testing

Expand Down
2 changes: 1 addition & 1 deletion readme.md
Expand Up @@ -202,7 +202,7 @@ For advanced JSON usage, check out the [`parseJson`](documentation/2-options.md#

- [x] [RFC compliant caching](documentation/cache.md)
- [x] [Proxy support](documentation/tips.md#proxying)
- [x] [Unix Domain Sockets](documentation/tips.md#unix)
- [x] [Unix Domain Sockets](documentation/2-options.md#enableunixsockets)

#### Integration

Expand Down
15 changes: 13 additions & 2 deletions source/core/options.ts
Expand Up @@ -827,6 +827,7 @@ const defaultInternals: Options['_internals'] = {
},
setHost: true,
maxHeaderSize: undefined,
enableUnixSockets: true,
};

const cloneInternals = (internals: typeof defaultInternals) => {
Expand Down Expand Up @@ -1401,7 +1402,7 @@ export default class Options {
this._internals.url = url;
decodeURI(urlString);

if (url.protocol === 'unix:') {
if (this._internals.enableUnixSockets && url.protocol === 'unix:') {
szmarczak marked this conversation as resolved.
Show resolved Hide resolved
url.href = `http://unix${url.pathname}${url.search}`;
}

Expand All @@ -1427,7 +1428,7 @@ export default class Options {
this._internals.searchParams = undefined;
}

if (url.hostname === 'unix') {
if (this._internals.enableUnixSockets && url.hostname === 'unix') {
szmarczak marked this conversation as resolved.
Show resolved Hide resolved
const matches = /(?<socketPath>.+?):(?<path>.+)/.exec(`${url.pathname}${url.search}`);

if (matches?.groups) {
Expand Down Expand Up @@ -2345,6 +2346,16 @@ export default class Options {
this._internals.maxHeaderSize = value;
}

get enableUnixSockets() {
return this._internals.enableUnixSockets;
}

set enableUnixSockets(value: boolean) {
assert.boolean(value);

this._internals.enableUnixSockets = value;
}

// eslint-disable-next-line @typescript-eslint/naming-convention
toJSON() {
return {...this._internals};
Expand Down
23 changes: 22 additions & 1 deletion test/redirects.ts
Expand Up @@ -42,10 +42,12 @@ const unixHostname: Handler = (_request, response) => {
response.end();
};

test('cannot redirect to unix protocol', withServer, async (t, server, got) => {
test('cannot redirect to UNIX protocol when UNIX sockets are enabled', withServer, async (t, server, got) => {
server.get('/protocol', unixProtocol);
server.get('/hostname', unixHostname);

t.true(got.defaults.options.enableUnixSockets);

await t.throwsAsync(got('protocol'), {
message: 'Cannot redirect to UNIX socket',
instanceOf: RequestError,
Expand All @@ -57,6 +59,25 @@ test('cannot redirect to unix protocol', withServer, async (t, server, got) => {
});
});

test('cannot redirect to UNIX protocol when UNIX sockets are not enabled', withServer, async (t, server, got) => {
server.get('/protocol', unixProtocol);
server.get('/hostname', unixHostname);

const gotUnixSocketsDisabled = got.extend({enableUnixSockets: false});

t.false(gotUnixSocketsDisabled.defaults.options.enableUnixSockets);

await t.throwsAsync(gotUnixSocketsDisabled('protocol'), {
message: 'Cannot redirect to UNIX socket',
instanceOf: RequestError,
});

await t.throwsAsync(gotUnixSocketsDisabled('hostname'), {
message: 'Cannot redirect to UNIX socket',
instanceOf: RequestError,
});
});

test('follows redirect', withServer, async (t, server, got) => {
server.get('/', reachedHandler);
server.get('/finite', finiteHandler);
Expand Down
28 changes: 28 additions & 0 deletions test/unix-socket.ts
Expand Up @@ -68,4 +68,32 @@ if (process.platform !== 'win32') {
const url = format('http://unix:%s:%s', server.socketPath, '/');
t.is((await got(url)).body, 'ok');
});

test('`unix:` fails when UNIX sockets are not enabled', async t => {
const gotUnixSocketsDisabled = got.extend({enableUnixSockets: false});

t.false(gotUnixSocketsDisabled.defaults.options.enableUnixSockets);
Comment on lines +73 to +75
Copy link
Collaborator

@szmarczak szmarczak Jul 21, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is quite useless. You can just call got('unix:', {enableUnixSockets: false}) which does the same.

await t.throwsAsync(
gotUnixSocketsDisabled('unix:'),
{
code: 'ERR_UNSUPPORTED_PROTOCOL',
},
);
});

test('`http://unix:/` fails when UNIX sockets are not enabled', async t => {
const gotUnixSocketsDisabled = got.extend({enableUnixSockets: false});

t.false(gotUnixSocketsDisabled.defaults.options.enableUnixSockets);

try {
await got('http://unix:');
} catch (error: any) {
t.regex(error.code, /ENOTFOUND|EAI_AGAIN/);
szmarczak marked this conversation as resolved.
Show resolved Hide resolved
return;
}

// Fail if no error is thrown
t.fail();
});
szmarczak marked this conversation as resolved.
Show resolved Hide resolved
}