/src/wget2/libwget/utils.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright (c) 2012 Tim Ruehsen |
3 | | * Copyright (c) 2015-2026 Free Software Foundation, Inc. |
4 | | * |
5 | | * This file is part of libwget. |
6 | | * |
7 | | * Libwget is free software: you can redistribute it and/or modify |
8 | | * it under the terms of the GNU Lesser General Public License as published by |
9 | | * the Free Software Foundation, either version 3 of the License, or |
10 | | * (at your option) any later version. |
11 | | * |
12 | | * Libwget is distributed in the hope that it will be useful, |
13 | | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | | * GNU Lesser General Public License for more details. |
16 | | * |
17 | | * You should have received a copy of the GNU Lesser General Public License |
18 | | * along with libwget. If not, see <https://www.gnu.org/licenses/>. |
19 | | * |
20 | | * |
21 | | * a collection of utility routines |
22 | | * |
23 | | * Changelog |
24 | | * 25.04.2012 Tim Ruehsen created |
25 | | * |
26 | | */ |
27 | | |
28 | | #include <config.h> |
29 | | |
30 | | #include <stddef.h> |
31 | | #include <string.h> |
32 | | #include <strings.h> |
33 | | #include <unistd.h> |
34 | | #include <time.h> |
35 | | #include <glob.h> |
36 | | |
37 | | #include "c-ctype.h" |
38 | | #include "c-strcase.h" |
39 | | |
40 | | #if defined __clang__ |
41 | | // silence warnings in gnulib code |
42 | | #pragma clang diagnostic ignored "-Wshorten-64-to-32" |
43 | | #endif |
44 | | |
45 | | #include "timespec.h" // gnulib gettime() |
46 | | |
47 | | #ifdef HAVE_IOCTL |
48 | | # include <sys/ioctl.h> |
49 | | # include <termios.h> |
50 | | #endif |
51 | | |
52 | | #include <wget.h> |
53 | | #include "private.h" |
54 | | |
55 | | /** |
56 | | * \file |
57 | | * \brief General utility functions |
58 | | * \defgroup libwget-utils General utility functions |
59 | | * @{ |
60 | | * |
61 | | * This is a collections of short routines that are used with libwget and/or Wget code. |
62 | | * They may be useful to other developers that is why they are exported. |
63 | | */ |
64 | | |
65 | | /** |
66 | | * \param[in] s1 String |
67 | | * \param[in] s2 String |
68 | | * \return |
69 | | * 0 if both \p s1 and \p s2 are NULL<br> |
70 | | * -1 if \p s1 is NULL and \p s2 is not NULL<br> |
71 | | * 1 if \p s1 is not NULL and \p s2 is NULL |
72 | | * else it returns strcmp(\p s1, \p s2) |
73 | | * |
74 | | * This functions compares \p s1 and \p s2 in the same way as strcmp() does, |
75 | | * except that it also handles NULL values. |
76 | | */ |
77 | | int wget_strcmp(const char *s1, const char *s2) |
78 | 3.28k | { |
79 | 3.28k | if (!s1) { |
80 | 0 | if (!s2) |
81 | 0 | return 0; |
82 | 0 | else |
83 | 0 | return -1; |
84 | 3.28k | } else { |
85 | 3.28k | if (!s2) |
86 | 0 | return 1; |
87 | 3.28k | else |
88 | 3.28k | return strcmp(s1, s2); |
89 | 3.28k | } |
90 | 3.28k | } |
91 | | |
92 | | /** |
93 | | * \param[in] s1 String |
94 | | * \param[in] s2 String |
95 | | * \return |
96 | | * 0 if both \p s1 and \p s2 are NULL<br> |
97 | | * -1 if \p s1 is NULL and \p s2 is not NULL<br> |
98 | | * 1 if \p s1 is not NULL and \p s2 is NULL |
99 | | * else it returns strcasecmp(\p s1, \p s2) |
100 | | * |
101 | | * This functions compares \p s1 and \p s2 in the same way as strcasecmp() does, |
102 | | * except that it also handles NULL values. |
103 | | */ |
104 | | int wget_strcasecmp(const char *s1, const char *s2) |
105 | 9.69k | { |
106 | 9.69k | if (!s1) { |
107 | 8.05k | if (!s2) |
108 | 3.67k | return 0; |
109 | 4.38k | else |
110 | 4.38k | return -1; |
111 | 8.05k | } else { |
112 | 1.63k | if (!s2) |
113 | 10 | return 1; |
114 | 1.62k | else |
115 | 1.62k | return strcasecmp(s1, s2); |
116 | 1.63k | } |
117 | 9.69k | } |
118 | | |
119 | | /** |
120 | | * \param[in] s1 String |
121 | | * \param[in] s2 String |
122 | | * \return |
123 | | * 0 if both \p s1 and \p s2 are the same disregarding case for ASCII letters a-z<br> |
124 | | * 0 if both \p s1 and \p s2 are NULL<br> |
125 | | * <0 if \p s1 is NULL and \p s2 is not NULL or \p s1 is smaller than \p s2<br> |
126 | | * >0 if \p s2 is NULL and \p s1 is not NULL or \p s1 is greater than \p s2. |
127 | | * |
128 | | * This functions compares \p s1 and \p s2 as ASCII strings, case insensitive. |
129 | | * It also accepts NULL values. |
130 | | */ |
131 | | int wget_strcasecmp_ascii(const char *s1, const char *s2) |
132 | 898k | { |
133 | 898k | if (!s1) { |
134 | 0 | if (!s2) |
135 | 0 | return 0; |
136 | 0 | else |
137 | 0 | return -1; |
138 | 898k | } else { |
139 | 898k | if (!s2) |
140 | 0 | return 1; |
141 | 898k | else |
142 | 898k | return c_strcasecmp(s1, s2); |
143 | 898k | } |
144 | 898k | } |
145 | | |
146 | | /** |
147 | | * \param[in] s1 String |
148 | | * \param[in] s2 String |
149 | | * \param[in] n Max. number of chars to compare |
150 | | * \return |
151 | | * 0 if both \p s1 and \p s2 are the same disregarding case for ASCII letters a-z<br> |
152 | | * 0 if both \p s1 and \p s2 are NULL<br> |
153 | | * <0 if \p s1 is NULL and \p s2 is not NULL or \p s1 is smaller than \p s2<br> |
154 | | * >0 if \p s2 is NULL and \p s1 is not NULL or \p s1 is greater than \p s2. |
155 | | * |
156 | | * This functions compares \p s1 and \p s2 as ASCII strings, case insensitive, up to a max number of \p n chars. |
157 | | * It also accepts NULL values. |
158 | | */ |
159 | | int wget_strncasecmp_ascii(const char *s1, const char *s2, size_t n) |
160 | 1.34M | { |
161 | 1.34M | if (!s1) { |
162 | 0 | if (!s2) |
163 | 0 | return 0; |
164 | 0 | else |
165 | 0 | return -1; |
166 | 1.34M | } else { |
167 | 1.34M | if (!s2) |
168 | 0 | return 1; |
169 | 1.34M | else |
170 | 1.34M | return c_strncasecmp(s1, s2, n); |
171 | 1.34M | } |
172 | 1.34M | } |
173 | | |
174 | | /** |
175 | | * @param[in,out] s String to convert |
176 | | * \return Value of s |
177 | | * |
178 | | * Converts ASCII string \p s to lowercase in place. |
179 | | */ |
180 | | char *wget_strtolower(char *s) |
181 | 130k | { |
182 | 130k | if (s) { |
183 | 9.91M | for (char *d = s; *d; d++) { |
184 | 9.78M | if (c_isupper(*d)) |
185 | 1.19M | *d = (char) c_tolower(*d); |
186 | 9.78M | } |
187 | 129k | } |
188 | | |
189 | 130k | return s; |
190 | 130k | } |
191 | | |
192 | | /** |
193 | | * \param[in] s1 String |
194 | | * \param[in] s2 String |
195 | | * \param[in] n Max. number of chars to compare |
196 | | * \return |
197 | | * 0 if both \p s1 and \p s2 are the same or if both \p s1 and \p s2 are NULL<br> |
198 | | * <0 if \p s1 is NULL and \p s2 is not NULL or \p s1 is smaller than \p s2<br> |
199 | | * >0 if \p s2 is NULL and \p s1 is not NULL or \p s1 is greater than \p s2. |
200 | | * |
201 | | * This functions compares \p s1 and \p s2 in the same way as strncmp() does, |
202 | | * except that it also handles NULL values. |
203 | | */ |
204 | | int wget_strncmp(const char *s1, const char *s2, size_t n) |
205 | 0 | { |
206 | 0 | if (!s1) { |
207 | 0 | if (!s2) |
208 | 0 | return 0; |
209 | 0 | else |
210 | 0 | return -1; |
211 | 0 | } else { |
212 | 0 | if (!s2) |
213 | 0 | return 1; |
214 | 0 | else |
215 | 0 | return strncmp(s1, s2, n); |
216 | 0 | } |
217 | 0 | } |
218 | | |
219 | | /** |
220 | | * \param[in] s1 String |
221 | | * \param[in] s2 String |
222 | | * \param[in] n Max. number of chars to compare |
223 | | * \return |
224 | | * 0 if both \p s1 and \p s2 are the same disregarding case or if both \p s1 and \p s2 are NULL<br> |
225 | | * <0 if \p s1 is NULL and \p s2 is not NULL or \p s1 is smaller than \p s2<br> |
226 | | * >0 if \p s2 is NULL and \p s1 is not NULL or \p s1 is greater than \p s2. |
227 | | * |
228 | | * This functions compares \p s1 and \p s2 in the same way as strncasecmp() does, |
229 | | * except that it also handles NULL values. |
230 | | */ |
231 | | int wget_strncasecmp(const char *s1, const char *s2, size_t n) |
232 | 0 | { |
233 | 0 | if (!s1) { |
234 | 0 | if (!s2) |
235 | 0 | return 0; |
236 | 0 | else |
237 | 0 | return -1; |
238 | 0 | } else { |
239 | 0 | if (!s2) |
240 | 0 | return 1; |
241 | 0 | else |
242 | 0 | return strncasecmp(s1, s2, n); |
243 | 0 | } |
244 | 0 | } |
245 | | |
246 | | /** |
247 | | * \param[in] src Pointer to input buffer |
248 | | * \param[in] src_len Number of bytes to encode |
249 | | * \param[out] dst Buffer to hold the encoded string |
250 | | * \param[in] dst_size Size of \p dst in bytes |
251 | | * |
252 | | * Encodes a number of bytes into a lowercase hexadecimal C string. |
253 | | */ |
254 | | void wget_memtohex(const unsigned char *src, size_t src_len, char *dst, size_t dst_size) |
255 | 1.61k | { |
256 | 1.61k | size_t it; |
257 | 1.61k | int adjust = 0, c; |
258 | | |
259 | 1.61k | if (dst_size == 0 || !dst || !src) |
260 | 231 | return; |
261 | | |
262 | 1.38k | if (src_len * 2 >= dst_size) { |
263 | 1.01k | src_len = (dst_size - 1) / 2; |
264 | 1.01k | adjust = 1; |
265 | 1.01k | } |
266 | | |
267 | 15.7M | for (it = 0; it < src_len; it++, src++) { |
268 | 15.7M | *dst++ = (char) ((c = (*src >> 4)) >= 10 ? c + 'a' - 10 : c + '0'); |
269 | 15.7M | *dst++ = (char) ((c = (*src & 0xf)) >= 10 ? c + 'a' - 10 : c + '0'); |
270 | 15.7M | } |
271 | 1.38k | if (adjust && (dst_size & 1) == 0) |
272 | 585 | *dst++ = (char) ((c = (*src >> 4)) >= 10 ? c + 'a' - 10 : c + '0'); |
273 | | |
274 | 1.38k | *dst = 0; |
275 | 1.38k | } |
276 | | |
277 | | /** |
278 | | * \param[in] ms Number of milliseconds to sleep |
279 | | * |
280 | | * Pause for \p ms milliseconds. |
281 | | */ |
282 | | void wget_millisleep(int ms) |
283 | 231 | { |
284 | 231 | if (ms <= 0) |
285 | 231 | return; |
286 | | |
287 | 231 | nanosleep(&(struct timespec){ .tv_sec = ms / 1000, .tv_nsec = (ms % 1000) * 1000000 }, NULL); |
288 | 0 | } |
289 | | |
290 | | /** |
291 | | * Return the current milliseconds since the epoch. |
292 | | */ |
293 | | long long wget_get_timemillis(void) |
294 | 165k | { |
295 | 165k | struct timespec ts; |
296 | | |
297 | 165k | gettime(&ts); |
298 | | |
299 | 165k | return ts.tv_sec * 1000LL + ts.tv_nsec / 1000000; |
300 | 165k | } |
301 | | |
302 | | WGET_GCC_CONST |
303 | | static unsigned char unhex(unsigned char c) |
304 | 605k | { |
305 | 605k | return c <= '9' ? c - '0' : (c <= 'F' ? c - 'A' + 10 : c - 'a' + 10); |
306 | 605k | } |
307 | | |
308 | | /** |
309 | | * \param[in,out] src String to unescape |
310 | | * \return |
311 | | * 0 if the string did not change<br> |
312 | | * 1 if unescaping took place |
313 | | * |
314 | | * Does an inline percent unescape. |
315 | | * Each occurrence of %xx (x = hex digit) will converted into it's byte representation. |
316 | | */ |
317 | | int wget_percent_unescape(char *src) |
318 | 36.9k | { |
319 | 36.9k | int ret = 0; |
320 | 36.9k | unsigned char *s = (unsigned char *)src; // just a helper to avoid casting a lot |
321 | 36.9k | unsigned char *d = s; |
322 | | |
323 | 7.71M | while (*s) { |
324 | 7.68M | if (*s == '%') { |
325 | 765k | if (c_isxdigit(s[1]) && c_isxdigit(s[2])) { |
326 | 302k | *d++ = (unsigned char) (unhex(s[1]) << 4) | unhex(s[2]); |
327 | 302k | s += 3; |
328 | 302k | ret = 1; |
329 | 302k | continue; |
330 | 302k | } |
331 | 765k | } |
332 | | |
333 | 7.37M | *d++ = *s++; |
334 | 7.37M | } |
335 | 36.9k | *d = 0; |
336 | | |
337 | 36.9k | return ret; |
338 | 36.9k | } |
339 | | |
340 | | /** |
341 | | * \param[in] s String |
342 | | * \param[in] tail String |
343 | | * \return 1 if \p tail matches the end of \p s, 0 if not |
344 | | * |
345 | | * Checks if \p tail matches the end of the string \p s. |
346 | | */ |
347 | | int wget_match_tail(const char *s, const char *tail) |
348 | 0 | { |
349 | 0 | size_t s_len, tail_len; |
350 | |
|
351 | 0 | if ((s_len = strlen(s)) < (tail_len = strlen(tail))) |
352 | 0 | return 0; |
353 | | |
354 | 0 | const char *p = s + (s_len - tail_len); |
355 | |
|
356 | 0 | return !strcmp(p, tail); |
357 | 0 | } |
358 | | |
359 | | /** |
360 | | * \param[in] s String |
361 | | * \param[in] tail String |
362 | | * \return 1 if \p tail matches the end of \p s, 0 if not |
363 | | * |
364 | | * Checks if \p tail matches the end of the string \p s, disregarding the case, ASCII only. |
365 | | * |
366 | | */ |
367 | | int wget_match_tail_nocase(const char *s, const char *tail) |
368 | 0 | { |
369 | 0 | size_t s_len, tail_len; |
370 | |
|
371 | 0 | if ((s_len = strlen(s)) < (tail_len = strlen(tail))) |
372 | 0 | return 0; |
373 | | |
374 | 0 | const char *p = s + (s_len - tail_len); |
375 | |
|
376 | 0 | return !wget_strcasecmp_ascii(p, tail); |
377 | 0 | } |
378 | | |
379 | | /** |
380 | | * \param[in] str String to run glob() against |
381 | | * \param[in] n Length of string |
382 | | * \param[in] flags Flags to pass to glob() |
383 | | * \return Expanded string after running glob |
384 | | * |
385 | | * Finds a pathname by running glob(3) on the pattern in the first \p n bytes |
386 | | * of \p globstr. Returns a newly allocated string with the first \p n |
387 | | * bytes replaced with the matching pattern obtained via glob(3) if one was |
388 | | * found. Otherwise it returns NULL. |
389 | | */ |
390 | | char *wget_strnglob(const char *str, size_t n, int flags) |
391 | 15.3k | { |
392 | 15.3k | glob_t pglob; |
393 | 15.3k | char *expanded_str = NULL; |
394 | | |
395 | 15.3k | char *globstr = wget_strmemdup(str, n); |
396 | | |
397 | 15.3k | if (!globstr) |
398 | 0 | return NULL; |
399 | | |
400 | 15.3k | if (glob(globstr, flags, NULL, &pglob) == 0) { |
401 | 15.3k | if (pglob.gl_pathc > 0) { |
402 | 15.3k | expanded_str = wget_aprintf("%s%s", pglob.gl_pathv[0], str+n); |
403 | 15.3k | } |
404 | 15.3k | globfree(&pglob); |
405 | 15.3k | } |
406 | | |
407 | 15.3k | xfree(globstr); |
408 | 15.3k | return expanded_str; |
409 | 15.3k | } |
410 | | |
411 | | /** |
412 | | * \param[in] buf Result buffer |
413 | | * \param[in] bufsize Size of /p buf |
414 | | * \param[in] n Number to convert |
415 | | * \return Pointer to printable representation of \p n |
416 | | * |
417 | | * Returns a human readable representation of \p n. |
418 | | * \p n, a byte quantity, is converted to a human-readable abbreviated |
419 | | * form a la sizes printed by `ls -lh'. The result is written into the |
420 | | * provided buffer. |
421 | | * |
422 | | * Unlike `with_thousand_seps', this approximates to the nearest unit. |
423 | | * Quoting GNU libit: "Most people visually process strings of 3-4 |
424 | | * digits effectively, but longer strings of digits are more prone to |
425 | | * misinterpretation. Hence, converting to an abbreviated form |
426 | | * usually improves readability." |
427 | | * |
428 | | * This intentionally uses kilobyte (KB), megabyte (MB), etc. in their |
429 | | * original computer-related meaning of "powers of 1024". We don't |
430 | | * use the "*bibyte" names invented in 1998, and seldom used in |
431 | | * practice. Wikipedia's entry on "binary prefix" discusses this in |
432 | | * some detail. |
433 | | */ |
434 | | char *wget_human_readable(char *buf, size_t bufsize, uint64_t n) |
435 | 895 | { |
436 | | /* These suffixes are compatible with those of GNU `ls -lh'. */ |
437 | 895 | static const char powers[] = { |
438 | 895 | 'K', /* kilobyte, 2^10 bytes */ |
439 | 895 | 'M', /* megabyte, 2^20 bytes */ |
440 | 895 | 'G', /* gigabyte, 2^30 bytes */ |
441 | 895 | 'T', /* terabyte, 2^40 bytes */ |
442 | 895 | 'P', /* petabyte, 2^50 bytes */ |
443 | 895 | 'E', /* exabyte, 2^60 bytes */ |
444 | 895 | 'Z', /* zettabyte, 2^70 bytes */ |
445 | 895 | 'Y', /* yottabyte, 2^80 bytes */ |
446 | 895 | }; |
447 | | |
448 | | /* If the quantity is smaller than 1K, just print it. */ |
449 | 895 | if (n < 1024) { |
450 | 694 | wget_snprintf(buf, bufsize, "%u ", (unsigned int) n); |
451 | 694 | return buf; |
452 | 694 | } |
453 | | |
454 | | /* Loop over powers, dividing N with 1024 in each iteration. This |
455 | | works unchanged for all sizes of wgint, while still avoiding |
456 | | non-portable `long double' arithmetic. */ |
457 | 336 | for (unsigned i = 0; i < countof(powers); i++) { |
458 | | /* At each iteration N is greater than the *subsequent* power. |
459 | | That way N/1024.0 produces a decimal number in the units of *this* power. */ |
460 | 336 | if ((n / 1024) < 1024 || i == countof(powers) - 1) { |
461 | 201 | double val = n / 1024.0; |
462 | | /* Print values smaller than the accuracy level (acc) with (decimal) |
463 | | * decimal digits, and others without any decimals. */ |
464 | 201 | if (val < 1000) |
465 | 179 | wget_snprintf(buf, bufsize, "%d.%02d%c", (int) val , ((int) (val * 100)) % 100, powers[i]); |
466 | 22 | else |
467 | 22 | wget_snprintf(buf, bufsize, "%d%c", (int) (val + .5), powers[i]); |
468 | 201 | return buf; |
469 | 201 | } |
470 | 135 | n /= 1024; |
471 | 135 | } |
472 | | |
473 | 0 | return NULL; /* unreached */ |
474 | 201 | } |
475 | | |
476 | | /** |
477 | | * \param[out] width Number of columns in terminal |
478 | | * \param[out] height Number of rows in terminal |
479 | | * \return Upon successful completion, \p wget_get_screen_size will return 0, |
480 | | * and the values of \p width and \p height will be set accordingly. |
481 | | * If an error was encountered, the function will return -1 without touching |
482 | | * the values of \p width and \p height. |
483 | | * |
484 | | * Get the size of the terminal to which the output is currently printed |
485 | | * (stderr). This function accepts two int pointers and will set their values |
486 | | * to the width and height of the active terminal in number of columns. If |
487 | | * either of the parameter is NULL, its value will not be set by the function. |
488 | | */ |
489 | | #ifdef __OS2__ |
490 | | int wget_get_screen_size(int *width, int *height) |
491 | | { |
492 | | int wsz[2]; |
493 | | |
494 | | _scrsize (wsz); |
495 | | |
496 | | if (width) |
497 | | *width = wsz[0]; |
498 | | if (height) |
499 | | *height = wsz[1]; |
500 | | |
501 | | return 0; |
502 | | } |
503 | | #elif defined HAVE_IOCTL |
504 | | int wget_get_screen_size(int *width, int *height) |
505 | 852 | { |
506 | 852 | struct winsize wsz; |
507 | 852 | int fd = fileno(stderr); // TODO: progress bar is output to stdout so we probably should be using that !? |
508 | | |
509 | 852 | if (ioctl (fd, TIOCGWINSZ, &wsz) >= 0) { |
510 | 0 | if (width) |
511 | 0 | *width = wsz.ws_col; |
512 | 0 | if (height) |
513 | 0 | *height = wsz.ws_row; |
514 | |
|
515 | 0 | return 0; |
516 | 0 | } |
517 | | |
518 | 852 | return -1; |
519 | 852 | } |
520 | | #elif defined _WIN32 |
521 | | int wget_get_screen_size(int *width, int *height) |
522 | | { |
523 | | static CONSOLE_SCREEN_BUFFER_INFO csbiInfo; |
524 | | static HANDLE consoleHandle = NULL; |
525 | | |
526 | | if (consoleHandle == NULL) |
527 | | consoleHandle = GetStdHandle(STD_OUTPUT_HANDLE); |
528 | | |
529 | | if (!GetConsoleScreenBufferInfo(consoleHandle, &csbiInfo)) |
530 | | return -1; |
531 | | |
532 | | if (width) |
533 | | *width = csbiInfo.dwSize.X; |
534 | | if (height) |
535 | | *height = csbiInfo.dwSize.Y; |
536 | | |
537 | | return 0; |
538 | | } |
539 | | #else |
540 | | int wget_get_screen_size(WGET_GCC_UNUSED int *width, WGET_GCC_UNUSED int *height) |
541 | | { |
542 | | return -1; |
543 | | } |
544 | | #endif |
545 | | |
546 | | /**@}*/ |
547 | | |
548 | | /** |
549 | | * \param[in] path Input path to sanitize |
550 | | * \return Newly allocated sanitized path, or NULL on error |
551 | | * |
552 | | * Sanitizes the given file path by resolving ".", "..", and multiple slashes. |
553 | | * |
554 | | * Examples: |
555 | | * "/root/foo/../bar/.//x.txt" -> "/root/bar/x.txt" |
556 | | * "foo/../bar" -> "bar" |
557 | | * "/foo/./bar" -> "/foo/bar" |
558 | | * "/foo//bar" -> "/foo/bar" |
559 | | * "foo/bar/.." -> "foo" |
560 | | * ".." -> ".." (preserved, cannot resolve past root) |
561 | | * "/../foo" -> "/foo" (stays at root) |
562 | | * "" -> "." (empty path becomes current directory) |
563 | | * |
564 | | * The returned string must be freed with wget_free(). |
565 | | */ |
566 | | char * |
567 | | wget_path_sanitize(const char *path) |
568 | 155 | { |
569 | 155 | size_t path_len; |
570 | 155 | char *result, *dst; |
571 | 155 | const char *src, *end; |
572 | 155 | bool is_absolute; |
573 | | |
574 | 155 | if (!path) |
575 | 0 | return NULL; |
576 | | |
577 | 155 | path_len = strlen(path); |
578 | 155 | if (path_len == 0) |
579 | 0 | return wget_strdup("."); |
580 | | |
581 | 155 | result = wget_malloc(path_len + 1); |
582 | 155 | if (!result) |
583 | 0 | return NULL; |
584 | | |
585 | 155 | dst = result; |
586 | 155 | src = path; |
587 | 155 | end = path + path_len; |
588 | 155 | is_absolute = (*src == '/'); |
589 | | |
590 | 155 | if (is_absolute) |
591 | 155 | *dst++ = *src++; |
592 | | |
593 | 7.34k | while (src < end) { |
594 | 15.3k | while (src < end && *src == '/') |
595 | 8.18k | src++; |
596 | | |
597 | 7.20k | if (src >= end) |
598 | 10 | break; |
599 | | |
600 | 7.19k | if (src[0] == '.') { |
601 | 3.41k | if (src + 1 == end || src[1] == '/') { |
602 | | // "." - current directory, skip it |
603 | 501 | src++; |
604 | 501 | continue; |
605 | 501 | } |
606 | | |
607 | 2.91k | if (src[1] == '.' && (src + 2 == end || src[2] == '/')) { |
608 | | // ".." |
609 | 1.43k | src += 2; |
610 | | |
611 | | // go back one directory if possible |
612 | 1.43k | if (dst > result) { |
613 | 1.43k | if (is_absolute && dst == result + 1) { |
614 | | // at root directory, cannot go up |
615 | 754 | } else { |
616 | | // move back to previous slash |
617 | 754 | dst--; |
618 | 4.32k | while (dst > result && dst[-1] != '/') |
619 | 3.56k | dst--; |
620 | 754 | } |
621 | 1.43k | } else if (!is_absolute) { |
622 | | // keep ".." if we can't go up |
623 | 0 | *dst++ = '.'; |
624 | 0 | *dst++ = '.'; |
625 | 0 | if (src < end && *src == '/') |
626 | 0 | *dst++ = *src++; |
627 | 0 | } |
628 | 1.43k | continue; |
629 | 1.43k | } |
630 | 2.91k | } |
631 | | |
632 | | // copy path component |
633 | 5.25k | if (dst > result && dst[-1] != '/') |
634 | 4.63k | *dst++ = '/'; |
635 | | |
636 | 39.0k | while (src < end && *src != '/') |
637 | 33.7k | *dst++ = *src++; |
638 | 5.25k | } |
639 | | |
640 | | // remove trailing slash except for root |
641 | 155 | if (dst > result + 1 && dst[-1] == '/') |
642 | 12 | dst--; |
643 | | |
644 | 155 | *dst = '\0'; |
645 | | |
646 | | // edge case |
647 | 155 | if (dst == result) { |
648 | 0 | xfree(result); |
649 | 0 | return wget_strdup("."); |
650 | 0 | } |
651 | | |
652 | 155 | return result; |
653 | 155 | } |
654 | | |
655 | | /**@}*/ |