2 * Unix SMB/CIFS implementation.
4 * Copyright (C) Guenther Deschner 2008
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/>.
22 #include "librpc/gen_ndr/libnetapi.h"
23 #include "lib/netapi/netapi.h"
24 #include "lib/netapi/netapi_private.h"
25 #include "lib/netapi/libnetapi.h"
27 /****************************************************************
28 ****************************************************************/
30 WERROR
NetFileClose_r(struct libnetapi_ctx
*ctx
,
31 struct NetFileClose
*r
)
35 struct cli_state
*cli
= NULL
;
36 struct rpc_pipe_client
*pipe_cli
= NULL
;
38 werr
= libnetapi_open_pipe(ctx
, r
->in
.server_name
,
39 &ndr_table_srvsvc
.syntax_id
,
42 if (!W_ERROR_IS_OK(werr
)) {
46 status
= rpccli_srvsvc_NetFileClose(pipe_cli
, ctx
,
50 if (!W_ERROR_IS_OK(werr
)) {
62 /****************************************************************
63 ****************************************************************/
65 WERROR
NetFileClose_l(struct libnetapi_ctx
*ctx
,
66 struct NetFileClose
*r
)
68 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx
, r
, NetFileClose
);
71 /****************************************************************
72 ****************************************************************/
74 static NTSTATUS
map_srvsvc_FileInfo_to_FILE_INFO_buffer(TALLOC_CTX
*mem_ctx
,
76 union srvsvc_NetFileInfo
*info
,
78 uint32_t *num_entries
)
80 struct FILE_INFO_2 i2
;
81 struct FILE_INFO_3 i3
;
85 i2
.fi2_id
= info
->info2
->fid
;
87 ADD_TO_ARRAY(mem_ctx
, struct FILE_INFO_2
, i2
,
88 (struct FILE_INFO_2
**)buffer
,
92 i3
.fi3_id
= info
->info3
->fid
;
93 i3
.fi3_permissions
= info
->info3
->permissions
;
94 i3
.fi3_num_locks
= info
->info3
->num_locks
;
95 i3
.fi3_pathname
= talloc_strdup(mem_ctx
, info
->info3
->path
);
96 i3
.fi3_username
= talloc_strdup(mem_ctx
, info
->info3
->user
);
98 NT_STATUS_HAVE_NO_MEMORY(i3
.fi3_pathname
);
99 NT_STATUS_HAVE_NO_MEMORY(i3
.fi3_username
);
101 ADD_TO_ARRAY(mem_ctx
, struct FILE_INFO_3
, i3
,
102 (struct FILE_INFO_3
**)buffer
,
106 return NT_STATUS_INVALID_INFO_CLASS
;
112 /****************************************************************
113 ****************************************************************/
115 WERROR
NetFileGetInfo_r(struct libnetapi_ctx
*ctx
,
116 struct NetFileGetInfo
*r
)
120 struct cli_state
*cli
= NULL
;
121 struct rpc_pipe_client
*pipe_cli
= NULL
;
122 union srvsvc_NetFileInfo info
;
123 uint32_t num_entries
= 0;
125 if (!r
->out
.buffer
) {
126 return WERR_INVALID_PARAM
;
129 switch (r
->in
.level
) {
134 return WERR_UNKNOWN_LEVEL
;
137 werr
= libnetapi_open_pipe(ctx
, r
->in
.server_name
,
138 &ndr_table_srvsvc
.syntax_id
,
141 if (!W_ERROR_IS_OK(werr
)) {
145 status
= rpccli_srvsvc_NetFileGetInfo(pipe_cli
, ctx
,
151 if (!W_ERROR_IS_OK(werr
)) {
155 status
= map_srvsvc_FileInfo_to_FILE_INFO_buffer(ctx
,
160 if (!NT_STATUS_IS_OK(status
)) {
161 werr
= ntstatus_to_werror(status
);
172 /****************************************************************
173 ****************************************************************/
175 WERROR
NetFileGetInfo_l(struct libnetapi_ctx
*ctx
,
176 struct NetFileGetInfo
*r
)
178 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx
, r
, NetFileGetInfo
);
181 /****************************************************************
182 ****************************************************************/
184 WERROR
NetFileEnum_r(struct libnetapi_ctx
*ctx
,
185 struct NetFileEnum
*r
)
189 struct cli_state
*cli
= NULL
;
190 struct rpc_pipe_client
*pipe_cli
= NULL
;
191 struct srvsvc_NetFileInfoCtr info_ctr
;
192 struct srvsvc_NetFileCtr2 ctr2
;
193 struct srvsvc_NetFileCtr3 ctr3
;
194 uint32_t num_entries
= 0;
197 if (!r
->out
.buffer
) {
198 return WERR_INVALID_PARAM
;
201 switch (r
->in
.level
) {
206 return WERR_UNKNOWN_LEVEL
;
209 werr
= libnetapi_open_pipe(ctx
, r
->in
.server_name
,
210 &ndr_table_srvsvc
.syntax_id
,
213 if (!W_ERROR_IS_OK(werr
)) {
217 ZERO_STRUCT(info_ctr
);
219 info_ctr
.level
= r
->in
.level
;
220 switch (r
->in
.level
) {
223 info_ctr
.ctr
.ctr2
= &ctr2
;
227 info_ctr
.ctr
.ctr3
= &ctr3
;
231 status
= rpccli_srvsvc_NetFileEnum(pipe_cli
, ctx
,
237 r
->out
.total_entries
,
238 r
->out
.resume_handle
,
240 if (NT_STATUS_IS_ERR(status
)) {
244 for (i
=0; i
< info_ctr
.ctr
.ctr2
->count
; i
++) {
245 union srvsvc_NetFileInfo _i
;
246 switch (r
->in
.level
) {
248 _i
.info2
= &info_ctr
.ctr
.ctr2
->array
[i
];
251 _i
.info3
= &info_ctr
.ctr
.ctr3
->array
[i
];
255 status
= map_srvsvc_FileInfo_to_FILE_INFO_buffer(ctx
,
260 if (!NT_STATUS_IS_OK(status
)) {
261 werr
= ntstatus_to_werror(status
);
266 if (r
->out
.entries_read
) {
267 *r
->out
.entries_read
= num_entries
;
270 if (r
->out
.total_entries
) {
271 *r
->out
.total_entries
= num_entries
;
282 /****************************************************************
283 ****************************************************************/
285 WERROR
NetFileEnum_l(struct libnetapi_ctx
*ctx
,
286 struct NetFileEnum
*r
)
288 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx
, r
, NetFileEnum
);