1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright (c) 1994, by Sun Microsytems, Inc.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#ifdef _KERNEL
#include <sys/types.h>
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/ddi.h> /* strchr */
#include <sys/sunddi.h> /* strchr */
#include <sys/tnf_com.h>
#include <sys/tnf_writer.h>
#include <sys/tnf_probe.h> /* fixed tnf_probe_control_t->index problem */
#include "tnf_types.h"
#include "tnf_trace.h"
#else /* _KERNEL */
#include <stdlib.h>
#include <string.h>
#include <tnf/com.h>
#include <tnf/writer.h>
#include <tnf/probe.h>
#include "tnf_types.h"
#include <tnf_trace.h>
#endif /* _KERNEL */
/*
* Defines
*/
#define NAME_LIMIT 128
#define ARRAY_LIMIT 5
#define NAME_START 5
#define SLOT_OFFSET 7
#define CONST_SLOTS 2
/*
* probe version 1
*/
struct tnf_probe_version __tnf_probe_version_1_info = {
sizeof (struct tnf_probe_version),
sizeof (tnf_probe_control_t)
};
/*
* write instances of tnf_probe_type (i.e probe records)
*/
uintptr_t
tnf_probe_tag(tnf_ops_t *ops, tnf_probe_control_t *probe_p)
{
tnf_tag_data_t *metatag_data;
tnf_record_p metatag_index;
tnf_probe_prototype_t *buffer;
enum tnf_alloc_mode saved_mode;
tnf_uint32_t *fwp;
char probe_name[NAME_LIMIT];
char slot_array[ARRAY_LIMIT][NAME_LIMIT];
char *slot_args[ARRAY_LIMIT + CONST_SLOTS + 1];
const char *nm_start, *nm_end, *slot_start, *slot_end;
int nm_len, separator, count;
saved_mode = ops->mode;
ops->mode = TNF_ALLOC_FIXED;
#if defined(_LP64)
/* LINTED assignment of 32-bit integer to 8-bit integer */
ALLOC2(ops, sizeof (*buffer), buffer, saved_mode);
#else
ALLOC2(ops, sizeof (*buffer), buffer, saved_mode);
#endif
probe_p->index = (uintptr_t)buffer;
fwp = tnfw_b_fw_alloc(&(ops->wcb));
if (fwp) {
/* REMIND: can make the next call more efficient */
*fwp = tnf_ref32(ops, (tnf_record_p) buffer,
(tnf_record_p)fwp);
/* fwp - filestart < 64K */
#ifdef _KERNEL
probe_p->index = (char *)fwp - tnf_buf;
#else
probe_p->index = (char *)fwp - _tnfw_b_control->tnf_buffer;
#endif
probe_p->index |= TNF_TAG16_T_ABS;
probe_p->index = probe_p->index << PROBE_INDEX_SHIFT;
probe_p->index |= PROBE_INDEX_FILE_PTR;
}
metatag_data = TAG_DATA(tnf_probe_type);
metatag_index = metatag_data->tag_index ?
metatag_data->tag_index :
metatag_data->tag_desc(ops, metatag_data);
/* find the name of the probe */
nm_start = &(probe_p->attrs[NAME_START]);
separator = ATTR_SEPARATOR;
nm_end = strchr(probe_p->attrs, separator);
#if defined(_LP64)
/* LINTED assignment of 64-bit integer to 32-bit integer */
nm_len = nm_end - nm_start;
#else
nm_len = nm_end - nm_start;
#endif
slot_start = nm_end + SLOT_OFFSET;
nm_len = (nm_len > (NAME_LIMIT - 1)) ? (NAME_LIMIT - 1) : nm_len;
(void) strncpy(probe_name, nm_start, nm_len);
probe_name[nm_len] = '\0';
/* initialize constant part of slot names */
slot_args[0] = TNF_N_TAG;
slot_args[1] = TNF_N_TIME_DELTA;
/*
* initialize rest of slot names, if any. This parsing routine is
* dependant on a space after "slots" (even for TNF_PROBE_0 and a
* space after the last slot name. It truncates any values that
* are larger than 127 chars to 127 chars. It handles missing slot
* names.
*/
separator = ATTR_SEPARATOR;
slot_end = strchr(slot_start, separator);
nm_start = slot_start;
separator = VAL_SEPARATOR;
for (count = 0; nm_start < slot_end; count++) {
nm_end = strchr(nm_start, separator);
#if defined(_LP64)
/* LINTED assignment of 64-bit integer to 32-bit integer */
nm_len = nm_end - nm_start;
#else
nm_len = nm_end - nm_start;
#endif
nm_len = (nm_len > (NAME_LIMIT - 1)) ? (NAME_LIMIT - 1) :
nm_len;
(void) strncpy(slot_array[count], nm_start, nm_len);
slot_array[count][nm_len] = '\0';
slot_args[count+CONST_SLOTS] = slot_array[count];
/* get next name */
nm_start = nm_end + 1;
}
/* null terminate string vector */
slot_args[count+CONST_SLOTS] = NULL;
ASSIGN(buffer, tag, metatag_index);
ASSIGN(buffer, name, probe_name);
/* XXX Fix these properties sometime */
ASSIGN(buffer, properties, &tnf_struct_properties);
ASSIGN(buffer, slot_types, probe_p->slot_types);
#if defined(_LP64)
/* LINTED */
ASSIGN(buffer, type_size, probe_p->tnf_event_size);
#else
ASSIGN(buffer, type_size, probe_p->tnf_event_size);
#endif
ASSIGN(buffer, slot_names, slot_args);
ASSIGN(buffer, string, (slot_end + 1));
#if defined(_LP64)
/* supress lint warning for _KERNEL mode, really need this? */
/* LINTED assignment of 32-bit integer to 8-bit integer */
ops->mode = saved_mode;
#else
ops->mode = saved_mode;
#endif
return (probe_p->index);
}
|