feat: Add comprehensive tests for contentPattern and glob pattern matching

- Implemented final verification tests for contentPattern to validate behavior with empty strings, dangerous patterns, and normal patterns.
- Created glob pattern matching tests to verify regex conversion and matching functionality.
- Developed infinite loop risk tests using Worker threads to isolate potential blocking operations.
- Introduced optimized contentPattern tests to validate improvements in the findMatches function.
- Added verification tests to assess the effectiveness of contentPattern optimizations.
- Conducted safety tests for contentPattern to identify edge cases and potential vulnerabilities.
- Implemented unrestricted loop tests to analyze infinite loop risks without match limits.
- Developed tests for zero-width pattern detection logic to ensure proper handling of dangerous regex patterns.
This commit is contained in:
catlog22
2026-02-09 11:13:01 +08:00
parent dfe153778c
commit 964292ebdb
62 changed files with 7588 additions and 374 deletions

View File

@@ -0,0 +1,260 @@
/**
* Shared file reading utilities
*
* Extracted from read-file.ts for reuse across read_file and read_many_files tools.
*/
import { readFileSync, readdirSync, statSync } from 'fs';
import { join, extname } from 'path';
// Max content per file (truncate if larger)
export const MAX_CONTENT_LENGTH = 5000;
// Max files to return
export const MAX_FILES = 50;
// Max total content length
export const MAX_TOTAL_CONTENT = 50000;
// Common binary extensions to skip
export const BINARY_EXTENSIONS = new Set([
'.png', '.jpg', '.jpeg', '.gif', '.bmp', '.ico', '.webp', '.svg',
'.pdf', '.doc', '.docx', '.xls', '.xlsx', '.ppt', '.pptx',
'.zip', '.tar', '.gz', '.rar', '.7z',
'.exe', '.dll', '.so', '.dylib',
'.mp3', '.mp4', '.wav', '.avi', '.mov',
'.woff', '.woff2', '.ttf', '.eot', '.otf',
'.pyc', '.class', '.o', '.obj',
]);
export interface FileEntry {
path: string;
size: number;
content?: string;
truncated?: boolean;
matches?: string[];
totalLines?: number;
lineRange?: { start: number; end: number };
}
export interface ReadContentOptions {
maxLength: number;
offset?: number;
limit?: number;
}
export interface ReadContentResult {
content: string;
truncated: boolean;
totalLines?: number;
lineRange?: { start: number; end: number };
}
export interface ReadResult {
files: FileEntry[];
totalFiles: number;
message: string;
}
/**
* Check if file is likely binary
*/
export function isBinaryFile(filePath: string): boolean {
const ext = extname(filePath).toLowerCase();
return BINARY_EXTENSIONS.has(ext);
}
/**
* Convert glob pattern to regex
*/
export function globToRegex(pattern: string): RegExp {
const escaped = pattern
.replace(/[.+^${}()|[\]\\]/g, '\\$&')
.replace(/\*/g, '.*')
.replace(/\?/g, '.');
return new RegExp(`^${escaped}$`, 'i');
}
/**
* Check if filename matches glob pattern
*/
export function matchesPattern(filename: string, pattern: string): boolean {
const regex = globToRegex(pattern);
return regex.test(filename);
}
/**
* Recursively collect files from directory
*/
export function collectFiles(
dir: string,
pattern: string | undefined,
maxDepth: number,
currentDepth: number = 0
): string[] {
if (currentDepth > maxDepth) return [];
const files: string[] = [];
try {
const entries = readdirSync(dir, { withFileTypes: true });
for (const entry of entries) {
// Skip hidden files/dirs and node_modules
if (entry.name.startsWith('.') || entry.name === 'node_modules') continue;
const fullPath = join(dir, entry.name);
if (entry.isDirectory()) {
files.push(...collectFiles(fullPath, pattern, maxDepth, currentDepth + 1));
} else if (entry.isFile()) {
if (!pattern || matchesPattern(entry.name, pattern)) {
files.push(fullPath);
}
}
}
} catch {
// Skip directories we can't read
}
return files;
}
/**
* Read file content with truncation and optional line-based pagination
*/
export function readFileContent(filePath: string, options: ReadContentOptions): ReadContentResult {
const { maxLength, offset, limit } = options;
if (isBinaryFile(filePath)) {
return { content: '[Binary file]', truncated: false };
}
try {
const content = readFileSync(filePath, 'utf8');
const lines = content.split('\n');
const totalLines = lines.length;
// If offset/limit specified, use line-based pagination
if (offset !== undefined || limit !== undefined) {
const startLine = Math.min(offset ?? 0, totalLines);
const endLine = limit !== undefined ? Math.min(startLine + limit, totalLines) : totalLines;
const selectedLines = lines.slice(startLine, endLine);
const selectedContent = selectedLines.join('\n');
const actualEnd = endLine;
const hasMore = actualEnd < totalLines;
let finalContent = selectedContent;
if (selectedContent.length > maxLength) {
finalContent = selectedContent.substring(0, maxLength) + `\n... (+${selectedContent.length - maxLength} chars)`;
}
// Calculate actual line range (handle empty selection)
const actualLineEnd = selectedLines.length > 0 ? startLine + selectedLines.length - 1 : startLine;
return {
content: finalContent,
truncated: hasMore || selectedContent.length > maxLength,
totalLines,
lineRange: { start: startLine, end: actualLineEnd },
};
}
// Default behavior: truncate by character length
if (content.length > maxLength) {
return {
content: content.substring(0, maxLength) + `\n... (+${content.length - maxLength} chars)`,
truncated: true,
totalLines,
};
}
return { content, truncated: false, totalLines };
} catch (error) {
return { content: `[Error: ${(error as Error).message}]`, truncated: false };
}
}
/**
* Find regex matches in content with safety protections
* - Empty string pattern = "match all" (no filtering) - returns null
* - Dangerous patterns (zero-width matches) = "match all" for safety - returns null
* - Validates pattern to prevent infinite loops
* - Limits iterations to prevent ReDoS attacks
* - Deduplicates results to prevent duplicates
* - Reports errors instead of silent failure
*
* @returns Array of matching lines, null to match all content (empty string or dangerous pattern), empty array for no matches
*/
export function findMatches(content: string, pattern: string): string[] | null {
// 1. Empty string pattern = "match all" (no filtering)
if (!pattern || pattern.length === 0) {
return null;
}
// 2. Pattern length limit
if (pattern.length > 1000) {
console.error('[read_file] contentPattern error: Pattern too long (max 1000 characters), returning all content');
return null;
}
// 3. Dangerous pattern detection
try {
const testRegex = new RegExp(pattern, 'gm');
const emptyTest = testRegex.exec('');
if (emptyTest && emptyTest[0] === '' && emptyTest.index === 0) {
const secondMatch = testRegex.exec('');
if (secondMatch && secondMatch.index === 0) {
console.warn(`[read_file] contentPattern: Dangerous pattern "${pattern.substring(0, 50)}" detected, returning all content`);
return null;
}
}
} catch (e) {
console.error(`[read_file] contentPattern: Invalid regex pattern: ${(e as Error).message}, returning all content`);
return null;
}
try {
const regex = new RegExp(pattern, 'gm');
const matches: string[] = [];
const seen = new Set<string>();
let match;
let iterations = 0;
let lastIndex = -1;
const MAX_ITERATIONS = 1000;
const MAX_MATCHES = 50;
while ((match = regex.exec(content)) !== null && matches.length < MAX_MATCHES) {
iterations++;
if (iterations > MAX_ITERATIONS) {
console.error(`[read_file] contentPattern warning: Exceeded ${MAX_ITERATIONS} iterations for pattern "${pattern.substring(0, 50)}"`);
break;
}
if (match.index === lastIndex) {
regex.lastIndex = match.index + 1;
continue;
}
lastIndex = match.index;
const lineStart = content.lastIndexOf('\n', match.index) + 1;
const lineEnd = content.indexOf('\n', match.index);
const line = content.substring(lineStart, lineEnd === -1 ? undefined : lineEnd).trim();
if (!line) continue;
if (!seen.has(line)) {
seen.add(line);
matches.push(line.substring(0, 200));
}
if (matches.length >= 10) break;
}
return matches;
} catch (error) {
const errorMsg = (error as Error).message;
console.error(`[read_file] contentPattern error: ${errorMsg}`);
return [];
}
}