mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
f5ba1cdaf5
Share config response may contain the share name without casefolding as it is known to the user space daemon. When it is present, casefold and compare it to the share name the share config request was made with. If they differ, we have a share config which is incompatible with the way share config caching is done. This is the case when CONFIG_UNICODE is not set, the share name contains non-ASCII characters, and those non- ASCII characters do not match those in the share name known to user space. In other words, when CONFIG_UNICODE is not set, UTF-8 share names now work but are only case-insensitive in the ASCII range. Signed-off-by: Atte Heikkilä <atteh.mailbox@gmail.com> Acked-by: Tom Talpey <tom@talpey.com> Acked-by: Namjae Jeon <linkinjeon@kernel.org> Signed-off-by: Steve French <stfrench@microsoft.com>
38 lines
1.3 KiB
C
38 lines
1.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2018 Samsung Electronics Co., Ltd.
|
|
*/
|
|
|
|
#ifndef __KSMBD_MISC_H__
|
|
#define __KSMBD_MISC_H__
|
|
|
|
struct ksmbd_share_config;
|
|
struct nls_table;
|
|
struct kstat;
|
|
struct ksmbd_file;
|
|
|
|
int match_pattern(const char *str, size_t len, const char *pattern);
|
|
int ksmbd_validate_filename(char *filename);
|
|
int parse_stream_name(char *filename, char **stream_name, int *s_type);
|
|
char *convert_to_nt_pathname(struct ksmbd_share_config *share,
|
|
const struct path *path);
|
|
int get_nlink(struct kstat *st);
|
|
void ksmbd_conv_path_to_unix(char *path);
|
|
void ksmbd_strip_last_slash(char *path);
|
|
void ksmbd_conv_path_to_windows(char *path);
|
|
char *ksmbd_casefold_sharename(struct unicode_map *um, const char *name);
|
|
char *ksmbd_extract_sharename(struct unicode_map *um, const char *treename);
|
|
char *convert_to_unix_name(struct ksmbd_share_config *share, const char *name);
|
|
|
|
#define KSMBD_DIR_INFO_ALIGNMENT 8
|
|
struct ksmbd_dir_info;
|
|
char *ksmbd_convert_dir_info_name(struct ksmbd_dir_info *d_info,
|
|
const struct nls_table *local_nls,
|
|
int *conv_len);
|
|
|
|
#define NTFS_TIME_OFFSET ((u64)(369 * 365 + 89) * 24 * 3600 * 10000000)
|
|
struct timespec64 ksmbd_NTtimeToUnix(__le64 ntutc);
|
|
u64 ksmbd_UnixTimeToNT(struct timespec64 t);
|
|
long long ksmbd_systime(void);
|
|
#endif /* __KSMBD_MISC_H__ */
|