UNPKG

hono

Version:

Web framework built on Web Standards

177 lines (176 loc) 6.33 kB
var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); var ip_restriction_exports = {}; __export(ip_restriction_exports, { ipRestriction: () => ipRestriction }); module.exports = __toCommonJS(ip_restriction_exports); var import_http_exception = require("../../http-exception"); var import_ipaddr = require("../../utils/ipaddr"); const IS_CIDR_NOTATION_REGEX = /\/[^/]*$/; const parseCidrPrefix = (rule, prefix, max) => { if (!/^[0-9]{1,3}$/.test(prefix)) { throw new TypeError(`Invalid rule: ${rule}`); } const parsedPrefix = parseInt(prefix); if (parsedPrefix > max) { throw new TypeError(`Invalid rule: ${rule}`); } return parsedPrefix; }; const buildMatcher = (rules) => { const functionRules = []; const staticRules = /* @__PURE__ */ new Set(); const staticIPv4Rules = /* @__PURE__ */ new Set(); const staticIPv6Rules = /* @__PURE__ */ new Set(); const cidrRules = []; const registerStaticRule = (rule) => { const type = (0, import_ipaddr.distinctRemoteAddr)(rule); if (type === void 0) { throw new TypeError(`Invalid rule: ${rule}`); } if (type === "IPv4") { const ipv4binary = (0, import_ipaddr.convertIPv4ToBinary)(rule); staticRules.add(rule); staticRules.add(`::ffff:${rule}`); staticIPv4Rules.add(ipv4binary); staticIPv6Rules.add(0xffffn << 32n | ipv4binary); } else { const ipv6binary = (0, import_ipaddr.convertIPv6ToBinary)(rule); const ipv6Addr = (0, import_ipaddr.convertIPv6BinaryToString)(ipv6binary); staticRules.add(ipv6Addr); staticIPv6Rules.add(ipv6binary); if ((0, import_ipaddr.isIPv4MappedIPv6)(ipv6binary)) { staticRules.add(ipv6Addr.substring(7)); staticIPv4Rules.add((0, import_ipaddr.convertIPv4MappedIPv6ToIPv4)(ipv6binary)); } } }; for (let rule of rules) { if (rule === "*") { return () => true; } else if (typeof rule === "function") { functionRules.push(rule); } else { if (IS_CIDR_NOTATION_REGEX.test(rule)) { const separatedRule = rule.split("/"); const addrStr = separatedRule[0]; const type = (0, import_ipaddr.distinctRemoteAddr)(addrStr); if (type === void 0) { throw new TypeError(`Invalid rule: ${rule}`); } let isIPv4 = type === "IPv4"; let prefix = parseCidrPrefix(rule, separatedRule[1], isIPv4 ? 32 : 128); if (isIPv4 ? prefix === 32 : prefix === 128) { rule = addrStr; } else { let addr = (isIPv4 ? import_ipaddr.convertIPv4ToBinary : import_ipaddr.convertIPv6ToBinary)(addrStr); if (type === "IPv6" && (0, import_ipaddr.isIPv4MappedIPv6)(addr) && prefix >= 96) { isIPv4 = true; addr = (0, import_ipaddr.convertIPv4MappedIPv6ToIPv4)(addr); prefix -= 96; } const mask = (1n << BigInt(prefix)) - 1n << BigInt((isIPv4 ? 32 : 128) - prefix); cidrRules.push([isIPv4, addr & mask, mask]); continue; } } registerStaticRule(rule); } } return (remote) => { if (staticRules.has(remote.addr)) { return true; } const remoteAddr = remote.binaryAddr ||= (remote.isIPv4 ? import_ipaddr.convertIPv4ToBinary : import_ipaddr.convertIPv6ToBinary)(remote.addr); const remoteIPv4Addr = remote.isIPv4 || (0, import_ipaddr.isIPv4MappedIPv6)(remoteAddr) ? remote.isIPv4 ? remoteAddr : (0, import_ipaddr.convertIPv4MappedIPv6ToIPv4)(remoteAddr) : void 0; if ((remote.isIPv4 ? staticIPv4Rules : staticIPv6Rules).has(remoteAddr)) { return true; } for (const [isIPv4, addr, mask] of cidrRules) { if (isIPv4) { if (remoteIPv4Addr === void 0) { continue; } if ((remoteIPv4Addr & mask) === addr) { return true; } continue; } if (remote.isIPv4) { continue; } if ((remoteAddr & mask) === addr) { return true; } } for (const rule of functionRules) { if (rule({ addr: remote.addr, type: remote.type })) { return true; } } return false; }; }; const ipRestriction = (getIP, { denyList = [], allowList = [] }, onError) => { const allowLength = allowList.length; const denyMatcher = buildMatcher(denyList); const allowMatcher = buildMatcher(allowList); const blockError = (c) => new import_http_exception.HTTPException(403, { res: c.text("Forbidden", { status: 403 }) }); return async function ipRestriction2(c, next) { const connInfo = getIP(c); const addr = typeof connInfo === "string" ? connInfo : connInfo.remote.address; if (!addr) { throw blockError(c); } const type = typeof connInfo !== "string" && connInfo.remote.addressType || (0, import_ipaddr.distinctRemoteAddr)(addr); const remoteData = { addr, type, isIPv4: type === "IPv4" }; try { if (denyMatcher(remoteData)) { if (onError) { return onError({ addr, type }, c); } throw blockError(c); } if (allowMatcher(remoteData)) { return await next(); } } catch (e) { if (e instanceof TypeError && e.code === import_ipaddr.INVALID_IP_ADDRESS_ERROR_CODE) { throw blockError(c); } throw e; } if (allowLength === 0) { return await next(); } else { if (onError) { return await onError({ addr, type }, c); } throw blockError(c); } }; }; // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { ipRestriction });