With this patch, the allowLinking flag applies to all web application resources. It is very slightly slower. On my machine with allowLinking=false, the change to line 899 increases the time from ~7 microseconds to create the file to ~70 microseconds to create and validate the file. As far as I can tell, this change is only going to affect context start times. If directory listings are enabled in the default servlet, they will also be slightly slower but they were horribly slow to start with.
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@701358
13f79535-47bb-0310-9956-
ffa450edef68
protected File file(String name) {
File file = new File(base, name);
+ return validate(file);
+
+ }
+
+
+ /*
+ * Check that the file is valid for this context
+ */
+ private File validate(File file) {
if (file.exists() && file.canRead()) {
if (allowLinking)
for (int i = 0; i < names.length; i++) {
- File currentFile = new File(file, names[i]);
+ File currentFile = validate(new File(file, names[i]));
+ if (currentFile == null) continue;
+
Object object = null;
if (currentFile.isDirectory()) {
FileDirContext tempContext = new FileDirContext(env);