Update pipeline-netcore-runtime.yml
[mono-project.git] / mono / dis / declsec.c
blob5575ef37aa02e650c8d261290a374fb51ee1e8c5
1 /*
2 * declsec.h: Support for the new declarative security attribute
3 * metadata format (2.0)
5 * Author:
6 * Sebastien Pouliot <sebastien@ximian.com>
8 * Copyright (C) 2005 Novell, Inc (http://www.novell.com)
9 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
12 #include <glib.h>
13 #include <math.h>
15 #include "mono/metadata/blob.h"
16 #include "mono/metadata/metadata.h"
17 #include "mono/metadata/mono-endian.h"
18 #include "mono/utils/mono-compiler.h"
19 #include "mono/utils/mono-math.h"
21 #include "declsec.h"
22 #include "util.h"
24 static char*
25 declsec_20_get_classname (const char* p, const char **rptr)
27 int apos, cpos = 0;
28 char *c;
29 char *a;
30 char *result;
31 GString *res = g_string_new ("");
32 int len = mono_metadata_decode_value (p, &p);
34 c = (char *) p;
35 while ((*c++ != ',') && (cpos++ < len));
36 c++;
38 apos = cpos;
39 a = c;
40 while ((*a++ != ',') && (apos++ < len));
42 if (apos - cpos > 1) {
43 g_string_append_printf (res, "[%.*s]%.*s", apos - cpos, c, cpos, p);
44 } else {
45 /* in-assembly type aren't fully qualified (no comma) */
46 g_string_append_printf (res, "%.*s", cpos - 1, p);
49 p += len;
50 if (rptr)
51 *rptr = p;
53 result = res->str;
54 g_string_free (res, FALSE);
55 return result;
58 static gboolean
59 declsec_20_write_type (GString *str, char type)
61 switch (type) {
62 case MONO_TYPE_BOOLEAN:
63 g_string_append (str, "bool");
64 break;
65 case MONO_TYPE_SZARRAY:
66 g_string_append (str, "[]");
67 break;
68 case MONO_TYPE_SYSTEM_TYPE:
69 g_string_append (str, "type");
70 break;
71 case MONO_TYPE_STRING:
72 g_string_append (str, "string");
73 break;
74 default:
75 g_warning ("TODO type %d - please fill a bug report on this!", type);
76 return FALSE;
78 return TRUE;
81 static const char*
82 declsec_20_write_value (GString *str, char type, const char *value)
84 switch (type) {
85 case MONO_TYPE_U1:
86 g_string_append_printf (str, "%d", (unsigned char)*value);
87 return value + 1;
88 case MONO_TYPE_I1:
89 g_string_append_printf (str, "%d", *value);
90 return value + 1;
91 case MONO_TYPE_BOOLEAN:
92 g_string_append_printf (str, "%s", *value ? "true" : "false");
93 return value + 1;
94 case MONO_TYPE_CHAR:
95 g_string_append_printf (str, "0x%04X", read16 (value));
96 return value + 2;
97 case MONO_TYPE_U2:
98 g_string_append_printf (str, "%d", read16 (value));
99 return value + 2;
100 case MONO_TYPE_I2:
101 g_string_append_printf (str, "%d", (gint16)read16 (value));
102 return value + 2;
103 case MONO_TYPE_U4:
104 g_string_append_printf (str, "%d", read32 (value));
105 return value + 4;
106 case MONO_TYPE_I4:
107 g_string_append_printf (str, "%d", (gint32)read32 (value));
108 return value + 4;
109 case MONO_TYPE_U8:
110 g_string_append_printf (str, "%lld", (long long)read64 (value));
111 return value + 8;
112 case MONO_TYPE_I8:
113 g_string_append_printf (str, "%lld", (long long)read64 (value));
114 return value + 8;
115 case MONO_TYPE_R4: {
116 float val;
117 readr4 (value, &val);
118 const int inf = mono_isinf (val);
119 if (inf == -1)
120 g_string_append_printf (str, "0xFF800000"); /* negative infinity */
121 else if (inf == 1)
122 g_string_append_printf (str, "0x7F800000"); /* positive infinity */
123 else if (mono_isnan (val))
124 g_string_append_printf (str, "0xFFC00000"); /* NaN */
125 else
126 g_string_append_printf (str, "%.8g", val);
127 return value + 4;
129 case MONO_TYPE_R8: {
130 double val;
131 readr8 (value, &val);
132 const int inf = mono_isinf (val);
133 if (inf == -1)
134 g_string_append_printf (str, "0xFFF00000000000000"); /* negative infinity */
135 else if (inf == 1)
136 g_string_append_printf (str, "0x7FFF0000000000000"); /* positive infinity */
137 else if (mono_isnan (val))
138 g_string_append_printf (str, "0xFFF80000000000000"); /* NaN */
139 else
140 g_string_append_printf (str, "%.17g", val);
141 return value + 8;
143 case MONO_TYPE_STRING:
144 if (*value == (char)0xff) {
145 g_string_append (str, "nullref");
146 return value + 1;
147 } else {
148 int len = mono_metadata_decode_value (value, &value);
149 g_string_append_printf (str, "'%.*s'", len, value);
150 return value + len;
152 case MONO_TYPE_SYSTEM_TYPE: {
153 char *cname = declsec_20_get_classname (value, NULL);
154 int len = mono_metadata_decode_value (value, &value);
155 g_string_append (str, cname);
156 g_free (cname);
157 return value + len;
160 return 0;
163 char*
164 dump_declsec_entry20 (MonoImage *m, const char* p, const char *indent)
166 int i, num;
167 char *result;
168 GString *res = g_string_new ("");
170 if (*p++ != MONO_DECLSEC_FORMAT_20)
171 return NULL;
173 g_string_append (res, "{");
175 /* number of encoded permission attributes */
176 num = mono_metadata_decode_value (p, &p);
178 for (i = 0; i < num; i++) {
179 int len, j, pos = 0, param_len;
180 char *param_start;
181 char *s = declsec_20_get_classname (p, &p);
182 g_string_append_printf (res, "%s = {", s);
183 g_free (s);
185 /* optional parameters length */
186 param_len = mono_metadata_decode_value (p, &p);
187 param_start = (char *) p;
189 /* number of parameters */
190 pos = mono_metadata_decode_value (p, &p);
191 for (j = 0; j < pos; j++) {
192 int k, elem;
193 int type = *p++;
195 switch (type) {
196 case MONO_DECLSEC_FIELD:
197 /* not sure if/how we can get this in a declarative security attribute... */
198 g_string_append (res, "field ");
199 break;
200 case MONO_DECLSEC_PROPERTY:
201 g_string_append (res, "property ");
202 break;
203 default:
204 g_warning ("TODO %d - please fill a bug report on this!", type);
205 break;
208 type = *p++;
210 if (type == MONO_DECLSEC_ENUM) {
211 s = declsec_20_get_classname (p, &p);
212 len = mono_metadata_decode_value (p, &p);
213 g_string_append_printf (res, "enum %s '%.*s' = ", s, len, p);
214 g_free (s);
215 p += len;
216 /* TODO: we must detect the size of the enum element (from the type ? length ?)
217 * note: ildasm v2 has some problem decoding them too and doesn't
218 * seems to rely on the type (as the other assembly isn't loaded) */
219 g_string_append_printf (res, "int32(%d)", read32 (p));
220 p += 4;
221 } else {
222 int arraytype = 0;
223 if (type == MONO_TYPE_SZARRAY) {
224 arraytype = *p++;
225 declsec_20_write_type (res, arraytype);
227 declsec_20_write_type (res, type);
229 len = mono_metadata_decode_value (p, &p);
230 g_string_append_printf (res, " '%.*s' = ", len, p);
231 p += len;
233 if (type == MONO_TYPE_SZARRAY) {
234 type = arraytype;
235 declsec_20_write_type (res, type);
236 elem = read32 (p);
237 p += 4;
238 g_string_append_printf (res, "[%d]", elem);
239 } else {
240 declsec_20_write_type (res, type);
241 elem = 1;
243 g_string_append (res, "(");
245 /* write value - or each element in the array */
246 for (k = 0; k < elem; k++) {
247 p = declsec_20_write_value (res, type, p);
248 /* separate array elements */
249 if (k < elem - 1)
250 g_string_append (res, " ");
253 if (j < pos - 1)
254 g_string_append_printf (res, ")\n%s", indent);
255 else
256 g_string_append (res, ")");
261 if (i < num - 1)
262 g_string_append_printf (res, "},\n%s", indent);
263 else
264 g_string_append (res, "}");
266 if (param_len > 0)
267 p = param_start + param_len;
269 g_string_append (res, "}");
271 result = res->str;
272 g_string_free (res, FALSE);
273 return result;