4 * Returns the length (on a path component basis) of the longest
5 * common prefix match of 'name_a' and 'name_b'.
7 static int longest_path_match(const char *name_a
, int len_a
,
8 const char *name_b
, int len_b
,
11 int max_len
, match_len
= 0, match_len_prev
= 0, i
= 0;
13 max_len
= len_a
< len_b
? len_a
: len_b
;
14 while (i
< max_len
&& name_a
[i
] == name_b
[i
]) {
15 if (name_a
[i
] == '/') {
16 match_len_prev
= match_len
;
22 * Is 'name_b' a substring of 'name_a', the other way around,
23 * or is 'name_a' and 'name_b' the exact same string?
25 if (i
>= max_len
&& ((len_a
> len_b
&& name_a
[len_b
] == '/') ||
26 (len_a
< len_b
&& name_b
[len_a
] == '/') ||
28 match_len_prev
= match_len
;
31 *previous_slash
= match_len_prev
;
35 static struct cache_def default_cache
;
37 static inline void reset_lstat_cache(struct cache_def
*cache
)
39 cache
->path
[0] = '\0';
43 * The track_flags and prefix_len_stat_func members is only
44 * set by the safeguard rule inside lstat_cache()
48 #define FL_DIR (1 << 0)
49 #define FL_NOENT (1 << 1)
50 #define FL_SYMLINK (1 << 2)
51 #define FL_LSTATERR (1 << 3)
52 #define FL_ERR (1 << 4)
53 #define FL_FULLPATH (1 << 5)
56 * Check if name 'name' of length 'len' has a symlink leading
57 * component, or if the directory exists and is real, or not.
59 * To speed up the check, some information is allowed to be cached.
60 * This can be indicated by the 'track_flags' argument, which also can
61 * be used to indicate that we should check the full path.
63 * The 'prefix_len_stat_func' parameter can be used to set the length
64 * of the prefix, where the cache should use the stat() function
65 * instead of the lstat() function to test each path component.
67 static int lstat_cache(struct cache_def
*cache
, const char *name
, int len
,
68 int track_flags
, int prefix_len_stat_func
)
70 int match_len
, last_slash
, last_slash_dir
, previous_slash
;
71 int match_flags
, ret_flags
, save_flags
, max_len
, ret
;
74 if (cache
->track_flags
!= track_flags
||
75 cache
->prefix_len_stat_func
!= prefix_len_stat_func
) {
77 * As a safeguard rule we clear the cache if the
78 * values of track_flags and/or prefix_len_stat_func
79 * does not match with the last supplied values.
81 reset_lstat_cache(cache
);
82 cache
->track_flags
= track_flags
;
83 cache
->prefix_len_stat_func
= prefix_len_stat_func
;
84 match_len
= last_slash
= 0;
87 * Check to see if we have a match from the cache for
88 * the 2 "excluding" path types.
90 match_len
= last_slash
=
91 longest_path_match(name
, len
, cache
->path
, cache
->len
,
93 match_flags
= cache
->flags
& track_flags
& (FL_NOENT
|FL_SYMLINK
);
95 if (!(track_flags
& FL_FULLPATH
) && match_len
== len
)
96 match_len
= last_slash
= previous_slash
;
98 if (match_flags
&& match_len
== cache
->len
)
101 * If we now have match_len > 0, we would know that
102 * the matched part will always be a directory.
104 * Also, if we are tracking directories and 'name' is
105 * a substring of the cache on a path component basis,
106 * we can return immediately.
108 match_flags
= track_flags
& FL_DIR
;
109 if (match_flags
&& len
== match_len
)
114 * Okay, no match from the cache so far, so now we have to
115 * check the rest of the path components.
118 last_slash_dir
= last_slash
;
119 max_len
= len
< PATH_MAX
? len
: PATH_MAX
;
120 while (match_len
< max_len
) {
122 cache
->path
[match_len
] = name
[match_len
];
124 } while (match_len
< max_len
&& name
[match_len
] != '/');
125 if (match_len
>= max_len
&& !(track_flags
& FL_FULLPATH
))
127 last_slash
= match_len
;
128 cache
->path
[last_slash
] = '\0';
130 if (last_slash
<= prefix_len_stat_func
)
131 ret
= stat(cache
->path
, &st
);
133 ret
= lstat(cache
->path
, &st
);
136 ret_flags
= FL_LSTATERR
;
138 ret_flags
|= FL_NOENT
;
139 } else if (S_ISDIR(st
.st_mode
)) {
140 last_slash_dir
= last_slash
;
142 } else if (S_ISLNK(st
.st_mode
)) {
143 ret_flags
= FL_SYMLINK
;
151 * At the end update the cache. Note that max 3 different
152 * path types, FL_NOENT, FL_SYMLINK and FL_DIR, can be cached
155 save_flags
= ret_flags
& track_flags
& (FL_NOENT
|FL_SYMLINK
);
156 if (save_flags
&& last_slash
> 0 && last_slash
<= PATH_MAX
) {
157 cache
->path
[last_slash
] = '\0';
158 cache
->len
= last_slash
;
159 cache
->flags
= save_flags
;
160 } else if ((track_flags
& FL_DIR
) &&
161 last_slash_dir
> 0 && last_slash_dir
<= PATH_MAX
) {
163 * We have a separate test for the directory case,
164 * since it could be that we have found a symlink or a
165 * non-existing directory and the track_flags says
166 * that we cannot cache this fact, so the cache would
167 * then have been left empty in this case.
169 * But if we are allowed to track real directories, we
170 * can still cache the path components before the last
171 * one (the found symlink or non-existing component).
173 cache
->path
[last_slash_dir
] = '\0';
174 cache
->len
= last_slash_dir
;
175 cache
->flags
= FL_DIR
;
177 reset_lstat_cache(cache
);
183 * Invalidate the given 'name' from the cache, if 'name' matches
184 * completely with the cache.
186 void invalidate_lstat_cache(const char *name
, int len
)
188 int match_len
, previous_slash
;
189 struct cache_def
*cache
= &default_cache
; /* FIXME */
191 match_len
= longest_path_match(name
, len
, cache
->path
, cache
->len
,
193 if (len
== match_len
) {
194 if ((cache
->track_flags
& FL_DIR
) && previous_slash
> 0) {
195 cache
->path
[previous_slash
] = '\0';
196 cache
->len
= previous_slash
;
197 cache
->flags
= FL_DIR
;
199 reset_lstat_cache(cache
);
205 * Completely clear the contents of the cache
207 void clear_lstat_cache(void)
209 struct cache_def
*cache
= &default_cache
; /* FIXME */
210 reset_lstat_cache(cache
);
213 #define USE_ONLY_LSTAT 0
216 * Return non-zero if path 'name' has a leading symlink component
218 int threaded_has_symlink_leading_path(struct cache_def
*cache
, const char *name
, int len
)
220 return lstat_cache(cache
, name
, len
, FL_SYMLINK
|FL_DIR
, USE_ONLY_LSTAT
) & FL_SYMLINK
;
224 * Return non-zero if path 'name' has a leading symlink component
226 int has_symlink_leading_path(const char *name
, int len
)
228 return threaded_has_symlink_leading_path(&default_cache
, name
, len
);
232 * Return non-zero if path 'name' has a leading symlink component or
233 * if some leading path component does not exists.
235 int has_symlink_or_noent_leading_path(const char *name
, int len
)
237 struct cache_def
*cache
= &default_cache
; /* FIXME */
238 return lstat_cache(cache
, name
, len
,
239 FL_SYMLINK
|FL_NOENT
|FL_DIR
, USE_ONLY_LSTAT
) &
240 (FL_SYMLINK
|FL_NOENT
);
244 * Return non-zero if all path components of 'name' exists as a
245 * directory. If prefix_len > 0, we will test with the stat()
246 * function instead of the lstat() function for a prefix length of
247 * 'prefix_len', thus we then allow for symlinks in the prefix part as
248 * long as those points to real existing directories.
250 int has_dirs_only_path(const char *name
, int len
, int prefix_len
)
252 struct cache_def
*cache
= &default_cache
; /* FIXME */
253 return lstat_cache(cache
, name
, len
,
254 FL_DIR
|FL_FULLPATH
, prefix_len
) &
258 static struct removal_def
{
263 static void do_remove_scheduled_dirs(int new_len
)
265 while (removal
.len
> new_len
) {
266 removal
.path
[removal
.len
] = '\0';
267 if (rmdir(removal
.path
))
271 } while (removal
.len
> new_len
&&
272 removal
.path
[removal
.len
] != '/');
274 removal
.len
= new_len
;
277 void schedule_dir_for_removal(const char *name
, int len
)
279 int match_len
, last_slash
, i
, previous_slash
;
281 match_len
= last_slash
= i
=
282 longest_path_match(name
, len
, removal
.path
, removal
.len
,
284 /* Find last slash inside 'name' */
292 * If we are about to go down the directory tree, we check if
293 * we must first go upwards the tree, such that we then can
294 * remove possible empty directories as we go upwards.
296 if (match_len
< last_slash
&& match_len
< removal
.len
)
297 do_remove_scheduled_dirs(match_len
);
299 * If we go deeper down the directory tree, we only need to
300 * save the new path components as we go down.
302 if (match_len
< last_slash
) {
303 memcpy(&removal
.path
[match_len
], &name
[match_len
],
304 last_slash
- match_len
);
305 removal
.len
= last_slash
;
309 void remove_scheduled_dirs(void)
311 do_remove_scheduled_dirs(0);