1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
/*
* Unix SMB/Netbios implementation.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _SOURCE3_SMBD_DIR_H_
#define _SOURCE3_SMBD_DIR_H_
#include "includes.h"
struct smb_Dir;
struct dptr_struct;
NTSTATUS can_delete_directory_fsp(files_struct *fsp);
struct files_struct *dir_hnd_fetch_fsp(struct smb_Dir *dir_hnd);
uint16_t dptr_attr(struct smbd_server_connection *sconn, int key);
bool dptr_case_sensitive(struct dptr_struct *dptr);
void dptr_closecnum(connection_struct *conn);
void dptr_CloseDir(files_struct *fsp);
NTSTATUS dptr_create(connection_struct *conn,
struct smb_request *req,
files_struct *fsp,
bool old_handle,
const char *wcard,
uint32_t attr,
struct dptr_struct **dptr_ret);
int dptr_dnum(struct dptr_struct *dptr);
files_struct *dptr_fetch_lanman2_fsp(struct smbd_server_connection *sconn,
int dptr_num);
unsigned int dptr_FileNumber(struct dptr_struct *dptr);
bool dptr_get_priv(struct dptr_struct *dptr);
bool dptr_has_wild(struct dptr_struct *dptr);
const char *dptr_path(struct smbd_server_connection *sconn, int key);
char *dptr_ReadDirName(TALLOC_CTX *ctx, struct dptr_struct *dptr);
void dptr_RewindDir(struct dptr_struct *dptr);
void dptr_set_priv(struct dptr_struct *dptr);
const char *dptr_wcard(struct smbd_server_connection *sconn, int key);
bool have_file_open_below(connection_struct *conn,
const struct smb_filename *name);
bool init_dptrs(struct smbd_server_connection *sconn);
bool is_visible_fsp(files_struct *fsp);
NTSTATUS OpenDir(TALLOC_CTX *mem_ctx,
connection_struct *conn,
const struct smb_filename *smb_dname,
const char *mask,
uint32_t attr,
struct smb_Dir **_dir_hnd);
NTSTATUS OpenDir_from_pathref(TALLOC_CTX *mem_ctx,
struct files_struct *dirfsp,
const char *mask,
uint32_t attr,
struct smb_Dir **_dir_hnd);
const char *ReadDirName(struct smb_Dir *dir_hnd, char **talloced);
void RewindDir(struct smb_Dir *dir_hnd);
bool smbd_dirptr_get_entry(TALLOC_CTX *ctx,
struct dptr_struct *dirptr,
const char *mask,
uint32_t dirtype,
bool dont_descend,
bool ask_sharemode,
bool get_dosmode,
bool (*match_fn)(TALLOC_CTX *ctx,
void *private_data,
const char *dname,
const char *mask,
char **_fname),
void *private_data,
char **_fname,
struct smb_filename **_smb_fname,
uint32_t *_mode);
char *smbd_dirptr_get_last_name_sent(struct dptr_struct *dirptr);
void smbd_dirptr_push_overflow(struct dptr_struct *dirptr,
char **_fname,
struct smb_filename **_smb_fname,
uint32_t mode);
void smbd_dirptr_set_last_name_sent(struct dptr_struct *dirptr, char **_fname);
#endif
|