Skip to content

Commit a136348

Browse files
committedJan 31, 2024
Allow long dnsEncode names with optional length parameter (#4543).
1 parent 20cd8a2 commit a136348

File tree

2 files changed

+59
-7
lines changed

2 files changed

+59
-7
lines changed
 

‎src.ts/_tests/test-hash.ts

+53-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { loadTests } from "./utils.js"
1212
import type { TestCaseNamehash, TestCaseSolidityHash } from "./types.js";
1313

1414

15-
//import { dnsEncode, isValidName, namehash } from "../index.js";
15+
import { dnsEncode } from "../index.js";
1616

1717
describe("Tests Namehash", function() {
1818
const tests = loadTests<TestCaseNamehash>("namehash");
@@ -141,6 +141,58 @@ describe("Tests DNS Names", function() {
141141
});
142142
*/
143143

144+
interface TestCaseDnsEncode {
145+
name: string;
146+
length?: number;
147+
result?: string;
148+
error?: string;
149+
}
150+
151+
describe("Test dnsEncode", function() {
152+
153+
const tests: Array<TestCaseDnsEncode> = [
154+
{ name: "ricmoo.com", result: "0x067269636d6f6f03636f6d00" },
155+
{ name: "ricmoo.com", length: 5, error: "exceeds 5 bytes" },
156+
{
157+
name: "a-very-long-label-without-a-length-override-foo-12345678901234567890",
158+
error: "exceeds 63 bytes"
159+
},
160+
{
161+
name: "a-very-long-label-with-a-length-override-to-255-foo-12345678901234567890",
162+
length: 255, result: "0x48612d766572792d6c6f6e672d6c6162656c2d776974682d612d6c656e6774682d6f766572726964652d746f2d3235352d666f6f2d313233343536373839303132333435363738393000"
163+
},
164+
];
165+
166+
for (const test of tests) {
167+
it(`tests dnsEncode: ${ test.name }`, function() {
168+
if (test.error) {
169+
170+
assert.throws(() => {
171+
let result;
172+
if (test.length != null) {
173+
result = dnsEncode(test.name, test.length);
174+
} else {
175+
result = dnsEncode(test.name);
176+
}
177+
console.log("result", result);
178+
179+
}, (error) => {
180+
return (isError(error, "INVALID_ARGUMENT") &&
181+
error.argument === "name" && error.value === test.name &&
182+
error.message.indexOf(test.error || "") >= 0);
183+
});
184+
185+
} else {
186+
if (test.length != null) {
187+
assert.equal(dnsEncode(test.name, test.length), test.result, "dnsEncode(name, length)");
188+
} else {
189+
assert.equal(dnsEncode(test.name), test.result, "dnsEncode(name)");
190+
}
191+
}
192+
});
193+
}
194+
});
195+
144196
describe("Test EIP-191 Personal Message Hash", function() {
145197
const tests = [
146198
{

‎src.ts/hash/namehash.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -85,17 +85,17 @@ export function namehash(name: string): string {
8585
* This is used for various parts of ENS name resolution, such
8686
* as the wildcard resolution.
8787
*/
88-
export function dnsEncode(name: string): string {
88+
export function dnsEncode(name: string, _maxLength?: number): string {
89+
const length = (_maxLength != null) ? _maxLength: 63;
90+
91+
assertArgument(length <= 255, "DNS encoded label cannot exceed 255", "length", length);
92+
8993
return hexlify(concat(ensNameSplit(name).map((comp) => {
90-
// DNS does not allow components over 63 bytes in length
91-
if (comp.length > 63) {
92-
throw new Error("invalid DNS encoded entry; length exceeds 63 bytes");
93-
}
94+
assertArgument(comp.length <= length, `label ${ JSON.stringify(name) } exceeds ${ length } bytes`, "name", name);
9495

9596
const bytes = new Uint8Array(comp.length + 1);
9697
bytes.set(comp, 1);
9798
bytes[0] = bytes.length - 1;
9899
return bytes;
99-
100100
}))) + "00";
101101
}

0 commit comments

Comments
 (0)
Please sign in to comment.