D-Bus 1.15.8
dbus-signature.c
1/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2/* dbus-signature.c Routines for reading recursive type signatures
3 *
4 * Copyright (C) 2005 Red Hat, Inc.
5 *
6 * SPDX-License-Identifier: AFL-2.1 OR GPL-2.0-or-later
7 *
8 * Licensed under the Academic Free License version 2.1
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 *
24 */
25
26#include <config.h>
27
28#include "dbus-signature.h"
29#include "dbus-marshal-recursive.h"
30#include "dbus-marshal-basic.h"
31#include "dbus-internals.h"
32#include "dbus-test.h"
33#include <dbus/dbus-test-tap.h>
34
38typedef struct
39{
40 const char *pos;
41 unsigned int finished : 1;
42 unsigned int in_array : 1;
44
45_DBUS_STATIC_ASSERT (sizeof (DBusSignatureIter) >= sizeof (DBusSignatureRealIter));
46
48#define TYPE_IS_CONTAINER(typecode) \
49 ((typecode) == DBUS_TYPE_STRUCT || \
50 (typecode) == DBUS_TYPE_DICT_ENTRY || \
51 (typecode) == DBUS_TYPE_VARIANT || \
52 (typecode) == DBUS_TYPE_ARRAY)
53
54
71void
73 const char *signature)
74{
75 DBusSignatureRealIter *real_iter = (DBusSignatureRealIter *) iter;
76
77 real_iter->pos = signature;
78 real_iter->finished = FALSE;
79 real_iter->in_array = FALSE;
80}
81
96int
98{
99 DBusSignatureRealIter *real_iter = (DBusSignatureRealIter *) iter;
100
101 return _dbus_first_type_in_signature_c_str (real_iter->pos, 0);
102}
103
116char *
118{
119 DBusSignatureRealIter *real_iter = (DBusSignatureRealIter *) iter;
120 DBusString str;
121 char *ret;
122 int pos;
123
124 if (!_dbus_string_init (&str))
125 return NULL;
126
127 pos = 0;
128 _dbus_type_signature_next (real_iter->pos, &pos);
129
130 if (!_dbus_string_append_len (&str, real_iter->pos, pos))
131 return NULL;
132 if (!_dbus_string_steal_data (&str, &ret))
133 ret = NULL;
134 _dbus_string_free (&str);
135
136 return ret;
137}
138
150int
152{
153 DBusSignatureRealIter *real_iter = (DBusSignatureRealIter *) iter;
154
155 _dbus_return_val_if_fail (dbus_signature_iter_get_current_type (iter) == DBUS_TYPE_ARRAY, DBUS_TYPE_INVALID);
156
157 return _dbus_first_type_in_signature_c_str (real_iter->pos, 1);
158}
159
170{
171 DBusSignatureRealIter *real_iter = (DBusSignatureRealIter *) iter;
172
173 if (real_iter->finished)
174 return FALSE;
175 else
176 {
177 int pos;
178
179 if (real_iter->in_array)
180 {
181 real_iter->finished = TRUE;
182 return FALSE;
183 }
184
185 pos = 0;
186 _dbus_type_signature_next (real_iter->pos, &pos);
187 real_iter->pos += pos;
188
189 if (*real_iter->pos == DBUS_STRUCT_END_CHAR
190 || *real_iter->pos == DBUS_DICT_ENTRY_END_CHAR)
191 {
192 real_iter->finished = TRUE;
193 return FALSE;
194 }
195
196 return *real_iter->pos != DBUS_TYPE_INVALID;
197 }
198}
199
211void
213 DBusSignatureIter *subiter)
214{
215 DBusSignatureRealIter *real_iter = (DBusSignatureRealIter *) iter;
216 DBusSignatureRealIter *real_sub_iter = (DBusSignatureRealIter *) subiter;
217
218 _dbus_return_if_fail (dbus_type_is_container (dbus_signature_iter_get_current_type (iter)));
219
220 *real_sub_iter = *real_iter;
221 real_sub_iter->in_array = FALSE;
222 real_sub_iter->pos++;
223
225 real_sub_iter->in_array = TRUE;
226}
227
238dbus_signature_validate (const char *signature,
239 DBusError *error)
240
241{
242 DBusString str;
243 DBusValidity reason;
244
245 _dbus_string_init_const (&str, signature);
247
248 if (reason == DBUS_VALID)
249 return TRUE;
250 else
251 {
253 _dbus_validity_to_error_message (reason));
254 return FALSE;
255 }
256}
257
270dbus_signature_validate_single (const char *signature,
271 DBusError *error)
272{
274
275 if (!dbus_signature_validate (signature, error))
276 return FALSE;
277
278 dbus_signature_iter_init (&iter, signature);
280 goto lose;
281 if (!dbus_signature_iter_next (&iter))
282 return TRUE;
283 lose:
284 dbus_set_error (error, DBUS_ERROR_INVALID_SIGNATURE, "Exactly one complete type required in signature");
285 return FALSE;
286}
287
301{
302 /* only reasonable (non-line-noise) typecodes are allowed */
303 _dbus_return_val_if_fail (dbus_type_is_valid (typecode) || typecode == DBUS_TYPE_INVALID,
304 FALSE);
305 return TYPE_IS_CONTAINER (typecode);
306}
307
324dbus_type_is_basic (int typecode)
325{
326 /* only reasonable (non-line-noise) typecodes are allowed */
327 _dbus_return_val_if_fail (dbus_type_is_valid (typecode) || typecode == DBUS_TYPE_INVALID,
328 FALSE);
329
330 /* everything that isn't invalid or a container */
331 return !(typecode == DBUS_TYPE_INVALID || TYPE_IS_CONTAINER (typecode));
332}
333
355dbus_type_is_fixed (int typecode)
356{
357 /* only reasonable (non-line-noise) typecodes are allowed */
358 _dbus_return_val_if_fail (dbus_type_is_valid (typecode) || typecode == DBUS_TYPE_INVALID,
359 FALSE);
360
361 switch (typecode)
362 {
363 case DBUS_TYPE_BYTE:
365 case DBUS_TYPE_INT16:
366 case DBUS_TYPE_UINT16:
367 case DBUS_TYPE_INT32:
368 case DBUS_TYPE_UINT32:
369 case DBUS_TYPE_INT64:
370 case DBUS_TYPE_UINT64:
371 case DBUS_TYPE_DOUBLE:
373 return TRUE;
374 default:
375 return FALSE;
376 }
377}
378
389dbus_type_is_valid (int typecode)
390{
391 switch (typecode)
392 {
393 case DBUS_TYPE_BYTE:
395 case DBUS_TYPE_INT16:
396 case DBUS_TYPE_UINT16:
397 case DBUS_TYPE_INT32:
398 case DBUS_TYPE_UINT32:
399 case DBUS_TYPE_INT64:
400 case DBUS_TYPE_UINT64:
401 case DBUS_TYPE_DOUBLE:
402 case DBUS_TYPE_STRING:
405 case DBUS_TYPE_ARRAY:
406 case DBUS_TYPE_STRUCT:
410 return TRUE;
411
412 default:
413 return FALSE;
414 }
415}
416 /* end of DBusSignature group */
void dbus_set_error(DBusError *error, const char *name, const char *format,...)
Assigns an error name and message to a DBusError.
Definition: dbus-errors.c:356
#define NULL
A null pointer, defined appropriately for C or C++.
#define TRUE
Expands to "1".
#define FALSE
Expands to "0".
DBusValidity
This is primarily used in unit testing, so we can verify that each invalid message is invalid for the...
DBusValidity _dbus_validate_signature_with_reason(const DBusString *type_str, int type_pos, int len)
Verifies that the range of type_str from type_pos to type_end is a valid signature.
int _dbus_first_type_in_signature_c_str(const char *str, int pos)
Similar to _dbus_first_type_in_signature, but operates on a C string buffer.
void _dbus_type_signature_next(const char *type_str, int *type_pos)
Skips to the next "complete" type inside a type signature.
@ DBUS_VALID
the data is valid
#define DBUS_TYPE_SIGNATURE
Type code marking a D-Bus type signature.
#define DBUS_DICT_ENTRY_END_CHAR
Code marking the end of a dict entry type in a type signature.
#define DBUS_TYPE_OBJECT_PATH
Type code marking a D-Bus object path.
#define DBUS_TYPE_BYTE
Type code marking an 8-bit unsigned integer.
Definition: dbus-protocol.h:68
#define DBUS_TYPE_INT16
Type code marking a 16-bit signed integer.
Definition: dbus-protocol.h:76
#define DBUS_TYPE_VARIANT
Type code marking a D-Bus variant type.
#define DBUS_TYPE_INT32
Type code marking a 32-bit signed integer.
Definition: dbus-protocol.h:84
#define DBUS_TYPE_UNIX_FD
Type code marking a unix file descriptor.
#define DBUS_TYPE_BOOLEAN
Type code marking a boolean.
Definition: dbus-protocol.h:72
#define DBUS_TYPE_STRING
Type code marking a UTF-8 encoded, nul-terminated Unicode string.
#define DBUS_TYPE_ARRAY
Type code marking a D-Bus array type.
#define DBUS_TYPE_INVALID
Type code that is never equal to a legitimate type code.
Definition: dbus-protocol.h:62
#define DBUS_TYPE_INT64
Type code marking a 64-bit signed integer.
Definition: dbus-protocol.h:92
#define DBUS_TYPE_DOUBLE
Type code marking an 8-byte double in IEEE 754 format.
#define DBUS_ERROR_INVALID_SIGNATURE
A type signature is not valid.
#define DBUS_TYPE_UINT64
Type code marking a 64-bit unsigned integer.
Definition: dbus-protocol.h:96
#define DBUS_TYPE_DICT_ENTRY
Type code used to represent a dict entry; however, this type code does not appear in type signatures,...
#define DBUS_TYPE_UINT16
Type code marking a 16-bit unsigned integer.
Definition: dbus-protocol.h:80
#define DBUS_TYPE_STRUCT
STRUCT and DICT_ENTRY are sort of special since their codes can't appear in a type string,...
#define DBUS_STRUCT_END_CHAR
Code marking the end of a struct type in a type signature.
#define DBUS_TYPE_UINT32
Type code marking a 32-bit unsigned integer.
Definition: dbus-protocol.h:88
void dbus_signature_iter_recurse(const DBusSignatureIter *iter, DBusSignatureIter *subiter)
Initialize a new iterator pointing to the first type in the current container.
dbus_bool_t dbus_signature_validate(const char *signature, DBusError *error)
Check a type signature for validity.
dbus_bool_t dbus_type_is_basic(int typecode)
A "basic type" is a somewhat arbitrary concept, but the intent is to include those types that are ful...
dbus_bool_t dbus_type_is_fixed(int typecode)
Tells you whether values of this type can change length if you set them to some other value.
dbus_bool_t dbus_type_is_valid(int typecode)
Return TRUE if the argument is a valid typecode.
char * dbus_signature_iter_get_signature(const DBusSignatureIter *iter)
Returns the signature of the single complete type starting at the given iterator.
dbus_bool_t dbus_signature_iter_next(DBusSignatureIter *iter)
Skip to the next value on this "level".
dbus_bool_t dbus_type_is_container(int typecode)
A "container type" can contain basic types, or nested container types.
void dbus_signature_iter_init(DBusSignatureIter *iter, const char *signature)
Initializes a DBusSignatureIter for reading a type signature.
dbus_bool_t dbus_signature_validate_single(const char *signature, DBusError *error)
Check that a type signature is both valid and contains exactly one complete type.
int dbus_signature_iter_get_current_type(const DBusSignatureIter *iter)
Returns the current type pointed to by the iterator.
int dbus_signature_iter_get_element_type(const DBusSignatureIter *iter)
Convenience function for returning the element type of an array; This function allows you to avoid in...
dbus_bool_t _dbus_string_init(DBusString *str)
Initializes a string.
Definition: dbus-string.c:182
void _dbus_string_init_const(DBusString *str, const char *value)
Initializes a constant string.
Definition: dbus-string.c:197
dbus_bool_t _dbus_string_steal_data(DBusString *str, char **data_return)
Like _dbus_string_get_data(), but removes the gotten data from the original string.
Definition: dbus-string.c:686
dbus_bool_t _dbus_string_append_len(DBusString *str, const char *buffer, int len)
Appends block of bytes with the given length to a DBusString.
Definition: dbus-string.c:1170
void _dbus_string_free(DBusString *str)
Frees a string created by _dbus_string_init(), and fills it with the same contents as #_DBUS_STRING_I...
Definition: dbus-string.c:278
int _dbus_string_get_length(const DBusString *str)
Gets the length of a string (not including nul termination).
Definition: dbus-string.c:784
dbus_uint32_t dbus_bool_t
A boolean, valid values are TRUE and FALSE.
Definition: dbus-types.h:37
Object representing an exception.
Definition: dbus-errors.h:51
DBusSignatureIter struct; contains no public fields.
Implementation details of DBusSignatureIter, all fields are private.
unsigned int finished
true if we are at the end iter
unsigned int in_array
true if we are a subiterator pointing to an array's element type
const char * pos
current position in the signature string