2 * Unix SMB/CIFS implementation.
3 * Virtual Windows Registry Layer
5 * Copyright (C) Marcin Krzysztof Porwit 2005,
6 * Copyright (C) Gerald (Jerry) Carter 2005.
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 3 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, see <http://www.gnu.org/licenses/>.
23 #include "system/filesys.h"
24 #include "../librpc/gen_ndr/perfcount.h"
26 #include "reg_perfcount.h"
27 #include "../libcli/registry/util_reg.h"
31 #define DBGC_CLASS DBGC_REGISTRY
33 #define PERFCOUNT_MAX_LEN 256
35 #define PERFCOUNTDIR "perfmon"
36 #define NAMES_DB "names.tdb"
37 #define DATA_DB "data.tdb"
39 struct PERF_OBJECT_TYPE
*_reg_perfcount_find_obj(struct PERF_DATA_BLOCK
*block
, int objind
);
41 /*********************************************************************
42 *********************************************************************/
44 /* returns perfcount path for dbname allocated on talloc_tos */
45 static char *counters_directory(const char *dbname
)
47 char *dir_path
= NULL
;
48 char *db_subpath
= NULL
;
51 dir_path
= state_path(talloc_tos(), PERFCOUNTDIR
);
52 if (dir_path
== NULL
) {
56 if (!directory_create_or_exist(dir_path
, 0755)) {
57 TALLOC_FREE(dir_path
);
61 db_subpath
= talloc_asprintf(dir_path
, "%s/%s", PERFCOUNTDIR
, dbname
);
62 if (db_subpath
== NULL
) {
63 TALLOC_FREE(dir_path
);
67 ret
= state_path(talloc_tos(), db_subpath
);
68 TALLOC_FREE(dir_path
);
72 /*********************************************************************
73 *********************************************************************/
75 uint32_t reg_perfcount_get_base_index(void)
82 char buf
[PERFCOUNT_MAX_LEN
];
84 fname
= counters_directory(NAMES_DB
);
89 names
= tdb_open_log(fname
, 0, TDB_DEFAULT
, O_RDONLY
, 0444);
92 DEBUG(2, ("reg_perfcount_get_base_index: unable to open [%s].\n", fname
));
96 /* needs to read the value of key "1" from the counter_names.tdb file, as that is
97 where the total number of counters is stored. We're assuming no holes in the
99 The format for the counter_names.tdb file is:
106 even_num perf_counter<even_num>
107 even_num+1 perf_counter<even_num>_help
109 So last_counter becomes num_counters*2, and last_help will be last_counter+1 */
110 kbuf
= string_tdb_data(key
);
111 dbuf
= tdb_fetch(names
, kbuf
);
112 if(dbuf
.dptr
== NULL
)
114 DEBUG(1, ("reg_perfcount_get_base_index: failed to find key \'1\' in [%s].\n", fname
));
122 memset(buf
, 0, PERFCOUNT_MAX_LEN
);
123 memcpy(buf
, dbuf
.dptr
, dbuf
.dsize
);
124 retval
= (uint32_t)atoi(buf
);
125 SAFE_FREE(dbuf
.dptr
);
129 /*********************************************************************
130 *********************************************************************/
132 uint32_t reg_perfcount_get_last_counter(uint32_t base_index
)
139 retval
= base_index
* 2;
144 /*********************************************************************
145 *********************************************************************/
147 uint32_t reg_perfcount_get_last_help(uint32_t last_counter
)
151 if(last_counter
== 0)
154 retval
= last_counter
+ 1;
160 /*********************************************************************
161 *********************************************************************/
163 static uint32_t _reg_perfcount_multi_sz_from_tdb(TDB_CONTEXT
*tdb
,
166 uint32_t buffer_size
)
169 char temp
[PERFCOUNT_MAX_LEN
] = {0};
170 char *buf1
= *retbuf
;
172 uint32_t working_size
= 0;
173 DATA_BLOB name_index
, name
;
176 snprintf(temp
, sizeof(temp
), "%d", keyval
);
177 kbuf
= string_tdb_data(temp
);
178 dbuf
= tdb_fetch(tdb
, kbuf
);
179 if(dbuf
.dptr
== NULL
)
181 /* If a key isn't there, just bypass it -- this really shouldn't
182 happen unless someone's mucking around with the tdb */
183 DEBUG(3, ("_reg_perfcount_multi_sz_from_tdb: failed to find key [%s] in [%s].\n",
184 temp
, tdb_name(tdb
)));
187 /* First encode the name_index */
188 working_size
= (kbuf
.dsize
+ 1)*sizeof(uint16_t);
189 /* SMB_REALLOC frees buf1 on error */
190 p
= (char *)SMB_REALLOC(buf1
, buffer_size
+ working_size
);
196 ok
= push_reg_sz(talloc_tos(), &name_index
, (const char *)kbuf
.dptr
);
202 memcpy(buf1
+buffer_size
, (char *)name_index
.data
, working_size
);
203 buffer_size
+= working_size
;
204 /* Now encode the actual name */
205 working_size
= (dbuf
.dsize
+ 1)*sizeof(uint16_t);
206 /* SMB_REALLOC frees buf1 on error */
207 p
= (char *)SMB_REALLOC(buf1
, buffer_size
+ working_size
);
213 memset(temp
, 0, sizeof(temp
));
214 memcpy(temp
, dbuf
.dptr
, dbuf
.dsize
);
215 SAFE_FREE(dbuf
.dptr
);
216 ok
= push_reg_sz(talloc_tos(), &name
, temp
);
222 memcpy(buf1
+buffer_size
, (char *)name
.data
, working_size
);
223 buffer_size
+= working_size
;
230 /*********************************************************************
231 *********************************************************************/
233 uint32_t reg_perfcount_get_counter_help(uint32_t base_index
, char **retbuf
)
236 uint32_t buffer_size
= 0;
241 if (base_index
== 0) {
245 fname
= counters_directory(NAMES_DB
);
250 names
= tdb_open_log(fname
, 0, TDB_DEFAULT
, O_RDONLY
, 0444);
253 DEBUG(1, ("reg_perfcount_get_counter_help: unable to open [%s].\n", fname
));
259 for(i
= 1; i
<= base_index
; i
++)
261 buffer_size
= _reg_perfcount_multi_sz_from_tdb(names
, (i
*2)+1, retbuf
, buffer_size
);
265 /* Now terminate the MULTI_SZ with a double unicode NULL */
267 buf1
= (char *)SMB_REALLOC(buf1
, buffer_size
+ 2);
271 buf1
[buffer_size
++] = '\0';
272 buf1
[buffer_size
++] = '\0';
280 /*********************************************************************
281 *********************************************************************/
283 uint32_t reg_perfcount_get_counter_names(uint32_t base_index
, char **retbuf
)
286 uint32_t buffer_size
= 0;
291 if (base_index
== 0) {
295 fname
= counters_directory(NAMES_DB
);
300 names
= tdb_open_log(fname
, 0, TDB_DEFAULT
, O_RDONLY
, 0444);
303 DEBUG(1, ("reg_perfcount_get_counter_names: unable to open [%s].\n", fname
));
309 buffer_size
= _reg_perfcount_multi_sz_from_tdb(names
, 1, retbuf
, buffer_size
);
311 for(i
= 1; i
<= base_index
; i
++)
313 buffer_size
= _reg_perfcount_multi_sz_from_tdb(names
, i
*2, retbuf
, buffer_size
);
317 /* Now terminate the MULTI_SZ with a double unicode NULL */
319 buf1
= (char *)SMB_REALLOC(buf1
, buffer_size
+ 2);
323 buf1
[buffer_size
++] = '\0';
324 buf1
[buffer_size
++] = '\0';
332 /*********************************************************************
333 *********************************************************************/
335 static void _reg_perfcount_make_key(TDB_DATA
*key
,
339 const char *key_part2
)
341 memset(buf
, 0, buflen
);
342 if(key_part2
!= NULL
)
343 snprintf(buf
, buflen
,"%d%s", key_part1
, key_part2
);
345 snprintf(buf
, buflen
, "%d", key_part1
);
347 *key
= string_tdb_data(buf
);
352 /*********************************************************************
353 *********************************************************************/
355 static bool _reg_perfcount_isparent(TDB_DATA data
)
359 if(data
.dptr
[0] == 'p')
367 /*********************************************************************
368 *********************************************************************/
370 static bool _reg_perfcount_ischild(TDB_DATA data
)
374 if(data
.dptr
[0] == 'c')
382 /*********************************************************************
383 *********************************************************************/
385 static uint32_t _reg_perfcount_get_numinst(int objInd
, TDB_CONTEXT
*names
)
388 char buf
[PERFCOUNT_MAX_LEN
];
390 _reg_perfcount_make_key(&key
, buf
, PERFCOUNT_MAX_LEN
, objInd
, "inst");
391 data
= tdb_fetch(names
, key
);
393 if(data
.dptr
== NULL
)
394 return (uint32_t)PERF_NO_INSTANCES
;
396 memset(buf
, 0, PERFCOUNT_MAX_LEN
);
397 memcpy(buf
, data
.dptr
, data
.dsize
);
398 SAFE_FREE(data
.dptr
);
399 return (uint32_t)atoi(buf
);
402 /*********************************************************************
403 *********************************************************************/
405 static bool _reg_perfcount_add_instance(struct PERF_OBJECT_TYPE
*obj
,
410 static bool _reg_perfcount_add_object(struct PERF_DATA_BLOCK
*block
,
418 struct PERF_OBJECT_TYPE
*obj
;
420 block
->objects
= (struct PERF_OBJECT_TYPE
*)talloc_realloc(mem_ctx
,
422 struct PERF_OBJECT_TYPE
,
423 block
->NumObjectTypes
+1);
424 if(block
->objects
== NULL
)
426 obj
= &(block
->objects
[block
->NumObjectTypes
]);
427 memset((void *)&(block
->objects
[block
->NumObjectTypes
]), 0, sizeof(struct PERF_OBJECT_TYPE
));
428 block
->objects
[block
->NumObjectTypes
].ObjectNameTitleIndex
= num
;
429 block
->objects
[block
->NumObjectTypes
].ObjectNameTitlePointer
= 0;
430 block
->objects
[block
->NumObjectTypes
].ObjectHelpTitleIndex
= num
+1;
431 block
->objects
[block
->NumObjectTypes
].ObjectHelpTitlePointer
= 0;
432 block
->objects
[block
->NumObjectTypes
].NumCounters
= 0;
433 block
->objects
[block
->NumObjectTypes
].DefaultCounter
= 0;
434 block
->objects
[block
->NumObjectTypes
].NumInstances
= _reg_perfcount_get_numinst(num
, names
);
435 block
->objects
[block
->NumObjectTypes
].counters
= NULL
;
436 block
->objects
[block
->NumObjectTypes
].instances
= NULL
;
437 block
->objects
[block
->NumObjectTypes
].counter_data
.ByteLength
= sizeof(uint32_t);
438 block
->objects
[block
->NumObjectTypes
].counter_data
.data
= NULL
;
439 block
->objects
[block
->NumObjectTypes
].DetailLevel
= PERF_DETAIL_NOVICE
;
440 block
->NumObjectTypes
+=1;
442 for(i
= 0; i
< (int)obj
->NumInstances
; i
++) {
443 success
= _reg_perfcount_add_instance(obj
, mem_ctx
, i
, names
);
449 /*********************************************************************
450 *********************************************************************/
452 static bool _reg_perfcount_get_counter_data(TDB_DATA key
, TDB_DATA
*data
)
454 TDB_CONTEXT
*counters
;
457 fname
= counters_directory(DATA_DB
);
462 counters
= tdb_open_log(fname
, 0, TDB_DEFAULT
, O_RDONLY
, 0444);
464 if (counters
== NULL
) {
465 DEBUG(1, ("reg_perfcount_get_counter_data: unable to open [%s].\n", fname
));
471 *data
= tdb_fetch(counters
, key
);
478 /*********************************************************************
479 *********************************************************************/
481 static uint32_t _reg_perfcount_get_size_field(uint32_t CounterType
)
485 retval
= CounterType
;
487 /* First mask out reserved lower 8 bits */
488 retval
= retval
& 0xFFFFFF00;
489 retval
= retval
<< 22;
490 retval
= retval
>> 22;
495 /*********************************************************************
496 *********************************************************************/
498 static uint32_t _reg_perfcount_compute_scale(int64_t data
)
514 return (uint32_t)scale
;
517 /*********************************************************************
518 *********************************************************************/
520 static bool _reg_perfcount_get_counter_info(struct PERF_DATA_BLOCK
*block
,
523 struct PERF_OBJECT_TYPE
*obj
,
527 char buf
[PERFCOUNT_MAX_LEN
];
528 size_t dsize
, padding
;
529 long int data32
, dbuf
[2];
531 uint32_t counter_size
;
533 obj
->counters
[obj
->NumCounters
].DefaultScale
= 0;
534 dbuf
[0] = dbuf
[1] = 0;
537 _reg_perfcount_make_key(&key
, buf
, PERFCOUNT_MAX_LEN
, CounterIndex
, "type");
538 data
= tdb_fetch(names
, key
);
539 if(data
.dptr
== NULL
)
541 DEBUG(3, ("_reg_perfcount_get_counter_info: No type data for counter [%d].\n", CounterIndex
));
544 memset(buf
, 0, PERFCOUNT_MAX_LEN
);
545 memcpy(buf
, data
.dptr
, data
.dsize
);
546 obj
->counters
[obj
->NumCounters
].CounterType
= atoi(buf
);
547 DEBUG(10, ("_reg_perfcount_get_counter_info: Got type [%d] for counter [%d].\n",
548 obj
->counters
[obj
->NumCounters
].CounterType
, CounterIndex
));
549 SAFE_FREE(data
.dptr
);
551 /* Fetch the actual data */
552 _reg_perfcount_make_key(&key
, buf
, PERFCOUNT_MAX_LEN
, CounterIndex
, "");
553 _reg_perfcount_get_counter_data(key
, &data
);
554 if(data
.dptr
== NULL
)
556 DEBUG(3, ("_reg_perfcount_get_counter_info: No counter data for counter [%d].\n", CounterIndex
));
560 counter_size
= _reg_perfcount_get_size_field(obj
->counters
[obj
->NumCounters
].CounterType
);
562 if(counter_size
== PERF_SIZE_DWORD
)
564 dsize
= sizeof(data32
);
565 memset(buf
, 0, PERFCOUNT_MAX_LEN
);
566 memcpy(buf
, data
.dptr
, data
.dsize
);
567 data32
= strtol(buf
, NULL
, 0);
568 if((obj
->counters
[obj
->NumCounters
].CounterType
& 0x00000F00) == PERF_TYPE_NUMBER
)
569 obj
->counters
[obj
->NumCounters
].DefaultScale
= _reg_perfcount_compute_scale((int64_t)data32
);
571 obj
->counters
[obj
->NumCounters
].DefaultScale
= 0;
573 padding
= (dsize
- (obj
->counter_data
.ByteLength
%dsize
)) % dsize
;
575 else if(counter_size
== PERF_SIZE_LARGE
)
577 dsize
= sizeof(data64
);
578 memset(buf
, 0, PERFCOUNT_MAX_LEN
);
579 memcpy(buf
, data
.dptr
, data
.dsize
);
581 if((obj
->counters
[obj
->NumCounters
].CounterType
& 0x00000F00) == PERF_TYPE_NUMBER
)
582 obj
->counters
[obj
->NumCounters
].DefaultScale
= _reg_perfcount_compute_scale(data64
);
584 obj
->counters
[obj
->NumCounters
].DefaultScale
= 0;
585 memcpy((void *)dbuf
, (const void *)&data64
, dsize
);
586 padding
= (dsize
- (obj
->counter_data
.ByteLength
%dsize
)) % dsize
;
588 else /* PERF_SIZE_VARIABLE_LEN */
591 memset(buf
, 0, PERFCOUNT_MAX_LEN
);
592 memcpy(buf
, data
.dptr
, data
.dsize
);
594 SAFE_FREE(data
.dptr
);
596 obj
->counter_data
.ByteLength
+= dsize
+ padding
;
597 obj
->counter_data
.data
= talloc_realloc(mem_ctx
,
598 obj
->counter_data
.data
,
600 obj
->counter_data
.ByteLength
- sizeof(uint32_t));
601 if(obj
->counter_data
.data
== NULL
)
603 if(dbuf
[0] != 0 || dbuf
[1] != 0)
605 memcpy((void *)(obj
->counter_data
.data
+
606 (obj
->counter_data
.ByteLength
- (sizeof(uint32_t) + dsize
))),
607 (const void *)dbuf
, dsize
);
611 /* Handling PERF_SIZE_VARIABLE_LEN */
612 memcpy((void *)(obj
->counter_data
.data
+
613 (obj
->counter_data
.ByteLength
- (sizeof(uint32_t) + dsize
))),
614 (const void *)buf
, dsize
);
616 obj
->counters
[obj
->NumCounters
].CounterOffset
= obj
->counter_data
.ByteLength
- dsize
;
617 if(obj
->counters
[obj
->NumCounters
].CounterOffset
% dsize
!= 0)
619 DEBUG(3,("Improperly aligned counter [%d]\n", obj
->NumCounters
));
621 obj
->counters
[obj
->NumCounters
].CounterSize
= dsize
;
626 /*********************************************************************
627 *********************************************************************/
629 struct PERF_OBJECT_TYPE
*_reg_perfcount_find_obj(struct PERF_DATA_BLOCK
*block
, int objind
)
633 struct PERF_OBJECT_TYPE
*obj
= NULL
;
635 for(i
= 0; i
< block
->NumObjectTypes
; i
++)
637 if(block
->objects
[i
].ObjectNameTitleIndex
== objind
)
639 obj
= &(block
->objects
[i
]);
646 /*********************************************************************
647 *********************************************************************/
649 static bool _reg_perfcount_add_counter(struct PERF_DATA_BLOCK
*block
,
655 char *begin
, *end
, *start
, *stop
;
657 struct PERF_OBJECT_TYPE
*obj
;
659 char buf
[PERFCOUNT_MAX_LEN
];
662 memset(buf
, 0, PERFCOUNT_MAX_LEN
);
663 memcpy(buf
, data
.dptr
, data
.dsize
);
664 begin
= strchr(buf
, '[');
665 end
= strchr(buf
, ']');
666 if(begin
== NULL
|| end
== NULL
)
671 stop
= strchr(start
, ',');
675 parent
= atoi(start
);
677 obj
= _reg_perfcount_find_obj(block
, parent
);
679 /* At this point we require that the parent object exist.
680 This can probably be handled better at some later time */
681 DEBUG(3, ("_reg_perfcount_add_counter: Could not find parent object [%d] for counter [%d].\n",
685 obj
->counters
= (struct PERF_COUNTER_DEFINITION
*)talloc_realloc(mem_ctx
,
687 struct PERF_COUNTER_DEFINITION
,
689 if(obj
->counters
== NULL
)
691 memset((void *)&(obj
->counters
[obj
->NumCounters
]), 0, sizeof(struct PERF_COUNTER_DEFINITION
));
692 obj
->counters
[obj
->NumCounters
].CounterNameTitleIndex
=num
;
693 obj
->counters
[obj
->NumCounters
].CounterHelpTitleIndex
=num
+1;
694 obj
->counters
[obj
->NumCounters
].DetailLevel
= PERF_DETAIL_NOVICE
;
695 obj
->counters
[obj
->NumCounters
].ByteLength
= sizeof(struct PERF_COUNTER_DEFINITION
);
696 success
= _reg_perfcount_get_counter_info(block
, mem_ctx
, num
, obj
, names
);
697 obj
->NumCounters
+= 1;
701 /* Handle case of Objects/Counters without any counter data, which would suggest
702 that the required instances are not there yet, so change NumInstances from
703 PERF_NO_INSTANCES to 0 */
708 /*********************************************************************
709 *********************************************************************/
711 static bool _reg_perfcount_get_instance_info(struct PERF_INSTANCE_DEFINITION
*inst
,
714 struct PERF_OBJECT_TYPE
*obj
,
718 char buf
[PERFCOUNT_MAX_LEN
] = {0};
720 smb_ucs2_t
*name
= NULL
;
723 /* First grab the instance data from the data file */
724 snprintf(temp
, sizeof(temp
), "i%d", instId
);
725 _reg_perfcount_make_key(&key
, buf
, PERFCOUNT_MAX_LEN
, obj
->ObjectNameTitleIndex
, temp
);
726 if (!_reg_perfcount_get_counter_data(key
, &data
)) {
727 DEBUG(3, ("_reg_perfcount_get_counter_data failed\n"));
730 if(data
.dptr
== NULL
)
732 DEBUG(3, ("_reg_perfcount_get_instance_info: No instance data for instance [%s].\n",
736 inst
->counter_data
.ByteLength
= data
.dsize
+ sizeof(inst
->counter_data
.ByteLength
);
737 inst
->counter_data
.data
= talloc_realloc(mem_ctx
,
738 inst
->counter_data
.data
,
741 if(inst
->counter_data
.data
== NULL
)
743 memset(inst
->counter_data
.data
, 0, data
.dsize
);
744 memcpy(inst
->counter_data
.data
, data
.dptr
, data
.dsize
);
745 SAFE_FREE(data
.dptr
);
747 /* Fetch instance name */
748 snprintf(temp
, sizeof(temp
), "i%dname", instId
);
749 _reg_perfcount_make_key(&key
, buf
, PERFCOUNT_MAX_LEN
, obj
->ObjectNameTitleIndex
, temp
);
750 data
= tdb_fetch(names
, key
);
751 if(data
.dptr
== NULL
)
753 /* Not actually an error, but possibly unintended? -- just logging FYI */
754 DEBUG(3, ("_reg_perfcount_get_instance_info: No instance name for instance [%s].\n",
756 inst
->NameLength
= 0;
760 memset(buf
, 0, PERFCOUNT_MAX_LEN
);
761 memcpy(buf
, data
.dptr
, MIN(PERFCOUNT_MAX_LEN
-1,data
.dsize
));
762 buf
[PERFCOUNT_MAX_LEN
-1] = '\0';
763 inst
->NameLength
= rpcstr_push_talloc(mem_ctx
, &name
, buf
);
764 if (inst
->NameLength
== (uint32_t)-1 || !name
) {
765 SAFE_FREE(data
.dptr
);
768 inst
->data
= talloc_realloc(mem_ctx
,
772 if (inst
->data
== NULL
) {
773 SAFE_FREE(data
.dptr
);
776 memcpy(inst
->data
, name
, inst
->NameLength
);
777 SAFE_FREE(data
.dptr
);
780 inst
->ParentObjectTitleIndex
= 0;
781 inst
->ParentObjectTitlePointer
= 0;
782 inst
->UniqueID
= PERF_NO_UNIQUE_ID
;
783 inst
->NameOffset
= 6 * sizeof(uint32_t);
785 inst
->ByteLength
= inst
->NameOffset
+ inst
->NameLength
;
786 /* Need to be aligned on a 64-bit boundary here for counter_data */
787 if((pad
= (inst
->ByteLength
% 8)))
790 inst
->data
= talloc_realloc(mem_ctx
,
793 inst
->NameLength
+ pad
);
794 memset(inst
->data
+ inst
->NameLength
, 0, pad
);
795 inst
->ByteLength
+= pad
;
801 /*********************************************************************
802 *********************************************************************/
804 static bool _reg_perfcount_add_instance(struct PERF_OBJECT_TYPE
*obj
,
809 struct PERF_INSTANCE_DEFINITION
*inst
;
811 if(obj
->instances
== NULL
) {
812 obj
->instances
= talloc_realloc(mem_ctx
,
814 struct PERF_INSTANCE_DEFINITION
,
817 if(obj
->instances
== NULL
)
820 memset(&(obj
->instances
[instInd
]), 0, sizeof(struct PERF_INSTANCE_DEFINITION
));
821 inst
= &(obj
->instances
[instInd
]);
822 return _reg_perfcount_get_instance_info(inst
, mem_ctx
, instInd
, obj
, names
);
825 /*********************************************************************
826 *********************************************************************/
828 static int _reg_perfcount_assemble_global(struct PERF_DATA_BLOCK
*block
,
834 int i
, j
, retval
= 0;
835 char keybuf
[PERFCOUNT_MAX_LEN
];
838 for(i
= 1; i
<= base_index
; i
++)
841 _reg_perfcount_make_key(&key
, keybuf
, PERFCOUNT_MAX_LEN
, j
, "rel");
842 data
= tdb_fetch(names
, key
);
843 if(data
.dptr
!= NULL
)
845 if(_reg_perfcount_isparent(data
))
846 success
= _reg_perfcount_add_object(block
, mem_ctx
, j
, data
, names
);
847 else if(_reg_perfcount_ischild(data
))
848 success
= _reg_perfcount_add_counter(block
, mem_ctx
, j
, data
, names
);
851 DEBUG(3, ("Bogus relationship [%s] for counter [%d].\n", data
.dptr
, j
));
856 DEBUG(3, ("_reg_perfcount_assemble_global: Failed to add new relationship for counter [%d].\n", j
));
859 SAFE_FREE(data
.dptr
);
862 DEBUG(3, ("NULL relationship for counter [%d] using key [%s].\n", j
, keybuf
));
867 /*********************************************************************
868 *********************************************************************/
870 static bool _reg_perfcount_get_64(uint64_t *retval
,
873 const char *key_part2
)
876 char buf
[PERFCOUNT_MAX_LEN
];
878 _reg_perfcount_make_key(&key
, buf
, PERFCOUNT_MAX_LEN
, key_part1
, key_part2
);
880 data
= tdb_fetch(tdb
, key
);
881 if(data
.dptr
== NULL
)
883 DEBUG(3,("_reg_perfcount_get_64: No data found for key [%s].\n", key
.dptr
));
887 memset(buf
, 0, PERFCOUNT_MAX_LEN
);
888 memcpy(buf
, data
.dptr
, data
.dsize
);
889 SAFE_FREE(data
.dptr
);
896 /*********************************************************************
897 *********************************************************************/
899 static bool _reg_perfcount_init_data_block_perf(struct PERF_DATA_BLOCK
*block
,
902 uint64_t PerfFreq
, PerfTime
, PerfTime100nSec
;
903 TDB_CONTEXT
*counters
;
907 fname
= counters_directory(DATA_DB
);
912 counters
= tdb_open_log(fname
, 0, TDB_DEFAULT
, O_RDONLY
, 0444);
914 if (counters
== NULL
) {
915 DEBUG(1, ("reg_perfcount_init_data_block_perf: unable to open [%s].\n", fname
));
921 status
= _reg_perfcount_get_64(&PerfFreq
, names
, 0, "PerfFreq");
927 memcpy((void *)&(block
->PerfFreq
), (const void *)&PerfFreq
, sizeof(PerfFreq
));
929 status
= _reg_perfcount_get_64(&PerfTime
, counters
, 0, "PerfTime");
935 memcpy((void *)&(block
->PerfTime
), (const void *)&PerfTime
, sizeof(PerfTime
));
937 status
= _reg_perfcount_get_64(&PerfTime100nSec
, counters
, 0, "PerfTime100nSec");
943 memcpy((void *)&(block
->PerfTime100nSec
), (const void *)&PerfTime100nSec
, sizeof(PerfTime100nSec
));
949 /*******************************************************************
950 ********************************************************************/
952 static bool make_systemtime(struct SYSTEMTIME
*systime
, struct tm
*unixtime
)
954 systime
->year
=unixtime
->tm_year
+1900;
955 systime
->month
=unixtime
->tm_mon
+1;
956 systime
->dayofweek
=unixtime
->tm_wday
;
957 systime
->day
=unixtime
->tm_mday
;
958 systime
->hour
=unixtime
->tm_hour
;
959 systime
->minute
=unixtime
->tm_min
;
960 systime
->second
=unixtime
->tm_sec
;
961 systime
->milliseconds
=0;
966 /*********************************************************************
967 *********************************************************************/
969 static bool _reg_perfcount_init_data_block(struct PERF_DATA_BLOCK
*block
,
970 TALLOC_CTX
*mem_ctx
, TDB_CONTEXT
*names
,
973 smb_ucs2_t
*temp
= NULL
;
974 TALLOC_CTX
*tmp_ctx
= talloc_new(mem_ctx
);
978 sz
= rpcstr_push_talloc(tmp_ctx
, &temp
, "PERF");
979 if ((sz
== -1) || (temp
== NULL
)) {
982 memcpy(block
->Signature
, temp
, strlen_w(temp
) *2);
985 block
->LittleEndian
= 0;
987 block
->LittleEndian
= 1;
990 block
->TotalByteLength
= 0;
991 block
->NumObjectTypes
= 0;
992 block
->DefaultObject
= -1;
993 block
->objects
= NULL
;
995 make_systemtime(&(block
->SystemTime
), gmtime(&tm
));
996 _reg_perfcount_init_data_block_perf(block
, names
);
998 sz
= rpcstr_push_talloc(tmp_ctx
, &temp
, lp_netbios_name());
999 if ((sz
== -1) || (temp
== NULL
)) {
1002 block
->SystemNameLength
= (strlen_w(temp
) * 2) + 2;
1003 block
->data
= talloc_zero_array(mem_ctx
, uint8_t, block
->SystemNameLength
+ (8 - (block
->SystemNameLength
% 8)));
1004 if (block
->data
== NULL
) {
1007 memcpy(block
->data
, temp
, block
->SystemNameLength
);
1008 block
->SystemNameOffset
= sizeof(struct PERF_DATA_BLOCK
) - sizeof(block
->objects
) - sizeof(block
->data
);
1009 block
->HeaderLength
= block
->SystemNameOffset
+ block
->SystemNameLength
;
1010 /* Make sure to adjust for 64-bit alignment for when we finish writing the system name,
1011 so that the PERF_OBJECT_TYPE struct comes out 64-bit aligned */
1012 block
->HeaderLength
+= 8 - (block
->HeaderLength
% 8);
1013 talloc_free(tmp_ctx
);
1018 talloc_free(tmp_ctx
);
1022 /*********************************************************************
1023 *********************************************************************/
1025 static uint32_t _reg_perfcount_perf_data_block_fixup(struct PERF_DATA_BLOCK
*block
, TALLOC_CTX
*mem_ctx
)
1027 int obj
, cnt
, inst
, pad
, i
;
1028 struct PERF_OBJECT_TYPE
*object
;
1029 struct PERF_INSTANCE_DEFINITION
*instance
;
1030 struct PERF_COUNTER_DEFINITION
*counter
;
1031 struct PERF_COUNTER_BLOCK
*counter_data
;
1032 char *temp
= NULL
, *src_addr
, *dst_addr
;
1034 block
->TotalByteLength
= 0;
1035 object
= block
->objects
;
1036 for(obj
= 0; obj
< block
->NumObjectTypes
; obj
++)
1038 object
[obj
].TotalByteLength
= 0;
1039 object
[obj
].DefinitionLength
= 0;
1040 instance
= object
[obj
].instances
;
1041 counter
= object
[obj
].counters
;
1042 for(cnt
= 0; cnt
< object
[obj
].NumCounters
; cnt
++)
1044 object
[obj
].TotalByteLength
+= counter
[cnt
].ByteLength
;
1045 object
[obj
].DefinitionLength
+= counter
[cnt
].ByteLength
;
1047 if(object
[obj
].NumInstances
!= PERF_NO_INSTANCES
)
1049 for(inst
= 0; inst
< object
[obj
].NumInstances
; inst
++)
1051 instance
= &(object
[obj
].instances
[inst
]);
1052 object
[obj
].TotalByteLength
+= instance
->ByteLength
;
1053 counter_data
= &(instance
->counter_data
);
1054 counter
= &(object
[obj
].counters
[object
[obj
].NumCounters
- 1]);
1055 counter_data
->ByteLength
= counter
->CounterOffset
+ counter
->CounterSize
+ sizeof(counter_data
->ByteLength
);
1056 temp
= talloc_realloc(mem_ctx
,
1059 counter_data
->ByteLength
- sizeof(counter_data
->ByteLength
));
1063 memset(temp
, 0, counter_data
->ByteLength
- sizeof(counter_data
->ByteLength
));
1064 src_addr
= (char *)counter_data
->data
;
1065 for(i
= 0; i
< object
[obj
].NumCounters
; i
++)
1067 counter
= &(object
[obj
].counters
[i
]);
1068 dst_addr
= temp
+ counter
->CounterOffset
- sizeof(counter_data
->ByteLength
);
1069 memcpy(dst_addr
, src_addr
, counter
->CounterSize
);
1070 src_addr
+= counter
->CounterSize
;
1072 /* Make sure to be 64-bit aligned */
1073 if((pad
= (counter_data
->ByteLength
% 8)))
1077 counter_data
->data
= talloc_realloc(mem_ctx
,
1080 counter_data
->ByteLength
- sizeof(counter_data
->ByteLength
) + pad
);
1081 if (counter_data
->data
== NULL
) {
1084 memset(counter_data
->data
, 0, counter_data
->ByteLength
- sizeof(counter_data
->ByteLength
) + pad
);
1085 memcpy(counter_data
->data
, temp
, counter_data
->ByteLength
- sizeof(counter_data
->ByteLength
));
1086 counter_data
->ByteLength
+= pad
;
1087 object
[obj
].TotalByteLength
+= counter_data
->ByteLength
;
1092 /* Need to be 64-bit aligned at the end of the counter_data block, so pad counter_data to a 64-bit boundary,
1093 so that the next PERF_OBJECT_TYPE can start on a 64-bit alignment */
1094 if((pad
= (object
[obj
].counter_data
.ByteLength
% 8)))
1097 object
[obj
].counter_data
.data
= talloc_realloc(mem_ctx
,
1098 object
[obj
].counter_data
.data
,
1100 object
[obj
].counter_data
.ByteLength
+ pad
);
1101 memset((void *)(object
[obj
].counter_data
.data
+ object
[obj
].counter_data
.ByteLength
), 0, pad
);
1102 object
[obj
].counter_data
.ByteLength
+= pad
;
1104 object
[obj
].TotalByteLength
+= object
[obj
].counter_data
.ByteLength
;
1106 object
[obj
].HeaderLength
= sizeof(*object
) - (sizeof(counter
) + sizeof(instance
) + sizeof(struct PERF_COUNTER_BLOCK
));
1107 object
[obj
].TotalByteLength
+= object
[obj
].HeaderLength
;
1108 object
[obj
].DefinitionLength
+= object
[obj
].HeaderLength
;
1110 block
->TotalByteLength
+= object
[obj
].TotalByteLength
;
1113 return block
->TotalByteLength
;
1116 /*********************************************************************
1117 *********************************************************************/
1119 static uint32_t reg_perfcount_get_perf_data_block(uint32_t base_index
,
1120 TALLOC_CTX
*mem_ctx
,
1121 struct PERF_DATA_BLOCK
*block
,
1122 const char *object_ids
,
1123 bool bigendian_data
)
1125 uint32_t buffer_size
= 0;
1130 fname
= counters_directory(NAMES_DB
);
1131 if (fname
== NULL
) {
1135 names
= tdb_open_log(fname
, 0, TDB_DEFAULT
, O_RDONLY
, 0444);
1139 DEBUG(1, ("reg_perfcount_get_perf_data_block: unable to open [%s].\n", fname
));
1145 if (!_reg_perfcount_init_data_block(block
, mem_ctx
, names
, bigendian_data
)) {
1146 DEBUG(0, ("_reg_perfcount_init_data_block failed\n"));
1151 retval
= _reg_perfcount_assemble_global(block
, mem_ctx
, base_index
, names
);
1153 buffer_size
= _reg_perfcount_perf_data_block_fixup(block
, mem_ctx
);
1161 return buffer_size
+ block
->HeaderLength
;
1164 /*******************************************************************
1165 ********************************************************************/
1167 static bool smb_io_system_time(const char *desc
, prs_struct
*ps
, int depth
, struct SYSTEMTIME
*systime
)
1169 if(!prs_uint16("year", ps
, depth
, &systime
->year
))
1171 if(!prs_uint16("month", ps
, depth
, &systime
->month
))
1173 if(!prs_uint16("dayofweek", ps
, depth
, &systime
->dayofweek
))
1175 if(!prs_uint16("day", ps
, depth
, &systime
->day
))
1177 if(!prs_uint16("hour", ps
, depth
, &systime
->hour
))
1179 if(!prs_uint16("minute", ps
, depth
, &systime
->minute
))
1181 if(!prs_uint16("second", ps
, depth
, &systime
->second
))
1183 if(!prs_uint16("milliseconds", ps
, depth
, &systime
->milliseconds
))
1189 /*********************************************************************
1190 *********************************************************************/
1192 static bool _reg_perfcount_marshall_perf_data_block(prs_struct
*ps
, struct PERF_DATA_BLOCK block
, int depth
)
1195 prs_debug(ps
, depth
, "", "_reg_perfcount_marshall_perf_data_block");
1200 for(i
= 0; i
< 4; i
++)
1202 if(!prs_uint16("Signature", ps
, depth
, &block
.Signature
[i
]))
1205 if(!prs_uint32("Little Endian", ps
, depth
, &block
.LittleEndian
))
1207 if(!prs_uint32("Version", ps
, depth
, &block
.Version
))
1209 if(!prs_uint32("Revision", ps
, depth
, &block
.Revision
))
1211 if(!prs_uint32("TotalByteLength", ps
, depth
, &block
.TotalByteLength
))
1213 if(!prs_uint32("HeaderLength", ps
, depth
, &block
.HeaderLength
))
1215 if(!prs_uint32("NumObjectTypes", ps
, depth
, &block
.NumObjectTypes
))
1217 if(!prs_uint32("DefaultObject", ps
, depth
, &block
.DefaultObject
))
1219 if(!smb_io_system_time("SystemTime", ps
, depth
, &block
.SystemTime
))
1221 if(!prs_uint32("Padding", ps
, depth
, &block
.Padding
))
1223 if(!prs_align_uint64(ps
))
1225 if(!prs_uint64("PerfTime", ps
, depth
, &block
.PerfTime
))
1227 if(!prs_uint64("PerfFreq", ps
, depth
, &block
.PerfFreq
))
1229 if(!prs_uint64("PerfTime100nSec", ps
, depth
, &block
.PerfTime100nSec
))
1231 if(!prs_uint32("SystemNameLength", ps
, depth
, &block
.SystemNameLength
))
1233 if(!prs_uint32("SystemNameOffset", ps
, depth
, &block
.SystemNameOffset
))
1235 /* hack to make sure we're 64-bit aligned at the end of this whole mess */
1236 if(!prs_uint8s(False
, "SystemName", ps
, depth
, block
.data
,
1237 block
.HeaderLength
- block
.SystemNameOffset
))
1243 /*********************************************************************
1244 *********************************************************************/
1246 static bool _reg_perfcount_marshall_perf_counters(prs_struct
*ps
,
1247 struct PERF_OBJECT_TYPE object
,
1251 struct PERF_COUNTER_DEFINITION counter
;
1253 prs_debug(ps
, depth
, "", "_reg_perfcount_marshall_perf_counters");
1256 for(cnt
= 0; cnt
< object
.NumCounters
; cnt
++)
1258 counter
= object
.counters
[cnt
];
1262 if(!prs_uint32("ByteLength", ps
, depth
, &counter
.ByteLength
))
1264 if(!prs_uint32("CounterNameTitleIndex", ps
, depth
, &counter
.CounterNameTitleIndex
))
1266 if(!prs_uint32("CounterNameTitlePointer", ps
, depth
, &counter
.CounterNameTitlePointer
))
1268 if(!prs_uint32("CounterHelpTitleIndex", ps
, depth
, &counter
.CounterHelpTitleIndex
))
1270 if(!prs_uint32("CounterHelpTitlePointer", ps
, depth
, &counter
.CounterHelpTitlePointer
))
1272 if(!prs_uint32("DefaultScale", ps
, depth
, &counter
.DefaultScale
))
1274 if(!prs_uint32("DetailLevel", ps
, depth
, &counter
.DetailLevel
))
1276 if(!prs_uint32("CounterType", ps
, depth
, &counter
.CounterType
))
1278 if(!prs_uint32("CounterSize", ps
, depth
, &counter
.CounterSize
))
1280 if(!prs_uint32("CounterOffset", ps
, depth
, &counter
.CounterOffset
))
1287 /*********************************************************************
1288 *********************************************************************/
1290 static bool _reg_perfcount_marshall_perf_counter_data(prs_struct
*ps
,
1291 struct PERF_COUNTER_BLOCK counter_data
,
1294 prs_debug(ps
, depth
, "", "_reg_perfcount_marshall_perf_counter_data");
1297 if(!prs_align_uint64(ps
))
1300 if(!prs_uint32("ByteLength", ps
, depth
, &counter_data
.ByteLength
))
1302 if(!prs_uint8s(False
, "CounterData", ps
, depth
, counter_data
.data
, counter_data
.ByteLength
- sizeof(uint32_t)))
1304 if(!prs_align_uint64(ps
))
1310 /*********************************************************************
1311 *********************************************************************/
1313 static bool _reg_perfcount_marshall_perf_instances(prs_struct
*ps
,
1314 struct PERF_OBJECT_TYPE object
,
1317 struct PERF_INSTANCE_DEFINITION instance
;
1320 prs_debug(ps
, depth
, "", "_reg_perfcount_marshall_perf_instances");
1323 for(inst
= 0; inst
< object
.NumInstances
; inst
++)
1325 instance
= object
.instances
[inst
];
1329 if(!prs_uint32("ByteLength", ps
, depth
, &instance
.ByteLength
))
1331 if(!prs_uint32("ParentObjectTitleIndex", ps
, depth
, &instance
.ParentObjectTitleIndex
))
1333 if(!prs_uint32("ParentObjectTitlePointer", ps
, depth
, &instance
.ParentObjectTitlePointer
))
1335 if(!prs_uint32("UniqueID", ps
, depth
, &instance
.UniqueID
))
1337 if(!prs_uint32("NameOffset", ps
, depth
, &instance
.NameOffset
))
1339 if(!prs_uint32("NameLength", ps
, depth
, &instance
.NameLength
))
1341 if(!prs_uint8s(False
, "InstanceName", ps
, depth
, instance
.data
,
1342 instance
.ByteLength
- instance
.NameOffset
))
1344 if(_reg_perfcount_marshall_perf_counter_data(ps
, instance
.counter_data
, depth
) == False
)
1351 /*********************************************************************
1352 *********************************************************************/
1354 static bool _reg_perfcount_marshall_perf_objects(prs_struct
*ps
, struct PERF_DATA_BLOCK block
, int depth
)
1358 struct PERF_OBJECT_TYPE object
;
1360 prs_debug(ps
, depth
, "", "_reg_perfcount_marshall_perf_objects");
1363 for(obj
= 0; obj
< block
.NumObjectTypes
; obj
++)
1365 object
= block
.objects
[obj
];
1370 if(!prs_uint32("TotalByteLength", ps
, depth
, &object
.TotalByteLength
))
1372 if(!prs_uint32("DefinitionLength", ps
, depth
, &object
.DefinitionLength
))
1374 if(!prs_uint32("HeaderLength", ps
, depth
, &object
.HeaderLength
))
1376 if(!prs_uint32("ObjectNameTitleIndex", ps
, depth
, &object
.ObjectNameTitleIndex
))
1378 if(!prs_uint32("ObjectNameTitlePointer", ps
, depth
, &object
.ObjectNameTitlePointer
))
1380 if(!prs_uint32("ObjectHelpTitleIndex", ps
, depth
, &object
.ObjectHelpTitleIndex
))
1382 if(!prs_uint32("ObjectHelpTitlePointer", ps
, depth
, &object
.ObjectHelpTitlePointer
))
1384 if(!prs_uint32("DetailLevel", ps
, depth
, &object
.DetailLevel
))
1386 if(!prs_uint32("NumCounters", ps
, depth
, &object
.NumCounters
))
1388 if(!prs_uint32("DefaultCounter", ps
, depth
, &object
.DefaultCounter
))
1390 if(!prs_uint32("NumInstances", ps
, depth
, &object
.NumInstances
))
1392 if(!prs_uint32("CodePage", ps
, depth
, &object
.CodePage
))
1394 if(!prs_align_uint64(ps
))
1396 if(!prs_uint64("PerfTime", ps
, depth
, &object
.PerfTime
))
1398 if(!prs_uint64("PerfFreq", ps
, depth
, &object
.PerfFreq
))
1401 /* Now do the counters */
1402 /* If no instances, encode counter_data */
1403 /* If instances, encode instace plus counter data for each instance */
1404 if(_reg_perfcount_marshall_perf_counters(ps
, object
, depth
) == False
)
1406 if(object
.NumInstances
== PERF_NO_INSTANCES
)
1408 if(_reg_perfcount_marshall_perf_counter_data(ps
, object
.counter_data
, depth
) == False
)
1413 if(_reg_perfcount_marshall_perf_instances(ps
, object
, depth
) == False
)
1421 /*********************************************************************
1422 *********************************************************************/
1424 WERROR
reg_perfcount_get_hkpd(prs_struct
*ps
, uint32_t max_buf_size
, uint32_t *outbuf_len
, const char *object_ids
)
1427 * For a detailed description of the layout of this structure,
1428 * see http://msdn.microsoft.com/library/default.asp?url=/library/en-us/perfmon/base/performance_data_format.asp
1430 * By 2006-11-23 this link did not work anymore, I found something
1432 * http://msdn2.microsoft.com/en-us/library/aa373105.aspx -- vl
1434 struct PERF_DATA_BLOCK block
;
1435 uint32_t buffer_size
, base_index
;
1438 base_index
= reg_perfcount_get_base_index();
1441 buffer_size
= reg_perfcount_get_perf_data_block(base_index
, ps
->mem_ctx
, &block
, object_ids
, ps
->bigendian_data
);
1443 if(buffer_size
< max_buf_size
)
1445 *outbuf_len
= buffer_size
;
1447 if (!_reg_perfcount_marshall_perf_data_block(ps
, block
, 0))
1448 return WERR_NOT_ENOUGH_MEMORY
;
1450 if (!_reg_perfcount_marshall_perf_objects(ps
, block
, 0))
1451 return WERR_NOT_ENOUGH_MEMORY
;
1457 *outbuf_len
= max_buf_size
;
1458 if (!_reg_perfcount_marshall_perf_data_block(ps
, block
, 0))
1459 return WERR_NOT_ENOUGH_MEMORY
;
1461 return WERR_INSUFFICIENT_BUFFER
;