backend-common,cli-common: new utilites for safely resolving child paths

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2021-06-24 17:27:05 +02:00
parent 31e4c48afc
commit ab5cc376fa
18 changed files with 175 additions and 42 deletions
+3
View File
@@ -7,6 +7,9 @@
// @public
export function findPaths(searchDir: string): Paths;
// @public
export function isChildPath(base: string, path: string): boolean;
// @public (undocumented)
export type Paths = {
ownDir: string;
+1
View File
@@ -15,4 +15,5 @@
*/
export { findPaths } from './paths';
export { isChildPath } from './isChildPath';
export type { Paths } from './paths';
@@ -0,0 +1,74 @@
/*
* Copyright 2021 The Backstage Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { posix, win32 } from 'path';
describe('isChildPath', () => {
it('should check child posix paths', () => {
jest.isolateModules(() => {
jest.setMock('path', posix);
const { isChildPath } = require('./isChildPath');
expect(isChildPath('/', '/')).toBe(true);
expect(isChildPath('/x', '/x')).toBe(true);
expect(isChildPath('/x', '/x/y')).toBe(true);
expect(isChildPath('/x', '/x/x')).toBe(true);
expect(isChildPath('/x', '/x/y/z')).toBe(true);
expect(isChildPath('/x/y', '/x/y/z')).toBe(true);
expect(isChildPath('/x/y/z', '/x/y/z')).toBe(true);
expect(isChildPath('/x/a b c/z', '/x/a b c/z')).toBe(true);
expect(isChildPath('/', '/ yz')).toBe(true);
expect(isChildPath('/x', '/y')).toBe(false);
expect(isChildPath('/x', '/')).toBe(false);
expect(isChildPath('/x', '/x y')).toBe(false);
expect(isChildPath('/x y', '/x yz')).toBe(false);
expect(isChildPath('/ yz', '/')).toBe(false);
expect(isChildPath('/x', '/')).toBe(false);
jest.dontMock('path');
});
});
it('should check child win32 paths', () => {
jest.isolateModules(() => {
jest.setMock('path', win32);
const { isChildPath } = require('./isChildPath');
expect(isChildPath('/x', '/x')).toBe(true);
expect(isChildPath('/x', '/x/y')).toBe(true);
expect(isChildPath('/x', '/x/x')).toBe(true);
expect(isChildPath('/x', '/x/y/z')).toBe(true);
expect(isChildPath('/x/y', '/x/y/z')).toBe(true);
expect(isChildPath('/x/y/z', '/x/y/z')).toBe(true);
expect(isChildPath('Z:', 'Z:')).toBe(true);
expect(isChildPath('C:/', 'c:/')).toBe(true);
expect(isChildPath('C:/x', 'C:/x')).toBe(true);
expect(isChildPath('C:/x', 'c:/x')).toBe(true);
expect(isChildPath('C:/x', 'C:/x/y')).toBe(true);
expect(isChildPath('d:/x', 'D:/x/y')).toBe(true);
expect(isChildPath('/x', '/y')).toBe(false);
expect(isChildPath('/x', '/')).toBe(false);
expect(isChildPath('C:/', 'D:/')).toBe(false);
expect(isChildPath('C:/x', 'D:/x')).toBe(false);
expect(isChildPath('D:/x', 'CD:/x')).toBe(false);
expect(isChildPath('D:/x', 'D:/y')).toBe(false);
jest.dontMock('path');
});
});
});
+33
View File
@@ -0,0 +1,33 @@
/*
* Copyright 2021 The Backstage Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { relative, isAbsolute } from 'path';
/**
* Checks if path is the same as or a child path of base.
*/
export function isChildPath(base: string, path: string): boolean {
const relativePath = relative(base, path);
if (relativePath === '') {
// The same directory
return true;
}
const outsideBase = relativePath.startsWith('..'); // not outside base
const differentDrive = isAbsolute(relativePath); // on Windows, this means dir is on a different drive from base.
return !outsideBase && !differentDrive;
}