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"
26 #include "../librpc/gen_ndr/cli_srvsvc.h"
28 /****************************************************************
29 ****************************************************************/
31 static NTSTATUS
map_srvsvc_share_info_to_SHARE_INFO_buffer(TALLOC_CTX
*mem_ctx
,
33 union srvsvc_NetShareInfo
*info
,
37 struct SHARE_INFO_0 i0
;
38 struct SHARE_INFO_1 i1
;
39 struct SHARE_INFO_2 i2
;
40 struct SHARE_INFO_501 i501
;
41 struct SHARE_INFO_1005 i1005
;
43 struct srvsvc_NetShareInfo0
*s0
;
44 struct srvsvc_NetShareInfo1
*s1
;
45 struct srvsvc_NetShareInfo2
*s2
;
46 struct srvsvc_NetShareInfo501
*s501
;
47 struct srvsvc_NetShareInfo1005
*s1005
;
50 return NT_STATUS_INVALID_PARAMETER
;
57 i0
.shi0_netname
= talloc_strdup(mem_ctx
, s0
->name
);
59 ADD_TO_ARRAY(mem_ctx
, struct SHARE_INFO_0
, i0
,
60 (struct SHARE_INFO_0
**)buffer
,
67 i1
.shi1_netname
= talloc_strdup(mem_ctx
, s1
->name
);
68 i1
.shi1_type
= s1
->type
;
69 i1
.shi1_remark
= talloc_strdup(mem_ctx
, s1
->comment
);
71 ADD_TO_ARRAY(mem_ctx
, struct SHARE_INFO_1
, i1
,
72 (struct SHARE_INFO_1
**)buffer
,
79 i2
.shi2_netname
= talloc_strdup(mem_ctx
, s2
->name
);
80 i2
.shi2_type
= s2
->type
;
81 i2
.shi2_remark
= talloc_strdup(mem_ctx
, s2
->comment
);
82 i2
.shi2_permissions
= s2
->permissions
;
83 i2
.shi2_max_uses
= s2
->max_users
;
84 i2
.shi2_current_uses
= s2
->current_users
;
85 i2
.shi2_path
= talloc_strdup(mem_ctx
, s2
->path
);
86 i2
.shi2_passwd
= talloc_strdup(mem_ctx
, s2
->password
);
88 ADD_TO_ARRAY(mem_ctx
, struct SHARE_INFO_2
, i2
,
89 (struct SHARE_INFO_2
**)buffer
,
96 i501
.shi501_netname
= talloc_strdup(mem_ctx
, s501
->name
);
97 i501
.shi501_type
= s501
->type
;
98 i501
.shi501_remark
= talloc_strdup(mem_ctx
, s501
->comment
);
99 i501
.shi501_flags
= s501
->csc_policy
;
101 ADD_TO_ARRAY(mem_ctx
, struct SHARE_INFO_501
, i501
,
102 (struct SHARE_INFO_501
**)buffer
,
107 s1005
= info
->info1005
;
109 i1005
.shi1005_flags
= s1005
->dfs_flags
;
111 ADD_TO_ARRAY(mem_ctx
, struct SHARE_INFO_1005
, i1005
,
112 (struct SHARE_INFO_1005
**)buffer
,
117 return NT_STATUS_INVALID_PARAMETER
;
123 /****************************************************************
124 ****************************************************************/
126 static NTSTATUS
map_SHARE_INFO_buffer_to_srvsvc_share_info(TALLOC_CTX
*mem_ctx
,
129 union srvsvc_NetShareInfo
*info
)
131 struct SHARE_INFO_2
*i2
= NULL
;
132 struct SHARE_INFO_1004
*i1004
= NULL
;
133 struct srvsvc_NetShareInfo2
*s2
= NULL
;
134 struct srvsvc_NetShareInfo1004
*s1004
= NULL
;
137 return NT_STATUS_INVALID_PARAMETER
;
142 i2
= (struct SHARE_INFO_2
*)buffer
;
144 s2
= TALLOC_P(mem_ctx
, struct srvsvc_NetShareInfo2
);
145 NT_STATUS_HAVE_NO_MEMORY(s2
);
147 s2
->name
= i2
->shi2_netname
;
148 s2
->type
= i2
->shi2_type
;
149 s2
->comment
= i2
->shi2_remark
;
150 s2
->permissions
= i2
->shi2_permissions
;
151 s2
->max_users
= i2
->shi2_max_uses
;
152 s2
->current_users
= i2
->shi2_current_uses
;
153 s2
->path
= i2
->shi2_path
;
154 s2
->password
= i2
->shi2_passwd
;
160 i1004
= (struct SHARE_INFO_1004
*)buffer
;
162 s1004
= TALLOC_P(mem_ctx
, struct srvsvc_NetShareInfo1004
);
163 NT_STATUS_HAVE_NO_MEMORY(s1004
);
165 s1004
->comment
= i1004
->shi1004_remark
;
167 info
->info1004
= s1004
;
171 return NT_STATUS_INVALID_PARAMETER
;
177 /****************************************************************
178 ****************************************************************/
180 WERROR
NetShareAdd_r(struct libnetapi_ctx
*ctx
,
181 struct NetShareAdd
*r
)
185 struct rpc_pipe_client
*pipe_cli
= NULL
;
186 union srvsvc_NetShareInfo info
;
189 return WERR_INVALID_PARAM
;
192 switch (r
->in
.level
) {
197 return WERR_NOT_SUPPORTED
;
199 return WERR_UNKNOWN_LEVEL
;
202 werr
= libnetapi_open_pipe(ctx
, r
->in
.server_name
,
203 &ndr_table_srvsvc
.syntax_id
,
205 if (!W_ERROR_IS_OK(werr
)) {
209 status
= map_SHARE_INFO_buffer_to_srvsvc_share_info(ctx
,
213 if (!NT_STATUS_IS_OK(status
)) {
214 werr
= ntstatus_to_werror(status
);
218 status
= rpccli_srvsvc_NetShareAdd(pipe_cli
, talloc_tos(),
224 if (!W_ERROR_IS_OK(werr
)) {
232 /****************************************************************
233 ****************************************************************/
235 WERROR
NetShareAdd_l(struct libnetapi_ctx
*ctx
,
236 struct NetShareAdd
*r
)
238 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx
, r
, NetShareAdd
);
241 /****************************************************************
242 ****************************************************************/
244 WERROR
NetShareDel_r(struct libnetapi_ctx
*ctx
,
245 struct NetShareDel
*r
)
249 struct rpc_pipe_client
*pipe_cli
= NULL
;
251 if (!r
->in
.net_name
) {
252 return WERR_INVALID_PARAM
;
255 werr
= libnetapi_open_pipe(ctx
, r
->in
.server_name
,
256 &ndr_table_srvsvc
.syntax_id
,
258 if (!W_ERROR_IS_OK(werr
)) {
262 status
= rpccli_srvsvc_NetShareDel(pipe_cli
, talloc_tos(),
267 if (!NT_STATUS_IS_OK(status
)) {
268 werr
= ntstatus_to_werror(status
);
276 /****************************************************************
277 ****************************************************************/
279 WERROR
NetShareDel_l(struct libnetapi_ctx
*ctx
,
280 struct NetShareDel
*r
)
282 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx
, r
, NetShareDel
);
285 /****************************************************************
286 ****************************************************************/
288 WERROR
NetShareEnum_r(struct libnetapi_ctx
*ctx
,
289 struct NetShareEnum
*r
)
293 struct rpc_pipe_client
*pipe_cli
= NULL
;
294 struct srvsvc_NetShareInfoCtr info_ctr
;
295 struct srvsvc_NetShareCtr0 ctr0
;
296 struct srvsvc_NetShareCtr1 ctr1
;
297 struct srvsvc_NetShareCtr2 ctr2
;
300 if (!r
->out
.buffer
) {
301 return WERR_INVALID_PARAM
;
304 switch (r
->in
.level
) {
311 return WERR_NOT_SUPPORTED
;
313 return WERR_UNKNOWN_LEVEL
;
316 ZERO_STRUCT(info_ctr
);
318 werr
= libnetapi_open_pipe(ctx
, r
->in
.server_name
,
319 &ndr_table_srvsvc
.syntax_id
,
321 if (!W_ERROR_IS_OK(werr
)) {
325 info_ctr
.level
= r
->in
.level
;
326 switch (r
->in
.level
) {
329 info_ctr
.ctr
.ctr0
= &ctr0
;
333 info_ctr
.ctr
.ctr1
= &ctr1
;
337 info_ctr
.ctr
.ctr2
= &ctr2
;
341 status
= rpccli_srvsvc_NetShareEnumAll(pipe_cli
, talloc_tos(),
345 r
->out
.total_entries
,
346 r
->out
.resume_handle
,
348 if (NT_STATUS_IS_ERR(status
)) {
352 for (i
=0; i
< info_ctr
.ctr
.ctr1
->count
; i
++) {
353 union srvsvc_NetShareInfo _i
;
354 switch (r
->in
.level
) {
356 _i
.info0
= &info_ctr
.ctr
.ctr0
->array
[i
];
359 _i
.info1
= &info_ctr
.ctr
.ctr1
->array
[i
];
362 _i
.info2
= &info_ctr
.ctr
.ctr2
->array
[i
];
366 status
= map_srvsvc_share_info_to_SHARE_INFO_buffer(ctx
,
370 r
->out
.entries_read
);
371 if (!NT_STATUS_IS_OK(status
)) {
372 werr
= ntstatus_to_werror(status
);
380 /****************************************************************
381 ****************************************************************/
383 WERROR
NetShareEnum_l(struct libnetapi_ctx
*ctx
,
384 struct NetShareEnum
*r
)
386 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx
, r
, NetShareEnum
);
389 /****************************************************************
390 ****************************************************************/
392 WERROR
NetShareGetInfo_r(struct libnetapi_ctx
*ctx
,
393 struct NetShareGetInfo
*r
)
397 struct rpc_pipe_client
*pipe_cli
= NULL
;
398 union srvsvc_NetShareInfo info
;
399 uint32_t num_entries
= 0;
401 if (!r
->in
.net_name
|| !r
->out
.buffer
) {
402 return WERR_INVALID_PARAM
;
405 switch (r
->in
.level
) {
414 return WERR_NOT_SUPPORTED
;
416 return WERR_UNKNOWN_LEVEL
;
419 werr
= libnetapi_open_pipe(ctx
, r
->in
.server_name
,
420 &ndr_table_srvsvc
.syntax_id
,
422 if (!W_ERROR_IS_OK(werr
)) {
426 status
= rpccli_srvsvc_NetShareGetInfo(pipe_cli
, talloc_tos(),
433 if (!W_ERROR_IS_OK(werr
)) {
437 status
= map_srvsvc_share_info_to_SHARE_INFO_buffer(ctx
,
442 if (!NT_STATUS_IS_OK(status
)) {
443 werr
= ntstatus_to_werror(status
);
450 /****************************************************************
451 ****************************************************************/
453 WERROR
NetShareGetInfo_l(struct libnetapi_ctx
*ctx
,
454 struct NetShareGetInfo
*r
)
456 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx
, r
, NetShareGetInfo
);
459 /****************************************************************
460 ****************************************************************/
462 WERROR
NetShareSetInfo_r(struct libnetapi_ctx
*ctx
,
463 struct NetShareSetInfo
*r
)
467 struct rpc_pipe_client
*pipe_cli
= NULL
;
468 union srvsvc_NetShareInfo info
;
471 return WERR_INVALID_PARAM
;
474 switch (r
->in
.level
) {
484 return WERR_NOT_SUPPORTED
;
486 return WERR_UNKNOWN_LEVEL
;
489 werr
= libnetapi_open_pipe(ctx
, r
->in
.server_name
,
490 &ndr_table_srvsvc
.syntax_id
,
492 if (!W_ERROR_IS_OK(werr
)) {
496 status
= map_SHARE_INFO_buffer_to_srvsvc_share_info(ctx
,
500 if (!NT_STATUS_IS_OK(status
)) {
501 werr
= ntstatus_to_werror(status
);
505 status
= rpccli_srvsvc_NetShareSetInfo(pipe_cli
, talloc_tos(),
512 if (!W_ERROR_IS_OK(werr
)) {
520 /****************************************************************
521 ****************************************************************/
523 WERROR
NetShareSetInfo_l(struct libnetapi_ctx
*ctx
,
524 struct NetShareSetInfo
*r
)
526 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx
, r
, NetShareSetInfo
);