1 /***************************************************************************
3 * Project ___| | | | _ \| |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
8 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
12 * are also available at https://curl.se/docs/copyright.html.
14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 ***************************************************************************/
23 #include "curl_setup.h"
25 #include <curl/curl.h>
28 #include "curl_memory.h"
30 /* The last #include file should be: */
34 * "Remove Dot Segments"
35 * https://datatracker.ietf.org/doc/html/rfc3986#section-5.2.4
42 * This function gets a null-terminated path with dot and dotdot sequences
43 * passed in and strips them off according to the rules in RFC 3986 section
46 * The function handles a query part ('?' + stuff) appended but it expects
47 * that fragments ('#' + stuff) have already been cut off.
51 * an allocated dedotdotified output string
53 char *Curl_dedotdotify(const char *input)
55 size_t inlen = strlen(input);
57 size_t clen = inlen; /* the length of the cloned input */
58 char *out = malloc(inlen + 1);
63 return NULL; /* out of memory */
65 *out = 0; /* null-terminates, for inputs like "./" */
67 /* get a cloned copy of the input */
68 clone = strdup(input);
77 /* zero length string, return that */
83 * To handle query-parts properly, we must find it and remove it during the
84 * dotdot-operation and then append it again at the end to the output
87 queryp = strchr(clone, '?');
93 /* A. If the input buffer begins with a prefix of "../" or "./", then
94 remove that prefix from the input buffer; otherwise, */
96 if(!strncmp("./", clone, 2)) {
100 else if(!strncmp("../", clone, 3)) {
105 /* B. if the input buffer begins with a prefix of "/./" or "/.", where
106 "." is a complete path segment, then replace that prefix with "/" in
107 the input buffer; otherwise, */
108 else if(!strncmp("/./", clone, 3)) {
112 else if(!strcmp("/.", clone)) {
118 /* C. if the input buffer begins with a prefix of "/../" or "/..", where
119 ".." is a complete path segment, then replace that prefix with "/" in
120 the input buffer and remove the last segment and its preceding "/" (if
121 any) from the output buffer; otherwise, */
123 else if(!strncmp("/../", clone, 4)) {
126 /* remove the last segment from the output buffer */
127 while(outptr > out) {
132 *outptr = 0; /* null-terminate where it stops */
134 else if(!strcmp("/..", clone)) {
138 /* remove the last segment from the output buffer */
139 while(outptr > out) {
144 *outptr = 0; /* null-terminate where it stops */
147 /* D. if the input buffer consists only of "." or "..", then remove
148 that from the input buffer; otherwise, */
150 else if(!strcmp(".", clone) || !strcmp("..", clone)) {
156 /* E. move the first path segment in the input buffer to the end of
157 the output buffer, including the initial "/" character (if any) and
158 any subsequent characters up to, but not including, the next "/"
159 character or the end of the input buffer. */
162 *outptr++ = *clone++;
164 } while(*clone && (*clone != '/'));
172 /* There was a query part, append that to the output. The 'clone' string
173 may now have been altered so we copy from the original input string
174 from the correct index. */
175 size_t oindex = queryp - orgclone;
176 qlen = strlen(&input[oindex]);
177 memcpy(outptr, &input[oindex], qlen + 1); /* include the end zero byte */