cdb7dcce41cda7fbb860afbb95852da54299c6cf
[amitay/samba.git] / source3 / smbd / proto.h
1 /*
2  *  Unix SMB/CIFS implementation.
3  *  Main SMB server routines
4  *
5  *  Copyright (C) Andrew Tridgell                       1992-2002,2006
6  *  Copyright (C) Jeremy Allison                        1992-2010
7  *  Copyright (C) Volker Lendecke                       1993-2009
8  *  Copyright (C) John H Terpstra                       1995-1998
9  *  Copyright (C) Luke Kenneth Casson Leighton          1996-1998
10  *  Copyright (C) Paul Ashton                           1997-1998
11  *  Copyright (C) Tim Potter                            1999-2000
12  *  Copyright (C) T.D.Lee@durham.ac.uk                  1999
13  *  Copyright (C) Ying Chen                             2000
14  *  Copyright (C) Shirish Kalele                        2000
15  *  Copyright (C) Andrew Bartlett                       2001-2003
16  *  Copyright (C) Alexander Bokovoy                     2002,2005
17  *  Copyright (C) Simo Sorce                            2001-2002,2009
18  *  Copyright (C) Andreas Gruenbacher                   2002
19  *  Copyright (C) Jim McDonough <jmcd@us.ibm.com>       2002
20  *  Copyright (C) Martin Pool                           2002
21  *  Copyright (C) Luke Howard                           2003
22  *  Copyright (C) Stefan (metze) Metzmacher             2003,2009
23  *  Copyright (C) Steve French                          2005
24  *  Copyright (C) Gerald (Jerry) Carter                 2006
25  *  Copyright (C) James Peach                           2006-2007
26  *  Copyright (C) Jelmer Vernooij                       2002-2003
27  *  Copyright (C) Michael Adam                          2007
28  *  Copyright (C) Rishi Srivatsavai                     2007
29  *  Copyright (C) Tim Prouty                            2009
30  *  Copyright (C) Gregor Beck                           2011
31  *
32  *  This program is free software; you can redistribute it and/or modify
33  *  it under the terms of the GNU General Public License as published by
34  *  the Free Software Foundation; either version 3 of the License, or
35  *  (at your option) any later version.
36  *
37  *  This program is distributed in the hope that it will be useful,
38  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
39  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
40  *  GNU General Public License for more details.
41  *
42  *  You should have received a copy of the GNU General Public License
43  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
44  */
45
46 #ifndef _SMBD_PROTO_H_
47 #define _SMBD_PROTO_H_
48
49 /* The following definitions come from smbd/signing.c  */
50
51 struct smbXsrv_connection;
52 struct dcesrv_context;
53
54 bool srv_check_sign_mac(struct smbXsrv_connection *conn,
55                         const char *inbuf, uint32_t *seqnum, bool trusted_channel);
56 NTSTATUS srv_calculate_sign_mac(struct smbXsrv_connection *conn,
57                                 char *outbuf, uint32_t seqnum);
58 void srv_cancel_sign_response(struct smbXsrv_connection *conn);
59 bool srv_init_signing(struct smbXsrv_connection *conn);
60 void srv_set_signing_negotiated(struct smbXsrv_connection *conn,
61                                 bool allowed, bool mandatory);
62 bool srv_is_signing_active(struct smbXsrv_connection *conn);
63 bool srv_is_signing_negotiated(struct smbXsrv_connection *conn);
64 void srv_set_signing(struct smbXsrv_connection *conn,
65                      const DATA_BLOB user_session_key,
66                      const DATA_BLOB response);
67
68 /* The following definitions come from smbd/aio.c  */
69
70 struct aio_extra;
71 bool aio_write_through_requested(struct aio_extra *aio_ex);
72 NTSTATUS schedule_aio_read_and_X(connection_struct *conn,
73                              struct smb_request *req,
74                              files_struct *fsp, off_t startpos,
75                              size_t smb_maxcnt);
76 NTSTATUS schedule_aio_write_and_X(connection_struct *conn,
77                               struct smb_request *req,
78                               files_struct *fsp, const char *data,
79                               off_t startpos,
80                               size_t numtowrite);
81 NTSTATUS schedule_smb2_aio_read(connection_struct *conn,
82                                 struct smb_request *smbreq,
83                                 files_struct *fsp,
84                                 TALLOC_CTX *ctx,
85                                 DATA_BLOB *preadbuf,
86                                 off_t startpos,
87                                 size_t smb_maxcnt);
88 NTSTATUS schedule_aio_smb2_write(connection_struct *conn,
89                                 struct smb_request *smbreq,
90                                 files_struct *fsp,
91                                 uint64_t in_offset,
92                                 DATA_BLOB in_data,
93                                 bool write_through);
94 bool cancel_smb2_aio(struct smb_request *smbreq);
95 bool aio_add_req_to_fsp(files_struct *fsp, struct tevent_req *req);
96
97 /* The following definitions come from smbd/blocking.c  */
98
99 NTSTATUS smbd_do_locks_try(
100         struct files_struct *fsp,
101         enum brl_flavour lock_flav,
102         uint16_t num_locks,
103         struct smbd_lock_element *locks,
104         uint16_t *blocker_idx,
105         struct server_id *blocking_pid,
106         uint64_t *blocking_smblctx);
107 struct tevent_req *smbd_smb1_do_locks_send(
108         TALLOC_CTX *mem_ctx,
109         struct tevent_context *ev,
110         struct smb_request **smbreq, /* talloc_move()d into our state */
111         struct files_struct *fsp,
112         uint32_t lock_timeout,
113         bool large_offset,
114         enum brl_flavour lock_flav,
115         uint16_t num_locks,
116         struct smbd_lock_element *locks);
117 NTSTATUS smbd_smb1_do_locks_recv(struct tevent_req *req);
118 bool smbd_smb1_do_locks_extract_smbreq(
119         struct tevent_req *req,
120         TALLOC_CTX *mem_ctx,
121         struct smb_request **psmbreq);
122 void smbd_smb1_brl_finish_by_req(struct tevent_req *req, NTSTATUS status);
123 bool smbd_smb1_brl_finish_by_lock(
124         struct files_struct *fsp,
125         bool large_offset,
126         enum brl_flavour lock_flav,
127         struct smbd_lock_element lock,
128         NTSTATUS finish_status);
129 bool smbd_smb1_brl_finish_by_mid(
130         struct smbd_server_connection *sconn, uint64_t mid);
131
132 /* The following definitions come from smbd/close.c  */
133
134 void set_close_write_time(struct files_struct *fsp, struct timespec ts);
135 NTSTATUS close_file(struct smb_request *req, files_struct *fsp,
136                     enum file_close_type close_type);
137 void msg_close_file(struct messaging_context *msg_ctx,
138                     void *private_data,
139                     uint32_t msg_type,
140                     struct server_id server_id,
141                     DATA_BLOB *data);
142 NTSTATUS delete_all_streams(connection_struct *conn,
143                         const struct smb_filename *smb_fname);
144 bool recursive_rmdir(TALLOC_CTX *ctx,
145                      connection_struct *conn,
146                      struct smb_filename *smb_dname);
147 bool has_other_nonposix_opens(struct share_mode_lock *lck,
148                               struct files_struct *fsp);
149
150 /* The following definitions come from smbd/conn.c  */
151
152 int conn_num_open(struct smbd_server_connection *sconn);
153 bool conn_snum_used(struct smbd_server_connection *sconn, int snum);
154 connection_struct *conn_new(struct smbd_server_connection *sconn);
155 bool conn_idle_all(struct smbd_server_connection *sconn, time_t t);
156 void conn_clear_vuid_caches(struct smbd_server_connection *sconn, uint64_t vuid);
157 void conn_free(connection_struct *conn);
158 void conn_force_tdis(
159         struct smbd_server_connection *sconn,
160         bool (*check_fn)(struct connection_struct *conn,
161                          void *private_data),
162         void *private_data);
163 void msg_force_tdis(struct messaging_context *msg,
164                     void *private_data,
165                     uint32_t msg_type,
166                     struct server_id server_id,
167                     DATA_BLOB *data);
168 void msg_force_tdis_denied(
169         struct messaging_context *msg,
170         void *private_data,
171         uint32_t msg_type,
172         struct server_id server_id,
173         DATA_BLOB *data);
174
175 /* The following definitions come from smbd/connection.c  */
176
177 int count_current_connections(const char *sharename, bool verify);
178 bool connections_snum_used(struct smbd_server_connection *unused, int snum);
179
180 /* The following definitions come from smbd/dfree.c  */
181
182 uint64_t get_dfree_info(connection_struct *conn, struct smb_filename *fname,
183                         uint64_t *bsize, uint64_t *dfree, uint64_t *dsize);
184 void flush_dfree_cache(void);
185
186 /* The following definitions come from smbd/dir.c  */
187
188 bool init_dptrs(struct smbd_server_connection *sconn);
189 const char *dptr_path(struct smbd_server_connection *sconn, int key);
190 const char *dptr_wcard(struct smbd_server_connection *sconn, int key);
191 uint16_t dptr_attr(struct smbd_server_connection *sconn, int key);
192 void dptr_closecnum(connection_struct *conn);
193 NTSTATUS dptr_create(connection_struct *conn,
194                 struct smb_request *req,
195                 files_struct *fsp,
196                 bool old_handle,
197                 bool expect_close,
198                 uint16_t spid,
199                 const char *wcard,
200                 bool wcard_has_wild,
201                 uint32_t attr,
202                 struct dptr_struct **dptr_ret);
203 void dptr_CloseDir(files_struct *fsp);
204 void dptr_SeekDir(struct dptr_struct *dptr, long offset);
205 long dptr_TellDir(struct dptr_struct *dptr);
206 bool dptr_has_wild(struct dptr_struct *dptr);
207 int dptr_dnum(struct dptr_struct *dptr);
208 bool dptr_get_priv(struct dptr_struct *dptr);
209 void dptr_set_priv(struct dptr_struct *dptr);
210 bool dptr_SearchDir(struct dptr_struct *dptr, const char *name, long *poffset, SMB_STRUCT_STAT *pst);
211 bool dptr_fill(struct smbd_server_connection *sconn,
212                char *buf1,unsigned int key);
213 files_struct *dptr_fetch_fsp(struct smbd_server_connection *sconn,
214                                char *buf,int *num);
215 files_struct *dptr_fetch_lanman2_fsp(struct smbd_server_connection *sconn,
216                                        int dptr_num);
217 bool get_dir_entry(TALLOC_CTX *ctx,
218                 struct dptr_struct *dirptr,
219                 const char *mask,
220                 uint32_t dirtype,
221                 char **pp_fname_out,
222                 off_t *size,
223                 uint32_t *mode,
224                 struct timespec *date,
225                 bool check_descend,
226                 bool ask_sharemode);
227 struct smb_Dir;
228 bool is_visible_file(connection_struct *conn,
229                 struct smb_Dir *dir_hnd,
230                 const char *name,
231                 SMB_STRUCT_STAT *pst,
232                 bool use_veto);
233 struct smb_Dir *OpenDir(TALLOC_CTX *mem_ctx,
234                         connection_struct *conn,
235                         const struct smb_filename *smb_fname,
236                         const char *mask,
237                         uint32_t attr);
238 const char *ReadDirName(struct smb_Dir *dir_hnd, long *poffset,
239                         SMB_STRUCT_STAT *sbuf, char **talloced);
240 void RewindDir(struct smb_Dir *dir_hnd, long *poffset);
241 void SeekDir(struct smb_Dir *dirp, long offset);
242 long TellDir(struct smb_Dir *dirp);
243 bool SearchDir(struct smb_Dir *dirp, const char *name, long *poffset);
244 NTSTATUS can_delete_directory(struct connection_struct *conn,
245                                 const char *dirname);
246 bool have_file_open_below(connection_struct *conn,
247                         const struct smb_filename *name);
248
249 /* The following definitions come from smbd/dmapi.c  */
250
251 const void *dmapi_get_current_session(void);
252 bool dmapi_have_session(void);
253 bool dmapi_new_session(void);
254 bool dmapi_destroy_session(void);
255 uint32_t dmapi_file_flags(const char * const path);
256
257 /* The following definitions come from smbd/dnsregister.c  */
258
259 bool smbd_setup_mdns_registration(struct tevent_context *ev,
260                                   TALLOC_CTX *mem_ctx,
261                                   uint16_t port);
262
263 /* The following definitions come from smbd/dosmode.c  */
264
265 mode_t unix_mode(connection_struct *conn, int dosmode,
266                  const struct smb_filename *smb_fname,
267                  struct smb_filename *smb_fname_parent);
268 uint32_t dos_mode_msdfs(connection_struct *conn,
269                       const struct smb_filename *smb_fname);
270 uint32_t dos_mode(connection_struct *conn, struct smb_filename *smb_fname);
271 struct tevent_req *dos_mode_at_send(TALLOC_CTX *mem_ctx,
272                                     struct tevent_context *ev,
273                                     files_struct *dir_fsp,
274                                     struct smb_filename *smb_fname);
275 NTSTATUS dos_mode_at_recv(struct tevent_req *req, uint32_t *dosmode);
276 int file_set_dosmode(connection_struct *conn,
277                      struct smb_filename *smb_fname,
278                      uint32_t dosmode,
279                      struct smb_filename *parent_dir,
280                      bool newfile);
281 NTSTATUS file_set_sparse(connection_struct *conn,
282                          struct files_struct *fsp,
283                          bool sparse);
284 int file_ntimes(connection_struct *conn, const struct smb_filename *smb_fname,
285                 struct smb_file_time *ft);
286 bool set_sticky_write_time_path(struct file_id fileid, struct timespec mtime);
287 bool set_sticky_write_time_fsp(struct files_struct *fsp,
288                                struct timespec mtime);
289
290 NTSTATUS get_ea_dos_attribute(connection_struct *conn,
291                               struct smb_filename *smb_fname,
292                               uint32_t *pattr);
293 NTSTATUS set_ea_dos_attribute(connection_struct *conn,
294                               const struct smb_filename *smb_fname,
295                               uint32_t dosmode);
296
297 NTSTATUS set_create_timespec_ea(connection_struct *conn,
298                                 const struct smb_filename *smb_fname,
299                                 struct timespec create_time);
300
301 struct timespec get_create_timespec(connection_struct *conn,
302                                 struct files_struct *fsp,
303                                 const struct smb_filename *smb_fname);
304
305 struct timespec get_change_timespec(connection_struct *conn,
306                                 struct files_struct *fsp,
307                                 const struct smb_filename *smb_fname);
308
309 NTSTATUS parse_dos_attribute_blob(struct smb_filename *smb_fname,
310                                   DATA_BLOB blob,
311                                   uint32_t *pattr);
312
313 /* The following definitions come from smbd/error.c  */
314
315 bool use_nt_status(void);
316 void error_packet_set(char *outbuf, uint8_t eclass, uint32_t ecode, NTSTATUS ntstatus, int line, const char *file);
317 size_t error_packet(char *outbuf,
318                     uint8_t eclass,
319                     uint32_t ecode,
320                     NTSTATUS ntstatus,
321                     int line,
322                     const char *file);
323 void reply_nt_error(struct smb_request *req, NTSTATUS ntstatus,
324                     int line, const char *file);
325 void reply_force_dos_error(struct smb_request *req, uint8_t eclass, uint32_t ecode,
326                     int line, const char *file);
327 void reply_both_error(struct smb_request *req, uint8_t eclass, uint32_t ecode,
328                       NTSTATUS status, int line, const char *file);
329 void reply_openerror(struct smb_request *req, NTSTATUS status);
330
331 /* The following definitions come from smbd/file_access.c  */
332
333 bool can_delete_file_in_directory(connection_struct *conn,
334                         struct files_struct *dirfsp,
335                         const struct smb_filename *smb_fname);
336 bool can_write_to_file(connection_struct *conn,
337                        const struct smb_filename *smb_fname);
338 bool directory_has_default_acl(connection_struct *conn,
339                         struct files_struct *dirfsp,
340                         struct smb_filename *smb_fname);
341 NTSTATUS can_set_delete_on_close(files_struct *fsp, uint32_t dosmode);
342
343 /* The following definitions come from smbd/fileio.c  */
344
345 ssize_t read_file(files_struct *fsp,char *data,off_t pos,size_t n);
346 void fsp_flush_write_time_update(struct files_struct *fsp);
347 void trigger_write_time_update(struct files_struct *fsp);
348 void trigger_write_time_update_immediate(struct files_struct *fsp);
349 void mark_file_modified(files_struct *fsp);
350 ssize_t write_file(struct smb_request *req,
351                         files_struct *fsp,
352                         const char *data,
353                         off_t pos,
354                         size_t n);
355 NTSTATUS sync_file(connection_struct *conn, files_struct *fsp, bool write_through);
356
357 /* The following definitions come from smbd/filename.c  */
358
359 uint32_t ucf_flags_from_smb_request(struct smb_request *req);
360 uint32_t filename_create_ucf_flags(struct smb_request *req, uint32_t create_disposition);
361 NTSTATUS unix_convert(TALLOC_CTX *ctx,
362                       connection_struct *conn,
363                       const char *orig_path,
364                       struct smb_filename **smb_fname,
365                       uint32_t ucf_flags);
366 NTSTATUS check_name(connection_struct *conn,
367                         const struct smb_filename *smb_fname);
368 int get_real_filename(connection_struct *conn, const char *path,
369                       const char *name, TALLOC_CTX *mem_ctx,
370                       char **found_name);
371 char *get_original_lcomp(TALLOC_CTX *ctx,
372                         connection_struct *conn,
373                         const char *filename_in,
374                         uint32_t ucf_flags);
375 NTSTATUS filename_convert(TALLOC_CTX *mem_ctx,
376                         connection_struct *conn,
377                         const char *name_in,
378                         uint32_t ucf_flags,
379                         time_t *twrp,
380                         bool *ppath_contains_wcard,
381                         struct smb_filename **pp_smb_fname);
382 NTSTATUS filename_convert_with_privilege(TALLOC_CTX *mem_ctx,
383                         connection_struct *conn,
384                         struct smb_request *smbreq,
385                         const char *name_in,
386                         uint32_t ucf_flags,
387                         bool *ppath_contains_wcard,
388                         struct smb_filename **pp_smb_fname);
389
390 /* The following definitions come from smbd/files.c  */
391
392 NTSTATUS fsp_new(struct connection_struct *conn, TALLOC_CTX *mem_ctx,
393                  files_struct **result);
394 void fsp_set_gen_id(files_struct *fsp);
395 NTSTATUS file_new(struct smb_request *req, connection_struct *conn,
396                   files_struct **result);
397 void file_close_conn(connection_struct *conn);
398 bool file_init_global(void);
399 bool file_init(struct smbd_server_connection *sconn);
400 void file_close_user(struct smbd_server_connection *sconn, uint64_t vuid);
401 struct files_struct *files_forall(
402         struct smbd_server_connection *sconn,
403         struct files_struct *(*fn)(struct files_struct *fsp,
404                                    void *private_data),
405         void *private_data);
406 files_struct *file_find_fd(struct smbd_server_connection *sconn, int fd);
407 files_struct *file_find_dif(struct smbd_server_connection *sconn,
408                             struct file_id id, unsigned long gen_id);
409 files_struct *file_find_di_first(struct smbd_server_connection *sconn,
410                                  struct file_id id);
411 files_struct *file_find_di_next(files_struct *start_fsp);
412 struct files_struct *file_find_one_fsp_from_lease_key(
413         struct smbd_server_connection *sconn,
414         const struct smb2_lease_key *lease_key);
415 bool file_find_subpath(files_struct *dir_fsp);
416 void fsp_free(files_struct *fsp);
417 void file_free(struct smb_request *req, files_struct *fsp);
418 files_struct *file_fsp(struct smb_request *req, uint16_t fid);
419 struct files_struct *file_fsp_get(struct smbd_smb2_request *smb2req,
420                                   uint64_t persistent_id,
421                                   uint64_t volatile_id);
422 struct files_struct *file_fsp_smb2(struct smbd_smb2_request *smb2req,
423                                    uint64_t persistent_id,
424                                    uint64_t volatile_id);
425 NTSTATUS dup_file_fsp(
426         struct smb_request *req,
427         files_struct *from,
428         uint32_t access_mask,
429         uint32_t create_options,
430         files_struct *to);
431 NTSTATUS file_name_hash(connection_struct *conn,
432                         const char *name, uint32_t *p_name_hash);
433 NTSTATUS fsp_set_smb_fname(struct files_struct *fsp,
434                            const struct smb_filename *smb_fname_in);
435 size_t fsp_fullbasepath(struct files_struct *fsp, char *buf, size_t buflen);
436
437 NTSTATUS create_internal_dirfsp_at(connection_struct *conn,
438                                    struct files_struct *dirfsp,
439                                    const struct smb_filename *smb_dname,
440                                    struct files_struct **_fsp);
441
442 NTSTATUS open_internal_dirfsp_at(connection_struct *conn,
443                                  struct files_struct *dirfsp,
444                                  const struct smb_filename *smb_dname,
445                                  struct files_struct **_fsp);
446
447 /* The following definitions come from smbd/ipc.c  */
448
449 NTSTATUS nt_status_np_pipe(NTSTATUS status);
450 void send_trans_reply(connection_struct *conn,
451                       struct smb_request *req,
452                       char *rparam, int rparam_len,
453                       char *rdata, int rdata_len,
454                       bool buffer_too_large);
455 void reply_trans(struct smb_request *req);
456 void reply_transs(struct smb_request *req);
457
458 /* The following definitions come from smbd/lanman.c  */
459
460 void api_reply(connection_struct *conn, uint64_t vuid,
461                struct smb_request *req,
462                char *data, char *params,
463                int tdscnt, int tpscnt,
464                int mdrcnt, int mprcnt);
465
466 /* The following definitions come from smbd/mangle.c  */
467
468 void mangle_reset_cache(void);
469 void mangle_change_to_posix(void);
470 bool mangle_is_mangled(const char *s, const struct share_params *p);
471 bool mangle_is_8_3(const char *fname, bool check_case,
472                    const struct share_params *p);
473 bool mangle_is_8_3_wildcards(const char *fname, bool check_case,
474                              const struct share_params *p);
475 bool mangle_must_mangle(const char *fname,
476                    const struct share_params *p);
477 bool mangle_lookup_name_from_8_3(TALLOC_CTX *ctx,
478                         const char *in,
479                         char **out, /* talloced on the given context. */
480                         const struct share_params *p);
481 bool name_to_8_3(const char *in,
482                 char out[13],
483                 bool cache83,
484                 const struct share_params *p);
485
486 /* The following definitions come from smbd/mangle_hash.c  */
487
488 const struct mangle_fns *mangle_hash_init(void);
489
490 /* The following definitions come from smbd/mangle_hash2.c  */
491
492 const struct mangle_fns *mangle_hash2_init(void);
493 const struct mangle_fns *posix_mangle_init(void);
494
495 /* The following definitions come from smbd/message.c  */
496
497 void reply_sends(struct smb_request *req);
498 void reply_sendstrt(struct smb_request *req);
499 void reply_sendtxt(struct smb_request *req);
500 void reply_sendend(struct smb_request *req);
501
502 /* The following definitions come from smbd/msdfs.c  */
503
504 bool parse_msdfs_symlink(TALLOC_CTX *ctx,
505                         bool shuffle_referrals,
506                         const char *target,
507                         struct referral **preflist,
508                         size_t *refcount);
509 bool is_msdfs_link(connection_struct *conn,
510                 struct smb_filename *smb_fname);
511 struct junction_map;
512 NTSTATUS get_referred_path(TALLOC_CTX *ctx,
513                            struct auth_session_info *session_info,
514                            const char *dfs_path,
515                            const struct tsocket_address *remote_address,
516                            const struct tsocket_address *local_address,
517                            bool allow_broken_path,
518                            struct junction_map *jucn,
519                            int *consumedcntp,
520                            bool *self_referralp);
521 int setup_dfs_referral(connection_struct *orig_conn,
522                         const char *dfs_path,
523                         int max_referral_level,
524                         char **ppdata, NTSTATUS *pstatus);
525 bool create_junction(TALLOC_CTX *ctx,
526                 const char *dfs_path,
527                 bool allow_broken_path,
528                 struct junction_map *jucn);
529 struct referral;
530 char *msdfs_link_string(TALLOC_CTX *ctx,
531                 const struct referral *reflist,
532                 size_t referral_count);
533 bool create_msdfs_link(const struct junction_map *jucn,
534                        struct auth_session_info *session_info);
535 bool remove_msdfs_link(const struct junction_map *jucn,
536                        struct auth_session_info *session_info);
537
538 struct junction_map *enum_msdfs_links(TALLOC_CTX *ctx,
539                                       struct auth_session_info *session_info,
540                                       size_t *p_num_jn);
541 NTSTATUS resolve_dfspath_wcard(TALLOC_CTX *ctx,
542                                 connection_struct *conn,
543                                 const char *name_in,
544                                 uint32_t ucf_flags,
545                                 bool allow_broken_path,
546                                 char **pp_name_out,
547                                 bool *ppath_contains_wcard);
548 struct connection_struct;
549 struct smb_filename;
550 struct conn_struct_tos {
551         struct connection_struct *conn;
552         struct smb_filename *oldcwd_fname;
553 };
554 NTSTATUS create_conn_struct_tos(struct messaging_context *msg,
555                                 int snum,
556                                 const char *path,
557                                 const struct auth_session_info *session_info,
558                                 struct conn_struct_tos **_c);
559 NTSTATUS create_conn_struct_tos_cwd(struct messaging_context *msg,
560                                     int snum,
561                                     const char *path,
562                                     const struct auth_session_info *session_info,
563                                     struct conn_struct_tos **_c);
564
565 /* The following definitions come from smbd/negprot.c  */
566
567 void reply_negprot(struct smb_request *req);
568
569 /* The following definitions come from smbd/notify.c  */
570
571 bool change_notify_fsp_has_changes(struct files_struct *fsp);
572 void change_notify_reply(struct smb_request *req,
573                          NTSTATUS error_code,
574                          uint32_t max_param,
575                          struct notify_change_buf *notify_buf,
576                          void (*reply_fn)(struct smb_request *req,
577                                           NTSTATUS error_code,
578                                           uint8_t *buf, size_t len));
579 void notify_callback(struct smbd_server_connection *sconn,
580                      void *private_data, struct timespec when,
581                      const struct notify_event *e);
582 NTSTATUS change_notify_create(struct files_struct *fsp,
583                               uint32_t max_buffer_size,
584                               uint32_t filter,
585                               bool recursive);
586 NTSTATUS change_notify_add_request(struct smb_request *req,
587                                 uint32_t max_param,
588                                 uint32_t filter, bool recursive,
589                                 struct files_struct *fsp,
590                                 void (*reply_fn)(struct smb_request *req,
591                                         NTSTATUS error_code,
592                                         uint8_t *buf, size_t len));
593 void smbd_notify_cancel_deleted(struct messaging_context *msg,
594                                 void *private_data, uint32_t msg_type,
595                                 struct server_id server_id, DATA_BLOB *data);
596 void smbd_notifyd_restarted(struct messaging_context *msg,
597                             void *private_data, uint32_t msg_type,
598                             struct server_id server_id, DATA_BLOB *data);
599 bool remove_pending_change_notify_requests_by_mid(
600         struct smbd_server_connection *sconn, uint64_t mid);
601 void remove_pending_change_notify_requests_by_fid(files_struct *fsp,
602                                                   NTSTATUS status);
603 void notify_fname(connection_struct *conn, uint32_t action, uint32_t filter,
604                   const char *path);
605 char *notify_filter_string(TALLOC_CTX *mem_ctx, uint32_t filter);
606 struct sys_notify_context *sys_notify_context_create(TALLOC_CTX *mem_ctx,
607                                                      struct tevent_context *ev);
608
609 /* The following definitions come from smbd/notify_inotify.c  */
610
611 int inotify_watch(TALLOC_CTX *mem_ctx,
612                   struct sys_notify_context *ctx,
613                   const char *path,
614                   uint32_t *filter,
615                   uint32_t *subdir_filter,
616                   void (*callback)(struct sys_notify_context *ctx,
617                                    void *private_data,
618                                    struct notify_event *ev,
619                                    uint32_t filter),
620                   void *private_data,
621                   void *handle_p);
622
623 int fam_watch(TALLOC_CTX *mem_ctx,
624               struct sys_notify_context *ctx,
625               const char *path,
626               uint32_t *filter,
627               uint32_t *subdir_filter,
628               void (*callback)(struct sys_notify_context *ctx,
629                                void *private_data,
630                                struct notify_event *ev,
631                                uint32_t filter),
632               void *private_data,
633               void *handle_p);
634
635
636 /* The following definitions come from smbd/notify_internal.c  */
637
638 struct notify_context *notify_init(
639         TALLOC_CTX *mem_ctx, struct messaging_context *msg,
640         struct smbd_server_connection *sconn,
641         void (*callback)(struct smbd_server_connection *sconn,
642                          void *, struct timespec,
643                          const struct notify_event *));
644 NTSTATUS notify_add(struct notify_context *ctx,
645                     const char *path, uint32_t filter, uint32_t subdir_filter,
646                     void *private_data);
647 NTSTATUS notify_remove(struct notify_context *ctx, void *private_data,
648                        char *path);
649 void notify_trigger(struct notify_context *notify,
650                     uint32_t action, uint32_t filter,
651                     const char *dir, const char *path);
652
653 struct notify_instance;
654 NTSTATUS notify_walk(struct notify_context *notify,
655                      bool (*fn)(const char *path, struct server_id server,
656                                 const struct notify_instance *instance,
657                                 void *private_data),
658                      void *private_data);
659
660 /* The following definitions come from smbd/ntquotas.c  */
661
662 NTSTATUS vfs_get_ntquota(files_struct *fsp, enum SMB_QUOTA_TYPE qtype,
663                          struct dom_sid *psid, SMB_NTQUOTA_STRUCT *qt);
664 int vfs_set_ntquota(files_struct *fsp, enum SMB_QUOTA_TYPE qtype, struct dom_sid *psid, SMB_NTQUOTA_STRUCT *qt);
665 int vfs_get_user_ntquota_list(files_struct *fsp, SMB_NTQUOTA_LIST **qt_list);
666 void *init_quota_handle(TALLOC_CTX *mem_ctx);
667
668 /* The following definitions come from smbd/nttrans.c  */
669
670 void reply_ntcreate_and_X(struct smb_request *req);
671 NTSTATUS set_sd(files_struct *fsp, struct security_descriptor *psd,
672                        uint32_t security_info_sent);
673 NTSTATUS set_sd_blob(files_struct *fsp, uint8_t *data, uint32_t sd_len,
674                        uint32_t security_info_sent);
675 struct ea_list *read_nttrans_ea_list(TALLOC_CTX *ctx, const char *pdata, size_t data_size);
676 void reply_ntcancel(struct smb_request *req);
677 void reply_ntrename(struct smb_request *req);
678 NTSTATUS smbd_do_query_security_desc(connection_struct *conn,
679                                         TALLOC_CTX *mem_ctx,
680                                         files_struct *fsp,
681                                         uint32_t security_info_wanted,
682                                         uint32_t max_data_count,
683                                         uint8_t **ppmarshalled_sd,
684                                         size_t *psd_size);
685 #ifdef HAVE_SYS_QUOTAS
686
687 struct smb2_query_quota_info;
688
689 NTSTATUS smbd_do_query_getinfo_quota(TALLOC_CTX *mem_ctx,
690                                      files_struct *fsp,
691                                      bool restart_scan,
692                                      bool return_single,
693                                      uint32_t sid_list_length,
694                                      DATA_BLOB *sidbuffer,
695                                      uint32_t max_data_count,
696                                      uint8_t **p_data,
697                                      uint32_t *p_data_size);
698 #endif
699 void reply_nttrans(struct smb_request *req);
700 void reply_nttranss(struct smb_request *req);
701
702 /* The following definitions come from smbd/open.c  */
703
704 NTSTATUS smbd_check_access_rights(struct connection_struct *conn,
705                                 const struct smb_filename *smb_fname,
706                                 bool use_privs,
707                                 uint32_t access_mask);
708 NTSTATUS check_parent_access(struct connection_struct *conn,
709                                 struct smb_filename *smb_fname,
710                                 uint32_t access_mask);
711 NTSTATUS fd_open(struct connection_struct *conn, files_struct *fsp,
712                  int flags, mode_t mode);
713 NTSTATUS fd_close(files_struct *fsp);
714 void change_file_owner_to_parent(connection_struct *conn,
715                                  struct smb_filename *inherit_from_dir,
716                                  files_struct *fsp);
717 bool is_oplock_stat_open(uint32_t access_mask);
718 bool is_lease_stat_open(uint32_t access_mask);
719 NTSTATUS send_break_message(struct messaging_context *msg_ctx,
720                             const struct file_id *id,
721                             const struct share_mode_entry *exclusive,
722                             uint16_t break_to);
723 struct deferred_open_record;
724 bool is_deferred_open_async(const struct deferred_open_record *rec);
725 bool defer_smb1_sharing_violation(struct smb_request *req);
726 NTSTATUS create_directory(connection_struct *conn, struct smb_request *req,
727                           struct smb_filename *smb_dname);
728 void msg_file_was_renamed(struct messaging_context *msg,
729                           void *private_data,
730                           uint32_t msg_type,
731                           struct server_id server_id,
732                           DATA_BLOB *data);
733 struct fsp_lease *find_fsp_lease(struct files_struct *new_fsp,
734                                  const struct smb2_lease_key *key,
735                                  uint32_t current_state,
736                                  uint16_t lease_version,
737                                  uint16_t lease_epoch);
738 NTSTATUS create_file_default(connection_struct *conn,
739                              struct smb_request *req,
740                              uint16_t root_dir_fid,
741                              struct smb_filename * smb_fname,
742                              uint32_t access_mask,
743                              uint32_t share_access,
744                              uint32_t create_disposition,
745                              uint32_t create_options,
746                              uint32_t file_attributes,
747                              uint32_t oplock_request,
748                              const struct smb2_lease *lease,
749                              uint64_t allocation_size,
750                              uint32_t private_flags,
751                              struct security_descriptor *sd,
752                              struct ea_list *ea_list,
753                              files_struct **result,
754                              int *pinfo,
755                              const struct smb2_create_blobs *in_context_blobs,
756                              struct smb2_create_blobs *out_context_blobs);
757
758 /* The following definitions come from smbd/oplock.c  */
759
760 uint32_t get_lease_type(const struct share_mode_entry *e, struct file_id id);
761
762 void break_kernel_oplock(struct messaging_context *msg_ctx, files_struct *fsp);
763 NTSTATUS set_file_oplock(files_struct *fsp);
764 bool remove_oplock(files_struct *fsp);
765 bool downgrade_oplock(files_struct *fsp);
766 bool fsp_lease_update(struct files_struct *fsp);
767 NTSTATUS downgrade_lease(struct smbXsrv_connection *xconn,
768                         uint32_t num_file_ids,
769                         const struct file_id *ids,
770                         const struct smb2_lease_key *key,
771                         uint32_t lease_state);
772 void contend_level2_oplocks_begin(files_struct *fsp,
773                                   enum level2_contention_type type);
774 void contend_level2_oplocks_end(files_struct *fsp,
775                                 enum level2_contention_type type);
776 void smbd_contend_level2_oplocks_begin(files_struct *fsp,
777                                   enum level2_contention_type type);
778 void smbd_contend_level2_oplocks_end(files_struct *fsp,
779                                 enum level2_contention_type type);
780 void share_mode_entry_to_message(char *msg, const struct file_id *id,
781                                  const struct share_mode_entry *e);
782 void message_to_share_mode_entry(struct file_id *id,
783                                  struct share_mode_entry *e,
784                                  const char *msg);
785 bool init_oplocks(struct smbd_server_connection *sconn);
786 void init_kernel_oplocks(struct smbd_server_connection *sconn);
787
788 /* The following definitions come from smbd/oplock_linux.c  */
789
790 int linux_set_lease_sighandler(int fd);
791 int linux_setlease(int fd, int leasetype);
792 struct kernel_oplocks *linux_init_kernel_oplocks(struct smbd_server_connection *sconn);
793
794 /* The following definitions come from smbd/password.c  */
795
796 void invalidate_vuid(struct smbd_server_connection *sconn, uint64_t vuid);
797 int register_homes_share(const char *username);
798
799 /* The following definitions come from smbd/pipes.c  */
800
801 NTSTATUS open_np_file(struct smb_request *smb_req, const char *name,
802                       struct files_struct **pfsp);
803 void reply_open_pipe_and_X(connection_struct *conn, struct smb_request *req);
804 void reply_pipe_write(struct smb_request *req);
805 void reply_pipe_write_and_X(struct smb_request *req);
806 void reply_pipe_read_and_X(struct smb_request *req);
807
808 /* The following definitions come from smbd/posix_acls.c  */
809
810 mode_t unix_perms_to_acl_perms(mode_t mode, int r_mask, int w_mask, int x_mask);
811 int map_acl_perms_to_permset(mode_t mode, SMB_ACL_PERMSET_T *p_permset);
812 uint32_t map_canon_ace_perms(int snum,
813                                 enum security_ace_type *pacl_type,
814                                 mode_t perms,
815                                 bool directory_ace);
816 NTSTATUS unpack_nt_owners(connection_struct *conn, uid_t *puser, gid_t *pgrp, uint32_t security_info_sent, const struct security_descriptor *psd);
817 bool current_user_in_group(connection_struct *conn, gid_t gid);
818 SMB_ACL_T free_empty_sys_acl(connection_struct *conn, SMB_ACL_T the_acl);
819 NTSTATUS posix_fget_nt_acl(struct files_struct *fsp, uint32_t security_info,
820                            TALLOC_CTX *mem_ctx,
821                            struct security_descriptor **ppdesc);
822 NTSTATUS posix_get_nt_acl(struct connection_struct *conn,
823                         const struct smb_filename *smb_fname_in,
824                         uint32_t security_info,
825                         TALLOC_CTX *mem_ctx,
826                         struct security_descriptor **ppdesc);
827 NTSTATUS try_chown(files_struct *fsp, uid_t uid, gid_t gid);
828 NTSTATUS set_nt_acl(files_struct *fsp, uint32_t security_info_sent, const struct security_descriptor *psd);
829 int get_acl_group_bits( connection_struct *conn,
830                         const struct smb_filename *smb_fname,
831                         mode_t *mode);
832 int inherit_access_posix_acl(connection_struct *conn,
833                         struct smb_filename *inherit_from_dir,
834                         const struct smb_filename *smb_fname,
835                         mode_t mode);
836 NTSTATUS set_unix_posix_default_acl(connection_struct *conn,
837                                 files_struct *fsp,
838                                 uint16_t num_def_acls, const char *pdata);
839 NTSTATUS set_unix_posix_acl(connection_struct *conn, files_struct *fsp,
840                                 uint16_t num_acls,
841                                 const char *pdata);
842 int posix_sys_acl_blob_get_file(vfs_handle_struct *handle,
843                                 const struct smb_filename *smb_fname,
844                                 TALLOC_CTX *mem_ctx,
845                                 char **blob_description,
846                                 DATA_BLOB *blob);
847 int posix_sys_acl_blob_get_fd(vfs_handle_struct *handle,
848                               files_struct *fsp,
849                               TALLOC_CTX *mem_ctx,
850                               char **blob_description,
851                               DATA_BLOB *blob);
852
853 enum default_acl_style {DEFAULT_ACL_POSIX, DEFAULT_ACL_WINDOWS, DEFAULT_ACL_EVERYONE};
854
855 const struct enum_list *get_default_acl_style_list(void);
856
857 NTSTATUS make_default_filesystem_acl(
858         TALLOC_CTX *ctx,
859         enum default_acl_style acl_style,
860         const char *name,
861         const SMB_STRUCT_STAT *psbuf,
862         struct security_descriptor **ppdesc);
863
864 /* The following definitions come from smbd/process.c  */
865
866 bool srv_send_smb(struct smbXsrv_connection *xconn, char *buffer,
867                   bool no_signing, uint32_t seqnum,
868                   bool do_encrypt,
869                   struct smb_perfcount_data *pcd);
870 size_t srv_set_message(char *buf,
871                        size_t num_words,
872                        size_t num_bytes,
873                        bool zero);
874 void remove_deferred_open_message_smb(struct smbXsrv_connection *xconn,
875                                       uint64_t mid);
876 bool schedule_deferred_open_message_smb(struct smbXsrv_connection *xconn,
877                                         uint64_t mid);
878 bool open_was_deferred(struct smbXsrv_connection *xconn, uint64_t mid);
879 bool get_deferred_open_message_state(struct smb_request *smbreq,
880                                 struct timeval *p_request_time,
881                                 struct deferred_open_record **open_rec);
882 bool push_deferred_open_message_smb(struct smb_request *req,
883                                     struct timeval timeout,
884                                     struct file_id id,
885                                     struct deferred_open_record *open_rec);
886 NTSTATUS allow_new_trans(struct trans_state *list, uint64_t mid);
887 void reply_outbuf(struct smb_request *req, uint8_t num_words, uint32_t num_bytes);
888 void smb_request_done(struct smb_request *req);
889 const char *smb_fn_name(int type);
890 void add_to_common_flags2(uint32_t v);
891 void remove_from_common_flags2(uint32_t v);
892 void construct_reply_common_req(struct smb_request *req, char *outbuf);
893 bool smb1_is_chain(const uint8_t *buf);
894 bool smb1_walk_chain(const uint8_t *buf,
895                      bool (*fn)(uint8_t cmd,
896                                 uint8_t wct, const uint16_t *vwv,
897                                 uint16_t num_bytes, const uint8_t *bytes,
898                                 void *private_data),
899                      void *private_data);
900 unsigned smb1_chain_length(const uint8_t *buf);
901 bool smb1_parse_chain(TALLOC_CTX *mem_ctx, const uint8_t *buf,
902                       struct smbXsrv_connection *xconn,
903                       bool encrypted, uint32_t seqnum,
904                       struct smb_request ***reqs, unsigned *num_reqs);
905 bool req_is_in_chain(const struct smb_request *req);
906 void smbd_process(struct tevent_context *ev_ctx,
907                   struct messaging_context *msg_ctx,
908                   struct dcesrv_context *dce_ctx,
909                   int sock_fd,
910                   bool interactive);
911 bool fork_echo_handler(struct smbXsrv_connection *xconn);
912
913 /* The following definitions come from smbd/quotas.c  */
914
915 bool disk_quotas(connection_struct *conn, struct smb_filename *fname,
916                  uint64_t *bsize, uint64_t *dfree, uint64_t *dsize);
917
918 /* The following definitions come from smbd/reply.c  */
919
920 NTSTATUS check_path_syntax(char *path);
921 NTSTATUS check_path_syntax_wcard(char *path, bool *p_contains_wcard);
922 NTSTATUS check_path_syntax_posix(char *path);
923 size_t srvstr_get_path_wcard(TALLOC_CTX *ctx,
924                         const char *inbuf,
925                         uint16_t smb_flags2,
926                         char **pp_dest,
927                         const char *src,
928                         size_t src_len,
929                         int flags,
930                         NTSTATUS *err,
931                         bool *contains_wcard);
932 size_t srvstr_get_path_wcard_posix(TALLOC_CTX *ctx,
933                         const char *inbuf,
934                         uint16_t smb_flags2,
935                         char **pp_dest,
936                         const char *src,
937                         size_t src_len,
938                         int flags,
939                         NTSTATUS *err,
940                         bool *contains_wcard);
941 size_t srvstr_get_path(TALLOC_CTX *ctx,
942                         const char *inbuf,
943                         uint16_t smb_flags2,
944                         char **pp_dest,
945                         const char *src,
946                         size_t src_len,
947                         int flags,
948                         NTSTATUS *err);
949 size_t srvstr_get_path_posix(TALLOC_CTX *ctx,
950                         const char *inbuf,
951                         uint16_t smb_flags2,
952                         char **pp_dest,
953                         const char *src,
954                         size_t src_len,
955                         int flags,
956                         NTSTATUS *err);
957 size_t srvstr_get_path_req_wcard(TALLOC_CTX *mem_ctx, struct smb_request *req,
958                                  char **pp_dest, const char *src, int flags,
959                                  NTSTATUS *err, bool *contains_wcard);
960 size_t srvstr_get_path_req(TALLOC_CTX *mem_ctx, struct smb_request *req,
961                            char **pp_dest, const char *src, int flags,
962                            NTSTATUS *err);
963 size_t srvstr_pull_req_talloc(TALLOC_CTX *ctx, struct smb_request *req,
964                               char **dest, const uint8_t *src, int flags);
965 bool check_fsp_open(connection_struct *conn, struct smb_request *req,
966                     files_struct *fsp);
967 bool check_fsp(connection_struct *conn, struct smb_request *req,
968                files_struct *fsp);
969 bool check_fsp_ntquota_handle(connection_struct *conn, struct smb_request *req,
970                               files_struct *fsp);
971 void reply_special(struct smbXsrv_connection *xconn, char *inbuf, size_t inbuf_size);
972 void reply_tcon(struct smb_request *req);
973 void reply_tcon_and_X(struct smb_request *req);
974 void reply_unknown_new(struct smb_request *req, uint8_t type);
975 void reply_ioctl(struct smb_request *req);
976 void reply_checkpath(struct smb_request *req);
977 void reply_getatr(struct smb_request *req);
978 void reply_setatr(struct smb_request *req);
979 void reply_dskattr(struct smb_request *req);
980 void reply_search(struct smb_request *req);
981 void reply_fclose(struct smb_request *req);
982 void reply_open(struct smb_request *req);
983 void reply_open_and_X(struct smb_request *req);
984 void reply_ulogoffX(struct smb_request *req);
985 void reply_mknew(struct smb_request *req);
986 void reply_ctemp(struct smb_request *req);
987 NTSTATUS unlink_internals(connection_struct *conn, struct smb_request *req,
988                           uint32_t dirtype, struct smb_filename *smb_fname,
989                           bool has_wild);
990 void reply_unlink(struct smb_request *req);
991 ssize_t fake_sendfile(struct smbXsrv_connection *xconn, files_struct *fsp,
992                       off_t startpos, size_t nread);
993 ssize_t sendfile_short_send(struct smbXsrv_connection *xconn,
994                             files_struct *fsp,
995                             ssize_t nread,
996                             size_t headersize,
997                             size_t smb_maxcnt);
998 void reply_readbraw(struct smb_request *req);
999 void reply_lockread(struct smb_request *req);
1000 size_t setup_readX_header(char *outbuf, size_t smb_maxcnt);
1001 void reply_read(struct smb_request *req);
1002 void reply_read_and_X(struct smb_request *req);
1003 void error_to_writebrawerr(struct smb_request *req);
1004 void reply_writebraw(struct smb_request *req);
1005 void reply_writeunlock(struct smb_request *req);
1006 void reply_write(struct smb_request *req);
1007 bool is_valid_writeX_buffer(struct smbXsrv_connection *xconn,
1008                             const uint8_t *inbuf);
1009 void reply_write_and_X(struct smb_request *req);
1010 void reply_lseek(struct smb_request *req);
1011 void reply_flush(struct smb_request *req);
1012 void reply_exit(struct smb_request *req);
1013 void reply_close(struct smb_request *req);
1014 void reply_writeclose(struct smb_request *req);
1015 void reply_lock(struct smb_request *req);
1016 void reply_unlock(struct smb_request *req);
1017 void reply_tdis(struct smb_request *req);
1018 void reply_echo(struct smb_request *req);
1019 void reply_printopen(struct smb_request *req);
1020 void reply_printclose(struct smb_request *req);
1021 void reply_printqueue(struct smb_request *req);
1022 void reply_printwrite(struct smb_request *req);
1023 void reply_mkdir(struct smb_request *req);
1024 void reply_rmdir(struct smb_request *req);
1025 NTSTATUS rename_internals_fsp(connection_struct *conn,
1026                         files_struct *fsp,
1027                         const struct smb_filename *smb_fname_dst_in,
1028                         const char *dst_original_lcomp,
1029                         uint32_t attrs,
1030                         bool replace_if_exists);
1031 NTSTATUS rename_internals(TALLOC_CTX *ctx,
1032                         connection_struct *conn,
1033                         struct smb_request *req,
1034                         struct smb_filename *smb_fname_src,
1035                         struct smb_filename *smb_fname_dst,
1036                         const char *dst_original_lcomp,
1037                         uint32_t attrs,
1038                         bool replace_if_exists,
1039                         bool src_has_wild,
1040                         bool dest_has_wild,
1041                         uint32_t access_mask);
1042 void reply_mv(struct smb_request *req);
1043 NTSTATUS copy_file(TALLOC_CTX *ctx,
1044                         connection_struct *conn,
1045                         struct smb_filename *smb_fname_src,
1046                         struct smb_filename *smb_fname_dst,
1047                         int ofun,
1048                         int count,
1049                         bool target_is_directory);
1050 void reply_copy(struct smb_request *req);
1051 uint64_t get_lock_pid(const uint8_t *data, int data_offset,
1052                     bool large_file_format);
1053 uint64_t get_lock_count(const uint8_t *data, int data_offset,
1054                         bool large_file_format);
1055 uint64_t get_lock_offset(const uint8_t *data, int data_offset,
1056                          bool large_file_format);
1057 void reply_lockingX(struct smb_request *req);
1058 void reply_readbmpx(struct smb_request *req);
1059 void reply_readbs(struct smb_request *req);
1060 void reply_setattrE(struct smb_request *req);
1061 void reply_writebmpx(struct smb_request *req);
1062 void reply_writebs(struct smb_request *req);
1063 void reply_getattrE(struct smb_request *req);
1064
1065 /* The following definitions come from smbd/seal.c  */
1066
1067 bool is_encrypted_packet(const uint8_t *inbuf);
1068 void srv_free_enc_buffer(struct smbXsrv_connection *xconn, char *buf);
1069 NTSTATUS srv_decrypt_buffer(struct smbXsrv_connection *xconn, char *buf);
1070 NTSTATUS srv_encrypt_buffer(struct smbXsrv_connection *xconn, char *buf,
1071                             char **buf_out);
1072 NTSTATUS srv_request_encryption_setup(connection_struct *conn,
1073                                         unsigned char **ppdata,
1074                                         size_t *p_data_size,
1075                                         unsigned char **pparam,
1076                                         size_t *p_param_size);
1077 NTSTATUS srv_encryption_start(connection_struct *conn);
1078 void server_encryption_shutdown(struct smbXsrv_connection *xconn);
1079
1080 /* The following definitions come from smbd/sec_ctx.c  */
1081
1082 bool unix_token_equal(const struct security_unix_token *t1, const struct security_unix_token *t2);
1083 bool push_sec_ctx(void);
1084 void set_sec_ctx(uid_t uid, gid_t gid, int ngroups, gid_t *groups, const struct security_token *token);
1085 void set_root_sec_ctx(void);
1086 bool pop_sec_ctx(void);
1087 void init_sec_ctx(void);
1088 const struct security_token *sec_ctx_active_token(void);
1089
1090 /* The following definitions come from smbd/server.c  */
1091
1092 struct memcache *smbd_memcache(void);
1093 bool snum_is_shared_printer(int snum);
1094 void delete_and_reload_printers(void);
1095 bool reload_services(struct smbd_server_connection *sconn,
1096                      bool (*snumused) (struct smbd_server_connection *, int),
1097                      bool test);
1098
1099 /* The following definitions come from smbd/server_exit.c  */
1100
1101 void smbd_exit_server(const char *reason) _NORETURN_;
1102 void smbd_exit_server_cleanly(const char *const reason) _NORETURN_;
1103
1104 /* The following definitions come from smbd/service.c  */
1105
1106 bool set_conn_connectpath(connection_struct *conn, const char *connectpath);
1107 bool canonicalize_connect_path(connection_struct *conn);
1108 NTSTATUS set_conn_force_user_group(connection_struct *conn, int snum);
1109 void set_current_case_sensitive(connection_struct *conn, uint16_t flags);
1110 bool chdir_current_service(connection_struct *conn);
1111 void load_registry_shares(void);
1112 int add_home_service(const char *service, const char *username, const char *homedir);
1113 int find_service(TALLOC_CTX *ctx, const char *service, char **p_service_out);
1114 connection_struct *make_connection_smb2(struct smbd_smb2_request *req,
1115                                         struct smbXsrv_tcon *tcon,
1116                                         int snum,
1117                                         const char *pdev,
1118                                         NTSTATUS *pstatus);
1119 connection_struct *make_connection(struct smb_request *req,
1120                                    NTTIME now,
1121                                    const char *service_in,
1122                                    const char *pdev, uint64_t vuid,
1123                                    NTSTATUS *status);
1124 void close_cnum(connection_struct *conn, uint64_t vuid);
1125
1126 /* The following definitions come from smbd/session.c  */
1127 struct sessionid;
1128 struct smbXsrv_session;
1129 bool session_init(void);
1130 bool session_claim(struct smbXsrv_session *session);
1131 void session_yield(struct smbXsrv_session *session);
1132 int list_sessions(TALLOC_CTX *mem_ctx, struct sessionid **session_list);
1133 int find_sessions(TALLOC_CTX *mem_ctx, const char *username,
1134                   const char *machine, struct sessionid **session_list);
1135
1136 /* The following definitions come from smbd/sesssetup.c  */
1137
1138 void reply_sesssetup_and_X(struct smb_request *req);
1139
1140 /* The following definitions come from smbd/share_access.c  */
1141
1142 bool token_contains_name_in_list(const char *username,
1143                                  const char *domain,
1144                                  const char *sharename,
1145                                  const struct security_token *token,
1146                                  const char **list);
1147 bool user_ok_token(const char *username, const char *domain,
1148                    const struct security_token *token, int snum);
1149 bool is_share_read_only_for_token(const char *username,
1150                                   const char *domain,
1151                                   const struct security_token *token,
1152                                   connection_struct *conn);
1153
1154 /* The following definitions come from smbd/srvstr.c  */
1155
1156 NTSTATUS srvstr_push_fn(const char *base_ptr, uint16_t smb_flags2, void *dest,
1157                       const char *src, int dest_len, int flags, size_t *ret_len);
1158 ssize_t message_push_string(uint8_t **outbuf, const char *str, int flags);
1159
1160 /* The following definitions come from smbd/statcache.c  */
1161
1162 void stat_cache_add( const char *full_orig_name,
1163                 char *translated_path,
1164                 bool case_sensitive);
1165 bool stat_cache_lookup(connection_struct *conn,
1166                         bool posix_paths,
1167                         char **pp_name,
1168                         char **pp_dirpath,
1169                         char **pp_start,
1170                         SMB_STRUCT_STAT *pst);
1171 void smbd_send_stat_cache_delete_message(struct messaging_context *msg_ctx,
1172                                     const char *name);
1173 void send_stat_cache_delete_message(struct messaging_context *msg_ctx,
1174                                     const char *name);
1175 void stat_cache_delete(const char *name);
1176 struct TDB_DATA;
1177 unsigned int fast_string_hash(struct TDB_DATA *key);
1178 bool reset_stat_cache( void );
1179
1180 /* The following definitions come from smbd/statvfs.c  */
1181
1182 int sys_statvfs(const char *path, vfs_statvfs_struct *statbuf);
1183
1184 /* The following definitions come from smbd/trans2.c  */
1185
1186 NTSTATUS check_access_fsp(const struct files_struct *fsp,
1187                           uint32_t access_mask);
1188 uint64_t smb_roundup(connection_struct *conn, uint64_t val);
1189 bool samba_private_attr_name(const char *unix_ea_name);
1190 NTSTATUS get_ea_value(TALLOC_CTX *mem_ctx, connection_struct *conn,
1191                         files_struct *fsp,
1192                         const struct smb_filename *smb_fname,
1193                         const char *ea_name,
1194                         struct ea_struct *pea);
1195 NTSTATUS get_ea_names_from_file(TALLOC_CTX *mem_ctx,
1196                         connection_struct *conn,
1197                         files_struct *fsp,
1198                         const struct smb_filename *smb_fname,
1199                         char ***pnames,
1200                         size_t *pnum_names);
1201 NTSTATUS set_ea(connection_struct *conn, files_struct *fsp,
1202                 const struct smb_filename *smb_fname, struct ea_list *ea_list);
1203 struct ea_list *read_ea_list_entry(TALLOC_CTX *ctx, const char *pdata, size_t data_size, size_t *pbytes_used);
1204 void send_trans2_replies(connection_struct *conn,
1205                         struct smb_request *req,
1206                         NTSTATUS status,
1207                          const char *params,
1208                          int paramsize,
1209                          const char *pdata,
1210                          int datasize,
1211                          int max_data_bytes);
1212 unsigned char *create_volume_objectid(connection_struct *conn, unsigned char objid[16]);
1213 NTSTATUS hardlink_internals(TALLOC_CTX *ctx,
1214                 connection_struct *conn,
1215                 struct smb_request *req,
1216                 bool overwrite_if_exists,
1217                 const struct smb_filename *smb_fname_old,
1218                 struct smb_filename *smb_fname_new);
1219 NTSTATUS smb_set_file_time(connection_struct *conn,
1220                            files_struct *fsp,
1221                            const struct smb_filename *smb_fname,
1222                            struct smb_file_time *ft,
1223                            bool setting_write_time);
1224 void reply_findclose(struct smb_request *req);
1225 void reply_findnclose(struct smb_request *req);
1226 void reply_trans2(struct smb_request *req);
1227 void reply_transs2(struct smb_request *req);
1228
1229 enum perm_type {
1230         PERM_NEW_FILE,
1231         PERM_NEW_DIR,
1232         PERM_EXISTING_FILE,
1233         PERM_EXISTING_DIR
1234 };
1235
1236 NTSTATUS unix_perms_from_wire(connection_struct *conn,
1237                               const SMB_STRUCT_STAT *psbuf,
1238                               uint32_t perms,
1239                               enum perm_type ptype,
1240                               mode_t *ret_perms);
1241
1242 /* The following definitions come from smbd/uid.c  */
1243
1244 bool change_to_guest(void);
1245 NTSTATUS check_user_share_access(connection_struct *conn,
1246                                 const struct auth_session_info *session_info,
1247                                 uint32_t *p_share_access,
1248                                 bool *p_readonly_share);
1249 bool change_to_user_and_service(connection_struct *conn, uint64_t vuid);
1250 bool change_to_user_and_service_by_fsp(struct files_struct *fsp);
1251 bool smbd_change_to_root_user(void);
1252 bool smbd_become_authenticated_pipe_user(struct auth_session_info *session_info);
1253 bool smbd_unbecome_authenticated_pipe_user(void);
1254 void become_root(void);
1255 void unbecome_root(void);
1256 void smbd_become_root(void);
1257 void smbd_unbecome_root(void);
1258 bool become_user_without_service(connection_struct *conn, uint64_t vuid);
1259 bool become_user_without_service_by_fsp(struct files_struct *fsp);
1260 bool become_user_without_service_by_session(connection_struct *conn,
1261                             const struct auth_session_info *session_info);
1262 bool unbecome_user_without_service(void);
1263 uid_t get_current_uid(connection_struct *conn);
1264 gid_t get_current_gid(connection_struct *conn);
1265 const struct security_unix_token *get_current_utok(connection_struct *conn);
1266 const struct security_token *get_current_nttok(connection_struct *conn);
1267 uint64_t get_current_vuid(connection_struct *conn);
1268
1269 /* The following definitions come from smbd/utmp.c  */
1270
1271 void sys_utmp_claim(const char *username, const char *hostname,
1272                     const char *id_str, int id_num);
1273 void sys_utmp_yield(const char *username, const char *hostname,
1274                     const char *id_str, int id_num);
1275
1276 /* The following definitions come from smbd/vfs.c  */
1277
1278 bool vfs_init_custom(connection_struct *conn, const char *vfs_object);
1279 bool smbd_vfs_init(connection_struct *conn);
1280 NTSTATUS vfs_file_exist(connection_struct *conn, struct smb_filename *smb_fname);
1281 ssize_t vfs_pwrite_data(struct smb_request *req,
1282                         files_struct *fsp,
1283                         const char *buffer,
1284                         size_t N,
1285                         off_t offset);
1286 int vfs_allocate_file_space(files_struct *fsp, uint64_t len);
1287 int vfs_set_filelen(files_struct *fsp, off_t len);
1288 int vfs_slow_fallocate(files_struct *fsp, off_t offset, off_t len);
1289 int vfs_fill_sparse(files_struct *fsp, off_t len);
1290 int vfs_set_blocking(files_struct *fsp, bool set);
1291 off_t vfs_transfer_file(files_struct *in, files_struct *out, off_t n);
1292 const char *vfs_readdirname(connection_struct *conn, void *p,
1293                             SMB_STRUCT_STAT *sbuf, char **talloced);
1294 int vfs_ChDir(connection_struct *conn,
1295                         const struct smb_filename *smb_fname);
1296 struct smb_filename *vfs_GetWd(TALLOC_CTX *ctx, connection_struct *conn);
1297 NTSTATUS check_reduced_name(connection_struct *conn,
1298                         const struct smb_filename *cwd_fname,
1299                         const struct smb_filename *smb_fname);
1300 NTSTATUS check_reduced_name_with_privilege(connection_struct *conn,
1301                         const struct smb_filename *smb_fname,
1302                         struct smb_request *smbreq);
1303 int vfs_stat_smb_basename(struct connection_struct *conn,
1304                         const struct smb_filename *smb_fname_in,
1305                         SMB_STRUCT_STAT *psbuf);
1306 NTSTATUS vfs_stat_fsp(files_struct *fsp);
1307 NTSTATUS vfs_streaminfo(connection_struct *conn,
1308                         struct files_struct *fsp,
1309                         const struct smb_filename *smb_fname,
1310                         TALLOC_CTX *mem_ctx,
1311                         unsigned int *num_streams,
1312                         struct stream_struct **streams);
1313 void init_smb_file_time(struct smb_file_time *ft);
1314
1315 /* The following definitions come from smbd/avahi_register.c */
1316
1317 void *avahi_start_register(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
1318                            uint16_t port);
1319
1320 /* The following definitions come from smbd/smb2_create.c */
1321
1322 NTSTATUS vfs_default_durable_cookie(struct files_struct *fsp,
1323                                     TALLOC_CTX *mem_ctx,
1324                                     DATA_BLOB *cookie_blob);
1325 NTSTATUS vfs_default_durable_disconnect(struct files_struct *fsp,
1326                                         const DATA_BLOB old_cookie,
1327                                         TALLOC_CTX *mem_ctx,
1328                                         DATA_BLOB *new_cookie);
1329 NTSTATUS vfs_default_durable_reconnect(struct connection_struct *conn,
1330                                        struct smb_request *smb1req,
1331                                        struct smbXsrv_open *op,
1332                                        const DATA_BLOB old_cookie,
1333                                        TALLOC_CTX *mem_ctx,
1334                                        files_struct **result,
1335                                        DATA_BLOB *new_cookie);
1336
1337 #endif /* _SMBD_PROTO_H_ */