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