VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/path/RTPathAppendEx.cpp.h@ 102948

Last change on this file since 102948 was 98103, checked in by vboxsync, 2 years ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
  • Property svn:mergeinfo set to (toggle deleted branches)
File size: 5.2 KB
Line 
1/* $Id: RTPathAppendEx.cpp.h 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * IPRT - rtPathAppendEx - Code Template.
4 */
5
6/*
7 * Copyright (C) 2009-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * The contents of this file may alternatively be used under the terms
26 * of the Common Development and Distribution License Version 1.0
27 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28 * in the VirtualBox distribution, in which case the provisions of the
29 * CDDL are applicable instead of those of the GPL.
30 *
31 * You may elect to license modified versions of this file under the
32 * terms and conditions of either the GPL or the CDDL or both.
33 *
34 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35 */
36
37
38/**
39 * Figures the length of the root part of the path.
40 *
41 * @returns length of the root specifier.
42 * @retval 0 if none.
43 *
44 * @param pszPath The path to investigate.
45 *
46 * @remarks Unnecessary root slashes will not be counted. The caller will have
47 * to deal with it where it matters. (Unlike rtPathRootSpecLen which
48 * counts them.)
49 */
50DECLINLINE(size_t) RTPATH_STYLE_FN(rtPathRootSpecLen2)(const char *pszPath)
51{
52 /* fend of wildlife. */
53 if (!pszPath)
54 return 0;
55
56 /* Root slash? */
57 if (RTPATH_IS_SLASH(pszPath[0]))
58 {
59#if RTPATH_STYLE == RTPATH_STR_F_STYLE_DOS
60 /* UNC? */
61 if ( RTPATH_IS_SLASH(pszPath[1])
62 && pszPath[2] != '\0'
63 && !RTPATH_IS_SLASH(pszPath[2]))
64 {
65 /* Find the end of the server name. */
66 const char *pszEnd = pszPath + 2;
67 pszEnd += 2;
68 while ( *pszEnd != '\0'
69 && !RTPATH_IS_SLASH(*pszEnd))
70 pszEnd++;
71 if (RTPATH_IS_SLASH(*pszEnd))
72 {
73 pszEnd++;
74 while (RTPATH_IS_SLASH(*pszEnd))
75 pszEnd++;
76
77 /* Find the end of the share name */
78 while ( *pszEnd != '\0'
79 && !RTPATH_IS_SLASH(*pszEnd))
80 pszEnd++;
81 if (RTPATH_IS_SLASH(*pszEnd))
82 pszEnd++;
83 return pszPath - pszEnd;
84 }
85 }
86#endif
87 return 1;
88 }
89
90#if RTPATH_STYLE == RTPATH_STR_F_STYLE_DOS
91 /* Drive specifier? */
92 if ( pszPath[0] != '\0'
93 && pszPath[1] == ':'
94 && RT_C_IS_ALPHA(pszPath[0]))
95 {
96 if (RTPATH_IS_SLASH(pszPath[2]))
97 return 3;
98 return 2;
99 }
100#endif
101 return 0;
102}
103
104
105/** Internal worker for RTPathAppendEx. */
106DECLINLINE(int) RTPATH_STYLE_FN(rtPathAppendEx)(char *pszPath, size_t cbPathDst, char *pszPathEnd,
107 const char *pszAppend, size_t cchAppend)
108{
109 /*
110 * Balance slashes and check for buffer overflow.
111 */
112 if (!RTPATH_IS_SLASH(pszPathEnd[-1]))
113 {
114 if (!RTPATH_IS_SLASH(pszAppend[0]))
115 {
116#if RTPATH_STYLE == RTPATH_STR_F_STYLE_DOS
117 if ( (size_t)(pszPathEnd - pszPath) == 2
118 && pszPath[1] == ':'
119 && RT_C_IS_ALPHA(pszPath[0]))
120 {
121 if ((size_t)(pszPathEnd - pszPath) + cchAppend >= cbPathDst)
122 return VERR_BUFFER_OVERFLOW;
123 }
124 else
125#endif
126 {
127 if ((size_t)(pszPathEnd - pszPath) + 1 + cchAppend >= cbPathDst)
128 return VERR_BUFFER_OVERFLOW;
129 *pszPathEnd++ = RTPATH_SLASH;
130 }
131 }
132 else
133 {
134 /* One slash is sufficient at this point. */
135 while (cchAppend > 1 && RTPATH_IS_SLASH(pszAppend[1]))
136 pszAppend++, cchAppend--;
137
138 if ((size_t)(pszPathEnd - pszPath) + cchAppend >= cbPathDst)
139 return VERR_BUFFER_OVERFLOW;
140 }
141 }
142 else
143 {
144 /* No slashes needed in the appended bit. */
145 while (cchAppend && RTPATH_IS_SLASH(*pszAppend))
146 pszAppend++, cchAppend--;
147
148 /* In the leading path we can skip unnecessary trailing slashes, but
149 be sure to leave one. */
150 size_t const cchRoot = RTPATH_STYLE_FN(rtPathRootSpecLen2)(pszPath);
151 while ( (size_t)(pszPathEnd - pszPath) > RT_MAX(1, cchRoot)
152 && RTPATH_IS_SLASH(pszPathEnd[-2]))
153 pszPathEnd--;
154
155 if ((size_t)(pszPathEnd - pszPath) + cchAppend >= cbPathDst)
156 return VERR_BUFFER_OVERFLOW;
157 }
158
159 /*
160 * What remains now is the just the copying.
161 */
162 memcpy(pszPathEnd, pszAppend, cchAppend);
163 pszPathEnd[cchAppend] = '\0';
164 return VINF_SUCCESS;
165}
166
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette