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