2014-02-17 11:00:51 +01:00
|
|
|
|
/* Copyright (c) 2000, 2012, Oracle and/or its affiliates
|
|
|
|
|
Copyright (c) 2012, 2014, SkySQL Ab
|
2005-05-20 23:04:10 +02:00
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2006-12-23 20:17:15 +01:00
|
|
|
|
the Free Software Foundation; version 2 of the License.
|
2005-05-20 23:04:10 +02:00
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
2019-05-11 20:29:06 +02:00
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA */
|
2005-05-20 23:04:10 +02:00
|
|
|
|
|
|
|
|
|
#include "mysys_priv.h"
|
2005-05-25 11:56:47 +02:00
|
|
|
|
#include <m_string.h>
|
2005-05-20 23:04:10 +02:00
|
|
|
|
|
2021-06-06 13:21:03 +02:00
|
|
|
|
#ifdef _WIN32
|
2005-05-20 23:04:10 +02:00
|
|
|
|
|
|
|
|
|
/*
|
2005-05-25 11:56:47 +02:00
|
|
|
|
Check a file or path for accessability.
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
|
file_access()
|
|
|
|
|
path Path to file
|
|
|
|
|
amode Access method
|
|
|
|
|
|
|
|
|
|
RETURN VALUES
|
|
|
|
|
0 ok
|
|
|
|
|
-1 error (We use -1 as my_access is mapped to access on other platforms)
|
|
|
|
|
*/
|
|
|
|
|
|
2005-05-20 23:04:10 +02:00
|
|
|
|
int my_access(const char *path, int amode)
|
|
|
|
|
{
|
2012-02-27 19:20:18 +01:00
|
|
|
|
DWORD attributes;
|
|
|
|
|
|
|
|
|
|
attributes = GetFileAttributes(path);
|
|
|
|
|
if (attributes == INVALID_FILE_ATTRIBUTES ||
|
2018-02-20 22:17:36 +01:00
|
|
|
|
((attributes & FILE_ATTRIBUTE_READONLY) && (amode & W_OK)))
|
2005-05-25 11:56:47 +02:00
|
|
|
|
{
|
|
|
|
|
my_errno= errno= EACCES;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
2005-05-20 23:04:10 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-06 13:21:03 +02:00
|
|
|
|
#endif /* _WIN32 */
|
2005-05-25 11:56:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
List of file names that causes problem on windows
|
|
|
|
|
|
|
|
|
|
NOTE that one can also not have file names of type CON.TXT
|
2006-04-11 15:16:14 +02:00
|
|
|
|
|
|
|
|
|
NOTE: it is important to keep "CLOCK$" on the first place,
|
|
|
|
|
we skip it in check_if_legal_tablename.
|
2005-05-25 11:56:47 +02:00
|
|
|
|
*/
|
|
|
|
|
static const char *reserved_names[]=
|
|
|
|
|
{
|
2006-04-11 15:16:14 +02:00
|
|
|
|
"CLOCK$",
|
|
|
|
|
"CON", "PRN", "AUX", "NUL",
|
|
|
|
|
"COM1", "COM2", "COM3", "COM4", "COM5", "COM6", "COM7", "COM8", "COM9",
|
|
|
|
|
"LPT1", "LPT2", "LPT3", "LPT4", "LPT5", "LPT6", "LPT7", "LPT8", "LPT9",
|
2005-05-25 11:56:47 +02:00
|
|
|
|
NullS
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define MAX_RESERVED_NAME_LENGTH 6
|
|
|
|
|
|
2006-04-11 15:16:14 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
Looks up a null-terminated string in a list,
|
|
|
|
|
case insensitively.
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
|
str_list_find()
|
|
|
|
|
list list of items
|
|
|
|
|
str item to find
|
|
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
|
0 ok
|
|
|
|
|
1 reserved file name
|
|
|
|
|
*/
|
|
|
|
|
static int str_list_find(const char **list, const char *str)
|
|
|
|
|
{
|
|
|
|
|
const char **name;
|
|
|
|
|
for (name= list; *name; name++)
|
|
|
|
|
{
|
2023-04-26 13:27:01 +02:00
|
|
|
|
if (!my_strcasecmp_latin1(*name, str))
|
2006-04-11 15:16:14 +02:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
A map for faster reserved_names lookup,
|
|
|
|
|
helps to avoid loops in many cases.
|
|
|
|
|
1 - can be the first letter
|
|
|
|
|
2 - can be the second letter
|
|
|
|
|
4 - can be the third letter
|
|
|
|
|
*/
|
|
|
|
|
static char reserved_map[256]=
|
|
|
|
|
{
|
|
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* ................ */
|
|
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* ................ */
|
|
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* !"#$%&'()*+,-./ */
|
|
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0123456789:;<=>? */
|
|
|
|
|
0,1,0,1,0,0,0,0,0,0,0,0,7,4,5,2, /* @ABCDEFGHIJKLMNO */
|
|
|
|
|
3,0,2,0,4,2,0,0,4,0,0,0,0,0,0,0, /* PQRSTUVWXYZ[\]^_ */
|
|
|
|
|
0,1,0,1,0,0,0,0,0,0,0,0,7,4,5,2, /* bcdefghijklmno */
|
|
|
|
|
3,0,2,0,4,2,0,0,4,0,0,0,0,0,0,0, /* pqrstuvwxyz{|}~. */
|
|
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* ................ */
|
|
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* ................ */
|
|
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* ................ */
|
|
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* ................ */
|
|
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* ................ */
|
|
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* ................ */
|
|
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* ................ */
|
|
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* ................ */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
Check if a table name may cause problems
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
|
check_if_legal_tablename
|
|
|
|
|
name Table name (without any extensions)
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
We don't check 'CLOCK$' because dollar sign is encoded as @0024,
|
|
|
|
|
making table file name 'CLOCK@0024', which is safe.
|
|
|
|
|
This is why we start lookup from the second element
|
|
|
|
|
(i.e. &reserver_name[1])
|
|
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
|
0 ok
|
|
|
|
|
1 reserved file name
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
int check_if_legal_tablename(const char *name)
|
|
|
|
|
{
|
|
|
|
|
DBUG_ENTER("check_if_legal_tablename");
|
|
|
|
|
DBUG_RETURN((reserved_map[(uchar) name[0]] & 1) &&
|
|
|
|
|
(reserved_map[(uchar) name[1]] & 2) &&
|
|
|
|
|
(reserved_map[(uchar) name[2]] & 4) &&
|
|
|
|
|
str_list_find(&reserved_names[1], name));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2021-06-06 13:21:03 +02:00
|
|
|
|
#ifdef _WIN32
|
2013-07-05 17:40:34 +02:00
|
|
|
|
/**
|
|
|
|
|
Checks if the drive letter supplied is valid or not. Valid drive
|
|
|
|
|
letters are A to Z, both lower case and upper case.
|
|
|
|
|
|
|
|
|
|
@param drive_letter : The drive letter to validate.
|
|
|
|
|
|
|
|
|
|
@return TRUE if the drive exists, FALSE otherwise.
|
|
|
|
|
*/
|
|
|
|
|
static my_bool does_drive_exists(char drive_letter)
|
|
|
|
|
{
|
|
|
|
|
DWORD drive_mask= GetLogicalDrives();
|
|
|
|
|
drive_letter= toupper(drive_letter);
|
|
|
|
|
|
|
|
|
|
return (drive_letter >= 'A' && drive_letter <= 'Z') &&
|
|
|
|
|
(drive_mask & (0x1 << (drive_letter - 'A')));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
Verifies if the file name supplied is allowed or not. On Windows
|
|
|
|
|
file names with a colon (:) are not allowed because such file names
|
|
|
|
|
store data in Alternate Data Streams which can be used to hide
|
|
|
|
|
the data.
|
2016-09-23 18:55:44 +02:00
|
|
|
|
Apart from colon, other characters that are not allowed in filenames
|
|
|
|
|
on Windows are greater/less sign, double quotes, forward slash, backslash,
|
|
|
|
|
pipe and star characters.
|
|
|
|
|
|
|
|
|
|
See MSDN documentation on filename restrictions.
|
2013-07-05 17:40:34 +02:00
|
|
|
|
|
|
|
|
|
@param name contains the file name with or without path
|
|
|
|
|
@param length contains the length of file name
|
|
|
|
|
@param allow_current_dir TRUE if paths like C:foobar are allowed,
|
|
|
|
|
FALSE otherwise
|
|
|
|
|
|
|
|
|
|
@return TRUE if the file name is allowed, FALSE otherwise.
|
|
|
|
|
*/
|
2016-10-21 18:20:47 +02:00
|
|
|
|
#define ILLEGAL_FILENAME_CHARS "<>:\"/\\|?*"
|
2016-09-23 18:55:44 +02:00
|
|
|
|
|
2013-07-05 17:40:34 +02:00
|
|
|
|
my_bool is_filename_allowed(const char *name __attribute__((unused)),
|
|
|
|
|
size_t length __attribute__((unused)),
|
|
|
|
|
my_bool allow_current_dir __attribute__((unused)))
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
For Windows, check if the file name contains : character.
|
|
|
|
|
Start from end of path and search if the file name contains :
|
|
|
|
|
*/
|
|
|
|
|
const char* ch = NULL;
|
|
|
|
|
for (ch= name + length - 1; ch >= name; --ch)
|
|
|
|
|
{
|
|
|
|
|
if (FN_LIBCHAR == *ch || '/' == *ch)
|
|
|
|
|
break;
|
|
|
|
|
else if (':' == *ch)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
File names like C:foobar.txt are allowed since the syntax means
|
|
|
|
|
file foobar.txt in current directory of C drive. However file
|
|
|
|
|
names likes CC:foobar are not allowed since this syntax means ADS
|
|
|
|
|
foobar in file CC.
|
|
|
|
|
*/
|
|
|
|
|
return (allow_current_dir && (ch - name == 1) &&
|
|
|
|
|
does_drive_exists(*name));
|
|
|
|
|
}
|
2016-09-23 18:55:44 +02:00
|
|
|
|
else if (strchr(ILLEGAL_FILENAME_CHARS, *ch))
|
|
|
|
|
return FALSE;
|
2013-07-05 17:40:34 +02:00
|
|
|
|
}
|
|
|
|
|
return TRUE;
|
|
|
|
|
} /* is_filename_allowed */
|
2021-06-06 13:21:03 +02:00
|
|
|
|
#endif /* _WIN32 */
|
2006-04-11 15:16:14 +02:00
|
|
|
|
|
2021-06-06 13:21:03 +02:00
|
|
|
|
#if defined(_WIN32)
|
2006-04-11 15:16:14 +02:00
|
|
|
|
|
2005-05-25 11:56:47 +02:00
|
|
|
|
/*
|
2017-02-26 16:49:47 +01:00
|
|
|
|
Check if a path will access a reserved file name that may cause problems
|
2005-05-25 11:56:47 +02:00
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
|
check_if_legal_filename
|
|
|
|
|
path Path to file
|
|
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
|
0 ok
|
|
|
|
|
1 reserved file name
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
int check_if_legal_filename(const char *path)
|
|
|
|
|
{
|
|
|
|
|
const char *end;
|
|
|
|
|
const char **reserved_name;
|
|
|
|
|
DBUG_ENTER("check_if_legal_filename");
|
|
|
|
|
|
2013-07-05 17:40:34 +02:00
|
|
|
|
if (!is_filename_allowed(path, strlen(path), TRUE))
|
|
|
|
|
DBUG_RETURN(1);
|
|
|
|
|
|
2005-05-25 11:56:47 +02:00
|
|
|
|
path+= dirname_length(path); /* To start of filename */
|
|
|
|
|
if (!(end= strchr(path, FN_EXTCHAR)))
|
|
|
|
|
end= strend(path);
|
2005-06-21 20:35:12 +02:00
|
|
|
|
if (path == end || (uint) (end - path) > MAX_RESERVED_NAME_LENGTH)
|
2005-05-25 11:56:47 +02:00
|
|
|
|
DBUG_RETURN(0); /* Simplify inner loop */
|
|
|
|
|
|
|
|
|
|
for (reserved_name= reserved_names; *reserved_name; reserved_name++)
|
|
|
|
|
{
|
2005-06-27 15:46:41 +02:00
|
|
|
|
const char *reserved= *reserved_name; /* never empty */
|
2005-05-25 11:56:47 +02:00
|
|
|
|
const char *name= path;
|
2005-06-21 20:35:12 +02:00
|
|
|
|
|
2005-06-27 15:46:41 +02:00
|
|
|
|
do
|
2005-05-25 11:56:47 +02:00
|
|
|
|
{
|
2005-06-27 15:46:41 +02:00
|
|
|
|
if (*reserved != my_toupper(&my_charset_latin1, *name))
|
2005-05-25 11:56:47 +02:00
|
|
|
|
break;
|
2005-09-01 03:32:15 +02:00
|
|
|
|
if (++name == end && !reserved[1])
|
2005-05-25 11:56:47 +02:00
|
|
|
|
DBUG_RETURN(1); /* Found wrong path */
|
2005-06-27 15:46:41 +02:00
|
|
|
|
} while (*++reserved);
|
2005-05-25 11:56:47 +02:00
|
|
|
|
}
|
|
|
|
|
DBUG_RETURN(0);
|
|
|
|
|
}
|
2006-04-19 10:08:22 +02:00
|
|
|
|
|
2021-06-06 13:21:03 +02:00
|
|
|
|
#endif /* defined(_WIN32) */
|