netapi: fix NetShareEnum_r which in fact enumerates all shares.
[kamenim/samba.git] / source3 / lib / netapi / share.c
1 /*
2  *  Unix SMB/CIFS implementation.
3  *  NetApi Share Support
4  *  Copyright (C) Guenther Deschner 2008
5  *
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.
10  *
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.
15  *
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/>.
18  */
19
20 #include "includes.h"
21
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
27 /****************************************************************
28 ****************************************************************/
29
30 static NTSTATUS map_srvsvc_share_info_to_SHARE_INFO_buffer(TALLOC_CTX *mem_ctx,
31                                                            uint32_t level,
32                                                            union srvsvc_NetShareInfo *info,
33                                                            uint8_t **buffer,
34                                                            uint32_t *num_shares)
35 {
36         struct SHARE_INFO_0 i0;
37         struct SHARE_INFO_1 i1;
38         struct SHARE_INFO_2 i2;
39         struct SHARE_INFO_501 i501;
40         struct SHARE_INFO_1005 i1005;
41
42         struct srvsvc_NetShareInfo0 *s0;
43         struct srvsvc_NetShareInfo1 *s1;
44         struct srvsvc_NetShareInfo2 *s2;
45         struct srvsvc_NetShareInfo501 *s501;
46         struct srvsvc_NetShareInfo1005 *s1005;
47
48         if (!buffer) {
49                 return NT_STATUS_INVALID_PARAMETER;
50         }
51
52         switch (level) {
53                 case 0:
54                         s0 = info->info0;
55
56                         i0.shi0_netname         = talloc_strdup(mem_ctx, s0->name);
57
58                         ADD_TO_ARRAY(mem_ctx, struct SHARE_INFO_0, i0,
59                                      (struct SHARE_INFO_0 **)buffer,
60                                      num_shares);
61                         break;
62
63                 case 1:
64                         s1 = info->info1;
65
66                         i1.shi1_netname         = talloc_strdup(mem_ctx, s1->name);
67                         i1.shi1_type            = s1->type;
68                         i1.shi1_remark          = talloc_strdup(mem_ctx, s1->comment);
69
70                         ADD_TO_ARRAY(mem_ctx, struct SHARE_INFO_1, i1,
71                                      (struct SHARE_INFO_1 **)buffer,
72                                      num_shares);
73                         break;
74
75                 case 2:
76                         s2 = info->info2;
77
78                         i2.shi2_netname         = talloc_strdup(mem_ctx, s2->name);
79                         i2.shi2_type            = s2->type;
80                         i2.shi2_remark          = talloc_strdup(mem_ctx, s2->comment);
81                         i2.shi2_permissions     = s2->permissions;
82                         i2.shi2_max_uses        = s2->max_users;
83                         i2.shi2_current_uses    = s2->current_users;
84                         i2.shi2_path            = talloc_strdup(mem_ctx, s2->path);
85                         i2.shi2_passwd          = talloc_strdup(mem_ctx, s2->password);
86
87                         ADD_TO_ARRAY(mem_ctx, struct SHARE_INFO_2, i2,
88                                      (struct SHARE_INFO_2 **)buffer,
89                                      num_shares);
90                         break;
91
92                 case 501:
93                         s501 = info->info501;
94
95                         i501.shi501_netname             = talloc_strdup(mem_ctx, s501->name);
96                         i501.shi501_type                = s501->type;
97                         i501.shi501_remark              = talloc_strdup(mem_ctx, s501->comment);
98                         i501.shi501_flags               = s501->csc_policy;
99
100                         ADD_TO_ARRAY(mem_ctx, struct SHARE_INFO_501, i501,
101                                      (struct SHARE_INFO_501 **)buffer,
102                                      num_shares);
103                         break;
104
105                 case 1005:
106                         s1005 = info->info1005;
107
108                         i1005.shi1005_flags             = s1005->dfs_flags;
109
110                         ADD_TO_ARRAY(mem_ctx, struct SHARE_INFO_1005, i1005,
111                                      (struct SHARE_INFO_1005 **)buffer,
112                                      num_shares);
113                         break;
114
115                 default:
116                         return NT_STATUS_INVALID_PARAMETER;
117         }
118
119         return NT_STATUS_OK;
120 }
121
122 /****************************************************************
123 ****************************************************************/
124
125 static NTSTATUS map_SHARE_INFO_buffer_to_srvsvc_share_info(TALLOC_CTX *mem_ctx,
126                                                            uint8_t *buffer,
127                                                            uint32_t level,
128                                                            union srvsvc_NetShareInfo *info)
129 {
130         struct SHARE_INFO_2 *i2 = NULL;
131         struct SHARE_INFO_1004 *i1004 = NULL;
132         struct srvsvc_NetShareInfo2 *s2 = NULL;
133         struct srvsvc_NetShareInfo1004 *s1004 = NULL;
134
135         if (!buffer) {
136                 return NT_STATUS_INVALID_PARAMETER;
137         }
138
139         switch (level) {
140                 case 2:
141                         i2 = (struct SHARE_INFO_2 *)buffer;
142
143                         s2 = TALLOC_P(mem_ctx, struct srvsvc_NetShareInfo2);
144                         NT_STATUS_HAVE_NO_MEMORY(s2);
145
146                         s2->name                = i2->shi2_netname;
147                         s2->type                = i2->shi2_type;
148                         s2->comment             = i2->shi2_remark;
149                         s2->permissions         = i2->shi2_permissions;
150                         s2->max_users           = i2->shi2_max_uses;
151                         s2->current_users       = i2->shi2_current_uses;
152                         s2->path                = i2->shi2_path;
153                         s2->password            = i2->shi2_passwd;
154
155                         info->info2 = s2;
156
157                         break;
158                 case 1004:
159                         i1004 = (struct SHARE_INFO_1004 *)buffer;
160
161                         s1004 = TALLOC_P(mem_ctx, struct srvsvc_NetShareInfo1004);
162                         NT_STATUS_HAVE_NO_MEMORY(s1004);
163
164                         s1004->comment          = i1004->shi1004_remark;
165
166                         info->info1004 = s1004;
167
168                         break;
169                 default:
170                         return NT_STATUS_INVALID_PARAMETER;
171         }
172
173         return NT_STATUS_OK;
174 }
175
176 /****************************************************************
177 ****************************************************************/
178
179 WERROR NetShareAdd_r(struct libnetapi_ctx *ctx,
180                      struct NetShareAdd *r)
181 {
182         WERROR werr;
183         NTSTATUS status;
184         struct cli_state *cli = NULL;
185         struct rpc_pipe_client *pipe_cli = NULL;
186         union srvsvc_NetShareInfo info;
187
188         if (!r->in.buffer) {
189                 return WERR_INVALID_PARAM;
190         }
191
192         switch (r->in.level) {
193                 case 2:
194                         break;
195                 case 502:
196                 case 503:
197                         return WERR_NOT_SUPPORTED;
198                 default:
199                         return WERR_UNKNOWN_LEVEL;
200         }
201
202         werr = libnetapi_open_pipe(ctx, r->in.server_name,
203                                    &ndr_table_srvsvc.syntax_id,
204                                    &cli,
205                                    &pipe_cli);
206         if (!W_ERROR_IS_OK(werr)) {
207                 goto done;
208         }
209
210         status = map_SHARE_INFO_buffer_to_srvsvc_share_info(ctx,
211                                                             r->in.buffer,
212                                                             r->in.level,
213                                                             &info);
214         if (!NT_STATUS_IS_OK(status)) {
215                 werr = ntstatus_to_werror(status);
216                 goto done;
217         }
218
219         status = rpccli_srvsvc_NetShareAdd(pipe_cli, ctx,
220                                            r->in.server_name,
221                                            r->in.level,
222                                            &info,
223                                            r->out.parm_err,
224                                            &werr);
225         if (!W_ERROR_IS_OK(werr)) {
226                 goto done;
227         }
228
229  done:
230         if (!cli) {
231                 return werr;
232         }
233
234         return werr;
235 }
236
237 /****************************************************************
238 ****************************************************************/
239
240 WERROR NetShareAdd_l(struct libnetapi_ctx *ctx,
241                      struct NetShareAdd *r)
242 {
243         LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetShareAdd);
244 }
245
246 /****************************************************************
247 ****************************************************************/
248
249 WERROR NetShareDel_r(struct libnetapi_ctx *ctx,
250                      struct NetShareDel *r)
251 {
252         WERROR werr;
253         NTSTATUS status;
254         struct cli_state *cli = NULL;
255         struct rpc_pipe_client *pipe_cli = NULL;
256
257         if (!r->in.net_name) {
258                 return WERR_INVALID_PARAM;
259         }
260
261         werr = libnetapi_open_pipe(ctx, r->in.server_name,
262                                    &ndr_table_srvsvc.syntax_id,
263                                    &cli,
264                                    &pipe_cli);
265         if (!W_ERROR_IS_OK(werr)) {
266                 goto done;
267         }
268
269         status = rpccli_srvsvc_NetShareDel(pipe_cli, ctx,
270                                            r->in.server_name,
271                                            r->in.net_name,
272                                            r->in.reserved,
273                                            &werr);
274         if (!W_ERROR_IS_OK(werr)) {
275                 goto done;
276         }
277
278  done:
279         if (!cli) {
280                 return werr;
281         }
282
283         return werr;
284 }
285
286 /****************************************************************
287 ****************************************************************/
288
289 WERROR NetShareDel_l(struct libnetapi_ctx *ctx,
290                      struct NetShareDel *r)
291 {
292         LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetShareDel);
293 }
294
295 /****************************************************************
296 ****************************************************************/
297
298 WERROR NetShareEnum_r(struct libnetapi_ctx *ctx,
299                       struct NetShareEnum *r)
300 {
301         WERROR werr;
302         NTSTATUS status;
303         struct cli_state *cli = NULL;
304         struct rpc_pipe_client *pipe_cli = NULL;
305         struct srvsvc_NetShareInfoCtr info_ctr;
306         struct srvsvc_NetShareCtr0 ctr0;
307         struct srvsvc_NetShareCtr1 ctr1;
308         struct srvsvc_NetShareCtr2 ctr2;
309         uint32_t i;
310
311         if (!r->out.buffer) {
312                 return WERR_INVALID_PARAM;
313         }
314
315         switch (r->in.level) {
316                 case 0:
317                 case 1:
318                 case 2:
319                         break;
320                 case 502:
321                 case 503:
322                         return WERR_NOT_SUPPORTED;
323                 default:
324                         return WERR_UNKNOWN_LEVEL;
325         }
326
327         ZERO_STRUCT(info_ctr);
328
329         werr = libnetapi_open_pipe(ctx, r->in.server_name,
330                                    &ndr_table_srvsvc.syntax_id,
331                                    &cli,
332                                    &pipe_cli);
333         if (!W_ERROR_IS_OK(werr)) {
334                 goto done;
335         }
336
337         info_ctr.level = r->in.level;
338         switch (r->in.level) {
339                 case 0:
340                         info_ctr.ctr.ctr0 = &ctr0;
341                          break;
342                 case 1:
343                         info_ctr.ctr.ctr1 = &ctr1;
344                         break;
345                 case 2:
346                         info_ctr.ctr.ctr2 = &ctr2;
347                         break;
348         }
349
350         status = rpccli_srvsvc_NetShareEnumAll(pipe_cli, ctx,
351                                                r->in.server_name,
352                                                &info_ctr,
353                                                r->in.prefmaxlen,
354                                                r->out.total_entries,
355                                                r->out.resume_handle,
356                                                &werr);
357         if (NT_STATUS_IS_ERR(status)) {
358                 goto done;
359         }
360
361         for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
362                 union srvsvc_NetShareInfo _i;
363                 switch (r->in.level) {
364                         case 0:
365                                 _i.info0 = &info_ctr.ctr.ctr0->array[i];
366                                 break;
367                         case 1:
368                                 _i.info1 = &info_ctr.ctr.ctr1->array[i];
369                                 break;
370                         case 2:
371                                 _i.info2 = &info_ctr.ctr.ctr2->array[i];
372                                 break;
373                 }
374
375                 status = map_srvsvc_share_info_to_SHARE_INFO_buffer(ctx,
376                                                                     r->in.level,
377                                                                     &_i,
378                                                                     r->out.buffer,
379                                                                     r->out.entries_read);
380                 if (!NT_STATUS_IS_OK(status)) {
381                         werr = ntstatus_to_werror(status);
382                 }
383         }
384
385  done:
386         if (!cli) {
387                 return werr;
388         }
389
390         return werr;
391 }
392
393 /****************************************************************
394 ****************************************************************/
395
396 WERROR NetShareEnum_l(struct libnetapi_ctx *ctx,
397                       struct NetShareEnum *r)
398 {
399         LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetShareEnum);
400 }
401
402 /****************************************************************
403 ****************************************************************/
404
405 WERROR NetShareGetInfo_r(struct libnetapi_ctx *ctx,
406                          struct NetShareGetInfo *r)
407 {
408         WERROR werr;
409         NTSTATUS status;
410         struct cli_state *cli = NULL;
411         struct rpc_pipe_client *pipe_cli = NULL;
412         union srvsvc_NetShareInfo info;
413         uint32_t num_entries = 0;
414
415         if (!r->in.net_name) {
416                 return WERR_INVALID_PARAM;
417         }
418
419         switch (r->in.level) {
420                 case 0:
421                 case 1:
422                 case 2:
423                 case 501:
424                 case 1005:
425                         break;
426                 case 502:
427                 case 503:
428                         return WERR_NOT_SUPPORTED;
429                 default:
430                         return WERR_UNKNOWN_LEVEL;
431         }
432
433         werr = libnetapi_open_pipe(ctx, r->in.server_name,
434                                    &ndr_table_srvsvc.syntax_id,
435                                    &cli,
436                                    &pipe_cli);
437         if (!W_ERROR_IS_OK(werr)) {
438                 goto done;
439         }
440
441         status = rpccli_srvsvc_NetShareGetInfo(pipe_cli, ctx,
442                                                r->in.server_name,
443                                                r->in.net_name,
444                                                r->in.level,
445                                                &info,
446                                                &werr);
447
448         if (!W_ERROR_IS_OK(werr)) {
449                 goto done;
450         }
451
452         status = map_srvsvc_share_info_to_SHARE_INFO_buffer(ctx,
453                                                             r->in.level,
454                                                             &info,
455                                                             r->out.buffer,
456                                                             &num_entries);
457         if (!NT_STATUS_IS_OK(status)) {
458                 werr = ntstatus_to_werror(status);
459         }
460
461  done:
462         if (!cli) {
463                 return werr;
464         }
465
466         return werr;
467 }
468
469 /****************************************************************
470 ****************************************************************/
471
472 WERROR NetShareGetInfo_l(struct libnetapi_ctx *ctx,
473                          struct NetShareGetInfo *r)
474 {
475         LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetShareGetInfo);
476 }
477
478 /****************************************************************
479 ****************************************************************/
480
481 WERROR NetShareSetInfo_r(struct libnetapi_ctx *ctx,
482                          struct NetShareSetInfo *r)
483 {
484         WERROR werr;
485         NTSTATUS status;
486         struct cli_state *cli = NULL;
487         struct rpc_pipe_client *pipe_cli = NULL;
488         union srvsvc_NetShareInfo info;
489
490         if (!r->in.buffer) {
491                 return WERR_INVALID_PARAM;
492         }
493
494         switch (r->in.level) {
495                 case 2:
496                 case 1004:
497                         break;
498                 case 1:
499                 case 502:
500                 case 503:
501                 case 1005:
502                 case 1006:
503                 case 1501:
504                         return WERR_NOT_SUPPORTED;
505                 default:
506                         return WERR_UNKNOWN_LEVEL;
507         }
508
509         werr = libnetapi_open_pipe(ctx, r->in.server_name,
510                                    &ndr_table_srvsvc.syntax_id,
511                                    &cli,
512                                    &pipe_cli);
513         if (!W_ERROR_IS_OK(werr)) {
514                 goto done;
515         }
516
517         status = map_SHARE_INFO_buffer_to_srvsvc_share_info(ctx,
518                                                             r->in.buffer,
519                                                             r->in.level,
520                                                             &info);
521         if (!NT_STATUS_IS_OK(status)) {
522                 werr = ntstatus_to_werror(status);
523                 goto done;
524         }
525
526         status = rpccli_srvsvc_NetShareSetInfo(pipe_cli, ctx,
527                                                r->in.server_name,
528                                                r->in.net_name,
529                                                r->in.level,
530                                                &info,
531                                                r->out.parm_err,
532                                                &werr);
533         if (!W_ERROR_IS_OK(werr)) {
534                 goto done;
535         }
536
537  done:
538         if (!cli) {
539                 return werr;
540         }
541
542         return werr;
543 }
544
545 /****************************************************************
546 ****************************************************************/
547
548 WERROR NetShareSetInfo_l(struct libnetapi_ctx *ctx,
549                          struct NetShareSetInfo *r)
550 {
551         LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetShareSetInfo);
552 }