This commit was manufactured by cvs2svn to create tag
[Samba/gbeck.git] / source / rpcclient / display.c
bloba2248920cdcd19253c6d7e758ea3d08a39fae529
1 /*
2 Unix SMB/Netbios implementation.
3 Version 1.9.
4 Samba utility functions
5 Copyright (C) Andrew Tridgell 1992-1998
6 Copyright (C) Luke Kenneth Casson Leighton 1996 - 1998
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "includes.h"
26 /****************************************************************************
27 convert a share mode to a string
28 ****************************************************************************/
29 char *get_file_mode_str(uint32 share_mode)
31 static fstring mode;
33 switch ((share_mode>>4)&0xF)
35 case DENY_NONE : fstrcpy(mode, "DENY_NONE "); break;
36 case DENY_ALL : fstrcpy(mode, "DENY_ALL "); break;
37 case DENY_DOS : fstrcpy(mode, "DENY_DOS "); break;
38 case DENY_READ : fstrcpy(mode, "DENY_READ "); break;
39 case DENY_WRITE: fstrcpy(mode, "DENY_WRITE "); break;
40 default : fstrcpy(mode, "DENY_???? "); break;
43 switch (share_mode & 0xF)
45 case 0 : fstrcat(mode, "RDONLY"); break;
46 case 1 : fstrcat(mode, "WRONLY"); break;
47 case 2 : fstrcat(mode, "RDWR "); break;
48 default: fstrcat(mode, "R??W??"); break;
51 return mode;
54 /****************************************************************************
55 convert an oplock mode to a string
56 ****************************************************************************/
57 char *get_file_oplock_str(uint32 op_type)
59 static fstring oplock;
60 BOOL excl = IS_BITS_SET_ALL(op_type, EXCLUSIVE_OPLOCK);
61 BOOL batch = IS_BITS_SET_ALL(op_type, BATCH_OPLOCK );
63 oplock[0] = 0;
65 if (excl ) fstrcat(oplock, "EXCLUSIVE");
66 if (excl && batch) fstrcat(oplock, "+");
67 if ( batch) fstrcat(oplock, "BATCH");
68 if (!excl && !batch) fstrcat(oplock, "NONE");
70 return oplock;
73 /****************************************************************************
74 convert a share type enum to a string
75 ****************************************************************************/
76 char *get_share_type_str(uint32 type)
78 static fstring typestr;
80 switch (type)
82 case STYPE_DISKTREE: fstrcpy(typestr, "Disk" ); break;
83 case STYPE_PRINTQ : fstrcpy(typestr, "Printer"); break;
84 case STYPE_DEVICE : fstrcpy(typestr, "Device" ); break;
85 case STYPE_IPC : fstrcpy(typestr, "IPC" ); break;
86 default : fstrcpy(typestr, "????" ); break;
88 return typestr;
91 /****************************************************************************
92 convert a server type enum to a string
93 ****************************************************************************/
94 char *get_server_type_str(uint32 type)
96 static fstring typestr;
98 if (type == SV_TYPE_ALL)
100 fstrcpy(typestr, "All");
102 else
104 int i;
105 typestr[0] = 0;
106 for (i = 0; i < 32; i++)
108 if (IS_BITS_SET_ALL(type, 1 << i))
110 switch (1 << i)
112 case SV_TYPE_WORKSTATION : fstrcat(typestr, "Wk " ); break;
113 case SV_TYPE_SERVER : fstrcat(typestr, "Sv " ); break;
114 case SV_TYPE_SQLSERVER : fstrcat(typestr, "Sql "); break;
115 case SV_TYPE_DOMAIN_CTRL : fstrcat(typestr, "PDC "); break;
116 case SV_TYPE_DOMAIN_BAKCTRL : fstrcat(typestr, "BDC "); break;
117 case SV_TYPE_TIME_SOURCE : fstrcat(typestr, "Tim "); break;
118 case SV_TYPE_AFP : fstrcat(typestr, "AFP "); break;
119 case SV_TYPE_NOVELL : fstrcat(typestr, "Nov "); break;
120 case SV_TYPE_DOMAIN_MEMBER : fstrcat(typestr, "Dom "); break;
121 case SV_TYPE_PRINTQ_SERVER : fstrcat(typestr, "PrQ "); break;
122 case SV_TYPE_DIALIN_SERVER : fstrcat(typestr, "Din "); break;
123 case SV_TYPE_SERVER_UNIX : fstrcat(typestr, "Unx "); break;
124 case SV_TYPE_NT : fstrcat(typestr, "NT " ); break;
125 case SV_TYPE_WFW : fstrcat(typestr, "Wfw "); break;
126 case SV_TYPE_SERVER_MFPN : fstrcat(typestr, "Mfp "); break;
127 case SV_TYPE_SERVER_NT : fstrcat(typestr, "SNT "); break;
128 case SV_TYPE_POTENTIAL_BROWSER: fstrcat(typestr, "PtB "); break;
129 case SV_TYPE_BACKUP_BROWSER : fstrcat(typestr, "BMB "); break;
130 case SV_TYPE_MASTER_BROWSER : fstrcat(typestr, "LMB "); break;
131 case SV_TYPE_DOMAIN_MASTER : fstrcat(typestr, "DMB "); break;
132 case SV_TYPE_SERVER_OSF : fstrcat(typestr, "OSF "); break;
133 case SV_TYPE_SERVER_VMS : fstrcat(typestr, "VMS "); break;
134 case SV_TYPE_WIN95_PLUS : fstrcat(typestr, "W95 "); break;
135 case SV_TYPE_ALTERNATE_XPORT : fstrcat(typestr, "Xpt "); break;
136 case SV_TYPE_LOCAL_LIST_ONLY : fstrcat(typestr, "Dom "); break;
137 case SV_TYPE_DOMAIN_ENUM : fstrcat(typestr, "Loc "); break;
141 i = strlen(typestr)-1;
142 if (typestr[i] == ' ') typestr[i] = 0;
145 return typestr;
148 /****************************************************************************
149 server info level 101 display function
150 ****************************************************************************/
151 void display_srv_info_101(FILE *out_hnd, enum action_type action,
152 SRV_INFO_101 *sv101)
154 if (sv101 == NULL)
156 return;
159 switch (action)
161 case ACTION_HEADER:
163 fprintf(out_hnd, "Server Info Level 101:\n");
165 break;
167 case ACTION_ENUMERATE:
169 fstring name;
170 fstring comment;
172 fstrcpy(name , unistrn2(sv101->uni_name .buffer, sv101->uni_name .uni_str_len));
173 fstrcpy(comment , unistrn2(sv101->uni_comment .buffer, sv101->uni_comment .uni_str_len));
175 display_server(out_hnd, action, name, sv101->srv_type, comment);
177 fprintf(out_hnd, "\tplatform_id : %d\n" , sv101->platform_id);
178 fprintf(out_hnd, "\tos version : %d.%d\n" , sv101->ver_major, sv101->ver_minor);
180 break;
182 case ACTION_FOOTER:
184 break;
190 /****************************************************************************
191 server info level 102 display function
192 ****************************************************************************/
193 void display_srv_info_102(FILE *out_hnd, enum action_type action,SRV_INFO_102 *sv102)
195 if (sv102 == NULL)
197 return;
200 switch (action)
202 case ACTION_HEADER:
204 fprintf(out_hnd, "Server Info Level 102:\n");
206 break;
208 case ACTION_ENUMERATE:
210 fstring name;
211 fstring comment;
212 fstring usr_path;
214 fstrcpy(name , unistrn2(sv102->uni_name .buffer, sv102->uni_name .uni_str_len));
215 fstrcpy(comment , unistrn2(sv102->uni_comment .buffer, sv102->uni_comment .uni_str_len));
216 fstrcpy(usr_path, unistrn2(sv102->uni_usr_path.buffer, sv102->uni_usr_path.uni_str_len));
218 display_server(out_hnd, action, name, sv102->srv_type, comment);
220 fprintf(out_hnd, "\tplatform_id : %d\n" , sv102->platform_id);
221 fprintf(out_hnd, "\tos version : %d.%d\n" , sv102->ver_major, sv102->ver_minor);
223 fprintf(out_hnd, "\tusers : %x\n" , sv102->users );
224 fprintf(out_hnd, "\tdisc, hidden : %x,%x\n" , sv102->disc , sv102->hidden );
225 fprintf(out_hnd, "\tannounce, delta : %d, %d\n", sv102->announce , sv102->ann_delta);
226 fprintf(out_hnd, "\tlicenses : %d\n" , sv102->licenses );
227 fprintf(out_hnd, "\tuser path : %s\n" , usr_path);
229 break;
231 case ACTION_FOOTER:
233 break;
238 /****************************************************************************
239 server info container display function
240 ****************************************************************************/
241 void display_srv_info_ctr(FILE *out_hnd, enum action_type action,SRV_INFO_CTR *ctr)
243 if (ctr == NULL || ctr->ptr_srv_ctr == 0)
245 fprintf(out_hnd, "Server Information: unavailable due to an error\n");
246 return;
249 switch (ctr->switch_value)
251 case 101:
253 display_srv_info_101(out_hnd, action, &(ctr->srv.sv101));
254 break;
256 case 102:
258 display_srv_info_102(out_hnd, action, &(ctr->srv.sv102));
259 break;
261 default:
263 fprintf(out_hnd, "Server Information: Unknown Info Level\n");
264 break;
269 /****************************************************************************
270 connection info level 0 display function
271 ****************************************************************************/
272 void display_conn_info_0(FILE *out_hnd, enum action_type action,
273 CONN_INFO_0 *info0)
275 if (info0 == NULL)
277 return;
280 switch (action)
282 case ACTION_HEADER:
284 fprintf(out_hnd, "Connection Info Level 0:\n");
286 break;
288 case ACTION_ENUMERATE:
290 fprintf(out_hnd, "\tid: %d\n", info0->id);
292 break;
294 case ACTION_FOOTER:
296 fprintf(out_hnd, "\n");
297 break;
303 /****************************************************************************
304 connection info level 1 display function
305 ****************************************************************************/
306 void display_conn_info_1(FILE *out_hnd, enum action_type action,
307 CONN_INFO_1 *info1, CONN_INFO_1_STR *str1)
309 if (info1 == NULL || str1 == NULL)
311 return;
314 switch (action)
316 case ACTION_HEADER:
318 fprintf(out_hnd, "Connection Info Level 1:\n");
320 break;
322 case ACTION_ENUMERATE:
324 fstring usr_name;
325 fstring net_name;
327 fstrcpy(usr_name, unistrn2(str1->uni_usr_name.buffer, str1->uni_usr_name.uni_str_len));
328 fstrcpy(net_name, unistrn2(str1->uni_net_name.buffer, str1->uni_net_name.uni_str_len));
330 fprintf(out_hnd, "\tid : %d\n", info1->id);
331 fprintf(out_hnd, "\ttype : %s\n", get_share_type_str(info1->type));
332 fprintf(out_hnd, "\tnum_opens: %d\n", info1->num_opens);
333 fprintf(out_hnd, "\tnum_users: %d\n", info1->num_users);
334 fprintf(out_hnd, "\topen_time: %d\n", info1->open_time);
336 fprintf(out_hnd, "\tuser name: %s\n", usr_name);
337 fprintf(out_hnd, "\tnet name: %s\n", net_name);
339 break;
341 case ACTION_FOOTER:
343 fprintf(out_hnd, "\n");
344 break;
350 /****************************************************************************
351 connection info level 0 container display function
352 ****************************************************************************/
353 void display_srv_conn_info_0_ctr(FILE *out_hnd, enum action_type action,
354 SRV_CONN_INFO_0 *ctr)
356 if (ctr == NULL)
358 fprintf(out_hnd, "display_srv_conn_info_0_ctr: unavailable due to an internal error\n");
359 return;
362 switch (action)
364 case ACTION_HEADER:
366 break;
368 case ACTION_ENUMERATE:
370 int i;
372 for (i = 0; i < ctr->num_entries_read; i++)
374 display_conn_info_0(out_hnd, ACTION_HEADER , &(ctr->info_0[i]));
375 display_conn_info_0(out_hnd, ACTION_ENUMERATE, &(ctr->info_0[i]));
376 display_conn_info_0(out_hnd, ACTION_FOOTER , &(ctr->info_0[i]));
378 break;
380 case ACTION_FOOTER:
382 break;
387 /****************************************************************************
388 connection info level 1 container display function
389 ****************************************************************************/
390 void display_srv_conn_info_1_ctr(FILE *out_hnd, enum action_type action,
391 SRV_CONN_INFO_1 *ctr)
393 if (ctr == NULL)
395 fprintf(out_hnd, "display_srv_conn_info_1_ctr: unavailable due to an internal error\n");
396 return;
399 switch (action)
401 case ACTION_HEADER:
403 break;
405 case ACTION_ENUMERATE:
407 int i;
409 for (i = 0; i < ctr->num_entries_read; i++)
411 display_conn_info_1(out_hnd, ACTION_HEADER , &(ctr->info_1[i]), &(ctr->info_1_str[i]));
412 display_conn_info_1(out_hnd, ACTION_ENUMERATE, &(ctr->info_1[i]), &(ctr->info_1_str[i]));
413 display_conn_info_1(out_hnd, ACTION_FOOTER , &(ctr->info_1[i]), &(ctr->info_1_str[i]));
415 break;
417 case ACTION_FOOTER:
419 break;
424 /****************************************************************************
425 connection info container display function
426 ****************************************************************************/
427 void display_srv_conn_info_ctr(FILE *out_hnd, enum action_type action,
428 SRV_CONN_INFO_CTR *ctr)
430 if (ctr == NULL || ctr->ptr_conn_ctr == 0)
432 fprintf(out_hnd, "display_srv_conn_info_ctr: unavailable due to an internal error\n");
433 return;
436 switch (ctr->switch_value)
438 case 0:
440 display_srv_conn_info_0_ctr(out_hnd, action,
441 &(ctr->conn.info0));
442 break;
444 case 1:
446 display_srv_conn_info_1_ctr(out_hnd, action,
447 &(ctr->conn.info1));
448 break;
450 default:
452 fprintf(out_hnd, "display_srv_conn_info_ctr: Unknown Info Level\n");
453 break;
459 /****************************************************************************
460 share info level 1 display function
461 ****************************************************************************/
462 void display_share_info_1(FILE *out_hnd, enum action_type action,
463 SH_INFO_1 *info1, SH_INFO_1_STR *str1)
465 if (info1 == NULL || str1 == NULL)
467 return;
470 switch (action)
472 case ACTION_HEADER:
474 fprintf(out_hnd, "Share Info Level 1:\n");
476 break;
478 case ACTION_ENUMERATE:
480 fstring remark ;
481 fstring net_name;
483 fstrcpy(net_name, unistrn2(str1->uni_netname.buffer, str1->uni_netname.uni_str_len));
484 fstrcpy(remark , unistrn2(str1->uni_remark .buffer, str1->uni_remark .uni_str_len));
486 display_share(out_hnd, action, net_name, info1->type, remark);
488 break;
490 case ACTION_FOOTER:
492 fprintf(out_hnd, "\n");
493 break;
499 /****************************************************************************
500 share info level 2 display function
501 ****************************************************************************/
502 void display_share_info_2(FILE *out_hnd, enum action_type action,
503 SH_INFO_2 *info2, SH_INFO_2_STR *str2)
505 if (info2 == NULL || str2 == NULL)
507 return;
510 switch (action)
512 case ACTION_HEADER:
514 fprintf(out_hnd, "Share Info Level 2:\n");
516 break;
518 case ACTION_ENUMERATE:
520 fstring remark ;
521 fstring net_name;
522 fstring path ;
523 fstring passwd ;
525 fstrcpy(net_name, unistrn2(str2->uni_netname.buffer, str2->uni_netname.uni_str_len));
526 fstrcpy(remark , unistrn2(str2->uni_remark .buffer, str2->uni_remark .uni_str_len));
527 fstrcpy(path , unistrn2(str2->uni_path .buffer, str2->uni_path .uni_str_len));
528 fstrcpy(passwd , unistrn2(str2->uni_passwd .buffer, str2->uni_passwd .uni_str_len));
530 display_share2(out_hnd, action, net_name, info2->type, remark,
531 info2->perms, info2->max_uses, info2->num_uses,
532 path, passwd);
534 break;
536 case ACTION_FOOTER:
538 fprintf(out_hnd, "\n");
539 break;
545 /****************************************************************************
546 share info level 1 container display function
547 ****************************************************************************/
548 void display_srv_share_info_1_ctr(FILE *out_hnd, enum action_type action,
549 SRV_SHARE_INFO_1 *ctr)
551 if (ctr == NULL)
553 fprintf(out_hnd, "display_srv_share_info_1_ctr: unavailable due to an internal error\n");
554 return;
557 switch (action)
559 case ACTION_HEADER:
561 break;
563 case ACTION_ENUMERATE:
565 int i;
567 for (i = 0; i < ctr->num_entries_read; i++)
569 display_share_info_1(out_hnd, ACTION_HEADER , &(ctr->info_1[i]), &(ctr->info_1_str[i]));
570 display_share_info_1(out_hnd, ACTION_ENUMERATE, &(ctr->info_1[i]), &(ctr->info_1_str[i]));
571 display_share_info_1(out_hnd, ACTION_FOOTER , &(ctr->info_1[i]), &(ctr->info_1_str[i]));
573 break;
575 case ACTION_FOOTER:
577 break;
582 /****************************************************************************
583 share info level 2 container display function
584 ****************************************************************************/
585 void display_srv_share_info_2_ctr(FILE *out_hnd, enum action_type action,
586 SRV_SHARE_INFO_2 *ctr)
588 if (ctr == NULL)
590 fprintf(out_hnd, "display_srv_share_info_2_ctr: unavailable due to an internal error\n");
591 return;
594 switch (action)
596 case ACTION_HEADER:
598 break;
600 case ACTION_ENUMERATE:
602 int i;
604 for (i = 0; i < ctr->num_entries_read; i++)
606 display_share_info_2(out_hnd, ACTION_HEADER , &(ctr->info_2[i]), &(ctr->info_2_str[i]));
607 display_share_info_2(out_hnd, ACTION_ENUMERATE, &(ctr->info_2[i]), &(ctr->info_2_str[i]));
608 display_share_info_2(out_hnd, ACTION_FOOTER , &(ctr->info_2[i]), &(ctr->info_2_str[i]));
610 break;
612 case ACTION_FOOTER:
614 break;
619 /****************************************************************************
620 share info container display function
621 ****************************************************************************/
622 void display_srv_share_info_ctr(FILE *out_hnd, enum action_type action,
623 SRV_SHARE_INFO_CTR *ctr)
625 if (ctr == NULL || ctr->ptr_share_ctr == 0)
627 fprintf(out_hnd, "display_srv_share_info_ctr: unavailable due to an internal error\n");
628 return;
631 switch (ctr->switch_value)
633 case 1:
635 display_srv_share_info_1_ctr(out_hnd, action,
636 &(ctr->share.info1));
637 break;
639 case 2:
641 display_srv_share_info_2_ctr(out_hnd, action,
642 &(ctr->share.info2));
643 break;
645 default:
647 fprintf(out_hnd, "display_srv_share_info_ctr: Unknown Info Level\n");
648 break;
654 /****************************************************************************
655 file info level 3 display function
656 ****************************************************************************/
657 void display_file_info_3(FILE *out_hnd, enum action_type action,
658 FILE_INFO_3 *info3, FILE_INFO_3_STR *str3)
660 if (info3 == NULL || str3 == NULL)
662 return;
665 switch (action)
667 case ACTION_HEADER:
669 fprintf(out_hnd, "File Info Level 3:\n");
671 break;
673 case ACTION_ENUMERATE:
675 fstring path_name;
676 fstring user_name;
678 fstrcpy(path_name, unistrn2(str3->uni_path_name.buffer, str3->uni_path_name.uni_str_len));
679 fstrcpy(user_name, unistrn2(str3->uni_user_name.buffer, str3->uni_user_name.uni_str_len));
681 fprintf(out_hnd, "\tid : %d\n", info3->id);
682 fprintf(out_hnd, "\tperms : %s\n", get_file_mode_str(info3->perms));
683 fprintf(out_hnd, "\tnum_locks: %d\n", info3->num_locks);
685 fprintf(out_hnd, "\tpath name: %s\n", path_name);
686 fprintf(out_hnd, "\tuser name: %s\n", user_name);
688 break;
690 case ACTION_FOOTER:
692 fprintf(out_hnd, "\n");
693 break;
699 /****************************************************************************
700 file info level 3 container display function
701 ****************************************************************************/
702 void display_srv_file_info_3_ctr(FILE *out_hnd, enum action_type action,
703 SRV_FILE_INFO_3 *ctr)
705 if (ctr == NULL)
707 fprintf(out_hnd, "display_srv_file_info_3_ctr: unavailable due to an internal error\n");
708 return;
711 switch (action)
713 case ACTION_HEADER:
715 break;
717 case ACTION_ENUMERATE:
719 int i;
721 for (i = 0; i < ctr->num_entries_read; i++)
723 display_file_info_3(out_hnd, ACTION_HEADER , &(ctr->info_3[i]), &(ctr->info_3_str[i]));
724 display_file_info_3(out_hnd, ACTION_ENUMERATE, &(ctr->info_3[i]), &(ctr->info_3_str[i]));
725 display_file_info_3(out_hnd, ACTION_FOOTER , &(ctr->info_3[i]), &(ctr->info_3_str[i]));
727 break;
729 case ACTION_FOOTER:
731 break;
736 /****************************************************************************
737 file info container display function
738 ****************************************************************************/
739 void display_srv_file_info_ctr(FILE *out_hnd, enum action_type action,
740 SRV_FILE_INFO_CTR *ctr)
742 if (ctr == NULL || ctr->ptr_file_ctr == 0)
744 fprintf(out_hnd, "display_srv_file_info_ctr: unavailable due to an internal error\n");
745 return;
748 switch (ctr->switch_value)
750 case 3:
752 display_srv_file_info_3_ctr(out_hnd, action,
753 &(ctr->file.info3));
754 break;
756 default:
758 fprintf(out_hnd, "display_srv_file_info_ctr: Unknown Info Level\n");
759 break;
764 /****************************************************************************
765 print browse connection on a host
766 ****************************************************************************/
767 void display_server(FILE *out_hnd, enum action_type action,
768 char *sname, uint32 type, char *comment)
770 switch (action)
772 case ACTION_HEADER:
774 break;
776 case ACTION_ENUMERATE:
778 fprintf(out_hnd, "\t%-15.15s%-20s %s\n",
779 sname, get_server_type_str(type), comment);
780 break;
782 case ACTION_FOOTER:
784 break;
789 /****************************************************************************
790 print shares on a host
791 ****************************************************************************/
792 void display_share(FILE *out_hnd, enum action_type action,
793 char *sname, uint32 type, char *comment)
795 switch (action)
797 case ACTION_HEADER:
799 break;
801 case ACTION_ENUMERATE:
803 fprintf(out_hnd, "\t%-15.15s%-10.10s%s\n",
804 sname, get_share_type_str(type), comment);
805 break;
807 case ACTION_FOOTER:
809 break;
815 /****************************************************************************
816 print shares on a host, level 2
817 ****************************************************************************/
818 void display_share2(FILE *out_hnd, enum action_type action,
819 char *sname, uint32 type, char *comment,
820 uint32 perms, uint32 max_uses, uint32 num_uses,
821 char *path, char *passwd)
823 switch (action)
825 case ACTION_HEADER:
827 break;
829 case ACTION_ENUMERATE:
831 fprintf(out_hnd, "\t%-15.15s%-10.10s%s %x %x %x %s %s\n",
832 sname, get_share_type_str(type), comment,
833 perms, max_uses, num_uses, path, passwd);
834 break;
836 case ACTION_FOOTER:
838 break;
844 /****************************************************************************
845 print name info
846 ****************************************************************************/
847 void display_name(FILE *out_hnd, enum action_type action,
848 char *sname)
850 switch (action)
852 case ACTION_HEADER:
854 break;
856 case ACTION_ENUMERATE:
858 fprintf(out_hnd, "\t%-21.21s\n", sname);
859 break;
861 case ACTION_FOOTER:
863 break;
869 /****************************************************************************
870 display group rid info
871 ****************************************************************************/
872 void display_group_rid_info(FILE *out_hnd, enum action_type action,
873 uint32 num_gids, DOM_GID *gid)
875 switch (action)
877 case ACTION_HEADER:
879 if (num_gids == 0)
881 fprintf(out_hnd, "\tNo Groups\n");
883 else
885 fprintf(out_hnd, "\tGroup Info\n");
886 fprintf(out_hnd, "\t----------\n");
888 break;
890 case ACTION_ENUMERATE:
892 int i;
894 for (i = 0; i < num_gids; i++)
896 fprintf(out_hnd, "\tGroup RID: %8x attr: %x\n",
897 gid[i].g_rid, gid[i].attr);
900 break;
902 case ACTION_FOOTER:
904 fprintf(out_hnd, "\n");
905 break;
911 /****************************************************************************
912 display alias name info
913 ****************************************************************************/
914 void display_alias_name_info(FILE *out_hnd, enum action_type action,
915 uint32 num_aliases, fstring *alias_name, uint32 *num_als_usrs)
917 switch (action)
919 case ACTION_HEADER:
921 if (num_aliases == 0)
923 fprintf(out_hnd, "\tNo Aliases\n");
925 else
927 fprintf(out_hnd, "\tAlias Names\n");
928 fprintf(out_hnd, "\t----------- \n");
930 break;
932 case ACTION_ENUMERATE:
934 int i;
936 for (i = 0; i < num_aliases; i++)
938 fprintf(out_hnd, "\tAlias Name: %s Attributes: %3d\n",
939 alias_name[i], num_als_usrs[i]);
942 break;
944 case ACTION_FOOTER:
946 fprintf(out_hnd, "\n");
947 break;
953 /****************************************************************************
954 display sam_user_info_21 structure
955 ****************************************************************************/
956 void display_sam_user_info_21(FILE *out_hnd, enum action_type action, SAM_USER_INFO_21 *usr)
958 switch (action)
960 case ACTION_HEADER:
962 fprintf(out_hnd, "\tUser Info, Level 0x15\n");
963 fprintf(out_hnd, "\t---------------------\n");
965 break;
967 case ACTION_ENUMERATE:
969 fprintf(out_hnd, "\t\tUser Name : %s\n", unistrn2(usr->uni_user_name .buffer, usr->uni_user_name .uni_str_len)); /* username unicode string */
970 fprintf(out_hnd, "\t\tFull Name : %s\n", unistrn2(usr->uni_full_name .buffer, usr->uni_full_name .uni_str_len)); /* user's full name unicode string */
971 fprintf(out_hnd, "\t\tHome Drive : %s\n", unistrn2(usr->uni_home_dir .buffer, usr->uni_home_dir .uni_str_len)); /* home directory unicode string */
972 fprintf(out_hnd, "\t\tDir Drive : %s\n", unistrn2(usr->uni_dir_drive .buffer, usr->uni_dir_drive .uni_str_len)); /* home directory drive unicode string */
973 fprintf(out_hnd, "\t\tProfile Path: %s\n", unistrn2(usr->uni_profile_path.buffer, usr->uni_profile_path.uni_str_len)); /* profile path unicode string */
974 fprintf(out_hnd, "\t\tLogon Script: %s\n", unistrn2(usr->uni_logon_script.buffer, usr->uni_logon_script.uni_str_len)); /* logon script unicode string */
975 fprintf(out_hnd, "\t\tDescription : %s\n", unistrn2(usr->uni_acct_desc .buffer, usr->uni_acct_desc .uni_str_len)); /* user description unicode string */
976 fprintf(out_hnd, "\t\tWorkstations: %s\n", unistrn2(usr->uni_workstations.buffer, usr->uni_workstations.uni_str_len)); /* workstaions unicode string */
977 fprintf(out_hnd, "\t\tUnknown Str : %s\n", unistrn2(usr->uni_unknown_str .buffer, usr->uni_unknown_str .uni_str_len)); /* unknown string unicode string */
978 fprintf(out_hnd, "\t\tRemote Dial : %s\n", unistrn2(usr->uni_munged_dial .buffer, usr->uni_munged_dial .uni_str_len)); /* munged remote access unicode string */
980 fprintf(out_hnd, "\t\tLogon Time : %s\n", http_timestring(nt_time_to_unix(&(usr->logon_time ))));
981 fprintf(out_hnd, "\t\tLogoff Time : %s\n", http_timestring(nt_time_to_unix(&(usr->logoff_time ))));
982 fprintf(out_hnd, "\t\tKickoff Time : %s\n", http_timestring(nt_time_to_unix(&(usr->kickoff_time ))));
983 fprintf(out_hnd, "\t\tPassword last set Time : %s\n", http_timestring(nt_time_to_unix(&(usr->pass_last_set_time ))));
984 fprintf(out_hnd, "\t\tPassword can change Time : %s\n", http_timestring(nt_time_to_unix(&(usr->pass_can_change_time ))));
985 fprintf(out_hnd, "\t\tPassword must change Time: %s\n", http_timestring(nt_time_to_unix(&(usr->pass_must_change_time))));
987 fprintf(out_hnd, "\t\tunknown_2[0..31]...\n"); /* user passwords? */
989 fprintf(out_hnd, "\t\tuser_rid : %x\n" , usr->user_rid ); /* User ID */
990 fprintf(out_hnd, "\t\tgroup_rid: %x\n" , usr->group_rid); /* Group ID */
991 fprintf(out_hnd, "\t\tacb_info : %04x\n", usr->acb_info ); /* Account Control Info */
993 fprintf(out_hnd, "\t\tunknown_3: %08x\n", usr->unknown_3); /* 0x00ff ffff */
994 fprintf(out_hnd, "\t\tlogon_divs: %d\n", usr->logon_divs); /* 0x0000 00a8 which is 168 which is num hrs in a week */
995 fprintf(out_hnd, "\t\tunknown_5: %08x\n", usr->unknown_5); /* 0x0002 0000 */
997 fprintf(out_hnd, "\t\tpadding1[0..7]...\n");
999 if (usr->ptr_logon_hrs)
1001 fprintf(out_hnd, "\t\tlogon_hrs[0..%d]...\n", usr->logon_hrs.len);
1004 break;
1006 case ACTION_FOOTER:
1008 fprintf(out_hnd, "\n");
1009 break;
1015 /****************************************************************************
1016 convert a security permissions into a string
1017 ****************************************************************************/
1018 char *get_sec_mask_str(uint32 type)
1020 static fstring typestr;
1021 int i;
1023 switch (type)
1025 case SEC_RIGHTS_FULL_CONTROL:
1027 fstrcpy(typestr, "Full Control");
1028 return typestr;
1031 case SEC_RIGHTS_READ:
1033 fstrcpy(typestr, "Read");
1034 return typestr;
1036 default:
1038 break;
1042 typestr[0] = 0;
1043 for (i = 0; i < 32; i++)
1045 if (IS_BITS_SET_ALL(type, 1 << i))
1047 switch (1 << i)
1049 case SEC_RIGHTS_QUERY_VALUE : fstrcat(typestr, "Query " ); break;
1050 case SEC_RIGHTS_SET_VALUE : fstrcat(typestr, "Set " ); break;
1051 case SEC_RIGHTS_CREATE_SUBKEY : fstrcat(typestr, "Create "); break;
1052 case SEC_RIGHTS_ENUM_SUBKEYS : fstrcat(typestr, "Enum "); break;
1053 case SEC_RIGHTS_NOTIFY : fstrcat(typestr, "Notify "); break;
1054 case SEC_RIGHTS_CREATE_LINK : fstrcat(typestr, "CreateLink "); break;
1055 case SEC_RIGHTS_DELETE : fstrcat(typestr, "Delete "); break;
1056 case SEC_RIGHTS_READ_CONTROL : fstrcat(typestr, "ReadControl "); break;
1057 case SEC_RIGHTS_WRITE_DAC : fstrcat(typestr, "WriteDAC "); break;
1058 case SEC_RIGHTS_WRITE_OWNER : fstrcat(typestr, "WriteOwner "); break;
1060 type &= ~(1 << i);
1064 /* remaining bits get added on as-is */
1065 if (type != 0)
1067 fstring tmp;
1068 slprintf(tmp, sizeof(tmp)-1, "[%08x]", type);
1069 fstrcat(typestr, tmp);
1072 /* remove last space */
1073 i = strlen(typestr)-1;
1074 if (typestr[i] == ' ') typestr[i] = 0;
1076 return typestr;
1079 /****************************************************************************
1080 display sec_access structure
1081 ****************************************************************************/
1082 void display_sec_access(FILE *out_hnd, enum action_type action, SEC_ACCESS *info)
1084 switch (action)
1086 case ACTION_HEADER:
1088 break;
1090 case ACTION_ENUMERATE:
1092 fprintf(out_hnd, "\t\tPermissions: %s\n",
1093 get_sec_mask_str(info->mask));
1095 case ACTION_FOOTER:
1097 break;
1102 /****************************************************************************
1103 display sec_ace structure
1104 ****************************************************************************/
1105 void display_sec_ace(FILE *out_hnd, enum action_type action, SEC_ACE *ace)
1107 switch (action)
1109 case ACTION_HEADER:
1111 fprintf(out_hnd, "\tACE\n");
1112 break;
1114 case ACTION_ENUMERATE:
1116 fstring sid_str;
1118 display_sec_access(out_hnd, ACTION_HEADER , &ace->info);
1119 display_sec_access(out_hnd, ACTION_ENUMERATE, &ace->info);
1120 display_sec_access(out_hnd, ACTION_FOOTER , &ace->info);
1122 sid_to_string(sid_str, &ace->sid);
1123 fprintf(out_hnd, "\t\tSID: %s\n", sid_str);
1125 case ACTION_FOOTER:
1127 break;
1132 /****************************************************************************
1133 display sec_acl structure
1134 ****************************************************************************/
1135 void display_sec_acl(FILE *out_hnd, enum action_type action, SEC_ACL *sec_acl)
1137 switch (action)
1139 case ACTION_HEADER:
1141 fprintf(out_hnd, "\tACL\tNum ACEs:\t%d\trevision:\t%x\n",
1142 sec_acl->num_aces, sec_acl->revision);
1143 fprintf(out_hnd, "\t---\n");
1145 break;
1147 case ACTION_ENUMERATE:
1149 if (sec_acl->size != 0 && sec_acl->num_aces != 0)
1151 int i;
1152 for (i = 0; i < sec_acl->num_aces; i++)
1154 display_sec_ace(out_hnd, ACTION_HEADER , &sec_acl->ace[i]);
1155 display_sec_ace(out_hnd, ACTION_ENUMERATE, &sec_acl->ace[i]);
1156 display_sec_ace(out_hnd, ACTION_FOOTER , &sec_acl->ace[i]);
1160 break;
1162 case ACTION_FOOTER:
1164 fprintf(out_hnd, "\n");
1165 break;
1170 /****************************************************************************
1171 display sec_desc structure
1172 ****************************************************************************/
1173 void display_sec_desc(FILE *out_hnd, enum action_type action, SEC_DESC *sec)
1175 switch (action)
1177 case ACTION_HEADER:
1179 fprintf(out_hnd, "\tSecurity Descriptor\trevision:\t%x\ttype:\t%x\n",
1180 sec->revision, sec->type);
1181 fprintf(out_hnd, "\t-------------------\n");
1183 break;
1185 case ACTION_ENUMERATE:
1187 fstring sid_str;
1189 if (sec->off_sacl != 0)
1191 display_sec_acl(out_hnd, ACTION_HEADER , sec->sacl);
1192 display_sec_acl(out_hnd, ACTION_ENUMERATE, sec->sacl);
1193 display_sec_acl(out_hnd, ACTION_FOOTER , sec->sacl);
1195 if (sec->off_dacl != 0)
1197 display_sec_acl(out_hnd, ACTION_HEADER , sec->dacl);
1198 display_sec_acl(out_hnd, ACTION_ENUMERATE, sec->dacl);
1199 display_sec_acl(out_hnd, ACTION_FOOTER , sec->dacl);
1201 if (sec->off_owner_sid != 0)
1203 sid_to_string(sid_str, sec->owner_sid);
1204 fprintf(out_hnd, "\tOwner SID:\t%s\n", sid_str);
1206 if (sec->off_grp_sid != 0)
1208 sid_to_string(sid_str, sec->grp_sid);
1209 fprintf(out_hnd, "\tParent SID:\t%s\n", sid_str);
1212 break;
1214 case ACTION_FOOTER:
1216 fprintf(out_hnd, "\n");
1217 break;
1222 /****************************************************************************
1223 convert a security permissions into a string
1224 ****************************************************************************/
1225 char *get_reg_val_type_str(uint32 type)
1227 static fstring typestr;
1229 switch (type)
1231 case 0x01:
1233 fstrcpy(typestr, "string");
1234 return typestr;
1237 case 0x03:
1239 fstrcpy(typestr, "bytes");
1240 return typestr;
1243 case 0x04:
1245 fstrcpy(typestr, "uint32");
1246 return typestr;
1249 case 0x07:
1251 fstrcpy(typestr, "multi");
1252 return typestr;
1254 default:
1256 break;
1259 slprintf(typestr, sizeof(typestr)-1, "[%d]", type);
1260 return typestr;
1264 static void print_reg_value(FILE *out_hnd, char *val_name, uint32 val_type, BUFFER2 *value)
1266 fstring type;
1267 fstrcpy(type, get_reg_val_type_str(val_type));
1269 switch (val_type)
1271 case 0x01: /* unistr */
1273 fprintf(out_hnd,"\t%s:\t%s:\t%s\n", val_name, type, buffer2_to_str(value));
1274 break;
1277 default: /* unknown */
1278 case 0x03: /* bytes */
1280 if (value->buf_len <= 8)
1282 fprintf(out_hnd,"\t%s:\t%s:\t", val_name, type);
1283 out_data(out_hnd, (char*)value->buffer, value->buf_len, 8);
1285 else
1287 fprintf(out_hnd,"\t%s:\t%s:\n", val_name, type);
1288 out_data(out_hnd, (char*)value->buffer, value->buf_len, 16);
1290 break;
1293 case 0x04: /* uint32 */
1295 fprintf(out_hnd,"\t%s:\t%s: 0x%08x\n", val_name, type, buffer2_to_uint32(value));
1296 break;
1299 case 0x07: /* multiunistr */
1301 fprintf(out_hnd,"\t%s:\t%s:\t%s\n", val_name, type, buffer2_to_multistr(value));
1302 break;
1307 /****************************************************************************
1308 display structure
1309 ****************************************************************************/
1310 void display_reg_value_info(FILE *out_hnd, enum action_type action,
1311 char *val_name, uint32 val_type, BUFFER2 *value)
1313 switch (action)
1315 case ACTION_HEADER:
1317 break;
1319 case ACTION_ENUMERATE:
1321 print_reg_value(out_hnd, val_name, val_type, value);
1322 break;
1324 case ACTION_FOOTER:
1326 break;
1331 /****************************************************************************
1332 display structure
1333 ****************************************************************************/
1334 void display_reg_key_info(FILE *out_hnd, enum action_type action,
1335 char *key_name, time_t key_mod_time)
1337 switch (action)
1339 case ACTION_HEADER:
1341 break;
1343 case ACTION_ENUMERATE:
1345 fprintf(out_hnd, "\t%s\t(%s)\n",
1346 key_name, http_timestring(key_mod_time));
1347 break;
1349 case ACTION_FOOTER:
1351 break;
1356 #if COPY_THIS_TEMPLATE
1357 /****************************************************************************
1358 display structure
1359 ****************************************************************************/
1360 void display_(FILE *out_hnd, enum action_type action, *)
1362 switch (action)
1364 case ACTION_HEADER:
1366 fprintf(out_hnd, "\t\n");
1367 fprintf(out_hnd, "\t-------------------\n");
1369 break;
1371 case ACTION_ENUMERATE:
1373 break;
1375 case ACTION_FOOTER:
1377 fprintf(out_hnd, "\n");
1378 break;
1383 #endif