net: Split out "net share"
[Samba.git] / source3 / utils / net_rap.c
blob32d9fbe4096cc74ac6bf2245efe1983b19f697ab
1 /*
2 Samba Unix/Linux SMB client library
3 Distributed SMB/CIFS Server Management Utility
4 Copyright (C) 2001 Steve French (sfrench@us.ibm.com)
5 Copyright (C) 2001 Jim McDonough (jmcd@us.ibm.com)
6 Copyright (C) 2001 Andrew Tridgell (tridge@samba.org)
7 Copyright (C) 2001 Andrew Bartlett (abartlet@samba.org)
9 Originally written by Steve and Jim. Largely rewritten by tridge in
10 November 2001.
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>. */
25 #include "includes.h"
26 #include "utils/net.h"
28 /* The following messages were for error checking that is not properly
29 reported at the moment. Which should be reinstated? */
30 #define ERRMSG_TARGET_WG_NOT_VALID "\nTarget workgroup option not valid "\
31 "except on net rap server command, ignored"
32 #define ERRMSG_INVALID_HELP_OPTION "\nInvalid help option\n"
34 #define ERRMSG_BOTH_SERVER_IPADDRESS "\nTarget server and IP address both "\
35 "specified. Do not set both at the same time. The target IP address was used\n"
37 const char *share_type[] = {
38 "Disk",
39 "Print",
40 "Dev",
41 "IPC"
44 static int errmsg_not_implemented(void)
46 d_printf("\nNot implemented\n");
47 return 0;
50 int net_rap_file_usage(struct net_context *c, int argc, const char **argv)
52 return net_file_usage(c, argc, argv);
55 /***************************************************************************
56 list info on an open file
57 ***************************************************************************/
58 static void file_fn(const char * pPath, const char * pUser, uint16 perms,
59 uint16 locks, uint32 id)
61 d_printf("%-7.1d %-20.20s 0x%-4.2x %-6.1d %s\n",
62 id, pUser, perms, locks, pPath);
65 static void one_file_fn(const char *pPath, const char *pUser, uint16 perms,
66 uint16 locks, uint32 id)
68 d_printf("File ID %d\n"\
69 "User name %s\n"\
70 "Locks 0x%-4.2x\n"\
71 "Path %s\n"\
72 "Permissions 0x%x\n",
73 id, pUser, locks, pPath, perms);
77 static int rap_file_close(struct net_context *c, int argc, const char **argv)
79 struct cli_state *cli;
80 int ret;
81 if (argc == 0) {
82 d_printf("\nMissing fileid of file to close\n\n");
83 return net_rap_file_usage(c, argc, argv);
86 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
87 return -1;
89 ret = cli_NetFileClose(cli, atoi(argv[0]));
90 cli_shutdown(cli);
91 return ret;
94 static int rap_file_info(struct net_context *c, int argc, const char **argv)
96 struct cli_state *cli;
97 int ret;
98 if (argc == 0)
99 return net_rap_file_usage(c, argc, argv);
101 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
102 return -1;
104 ret = cli_NetFileGetInfo(cli, atoi(argv[0]), one_file_fn);
105 cli_shutdown(cli);
106 return ret;
109 static int rap_file_user(struct net_context *c, int argc, const char **argv)
111 struct cli_state *cli;
112 int ret;
114 if (argc == 0)
115 return net_rap_file_usage(c, argc, argv);
117 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
118 return -1;
120 /* list open files */
122 d_printf("\nEnumerating open files on remote server:\n\n"
123 "\nFileId Opened by Perms Locks Path \n"
124 "------ --------- ----- ----- ---- \n");
125 ret = cli_NetFileEnum(cli, argv[0], NULL, file_fn);
127 if (ret == -1)
128 d_printf("\nOperation not supported by server!\n\n");
130 cli_shutdown(cli);
131 return ret;
134 int net_rap_file(struct net_context *c, int argc, const char **argv)
136 struct functable func[] = {
137 {"CLOSE", rap_file_close},
138 {"USER", rap_file_user},
139 {"INFO", rap_file_info},
140 {NULL, NULL}
143 if (argc == 0) {
144 struct cli_state *cli;
145 int ret;
147 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
148 return -1;
150 /* list open files */
152 d_printf("\nEnumerating open files on remote server:\n\n"
153 "\nFileId Opened by Perms Locks Path \n"
154 "------ --------- ----- ----- ---- \n");
155 ret = cli_NetFileEnum(cli, NULL, NULL, file_fn);
157 if (ret == -1)
158 d_printf("\nOperation not supported by server!\n\n");
160 cli_shutdown(cli);
161 return ret;
164 return net_run_function(c, argc, argv, func, net_rap_file_usage);
167 int net_rap_share_usage(struct net_context *c, int argc, const char **argv)
169 return net_share_usage(c, argc, argv);
172 static void long_share_fn(const char *share_name, uint32 type,
173 const char *comment, void *state)
175 d_printf("%-12s %-8.8s %-50s\n",
176 share_name, share_type[type], comment);
179 static void share_fn(const char *share_name, uint32 type,
180 const char *comment, void *state)
182 d_printf("%s\n", share_name);
185 static int rap_share_delete(struct net_context *c, int argc, const char **argv)
187 struct cli_state *cli;
188 int ret;
190 if (argc == 0) {
191 d_printf("\n\nShare name not specified\n");
192 return net_rap_share_usage(c, argc, argv);
195 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
196 return -1;
198 ret = cli_NetShareDelete(cli, argv[0]);
199 cli_shutdown(cli);
200 return ret;
203 static int rap_share_add(struct net_context *c, int argc, const char **argv)
205 struct cli_state *cli;
206 int ret;
208 RAP_SHARE_INFO_2 sinfo;
209 char *p;
210 char *sharename;
212 if (argc == 0) {
213 d_printf("\n\nShare name not specified\n");
214 return net_rap_share_usage(c, argc, argv);
217 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
218 return -1;
220 sharename = SMB_STRDUP(argv[0]);
221 p = strchr(sharename, '=');
222 if (p == NULL) {
223 d_printf("Server path not specified\n");
224 return net_rap_share_usage(c, argc, argv);
226 *p = 0;
227 strlcpy(sinfo.share_name, sharename, sizeof(sinfo.share_name));
228 sinfo.reserved1 = '\0';
229 sinfo.share_type = 0;
230 sinfo.comment = smb_xstrdup(c->opt_comment);
231 sinfo.perms = 0;
232 sinfo.maximum_users = c->opt_maxusers;
233 sinfo.active_users = 0;
234 sinfo.path = p+1;
235 memset(sinfo.password, '\0', sizeof(sinfo.password));
236 sinfo.reserved2 = '\0';
238 ret = cli_NetShareAdd(cli, &sinfo);
239 cli_shutdown(cli);
240 return ret;
244 int net_rap_share(struct net_context *c, int argc, const char **argv)
246 struct functable func[] = {
247 {"DELETE", rap_share_delete},
248 {"CLOSE", rap_share_delete},
249 {"ADD", rap_share_add},
250 {NULL, NULL}
253 if (argc == 0) {
254 struct cli_state *cli;
255 int ret;
257 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
258 return -1;
260 if (c->opt_long_list_entries) {
261 d_printf(
262 "\nEnumerating shared resources (exports) on remote server:\n\n"\
263 "\nShare name Type Description\n"\
264 "---------- ---- -----------\n");
265 ret = cli_RNetShareEnum(cli, long_share_fn, NULL);
266 } else {
267 ret = cli_RNetShareEnum(cli, share_fn, NULL);
269 cli_shutdown(cli);
270 return ret;
273 return net_run_function(c, argc, argv, func, net_rap_share_usage);
276 int net_rap_session_usage(struct net_context *c, int argc, const char **argv)
278 d_printf(
279 "\nnet rap session [misc. options] [targets]"\
280 "\n\tenumerates all active SMB/CIFS sessions on target server\n");
281 d_printf(
282 "\nnet rap session DELETE <client_name> [misc. options] [targets] \n"\
283 "\tor"\
284 "\nnet rap session CLOSE <client_name> [misc. options] [targets]"\
285 "\n\tDeletes (closes) a session from specified client to server\n");
286 d_printf(
287 "\nnet rap session INFO <client_name>"\
288 "\n\tEnumerates all open files in specified session\n");
290 net_common_flags_usage(c, argc, argv);
291 return -1;
294 static void list_sessions_func(char *wsname, char *username, uint16 conns,
295 uint16 opens, uint16 users, uint32 sess_time,
296 uint32 idle_time, uint32 user_flags, char *clitype)
298 int hrs = idle_time / 3600;
299 int min = (idle_time / 60) % 60;
300 int sec = idle_time % 60;
302 d_printf("\\\\%-18.18s %-20.20s %-18.18s %5d %2.2d:%2.2d:%2.2d\n",
303 wsname, username, clitype, opens, hrs, min, sec);
306 static void display_session_func(const char *wsname, const char *username,
307 uint16 conns, uint16 opens, uint16 users,
308 uint32 sess_time, uint32 idle_time,
309 uint32 user_flags, const char *clitype)
311 int ihrs = idle_time / 3600;
312 int imin = (idle_time / 60) % 60;
313 int isec = idle_time % 60;
314 int shrs = sess_time / 3600;
315 int smin = (sess_time / 60) % 60;
316 int ssec = sess_time % 60;
317 d_printf("User name %-20.20s\n"\
318 "Computer %-20.20s\n"\
319 "Guest logon %-20.20s\n"\
320 "Client Type %-40.40s\n"\
321 "Sess time %2.2d:%2.2d:%2.2d\n"\
322 "Idle time %2.2d:%2.2d:%2.2d\n",
323 username, wsname,
324 (user_flags&0x0)?"yes":"no", clitype,
325 shrs, smin, ssec, ihrs, imin, isec);
328 static void display_conns_func(uint16 conn_id, uint16 conn_type, uint16 opens,
329 uint16 users, uint32 conn_time,
330 const char *username, const char *netname)
332 d_printf("%-14.14s %-8.8s %5d\n",
333 netname, share_type[conn_type], opens);
336 static int rap_session_info(struct net_context *c, int argc, const char **argv)
338 const char *sessname;
339 struct cli_state *cli;
340 int ret;
342 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
343 return -1;
345 if (argc == 0)
346 return net_rap_session_usage(c, argc, argv);
348 sessname = argv[0];
350 ret = cli_NetSessionGetInfo(cli, sessname, display_session_func);
351 if (ret < 0) {
352 cli_shutdown(cli);
353 return ret;
356 d_printf("Share name Type # Opens\n-------------------------"\
357 "-----------------------------------------------------\n");
358 ret = cli_NetConnectionEnum(cli, sessname, display_conns_func);
359 cli_shutdown(cli);
360 return ret;
363 static int rap_session_delete(struct net_context *c, int argc, const char **argv)
365 struct cli_state *cli;
366 int ret;
368 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
369 return -1;
371 if (argc == 0)
372 return net_rap_session_usage(c, argc, argv);
374 ret = cli_NetSessionDel(cli, argv[0]);
375 cli_shutdown(cli);
376 return ret;
379 int net_rap_session(struct net_context *c, int argc, const char **argv)
381 struct functable func[] = {
382 {"INFO", rap_session_info},
383 {"DELETE", rap_session_delete},
384 {"CLOSE", rap_session_delete},
385 {NULL, NULL}
388 if (argc == 0) {
389 struct cli_state *cli;
390 int ret;
392 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
393 return -1;
395 d_printf("Computer User name "\
396 "Client Type Opens Idle time\n"\
397 "------------------------------------------"\
398 "------------------------------------\n");
399 ret = cli_NetSessionEnum(cli, list_sessions_func);
401 cli_shutdown(cli);
402 return ret;
405 return net_run_function(c, argc, argv, func, net_rap_session_usage);
408 /****************************************************************************
409 list a server name
410 ****************************************************************************/
411 static void display_server_func(const char *name, uint32 m,
412 const char *comment, void * reserved)
414 d_printf("\t%-16.16s %s\n", name, comment);
418 int net_rap_server_usage(struct net_context *c, int argc, const char **argv)
420 d_printf("net rap server [misc. options] [target]\n\t"\
421 "lists the servers in the specified domain or workgroup.\n");
422 d_printf("\n\tIf domain is not specified, it uses the current"\
423 " domain or workgroup as\n\tthe default.\n");
425 net_common_flags_usage(c, argc, argv);
426 return -1;
429 static int net_rap_server_name(struct net_context *c, int argc, const char *argv[])
431 struct cli_state *cli;
432 char *name;
434 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
435 return -1;
437 if (!cli_get_server_name(NULL, cli, &name)) {
438 d_fprintf(stderr, "cli_get_server_name failed\n");
439 cli_shutdown(cli);
440 return -1;
443 d_printf("Server name = %s\n", name);
445 TALLOC_FREE(name);
446 cli_shutdown(cli);
447 return 0;
450 int net_rap_server(struct net_context *c, int argc, const char **argv)
452 struct cli_state *cli;
453 int ret;
455 if (argc > 0) {
456 if (strequal(argv[0], "name")) {
457 return net_rap_server_name(c, argc, argv);
459 /* smb4k uses 'net [rap|rpc] server domain' to query servers in a domain */
460 /* Fall through for 'domain', any other forms will cause to show usage message */
461 if (!strequal(argv[0], "domain")) {
462 return net_rap_server_usage(c, argc-1, argv+1);
466 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
467 return -1;
469 d_printf("\nEnumerating servers in this domain or workgroup: \n\n"\
470 "\tServer name Server description\n"\
471 "\t------------- ----------------------------\n");
473 ret = cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL,
474 display_server_func,NULL);
475 cli_shutdown(cli);
476 return ret;
479 int net_rap_domain_usage(struct net_context *c, int argc, const char **argv)
481 d_printf("net rap domain [misc. options] [target]\n\tlists the"\
482 " domains or workgroups visible on the current network\n");
484 net_common_flags_usage(c, argc, argv);
485 return -1;
488 int net_rap_domain(struct net_context *c, int argc, const char **argv)
490 struct cli_state *cli;
491 int ret;
493 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
494 return -1;
496 d_printf("\nEnumerating domains:\n\n"\
497 "\tDomain name Server name of Browse Master\n"\
498 "\t------------- ----------------------------\n");
500 ret = cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
501 display_server_func,NULL);
502 cli_shutdown(cli);
503 return ret;
506 int net_rap_printq_usage(struct net_context *c, int argc, const char **argv)
508 d_printf(
509 "net rap printq [misc. options] [targets]\n"\
510 "\tor\n"\
511 "net rap printq list [<queue_name>] [misc. options] [targets]\n"\
512 "\tlists the specified queue and jobs on the target server.\n"\
513 "\tIf the queue name is not specified, all queues are listed.\n\n");
514 d_printf(
515 "net rap printq delete [<queue name>] [misc. options] [targets]\n"\
516 "\tdeletes the specified job number on the target server, or the\n"\
517 "\tprinter queue if no job number is specified\n");
519 net_common_flags_usage(c, argc, argv);
521 return -1;
524 static void enum_queue(const char *queuename, uint16 pri, uint16 start,
525 uint16 until, const char *sep, const char *pproc,
526 const char *dest, const char *qparms,
527 const char *qcomment, uint16 status, uint16 jobcount)
529 d_printf("%-17.17s Queue %5d jobs ",
530 queuename, jobcount);
532 switch (status) {
533 case 0:
534 d_printf("*Printer Active*\n");
535 break;
536 case 1:
537 d_printf("*Printer Paused*\n");
538 break;
539 case 2:
540 d_printf("*Printer error*\n");
541 break;
542 case 3:
543 d_printf("*Delete Pending*\n");
544 break;
545 default:
546 d_printf("**UNKNOWN STATUS**\n");
550 static void enum_jobs(uint16 jobid, const char *ownername,
551 const char *notifyname, const char *datatype,
552 const char *jparms, uint16 pos, uint16 status,
553 const char *jstatus, unsigned int submitted, unsigned int jobsize,
554 const char *comment)
556 d_printf(" %-23.23s %5d %9d ",
557 ownername, jobid, jobsize);
558 switch (status) {
559 case 0:
560 d_printf("Waiting\n");
561 break;
562 case 1:
563 d_printf("Held in queue\n");
564 break;
565 case 2:
566 d_printf("Spooling\n");
567 break;
568 case 3:
569 d_printf("Printing\n");
570 break;
571 default:
572 d_printf("**UNKNOWN STATUS**\n");
576 #define PRINTQ_ENUM_DISPLAY \
577 "Print queues at \\\\%s\n\n"\
578 "Name Job # Size Status\n\n"\
579 "------------------------------------------------------------------"\
580 "-------------\n"
582 static int rap_printq_info(struct net_context *c, int argc, const char **argv)
584 struct cli_state *cli;
585 int ret;
587 if (argc == 0)
588 return net_rap_printq_usage(c, argc, argv);
590 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
591 return -1;
593 d_printf(PRINTQ_ENUM_DISPLAY, cli->desthost); /* list header */
594 ret = cli_NetPrintQGetInfo(cli, argv[0], enum_queue, enum_jobs);
595 cli_shutdown(cli);
596 return ret;
599 static int rap_printq_delete(struct net_context *c, int argc, const char **argv)
601 struct cli_state *cli;
602 int ret;
604 if (argc == 0)
605 return net_rap_printq_usage(c, argc, argv);
607 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
608 return -1;
610 ret = cli_printjob_del(cli, atoi(argv[0]));
611 cli_shutdown(cli);
612 return ret;
615 int net_rap_printq(struct net_context *c, int argc, const char **argv)
617 struct cli_state *cli;
618 int ret;
620 struct functable func[] = {
621 {"INFO", rap_printq_info},
622 {"DELETE", rap_printq_delete},
623 {NULL, NULL}
626 if (argc == 0) {
627 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
628 return -1;
630 d_printf(PRINTQ_ENUM_DISPLAY, cli->desthost); /* list header */
631 ret = cli_NetPrintQEnum(cli, enum_queue, enum_jobs);
632 cli_shutdown(cli);
633 return ret;
636 return net_run_function(c, argc, argv, func, net_rap_printq_usage);
639 static int net_rap_user_usage(struct net_context *c, int argc, const char **argv)
641 return net_user_usage(c, argc, argv);
644 static void user_fn(const char *user_name, void *state)
646 d_printf("%-21.21s\n", user_name);
649 static void long_user_fn(const char *user_name, const char *comment,
650 const char * home_dir, const char * logon_script,
651 void *state)
653 d_printf("%-21.21s %s\n",
654 user_name, comment);
657 static void group_member_fn(const char *user_name, void *state)
659 d_printf("%-21.21s\n", user_name);
662 static int rap_user_delete(struct net_context *c, int argc, const char **argv)
664 struct cli_state *cli;
665 int ret;
667 if (argc == 0) {
668 d_printf("\n\nUser name not specified\n");
669 return net_rap_user_usage(c, argc, argv);
672 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
673 return -1;
675 ret = cli_NetUserDelete(cli, argv[0]);
676 cli_shutdown(cli);
677 return ret;
680 static int rap_user_add(struct net_context *c, int argc, const char **argv)
682 struct cli_state *cli;
683 int ret;
684 RAP_USER_INFO_1 userinfo;
686 if (argc == 0) {
687 d_printf("\n\nUser name not specified\n");
688 return net_rap_user_usage(c, argc, argv);
691 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
692 return -1;
694 safe_strcpy(userinfo.user_name, argv[0], sizeof(userinfo.user_name)-1);
695 if (c->opt_flags == -1)
696 c->opt_flags = 0x21;
698 userinfo.userflags = c->opt_flags;
699 userinfo.reserved1 = '\0';
700 userinfo.comment = smb_xstrdup(c->opt_comment);
701 userinfo.priv = 1;
702 userinfo.home_dir = NULL;
703 userinfo.logon_script = NULL;
705 ret = cli_NetUserAdd(cli, &userinfo);
707 cli_shutdown(cli);
708 return ret;
711 static int rap_user_info(struct net_context *c, int argc, const char **argv)
713 struct cli_state *cli;
714 int ret;
715 if (argc == 0) {
716 d_printf("\n\nUser name not specified\n");
717 return net_rap_user_usage(c, argc, argv);
720 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
721 return -1;
723 ret = cli_NetUserGetGroups(cli, argv[0], group_member_fn, NULL);
724 cli_shutdown(cli);
725 return ret;
728 int net_rap_user(struct net_context *c, int argc, const char **argv)
730 int ret = -1;
731 struct functable func[] = {
732 {"ADD", rap_user_add},
733 {"INFO", rap_user_info},
734 {"DELETE", rap_user_delete},
735 {NULL, NULL}
738 if (argc == 0) {
739 struct cli_state *cli;
740 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
741 goto done;
742 if (c->opt_long_list_entries) {
743 d_printf("\nUser name Comment"\
744 "\n-----------------------------\n");
745 ret = cli_RNetUserEnum(cli, long_user_fn, NULL);
746 cli_shutdown(cli);
747 goto done;
749 ret = cli_RNetUserEnum0(cli, user_fn, NULL);
750 cli_shutdown(cli);
751 goto done;
754 ret = net_run_function(c, argc, argv, func, net_rap_user_usage);
755 done:
756 if (ret != 0) {
757 DEBUG(1, ("Net user returned: %d\n", ret));
759 return ret;
763 int net_rap_group_usage(struct net_context *c, int argc, const char **argv)
765 return net_group_usage(c, argc, argv);
768 static void long_group_fn(const char *group_name, const char *comment,
769 void *state)
771 d_printf("%-21.21s %s\n", group_name, comment);
774 static void group_fn(const char *group_name, void *state)
776 d_printf("%-21.21s\n", group_name);
779 static int rap_group_delete(struct net_context *c, int argc, const char **argv)
781 struct cli_state *cli;
782 int ret;
783 if (argc == 0) {
784 d_printf("\n\nGroup name not specified\n");
785 return net_rap_group_usage(c, argc, argv);
788 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
789 return -1;
791 ret = cli_NetGroupDelete(cli, argv[0]);
792 cli_shutdown(cli);
793 return ret;
796 static int rap_group_add(struct net_context *c, int argc, const char **argv)
798 struct cli_state *cli;
799 int ret;
800 RAP_GROUP_INFO_1 grinfo;
802 if (argc == 0) {
803 d_printf("\n\nGroup name not specified\n");
804 return net_rap_group_usage(c, argc, argv);
807 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
808 return -1;
810 /* BB check for length 21 or smaller explicitly ? BB */
811 safe_strcpy(grinfo.group_name, argv[0], sizeof(grinfo.group_name)-1);
812 grinfo.reserved1 = '\0';
813 grinfo.comment = smb_xstrdup(c->opt_comment);
815 ret = cli_NetGroupAdd(cli, &grinfo);
816 cli_shutdown(cli);
817 return ret;
820 int net_rap_group(struct net_context *c, int argc, const char **argv)
822 struct functable func[] = {
823 {"ADD", rap_group_add},
824 {"DELETE", rap_group_delete},
825 {NULL, NULL}
828 if (argc == 0) {
829 struct cli_state *cli;
830 int ret;
831 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
832 return -1;
833 if (c->opt_long_list_entries) {
834 d_printf("Group name Comment\n");
835 d_printf("-----------------------------\n");
836 ret = cli_RNetGroupEnum(cli, long_group_fn, NULL);
837 cli_shutdown(cli);
838 return ret;
840 ret = cli_RNetGroupEnum0(cli, group_fn, NULL);
841 cli_shutdown(cli);
842 return ret;
845 return net_run_function(c, argc, argv, func, net_rap_group_usage);
848 int net_rap_groupmember_usage(struct net_context *c, int argc, const char **argv)
850 d_printf(
851 "net rap groupmember LIST <group> [misc. options] [targets]"\
852 "\n\t Enumerate users in a group\n"\
853 "\nnet rap groupmember DELETE <group> <user> [misc. options] "\
854 "[targets]\n\t Delete sepcified user from specified group\n"\
855 "\nnet rap groupmember ADD <group> <user> [misc. options] [targets]"\
856 "\n\t Add specified user to specified group\n");
858 net_common_flags_usage(c, argc, argv);
859 return -1;
863 static int rap_groupmember_add(struct net_context *c, int argc, const char **argv)
865 struct cli_state *cli;
866 int ret;
867 if (argc != 2) {
868 d_printf("\n\nGroup or user name not specified\n");
869 return net_rap_groupmember_usage(c, argc, argv);
872 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
873 return -1;
875 ret = cli_NetGroupAddUser(cli, argv[0], argv[1]);
876 cli_shutdown(cli);
877 return ret;
880 static int rap_groupmember_delete(struct net_context *c, int argc, const char **argv)
882 struct cli_state *cli;
883 int ret;
884 if (argc != 2) {
885 d_printf("\n\nGroup or user name not specified\n");
886 return net_rap_groupmember_usage(c, argc, argv);
889 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
890 return -1;
892 ret = cli_NetGroupDelUser(cli, argv[0], argv[1]);
893 cli_shutdown(cli);
894 return ret;
897 static int rap_groupmember_list(struct net_context *c, int argc, const char **argv)
899 struct cli_state *cli;
900 int ret;
901 if (argc == 0) {
902 d_printf("\n\nGroup name not specified\n");
903 return net_rap_groupmember_usage(c, argc, argv);
906 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
907 return -1;
909 ret = cli_NetGroupGetUsers(cli, argv[0], group_member_fn, NULL );
910 cli_shutdown(cli);
911 return ret;
914 int net_rap_groupmember(struct net_context *c, int argc, const char **argv)
916 struct functable func[] = {
917 {"ADD", rap_groupmember_add},
918 {"LIST", rap_groupmember_list},
919 {"DELETE", rap_groupmember_delete},
920 {NULL, NULL}
923 return net_run_function(c, argc, argv, func, net_rap_groupmember_usage);
926 int net_rap_validate_usage(struct net_context *c, int argc, const char **argv)
928 d_printf("net rap validate <username> [password]\n"\
929 "\tValidate user and password to check whether they"\
930 " can access target server or domain\n");
932 net_common_flags_usage(c, argc, argv);
933 return -1;
936 int net_rap_validate(struct net_context *c, int argc, const char **argv)
938 return errmsg_not_implemented();
941 int net_rap_service_usage(struct net_context *c, int argc, const char **argv)
943 d_printf("net rap service [misc. options] [targets] \n"\
944 "\tlists all running service daemons on target server\n");
945 d_printf("\nnet rap service START <name> [service startup arguments]"\
946 " [misc. options] [targets]"\
947 "\n\tStart named service on remote server\n");
948 d_printf("\nnet rap service STOP <name> [misc. options] [targets]\n"\
949 "\n\tStop named service on remote server\n");
951 net_common_flags_usage(c, argc, argv);
952 return -1;
955 static int rap_service_start(struct net_context *c, int argc, const char **argv)
957 return errmsg_not_implemented();
960 static int rap_service_stop(struct net_context *c, int argc, const char **argv)
962 return errmsg_not_implemented();
965 static void service_fn(const char *service_name, const char *dummy,
966 void *state)
968 d_printf("%-21.21s\n", service_name);
971 int net_rap_service(struct net_context *c, int argc, const char **argv)
973 struct functable func[] = {
974 {"START", rap_service_start},
975 {"STOP", rap_service_stop},
976 {NULL, NULL}
979 if (argc == 0) {
980 struct cli_state *cli;
981 int ret;
982 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
983 return -1;
985 if (c->opt_long_list_entries) {
986 d_printf("Service name Comment\n");
987 d_printf("-----------------------------\n");
988 ret = cli_RNetServiceEnum(cli, long_group_fn, NULL);
990 ret = cli_RNetServiceEnum(cli, service_fn, NULL);
991 cli_shutdown(cli);
992 return ret;
995 return net_run_function(c, argc, argv, func, net_rap_service_usage);
998 int net_rap_password_usage(struct net_context *c, int argc, const char **argv)
1000 d_printf(
1001 "net rap password <user> <oldpwo> <newpw> [misc. options] [target]\n"\
1002 "\tchanges the password for the specified user at target\n");
1004 return -1;
1008 int net_rap_password(struct net_context *c, int argc, const char **argv)
1010 struct cli_state *cli;
1011 int ret;
1013 if (argc < 3)
1014 return net_rap_password_usage(c, argc, argv);
1016 if (!NT_STATUS_IS_OK(net_make_ipc_connection(c, 0, &cli)))
1017 return -1;
1019 /* BB Add check for password lengths? */
1020 ret = cli_oem_change_password(cli, argv[0], argv[2], argv[1]);
1021 cli_shutdown(cli);
1022 return ret;
1025 int net_rap_admin_usage(struct net_context *c, int argc, const char **argv)
1027 d_printf(
1028 "net rap admin <remote command> [cmd args [env]] [misc. options] [targets]"\
1029 "\n\texecutes a remote command on an os/2 target server\n");
1031 return -1;
1035 int net_rap_admin(struct net_context *c, int argc, const char **argv)
1037 return errmsg_not_implemented();
1040 /* The help subsystem for the RAP subcommand */
1042 int net_rap_usage(struct net_context *c, int argc, const char **argv)
1044 d_printf(" net rap domain \tto list domains \n"\
1045 " net rap file \t\tto list open files on a server \n"\
1046 " net rap group \tto list user groups \n"\
1047 " net rap groupmember \tto list users in a group \n"\
1048 " net rap password \tto change the password of a user\n"\
1049 " net rap printq \tto list the print queues on a server\n"\
1050 " net rap server \tto list servers in a domain\n"\
1051 " net rap session \tto list clients with open sessions to a server\n"\
1052 " net rap share \tto list shares exported by a server\n"\
1053 " net rap user \t\tto list users\n"\
1054 " net rap validate \tto check whether a user and the corresponding password are valid\n"\
1055 " net rap help\n"\
1056 "\nType \"net help <option>\" to get more information on that option\n\n");
1058 net_common_flags_usage(c, argc, argv);
1059 return -1;
1063 handle "net rap help *" subcommands
1065 int net_rap_help(struct net_context *c, int argc, const char **argv)
1067 struct functable func[] = {
1068 {"FILE", net_rap_file_usage},
1069 {"SHARE", net_rap_share_usage},
1070 {"SESSION", net_rap_session_usage},
1071 {"SERVER", net_rap_server_usage},
1072 {"DOMAIN", net_rap_domain_usage},
1073 {"PRINTQ", net_rap_printq_usage},
1074 {"USER", net_rap_user_usage},
1075 {"GROUP", net_rap_group_usage},
1076 {"VALIDATE", net_rap_validate_usage},
1077 {"GROUPMEMBER", net_rap_groupmember_usage},
1078 {"ADMIN", net_rap_admin_usage},
1079 {"SERVICE", net_rap_service_usage},
1080 {"PASSWORD", net_rap_password_usage},
1081 {NULL, NULL}};
1083 return net_run_function(c, argc, argv, func, net_rap_usage);
1086 /* Entry-point for all the RAP functions. */
1088 int net_rap(struct net_context *c, int argc, const char **argv)
1090 struct functable func[] = {
1091 {"FILE", net_rap_file},
1092 {"SHARE", net_rap_share},
1093 {"SESSION", net_rap_session},
1094 {"SERVER", net_rap_server},
1095 {"DOMAIN", net_rap_domain},
1096 {"PRINTQ", net_rap_printq},
1097 {"USER", net_rap_user},
1098 {"GROUP", net_rap_group},
1099 {"VALIDATE", net_rap_validate},
1100 {"GROUPMEMBER", net_rap_groupmember},
1101 {"ADMIN", net_rap_admin},
1102 {"SERVICE", net_rap_service},
1103 {"PASSWORD", net_rap_password},
1104 {"HELP", net_rap_help},
1105 {NULL, NULL}
1108 return net_run_function(c, argc, argv, func, net_rap_usage);