21
21
import java .io .*;
22
22
import java .util .ArrayList ;
23
23
import java .util .List ;
24
+ import java .util .Stack ;
24
25
25
26
public class FileSystemFile
26
27
implements LocalSourceFile , LocalDestFile {
@@ -83,8 +84,9 @@ public boolean accept(File file) {
83
84
}
84
85
});
85
86
86
- if (childFiles == null )
87
+ if (childFiles == null ) {
87
88
throw new IOException ("Error listing files in directory: " + this );
89
+ }
88
90
89
91
final List <FileSystemFile > children = new ArrayList <FileSystemFile >();
90
92
for (File f : childFiles ) {
@@ -113,12 +115,13 @@ public long getLastModifiedTime()
113
115
@ Override
114
116
public int getPermissions ()
115
117
throws IOException {
116
- if (isDirectory ())
118
+ if (isDirectory ()) {
117
119
return 0755 ;
118
- else if (isFile ())
120
+ } else if (isFile ()) {
119
121
return 0644 ;
120
- else
122
+ } else {
121
123
throw new IOException ("Unsupported file type" );
124
+ }
122
125
}
123
126
124
127
@ Override
@@ -130,8 +133,9 @@ public void setLastAccessedTime(long t)
130
133
@ Override
131
134
public void setLastModifiedTime (long t )
132
135
throws IOException {
133
- if (!file .setLastModified (t * 1000 ))
136
+ if (!file .setLastModified (t * 1000 )) {
134
137
log .warn ("Could not set last modified time for {} to {}" , file , t );
138
+ }
135
139
}
136
140
137
141
@ Override
@@ -143,22 +147,41 @@ public void setPermissions(int perms)
143
147
!(FilePermission .OTH_W .isIn (perms ) || FilePermission .GRP_W .isIn (perms )));
144
148
final boolean x = file .setExecutable (FilePermission .USR_X .isIn (perms ),
145
149
!(FilePermission .OTH_X .isIn (perms ) || FilePermission .GRP_X .isIn (perms )));
146
- if (!(r && w && x ))
150
+ if (!(r && w && x )) {
147
151
log .warn ("Could not set permissions for {} to {}" , file , Integer .toString (perms , 16 ));
152
+ }
148
153
}
149
154
150
155
@ Override
151
156
public FileSystemFile getChild (String name ) {
157
+ validateIsChildPath (name );
152
158
return new FileSystemFile (new File (file , name ));
153
159
}
154
160
161
+ private void validateIsChildPath (String name ) {
162
+ String [] split = name .split ("/" );
163
+ Stack <String > s = new Stack <String >();
164
+ for (String component : split ) {
165
+ if (component == null || component .isEmpty () || component .equals ("." )) {
166
+ continue ;
167
+ } else if (component .equals (".." ) && !s .isEmpty ()) {
168
+ s .pop ();
169
+ continue ;
170
+ } else if (component .equals (".." )) {
171
+ throw new IllegalArgumentException ("Cannot traverse higher than " + file + " to get child " + name );
172
+ }
173
+ s .push (component );
174
+ }
175
+ }
176
+
155
177
@ Override
156
178
public FileSystemFile getTargetFile (String filename )
157
179
throws IOException {
158
180
FileSystemFile f = this ;
159
181
160
- if (f .isDirectory ())
182
+ if (f .isDirectory ()) {
161
183
f = f .getChild (filename );
184
+ }
162
185
163
186
if (!f .getFile ().exists ()) {
164
187
if (!f .getFile ().createNewFile ())
@@ -174,12 +197,15 @@ public FileSystemFile getTargetDirectory(String dirname)
174
197
throws IOException {
175
198
FileSystemFile f = this ;
176
199
177
- if (f .getFile ().exists ())
200
+ if (f .getFile ().exists ()) {
178
201
if (f .isDirectory ()) {
179
- if (!f .getName ().equals (dirname ))
202
+ if (!f .getName ().equals (dirname )) {
180
203
f = f .getChild (dirname );
181
- } else
204
+ }
205
+ } else {
182
206
throw new IOException (f + " - already exists as a file; directory required" );
207
+ }
208
+ }
183
209
184
210
if (!f .getFile ().exists () && !f .getFile ().mkdir ())
185
211
throw new IOException ("Failed to create directory: " + f );
0 commit comments