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

feat(NODE-6289): allow valid srv hostnames with less than 3 parts #4197

Merged
merged 24 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
73ca011
drivers-2922 downstream changes first pass
aditi-khare-mongoDB Aug 14, 2024
ad151f7
temp commit
aditi-khare-mongoDB Aug 19, 2024
15dc8ee
added more prose tests
aditi-khare-mongoDB Sep 5, 2024
586f7c0
wording fix
aditi-khare-mongoDB Sep 5, 2024
36b0b49
Merge branch 'main' into uri-validate-less
aditi-khare-mongoDB Sep 5, 2024
bea037e
remove stray comment
aditi-khare-mongoDB Sep 5, 2024
ae79ac5
fix up
aditi-khare-mongoDB Sep 5, 2024
b2f843e
add back in comment
aditi-khare-mongoDB Sep 5, 2024
154e2ad
fix failing unit tests
aditi-khare-mongoDB Sep 5, 2024
1059175
Merge branch 'main' into uri-validate-less
aditi-khare-mongoDB Sep 11, 2024
d1209df
Merge branch 'main' into uri-validate-less
aditi-khare-mongoDB Sep 17, 2024
9dd438e
requested changes 1
aditi-khare-mongoDB Sep 19, 2024
f680380
requested changes + review from drivers ticket updates
aditi-khare-mongoDB Sep 24, 2024
4d3efd8
fix failing tests
aditi-khare-mongoDB Sep 25, 2024
062c139
fix failing tests 2
aditi-khare-mongoDB Sep 25, 2024
a3b489c
Merge branch 'main' into uri-validate-less
aditi-khare-mongoDB Sep 25, 2024
7895835
await close
aditi-khare-mongoDB Sep 26, 2024
4879b78
Merge branch 'main' into uri-validate-less
aditi-khare-mongoDB Sep 26, 2024
79f41e4
ready for rereivew
aditi-khare-mongoDB Oct 8, 2024
eafaf61
ready for rereivew
aditi-khare-mongoDB Oct 8, 2024
1de28de
Merge branch 'main' into uri-validate-less
aditi-khare-mongoDB Oct 8, 2024
ec63d53
add in comments of prose tests
aditi-khare-mongoDB Oct 14, 2024
6ae4230
Merge branch 'main' into uri-validate-less
aditi-khare-mongoDB Oct 14, 2024
00e235e
Merge branch 'main' into uri-validate-less
W-A-James Oct 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions src/connection_string.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ import { ReadPreference, type ReadPreferenceMode } from './read_preference';
import { ServerMonitoringMode } from './sdam/monitor';
import type { TagSet } from './sdam/server_description';
import {
checkParentDomainMatch,
DEFAULT_PK_FACTORY,
emitWarning,
HostAddress,
isRecord,
matchesParentDomain,
parseInteger,
setDifference,
squashError
Expand All @@ -64,11 +64,6 @@ export async function resolveSRVRecord(options: MongoOptions): Promise<HostAddre
throw new MongoAPIError('Option "srvHost" must not be empty');
}

if (options.srvHost.split('.').length < 3) {
// TODO(NODE-3484): Replace with MongoConnectionStringError
throw new MongoAPIError('URI must include hostname, domain name, and tld');
}

// Asynchronously start TXT resolution so that we do not have to wait until
// the SRV record is resolved before starting a second DNS query.
const lookupAddress = options.srvHost;
Expand All @@ -86,9 +81,7 @@ export async function resolveSRVRecord(options: MongoOptions): Promise<HostAddre
}

for (const { name } of addresses) {
if (!matchesParentDomain(name, lookupAddress)) {
throw new MongoAPIError('Server record does not share hostname with parent URI');
}
checkParentDomainMatch(name, lookupAddress);
}

const hostAddresses = addresses.map(r => HostAddress.fromString(`${r.name}:${r.port ?? 27017}`));
Expand Down
7 changes: 5 additions & 2 deletions src/sdam/srv_polling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { clearTimeout, setTimeout } from 'timers';

import { MongoRuntimeError } from '../error';
import { TypedEventEmitter } from '../mongo_types';
import { HostAddress, matchesParentDomain, squashError } from '../utils';
import { checkParentDomainMatch, HostAddress, squashError } from '../utils';

/**
* @internal
Expand Down Expand Up @@ -127,8 +127,11 @@ export class SrvPoller extends TypedEventEmitter<SrvPollerEvents> {

const finalAddresses: dns.SrvRecord[] = [];
for (const record of srvRecords) {
if (matchesParentDomain(record.name, this.srvHost)) {
try {
dariakp marked this conversation as resolved.
Show resolved Hide resolved
checkParentDomainMatch(record.name, this.srvHost);
finalAddresses.push(record);
} catch (error) {
squashError(error);
}
}

Expand Down
32 changes: 25 additions & 7 deletions src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import type { FindCursor } from './cursor/find_cursor';
import type { Db } from './db';
import {
type AnyError,
MongoAPIError,
MongoCompatibilityError,
MongoInvalidArgumentError,
MongoNetworkTimeoutError,
Expand Down Expand Up @@ -1142,29 +1143,46 @@ export function parseUnsignedInteger(value: unknown): number | null {
}

/**
* Determines whether a provided address matches the provided parent domain.
* This function throws a MongoAPIError in the event that either of the following is true:
* * If the provided address domain does not match the provided parent domain
* * If the parent domain contains less than three `.` separated parts and the provided address does not contain at least one more domain level than its parent
*
* If a DNS server were to become compromised SRV records would still need to
* advertise addresses that are under the same domain as the srvHost.
*
* @param address - The address to check against a domain
* @param srvHost - The domain to check the provided address against
* @returns Whether the provided address matches the parent domain
* @returns void
*/
export function matchesParentDomain(address: string, srvHost: string): boolean {
export function checkParentDomainMatch(address: string, srvHost: string): void {
// Remove trailing dot if exists on either the resolved address or the srv hostname
const normalizedAddress = address.endsWith('.') ? address.slice(0, address.length - 1) : address;
const normalizedSrvHost = srvHost.endsWith('.') ? srvHost.slice(0, srvHost.length - 1) : srvHost;

const allCharacterBeforeFirstDot = /^.*?\./;
const srvIsLessThanThreeParts = srvHost.split('.').length < 3;
W-A-James marked this conversation as resolved.
Show resolved Hide resolved
// Remove all characters before first dot
// Add leading dot back to string so
// an srvHostDomain = '.trusted.site'
// will not satisfy an addressDomain that endsWith '.fake-trusted.site'
const addressDomain = `.${normalizedAddress.replace(allCharacterBeforeFirstDot, '')}`;
const srvHostDomain = `.${normalizedSrvHost.replace(allCharacterBeforeFirstDot, '')}`;

return addressDomain.endsWith(srvHostDomain);
const addressDomain = srvIsLessThanThreeParts
? normalizedAddress
: `.${normalizedAddress.replace(allCharacterBeforeFirstDot, '')}`;
const srvHostDomain = srvIsLessThanThreeParts
? normalizedSrvHost
: `.${normalizedSrvHost.replace(allCharacterBeforeFirstDot, '')}`;

if (!addressDomain.endsWith(srvHostDomain)) {
// TODO(NODE-3484): Replace with MongoConnectionStringError
throw new MongoAPIError('Server record does not share hostname with parent URI');
}
if (
srvIsLessThanThreeParts &&
normalizedAddress.split('.').length <= normalizedSrvHost.split('.').length
) {
// TODO(NODE-3484): Replace with MongoConnectionStringError
throw new MongoAPIError('Server record does not have least one more domain than parent URI');
dariakp marked this conversation as resolved.
Show resolved Hide resolved
}
}

interface RequestOptions {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,186 @@
import { expect } from 'chai';
import * as dns from 'dns';
import * as sinon from 'sinon';

import { MongoAPIError, Server, ServerDescription, Topology } from '../../mongodb';
import { topologyWithPlaceholderClient } from '../../tools/utils';

describe(
'Initial DNS Seedlist Discovery (Prose Tests)',
{ requires: { topology: 'single' } },
W-A-James marked this conversation as resolved.
Show resolved Hide resolved
() => {
context('When running validation on an SRV string before DNS resolution', function () {
beforeEach(async function () {
// this fn stubs DNS resolution to always pass - so we are only checking pre-DNS validation

sinon.stub(dns.promises, 'resolveSrv').callsFake(async () => {
return [
{
name: 'resolved.mongodb.localhost',
port: 27017,
weight: 0,
priority: 0
}
];
});

sinon.stub(dns.promises, 'resolveTxt').callsFake(async () => {
throw { code: 'ENODATA' };
});

sinon.stub(Topology.prototype, 'selectServer').callsFake(async () => {
return new Server(
topologyWithPlaceholderClient([], {} as any),
new ServerDescription('a:1'),
{} as any
);
});
});

afterEach(async function () {
sinon.restore();
});

it('do not error on an SRV because it has one domain level', async function () {
W-A-James marked this conversation as resolved.
Show resolved Hide resolved
const client = await this.configuration.newClient('mongodb+srv://localhost', {});
client.connect();
client.close();
});

it('do not error on an SRV because it has two domain levels', async function () {
W-A-James marked this conversation as resolved.
Show resolved Hide resolved
const client = await this.configuration.newClient('mongodb+srv://mongodb.localhost', {});
client.connect();
client.close();
});
});

context(
'When given a host from DNS resolution that does NOT end with the original SRVs domain name',
W-A-James marked this conversation as resolved.
Show resolved Hide resolved
function () {
beforeEach(async function () {
sinon.stub(dns.promises, 'resolveTxt').callsFake(async () => {
throw { code: 'ENODATA' };
});
});

afterEach(async function () {
sinon.restore();
});

it('an SRV with one domain level causes a runtime error', async function () {
sinon.stub(dns.promises, 'resolveSrv').callsFake(async () => {
return [
{
name: 'localhost.mongodb', // this string contains the SRV but does not end with it
port: 27017,
weight: 0,
priority: 0
}
];
});
const err = await this.configuration
.newClient('mongodb+srv://localhost', {})
.connect()
.catch(e => e);
expect(err).to.be.instanceOf(MongoAPIError);
expect(err.message).to.equal('Server record does not share hostname with parent URI');
});

it('an SRV with two domain levels causes a runtime error', async function () {
sinon.stub(dns.promises, 'resolveSrv').callsFake(async () => {
return [
{
name: 'evil.localhost', // this string only ends with part of the domain, not all of it!
port: 27017,
weight: 0,
priority: 0
}
];
});
const err = await this.configuration
.newClient('mongodb+srv://mongodb.localhost', {})
.connect()
.catch(e => e);
expect(err).to.be.instanceOf(MongoAPIError);
expect(err.message).to.equal('Server record does not share hostname with parent URI');
});

it('an SRV with three or more domain levels causes a runtime error', async function () {
sinon.stub(dns.promises, 'resolveSrv').callsFake(async () => {
return [
{
name: 'blogs.evil.co.uk',
port: 27017,
weight: 0,
priority: 0
}
];
});
const err = await this.configuration
.newClient('mongodb+srv://blogs.mongodb.com', {})
.connect()
.catch(e => e);
expect(err).to.be.instanceOf(MongoAPIError);
expect(err.message).to.equal('Server record does not share hostname with parent URI');
});
}
);

context(
'When given a host from DNS resolution that is identical to the original SRVs hostname',
function () {
beforeEach(async function () {
sinon.stub(dns.promises, 'resolveTxt').callsFake(async () => {
throw { code: 'ENODATA' };
});
});

afterEach(async function () {
sinon.restore();
});

it('an SRV with one domain level causes a runtime error', async function () {
sinon.stub(dns.promises, 'resolveSrv').callsFake(async () => {
return [
{
name: 'localhost',
port: 27017,
weight: 0,
priority: 0
}
];
});
const err = await this.configuration
.newClient('mongodb+srv://localhost', {})
.connect()
.catch(e => e);
expect(err).to.be.instanceOf(MongoAPIError);
expect(err.message).to.equal(
'Server record does not have least one more domain than parent URI'
);
});

it('an SRV with two domain levels causes a runtime error', async function () {
sinon.stub(dns.promises, 'resolveSrv').callsFake(async () => {
return [
{
name: 'mongodb.localhost',
port: 27017,
weight: 0,
priority: 0
}
];
});
const err = await this.configuration
.newClient('mongodb+srv://mongodb.localhost', {})
.connect()
.catch(e => e);
expect(err).to.be.instanceOf(MongoAPIError);
expect(err.message).to.equal(
'Server record does not have least one more domain than parent URI'
);
});
}
);
}
);
27 changes: 16 additions & 11 deletions test/unit/utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { expect } from 'chai';
import {
BufferPool,
ByteUtils,
checkParentDomainMatch,
compareObjectId,
decorateWithExplain,
Explain,
Expand All @@ -12,7 +13,6 @@ import {
isUint8Array,
LEGACY_HELLO_COMMAND,
List,
matchesParentDomain,
MongoDBCollectionNamespace,
MongoDBNamespace,
MongoRuntimeError,
Expand Down Expand Up @@ -939,7 +939,7 @@ describe('driver utils', function () {
});
});

describe('matchesParentDomain()', () => {
describe('checkParentDomainMatch()', () => {
W-A-James marked this conversation as resolved.
Show resolved Hide resolved
const exampleSrvName = 'i-love-javascript.mongodb.io';
const exampleSrvNameWithDot = 'i-love-javascript.mongodb.io.';
const exampleHostNameWithoutDot = 'i-love-javascript-00.mongodb.io';
Expand All @@ -948,35 +948,40 @@ describe('driver utils', function () {
const exampleHostNamThatDoNotMatchParentWithDot = 'i-love-javascript-00.evil-mongodb.io.';

context('when address does not match parent domain', () => {
it('without a trailing dot returns false', () => {
expect(matchesParentDomain(exampleHostNamThatDoNotMatchParent, exampleSrvName)).to.be.false;
it('without a trailing dot throws', () => {
expect(() =>
checkParentDomainMatch(exampleHostNamThatDoNotMatchParent, exampleSrvName)
).to.throw('Server record does not share hostname with parent URI');
});

it('with a trailing dot returns false', () => {
expect(matchesParentDomain(exampleHostNamThatDoNotMatchParentWithDot, exampleSrvName)).to.be
.false;
it('with a trailing dot throws', () => {
expect(() =>
checkParentDomainMatch(exampleHostNamThatDoNotMatchParentWithDot, exampleSrvName)
).to.throw('Server record does not share hostname with parent URI');
});
});

context('when addresses in SRV record end with a dot', () => {
it('accepts address since it is considered to still match the parent domain', () => {
expect(matchesParentDomain(exampleHostNamesWithDot, exampleSrvName)).to.be.true;
expect(() => checkParentDomainMatch(exampleHostNamesWithDot, exampleSrvName)).to.not.throw;
W-A-James marked this conversation as resolved.
Show resolved Hide resolved
});
});

context('when SRV host ends with a dot', () => {
it('accepts address if it ends with a dot', () => {
expect(matchesParentDomain(exampleHostNamesWithDot, exampleSrvNameWithDot)).to.be.true;
expect(() => checkParentDomainMatch(exampleHostNamesWithDot, exampleSrvNameWithDot)).to.not
.throw;
W-A-James marked this conversation as resolved.
Show resolved Hide resolved
});

it('accepts address if it does not end with a dot', () => {
expect(matchesParentDomain(exampleHostNameWithoutDot, exampleSrvName)).to.be.true;
expect(() => checkParentDomainMatch(exampleHostNameWithoutDot, exampleSrvName)).to.not
.throw;
});
W-A-James marked this conversation as resolved.
Show resolved Hide resolved
});

context('when addresses in SRV record end without dots', () => {
it('accepts address since it matches the parent domain', () => {
expect(matchesParentDomain(exampleHostNamesWithDot, exampleSrvName)).to.be.true;
expect(() => checkParentDomainMatch(exampleHostNamesWithDot, exampleSrvName)).to.not.throw;
W-A-James marked this conversation as resolved.
Show resolved Hide resolved
});
});
});
Expand Down