2 * PROJECT: ReactOS Kernel
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: ntoskrnl/fsrtl/name.c
5 * PURPOSE: Provides DBCS parsing and other support routines for FSDs
6 * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
7 * Pierre Schweitzer (pierre.schweitzer@reactos.org)
10 /* INCLUDES ******************************************************************/
16 /* PUBLIC FUNCTIONS **********************************************************/
19 * @name FsRtlDissectDbcs
22 * Dissects a given path name into first and remaining part.
25 * ANSI string to dissect.
28 * Pointer to user supplied ANSI_STRING, that will later point
29 * to the first part of the original name.
31 * @param RemainingPart
32 * Pointer to user supplied ANSI_STRING, that will later point
33 * to the remaining part of the original name.
38 * Name: \test1\test2\test3
40 * RemainingPart: test2\test3
45 FsRtlDissectDbcs(IN ANSI_STRING Name
,
46 OUT PANSI_STRING FirstPart
,
47 OUT PANSI_STRING RemainingPart
)
49 USHORT FirstPosition
, i
;
50 USHORT SkipFirstSlash
= 0;
53 /* Zero the strings before continuing */
54 RtlZeroMemory(FirstPart
, sizeof(ANSI_STRING
));
55 RtlZeroMemory(RemainingPart
, sizeof(ANSI_STRING
));
57 /* Just quit if the string is empty */
58 if (!Name
.Length
) return;
60 /* Find first backslash */
61 FirstPosition
= Name
.Length
;
62 for (i
= 0; i
< Name
.Length
; i
++)
64 /* First make sure the character it's not the Lead DBCS */
65 if (FsRtlIsLeadDbcsCharacter(Name
.Buffer
[i
]))
69 /* If we found one... */
70 else if (Name
.Buffer
[i
] == '\\')
72 /* If it begins string, just notice it and continue */
79 /* Else, save its position and break out of the loop */
86 /* Set up the first result string */
87 FirstPart
->Buffer
= Name
.Buffer
+ SkipFirstSlash
;
88 FirstPart
->Length
= (FirstPosition
- SkipFirstSlash
);
89 FirstPart
->MaximumLength
= FirstPart
->Length
;
91 /* And second one, if necessary */
92 if (FirstPosition
< (Name
.Length
))
94 RemainingPart
->Buffer
= Name
.Buffer
+ FirstPosition
+ 1;
95 RemainingPart
->Length
= Name
.Length
- (FirstPosition
+ 1);
96 RemainingPart
->MaximumLength
= RemainingPart
->Length
;
101 * @name FsRtlDoesDbcsContainWildCards
104 * Returns TRUE if the given DbcsName contains wildcards such as *, ?,
105 * ANSI_DOS_STAR, ANSI_DOS_DOT, and ANSI_DOS_QM
110 * @return TRUE if there are wildcards, FALSE otherwise
117 FsRtlDoesDbcsContainWildCards(IN PANSI_STRING Name
)
122 /* Check every character */
123 for (i
= 0; i
< Name
->Length
; i
++)
125 /* First make sure it's not the Lead DBCS */
126 if (FsRtlIsLeadDbcsCharacter(Name
->Buffer
[i
]))
130 else if (FsRtlIsAnsiCharacterWild(Name
->Buffer
[i
]))
132 /* Now return if it has a wildcard */
137 /* We didn't return above...so none found */
142 * @name FsRtlIsDbcsInExpression
145 * Check if the Name string is in the Expression string.
148 * The string in which we've to find Name. It can contains wildcards
151 * The string to find. It cannot contain wildcards.
153 * @return TRUE if Name is found in Expression, FALSE otherwise
160 FsRtlIsDbcsInExpression(IN PANSI_STRING Expression
,
161 IN PANSI_STRING Name
)
163 USHORT ExpressionPosition
= 0, NamePosition
= 0, MatchingChars
, StarFound
= MAXUSHORT
;
166 ASSERT(Name
->Length
);
167 ASSERT(Expression
->Length
);
168 ASSERT(!FsRtlDoesDbcsContainWildCards(Name
));
170 while (NamePosition
< Name
->Length
&& ExpressionPosition
< Expression
->Length
)
172 if ((Expression
->Buffer
[ExpressionPosition
] == Name
->Buffer
[NamePosition
]))
175 ExpressionPosition
++;
177 else if (StarFound
!= MAXUSHORT
&& (Expression
->Buffer
[StarFound
+ 1] == '*' ||
178 Expression
->Buffer
[StarFound
+ 1] == '?' || Expression
->Buffer
[StarFound
+ 1] == ANSI_DOS_DOT
))
180 ExpressionPosition
= StarFound
+ 1;
181 switch (Expression
->Buffer
[ExpressionPosition
])
184 StarFound
= MAXUSHORT
;
188 ExpressionPosition
++;
189 MatchingChars
= NamePosition
;
190 while (Name
->Buffer
[NamePosition
] != Expression
->Buffer
[ExpressionPosition
] &&
191 NamePosition
< Name
->Length
)
196 if (NamePosition
- MatchingChars
> 0)
198 StarFound
= MAXUSHORT
;
203 while (Name
->Buffer
[NamePosition
] != '.' && NamePosition
< Name
->Length
)
207 ExpressionPosition
++;
208 StarFound
= MAXUSHORT
;
212 /* Should never happen */
216 else if ((Expression
->Buffer
[ExpressionPosition
] == '?') || (Expression
->Buffer
[ExpressionPosition
] == ANSI_DOS_QM
) ||
217 (Expression
->Buffer
[ExpressionPosition
] == ANSI_DOS_DOT
&& Name
->Buffer
[NamePosition
] == '.'))
220 ExpressionPosition
++;
221 StarFound
= MAXUSHORT
;
223 else if (Expression
->Buffer
[ExpressionPosition
] == '*')
225 StarFound
= ExpressionPosition
++;
226 if (ExpressionPosition
== Expression
->Length
)
228 NamePosition
= Name
->Length
;
232 else if (Expression
->Buffer
[ExpressionPosition
] == ANSI_DOS_STAR
)
234 StarFound
= MAXUSHORT
;
235 MatchingChars
= NamePosition
;
236 while (MatchingChars
< Name
->Length
)
238 if (Name
->Buffer
[MatchingChars
] == '.')
240 NamePosition
= MatchingChars
;
244 ExpressionPosition
++;
246 else if (StarFound
!= MAXUSHORT
)
248 ExpressionPosition
= StarFound
+ 1;
249 while (Name
->Buffer
[NamePosition
] != Expression
->Buffer
[ExpressionPosition
] &&
250 NamePosition
< Name
->Length
)
260 if (ExpressionPosition
+ 1 == Expression
->Length
&& NamePosition
== Name
->Length
&&
261 Expression
->Buffer
[ExpressionPosition
] == ANSI_DOS_DOT
)
263 ExpressionPosition
++;
266 return (ExpressionPosition
== Expression
->Length
&& NamePosition
== Name
->Length
);
270 * @name FsRtlIsFatDbcsLegal
273 * Returns TRUE if the given DbcsName is a valid FAT filename (in 8.3)
276 * The filename to check. It can also contains pathname.
278 * @param WildCardsPermissible
279 * If this is set to FALSE and if filename contains wildcard, the function
282 * @param PathNamePermissible
283 * If this is set to FALSE and if the filename comes with a pathname, the
286 * @param LeadingBackslashPermissible
287 * If this is set to FALSE and if the filename starts with a backslash, the
290 * @return TRUE if the DbcsName is legal, FALSE otherwise
297 FsRtlIsFatDbcsLegal(IN ANSI_STRING DbcsName
,
298 IN BOOLEAN WildCardsPermissible
,
299 IN BOOLEAN PathNamePermissible
,
300 IN BOOLEAN LeadingBackslashPermissible
)
302 ANSI_STRING FirstPart
, RemainingPart
, Name
;
307 /* Just quit if the string is empty */
308 if (!DbcsName
.Length
)
311 /* DbcsName wasn't supposed to be started with \ */
312 if (!LeadingBackslashPermissible
&& DbcsName
.Buffer
[0] == '\\')
314 /* DbcsName was allowed to be started with \, but now, remove it */
315 else if (LeadingBackslashPermissible
&& DbcsName
.Buffer
[0] == '\\')
317 DbcsName
.Buffer
= DbcsName
.Buffer
+ 1;
318 DbcsName
.Length
= DbcsName
.Length
- 1;
319 DbcsName
.MaximumLength
= DbcsName
.MaximumLength
- 1;
322 /* Extract first part of the DbcsName to work on */
323 FsRtlDissectDbcs(DbcsName
, &FirstPart
, &RemainingPart
);
324 while (FirstPart
.Length
> 0)
326 /* Reset dots count */
329 /* Accept special filename if wildcards are allowed */
330 if (WildCardsPermissible
&& (FirstPart
.Length
== 1 || FirstPart
.Length
== 2) && FirstPart
.Buffer
[0] == '.')
332 if (FirstPart
.Length
== 2)
334 if (FirstPart
.Buffer
[1] == '.')
345 /* Filename must be 8.3 filename */
346 if (FirstPart
.Length
< 3 || FirstPart
.Length
> 12)
349 /* Now, we will parse the filename to find everything bad in */
350 for (i
= 0; i
< FirstPart
.Length
; i
++)
352 /* First make sure the character it's not the Lead DBCS */
353 if (FsRtlIsLeadDbcsCharacter(FirstPart
.Buffer
[i
]))
355 if (i
== (FirstPart
.Length
) - 1)
359 /* Then check for bad characters */
360 else if (!FsRtlIsAnsiCharacterLegalFat(FirstPart
.Buffer
[i
], WildCardsPermissible
))
364 else if (FirstPart
.Buffer
[i
] == '.')
366 /* Filename can only contain one dot */
372 /* We mustn't have spaces before dot or at the end of the filename
373 * and no dot at the beginning of the filename */
374 if ((i
== (FirstPart
.Length
) - 1) || i
== 0)
378 if (FirstPart
.Buffer
[i
- 1] == ' ')
381 /* Filename must be 8.3 filename and not 3.8 filename */
382 if ((FirstPart
.Length
- 1) - i
> 3)
387 /* Filename mustn't finish with a space */
388 if (FirstPart
.Buffer
[FirstPart
.Length
- 1] == ' ')
392 /* Preparing next loop */
393 Name
.Buffer
= RemainingPart
.Buffer
;
394 Name
.Length
= RemainingPart
.Length
;
395 Name
.MaximumLength
= RemainingPart
.MaximumLength
;
397 /* Call once again our dissect function */
398 FsRtlDissectDbcs(Name
, &FirstPart
, &RemainingPart
);
400 /* We found a pathname, it wasn't allowed */
401 if (FirstPart
.Length
> 0 && !PathNamePermissible
)
408 * @name FsRtlIsHpfsDbcsLegal
411 * Returns TRUE if the given DbcsName is a valid HPFS filename
414 * The filename to check. It can also contains pathname.
416 * @param WildCardsPermissible
417 * If this is set to FALSE and if filename contains wildcard, the function
420 * @param PathNamePermissible
421 * If this is set to FALSE and if the filename comes with a pathname, the
424 * @param LeadingBackslashPermissible
425 * If this is set to FALSE and if the filename starts with a backslash, the
428 * @return TRUE if the DbcsName is legal, FALSE otherwise
435 FsRtlIsHpfsDbcsLegal(IN ANSI_STRING DbcsName
,
436 IN BOOLEAN WildCardsPermissible
,
437 IN BOOLEAN PathNamePermissible
,
438 IN BOOLEAN LeadingBackslashPermissible
)
440 ANSI_STRING FirstPart
, RemainingPart
, Name
;
444 /* Just quit if the string is empty */
445 if (!DbcsName
.Length
)
448 /* DbcsName wasn't supposed to be started with \ */
449 if (!LeadingBackslashPermissible
&& DbcsName
.Buffer
[0] == '\\')
451 /* DbcsName was allowed to be started with \, but now, remove it */
452 else if (LeadingBackslashPermissible
&& DbcsName
.Buffer
[0] == '\\')
454 DbcsName
.Buffer
= DbcsName
.Buffer
+ 1;
455 DbcsName
.Length
= DbcsName
.Length
- 1;
456 DbcsName
.MaximumLength
= DbcsName
.MaximumLength
- 1;
459 /* Extract first part of the DbcsName to work on */
460 FsRtlDissectDbcs(DbcsName
, &FirstPart
, &RemainingPart
);
461 while (FirstPart
.Length
> 0)
463 /* Accept special filename if wildcards are allowed */
464 if (WildCardsPermissible
&& (FirstPart
.Length
== 1 || FirstPart
.Length
== 2) && FirstPart
.Buffer
[0] == '.')
466 if (FirstPart
.Length
== 2)
468 if (FirstPart
.Buffer
[1] == '.')
479 /* Filename must be 255 bytes maximum */
480 if (FirstPart
.Length
> 255)
483 /* Now, we will parse the filename to find everything bad in */
484 for (i
= 0; i
< FirstPart
.Length
; i
++)
486 /* First make sure the character it's not the Lead DBCS */
487 if (FsRtlIsLeadDbcsCharacter(FirstPart
.Buffer
[i
]))
489 if (i
== (FirstPart
.Length
) - 1)
493 /* Then check for bad characters */
494 else if (!FsRtlIsAnsiCharacterLegalHpfs(FirstPart
.Buffer
[i
], WildCardsPermissible
))
500 /* Filename mustn't finish with a space or a dot */
501 if ((FirstPart
.Buffer
[FirstPart
.Length
- 1] == ' ') ||
502 (FirstPart
.Buffer
[FirstPart
.Length
- 1] == '.'))
506 /* Preparing next loop */
507 Name
.Buffer
= RemainingPart
.Buffer
;
508 Name
.Length
= RemainingPart
.Length
;
509 Name
.MaximumLength
= RemainingPart
.MaximumLength
;
511 /* Call once again our dissect function */
512 FsRtlDissectDbcs(Name
, &FirstPart
, &RemainingPart
);
514 /* We found a pathname, it wasn't allowed */
515 if (FirstPart
.Length
> 0 && !PathNamePermissible
)