Skip to content

Commit df560b0

Browse files
authoredSep 22, 2022
perf: cache compiled glob for server.fs.deny (#10044)
1 parent 6c7b834 commit df560b0

File tree

6 files changed

+36
-13
lines changed

6 files changed

+36
-13
lines changed
 

‎docs/config/server-options.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -297,10 +297,9 @@ export default defineConfig({
297297
## server.fs.deny
298298

299299
- **Type:** `string[]`
300+
- **Default:** `['.env', '.env.*', '*.{pem,crt}']`
300301

301-
Blocklist for sensitive files being restricted to be served by Vite dev server.
302-
303-
Default to `['.env', '.env.*', '*.{pem,crt}']`.
302+
Blocklist for sensitive files being restricted to be served by Vite dev server. This will have higher priority than [`server.fs.allow`](#server-fs-allow). [picomatch patterns](https://github.com/micromatch/picomatch#globbing-features) are supported.
304303

305304
## server.origin
306305

‎package.json

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"@types/micromatch": "^4.0.2",
5252
"@types/minimist": "^1.2.2",
5353
"@types/node": "^17.0.42",
54+
"@types/picomatch": "^2.3.0",
5455
"@types/prompts": "^2.0.14",
5556
"@types/resolve": "^1.20.2",
5657
"@types/sass": "~1.43.1",

‎packages/vite/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@
105105
"parse5": "^7.1.1",
106106
"periscopic": "^3.0.4",
107107
"picocolors": "^1.0.0",
108+
"picomatch": "^2.3.1",
108109
"postcss-import": "^15.0.0",
109110
"postcss-load-config": "^4.0.1",
110111
"postcss-modules": "^5.0.0",

‎packages/vite/src/node/server/index.ts

+9-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ import type { FSWatcher, WatchOptions } from 'types/chokidar'
1111
import type { Connect } from 'types/connect'
1212
import launchEditorMiddleware from 'launch-editor-middleware'
1313
import type { SourceMap } from 'rollup'
14+
import picomatch from 'picomatch'
15+
import type { Matcher } from 'picomatch'
1416
import type { CommonServerOptions } from '../http'
1517
import {
1618
httpServerStart,
@@ -143,7 +145,7 @@ export interface FileSystemServeOptions {
143145
* Restrict accessing files that matches the patterns.
144146
*
145147
* This will have higher priority than `allow`.
146-
* Glob patterns are supported.
148+
* picomatch patterns are supported.
147149
*
148150
* @default ['.env', '.env.*', '*.crt', '*.pem']
149151
*/
@@ -283,6 +285,10 @@ export interface ViteDevServer {
283285
abort: () => void
284286
}
285287
>
288+
/**
289+
* @internal
290+
*/
291+
_fsDenyGlob: Matcher
286292
}
287293

288294
export interface ResolvedServerUrls {
@@ -426,7 +432,8 @@ export async function createServer(
426432
_restartPromise: null,
427433
_importGlobMap: new Map(),
428434
_forceOptimizeOnRestart: false,
429-
_pendingRequests: new Map()
435+
_pendingRequests: new Map(),
436+
_fsDenyGlob: picomatch(config.server.fs.deny, { matchBase: true })
430437
}
431438

432439
server.transformIndexHtml = createDevHtmlTransformFn(server)

‎packages/vite/src/node/server/middlewares/static.ts

+1-7
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import type { OutgoingHttpHeaders, ServerResponse } from 'node:http'
33
import type { Options } from 'sirv'
44
import sirv from 'sirv'
55
import type { Connect } from 'types/connect'
6-
import micromatch from 'micromatch'
76
import type { ViteDevServer } from '../..'
87
import { FS_PREFIX } from '../../constants'
98
import {
@@ -18,8 +17,6 @@ import {
1817
slash
1918
} from '../../utils'
2019

21-
const { isMatch } = micromatch
22-
2320
const sirvOptions = (headers?: OutgoingHttpHeaders): Options => {
2421
return {
2522
dev: true,
@@ -158,8 +155,6 @@ export function serveRawFsMiddleware(
158155
}
159156
}
160157

161-
const _matchOptions = { matchBase: true }
162-
163158
export function isFileServingAllowed(
164159
url: string,
165160
server: ViteDevServer
@@ -168,8 +163,7 @@ export function isFileServingAllowed(
168163

169164
const file = fsPathFromUrl(url)
170165

171-
if (server.config.server.fs.deny.some((i) => isMatch(file, i, _matchOptions)))
172-
return false
166+
if (server._fsDenyGlob(file)) return false
173167

174168
if (server.moduleGraph.safeModulesPath.has(file)) return true
175169

‎pnpm-lock.yaml

+22-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.