2 Unix SMB/CIFS implementation.
3 FAKE FILE suppport, for faking up special files windows want access to
4 Copyright (C) Stefan (metze) Metzmacher 2003
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "smbd/smbd.h"
22 #include "smbd/globals.h"
23 #include "fake_file.h"
26 struct fake_file_type
{
28 enum FAKE_FILE_TYPE type
;
29 void *(*init_pd
)(TALLOC_CTX
*mem_ctx
);
32 static const struct fake_file_type fake_files
[] = {
34 {FAKE_FILE_NAME_QUOTA_UNIX
, FAKE_FILE_TYPE_QUOTA
, init_quota_handle
},
35 #endif /* WITH_QUOTAS */
36 {NULL
, FAKE_FILE_TYPE_NONE
, NULL
}
39 /****************************************************************************
40 Create a fake file handle
41 ****************************************************************************/
43 static struct fake_file_handle
*init_fake_file_handle(enum FAKE_FILE_TYPE type
)
45 struct fake_file_handle
*fh
= NULL
;
48 for (i
=0; fake_files
[i
].name
!=NULL
; i
++) {
49 if (fake_files
[i
].type
==type
) {
54 if (fake_files
[i
].name
== NULL
) {
58 DEBUG(5,("init_fake_file_handle: for [%s]\n",fake_files
[i
].name
));
60 fh
= talloc(NULL
, struct fake_file_handle
);
62 DEBUG(0,("TALLOC_ZERO() failed.\n"));
68 if (fake_files
[i
].init_pd
) {
69 fh
->private_data
= fake_files
[i
].init_pd(fh
);
74 /****************************************************************************
75 Does this name match a fake filename ?
76 ****************************************************************************/
78 enum FAKE_FILE_TYPE
is_fake_file_path(const char *path
)
83 return FAKE_FILE_TYPE_NONE
;
86 for (i
=0;fake_files
[i
].name
!=NULL
;i
++) {
87 if (strncmp(path
,fake_files
[i
].name
,strlen(fake_files
[i
].name
))==0) {
88 DEBUG(5,("is_fake_file: [%s] is a fake file\n",path
));
89 return fake_files
[i
].type
;
93 return FAKE_FILE_TYPE_NONE
;
96 enum FAKE_FILE_TYPE
is_fake_file(const struct smb_filename
*smb_fname
)
100 enum FAKE_FILE_TYPE ret
;
103 return FAKE_FILE_TYPE_NONE
;
106 status
= get_full_smb_filename(talloc_tos(), smb_fname
, &fname
);
107 if (!NT_STATUS_IS_OK(status
)) {
108 return FAKE_FILE_TYPE_NONE
;
111 ret
= is_fake_file_path(fname
);
118 /****************************************************************************
119 Open a fake quota file with a share mode.
120 ****************************************************************************/
122 NTSTATUS
open_fake_file(struct smb_request
*req
, connection_struct
*conn
,
123 uint16_t current_vuid
,
124 enum FAKE_FILE_TYPE fake_file_type
,
125 const struct smb_filename
*smb_fname
,
127 files_struct
**result
)
129 files_struct
*fsp
= NULL
;
132 status
= smbd_calculate_access_mask(conn
, smb_fname
,
133 false, /* fake files do not exist */
134 access_mask
, &access_mask
);
135 if (!NT_STATUS_IS_OK(status
)) {
136 DEBUG(10, ("open_fake_file: smbd_calculate_access_mask "
137 "on service[%s] file[%s] returned %s\n",
138 lp_servicename(SNUM(conn
)),
139 smb_fname_str_dbg(smb_fname
),
145 if (geteuid() != sec_initial_uid()) {
146 DEBUG(3, ("open_fake_file_shared: access_denied to "
147 "service[%s] file[%s] user[%s]\n",
148 lp_servicename(SNUM(conn
)),
149 smb_fname_str_dbg(smb_fname
),
150 conn
->session_info
->unix_info
->unix_name
));
151 return NT_STATUS_ACCESS_DENIED
;
155 status
= file_new(req
, conn
, &fsp
);
156 if(!NT_STATUS_IS_OK(status
)) {
160 DEBUG(5,("open_fake_file_shared: fname = %s, FID = %d, access_mask = 0x%x\n",
161 smb_fname_str_dbg(smb_fname
), fsp
->fnum
,
162 (unsigned int)access_mask
));
166 fsp
->vuid
= current_vuid
;
168 fsp
->can_lock
= False
; /* Should this be true ? - No, JRA */
169 fsp
->access_mask
= access_mask
;
170 status
= fsp_set_smb_fname(fsp
, smb_fname
);
171 if (!NT_STATUS_IS_OK(status
)) {
173 return NT_STATUS_NO_MEMORY
;
176 fsp
->fake_file_handle
= init_fake_file_handle(fake_file_type
);
178 if (fsp
->fake_file_handle
==NULL
) {
180 return NT_STATUS_NO_MEMORY
;
187 NTSTATUS
close_fake_file(struct smb_request
*req
, files_struct
*fsp
)