Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/cifsproto.h |
| 3 | * |
Steve French | 366781c | 2008-01-25 10:12:41 +0000 | [diff] [blame] | 4 | * Copyright (c) International Business Machines Corp., 2002,2008 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Author(s): Steve French (sfrench@us.ibm.com) |
| 6 | * |
| 7 | * This library is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU Lesser General Public License as published |
| 9 | * by the Free Software Foundation; either version 2.1 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This library is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
| 15 | * the GNU Lesser General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public License |
| 18 | * along with this library; if not, write to the Free Software |
Steve French | d38d8c7 | 2007-06-28 19:44:13 +0000 | [diff] [blame] | 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | */ |
| 21 | #ifndef _CIFSPROTO_H |
| 22 | #define _CIFSPROTO_H |
| 23 | #include <linux/nls.h> |
Steve French | d683bcd | 2018-05-19 02:28:53 -0500 | [diff] [blame] | 24 | #include "trace.h" |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 25 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 26 | #include "dfs_cache.h" |
| 27 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | struct statfs; |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 30 | struct smb_vol; |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 31 | struct smb_rqst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | /* |
| 34 | ***************************************************************** |
| 35 | * All Prototypes |
| 36 | ***************************************************************** |
| 37 | */ |
| 38 | |
| 39 | extern struct smb_hdr *cifs_buf_get(void); |
| 40 | extern void cifs_buf_release(void *); |
| 41 | extern struct smb_hdr *cifs_small_buf_get(void); |
| 42 | extern void cifs_small_buf_release(void *); |
Sachin Prabhu | 6d81ed1 | 2014-06-16 15:35:24 +0100 | [diff] [blame] | 43 | extern void free_rsp_buf(int, void *); |
Jeff Layton | 0496e02 | 2008-12-30 12:39:16 -0500 | [diff] [blame] | 44 | extern int smb_send(struct TCP_Server_Info *, struct smb_hdr *, |
| 45 | unsigned int /* length */); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 46 | extern unsigned int _get_xid(void); |
| 47 | extern void _free_xid(unsigned int); |
| 48 | #define get_xid() \ |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 49 | ({ \ |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 50 | unsigned int __xid = _get_xid(); \ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 51 | cifs_dbg(FYI, "CIFS VFS: in %s as Xid: %u with uid: %d\n", \ |
| 52 | __func__, __xid, \ |
| 53 | from_kuid(&init_user_ns, current_fsuid())); \ |
Steve French | d683bcd | 2018-05-19 02:28:53 -0500 | [diff] [blame] | 54 | trace_smb3_enter(__xid, __func__); \ |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 55 | __xid; \ |
| 56 | }) |
| 57 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 58 | #define free_xid(curr_xid) \ |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 59 | do { \ |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 60 | _free_xid(curr_xid); \ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 61 | cifs_dbg(FYI, "CIFS VFS: leaving %s (xid = %u) rc = %d\n", \ |
Steve French | d683bcd | 2018-05-19 02:28:53 -0500 | [diff] [blame] | 62 | __func__, curr_xid, (int)rc); \ |
| 63 | if (rc) \ |
| 64 | trace_smb3_exit_err(curr_xid, __func__, (int)rc); \ |
| 65 | else \ |
| 66 | trace_smb3_exit_done(curr_xid, __func__); \ |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 67 | } while (0) |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 68 | extern int init_cifs_idmap(void); |
| 69 | extern void exit_cifs_idmap(void); |
Sachin Prabhu | b74cb9a | 2016-05-17 18:20:13 -0500 | [diff] [blame] | 70 | extern int init_cifs_spnego(void); |
| 71 | extern void exit_cifs_spnego(void); |
Steve French | 7f57356 | 2005-08-30 11:32:14 -0700 | [diff] [blame] | 72 | extern char *build_path_from_dentry(struct dentry *); |
Aurelien Aptel | 268a635 | 2017-02-13 16:14:17 +0100 | [diff] [blame] | 73 | extern char *build_path_from_dentry_optional_prefix(struct dentry *direntry, |
| 74 | bool prefix); |
Steve French | 6d3ea7e | 2012-11-28 22:34:41 -0600 | [diff] [blame] | 75 | extern char *cifs_build_path_to_root(struct smb_vol *vol, |
| 76 | struct cifs_sb_info *cifs_sb, |
Sachin Prabhu | 374402a | 2016-12-15 12:31:19 +0530 | [diff] [blame] | 77 | struct cifs_tcon *tcon, |
| 78 | int add_treename); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | extern char *build_wildcard_path_from_dentry(struct dentry *direntry); |
Steve French | c6c0091 | 2009-03-18 05:50:07 +0000 | [diff] [blame] | 80 | extern char *cifs_compose_mount_options(const char *sb_mountdata, |
| 81 | const char *fullpath, const struct dfs_info3_param *ref, |
| 82 | char **devname); |
Steve French | 99ee4db | 2007-02-27 05:35:17 +0000 | [diff] [blame] | 83 | /* extern void renew_parental_timestamps(struct dentry *direntry);*/ |
Jeff Layton | a6827c1 | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 84 | extern struct mid_q_entry *AllocMidQEntry(const struct smb_hdr *smb_buffer, |
| 85 | struct TCP_Server_Info *server); |
Jeff Layton | 766fdbb | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 86 | extern void DeleteMidQEntry(struct mid_q_entry *midEntry); |
Pavel Shilovsky | 3c1bf7e | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 87 | extern void cifs_delete_mid(struct mid_q_entry *mid); |
Lars Persson | 696e420 | 2018-06-25 14:05:25 +0200 | [diff] [blame] | 88 | extern void cifs_mid_q_entry_release(struct mid_q_entry *midEntry); |
Pavel Shilovsky | 2dc7e1c | 2011-12-26 22:53:34 +0400 | [diff] [blame] | 89 | extern void cifs_wake_up_task(struct mid_q_entry *mid); |
Pavel Shilovsky | 4326ed2 | 2016-11-17 15:24:46 -0800 | [diff] [blame] | 90 | extern int cifs_handle_standard(struct TCP_Server_Info *server, |
| 91 | struct mid_q_entry *mid); |
Pavel Shilovsky | 350be25 | 2017-04-10 10:31:33 -0700 | [diff] [blame] | 92 | extern int cifs_discard_remaining_data(struct TCP_Server_Info *server); |
Jeff Layton | fec344e | 2012-09-18 16:20:35 -0700 | [diff] [blame] | 93 | extern int cifs_call_async(struct TCP_Server_Info *server, |
| 94 | struct smb_rqst *rqst, |
| 95 | mid_receive_t *receive, mid_callback_t *callback, |
Pavel Shilovsky | 3349c3a | 2019-01-15 15:52:29 -0800 | [diff] [blame] | 96 | mid_handle_t *handle, void *cbdata, const int flags, |
| 97 | const struct cifs_credits *exist_credits); |
Pavel Shilovsky | b8f57ee | 2016-11-23 15:31:54 -0800 | [diff] [blame] | 98 | extern int cifs_send_recv(const unsigned int xid, struct cifs_ses *ses, |
| 99 | struct smb_rqst *rqst, int *resp_buf_type, |
| 100 | const int flags, struct kvec *resp_iov); |
Ronnie Sahlberg | e0bba0b8 | 2018-08-01 09:26:13 +1000 | [diff] [blame] | 101 | extern int compound_send_recv(const unsigned int xid, struct cifs_ses *ses, |
| 102 | const int flags, const int num_rqst, |
| 103 | struct smb_rqst *rqst, int *resp_buf_type, |
| 104 | struct kvec *resp_iov); |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 105 | extern int SendReceive(const unsigned int /* xid */ , struct cifs_ses *, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | struct smb_hdr * /* input */ , |
| 107 | struct smb_hdr * /* out */ , |
Pavel Shilovsky | a891f0f | 2012-05-23 16:14:34 +0400 | [diff] [blame] | 108 | int * /* bytes returned */ , const int); |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 109 | extern int SendReceiveNoRsp(const unsigned int xid, struct cifs_ses *ses, |
Pavel Shilovsky | 792af7b | 2012-03-23 14:28:02 -0400 | [diff] [blame] | 110 | char *in_buf, int flags); |
Jeff Layton | fec344e | 2012-09-18 16:20:35 -0700 | [diff] [blame] | 111 | extern struct mid_q_entry *cifs_setup_request(struct cifs_ses *, |
Aurelien Aptel | f780bd3 | 2019-09-20 06:08:34 +0200 | [diff] [blame] | 112 | struct TCP_Server_Info *, |
Jeff Layton | fec344e | 2012-09-18 16:20:35 -0700 | [diff] [blame] | 113 | struct smb_rqst *); |
| 114 | extern struct mid_q_entry *cifs_setup_async_request(struct TCP_Server_Info *, |
| 115 | struct smb_rqst *); |
Jeff Layton | 2c8f981 | 2011-05-19 16:22:52 -0400 | [diff] [blame] | 116 | extern int cifs_check_receive(struct mid_q_entry *mid, |
| 117 | struct TCP_Server_Info *server, bool log_error); |
Pavel Shilovsky | cb7e9ea | 2014-06-05 19:03:27 +0400 | [diff] [blame] | 118 | extern int cifs_wait_mtu_credits(struct TCP_Server_Info *server, |
| 119 | unsigned int size, unsigned int *num, |
Pavel Shilovsky | 335b7b6 | 2019-01-16 11:12:41 -0800 | [diff] [blame] | 120 | struct cifs_credits *credits); |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 121 | extern int SendReceive2(const unsigned int /* xid */ , struct cifs_ses *, |
Steve French | d38d8c7 | 2007-06-28 19:44:13 +0000 | [diff] [blame] | 122 | struct kvec *, int /* nvec to send */, |
Pavel Shilovsky | da502f7 | 2016-10-25 11:38:47 -0700 | [diff] [blame] | 123 | int * /* type of buf returned */, const int flags, |
| 124 | struct kvec * /* resp vec */); |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 125 | extern int SendReceiveBlockingLock(const unsigned int xid, |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 126 | struct cifs_tcon *ptcon, |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 127 | struct smb_hdr *in_buf , |
| 128 | struct smb_hdr *out_buf, |
| 129 | int *bytes_returned); |
Pavel Shilovsky | 28ea529 | 2012-05-23 16:18:00 +0400 | [diff] [blame] | 130 | extern int cifs_reconnect(struct TCP_Server_Info *server); |
Steve French | 373512e | 2015-12-18 13:05:30 -0600 | [diff] [blame] | 131 | extern int checkSMB(char *buf, unsigned int len, struct TCP_Server_Info *srvr); |
Pavel Shilovsky | d4e4854 | 2012-03-23 14:28:02 -0400 | [diff] [blame] | 132 | extern bool is_valid_oplock_break(char *, struct TCP_Server_Info *); |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 133 | extern bool backup_cred(struct cifs_sb_info *); |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 134 | extern bool is_size_safe_to_change(struct cifsInodeInfo *, __u64 eof); |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 135 | extern void cifs_update_eof(struct cifsInodeInfo *cifsi, loff_t offset, |
| 136 | unsigned int bytes_written); |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 137 | extern struct cifsFileInfo *find_writable_file(struct cifsInodeInfo *, bool); |
Pavel Shilovsky | fe768d5 | 2019-01-29 12:15:11 -0800 | [diff] [blame] | 138 | extern int cifs_get_writable_file(struct cifsInodeInfo *cifs_inode, |
| 139 | bool fsuid_only, |
| 140 | struct cifsFileInfo **ret_file); |
Ronnie Sahlberg | 8de9e86 | 2019-08-30 08:25:46 +1000 | [diff] [blame] | 141 | extern int cifs_get_writable_path(struct cifs_tcon *tcon, const char *name, |
| 142 | struct cifsFileInfo **ret_file); |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 143 | extern struct cifsFileInfo *find_readable_file(struct cifsInodeInfo *, bool); |
Ronnie Sahlberg | 496902d | 2019-09-09 15:30:00 +1000 | [diff] [blame] | 144 | extern int cifs_get_readable_path(struct cifs_tcon *tcon, const char *name, |
| 145 | struct cifsFileInfo **ret_file); |
Ronnie Sahlberg | 9ec672b | 2018-04-22 15:30:12 -0600 | [diff] [blame] | 146 | extern unsigned int smbCalcSize(void *buf, struct TCP_Server_Info *server); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | extern int decode_negTokenInit(unsigned char *security_blob, int length, |
Jeff Layton | 26efa0b | 2010-04-24 07:57:49 -0400 | [diff] [blame] | 148 | struct TCP_Server_Info *server); |
David Howells | 67b7626 | 2010-07-22 18:33:01 +0100 | [diff] [blame] | 149 | extern int cifs_convert_address(struct sockaddr *dst, const char *src, int len); |
Jeff Layton | b979aaa | 2012-11-26 11:09:55 -0500 | [diff] [blame] | 150 | extern void cifs_set_port(struct sockaddr *addr, const unsigned short int port); |
Pavel Shilovsky | 5ffef7b | 2012-03-23 14:28:03 -0400 | [diff] [blame] | 151 | extern int map_smb_to_linux_error(char *buf, bool logErr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | extern void header_assemble(struct smb_hdr *, char /* command */ , |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 153 | const struct cifs_tcon *, int /* length of |
Steve French | 1982c34 | 2005-08-17 12:38:22 -0700 | [diff] [blame] | 154 | fixed section (word count) in two byte units */); |
Steve French | 5815449d | 2006-02-14 01:36:20 +0000 | [diff] [blame] | 155 | extern int small_smb_init_no_tc(const int smb_cmd, const int wct, |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 156 | struct cifs_ses *ses, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 157 | void **request_buf); |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 158 | extern enum securityEnum select_sectype(struct TCP_Server_Info *server, |
| 159 | enum securityEnum requested); |
Pavel Shilovsky | 58c45c5 | 2012-05-25 10:54:49 +0400 | [diff] [blame] | 160 | extern int CIFS_SessSetup(const unsigned int xid, struct cifs_ses *ses, |
| 161 | const struct nls_table *nls_cp); |
Arnd Bergmann | 9539020 | 2018-06-19 17:27:58 +0200 | [diff] [blame] | 162 | extern struct timespec64 cifs_NTtimeToUnix(__le64 utc_nanoseconds_since_1601); |
| 163 | extern u64 cifs_UnixTimeToNT(struct timespec64); |
| 164 | extern struct timespec64 cnvrtDosUnixTm(__le16 le_date, __le16 le_time, |
Jeff Layton | c4a2c08 | 2009-05-27 09:37:33 -0400 | [diff] [blame] | 165 | int offset); |
Pavel Shilovsky | c672362 | 2010-11-03 10:58:57 +0300 | [diff] [blame] | 166 | extern void cifs_set_oplock_level(struct cifsInodeInfo *cinode, __u32 oplock); |
Sachin Prabhu | c11f1df | 2014-03-11 16:11:47 +0000 | [diff] [blame] | 167 | extern int cifs_get_writer(struct cifsInodeInfo *cinode); |
| 168 | extern void cifs_put_writer(struct cifsInodeInfo *cinode); |
| 169 | extern void cifs_done_oplock_break(struct cifsInodeInfo *cinode); |
Pavel Shilovsky | d39a4f7 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 170 | extern int cifs_unlock_range(struct cifsFileInfo *cfile, |
| 171 | struct file_lock *flock, const unsigned int xid); |
| 172 | extern int cifs_push_mandatory_locks(struct cifsFileInfo *cfile); |
Steve French | 1bd5bbc | 2006-09-28 03:35:57 +0000 | [diff] [blame] | 173 | |
Dave Wysochanski | d46b0da | 2019-10-23 05:02:33 -0400 | [diff] [blame] | 174 | extern void cifs_down_write(struct rw_semaphore *sem); |
Pavel Shilovsky | fb1214e | 2012-09-18 16:20:26 -0700 | [diff] [blame] | 175 | extern struct cifsFileInfo *cifs_new_fileinfo(struct cifs_fid *fid, |
| 176 | struct file *file, |
| 177 | struct tcon_link *tlink, |
| 178 | __u32 oplock); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 179 | extern int cifs_posix_open(char *full_path, struct inode **inode, |
| 180 | struct super_block *sb, int mode, |
| 181 | unsigned int f_flags, __u32 *oplock, __u16 *netfid, |
| 182 | unsigned int xid); |
Jeff Layton | 4065c80 | 2010-05-17 07:18:58 -0400 | [diff] [blame] | 183 | void cifs_fill_uniqueid(struct super_block *sb, struct cifs_fattr *fattr); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 184 | extern void cifs_unix_basic_to_fattr(struct cifs_fattr *fattr, |
| 185 | FILE_UNIX_BASIC_INFO *info, |
| 186 | struct cifs_sb_info *cifs_sb); |
Shirish Pargaonkar | c052e2b | 2012-09-28 12:21:14 -0500 | [diff] [blame] | 187 | extern void cifs_dir_info_to_fattr(struct cifs_fattr *, FILE_DIRECTORY_INFO *, |
| 188 | struct cifs_sb_info *); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 189 | extern void cifs_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr); |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 190 | extern struct inode *cifs_iget(struct super_block *sb, |
| 191 | struct cifs_fattr *fattr); |
| 192 | |
Pavel Shilovsky | 1208ef1 | 2012-05-27 17:34:43 +0400 | [diff] [blame] | 193 | extern int cifs_get_inode_info(struct inode **inode, const char *full_path, |
| 194 | FILE_ALL_INFO *data, struct super_block *sb, |
Steve French | 42eacf9 | 2014-02-10 14:08:16 -0600 | [diff] [blame] | 195 | int xid, const struct cifs_fid *fid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | extern int cifs_get_inode_info_unix(struct inode **pinode, |
| 197 | const unsigned char *search_path, |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 198 | struct super_block *sb, unsigned int xid); |
Pavel Shilovsky | ed6875e | 2012-09-18 16:20:25 -0700 | [diff] [blame] | 199 | extern int cifs_set_file_info(struct inode *inode, struct iattr *attrs, |
| 200 | unsigned int xid, char *full_path, __u32 dosattr); |
| 201 | extern int cifs_rename_pending_delete(const char *full_path, |
| 202 | struct dentry *dentry, |
| 203 | const unsigned int xid); |
Shirish Pargaonkar | 987b21d | 2010-11-10 07:50:35 -0600 | [diff] [blame] | 204 | extern int cifs_acl_to_fattr(struct cifs_sb_info *cifs_sb, |
Jeff Layton | 0b8f18e | 2009-07-09 01:46:37 -0400 | [diff] [blame] | 205 | struct cifs_fattr *fattr, struct inode *inode, |
Steve French | e2f8fbf | 2019-07-19 06:30:07 +0000 | [diff] [blame] | 206 | bool get_mode_from_special_sid, |
Steve French | 42eacf9 | 2014-02-10 14:08:16 -0600 | [diff] [blame] | 207 | const char *path, const struct cifs_fid *pfid); |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 208 | extern int id_mode_to_cifs_acl(struct inode *inode, const char *path, __u64, |
Eric W. Biederman | 8abf277 | 2013-02-06 00:33:17 -0800 | [diff] [blame] | 209 | kuid_t, kgid_t); |
Shirish Pargaonkar | fbeba8b | 2010-11-27 11:37:54 -0600 | [diff] [blame] | 210 | extern struct cifs_ntsd *get_cifs_acl(struct cifs_sb_info *, struct inode *, |
| 211 | const char *, u32 *); |
Steve French | 42eacf9 | 2014-02-10 14:08:16 -0600 | [diff] [blame] | 212 | extern struct cifs_ntsd *get_cifs_acl_by_fid(struct cifs_sb_info *, |
| 213 | const struct cifs_fid *, u32 *); |
Steve French | b73b9a4 | 2011-04-19 18:27:10 +0000 | [diff] [blame] | 214 | extern int set_cifs_acl(struct cifs_ntsd *, __u32, struct inode *, |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 215 | const char *, int); |
Steve French | 643fbce | 2020-01-16 19:55:33 -0600 | [diff] [blame^] | 216 | extern unsigned int setup_authusers_ACE(struct cifs_ace *pace); |
Steve French | fdef665 | 2019-12-06 02:02:38 -0600 | [diff] [blame] | 217 | extern unsigned int setup_special_mode_ACE(struct cifs_ace *pace, __u64 nmode); |
Steve French | 953f868 | 2007-10-31 04:54:42 +0000 | [diff] [blame] | 218 | |
Jeff Layton | e28bc5b | 2011-10-19 15:30:07 -0400 | [diff] [blame] | 219 | extern void dequeue_mid(struct mid_q_entry *mid, bool malformed); |
| 220 | extern int cifs_read_from_socket(struct TCP_Server_Info *server, char *buf, |
Al Viro | 7133566 | 2016-01-09 19:54:50 -0500 | [diff] [blame] | 221 | unsigned int to_read); |
| 222 | extern int cifs_read_page_from_socket(struct TCP_Server_Info *server, |
Long Li | 1dbe346 | 2018-05-30 12:47:55 -0700 | [diff] [blame] | 223 | struct page *page, |
| 224 | unsigned int page_offset, |
| 225 | unsigned int to_read); |
Sachin Prabhu | 4214ebf | 2016-07-29 22:38:19 +0100 | [diff] [blame] | 226 | extern int cifs_setup_cifs_sb(struct smb_vol *pvolume_info, |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 227 | struct cifs_sb_info *cifs_sb); |
| 228 | extern int cifs_match_super(struct super_block *, void *); |
Jeff Layton | f9e59bc | 2011-07-06 08:10:37 -0400 | [diff] [blame] | 229 | extern void cifs_cleanup_volume_info(struct smb_vol *pvolume_info); |
Jeff Layton | 04db79b | 2011-07-06 08:10:38 -0400 | [diff] [blame] | 230 | extern struct smb_vol *cifs_get_volume_info(char *mount_data, |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 231 | const char *devname, bool is_smb3); |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 232 | extern int cifs_mount(struct cifs_sb_info *cifs_sb, struct smb_vol *vol); |
Al Viro | 2a9b995 | 2011-06-17 09:27:16 -0400 | [diff] [blame] | 233 | extern void cifs_umount(struct cifs_sb_info *); |
Pavel Shilovsky | aa24d1e | 2011-12-27 16:23:34 +0400 | [diff] [blame] | 234 | extern void cifs_mark_open_files_invalid(struct cifs_tcon *tcon); |
Steve French | 52ace1e | 2016-09-22 19:23:56 -0500 | [diff] [blame] | 235 | extern void cifs_reopen_persistent_handles(struct cifs_tcon *tcon); |
| 236 | |
Pavel Shilovsky | 579f905 | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 237 | extern bool cifs_find_lock_conflict(struct cifsFileInfo *cfile, __u64 offset, |
Ronnie Sahlberg | 9645759 | 2018-10-04 09:24:38 +1000 | [diff] [blame] | 238 | __u64 length, __u8 type, __u16 flags, |
Pavel Shilovsky | 579f905 | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 239 | struct cifsLockInfo **conf_lock, |
Pavel Shilovsky | 081c041 | 2012-11-27 18:38:53 +0400 | [diff] [blame] | 240 | int rw_check); |
Pavel Shilovsky | 233839b | 2012-09-19 06:22:45 -0700 | [diff] [blame] | 241 | extern void cifs_add_pending_open(struct cifs_fid *fid, |
| 242 | struct tcon_link *tlink, |
| 243 | struct cifs_pending_open *open); |
| 244 | extern void cifs_add_pending_open_locked(struct cifs_fid *fid, |
| 245 | struct tcon_link *tlink, |
| 246 | struct cifs_pending_open *open); |
| 247 | extern void cifs_del_pending_open(struct cifs_pending_open *open); |
Aurelien Aptel | d70e9fa | 2019-09-20 06:31:10 +0200 | [diff] [blame] | 248 | extern struct TCP_Server_Info *cifs_get_tcp_session(struct smb_vol *vol); |
Pavel Shilovsky | 53e0e11 | 2016-11-04 11:50:31 -0700 | [diff] [blame] | 249 | extern void cifs_put_tcp_session(struct TCP_Server_Info *server, |
| 250 | int from_reconnect); |
| 251 | extern void cifs_put_tcon(struct cifs_tcon *tcon); |
Jeff Layton | 815465c | 2012-03-21 06:27:54 -0400 | [diff] [blame] | 252 | |
| 253 | #if IS_ENABLED(CONFIG_CIFS_DFS_UPCALL) |
Igor Mammedov | 78d31a3 | 2008-04-24 12:56:07 +0400 | [diff] [blame] | 254 | extern void cifs_dfs_release_automount_timer(void); |
Jeff Layton | 815465c | 2012-03-21 06:27:54 -0400 | [diff] [blame] | 255 | #else /* ! IS_ENABLED(CONFIG_CIFS_DFS_UPCALL) */ |
| 256 | #define cifs_dfs_release_automount_timer() do { } while (0) |
| 257 | #endif /* ! IS_ENABLED(CONFIG_CIFS_DFS_UPCALL) */ |
| 258 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | void cifs_proc_init(void); |
| 260 | void cifs_proc_clean(void); |
| 261 | |
Pavel Shilovsky | f7ba7fe | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 262 | extern void cifs_move_llist(struct list_head *source, struct list_head *dest); |
| 263 | extern void cifs_free_llist(struct list_head *llist); |
| 264 | extern void cifs_del_lock_waiters(struct cifsLockInfo *lock); |
| 265 | |
Pavel Shilovsky | 286170a | 2012-05-25 10:43:58 +0400 | [diff] [blame] | 266 | extern int cifs_negotiate_protocol(const unsigned int xid, |
| 267 | struct cifs_ses *ses); |
Pavel Shilovsky | 58c45c5 | 2012-05-25 10:54:49 +0400 | [diff] [blame] | 268 | extern int cifs_setup_session(const unsigned int xid, struct cifs_ses *ses, |
| 269 | struct nls_table *nls_info); |
Jeff Layton | 38d77c5 | 2013-05-26 07:01:00 -0400 | [diff] [blame] | 270 | extern int cifs_enable_signing(struct TCP_Server_Info *server, bool mnt_sign_required); |
Pavel Shilovsky | 286170a | 2012-05-25 10:43:58 +0400 | [diff] [blame] | 271 | extern int CIFSSMBNegotiate(const unsigned int xid, struct cifs_ses *ses); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
Pavel Shilovsky | 2e6e02a | 2012-05-25 11:11:39 +0400 | [diff] [blame] | 273 | extern int CIFSTCon(const unsigned int xid, struct cifs_ses *ses, |
| 274 | const char *tree, struct cifs_tcon *tcon, |
| 275 | const struct nls_table *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 277 | extern int CIFSFindFirst(const unsigned int xid, struct cifs_tcon *tcon, |
Shirish Pargaonkar | c052e2b | 2012-09-28 12:21:14 -0500 | [diff] [blame] | 278 | const char *searchName, struct cifs_sb_info *cifs_sb, |
Shirish Pargaonkar | 2608bee | 2012-05-15 10:19:16 -0500 | [diff] [blame] | 279 | __u16 *searchHandle, __u16 search_flags, |
| 280 | struct cifs_search_info *psrch_inf, |
Shirish Pargaonkar | c052e2b | 2012-09-28 12:21:14 -0500 | [diff] [blame] | 281 | bool msearch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 283 | extern int CIFSFindNext(const unsigned int xid, struct cifs_tcon *tcon, |
Shirish Pargaonkar | 2608bee | 2012-05-15 10:19:16 -0500 | [diff] [blame] | 284 | __u16 searchHandle, __u16 search_flags, |
| 285 | struct cifs_search_info *psrch_inf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 287 | extern int CIFSFindClose(const unsigned int xid, struct cifs_tcon *tcon, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | const __u16 search_handle); |
| 289 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 290 | extern int CIFSSMBQFileInfo(const unsigned int xid, struct cifs_tcon *tcon, |
Jeff Layton | bcd5357 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 291 | u16 netfid, FILE_ALL_INFO *pFindData); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 292 | extern int CIFSSMBQPathInfo(const unsigned int xid, struct cifs_tcon *tcon, |
Pavel Shilovsky | 68889f2 | 2012-05-25 14:40:22 +0400 | [diff] [blame] | 293 | const char *search_Name, FILE_ALL_INFO *data, |
| 294 | int legacy /* whether to use old info level */, |
| 295 | const struct nls_table *nls_codepage, int remap); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 296 | extern int SMBQueryInformation(const unsigned int xid, struct cifs_tcon *tcon, |
Pavel Shilovsky | 68889f2 | 2012-05-25 14:40:22 +0400 | [diff] [blame] | 297 | const char *search_name, FILE_ALL_INFO *data, |
| 298 | const struct nls_table *nls_codepage, int remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 300 | extern int CIFSSMBUnixQFileInfo(const unsigned int xid, struct cifs_tcon *tcon, |
Jeff Layton | c8634fd | 2010-02-12 07:44:17 -0500 | [diff] [blame] | 301 | u16 netfid, FILE_UNIX_BASIC_INFO *pFindData); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 302 | extern int CIFSSMBUnixQPathInfo(const unsigned int xid, |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 303 | struct cifs_tcon *tcon, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | const unsigned char *searchName, |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 305 | FILE_UNIX_BASIC_INFO *pFindData, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 306 | const struct nls_table *nls_codepage, int remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 308 | extern int CIFSGetDFSRefer(const unsigned int xid, struct cifs_ses *ses, |
Pavel Shilovsky | b669f33 | 2012-05-27 20:21:53 +0400 | [diff] [blame] | 309 | const char *search_name, |
| 310 | struct dfs_info3_param **target_nodes, |
| 311 | unsigned int *num_of_nodes, |
| 312 | const struct nls_table *nls_codepage, int remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | |
Aurelien Aptel | 4ecce92 | 2017-02-13 16:03:47 +0100 | [diff] [blame] | 314 | extern int parse_dfs_referrals(struct get_dfs_referral_rsp *rsp, u32 rsp_size, |
| 315 | unsigned int *num_of_nodes, |
| 316 | struct dfs_info3_param **target_nodes, |
| 317 | const struct nls_table *nls_codepage, int remap, |
| 318 | const char *searchName, bool is_unicode); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 319 | extern void reset_cifs_unix_caps(unsigned int xid, struct cifs_tcon *tcon, |
Al Viro | 2c6292a | 2011-06-17 09:05:48 -0400 | [diff] [blame] | 320 | struct cifs_sb_info *cifs_sb, |
| 321 | struct smb_vol *vol); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 322 | extern int CIFSSMBQFSInfo(const unsigned int xid, struct cifs_tcon *tcon, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 323 | struct kstatfs *FSData); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 324 | extern int SMBOldQFSInfo(const unsigned int xid, struct cifs_tcon *tcon, |
Steve French | 2096243 | 2005-09-21 22:05:57 -0700 | [diff] [blame] | 325 | struct kstatfs *FSData); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 326 | extern int CIFSSMBSetFSUnixInfo(const unsigned int xid, struct cifs_tcon *tcon, |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 327 | __u64 cap); |
| 328 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 329 | extern int CIFSSMBQFSAttributeInfo(const unsigned int xid, |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 330 | struct cifs_tcon *tcon); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 331 | extern int CIFSSMBQFSDeviceInfo(const unsigned int xid, struct cifs_tcon *tcon); |
| 332 | extern int CIFSSMBQFSUnixInfo(const unsigned int xid, struct cifs_tcon *tcon); |
| 333 | extern int CIFSSMBQFSPosixInfo(const unsigned int xid, struct cifs_tcon *tcon, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 334 | struct kstatfs *FSData); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 336 | extern int CIFSSMBSetPathInfo(const unsigned int xid, struct cifs_tcon *tcon, |
Steve French | ad7a292 | 2008-02-07 23:25:02 +0000 | [diff] [blame] | 337 | const char *fileName, const FILE_BASIC_INFO *data, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 338 | const struct nls_table *nls_codepage, |
| 339 | int remap_special_chars); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 340 | extern int CIFSSMBSetFileInfo(const unsigned int xid, struct cifs_tcon *tcon, |
Jeff Layton | 2dd2dfa | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 341 | const FILE_BASIC_INFO *data, __u16 fid, |
| 342 | __u32 pid_of_opener); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 343 | extern int CIFSSMBSetFileDisposition(const unsigned int xid, |
| 344 | struct cifs_tcon *tcon, |
| 345 | bool delete_file, __u16 fid, |
| 346 | __u32 pid_of_opener); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | #if 0 |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 348 | extern int CIFSSMBSetAttrLegacy(unsigned int xid, struct cifs_tcon *tcon, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | char *fileName, __u16 dos_attributes, |
| 350 | const struct nls_table *nls_codepage); |
| 351 | #endif /* possibly unneeded function */ |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 352 | extern int CIFSSMBSetEOF(const unsigned int xid, struct cifs_tcon *tcon, |
Pavel Shilovsky | d143341 | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 353 | const char *file_name, __u64 size, |
| 354 | struct cifs_sb_info *cifs_sb, bool set_allocation); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 355 | extern int CIFSSMBSetFileSize(const unsigned int xid, struct cifs_tcon *tcon, |
Pavel Shilovsky | d143341 | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 356 | struct cifsFileInfo *cfile, __u64 size, |
| 357 | bool set_allocation); |
Jeff Layton | 4e1e7fb | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 358 | |
| 359 | struct cifs_unix_set_info_args { |
| 360 | __u64 ctime; |
| 361 | __u64 atime; |
| 362 | __u64 mtime; |
| 363 | __u64 mode; |
Eric W. Biederman | 49418b2 | 2013-02-06 00:57:56 -0800 | [diff] [blame] | 364 | kuid_t uid; |
| 365 | kgid_t gid; |
Jeff Layton | 4e1e7fb | 2008-08-02 07:26:12 -0400 | [diff] [blame] | 366 | dev_t device; |
| 367 | }; |
| 368 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 369 | extern int CIFSSMBUnixSetFileInfo(const unsigned int xid, |
| 370 | struct cifs_tcon *tcon, |
Jeff Layton | 3bbeeb3 | 2009-07-09 20:02:50 -0400 | [diff] [blame] | 371 | const struct cifs_unix_set_info_args *args, |
| 372 | u16 fid, u32 pid_of_opener); |
| 373 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 374 | extern int CIFSSMBUnixSetPathInfo(const unsigned int xid, |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 375 | struct cifs_tcon *tcon, const char *file_name, |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 376 | const struct cifs_unix_set_info_args *args, |
| 377 | const struct nls_table *nls_codepage, |
Pavel Shilovsky | ff691e9 | 2012-07-13 14:04:46 +0400 | [diff] [blame] | 378 | int remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | |
Steve French | c3ca78e | 2019-09-25 00:32:13 -0500 | [diff] [blame] | 380 | extern int CIFSSMBMkDir(const unsigned int xid, struct inode *inode, |
| 381 | umode_t mode, struct cifs_tcon *tcon, |
Pavel Shilovsky | f436720 | 2012-03-17 11:41:12 +0300 | [diff] [blame] | 382 | const char *name, struct cifs_sb_info *cifs_sb); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 383 | extern int CIFSSMBRmDir(const unsigned int xid, struct cifs_tcon *tcon, |
Pavel Shilovsky | f958ca5 | 2012-07-10 16:14:18 +0400 | [diff] [blame] | 384 | const char *name, struct cifs_sb_info *cifs_sb); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 385 | extern int CIFSPOSIXDelFile(const unsigned int xid, struct cifs_tcon *tcon, |
Steve French | 2d785a5 | 2007-07-15 01:48:57 +0000 | [diff] [blame] | 386 | const char *name, __u16 type, |
| 387 | const struct nls_table *nls_codepage, |
| 388 | int remap_special_chars); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 389 | extern int CIFSSMBDelFile(const unsigned int xid, struct cifs_tcon *tcon, |
Pavel Shilovsky | ed6875e | 2012-09-18 16:20:25 -0700 | [diff] [blame] | 390 | const char *name, struct cifs_sb_info *cifs_sb); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 391 | extern int CIFSSMBRename(const unsigned int xid, struct cifs_tcon *tcon, |
Pavel Shilovsky | 8ceb984 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 392 | const char *from_name, const char *to_name, |
| 393 | struct cifs_sb_info *cifs_sb); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 394 | extern int CIFSSMBRenameOpenFile(const unsigned int xid, struct cifs_tcon *tcon, |
| 395 | int netfid, const char *target_name, |
| 396 | const struct nls_table *nls_codepage, |
| 397 | int remap_special_chars); |
Steve French | d6e906f | 2012-09-18 16:20:31 -0700 | [diff] [blame] | 398 | extern int CIFSCreateHardLink(const unsigned int xid, struct cifs_tcon *tcon, |
| 399 | const char *from_name, const char *to_name, |
| 400 | struct cifs_sb_info *cifs_sb); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 401 | extern int CIFSUnixCreateHardLink(const unsigned int xid, |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 402 | struct cifs_tcon *tcon, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | const char *fromName, const char *toName, |
Steve French | d38d8c7 | 2007-06-28 19:44:13 +0000 | [diff] [blame] | 404 | const struct nls_table *nls_codepage, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 405 | int remap_special_chars); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 406 | extern int CIFSUnixCreateSymLink(const unsigned int xid, |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 407 | struct cifs_tcon *tcon, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | const char *fromName, const char *toName, |
Nakajima Akira | bc8ebdc4 | 2015-02-13 15:35:58 +0900 | [diff] [blame] | 409 | const struct nls_table *nls_codepage, int remap); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 410 | extern int CIFSSMBUnixQuerySymLink(const unsigned int xid, |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 411 | struct cifs_tcon *tcon, |
Jeff Layton | 460b969 | 2009-04-30 07:17:56 -0400 | [diff] [blame] | 412 | const unsigned char *searchName, char **syminfo, |
Nakajima Akira | bc8ebdc4 | 2015-02-13 15:35:58 +0900 | [diff] [blame] | 413 | const struct nls_table *nls_codepage, int remap); |
Pavel Shilovsky | d244bf2 | 2013-08-14 19:25:22 +0400 | [diff] [blame] | 414 | extern int CIFSSMBQuerySymLink(const unsigned int xid, struct cifs_tcon *tcon, |
| 415 | __u16 fid, char **symlinkinfo, |
| 416 | const struct nls_table *nls_codepage); |
Steve French | c7f508a | 2013-10-14 15:27:32 -0500 | [diff] [blame] | 417 | extern int CIFSSMB_set_compression(const unsigned int xid, |
| 418 | struct cifs_tcon *tcon, __u16 fid); |
Pavel Shilovsky | d81b8a4 | 2014-01-16 15:53:36 +0400 | [diff] [blame] | 419 | extern int CIFS_open(const unsigned int xid, struct cifs_open_parms *oparms, |
| 420 | int *oplock, FILE_ALL_INFO *buf); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 421 | extern int SMBLegacyOpen(const unsigned int xid, struct cifs_tcon *tcon, |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 422 | const char *fileName, const int disposition, |
| 423 | const int access_flags, const int omode, |
Steve French | 8840dee | 2007-11-16 23:05:52 +0000 | [diff] [blame] | 424 | __u16 *netfid, int *pOplock, FILE_ALL_INFO *, |
Steve French | a9d02ad | 2005-08-24 23:06:05 -0700 | [diff] [blame] | 425 | const struct nls_table *nls_codepage, int remap); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 426 | extern int CIFSPOSIXCreate(const unsigned int xid, struct cifs_tcon *tcon, |
Steve French | 8840dee | 2007-11-16 23:05:52 +0000 | [diff] [blame] | 427 | u32 posix_flags, __u64 mode, __u16 *netfid, |
Steve French | 2dd29d3 | 2007-04-23 22:07:35 +0000 | [diff] [blame] | 428 | FILE_UNIX_BASIC_INFO *pRetData, |
| 429 | __u32 *pOplock, const char *name, |
Steve French | d38d8c7 | 2007-06-28 19:44:13 +0000 | [diff] [blame] | 430 | const struct nls_table *nls_codepage, int remap); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 431 | extern int CIFSSMBClose(const unsigned int xid, struct cifs_tcon *tcon, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | const int smb_file_id); |
| 433 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 434 | extern int CIFSSMBFlush(const unsigned int xid, struct cifs_tcon *tcon, |
Steve French | b298f22 | 2009-02-21 21:17:43 +0000 | [diff] [blame] | 435 | const int smb_file_id); |
| 436 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 437 | extern int CIFSSMBRead(const unsigned int xid, struct cifs_io_parms *io_parms, |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 438 | unsigned int *nbytes, char **buf, |
Steve French | d38d8c7 | 2007-06-28 19:44:13 +0000 | [diff] [blame] | 439 | int *return_buf_type); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 440 | extern int CIFSSMBWrite(const unsigned int xid, struct cifs_io_parms *io_parms, |
Al Viro | dbbab32 | 2016-09-05 17:53:43 -0400 | [diff] [blame] | 441 | unsigned int *nbytes, const char *buf); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 442 | extern int CIFSSMBWrite2(const unsigned int xid, struct cifs_io_parms *io_parms, |
Pavel Shilovsky | ba9ad725 | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 443 | unsigned int *nbytes, struct kvec *iov, const int nvec); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 444 | extern int CIFSGetSrvInodeNumber(const unsigned int xid, struct cifs_tcon *tcon, |
Pavel Shilovsky | 1208ef1 | 2012-05-27 17:34:43 +0400 | [diff] [blame] | 445 | const char *search_name, __u64 *inode_number, |
| 446 | const struct nls_table *nls_codepage, |
| 447 | int remap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 449 | extern int cifs_lockv(const unsigned int xid, struct cifs_tcon *tcon, |
| 450 | const __u16 netfid, const __u8 lock_type, |
| 451 | const __u32 num_unlock, const __u32 num_lock, |
| 452 | LOCKING_ANDX_RANGE *buf); |
| 453 | extern int CIFSSMBLock(const unsigned int xid, struct cifs_tcon *tcon, |
Pavel Shilovsky | 03776f4 | 2010-08-17 11:26:00 +0400 | [diff] [blame] | 454 | const __u16 netfid, const __u32 netpid, const __u64 len, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | const __u64 offset, const __u32 numUnlock, |
| 456 | const __u32 numLock, const __u8 lockType, |
Pavel Shilovsky | 12fed00 | 2011-01-17 20:15:44 +0300 | [diff] [blame] | 457 | const bool waitFlag, const __u8 oplock_level); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 458 | extern int CIFSSMBPosixLock(const unsigned int xid, struct cifs_tcon *tcon, |
Pavel Shilovsky | 4f6bcec | 2011-10-22 15:33:30 +0400 | [diff] [blame] | 459 | const __u16 smb_file_id, const __u32 netpid, |
Jeff Layton | c5fd363 | 2012-07-23 13:28:37 -0400 | [diff] [blame] | 460 | const loff_t start_offset, const __u64 len, |
| 461 | struct file_lock *, const __u16 lock_type, |
| 462 | const bool waitFlag); |
Pavel Shilovsky | 2e6e02a | 2012-05-25 11:11:39 +0400 | [diff] [blame] | 463 | extern int CIFSSMBTDis(const unsigned int xid, struct cifs_tcon *tcon); |
Jeff Layton | 766fdbb | 2011-01-11 07:24:21 -0500 | [diff] [blame] | 464 | extern int CIFSSMBEcho(struct TCP_Server_Info *server); |
Pavel Shilovsky | 58c45c5 | 2012-05-25 10:54:49 +0400 | [diff] [blame] | 465 | extern int CIFSSMBLogoff(const unsigned int xid, struct cifs_ses *ses); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 467 | extern struct cifs_ses *sesInfoAlloc(void); |
| 468 | extern void sesInfoFree(struct cifs_ses *); |
| 469 | extern struct cifs_tcon *tconInfoAlloc(void); |
| 470 | extern void tconInfoFree(struct cifs_tcon *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 472 | extern int cifs_sign_rqst(struct smb_rqst *rqst, struct TCP_Server_Info *server, |
| 473 | __u32 *pexpected_response_sequence_number); |
Jeff Layton | 762a420 | 2012-07-23 13:28:38 -0400 | [diff] [blame] | 474 | extern int cifs_sign_smbv(struct kvec *iov, int n_vec, struct TCP_Server_Info *, |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 475 | __u32 *); |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 476 | extern int cifs_sign_smb(struct smb_hdr *, struct TCP_Server_Info *, __u32 *); |
| 477 | extern int cifs_verify_signature(struct smb_rqst *rqst, |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 478 | struct TCP_Server_Info *server, |
Steve French | b609f06 | 2007-07-09 07:55:14 +0000 | [diff] [blame] | 479 | __u32 expected_sequence_number); |
Shirish Pargaonkar | 9ef5992 | 2011-10-20 13:21:59 -0500 | [diff] [blame] | 480 | extern int SMBNTencrypt(unsigned char *, unsigned char *, unsigned char *, |
| 481 | const struct nls_table *); |
| 482 | extern int setup_ntlm_response(struct cifs_ses *, const struct nls_table *); |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 483 | extern int setup_ntlmv2_rsp(struct cifs_ses *, const struct nls_table *); |
Pavel Shilovsky | 026e93d | 2016-11-03 16:47:37 -0700 | [diff] [blame] | 484 | extern void cifs_crypto_secmech_release(struct TCP_Server_Info *server); |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 485 | extern int calc_seckey(struct cifs_ses *); |
Steve French | 373512e | 2015-12-18 13:05:30 -0600 | [diff] [blame] | 486 | extern int generate_smb30signingkey(struct cifs_ses *); |
| 487 | extern int generate_smb311signingkey(struct cifs_ses *); |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 488 | |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 489 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
Steve French | 43988d7 | 2011-04-19 18:23:31 +0000 | [diff] [blame] | 490 | extern int calc_lanman_hash(const char *password, const char *cryptkey, |
Jeff Layton | 4e53a3f | 2008-12-05 20:41:21 -0500 | [diff] [blame] | 491 | bool encrypt, char *lnm_session_key); |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 492 | #endif /* CIFS_WEAK_PW_HASH */ |
Steve French | 0eff0e2 | 2011-02-24 05:39:23 +0000 | [diff] [blame] | 493 | #ifdef CONFIG_CIFS_DNOTIFY_EXPERIMENTAL /* unused temporarily */ |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 494 | extern int CIFSSMBNotify(const unsigned int xid, struct cifs_tcon *tcon, |
Steve French | 0eff0e2 | 2011-02-24 05:39:23 +0000 | [diff] [blame] | 495 | const int notify_subdirs, const __u16 netfid, |
| 496 | __u32 filter, struct file *file, int multishot, |
| 497 | const struct nls_table *nls_codepage); |
| 498 | #endif /* was needed for dnotify, and will be needed for inotify when VFS fix */ |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 499 | extern int CIFSSMBCopy(unsigned int xid, |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 500 | struct cifs_tcon *source_tcon, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | const char *fromName, |
| 502 | const __u16 target_tid, |
| 503 | const char *toName, const int flags, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 504 | const struct nls_table *nls_codepage, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 505 | int remap_special_chars); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 506 | extern ssize_t CIFSSMBQAllEAs(const unsigned int xid, struct cifs_tcon *tcon, |
Jeff Layton | 31c0519 | 2010-02-10 16:18:26 -0500 | [diff] [blame] | 507 | const unsigned char *searchName, |
| 508 | const unsigned char *ea_name, char *EAData, |
Steve French | 67b4c88 | 2017-05-12 20:59:10 -0500 | [diff] [blame] | 509 | size_t bufsize, struct cifs_sb_info *cifs_sb); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 510 | extern int CIFSSMBSetEA(const unsigned int xid, struct cifs_tcon *tcon, |
Steve French | d38d8c7 | 2007-06-28 19:44:13 +0000 | [diff] [blame] | 511 | const char *fileName, const char *ea_name, |
| 512 | const void *ea_value, const __u16 ea_value_len, |
Ronnie Sahlberg | 5517554 | 2017-08-24 11:24:56 +1000 | [diff] [blame] | 513 | const struct nls_table *nls_codepage, |
| 514 | struct cifs_sb_info *cifs_sb); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 515 | extern int CIFSSMBGetCIFSACL(const unsigned int xid, struct cifs_tcon *tcon, |
Steve French | 630f3f0c | 2007-10-25 21:17:17 +0000 | [diff] [blame] | 516 | __u16 fid, struct cifs_ntsd **acl_inf, __u32 *buflen); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 517 | extern int CIFSSMBSetCIFSACL(const unsigned int, struct cifs_tcon *, __u16, |
Shirish Pargaonkar | a5ff376 | 2011-10-13 10:26:03 -0500 | [diff] [blame] | 518 | struct cifs_ntsd *, __u32, int); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 519 | extern int CIFSSMBGetPosixACL(const unsigned int xid, struct cifs_tcon *tcon, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | const unsigned char *searchName, |
Steve French | d38d8c7 | 2007-06-28 19:44:13 +0000 | [diff] [blame] | 521 | char *acl_inf, const int buflen, const int acl_type, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 522 | const struct nls_table *nls_codepage, int remap_special_chars); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 523 | extern int CIFSSMBSetPosixACL(const unsigned int xid, struct cifs_tcon *tcon, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | const unsigned char *fileName, |
| 525 | const char *local_acl, const int buflen, const int acl_type, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 526 | const struct nls_table *nls_codepage, int remap_special_chars); |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 527 | extern int CIFSGetExtAttr(const unsigned int xid, struct cifs_tcon *tcon, |
Steve French | 8840dee | 2007-11-16 23:05:52 +0000 | [diff] [blame] | 528 | const int netfid, __u64 *pExtAttrBits, __u64 *pMask); |
Jeff Layton | ec06aed | 2009-11-06 14:18:29 -0500 | [diff] [blame] | 529 | extern void cifs_autodisable_serverino(struct cifs_sb_info *cifs_sb); |
Sachin Prabhu | cb084b1 | 2013-11-25 17:09:50 +0000 | [diff] [blame] | 530 | extern bool couldbe_mf_symlink(const struct cifs_fattr *fattr); |
| 531 | extern int check_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, |
Sachin Prabhu | 750b8de | 2013-11-25 17:09:48 +0000 | [diff] [blame] | 532 | struct cifs_sb_info *cifs_sb, |
| 533 | struct cifs_fattr *fattr, |
| 534 | const unsigned char *path); |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 535 | extern int mdfour(unsigned char *, unsigned char *, int); |
Shirish Pargaonkar | 9ef5992 | 2011-10-20 13:21:59 -0500 | [diff] [blame] | 536 | extern int E_md4hash(const unsigned char *passwd, unsigned char *p16, |
| 537 | const struct nls_table *codepage); |
Steve French | 43988d7 | 2011-04-19 18:23:31 +0000 | [diff] [blame] | 538 | extern int SMBencrypt(unsigned char *passwd, const unsigned char *c8, |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 539 | unsigned char *p24); |
Paulo Alcantara (SUSE) | 5072010 | 2019-03-19 16:54:29 -0300 | [diff] [blame] | 540 | |
| 541 | extern int |
| 542 | cifs_setup_volume_info(struct smb_vol *volume_info, char *mount_data, |
| 543 | const char *devname, bool is_smb3); |
Paulo Alcantara | 56c762e | 2018-11-14 13:03:14 -0200 | [diff] [blame] | 544 | extern void |
| 545 | cifs_cleanup_volume_info_contents(struct smb_vol *volume_info); |
Jeff Layton | c28c89f | 2011-05-19 16:22:56 -0400 | [diff] [blame] | 546 | |
Paulo Alcantara | 54be1f6 | 2018-11-14 16:01:21 -0200 | [diff] [blame] | 547 | extern struct TCP_Server_Info * |
| 548 | cifs_find_tcp_session(struct smb_vol *vol); |
| 549 | |
Paulo Alcantara (SUSE) | 5072010 | 2019-03-19 16:54:29 -0300 | [diff] [blame] | 550 | extern void cifs_put_smb_ses(struct cifs_ses *ses); |
| 551 | |
| 552 | extern struct cifs_ses * |
| 553 | cifs_get_smb_ses(struct TCP_Server_Info *server, struct smb_vol *volume_info); |
| 554 | |
Jeff Layton | 6993f74 | 2012-05-16 07:13:17 -0400 | [diff] [blame] | 555 | void cifs_readdata_release(struct kref *refcount); |
Jeff Layton | e28bc5b | 2011-10-19 15:30:07 -0400 | [diff] [blame] | 556 | int cifs_async_readv(struct cifs_readdata *rdata); |
Pavel Shilovsky | 09a4707 | 2012-09-18 16:20:29 -0700 | [diff] [blame] | 557 | int cifs_readv_receive(struct TCP_Server_Info *server, struct mid_q_entry *mid); |
Jeff Layton | e28bc5b | 2011-10-19 15:30:07 -0400 | [diff] [blame] | 558 | |
Steve French | 4a5c80d | 2014-02-07 20:45:12 -0600 | [diff] [blame] | 559 | int cifs_async_writev(struct cifs_writedata *wdata, |
| 560 | void (*release)(struct kref *kref)); |
Jeff Layton | c2e8764 | 2012-03-23 14:40:55 -0400 | [diff] [blame] | 561 | void cifs_writev_complete(struct work_struct *work); |
| 562 | struct cifs_writedata *cifs_writedata_alloc(unsigned int nr_pages, |
| 563 | work_func_t complete); |
Long Li | 8e7360f | 2018-05-30 12:47:56 -0700 | [diff] [blame] | 564 | struct cifs_writedata *cifs_writedata_direct_alloc(struct page **pages, |
| 565 | work_func_t complete); |
Jeff Layton | c28c89f | 2011-05-19 16:22:56 -0400 | [diff] [blame] | 566 | void cifs_writedata_release(struct kref *refcount); |
Sachin Prabhu | b5be1a1 | 2013-11-25 17:09:49 +0000 | [diff] [blame] | 567 | int cifs_query_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, |
| 568 | struct cifs_sb_info *cifs_sb, |
| 569 | const unsigned char *path, char *pbuf, |
| 570 | unsigned int *pbytes_read); |
Sachin Prabhu | cbb0aba | 2013-11-25 17:09:52 +0000 | [diff] [blame] | 571 | int cifs_create_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, |
| 572 | struct cifs_sb_info *cifs_sb, |
| 573 | const unsigned char *path, char *pbuf, |
| 574 | unsigned int *pbytes_written); |
Ronnie Sahlberg | c713c87 | 2018-06-12 08:00:58 +1000 | [diff] [blame] | 575 | int __cifs_calc_signature(struct smb_rqst *rqst, |
Al Viro | 16c568e | 2015-11-12 22:46:49 -0500 | [diff] [blame] | 576 | struct TCP_Server_Info *server, char *signature, |
| 577 | struct shash_desc *shash); |
Sachin Prabhu | ef65aae | 2017-01-18 15:35:57 +0530 | [diff] [blame] | 578 | enum securityEnum cifs_select_sectype(struct TCP_Server_Info *, |
| 579 | enum securityEnum); |
Pavel Shilovsky | ccf7f40 | 2017-04-25 11:52:29 -0700 | [diff] [blame] | 580 | struct cifs_aio_ctx *cifs_aio_ctx_alloc(void); |
| 581 | void cifs_aio_ctx_release(struct kref *refcount); |
| 582 | int setup_aio_ctx_iter(struct cifs_aio_ctx *ctx, struct iov_iter *iter, int rw); |
Ronnie Sahlberg | a93864d | 2018-06-14 06:48:35 +1000 | [diff] [blame] | 583 | void smb2_cached_lease_break(struct work_struct *work); |
Aurelien Aptel | 82fb82b | 2018-02-16 19:19:27 +0100 | [diff] [blame] | 584 | |
| 585 | int cifs_alloc_hash(const char *name, struct crypto_shash **shash, |
| 586 | struct sdesc **sdesc); |
| 587 | void cifs_free_hash(struct crypto_shash **shash, struct sdesc **sdesc); |
| 588 | |
Long Li | 7b7f2bd | 2018-05-30 12:47:58 -0700 | [diff] [blame] | 589 | extern void rqst_page_get_length(struct smb_rqst *rqst, unsigned int page, |
| 590 | unsigned int *len, unsigned int *offset); |
Aurelien Aptel | d70e9fa | 2019-09-20 06:31:10 +0200 | [diff] [blame] | 591 | int cifs_try_adding_channels(struct cifs_ses *ses); |
| 592 | int cifs_ses_add_channel(struct cifs_ses *ses, |
| 593 | struct cifs_server_iface *iface); |
| 594 | bool is_server_using_iface(struct TCP_Server_Info *server, |
| 595 | struct cifs_server_iface *iface); |
| 596 | bool is_ses_using_iface(struct cifs_ses *ses, struct cifs_server_iface *iface); |
Long Li | 7b7f2bd | 2018-05-30 12:47:58 -0700 | [diff] [blame] | 597 | |
Paulo Alcantara | a3a53b7 | 2018-11-14 17:20:31 -0200 | [diff] [blame] | 598 | void extract_unc_hostname(const char *unc, const char **h, size_t *len); |
Ronnie Sahlberg | 340625e | 2019-08-27 09:30:14 +1000 | [diff] [blame] | 599 | int copy_path_name(char *dst, const char *src); |
Ronnie Sahlberg | 3747860 | 2020-01-08 13:08:06 +1000 | [diff] [blame] | 600 | int smb2_parse_query_directory(struct cifs_tcon *tcon, struct kvec *rsp_iov, |
| 601 | int resp_buftype, |
| 602 | struct cifs_search_info *srch_inf); |
Paulo Alcantara | a3a53b7 | 2018-11-14 17:20:31 -0200 | [diff] [blame] | 603 | |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 604 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 605 | static inline int get_dfs_path(const unsigned int xid, struct cifs_ses *ses, |
| 606 | const char *old_path, |
| 607 | const struct nls_table *nls_codepage, |
| 608 | struct dfs_info3_param *referral, int remap) |
| 609 | { |
| 610 | return dfs_cache_find(xid, ses, nls_codepage, remap, old_path, |
| 611 | referral, NULL); |
| 612 | } |
| 613 | #endif |
| 614 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | #endif /* _CIFSPROTO_H */ |