1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-message.c DBusMessage object
4 * Copyright (C) 2002, 2003, 2004, 2005 Red Hat Inc.
5 * Copyright (C) 2002, 2003 CodeFactory AB
7 * Licensed under the Academic Free License version 2.1
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 #include "dbus-internals.h"
27 #include "dbus-marshal-recursive.h"
28 #include "dbus-marshal-validate.h"
29 #include "dbus-marshal-byteswap.h"
30 #include "dbus-marshal-header.h"
31 #include "dbus-signature.h"
32 #include "dbus-message-private.h"
33 #include "dbus-object-tree.h"
34 #include "dbus-memory.h"
35 #include "dbus-list.h"
36 #include "dbus-threads-internal.h"
37 #ifdef HAVE_UNIX_FD_PASSING
38 #include "dbus-sysdeps-unix.h"
43 static void dbus_message_finalize (DBusMessage *message);
46 * @defgroup DBusMessageInternals DBusMessage implementation details
47 * @ingroup DBusInternals
48 * @brief DBusMessage private implementation details.
50 * The guts of DBusMessage and its methods.
55 /* Not thread locked, but strictly const/read-only so should be OK
57 /** An static string representing an empty signature */
58 _DBUS_STRING_DEFINE_STATIC(_dbus_empty_signature_str, "");
60 /* these have wacky values to help trap uninitialized iterators;
61 * but has to fit in 3 bits
64 DBUS_MESSAGE_ITER_TYPE_READER = 3,
65 DBUS_MESSAGE_ITER_TYPE_WRITER = 7
68 /** typedef for internals of message iterator */
69 typedef struct DBusMessageRealIter DBusMessageRealIter;
72 * @brief Internals of DBusMessageIter
74 * Object representing a position in a message. All fields are internal.
76 struct DBusMessageRealIter
78 DBusMessage *message; /**< Message used */
79 dbus_uint32_t changed_stamp : CHANGED_STAMP_BITS; /**< stamp to detect invalid iters */
80 dbus_uint32_t iter_type : 3; /**< whether this is a reader or writer iter */
81 dbus_uint32_t sig_refcount : 8; /**< depth of open_signature() */
84 DBusTypeWriter writer; /**< writer */
85 DBusTypeReader reader; /**< reader */
86 } u; /**< the type writer or reader that does all the work */
90 get_const_signature (DBusHeader *header,
91 const DBusString **type_str_p,
94 if (_dbus_header_get_field_raw (header,
95 DBUS_HEADER_FIELD_SIGNATURE,
99 *type_pos_p += 1; /* skip the signature length which is 1 byte */
103 *type_str_p = &_dbus_empty_signature_str;
109 * Swaps the message to compiler byte order if required
111 * @param message the message
114 _dbus_message_byteswap (DBusMessage *message)
116 const DBusString *type_str;
119 if (message->byte_order == DBUS_COMPILER_BYTE_ORDER)
122 _dbus_verbose ("Swapping message into compiler byte order\n");
124 get_const_signature (&message->header, &type_str, &type_pos);
126 _dbus_marshal_byteswap (type_str, type_pos,
128 DBUS_COMPILER_BYTE_ORDER,
131 message->byte_order = DBUS_COMPILER_BYTE_ORDER;
133 _dbus_header_byteswap (&message->header, DBUS_COMPILER_BYTE_ORDER);
136 /** byte-swap the message if it doesn't match our byte order.
137 * Called only when we need the message in our own byte order,
138 * normally when reading arrays of integers or doubles.
139 * Otherwise should not be called since it would do needless
142 #define ensure_byte_order(message) \
143 if (message->byte_order != DBUS_COMPILER_BYTE_ORDER) \
144 _dbus_message_byteswap (message)
147 * Gets the data to be sent over the network for this message.
148 * The header and then the body should be written out.
149 * This function is guaranteed to always return the same
150 * data once a message is locked (with dbus_message_lock()).
152 * @param message the message.
153 * @param header return location for message header data.
154 * @param body return location for message body data.
157 _dbus_message_get_network_data (DBusMessage *message,
158 const DBusString **header,
159 const DBusString **body)
161 _dbus_assert (message->locked);
163 *header = &message->header.data;
164 *body = &message->body;
168 * Gets the unix fds to be sent over the network for this message.
169 * This function is guaranteed to always return the same data once a
170 * message is locked (with dbus_message_lock()).
172 * @param message the message.
173 * @param fds return location of unix fd array
174 * @param n_fds return number of entries in array
176 void _dbus_message_get_unix_fds(DBusMessage *message,
180 _dbus_assert (message->locked);
182 #ifdef HAVE_UNIX_FD_PASSING
183 *fds = message->unix_fds;
184 *n_fds = message->n_unix_fds;
192 * Sets the serial number of a message.
193 * This can only be done once on a message.
195 * DBusConnection will automatically set the serial to an appropriate value
196 * when the message is sent; this function is only needed when encapsulating
197 * messages in another protocol, or otherwise bypassing DBusConnection.
199 * @param message the message
200 * @param serial the serial
203 dbus_message_set_serial (DBusMessage *message,
204 dbus_uint32_t serial)
206 _dbus_return_if_fail (message != NULL);
207 _dbus_return_if_fail (!message->locked);
209 _dbus_header_set_serial (&message->header, serial);
213 * Adds a counter to be incremented immediately with the size/unix fds
214 * of this message, and decremented by the size/unix fds of this
215 * message when this message if finalized. The link contains a
216 * counter with its refcount already incremented, but the counter
217 * itself not incremented. Ownership of link and counter refcount is
218 * passed to the message.
220 * @param message the message
221 * @param link link with counter as data
224 _dbus_message_add_counter_link (DBusMessage *message,
227 /* right now we don't recompute the delta when message
228 * size changes, and that's OK for current purposes
229 * I think, but could be important to change later.
230 * Do recompute it whenever there are no outstanding counters,
231 * since it's basically free.
233 if (message->counters == NULL)
235 message->size_counter_delta =
236 _dbus_string_get_length (&message->header.data) +
237 _dbus_string_get_length (&message->body);
239 #ifdef HAVE_UNIX_FD_PASSING
240 message->unix_fd_counter_delta = message->n_unix_fds;
244 _dbus_verbose ("message has size %ld\n",
245 message->size_counter_delta);
249 _dbus_list_append_link (&message->counters, link);
251 _dbus_counter_adjust_size (link->data, message->size_counter_delta);
253 #ifdef HAVE_UNIX_FD_PASSING
254 _dbus_counter_adjust_unix_fd (link->data, message->unix_fd_counter_delta);
259 * Adds a counter to be incremented immediately with the size/unix fds
260 * of this message, and decremented by the size/unix fds of this
261 * message when this message if finalized.
263 * @param message the message
264 * @param counter the counter
265 * @returns #FALSE if no memory
268 _dbus_message_add_counter (DBusMessage *message,
269 DBusCounter *counter)
273 link = _dbus_list_alloc_link (counter);
277 _dbus_counter_ref (counter);
278 _dbus_message_add_counter_link (message, link);
284 * Removes a counter tracking the size/unix fds of this message, and
285 * decrements the counter by the size/unix fds of this message.
287 * @param message the message
288 * @param link_return return the link used
289 * @param counter the counter
292 _dbus_message_remove_counter (DBusMessage *message,
293 DBusCounter *counter,
294 DBusList **link_return)
298 link = _dbus_list_find_last (&message->counters,
300 _dbus_assert (link != NULL);
302 _dbus_list_unlink (&message->counters,
307 _dbus_list_free_link (link);
309 _dbus_counter_adjust_size (counter, - message->size_counter_delta);
311 #ifdef HAVE_UNIX_FD_PASSING
312 _dbus_counter_adjust_unix_fd (counter, - message->unix_fd_counter_delta);
315 _dbus_counter_unref (counter);
319 * Locks a message. Allows checking that applications don't keep a
320 * reference to a message in the outgoing queue and change it
321 * underneath us. Messages are locked when they enter the outgoing
322 * queue (dbus_connection_send_message()), and the library complains
323 * if the message is modified while locked. This function may also
324 * called externally, for applications wrapping D-Bus in another protocol.
326 * @param message the message to lock.
329 dbus_message_lock (DBusMessage *message)
331 if (!message->locked)
333 _dbus_header_update_lengths (&message->header,
334 _dbus_string_get_length (&message->body));
336 /* must have a signature if you have a body */
337 _dbus_assert (_dbus_string_get_length (&message->body) == 0 ||
338 dbus_message_get_signature (message) != NULL);
340 message->locked = TRUE;
345 set_or_delete_string_field (DBusMessage *message,
351 return _dbus_header_delete_field (&message->header, field);
353 return _dbus_header_set_field_basic (&message->header,
360 /* Probably we don't need to use this */
362 * Sets the signature of the message, i.e. the arguments in the
363 * message payload. The signature includes only "in" arguments for
364 * #DBUS_MESSAGE_TYPE_METHOD_CALL and only "out" arguments for
365 * #DBUS_MESSAGE_TYPE_METHOD_RETURN, so is slightly different from
366 * what you might expect (it does not include the signature of the
367 * entire C++-style method).
369 * The signature is a string made up of type codes such as
370 * #DBUS_TYPE_INT32. The string is terminated with nul (nul is also
371 * the value of #DBUS_TYPE_INVALID). The macros such as
372 * #DBUS_TYPE_INT32 evaluate to integers; to assemble a signature you
373 * may find it useful to use the string forms, such as
374 * #DBUS_TYPE_INT32_AS_STRING.
376 * An "unset" or #NULL signature is considered the same as an empty
377 * signature. In fact dbus_message_get_signature() will never return
380 * @param message the message
381 * @param signature the type signature or #NULL to unset
382 * @returns #FALSE if no memory
385 _dbus_message_set_signature (DBusMessage *message,
386 const char *signature)
388 _dbus_return_val_if_fail (message != NULL, FALSE);
389 _dbus_return_val_if_fail (!message->locked, FALSE);
390 _dbus_return_val_if_fail (signature == NULL ||
391 _dbus_check_is_valid_signature (signature));
392 /* can't delete the signature if you have a message body */
393 _dbus_return_val_if_fail (_dbus_string_get_length (&message->body) == 0 ||
396 return set_or_delete_string_field (message,
397 DBUS_HEADER_FIELD_SIGNATURE,
405 * We cache some DBusMessage to reduce the overhead of allocating
406 * them. In my profiling this consistently made about an 8%
407 * difference. It avoids the malloc for the message, the malloc for
408 * the slot list, the malloc for the header string and body string,
409 * and the associated free() calls. It does introduce another global
410 * lock which could be a performance issue in certain cases.
412 * For the echo client/server the round trip time goes from around
413 * .000077 to .000069 with the message cache on my laptop. The sysprof
414 * change is as follows (numbers are cumulative percentage):
416 * with message cache implemented as array as it is now (0.000069 per):
417 * new_empty_header 1.46
418 * mutex_lock 0.56 # i.e. _DBUS_LOCK(message_cache)
424 * mutex_lock 0.33 # i.e. _DBUS_LOCK(message_cache)
427 * with message cache implemented as list (0.000070 per roundtrip):
428 * new_empty_header 2.72
429 * list_pop_first 1.88
433 * without cache (0.000077 per roundtrip):
434 * new_empty_header 6.7
435 * string_init_preallocated 3.43
444 * If you implement the message_cache with a list, the primary reason
445 * it's slower is that you add another thread lock (on the DBusList
449 /** Avoid caching huge messages */
450 #define MAX_MESSAGE_SIZE_TO_CACHE 10 * _DBUS_ONE_KILOBYTE
452 /** Avoid caching too many messages */
453 #define MAX_MESSAGE_CACHE_SIZE 5
455 _DBUS_DEFINE_GLOBAL_LOCK (message_cache);
456 static DBusMessage *message_cache[MAX_MESSAGE_CACHE_SIZE];
457 static int message_cache_count = 0;
458 static dbus_bool_t message_cache_shutdown_registered = FALSE;
461 dbus_message_cache_shutdown (void *data)
465 _DBUS_LOCK (message_cache);
468 while (i < MAX_MESSAGE_CACHE_SIZE)
470 if (message_cache[i])
471 dbus_message_finalize (message_cache[i]);
476 message_cache_count = 0;
477 message_cache_shutdown_registered = FALSE;
479 _DBUS_UNLOCK (message_cache);
483 * Tries to get a message from the message cache. The retrieved
484 * message will have junk in it, so it still needs to be cleared out
485 * in dbus_message_new_empty_header()
487 * @returns the message, or #NULL if none cached
490 dbus_message_get_cached (void)
492 DBusMessage *message;
497 _DBUS_LOCK (message_cache);
499 _dbus_assert (message_cache_count >= 0);
501 if (message_cache_count == 0)
503 _DBUS_UNLOCK (message_cache);
507 /* This is not necessarily true unless count > 0, and
508 * message_cache is uninitialized until the shutdown is
511 _dbus_assert (message_cache_shutdown_registered);
514 while (i < MAX_MESSAGE_CACHE_SIZE)
516 if (message_cache[i])
518 message = message_cache[i];
519 message_cache[i] = NULL;
520 message_cache_count -= 1;
525 _dbus_assert (message_cache_count >= 0);
526 _dbus_assert (i < MAX_MESSAGE_CACHE_SIZE);
527 _dbus_assert (message != NULL);
529 _dbus_assert (message->refcount.value == 0);
530 _dbus_assert (message->counters == NULL);
532 _DBUS_UNLOCK (message_cache);
537 #ifdef HAVE_UNIX_FD_PASSING
539 close_unix_fds(int *fds, unsigned *n_fds)
549 for (i = 0; i < *n_fds; i++)
551 if (!_dbus_close(fds[i], &e))
553 _dbus_warn("Failed to close file descriptor: %s\n", e.message);
560 /* We don't free the array here, in case we can recycle it later */
565 free_counter (void *element,
568 DBusCounter *counter = element;
569 DBusMessage *message = data;
571 _dbus_counter_adjust_size (counter, - message->size_counter_delta);
572 #ifdef HAVE_UNIX_FD_PASSING
573 _dbus_counter_adjust_unix_fd (counter, - message->unix_fd_counter_delta);
576 _dbus_counter_unref (counter);
580 * Tries to cache a message, otherwise finalize it.
582 * @param message the message
585 dbus_message_cache_or_finalize (DBusMessage *message)
587 dbus_bool_t was_cached;
590 _dbus_assert (message->refcount.value == 0);
592 /* This calls application code and has to be done first thing
593 * without holding the lock
595 _dbus_data_slot_list_clear (&message->slot_list);
597 _dbus_list_foreach (&message->counters,
598 free_counter, message);
599 _dbus_list_clear (&message->counters);
601 #ifdef HAVE_UNIX_FD_PASSING
602 close_unix_fds(message->unix_fds, &message->n_unix_fds);
607 _DBUS_LOCK (message_cache);
609 if (!message_cache_shutdown_registered)
611 _dbus_assert (message_cache_count == 0);
613 if (!_dbus_register_shutdown_func (dbus_message_cache_shutdown, NULL))
617 while (i < MAX_MESSAGE_CACHE_SIZE)
619 message_cache[i] = NULL;
623 message_cache_shutdown_registered = TRUE;
626 _dbus_assert (message_cache_count >= 0);
628 if ((_dbus_string_get_length (&message->header.data) +
629 _dbus_string_get_length (&message->body)) >
630 MAX_MESSAGE_SIZE_TO_CACHE)
633 if (message_cache_count >= MAX_MESSAGE_CACHE_SIZE)
636 /* Find empty slot */
638 while (message_cache[i] != NULL)
641 _dbus_assert (i < MAX_MESSAGE_CACHE_SIZE);
643 _dbus_assert (message_cache[i] == NULL);
644 message_cache[i] = message;
645 message_cache_count += 1;
647 #ifndef DBUS_DISABLE_CHECKS
648 message->in_cache = TRUE;
652 _dbus_assert (message->refcount.value == 0);
654 _DBUS_UNLOCK (message_cache);
657 dbus_message_finalize (message);
660 #ifndef DBUS_DISABLE_CHECKS
662 _dbus_message_iter_check (DBusMessageRealIter *iter)
666 _dbus_warn_check_failed ("dbus message iterator is NULL\n");
670 if (iter->iter_type == DBUS_MESSAGE_ITER_TYPE_READER)
672 if (iter->u.reader.byte_order != iter->message->byte_order)
674 _dbus_warn_check_failed ("dbus message changed byte order since iterator was created\n");
677 /* because we swap the message into compiler order when you init an iter */
678 _dbus_assert (iter->u.reader.byte_order == DBUS_COMPILER_BYTE_ORDER);
680 else if (iter->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER)
682 if (iter->u.writer.byte_order != iter->message->byte_order)
684 _dbus_warn_check_failed ("dbus message changed byte order since append iterator was created\n");
687 /* because we swap the message into compiler order when you init an iter */
688 _dbus_assert (iter->u.writer.byte_order == DBUS_COMPILER_BYTE_ORDER);
692 _dbus_warn_check_failed ("dbus message iterator looks uninitialized or corrupted\n");
696 if (iter->changed_stamp != iter->message->changed_stamp)
698 _dbus_warn_check_failed ("dbus message iterator invalid because the message has been modified (or perhaps the iterator is just uninitialized)\n");
704 #endif /* DBUS_DISABLE_CHECKS */
707 * Implementation of the varargs arg-getting functions.
708 * dbus_message_get_args() is the place to go for complete
711 * @todo This may leak memory and file descriptors if parsing fails. See #21259
713 * @see dbus_message_get_args
714 * @param iter the message iter
715 * @param error error to be filled in
716 * @param first_arg_type type of the first argument
717 * @param var_args return location for first argument, followed by list of type/location pairs
718 * @returns #FALSE if error was set
721 _dbus_message_iter_get_args_valist (DBusMessageIter *iter,
726 DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
727 int spec_type, msg_type, i;
730 _dbus_assert (_dbus_message_iter_check (real));
734 spec_type = first_arg_type;
737 while (spec_type != DBUS_TYPE_INVALID)
739 msg_type = dbus_message_iter_get_arg_type (iter);
741 if (msg_type != spec_type)
743 dbus_set_error (error, DBUS_ERROR_INVALID_ARGS,
744 "Argument %d is specified to be of type \"%s\", but "
745 "is actually of type \"%s\"\n", i,
746 _dbus_type_to_string (spec_type),
747 _dbus_type_to_string (msg_type));
752 if (spec_type == DBUS_TYPE_UNIX_FD)
754 #ifdef HAVE_UNIX_FD_PASSING
758 pfd = va_arg (var_args, int*);
761 _dbus_type_reader_read_basic(&real->u.reader, &idx);
763 if (idx.u32 >= real->message->n_unix_fds)
765 dbus_set_error (error, DBUS_ERROR_INCONSISTENT_MESSAGE,
766 "Message refers to file descriptor at index %i,"
767 "but has only %i descriptors attached.\n",
769 real->message->n_unix_fds);
773 if ((nfd = _dbus_dup(real->message->unix_fds[idx.u32], error)) < 0)
778 dbus_set_error (error, DBUS_ERROR_NOT_SUPPORTED,
779 "Platform does not support file desciptor passing.\n");
783 else if (dbus_type_is_basic (spec_type))
787 ptr = va_arg (var_args, DBusBasicValue*);
789 _dbus_assert (ptr != NULL);
791 _dbus_type_reader_read_basic (&real->u.reader,
794 else if (spec_type == DBUS_TYPE_ARRAY)
797 int spec_element_type;
798 const DBusBasicValue **ptr;
800 DBusTypeReader array;
802 spec_element_type = va_arg (var_args, int);
803 element_type = _dbus_type_reader_get_element_type (&real->u.reader);
805 if (spec_element_type != element_type)
807 dbus_set_error (error, DBUS_ERROR_INVALID_ARGS,
808 "Argument %d is specified to be an array of \"%s\", but "
809 "is actually an array of \"%s\"\n",
811 _dbus_type_to_string (spec_element_type),
812 _dbus_type_to_string (element_type));
817 if (dbus_type_is_fixed (spec_element_type) &&
818 element_type != DBUS_TYPE_UNIX_FD)
820 ptr = va_arg (var_args, const DBusBasicValue**);
821 n_elements_p = va_arg (var_args, int*);
823 _dbus_assert (ptr != NULL);
824 _dbus_assert (n_elements_p != NULL);
826 _dbus_type_reader_recurse (&real->u.reader, &array);
828 _dbus_type_reader_read_fixed_multi (&array,
829 (void *) ptr, n_elements_p);
831 else if (spec_element_type == DBUS_TYPE_STRING ||
832 spec_element_type == DBUS_TYPE_SIGNATURE ||
833 spec_element_type == DBUS_TYPE_OBJECT_PATH)
839 str_array_p = va_arg (var_args, char***);
840 n_elements_p = va_arg (var_args, int*);
842 _dbus_assert (str_array_p != NULL);
843 _dbus_assert (n_elements_p != NULL);
845 /* Count elements in the array */
846 _dbus_type_reader_recurse (&real->u.reader, &array);
849 while (_dbus_type_reader_get_current_type (&array) != DBUS_TYPE_INVALID)
852 _dbus_type_reader_next (&array);
855 str_array = dbus_new0 (char*, n_elements + 1);
856 if (str_array == NULL)
858 _DBUS_SET_OOM (error);
862 /* Now go through and dup each string */
863 _dbus_type_reader_recurse (&real->u.reader, &array);
866 while (i < n_elements)
869 _dbus_type_reader_read_basic (&array,
872 str_array[i] = _dbus_strdup (s);
873 if (str_array[i] == NULL)
875 dbus_free_string_array (str_array);
876 _DBUS_SET_OOM (error);
882 if (!_dbus_type_reader_next (&array))
883 _dbus_assert (i == n_elements);
886 _dbus_assert (_dbus_type_reader_get_current_type (&array) == DBUS_TYPE_INVALID);
887 _dbus_assert (i == n_elements);
888 _dbus_assert (str_array[i] == NULL);
890 *str_array_p = str_array;
891 *n_elements_p = n_elements;
893 #ifndef DBUS_DISABLE_CHECKS
896 _dbus_warn ("you can't read arrays of container types (struct, variant, array) with %s for now\n",
897 _DBUS_FUNCTION_NAME);
902 #ifndef DBUS_DISABLE_CHECKS
905 _dbus_warn ("you can only read arrays and basic types with %s for now\n",
906 _DBUS_FUNCTION_NAME);
911 spec_type = va_arg (var_args, int);
912 if (!_dbus_type_reader_next (&real->u.reader) && spec_type != DBUS_TYPE_INVALID)
914 dbus_set_error (error, DBUS_ERROR_INVALID_ARGS,
915 "Message has only %d arguments, but more were expected", i);
932 * @defgroup DBusMessage DBusMessage
934 * @brief Message to be sent or received over a #DBusConnection.
936 * A DBusMessage is the most basic unit of communication over a
937 * DBusConnection. A DBusConnection represents a stream of messages
938 * received from a remote application, and a stream of messages
939 * sent to a remote application.
941 * A message has a message type, returned from
942 * dbus_message_get_type(). This indicates whether the message is a
943 * method call, a reply to a method call, a signal, or an error reply.
945 * A message has header fields such as the sender, destination, method
946 * or signal name, and so forth. DBusMessage has accessor functions for
947 * these, such as dbus_message_get_member().
949 * Convenience functions dbus_message_is_method_call(), dbus_message_is_signal(),
950 * and dbus_message_is_error() check several header fields at once and are
951 * slightly more efficient than checking the header fields with individual
952 * accessor functions.
954 * Finally, a message has arguments. The number and types of arguments
955 * are in the message's signature header field (accessed with
956 * dbus_message_get_signature()). Simple argument values are usually
957 * retrieved with dbus_message_get_args() but more complex values such
958 * as structs may require the use of #DBusMessageIter.
960 * The D-Bus specification goes into some more detail about header fields and
967 * @typedef DBusMessage
969 * Opaque data type representing a message received from or to be
970 * sent to another application.
974 * Returns the serial of a message or 0 if none has been specified.
975 * The message's serial number is provided by the application sending
976 * the message and is used to identify replies to this message.
978 * All messages received on a connection will have a serial provided
979 * by the remote application.
981 * For messages you're sending, dbus_connection_send() will assign a
982 * serial and return it to you.
984 * @param message the message
985 * @returns the serial
988 dbus_message_get_serial (DBusMessage *message)
990 _dbus_return_val_if_fail (message != NULL, 0);
992 return _dbus_header_get_serial (&message->header);
996 * Sets the reply serial of a message (the serial of the message this
999 * @param message the message
1000 * @param reply_serial the serial we're replying to
1001 * @returns #FALSE if not enough memory
1004 dbus_message_set_reply_serial (DBusMessage *message,
1005 dbus_uint32_t reply_serial)
1007 _dbus_return_val_if_fail (message != NULL, FALSE);
1008 _dbus_return_val_if_fail (!message->locked, FALSE);
1009 _dbus_return_val_if_fail (reply_serial != 0, FALSE); /* 0 is invalid */
1011 return _dbus_header_set_field_basic (&message->header,
1012 DBUS_HEADER_FIELD_REPLY_SERIAL,
1018 * Returns the serial that the message is a reply to or 0 if none.
1020 * @param message the message
1021 * @returns the reply serial
1024 dbus_message_get_reply_serial (DBusMessage *message)
1026 dbus_uint32_t v_UINT32;
1028 _dbus_return_val_if_fail (message != NULL, 0);
1030 if (_dbus_header_get_field_basic (&message->header,
1031 DBUS_HEADER_FIELD_REPLY_SERIAL,
1040 dbus_message_finalize (DBusMessage *message)
1042 _dbus_assert (message->refcount.value == 0);
1044 /* This calls application callbacks! */
1045 _dbus_data_slot_list_free (&message->slot_list);
1047 _dbus_list_foreach (&message->counters,
1048 free_counter, message);
1049 _dbus_list_clear (&message->counters);
1051 _dbus_header_free (&message->header);
1052 _dbus_string_free (&message->body);
1054 #ifdef HAVE_UNIX_FD_PASSING
1055 close_unix_fds(message->unix_fds, &message->n_unix_fds);
1056 dbus_free(message->unix_fds);
1059 _dbus_assert (message->refcount.value == 0);
1061 dbus_free (message);
1065 dbus_message_new_empty_header (void)
1067 DBusMessage *message;
1068 dbus_bool_t from_cache;
1070 message = dbus_message_get_cached ();
1072 if (message != NULL)
1079 message = dbus_new (DBusMessage, 1);
1080 if (message == NULL)
1082 #ifndef DBUS_DISABLE_CHECKS
1083 message->generation = _dbus_current_generation;
1086 #ifdef HAVE_UNIX_FD_PASSING
1087 message->unix_fds = NULL;
1088 message->n_unix_fds_allocated = 0;
1092 message->refcount.value = 1;
1093 message->byte_order = DBUS_COMPILER_BYTE_ORDER;
1094 message->locked = FALSE;
1095 #ifndef DBUS_DISABLE_CHECKS
1096 message->in_cache = FALSE;
1098 message->counters = NULL;
1099 message->size_counter_delta = 0;
1100 message->changed_stamp = 0;
1102 #ifdef HAVE_UNIX_FD_PASSING
1103 message->n_unix_fds = 0;
1104 message->n_unix_fds_allocated = 0;
1105 message->unix_fd_counter_delta = 0;
1109 _dbus_data_slot_list_init (&message->slot_list);
1113 _dbus_header_reinit (&message->header, message->byte_order);
1114 _dbus_string_set_length (&message->body, 0);
1118 if (!_dbus_header_init (&message->header, message->byte_order))
1120 dbus_free (message);
1124 if (!_dbus_string_init_preallocated (&message->body, 32))
1126 _dbus_header_free (&message->header);
1127 dbus_free (message);
1136 * Constructs a new message of the given message type.
1137 * Types include #DBUS_MESSAGE_TYPE_METHOD_CALL,
1138 * #DBUS_MESSAGE_TYPE_SIGNAL, and so forth.
1140 * Usually you want to use dbus_message_new_method_call(),
1141 * dbus_message_new_method_return(), dbus_message_new_signal(),
1142 * or dbus_message_new_error() instead.
1144 * @param message_type type of message
1145 * @returns new message or #NULL if no memory
1148 dbus_message_new (int message_type)
1150 DBusMessage *message;
1152 _dbus_return_val_if_fail (message_type != DBUS_MESSAGE_TYPE_INVALID, NULL);
1154 message = dbus_message_new_empty_header ();
1155 if (message == NULL)
1158 if (!_dbus_header_create (&message->header,
1160 NULL, NULL, NULL, NULL, NULL))
1162 dbus_message_unref (message);
1170 * Constructs a new message to invoke a method on a remote
1171 * object. Returns #NULL if memory can't be allocated for the
1172 * message. The destination may be #NULL in which case no destination
1173 * is set; this is appropriate when using D-Bus in a peer-to-peer
1174 * context (no message bus). The interface may be #NULL, which means
1175 * that if multiple methods with the given name exist it is undefined
1176 * which one will be invoked.
1178 * The path and method names may not be #NULL.
1180 * Destination, path, interface, and method name can't contain
1181 * any invalid characters (see the D-Bus specification).
1183 * @param destination name that the message should be sent to or #NULL
1184 * @param path object path the message should be sent to
1185 * @param interface interface to invoke method on, or #NULL
1186 * @param method method to invoke
1188 * @returns a new DBusMessage, free with dbus_message_unref()
1191 dbus_message_new_method_call (const char *destination,
1193 const char *interface,
1196 DBusMessage *message;
1198 _dbus_return_val_if_fail (path != NULL, NULL);
1199 _dbus_return_val_if_fail (method != NULL, NULL);
1200 _dbus_return_val_if_fail (destination == NULL ||
1201 _dbus_check_is_valid_bus_name (destination), NULL);
1202 _dbus_return_val_if_fail (_dbus_check_is_valid_path (path), NULL);
1203 _dbus_return_val_if_fail (interface == NULL ||
1204 _dbus_check_is_valid_interface (interface), NULL);
1205 _dbus_return_val_if_fail (_dbus_check_is_valid_member (method), NULL);
1207 message = dbus_message_new_empty_header ();
1208 if (message == NULL)
1211 if (!_dbus_header_create (&message->header,
1212 DBUS_MESSAGE_TYPE_METHOD_CALL,
1213 destination, path, interface, method, NULL))
1215 dbus_message_unref (message);
1223 * Constructs a message that is a reply to a method call. Returns
1224 * #NULL if memory can't be allocated for the message.
1226 * @param method_call the message being replied to
1227 * @returns a new DBusMessage, free with dbus_message_unref()
1230 dbus_message_new_method_return (DBusMessage *method_call)
1232 DBusMessage *message;
1235 _dbus_return_val_if_fail (method_call != NULL, NULL);
1237 sender = dbus_message_get_sender (method_call);
1239 /* sender is allowed to be null here in peer-to-peer case */
1241 message = dbus_message_new_empty_header ();
1242 if (message == NULL)
1245 if (!_dbus_header_create (&message->header,
1246 DBUS_MESSAGE_TYPE_METHOD_RETURN,
1247 sender, NULL, NULL, NULL, NULL))
1249 dbus_message_unref (message);
1253 dbus_message_set_no_reply (message, TRUE);
1255 if (!dbus_message_set_reply_serial (message,
1256 dbus_message_get_serial (method_call)))
1258 dbus_message_unref (message);
1266 * Constructs a new message representing a signal emission. Returns
1267 * #NULL if memory can't be allocated for the message. A signal is
1268 * identified by its originating object path, interface, and the name
1271 * Path, interface, and signal name must all be valid (the D-Bus
1272 * specification defines the syntax of these fields).
1274 * @param path the path to the object emitting the signal
1275 * @param interface the interface the signal is emitted from
1276 * @param name name of the signal
1277 * @returns a new DBusMessage, free with dbus_message_unref()
1280 dbus_message_new_signal (const char *path,
1281 const char *interface,
1284 DBusMessage *message;
1286 _dbus_return_val_if_fail (path != NULL, NULL);
1287 _dbus_return_val_if_fail (interface != NULL, NULL);
1288 _dbus_return_val_if_fail (name != NULL, NULL);
1289 _dbus_return_val_if_fail (_dbus_check_is_valid_path (path), NULL);
1290 _dbus_return_val_if_fail (_dbus_check_is_valid_interface (interface), NULL);
1291 _dbus_return_val_if_fail (_dbus_check_is_valid_member (name), NULL);
1293 message = dbus_message_new_empty_header ();
1294 if (message == NULL)
1297 if (!_dbus_header_create (&message->header,
1298 DBUS_MESSAGE_TYPE_SIGNAL,
1299 NULL, path, interface, name, NULL))
1301 dbus_message_unref (message);
1305 dbus_message_set_no_reply (message, TRUE);
1311 * Creates a new message that is an error reply to another message.
1312 * Error replies are most common in response to method calls, but
1313 * can be returned in reply to any message.
1315 * The error name must be a valid error name according to the syntax
1316 * given in the D-Bus specification. If you don't want to make
1317 * up an error name just use #DBUS_ERROR_FAILED.
1319 * @param reply_to the message we're replying to
1320 * @param error_name the error name
1321 * @param error_message the error message string (or #NULL for none, but please give a message)
1322 * @returns a new error message object, free with dbus_message_unref()
1325 dbus_message_new_error (DBusMessage *reply_to,
1326 const char *error_name,
1327 const char *error_message)
1329 DBusMessage *message;
1331 DBusMessageIter iter;
1333 _dbus_return_val_if_fail (reply_to != NULL, NULL);
1334 _dbus_return_val_if_fail (error_name != NULL, NULL);
1335 _dbus_return_val_if_fail (_dbus_check_is_valid_error_name (error_name), NULL);
1337 sender = dbus_message_get_sender (reply_to);
1339 /* sender may be NULL for non-message-bus case or
1340 * when the message bus is dealing with an unregistered
1343 message = dbus_message_new_empty_header ();
1344 if (message == NULL)
1347 if (!_dbus_header_create (&message->header,
1348 DBUS_MESSAGE_TYPE_ERROR,
1349 sender, NULL, NULL, NULL, error_name))
1351 dbus_message_unref (message);
1355 dbus_message_set_no_reply (message, TRUE);
1357 if (!dbus_message_set_reply_serial (message,
1358 dbus_message_get_serial (reply_to)))
1360 dbus_message_unref (message);
1364 if (error_message != NULL)
1366 dbus_message_iter_init_append (message, &iter);
1367 if (!dbus_message_iter_append_basic (&iter,
1371 dbus_message_unref (message);
1380 * Creates a new message that is an error reply to another message, allowing
1381 * you to use printf formatting.
1383 * See dbus_message_new_error() for details - this function is the same
1384 * aside from the printf formatting.
1386 * @todo add _DBUS_GNUC_PRINTF to this (requires moving _DBUS_GNUC_PRINTF to
1387 * public header, see DBUS_DEPRECATED for an example)
1389 * @param reply_to the original message
1390 * @param error_name the error name
1391 * @param error_format the error message format as with printf
1392 * @param ... format string arguments
1393 * @returns a new error message
1396 dbus_message_new_error_printf (DBusMessage *reply_to,
1397 const char *error_name,
1398 const char *error_format,
1403 DBusMessage *message;
1405 _dbus_return_val_if_fail (reply_to != NULL, NULL);
1406 _dbus_return_val_if_fail (error_name != NULL, NULL);
1407 _dbus_return_val_if_fail (_dbus_check_is_valid_error_name (error_name), NULL);
1409 if (!_dbus_string_init (&str))
1412 va_start (args, error_format);
1414 if (_dbus_string_append_printf_valist (&str, error_format, args))
1415 message = dbus_message_new_error (reply_to, error_name,
1416 _dbus_string_get_const_data (&str));
1420 _dbus_string_free (&str);
1429 * Creates a new message that is an exact replica of the message
1430 * specified, except that its refcount is set to 1, its message serial
1431 * is reset to 0, and if the original message was "locked" (in the
1432 * outgoing message queue and thus not modifiable) the new message
1433 * will not be locked.
1435 * @todo This function can't be used in programs that try to recover from OOM errors.
1437 * @param message the message
1438 * @returns the new message.or #NULL if not enough memory or Unix file descriptors (in case the message to copy includes Unix file descriptors) can be allocated.
1441 dbus_message_copy (const DBusMessage *message)
1443 DBusMessage *retval;
1445 _dbus_return_val_if_fail (message != NULL, NULL);
1447 retval = dbus_new0 (DBusMessage, 1);
1451 retval->refcount.value = 1;
1452 retval->byte_order = message->byte_order;
1453 retval->locked = FALSE;
1454 #ifndef DBUS_DISABLE_CHECKS
1455 retval->generation = message->generation;
1458 if (!_dbus_header_copy (&message->header, &retval->header))
1464 if (!_dbus_string_init_preallocated (&retval->body,
1465 _dbus_string_get_length (&message->body)))
1467 _dbus_header_free (&retval->header);
1472 if (!_dbus_string_copy (&message->body, 0,
1476 #ifdef HAVE_UNIX_FD_PASSING
1477 retval->unix_fds = dbus_new(int, message->n_unix_fds);
1478 if (retval->unix_fds == NULL && message->n_unix_fds > 0)
1481 retval->n_unix_fds_allocated = message->n_unix_fds;
1483 for (retval->n_unix_fds = 0;
1484 retval->n_unix_fds < message->n_unix_fds;
1485 retval->n_unix_fds++)
1487 retval->unix_fds[retval->n_unix_fds] = _dbus_dup(message->unix_fds[retval->n_unix_fds], NULL);
1489 if (retval->unix_fds[retval->n_unix_fds] < 0)
1498 _dbus_header_free (&retval->header);
1499 _dbus_string_free (&retval->body);
1501 #ifdef HAVE_UNIX_FD_PASSING
1502 close_unix_fds(retval->unix_fds, &retval->n_unix_fds);
1503 dbus_free(retval->unix_fds);
1513 * Increments the reference count of a DBusMessage.
1515 * @param message the message
1516 * @returns the message
1517 * @see dbus_message_unref
1520 dbus_message_ref (DBusMessage *message)
1522 dbus_int32_t old_refcount;
1524 _dbus_return_val_if_fail (message != NULL, NULL);
1525 _dbus_return_val_if_fail (message->generation == _dbus_current_generation, NULL);
1526 _dbus_return_val_if_fail (!message->in_cache, NULL);
1528 old_refcount = _dbus_atomic_inc (&message->refcount);
1529 _dbus_assert (old_refcount >= 1);
1535 * Decrements the reference count of a DBusMessage, freeing the
1536 * message if the count reaches 0.
1538 * @param message the message
1539 * @see dbus_message_ref
1542 dbus_message_unref (DBusMessage *message)
1544 dbus_int32_t old_refcount;
1546 _dbus_return_if_fail (message != NULL);
1547 _dbus_return_if_fail (message->generation == _dbus_current_generation);
1548 _dbus_return_if_fail (!message->in_cache);
1550 old_refcount = _dbus_atomic_dec (&message->refcount);
1552 _dbus_assert (old_refcount >= 0);
1554 if (old_refcount == 1)
1556 /* Calls application callbacks! */
1557 dbus_message_cache_or_finalize (message);
1562 * Gets the type of a message. Types include
1563 * #DBUS_MESSAGE_TYPE_METHOD_CALL, #DBUS_MESSAGE_TYPE_METHOD_RETURN,
1564 * #DBUS_MESSAGE_TYPE_ERROR, #DBUS_MESSAGE_TYPE_SIGNAL, but other
1565 * types are allowed and all code must silently ignore messages of
1566 * unknown type. #DBUS_MESSAGE_TYPE_INVALID will never be returned.
1568 * @param message the message
1569 * @returns the type of the message
1572 dbus_message_get_type (DBusMessage *message)
1574 _dbus_return_val_if_fail (message != NULL, DBUS_MESSAGE_TYPE_INVALID);
1576 return _dbus_header_get_message_type (&message->header);
1580 * Appends fields to a message given a variable argument list. The
1581 * variable argument list should contain the type of each argument
1582 * followed by the value to append. Appendable types are basic types,
1583 * and arrays of fixed-length basic types (except arrays of Unix file
1584 * descriptors). To append variable-length basic types, or any more
1585 * complex value, you have to use an iterator rather than this
1588 * To append a basic type, specify its type code followed by the
1589 * address of the value. For example:
1593 * dbus_int32_t v_INT32 = 42;
1594 * const char *v_STRING = "Hello World";
1595 * dbus_message_append_args (message,
1596 * DBUS_TYPE_INT32, &v_INT32,
1597 * DBUS_TYPE_STRING, &v_STRING,
1598 * DBUS_TYPE_INVALID);
1601 * To append an array of fixed-length basic types (except Unix file
1602 * descriptors), pass in the DBUS_TYPE_ARRAY typecode, the element
1603 * typecode, the address of the array pointer, and a 32-bit integer
1604 * giving the number of elements in the array. So for example: @code
1605 * const dbus_int32_t array[] = { 1, 2, 3 }; const dbus_int32_t
1606 * *v_ARRAY = array; dbus_message_append_args (message,
1607 * DBUS_TYPE_ARRAY, DBUS_TYPE_INT32, &v_ARRAY, 3, DBUS_TYPE_INVALID);
1610 * This function does not support arrays of Unix file descriptors. If
1611 * you need those you need to manually recurse into the array.
1613 * For Unix file descriptors this function will internally duplicate
1614 * the descriptor you passed in. Hence you may close the descriptor
1615 * immediately after this call.
1617 * @warning in C, given "int array[]", "&array == array" (the
1618 * comp.lang.c FAQ says otherwise, but gcc and the FAQ don't agree).
1619 * So if you're using an array instead of a pointer you have to create
1620 * a pointer variable, assign the array to it, then take the address
1621 * of the pointer variable. For strings it works to write
1622 * const char *array = "Hello" and then use &array though.
1624 * The last argument to this function must be #DBUS_TYPE_INVALID,
1625 * marking the end of the argument list. If you don't do this
1626 * then libdbus won't know to stop and will read invalid memory.
1628 * String/signature/path arrays should be passed in as "const char***
1629 * address_of_array" and "int n_elements"
1631 * @todo support DBUS_TYPE_STRUCT and DBUS_TYPE_VARIANT and complex arrays
1633 * @todo If this fails due to lack of memory, the message is hosed and
1634 * you have to start over building the whole message.
1636 * @param message the message
1637 * @param first_arg_type type of the first argument
1638 * @param ... value of first argument, list of additional type-value pairs
1639 * @returns #TRUE on success
1642 dbus_message_append_args (DBusMessage *message,
1649 _dbus_return_val_if_fail (message != NULL, FALSE);
1651 va_start (var_args, first_arg_type);
1652 retval = dbus_message_append_args_valist (message,
1661 * Like dbus_message_append_args() but takes a va_list for use by language bindings.
1663 * @todo for now, if this function fails due to OOM it will leave
1664 * the message half-written and you have to discard the message
1667 * @see dbus_message_append_args.
1668 * @param message the message
1669 * @param first_arg_type type of first argument
1670 * @param var_args value of first argument, then list of type/value pairs
1671 * @returns #TRUE on success
1674 dbus_message_append_args_valist (DBusMessage *message,
1679 DBusMessageIter iter;
1681 _dbus_return_val_if_fail (message != NULL, FALSE);
1683 type = first_arg_type;
1685 dbus_message_iter_init_append (message, &iter);
1687 while (type != DBUS_TYPE_INVALID)
1689 if (dbus_type_is_basic (type))
1691 const DBusBasicValue *value;
1692 value = va_arg (var_args, const DBusBasicValue*);
1694 if (!dbus_message_iter_append_basic (&iter,
1699 else if (type == DBUS_TYPE_ARRAY)
1702 DBusMessageIter array;
1705 element_type = va_arg (var_args, int);
1707 buf[0] = element_type;
1709 if (!dbus_message_iter_open_container (&iter,
1715 if (dbus_type_is_fixed (element_type) &&
1716 element_type != DBUS_TYPE_UNIX_FD)
1718 const DBusBasicValue **value;
1721 value = va_arg (var_args, const DBusBasicValue**);
1722 n_elements = va_arg (var_args, int);
1724 if (!dbus_message_iter_append_fixed_array (&array,
1728 dbus_message_iter_abandon_container (&iter, &array);
1732 else if (element_type == DBUS_TYPE_STRING ||
1733 element_type == DBUS_TYPE_SIGNATURE ||
1734 element_type == DBUS_TYPE_OBJECT_PATH)
1736 const char ***value_p;
1741 value_p = va_arg (var_args, const char***);
1742 n_elements = va_arg (var_args, int);
1747 while (i < n_elements)
1749 if (!dbus_message_iter_append_basic (&array,
1752 dbus_message_iter_abandon_container (&iter, &array);
1760 _dbus_warn ("arrays of %s can't be appended with %s for now\n",
1761 _dbus_type_to_string (element_type),
1762 _DBUS_FUNCTION_NAME);
1766 if (!dbus_message_iter_close_container (&iter, &array))
1769 #ifndef DBUS_DISABLE_CHECKS
1772 _dbus_warn ("type %s isn't supported yet in %s\n",
1773 _dbus_type_to_string (type), _DBUS_FUNCTION_NAME);
1778 type = va_arg (var_args, int);
1788 * Gets arguments from a message given a variable argument list. The
1789 * supported types include those supported by
1790 * dbus_message_append_args(); that is, basic types and arrays of
1791 * fixed-length basic types. The arguments are the same as they would
1792 * be for dbus_message_iter_get_basic() or
1793 * dbus_message_iter_get_fixed_array().
1795 * In addition to those types, arrays of string, object path, and
1796 * signature are supported; but these are returned as allocated memory
1797 * and must be freed with dbus_free_string_array(), while the other
1798 * types are returned as const references. To get a string array
1799 * pass in "char ***array_location" and "int *n_elements".
1801 * Similar to dbus_message_get_fixed_array() this function does not
1802 * support arrays of type DBUS_TYPE_UNIX_FD. If you need to parse
1803 * messages with arrays of Unix file descriptors you need to recurse
1804 * into the array manually.
1806 * Unix file descriptors that are read with this function will have
1807 * the FD_CLOEXEC flag set. If you need them without this flag set,
1808 * make sure to unset it with fcntl().
1810 * The variable argument list should contain the type of the argument
1811 * followed by a pointer to where the value should be stored. The list
1812 * is terminated with #DBUS_TYPE_INVALID.
1814 * Except for string arrays, the returned values are constant; do not
1815 * free them. They point into the #DBusMessage.
1817 * If the requested arguments are not present, or do not have the
1818 * requested types, then an error will be set.
1820 * If more arguments than requested are present, the requested
1821 * arguments are returned and the extra arguments are ignored.
1823 * @todo support DBUS_TYPE_STRUCT and DBUS_TYPE_VARIANT and complex arrays
1825 * @param message the message
1826 * @param error error to be filled in on failure
1827 * @param first_arg_type the first argument type
1828 * @param ... location for first argument value, then list of type-location pairs
1829 * @returns #FALSE if the error was set
1832 dbus_message_get_args (DBusMessage *message,
1840 _dbus_return_val_if_fail (message != NULL, FALSE);
1841 _dbus_return_val_if_error_is_set (error, FALSE);
1843 va_start (var_args, first_arg_type);
1844 retval = dbus_message_get_args_valist (message, error, first_arg_type, var_args);
1851 * Like dbus_message_get_args but takes a va_list for use by language bindings.
1853 * @see dbus_message_get_args
1854 * @param message the message
1855 * @param error error to be filled in
1856 * @param first_arg_type type of the first argument
1857 * @param var_args return location for first argument, followed by list of type/location pairs
1858 * @returns #FALSE if error was set
1861 dbus_message_get_args_valist (DBusMessage *message,
1866 DBusMessageIter iter;
1868 _dbus_return_val_if_fail (message != NULL, FALSE);
1869 _dbus_return_val_if_error_is_set (error, FALSE);
1871 dbus_message_iter_init (message, &iter);
1872 return _dbus_message_iter_get_args_valist (&iter, error, first_arg_type, var_args);
1876 _dbus_message_iter_init_common (DBusMessage *message,
1877 DBusMessageRealIter *real,
1880 _dbus_assert (sizeof (DBusMessageRealIter) <= sizeof (DBusMessageIter));
1882 /* Since the iterator will read or write who-knows-what from the
1883 * message, we need to get in the right byte order
1885 ensure_byte_order (message);
1887 real->message = message;
1888 real->changed_stamp = message->changed_stamp;
1889 real->iter_type = iter_type;
1890 real->sig_refcount = 0;
1894 * Initializes a #DBusMessageIter for reading the arguments of the
1895 * message passed in.
1897 * When possible, dbus_message_get_args() is much more convenient.
1898 * Some types of argument can only be read with #DBusMessageIter
1901 * The easiest way to iterate is like this:
1903 * dbus_message_iter_init (message, &iter);
1904 * while ((current_type = dbus_message_iter_get_arg_type (&iter)) != DBUS_TYPE_INVALID)
1905 * dbus_message_iter_next (&iter);
1908 * #DBusMessageIter contains no allocated memory; it need not be
1909 * freed, and can be copied by assignment or memcpy().
1911 * @param message the message
1912 * @param iter pointer to an iterator to initialize
1913 * @returns #FALSE if the message has no arguments
1916 dbus_message_iter_init (DBusMessage *message,
1917 DBusMessageIter *iter)
1919 DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
1920 const DBusString *type_str;
1923 _dbus_return_val_if_fail (message != NULL, FALSE);
1924 _dbus_return_val_if_fail (iter != NULL, FALSE);
1926 get_const_signature (&message->header, &type_str, &type_pos);
1928 _dbus_message_iter_init_common (message, real,
1929 DBUS_MESSAGE_ITER_TYPE_READER);
1931 _dbus_type_reader_init (&real->u.reader,
1932 message->byte_order,
1937 return _dbus_type_reader_get_current_type (&real->u.reader) != DBUS_TYPE_INVALID;
1941 * Checks if an iterator has any more fields.
1943 * @param iter the message iter
1944 * @returns #TRUE if there are more fields following
1947 dbus_message_iter_has_next (DBusMessageIter *iter)
1949 DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
1951 _dbus_return_val_if_fail (_dbus_message_iter_check (real), FALSE);
1952 _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_READER, FALSE);
1954 return _dbus_type_reader_has_next (&real->u.reader);
1958 * Moves the iterator to the next field, if any. If there's no next
1959 * field, returns #FALSE. If the iterator moves forward, returns
1962 * @param iter the message iter
1963 * @returns #TRUE if the iterator was moved to the next field
1966 dbus_message_iter_next (DBusMessageIter *iter)
1968 DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
1970 _dbus_return_val_if_fail (_dbus_message_iter_check (real), FALSE);
1971 _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_READER, FALSE);
1973 return _dbus_type_reader_next (&real->u.reader);
1977 * Returns the argument type of the argument that the message iterator
1978 * points to. If the iterator is at the end of the message, returns
1979 * #DBUS_TYPE_INVALID. You can thus write a loop as follows:
1982 * dbus_message_iter_init (message, &iter);
1983 * while ((current_type = dbus_message_iter_get_arg_type (&iter)) != DBUS_TYPE_INVALID)
1984 * dbus_message_iter_next (&iter);
1987 * @param iter the message iter
1988 * @returns the argument type
1991 dbus_message_iter_get_arg_type (DBusMessageIter *iter)
1993 DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
1995 _dbus_return_val_if_fail (_dbus_message_iter_check (real), DBUS_TYPE_INVALID);
1996 _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_READER, FALSE);
1998 return _dbus_type_reader_get_current_type (&real->u.reader);
2002 * Returns the element type of the array that the message iterator
2003 * points to. Note that you need to check that the iterator points to
2004 * an array prior to using this function.
2006 * @param iter the message iter
2007 * @returns the array element type
2010 dbus_message_iter_get_element_type (DBusMessageIter *iter)
2012 DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
2014 _dbus_return_val_if_fail (_dbus_message_iter_check (real), DBUS_TYPE_INVALID);
2015 _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_READER, DBUS_TYPE_INVALID);
2016 _dbus_return_val_if_fail (dbus_message_iter_get_arg_type (iter) == DBUS_TYPE_ARRAY, DBUS_TYPE_INVALID);
2018 return _dbus_type_reader_get_element_type (&real->u.reader);
2022 * Recurses into a container value when reading values from a message,
2023 * initializing a sub-iterator to use for traversing the child values
2026 * Note that this recurses into a value, not a type, so you can only
2027 * recurse if the value exists. The main implication of this is that
2028 * if you have for example an empty array of array of int32, you can
2029 * recurse into the outermost array, but it will have no values, so
2030 * you won't be able to recurse further. There's no array of int32 to
2033 * If a container is an array of fixed-length types (except Unix file
2034 * descriptors), it is much more efficient to use
2035 * dbus_message_iter_get_fixed_array() to get the whole array in one
2036 * shot, rather than individually walking over the array elements.
2038 * Be sure you have somehow checked that
2039 * dbus_message_iter_get_arg_type() matches the type you are expecting
2040 * to recurse into. Results of this function are undefined if there is
2041 * no container to recurse into at the current iterator position.
2043 * @param iter the message iterator
2044 * @param sub the sub-iterator to initialize
2047 dbus_message_iter_recurse (DBusMessageIter *iter,
2048 DBusMessageIter *sub)
2050 DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
2051 DBusMessageRealIter *real_sub = (DBusMessageRealIter *)sub;
2053 _dbus_return_if_fail (_dbus_message_iter_check (real));
2054 _dbus_return_if_fail (sub != NULL);
2057 _dbus_type_reader_recurse (&real->u.reader, &real_sub->u.reader);
2061 * Returns the current signature of a message iterator. This
2062 * is useful primarily for dealing with variants; one can
2063 * recurse into a variant and determine the signature of
2064 * the variant's value.
2066 * The returned string must be freed with dbus_free().
2068 * @param iter the message iterator
2069 * @returns the contained signature, or NULL if out of memory
2072 dbus_message_iter_get_signature (DBusMessageIter *iter)
2074 const DBusString *sig;
2078 DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
2080 _dbus_return_val_if_fail (_dbus_message_iter_check (real), NULL);
2082 if (!_dbus_string_init (&retstr))
2085 _dbus_type_reader_get_signature (&real->u.reader, &sig,
2087 if (!_dbus_string_append_len (&retstr,
2088 _dbus_string_get_const_data (sig) + start,
2091 if (!_dbus_string_steal_data (&retstr, &ret))
2093 _dbus_string_free (&retstr);
2098 * Reads a basic-typed value from the message iterator.
2099 * Basic types are the non-containers such as integer and string.
2101 * The value argument should be the address of a location to store
2102 * the returned value. So for int32 it should be a "dbus_int32_t*"
2103 * and for string a "const char**". The returned value is
2104 * by reference and should not be freed.
2106 * This call duplicates Unix file descriptors when reading them. It is
2107 * your job to close them when you don't need them anymore.
2109 * Unix file descriptors that are read with this function will have
2110 * the FD_CLOEXEC flag set. If you need them without this flag set,
2111 * make sure to unset it with fcntl().
2113 * Be sure you have somehow checked that
2114 * dbus_message_iter_get_arg_type() matches the type you are
2115 * expecting, or you'll crash when you try to use an integer as a
2116 * string or something.
2118 * To read any container type (array, struct, dict) you will need to
2119 * recurse into the container with dbus_message_iter_recurse(). If
2120 * the container is an array of fixed-length values (except Unix file
2121 * descriptors), you can get all the array elements at once with
2122 * dbus_message_iter_get_fixed_array(). Otherwise, you have to iterate
2123 * over the container's contents one value at a time.
2125 * All basic-typed values are guaranteed to fit in 8 bytes. So you can
2126 * write code like this:
2129 * dbus_uint64_t value;
2131 * dbus_message_iter_get_basic (&read_iter, &value);
2132 * type = dbus_message_iter_get_arg_type (&read_iter);
2133 * dbus_message_iter_append_basic (&write_iter, type, &value);
2136 * On some really obscure platforms dbus_uint64_t might not exist, if
2137 * you need to worry about this you will know. dbus_uint64_t is just
2138 * one example of a type that's large enough to hold any possible
2139 * value, you could use a struct or char[8] instead if you like.
2141 * @param iter the iterator
2142 * @param value location to store the value
2145 dbus_message_iter_get_basic (DBusMessageIter *iter,
2148 DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
2150 _dbus_return_if_fail (_dbus_message_iter_check (real));
2151 _dbus_return_if_fail (value != NULL);
2153 if (dbus_message_iter_get_arg_type (iter) == DBUS_TYPE_UNIX_FD)
2155 #ifdef HAVE_UNIX_FD_PASSING
2158 _dbus_type_reader_read_basic(&real->u.reader, &idx);
2160 if (idx.u32 >= real->message->n_unix_fds) {
2161 /* Hmm, we cannot really signal an error here, so let's make
2162 sure to return an invalid fd. */
2163 *((int*) value) = -1;
2167 *((int*) value) = _dbus_dup(real->message->unix_fds[idx.u32], NULL);
2169 *((int*) value) = -1;
2174 _dbus_type_reader_read_basic (&real->u.reader,
2180 * Returns the number of bytes in the array as marshaled in the wire
2181 * protocol. The iterator must currently be inside an array-typed
2184 * This function is deprecated on the grounds that it is stupid. Why
2185 * would you want to know how many bytes are in the array as marshaled
2186 * in the wire protocol? For now, use the n_elements returned from
2187 * dbus_message_iter_get_fixed_array() instead, or iterate over the
2188 * array values and count them.
2190 * @todo introduce a variant of this get_n_elements that returns
2191 * the number of elements, though with a non-fixed array it will not
2192 * be very efficient, so maybe it's not good.
2194 * @param iter the iterator
2195 * @returns the number of bytes in the array
2198 dbus_message_iter_get_array_len (DBusMessageIter *iter)
2200 DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
2202 _dbus_return_val_if_fail (_dbus_message_iter_check (real), 0);
2204 return _dbus_type_reader_get_array_length (&real->u.reader);
2208 * Reads a block of fixed-length values from the message iterator.
2209 * Fixed-length values are those basic types that are not string-like,
2210 * such as integers, bool, double. The returned block will be from the
2211 * current position in the array until the end of the array.
2213 * There is one exception here: although DBUS_TYPE_UNIX_FD is
2214 * considered a 'fixed' type arrays of this type may not be read with
2217 * The message iter should be "in" the array (that is, you recurse into the
2218 * array, and then you call dbus_message_iter_get_fixed_array() on the
2219 * "sub-iterator" created by dbus_message_iter_recurse()).
2221 * The value argument should be the address of a location to store the
2222 * returned array. So for int32 it should be a "const dbus_int32_t**"
2223 * The returned value is by reference and should not be freed.
2225 * This function should only be used if dbus_type_is_fixed() returns
2226 * #TRUE for the element type.
2228 * If an array's elements are not fixed in size, you have to recurse
2229 * into the array with dbus_message_iter_recurse() and read the
2230 * elements one by one.
2232 * Because the array is not copied, this function runs in constant
2233 * time and is fast; it's much preferred over walking the entire array
2234 * with an iterator. (However, you can always use
2235 * dbus_message_iter_recurse(), even for fixed-length types;
2236 * dbus_message_iter_get_fixed_array() is just an optimization.)
2238 * @param iter the iterator
2239 * @param value location to store the block
2240 * @param n_elements number of elements in the block
2243 dbus_message_iter_get_fixed_array (DBusMessageIter *iter,
2247 DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
2248 int subtype = _dbus_type_reader_get_current_type(&real->u.reader);
2250 _dbus_return_if_fail (_dbus_message_iter_check (real));
2251 _dbus_return_if_fail (value != NULL);
2252 _dbus_return_if_fail ((subtype == DBUS_TYPE_INVALID) ||
2253 (dbus_type_is_fixed (subtype) && subtype != DBUS_TYPE_UNIX_FD));
2255 _dbus_type_reader_read_fixed_multi (&real->u.reader,
2260 * Initializes a #DBusMessageIter for appending arguments to the end
2263 * @todo If appending any of the arguments fails due to lack of
2264 * memory, the message is hosed and you have to start over building
2265 * the whole message.
2267 * @param message the message
2268 * @param iter pointer to an iterator to initialize
2271 dbus_message_iter_init_append (DBusMessage *message,
2272 DBusMessageIter *iter)
2274 DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
2276 _dbus_return_if_fail (message != NULL);
2277 _dbus_return_if_fail (iter != NULL);
2279 _dbus_message_iter_init_common (message, real,
2280 DBUS_MESSAGE_ITER_TYPE_WRITER);
2282 /* We create the signature string and point iterators at it "on demand"
2283 * when a value is actually appended. That means that init() never fails
2286 _dbus_type_writer_init_types_delayed (&real->u.writer,
2287 message->byte_order,
2289 _dbus_string_get_length (&message->body));
2293 * Creates a temporary signature string containing the current
2294 * signature, stores it in the iterator, and points the iterator to
2295 * the end of it. Used any time we write to the message.
2297 * @param real an iterator without a type_str
2298 * @returns #FALSE if no memory
2301 _dbus_message_iter_open_signature (DBusMessageRealIter *real)
2304 const DBusString *current_sig;
2305 int current_sig_pos;
2307 _dbus_assert (real->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER);
2309 if (real->u.writer.type_str != NULL)
2311 _dbus_assert (real->sig_refcount > 0);
2312 real->sig_refcount += 1;
2316 str = dbus_new (DBusString, 1);
2320 if (!_dbus_header_get_field_raw (&real->message->header,
2321 DBUS_HEADER_FIELD_SIGNATURE,
2322 ¤t_sig, ¤t_sig_pos))
2329 current_len = _dbus_string_get_byte (current_sig, current_sig_pos);
2330 current_sig_pos += 1; /* move on to sig data */
2332 if (!_dbus_string_init_preallocated (str, current_len + 4))
2338 if (!_dbus_string_copy_len (current_sig, current_sig_pos, current_len,
2341 _dbus_string_free (str);
2348 if (!_dbus_string_init_preallocated (str, 4))
2355 real->sig_refcount = 1;
2357 _dbus_type_writer_add_types (&real->u.writer,
2358 str, _dbus_string_get_length (str));
2363 * Sets the new signature as the message signature, frees the
2364 * signature string, and marks the iterator as not having a type_str
2365 * anymore. Frees the signature even if it fails, so you can't
2366 * really recover from failure. Kinda busted.
2368 * @param real an iterator without a type_str
2369 * @returns #FALSE if no memory
2372 _dbus_message_iter_close_signature (DBusMessageRealIter *real)
2375 const char *v_STRING;
2378 _dbus_assert (real->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER);
2379 _dbus_assert (real->u.writer.type_str != NULL);
2380 _dbus_assert (real->sig_refcount > 0);
2382 real->sig_refcount -= 1;
2384 if (real->sig_refcount > 0)
2386 _dbus_assert (real->sig_refcount == 0);
2390 str = real->u.writer.type_str;
2392 v_STRING = _dbus_string_get_const_data (str);
2393 if (!_dbus_header_set_field_basic (&real->message->header,
2394 DBUS_HEADER_FIELD_SIGNATURE,
2395 DBUS_TYPE_SIGNATURE,
2399 _dbus_type_writer_remove_types (&real->u.writer);
2400 _dbus_string_free (str);
2407 * Frees the signature string and marks the iterator as not having a
2408 * type_str anymore. Since the new signature is not set, the message
2409 * will generally be hosed after this is called.
2411 * @param real an iterator without a type_str
2414 _dbus_message_iter_abandon_signature (DBusMessageRealIter *real)
2418 _dbus_assert (real->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER);
2419 _dbus_assert (real->u.writer.type_str != NULL);
2420 _dbus_assert (real->sig_refcount > 0);
2422 real->sig_refcount -= 1;
2424 if (real->sig_refcount > 0)
2426 _dbus_assert (real->sig_refcount == 0);
2428 str = real->u.writer.type_str;
2430 _dbus_type_writer_remove_types (&real->u.writer);
2431 _dbus_string_free (str);
2435 #ifndef DBUS_DISABLE_CHECKS
2437 _dbus_message_iter_append_check (DBusMessageRealIter *iter)
2439 if (!_dbus_message_iter_check (iter))
2442 if (iter->message->locked)
2444 _dbus_warn_check_failed ("dbus append iterator can't be used: message is locked (has already been sent)\n");
2450 #endif /* DBUS_DISABLE_CHECKS */
2452 #ifdef HAVE_UNIX_FD_PASSING
2454 expand_fd_array(DBusMessage *m,
2459 /* This makes space for adding n new fds to the array and returns a
2460 pointer to the place were the first fd should be put. */
2462 if (m->n_unix_fds + n > m->n_unix_fds_allocated)
2467 /* Make twice as much space as necessary */
2468 k = (m->n_unix_fds + n) * 2;
2470 /* Allocate at least four */
2474 p = dbus_realloc(m->unix_fds, k * sizeof(int));
2479 m->n_unix_fds_allocated = k;
2482 return m->unix_fds + m->n_unix_fds;
2487 * Appends a basic-typed value to the message. The basic types are the
2488 * non-container types such as integer and string.
2490 * The "value" argument should be the address of a basic-typed value.
2491 * So for string, const char**. For integer, dbus_int32_t*.
2493 * For Unix file descriptors this function will internally duplicate
2494 * the descriptor you passed in. Hence you may close the descriptor
2495 * immediately after this call.
2497 * @todo If this fails due to lack of memory, the message is hosed and
2498 * you have to start over building the whole message.
2500 * @param iter the append iterator
2501 * @param type the type of the value
2502 * @param value the address of the value
2503 * @returns #FALSE if not enough memory
2506 dbus_message_iter_append_basic (DBusMessageIter *iter,
2510 DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
2513 _dbus_return_val_if_fail (_dbus_message_iter_append_check (real), FALSE);
2514 _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER, FALSE);
2515 _dbus_return_val_if_fail (dbus_type_is_basic (type), FALSE);
2516 _dbus_return_val_if_fail (value != NULL, FALSE);
2518 #ifndef DBUS_DISABLE_CHECKS
2521 const char * const *string_p;
2523 case DBUS_TYPE_STRING:
2525 _dbus_return_val_if_fail (_dbus_check_is_valid_utf8 (*string_p), FALSE);
2528 case DBUS_TYPE_OBJECT_PATH:
2530 _dbus_return_val_if_fail (_dbus_check_is_valid_path (*string_p), FALSE);
2533 case DBUS_TYPE_SIGNATURE:
2535 _dbus_return_val_if_fail (_dbus_check_is_valid_signature (*string_p), FALSE);
2538 case DBUS_TYPE_BOOLEAN:
2539 /* FIXME: strictly speaking we should ensure that it's in {0,1},
2540 * but for now, fall through */
2544 /* nothing to check, all possible values are allowed */
2549 if (!_dbus_message_iter_open_signature (real))
2552 if (type == DBUS_TYPE_UNIX_FD)
2554 #ifdef HAVE_UNIX_FD_PASSING
2558 /* First step, include the fd in the fd list of this message */
2559 if (!(fds = expand_fd_array(real->message, 1)))
2562 *fds = _dbus_dup(*(int*) value, NULL);
2566 u = real->message->n_unix_fds;
2568 /* Second step, write the index to the fd */
2569 if (!(ret = _dbus_type_writer_write_basic (&real->u.writer, DBUS_TYPE_UNIX_FD, &u))) {
2570 _dbus_close(*fds, NULL);
2574 real->message->n_unix_fds += 1;
2577 /* Final step, update the header accordingly */
2578 ret = _dbus_header_set_field_basic (&real->message->header,
2579 DBUS_HEADER_FIELD_UNIX_FDS,
2583 /* If any of these operations fail the message is
2584 hosed. However, no memory or fds should be leaked since what
2585 has been added to message has been added to the message, and
2586 can hence be accounted for when the message is being
2594 ret = _dbus_type_writer_write_basic (&real->u.writer, type, value);
2597 if (!_dbus_message_iter_close_signature (real))
2604 * Appends a block of fixed-length values to an array. The
2605 * fixed-length types are all basic types that are not string-like. So
2606 * int32, double, bool, etc. (Unix file descriptors however are not
2607 * supported.) You must call dbus_message_iter_open_container() to
2608 * open an array of values before calling this function. You may call
2609 * this function multiple times (and intermixed with calls to
2610 * dbus_message_iter_append_basic()) for the same array.
2612 * The "value" argument should be the address of the array. So for
2613 * integer, "dbus_int32_t**" is expected for example.
2615 * @warning in C, given "int array[]", "&array == array" (the
2616 * comp.lang.c FAQ says otherwise, but gcc and the FAQ don't agree).
2617 * So if you're using an array instead of a pointer you have to create
2618 * a pointer variable, assign the array to it, then take the address
2619 * of the pointer variable.
2621 * const dbus_int32_t array[] = { 1, 2, 3 };
2622 * const dbus_int32_t *v_ARRAY = array;
2623 * if (!dbus_message_iter_append_fixed_array (&iter, DBUS_TYPE_INT32, &v_ARRAY, 3))
2624 * fprintf (stderr, "No memory!\n");
2626 * For strings it works to write const char *array = "Hello" and then
2627 * use &array though.
2629 * @todo If this fails due to lack of memory, the message is hosed and
2630 * you have to start over building the whole message.
2632 * For Unix file descriptors this function will internally duplicate
2633 * the descriptor you passed in. Hence you may close the descriptor
2634 * immediately after this call.
2636 * @param iter the append iterator
2637 * @param element_type the type of the array elements
2638 * @param value the address of the array
2639 * @param n_elements the number of elements to append
2640 * @returns #FALSE if not enough memory
2643 dbus_message_iter_append_fixed_array (DBusMessageIter *iter,
2648 DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
2651 _dbus_return_val_if_fail (_dbus_message_iter_append_check (real), FALSE);
2652 _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER, FALSE);
2653 _dbus_return_val_if_fail (dbus_type_is_fixed (element_type) && element_type != DBUS_TYPE_UNIX_FD, FALSE);
2654 _dbus_return_val_if_fail (real->u.writer.container_type == DBUS_TYPE_ARRAY, FALSE);
2655 _dbus_return_val_if_fail (value != NULL, FALSE);
2656 _dbus_return_val_if_fail (n_elements >= 0, FALSE);
2657 _dbus_return_val_if_fail (n_elements <=
2658 DBUS_MAXIMUM_ARRAY_LENGTH / _dbus_type_get_alignment (element_type),
2661 ret = _dbus_type_writer_write_fixed_multi (&real->u.writer, element_type, value, n_elements);
2667 * Appends a container-typed value to the message; you are required to
2668 * append the contents of the container using the returned
2669 * sub-iterator, and then call
2670 * dbus_message_iter_close_container(). Container types are for
2671 * example struct, variant, and array. For variants, the
2672 * contained_signature should be the type of the single value inside
2673 * the variant. For structs and dict entries, contained_signature
2674 * should be #NULL; it will be set to whatever types you write into
2675 * the struct. For arrays, contained_signature should be the type of
2676 * the array elements.
2678 * @todo If this fails due to lack of memory, the message is hosed and
2679 * you have to start over building the whole message.
2681 * @param iter the append iterator
2682 * @param type the type of the value
2683 * @param contained_signature the type of container contents
2684 * @param sub sub-iterator to initialize
2685 * @returns #FALSE if not enough memory
2688 dbus_message_iter_open_container (DBusMessageIter *iter,
2690 const char *contained_signature,
2691 DBusMessageIter *sub)
2693 DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
2694 DBusMessageRealIter *real_sub = (DBusMessageRealIter *)sub;
2695 DBusString contained_str;
2697 _dbus_return_val_if_fail (_dbus_message_iter_append_check (real), FALSE);
2698 _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER, FALSE);
2699 _dbus_return_val_if_fail (dbus_type_is_container (type), FALSE);
2700 _dbus_return_val_if_fail (sub != NULL, FALSE);
2701 _dbus_return_val_if_fail ((type == DBUS_TYPE_STRUCT &&
2702 contained_signature == NULL) ||
2703 (type == DBUS_TYPE_DICT_ENTRY &&
2704 contained_signature == NULL) ||
2705 (type == DBUS_TYPE_VARIANT &&
2706 contained_signature != NULL) ||
2707 (type == DBUS_TYPE_ARRAY &&
2708 contained_signature != NULL), FALSE);
2710 /* this would fail if the contained_signature is a dict entry, since
2711 * dict entries are invalid signatures standalone (they must be in
2714 _dbus_return_val_if_fail ((type == DBUS_TYPE_ARRAY && contained_signature && *contained_signature == DBUS_DICT_ENTRY_BEGIN_CHAR) ||
2715 (contained_signature == NULL ||
2716 _dbus_check_is_valid_signature (contained_signature)),
2719 if (!_dbus_message_iter_open_signature (real))
2724 if (contained_signature != NULL)
2726 _dbus_string_init_const (&contained_str, contained_signature);
2728 return _dbus_type_writer_recurse (&real->u.writer,
2731 &real_sub->u.writer);
2735 return _dbus_type_writer_recurse (&real->u.writer,
2738 &real_sub->u.writer);
2744 * Closes a container-typed value appended to the message; may write
2745 * out more information to the message known only after the entire
2746 * container is written, and may free resources created by
2747 * dbus_message_iter_open_container().
2749 * @todo If this fails due to lack of memory, the message is hosed and
2750 * you have to start over building the whole message.
2752 * @param iter the append iterator
2753 * @param sub sub-iterator to close
2754 * @returns #FALSE if not enough memory
2757 dbus_message_iter_close_container (DBusMessageIter *iter,
2758 DBusMessageIter *sub)
2760 DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
2761 DBusMessageRealIter *real_sub = (DBusMessageRealIter *)sub;
2764 _dbus_return_val_if_fail (_dbus_message_iter_append_check (real), FALSE);
2765 _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER, FALSE);
2766 _dbus_return_val_if_fail (_dbus_message_iter_append_check (real_sub), FALSE);
2767 _dbus_return_val_if_fail (real_sub->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER, FALSE);
2769 ret = _dbus_type_writer_unrecurse (&real->u.writer,
2770 &real_sub->u.writer);
2772 if (!_dbus_message_iter_close_signature (real))
2779 * Abandons creation of a contained-typed value and frees resources created
2780 * by dbus_message_iter_open_container(). Once this returns, the message
2781 * is hosed and you have to start over building the whole message.
2783 * This should only be used to abandon creation of a message when you have
2786 * @param iter the append iterator
2787 * @param sub sub-iterator to close
2790 dbus_message_iter_abandon_container (DBusMessageIter *iter,
2791 DBusMessageIter *sub)
2793 DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
2794 DBusMessageRealIter *real_sub = (DBusMessageRealIter *)sub;
2796 _dbus_return_if_fail (_dbus_message_iter_append_check (real));
2797 _dbus_return_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER);
2798 _dbus_return_if_fail (_dbus_message_iter_append_check (real_sub));
2799 _dbus_return_if_fail (real_sub->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER);
2801 _dbus_message_iter_abandon_signature (real);
2805 * Sets a flag indicating that the message does not want a reply; if
2806 * this flag is set, the other end of the connection may (but is not
2807 * required to) optimize by not sending method return or error
2808 * replies. If this flag is set, there is no way to know whether the
2809 * message successfully arrived at the remote end. Normally you know a
2810 * message was received when you receive the reply to it.
2812 * The flag is #FALSE by default, that is by default the other end is
2813 * required to reply.
2815 * On the protocol level this toggles #DBUS_HEADER_FLAG_NO_REPLY_EXPECTED
2817 * @param message the message
2818 * @param no_reply #TRUE if no reply is desired
2821 dbus_message_set_no_reply (DBusMessage *message,
2822 dbus_bool_t no_reply)
2824 _dbus_return_if_fail (message != NULL);
2825 _dbus_return_if_fail (!message->locked);
2827 _dbus_header_toggle_flag (&message->header,
2828 DBUS_HEADER_FLAG_NO_REPLY_EXPECTED,
2833 * Returns #TRUE if the message does not expect
2836 * @param message the message
2837 * @returns #TRUE if the message sender isn't waiting for a reply
2840 dbus_message_get_no_reply (DBusMessage *message)
2842 _dbus_return_val_if_fail (message != NULL, FALSE);
2844 return _dbus_header_get_flag (&message->header,
2845 DBUS_HEADER_FLAG_NO_REPLY_EXPECTED);
2849 * Sets a flag indicating that an owner for the destination name will
2850 * be automatically started before the message is delivered. When this
2851 * flag is set, the message is held until a name owner finishes
2852 * starting up, or fails to start up. In case of failure, the reply
2855 * The flag is set to #TRUE by default, i.e. auto starting is the default.
2857 * On the protocol level this toggles #DBUS_HEADER_FLAG_NO_AUTO_START
2859 * @param message the message
2860 * @param auto_start #TRUE if auto-starting is desired
2863 dbus_message_set_auto_start (DBusMessage *message,
2864 dbus_bool_t auto_start)
2866 _dbus_return_if_fail (message != NULL);
2867 _dbus_return_if_fail (!message->locked);
2869 _dbus_header_toggle_flag (&message->header,
2870 DBUS_HEADER_FLAG_NO_AUTO_START,
2875 * Returns #TRUE if the message will cause an owner for
2876 * destination name to be auto-started.
2878 * @param message the message
2879 * @returns #TRUE if the message will use auto-start
2882 dbus_message_get_auto_start (DBusMessage *message)
2884 _dbus_return_val_if_fail (message != NULL, FALSE);
2886 return !_dbus_header_get_flag (&message->header,
2887 DBUS_HEADER_FLAG_NO_AUTO_START);
2892 * Sets the object path this message is being sent to (for
2893 * DBUS_MESSAGE_TYPE_METHOD_CALL) or the one a signal is being
2894 * emitted from (for DBUS_MESSAGE_TYPE_SIGNAL).
2896 * The path must contain only valid characters as defined
2897 * in the D-Bus specification.
2899 * @param message the message
2900 * @param object_path the path or #NULL to unset
2901 * @returns #FALSE if not enough memory
2904 dbus_message_set_path (DBusMessage *message,
2905 const char *object_path)
2907 _dbus_return_val_if_fail (message != NULL, FALSE);
2908 _dbus_return_val_if_fail (!message->locked, FALSE);
2909 _dbus_return_val_if_fail (object_path == NULL ||
2910 _dbus_check_is_valid_path (object_path),
2913 return set_or_delete_string_field (message,
2914 DBUS_HEADER_FIELD_PATH,
2915 DBUS_TYPE_OBJECT_PATH,
2920 * Gets the object path this message is being sent to (for
2921 * DBUS_MESSAGE_TYPE_METHOD_CALL) or being emitted from (for
2922 * DBUS_MESSAGE_TYPE_SIGNAL). Returns #NULL if none.
2924 * See also dbus_message_get_path_decomposed().
2926 * The returned string becomes invalid if the message is
2927 * modified, since it points into the wire-marshaled message data.
2929 * @param message the message
2930 * @returns the path (should not be freed) or #NULL
2933 dbus_message_get_path (DBusMessage *message)
2937 _dbus_return_val_if_fail (message != NULL, NULL);
2939 v = NULL; /* in case field doesn't exist */
2940 _dbus_header_get_field_basic (&message->header,
2941 DBUS_HEADER_FIELD_PATH,
2942 DBUS_TYPE_OBJECT_PATH,
2948 * Checks if the message has a particular object path. The object
2949 * path is the destination object for a method call or the emitting
2950 * object for a signal.
2952 * @param message the message
2953 * @param path the path name
2954 * @returns #TRUE if there is a path field in the header
2957 dbus_message_has_path (DBusMessage *message,
2960 const char *msg_path;
2961 msg_path = dbus_message_get_path (message);
2963 if (msg_path == NULL)
2974 if (strcmp (msg_path, path) == 0)
2981 * Gets the object path this message is being sent to
2982 * (for DBUS_MESSAGE_TYPE_METHOD_CALL) or being emitted
2983 * from (for DBUS_MESSAGE_TYPE_SIGNAL) in a decomposed
2984 * format (one array element per path component).
2985 * Free the returned array with dbus_free_string_array().
2987 * An empty but non-NULL path array means the path "/".
2988 * So the path "/foo/bar" becomes { "foo", "bar", NULL }
2989 * and the path "/" becomes { NULL }.
2991 * See also dbus_message_get_path().
2993 * @todo this could be optimized by using the len from the message
2994 * instead of calling strlen() again
2996 * @param message the message
2997 * @param path place to store allocated array of path components; #NULL set here if no path field exists
2998 * @returns #FALSE if no memory to allocate the array
3001 dbus_message_get_path_decomposed (DBusMessage *message,
3006 _dbus_return_val_if_fail (message != NULL, FALSE);
3007 _dbus_return_val_if_fail (path != NULL, FALSE);
3011 v = dbus_message_get_path (message);
3014 if (!_dbus_decompose_path (v, strlen (v),
3022 * Sets the interface this message is being sent to
3023 * (for DBUS_MESSAGE_TYPE_METHOD_CALL) or
3024 * the interface a signal is being emitted from
3025 * (for DBUS_MESSAGE_TYPE_SIGNAL).
3027 * The interface name must contain only valid characters as defined
3028 * in the D-Bus specification.
3030 * @param message the message
3031 * @param interface the interface or #NULL to unset
3032 * @returns #FALSE if not enough memory
3035 dbus_message_set_interface (DBusMessage *message,
3036 const char *interface)
3038 _dbus_return_val_if_fail (message != NULL, FALSE);
3039 _dbus_return_val_if_fail (!message->locked, FALSE);
3040 _dbus_return_val_if_fail (interface == NULL ||
3041 _dbus_check_is_valid_interface (interface),
3044 return set_or_delete_string_field (message,
3045 DBUS_HEADER_FIELD_INTERFACE,
3051 * Gets the interface this message is being sent to
3052 * (for DBUS_MESSAGE_TYPE_METHOD_CALL) or being emitted
3053 * from (for DBUS_MESSAGE_TYPE_SIGNAL).
3054 * The interface name is fully-qualified (namespaced).
3055 * Returns #NULL if none.
3057 * The returned string becomes invalid if the message is
3058 * modified, since it points into the wire-marshaled message data.
3060 * @param message the message
3061 * @returns the message interface (should not be freed) or #NULL
3064 dbus_message_get_interface (DBusMessage *message)
3068 _dbus_return_val_if_fail (message != NULL, NULL);
3070 v = NULL; /* in case field doesn't exist */
3071 _dbus_header_get_field_basic (&message->header,
3072 DBUS_HEADER_FIELD_INTERFACE,
3079 * Checks if the message has an interface
3081 * @param message the message
3082 * @param interface the interface name
3083 * @returns #TRUE if the interface field in the header matches
3086 dbus_message_has_interface (DBusMessage *message,
3087 const char *interface)
3089 const char *msg_interface;
3090 msg_interface = dbus_message_get_interface (message);
3092 if (msg_interface == NULL)
3094 if (interface == NULL)
3100 if (interface == NULL)
3103 if (strcmp (msg_interface, interface) == 0)
3111 * Sets the interface member being invoked
3112 * (DBUS_MESSAGE_TYPE_METHOD_CALL) or emitted
3113 * (DBUS_MESSAGE_TYPE_SIGNAL).
3115 * The member name must contain only valid characters as defined
3116 * in the D-Bus specification.
3118 * @param message the message
3119 * @param member the member or #NULL to unset
3120 * @returns #FALSE if not enough memory
3123 dbus_message_set_member (DBusMessage *message,
3126 _dbus_return_val_if_fail (message != NULL, FALSE);
3127 _dbus_return_val_if_fail (!message->locked, FALSE);
3128 _dbus_return_val_if_fail (member == NULL ||
3129 _dbus_check_is_valid_member (member),
3132 return set_or_delete_string_field (message,
3133 DBUS_HEADER_FIELD_MEMBER,
3139 * Gets the interface member being invoked
3140 * (DBUS_MESSAGE_TYPE_METHOD_CALL) or emitted
3141 * (DBUS_MESSAGE_TYPE_SIGNAL). Returns #NULL if none.
3143 * The returned string becomes invalid if the message is
3144 * modified, since it points into the wire-marshaled message data.
3146 * @param message the message
3147 * @returns the member name (should not be freed) or #NULL
3150 dbus_message_get_member (DBusMessage *message)
3154 _dbus_return_val_if_fail (message != NULL, NULL);
3156 v = NULL; /* in case field doesn't exist */
3157 _dbus_header_get_field_basic (&message->header,
3158 DBUS_HEADER_FIELD_MEMBER,
3165 * Checks if the message has an interface member
3167 * @param message the message
3168 * @param member the member name
3169 * @returns #TRUE if there is a member field in the header
3172 dbus_message_has_member (DBusMessage *message,
3175 const char *msg_member;
3176 msg_member = dbus_message_get_member (message);
3178 if (msg_member == NULL)
3189 if (strcmp (msg_member, member) == 0)
3197 * Sets the name of the error (DBUS_MESSAGE_TYPE_ERROR).
3198 * The name is fully-qualified (namespaced).
3200 * The error name must contain only valid characters as defined
3201 * in the D-Bus specification.
3203 * @param message the message
3204 * @param error_name the name or #NULL to unset
3205 * @returns #FALSE if not enough memory
3208 dbus_message_set_error_name (DBusMessage *message,
3209 const char *error_name)
3211 _dbus_return_val_if_fail (message != NULL, FALSE);
3212 _dbus_return_val_if_fail (!message->locked, FALSE);
3213 _dbus_return_val_if_fail (error_name == NULL ||
3214 _dbus_check_is_valid_error_name (error_name),
3217 return set_or_delete_string_field (message,
3218 DBUS_HEADER_FIELD_ERROR_NAME,
3224 * Gets the error name (DBUS_MESSAGE_TYPE_ERROR only)
3227 * The returned string becomes invalid if the message is
3228 * modified, since it points into the wire-marshaled message data.
3230 * @param message the message
3231 * @returns the error name (should not be freed) or #NULL
3234 dbus_message_get_error_name (DBusMessage *message)
3238 _dbus_return_val_if_fail (message != NULL, NULL);
3240 v = NULL; /* in case field doesn't exist */
3241 _dbus_header_get_field_basic (&message->header,
3242 DBUS_HEADER_FIELD_ERROR_NAME,
3249 * Sets the message's destination. The destination is the name of
3250 * another connection on the bus and may be either the unique name
3251 * assigned by the bus to each connection, or a well-known name
3252 * specified in advance.
3254 * The destination name must contain only valid characters as defined
3255 * in the D-Bus specification.
3257 * @param message the message
3258 * @param destination the destination name or #NULL to unset
3259 * @returns #FALSE if not enough memory
3262 dbus_message_set_destination (DBusMessage *message,
3263 const char *destination)
3265 _dbus_return_val_if_fail (message != NULL, FALSE);
3266 _dbus_return_val_if_fail (!message->locked, FALSE);
3267 _dbus_return_val_if_fail (destination == NULL ||
3268 _dbus_check_is_valid_bus_name (destination),
3271 return set_or_delete_string_field (message,
3272 DBUS_HEADER_FIELD_DESTINATION,
3278 * Gets the destination of a message or #NULL if there is none set.
3280 * The returned string becomes invalid if the message is
3281 * modified, since it points into the wire-marshaled message data.
3283 * @param message the message
3284 * @returns the message destination (should not be freed) or #NULL
3287 dbus_message_get_destination (DBusMessage *message)
3291 _dbus_return_val_if_fail (message != NULL, NULL);
3293 v = NULL; /* in case field doesn't exist */
3294 _dbus_header_get_field_basic (&message->header,
3295 DBUS_HEADER_FIELD_DESTINATION,
3302 * Sets the message sender.
3304 * The sender must be a valid bus name as defined in the D-Bus
3307 * Usually you don't want to call this. The message bus daemon will
3308 * call it to set the origin of each message. If you aren't implementing
3309 * a message bus daemon you shouldn't need to set the sender.
3311 * @param message the message
3312 * @param sender the sender or #NULL to unset
3313 * @returns #FALSE if not enough memory
3316 dbus_message_set_sender (DBusMessage *message,
3319 _dbus_return_val_if_fail (message != NULL, FALSE);
3320 _dbus_return_val_if_fail (!message->locked, FALSE);
3321 _dbus_return_val_if_fail (sender == NULL ||
3322 _dbus_check_is_valid_bus_name (sender),
3325 return set_or_delete_string_field (message,
3326 DBUS_HEADER_FIELD_SENDER,
3332 * Gets the unique name of the connection which originated this
3333 * message, or #NULL if unknown or inapplicable. The sender is filled
3334 * in by the message bus.
3336 * Note, the returned sender is always the unique bus name.
3337 * Connections may own multiple other bus names, but those
3338 * are not found in the sender field.
3340 * The returned string becomes invalid if the message is
3341 * modified, since it points into the wire-marshaled message data.
3343 * @param message the message
3344 * @returns the unique name of the sender or #NULL
3347 dbus_message_get_sender (DBusMessage *message)
3351 _dbus_return_val_if_fail (message != NULL, NULL);
3353 v = NULL; /* in case field doesn't exist */
3354 _dbus_header_get_field_basic (&message->header,
3355 DBUS_HEADER_FIELD_SENDER,
3362 * Gets the type signature of the message, i.e. the arguments in the
3363 * message payload. The signature includes only "in" arguments for
3364 * #DBUS_MESSAGE_TYPE_METHOD_CALL and only "out" arguments for
3365 * #DBUS_MESSAGE_TYPE_METHOD_RETURN, so is slightly different from
3366 * what you might expect (that is, it does not include the signature of the
3367 * entire C++-style method).
3369 * The signature is a string made up of type codes such as
3370 * #DBUS_TYPE_INT32. The string is terminated with nul (nul is also
3371 * the value of #DBUS_TYPE_INVALID).
3373 * The returned string becomes invalid if the message is
3374 * modified, since it points into the wire-marshaled message data.
3376 * @param message the message
3377 * @returns the type signature
3380 dbus_message_get_signature (DBusMessage *message)
3382 const DBusString *type_str;
3385 _dbus_return_val_if_fail (message != NULL, NULL);
3387 get_const_signature (&message->header, &type_str, &type_pos);
3389 return _dbus_string_get_const_data_len (type_str, type_pos, 0);
3393 _dbus_message_has_type_interface_member (DBusMessage *message,
3395 const char *interface,
3400 _dbus_assert (message != NULL);
3401 _dbus_assert (interface != NULL);
3402 _dbus_assert (member != NULL);
3404 if (dbus_message_get_type (message) != type)
3407 /* Optimize by checking the short member name first
3408 * instead of the longer interface name
3411 n = dbus_message_get_member (message);
3413 if (n && strcmp (n, member) == 0)
3415 n = dbus_message_get_interface (message);
3417 if (n == NULL || strcmp (n, interface) == 0)
3425 * Checks whether the message is a method call with the given
3426 * interface and member fields. If the message is not
3427 * #DBUS_MESSAGE_TYPE_METHOD_CALL, or has a different interface or
3428 * member field, returns #FALSE. If the interface field is missing,
3429 * then it will be assumed equal to the provided interface. The D-Bus
3430 * protocol allows method callers to leave out the interface name.
3432 * @param message the message
3433 * @param interface the name to check (must not be #NULL)
3434 * @param method the name to check (must not be #NULL)
3436 * @returns #TRUE if the message is the specified method call
3439 dbus_message_is_method_call (DBusMessage *message,
3440 const char *interface,
3443 _dbus_return_val_if_fail (message != NULL, FALSE);
3444 _dbus_return_val_if_fail (interface != NULL, FALSE);
3445 _dbus_return_val_if_fail (method != NULL, FALSE);
3446 /* don't check that interface/method are valid since it would be
3447 * expensive, and not catch many common errors
3450 return _dbus_message_has_type_interface_member (message,
3451 DBUS_MESSAGE_TYPE_METHOD_CALL,
3456 * Checks whether the message is a signal with the given interface and
3457 * member fields. If the message is not #DBUS_MESSAGE_TYPE_SIGNAL, or
3458 * has a different interface or member field, returns #FALSE.
3460 * @param message the message
3461 * @param interface the name to check (must not be #NULL)
3462 * @param signal_name the name to check (must not be #NULL)
3464 * @returns #TRUE if the message is the specified signal
3467 dbus_message_is_signal (DBusMessage *message,
3468 const char *interface,
3469 const char *signal_name)
3471 _dbus_return_val_if_fail (message != NULL, FALSE);
3472 _dbus_return_val_if_fail (interface != NULL, FALSE);
3473 _dbus_return_val_if_fail (signal_name != NULL, FALSE);
3474 /* don't check that interface/name are valid since it would be
3475 * expensive, and not catch many common errors
3478 return _dbus_message_has_type_interface_member (message,
3479 DBUS_MESSAGE_TYPE_SIGNAL,
3480 interface, signal_name);
3484 * Checks whether the message is an error reply with the given error
3485 * name. If the message is not #DBUS_MESSAGE_TYPE_ERROR, or has a
3486 * different name, returns #FALSE.
3488 * @param message the message
3489 * @param error_name the name to check (must not be #NULL)
3491 * @returns #TRUE if the message is the specified error
3494 dbus_message_is_error (DBusMessage *message,
3495 const char *error_name)
3499 _dbus_return_val_if_fail (message != NULL, FALSE);
3500 _dbus_return_val_if_fail (error_name != NULL, FALSE);
3501 /* don't check that error_name is valid since it would be expensive,
3502 * and not catch many common errors
3505 if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_ERROR)
3508 n = dbus_message_get_error_name (message);
3510 if (n && strcmp (n, error_name) == 0)
3517 * Checks whether the message was sent to the given name. If the
3518 * message has no destination specified or has a different
3519 * destination, returns #FALSE.
3521 * @param message the message
3522 * @param name the name to check (must not be #NULL)
3524 * @returns #TRUE if the message has the given destination name
3527 dbus_message_has_destination (DBusMessage *message,
3532 _dbus_return_val_if_fail (message != NULL, FALSE);
3533 _dbus_return_val_if_fail (name != NULL, FALSE);
3534 /* don't check that name is valid since it would be expensive, and
3535 * not catch many common errors
3538 s = dbus_message_get_destination (message);
3540 if (s && strcmp (s, name) == 0)
3547 * Checks whether the message has the given unique name as its sender.
3548 * If the message has no sender specified or has a different sender,
3549 * returns #FALSE. Note that a peer application will always have the
3550 * unique name of the connection as the sender. So you can't use this
3551 * function to see whether a sender owned a well-known name.
3553 * Messages from the bus itself will have #DBUS_SERVICE_DBUS
3556 * @param message the message
3557 * @param name the name to check (must not be #NULL)
3559 * @returns #TRUE if the message has the given sender
3562 dbus_message_has_sender (DBusMessage *message,
3567 _dbus_return_val_if_fail (message != NULL, FALSE);
3568 _dbus_return_val_if_fail (name != NULL, FALSE);
3569 /* don't check that name is valid since it would be expensive, and
3570 * not catch many common errors
3573 s = dbus_message_get_sender (message);
3575 if (s && strcmp (s, name) == 0)
3582 * Checks whether the message has the given signature; see
3583 * dbus_message_get_signature() for more details on what the signature
3586 * @param message the message
3587 * @param signature typecode array
3588 * @returns #TRUE if message has the given signature
3591 dbus_message_has_signature (DBusMessage *message,
3592 const char *signature)
3596 _dbus_return_val_if_fail (message != NULL, FALSE);
3597 _dbus_return_val_if_fail (signature != NULL, FALSE);
3598 /* don't check that signature is valid since it would be expensive,
3599 * and not catch many common errors
3602 s = dbus_message_get_signature (message);
3604 if (s && strcmp (s, signature) == 0)
3611 * Sets a #DBusError based on the contents of the given
3612 * message. The error is only set if the message
3613 * is an error message, as in #DBUS_MESSAGE_TYPE_ERROR.
3614 * The name of the error is set to the name of the message,
3615 * and the error message is set to the first argument
3616 * if the argument exists and is a string.
3618 * The return value indicates whether the error was set (the error is
3619 * set if and only if the message is an error message). So you can
3620 * check for an error reply and convert it to DBusError in one go:
3622 * if (dbus_set_error_from_message (error, reply))
3628 * @param error the error to set
3629 * @param message the message to set it from
3630 * @returns #TRUE if the message had type #DBUS_MESSAGE_TYPE_ERROR
3633 dbus_set_error_from_message (DBusError *error,
3634 DBusMessage *message)
3638 _dbus_return_val_if_fail (message != NULL, FALSE);
3639 _dbus_return_val_if_error_is_set (error, FALSE);
3641 if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_ERROR)
3645 dbus_message_get_args (message, NULL,
3646 DBUS_TYPE_STRING, &str,
3649 dbus_set_error (error, dbus_message_get_error_name (message),
3650 str ? "%s" : NULL, str);
3656 * Checks whether a message contains unix fds
3658 * @param message the message
3659 * @returns #TRUE if the message contains unix fds
3662 dbus_message_contains_unix_fds(DBusMessage *message)
3664 #ifdef HAVE_UNIX_FD_PASSING
3665 _dbus_assert(message);
3667 return message->n_unix_fds > 0;
3676 * @addtogroup DBusMessageInternals
3682 * The initial buffer size of the message loader.
3684 * @todo this should be based on min header size plus some average
3685 * body size, or something. Or rather, the min header size only, if we
3686 * want to try to read only the header, store that in a DBusMessage,
3687 * then read only the body and store that, etc., depends on
3688 * how we optimize _dbus_message_loader_get_buffer() and what
3689 * the exact message format is.
3691 #define INITIAL_LOADER_DATA_LEN 32
3694 * Creates a new message loader. Returns #NULL if memory can't
3697 * @returns new loader, or #NULL.
3700 _dbus_message_loader_new (void)
3702 DBusMessageLoader *loader;
3704 loader = dbus_new0 (DBusMessageLoader, 1);
3708 loader->refcount = 1;
3710 loader->corrupted = FALSE;
3711 loader->corruption_reason = DBUS_VALID;
3713 /* this can be configured by the app, but defaults to the protocol max */
3714 loader->max_message_size = DBUS_MAXIMUM_MESSAGE_LENGTH;
3716 /* We set a very relatively conservative default here since due to how
3717 SCM_RIGHTS works we need to preallocate an fd array of the maximum
3718 number of unix fds we want to receive in advance. A
3719 try-and-reallocate loop is not possible. */
3720 loader->max_message_unix_fds = 1024;
3722 if (!_dbus_string_init (&loader->data))
3728 /* preallocate the buffer for speed, ignore failure */
3729 _dbus_string_set_length (&loader->data, INITIAL_LOADER_DATA_LEN);
3730 _dbus_string_set_length (&loader->data, 0);
3732 #ifdef HAVE_UNIX_FD_PASSING
3733 loader->unix_fds = NULL;
3734 loader->n_unix_fds = loader->n_unix_fds_allocated = 0;
3735 loader->unix_fds_outstanding = FALSE;
3742 * Increments the reference count of the loader.
3744 * @param loader the loader.
3745 * @returns the loader
3748 _dbus_message_loader_ref (DBusMessageLoader *loader)
3750 loader->refcount += 1;
3756 * Decrements the reference count of the loader and finalizes the
3757 * loader when the count reaches zero.
3759 * @param loader the loader.
3762 _dbus_message_loader_unref (DBusMessageLoader *loader)
3764 loader->refcount -= 1;
3765 if (loader->refcount == 0)
3767 #ifdef HAVE_UNIX_FD_PASSING
3768 close_unix_fds(loader->unix_fds, &loader->n_unix_fds);
3769 dbus_free(loader->unix_fds);
3771 _dbus_list_foreach (&loader->messages,
3772 (DBusForeachFunction) dbus_message_unref,
3774 _dbus_list_clear (&loader->messages);
3775 _dbus_string_free (&loader->data);
3781 * Gets the buffer to use for reading data from the network. Network
3782 * data is read directly into an allocated buffer, which is then used
3783 * in the DBusMessage, to avoid as many extra memcpy's as possible.
3784 * The buffer must always be returned immediately using
3785 * _dbus_message_loader_return_buffer(), even if no bytes are
3786 * successfully read.
3788 * @todo this function can be a lot more clever. For example
3789 * it can probably always return a buffer size to read exactly
3790 * the body of the next message, thus avoiding any memory wastage
3793 * @todo we need to enforce a max length on strings in header fields.
3795 * @param loader the message loader.
3796 * @param buffer the buffer
3799 _dbus_message_loader_get_buffer (DBusMessageLoader *loader,
3800 DBusString **buffer)
3802 _dbus_assert (!loader->buffer_outstanding);
3804 *buffer = &loader->data;
3806 loader->buffer_outstanding = TRUE;
3810 * Returns a buffer obtained from _dbus_message_loader_get_buffer(),
3811 * indicating to the loader how many bytes of the buffer were filled
3812 * in. This function must always be called, even if no bytes were
3813 * successfully read.
3815 * @param loader the loader.
3816 * @param buffer the buffer.
3817 * @param bytes_read number of bytes that were read into the buffer.
3820 _dbus_message_loader_return_buffer (DBusMessageLoader *loader,
3824 _dbus_assert (loader->buffer_outstanding);
3825 _dbus_assert (buffer == &loader->data);
3827 loader->buffer_outstanding = FALSE;
3831 * Gets the buffer to use for reading unix fds from the network.
3833 * This works similar to _dbus_message_loader_get_buffer()
3835 * @param loader the message loader.
3836 * @param fds the array to read fds into
3837 * @param max_n_fds how many fds to read at most
3838 * @return TRUE on success, FALSE on OOM
3841 _dbus_message_loader_get_unix_fds(DBusMessageLoader *loader,
3843 unsigned *max_n_fds)
3845 #ifdef HAVE_UNIX_FD_PASSING
3846 _dbus_assert (!loader->unix_fds_outstanding);
3848 /* Allocate space where we can put the fds we read. We allocate
3849 space for max_message_unix_fds since this is an
3850 upper limit how many fds can be received within a single
3851 message. Since SCM_RIGHTS doesn't allow a reallocate+retry logic
3852 we are allocating the maximum possible array size right from the
3853 beginning. This sucks a bit, however unless SCM_RIGHTS is fixed
3854 there is no better way. */
3856 if (loader->n_unix_fds_allocated < loader->max_message_unix_fds)
3858 int *a = dbus_realloc(loader->unix_fds,
3859 loader->max_message_unix_fds * sizeof(loader->unix_fds[0]));
3864 loader->unix_fds = a;
3865 loader->n_unix_fds_allocated = loader->max_message_unix_fds;
3868 *fds = loader->unix_fds + loader->n_unix_fds;
3869 *max_n_fds = loader->n_unix_fds_allocated - loader->n_unix_fds;
3871 loader->unix_fds_outstanding = TRUE;
3874 _dbus_assert_not_reached("Platform doesn't support unix fd passing");
3880 * Returns a buffer obtained from _dbus_message_loader_get_unix_fds().
3882 * This works similar to _dbus_message_loader_return_buffer()
3884 * @param loader the message loader.
3885 * @param fds the array fds were read into
3886 * @param max_n_fds how many fds were read
3890 _dbus_message_loader_return_unix_fds(DBusMessageLoader *loader,
3894 #ifdef HAVE_UNIX_FD_PASSING
3895 _dbus_assert(loader->unix_fds_outstanding);
3896 _dbus_assert(loader->unix_fds + loader->n_unix_fds == fds);
3897 _dbus_assert(loader->n_unix_fds + n_fds <= loader->n_unix_fds_allocated);
3899 loader->n_unix_fds += n_fds;
3900 loader->unix_fds_outstanding = FALSE;
3902 _dbus_assert_not_reached("Platform doesn't support unix fd passing");
3907 * FIXME when we move the header out of the buffer, that memmoves all
3908 * buffered messages. Kind of crappy.
3910 * Also we copy the header and body, which is kind of crappy. To
3911 * avoid this, we have to allow header and body to be in a single
3912 * memory block, which is good for messages we read and bad for
3913 * messages we are creating. But we could move_len() the buffer into
3914 * this single memory block, and move_len() will just swap the buffers
3915 * if you're moving the entire buffer replacing the dest string.
3917 * We could also have the message loader tell the transport how many
3918 * bytes to read; so it would first ask for some arbitrary number like
3919 * 256, then if the message was incomplete it would use the
3920 * header/body len to ask for exactly the size of the message (or
3921 * blocks the size of a typical kernel buffer for the socket). That
3922 * way we don't get trailing bytes in the buffer that have to be
3923 * memmoved. Though I suppose we also don't have a chance of reading a
3924 * bunch of small messages at once, so the optimization may be stupid.
3926 * Another approach would be to keep a "start" index into
3927 * loader->data and only delete it occasionally, instead of after
3928 * each message is loaded.
3930 * load_message() returns FALSE if not enough memory OR the loader was corrupted
3933 load_message (DBusMessageLoader *loader,
3934 DBusMessage *message,
3936 int fields_array_len,
3941 DBusValidity validity;
3942 const DBusString *type_str;
3944 DBusValidationMode mode;
3945 dbus_uint32_t n_unix_fds = 0;
3947 mode = DBUS_VALIDATION_MODE_DATA_IS_UNTRUSTED;
3952 _dbus_verbose_bytes_of_string (&loader->data, 0, header_len /* + body_len */);
3955 /* 1. VALIDATE AND COPY OVER HEADER */
3956 _dbus_assert (_dbus_string_get_length (&message->header.data) == 0);
3957 _dbus_assert ((header_len + body_len) <= _dbus_string_get_length (&loader->data));
3959 if (!_dbus_header_load (&message->header,
3967 _dbus_string_get_length (&loader->data)))
3969 _dbus_verbose ("Failed to load header for new message code %d\n", validity);
3971 /* assert here so we can catch any code that still uses DBUS_VALID to indicate
3972 oom errors. They should use DBUS_VALIDITY_UNKNOWN_OOM_ERROR instead */
3973 _dbus_assert (validity != DBUS_VALID);
3975 if (validity == DBUS_VALIDITY_UNKNOWN_OOM_ERROR)
3979 loader->corrupted = TRUE;
3980 loader->corruption_reason = validity;
3985 _dbus_assert (validity == DBUS_VALID);
3987 message->byte_order = byte_order;
3989 /* 2. VALIDATE BODY */
3990 if (mode != DBUS_VALIDATION_MODE_WE_TRUST_THIS_DATA_ABSOLUTELY)
3992 get_const_signature (&message->header, &type_str, &type_pos);
3994 /* Because the bytes_remaining arg is NULL, this validates that the
3995 * body is the right length
3997 validity = _dbus_validate_body_with_reason (type_str,
4004 if (validity != DBUS_VALID)
4006 _dbus_verbose ("Failed to validate message body code %d\n", validity);
4008 loader->corrupted = TRUE;
4009 loader->corruption_reason = validity;
4015 /* 3. COPY OVER UNIX FDS */
4016 _dbus_header_get_field_basic(&message->header,
4017 DBUS_HEADER_FIELD_UNIX_FDS,
4021 #ifdef HAVE_UNIX_FD_PASSING
4023 if (n_unix_fds > loader->n_unix_fds)
4025 _dbus_verbose("Message contains references to more unix fds than were sent %u != %u\n",
4026 n_unix_fds, loader->n_unix_fds);
4028 loader->corrupted = TRUE;
4029 loader->corruption_reason = DBUS_INVALID_MISSING_UNIX_FDS;
4033 /* If this was a recycled message there might still be
4034 some memory allocated for the fds */
4035 dbus_free(message->unix_fds);
4039 message->unix_fds = _dbus_memdup(loader->unix_fds, n_unix_fds * sizeof(message->unix_fds[0]));
4040 if (message->unix_fds == NULL)
4042 _dbus_verbose ("Failed to allocate file descriptor array\n");
4047 message->n_unix_fds_allocated = message->n_unix_fds = n_unix_fds;
4048 loader->n_unix_fds -= n_unix_fds;
4049 memmove(loader->unix_fds + n_unix_fds, loader->unix_fds, loader->n_unix_fds);
4052 message->unix_fds = NULL;
4058 _dbus_verbose ("Hmm, message claims to come with file descriptors "
4059 "but that's not supported on our platform, disconnecting.\n");
4061 loader->corrupted = TRUE;
4062 loader->corruption_reason = DBUS_INVALID_MISSING_UNIX_FDS;
4068 /* 3. COPY OVER BODY AND QUEUE MESSAGE */
4070 if (!_dbus_list_append (&loader->messages, message))
4072 _dbus_verbose ("Failed to append new message to loader queue\n");
4077 _dbus_assert (_dbus_string_get_length (&message->body) == 0);
4078 _dbus_assert (_dbus_string_get_length (&loader->data) >=
4079 (header_len + body_len));
4081 if (!_dbus_string_copy_len (&loader->data, header_len, body_len, &message->body, 0))
4083 _dbus_verbose ("Failed to move body into new message\n");
4088 _dbus_string_delete (&loader->data, 0, header_len + body_len);
4090 /* don't waste more than 2k of memory */
4091 _dbus_string_compact (&loader->data, 2048);
4093 _dbus_assert (_dbus_string_get_length (&message->header.data) == header_len);
4094 _dbus_assert (_dbus_string_get_length (&message->body) == body_len);
4096 _dbus_verbose ("Loaded message %p\n", message);
4098 _dbus_assert (!oom);
4099 _dbus_assert (!loader->corrupted);
4100 _dbus_assert (loader->messages != NULL);
4101 _dbus_assert (_dbus_list_find_last (&loader->messages, message) != NULL);
4109 /* does nothing if the message isn't in the list */
4110 _dbus_list_remove_last (&loader->messages, message);
4113 _dbus_assert (!loader->corrupted);
4115 _dbus_assert (loader->corrupted);
4117 _dbus_verbose_bytes_of_string (&loader->data, 0, _dbus_string_get_length (&loader->data));
4123 * Converts buffered data into messages, if we have enough data. If
4124 * we don't have enough data, does nothing.
4126 * @todo we need to check that the proper named header fields exist
4127 * for each message type.
4129 * @todo If a message has unknown type, we should probably eat it
4130 * right here rather than passing it out to applications. However
4131 * it's not an error to see messages of unknown type.
4133 * @param loader the loader.
4134 * @returns #TRUE if we had enough memory to finish.
4137 _dbus_message_loader_queue_messages (DBusMessageLoader *loader)
4139 while (!loader->corrupted &&
4140 _dbus_string_get_length (&loader->data) >= DBUS_MINIMUM_HEADER_SIZE)
4142 DBusValidity validity;
4143 int byte_order, fields_array_len, header_len, body_len;
4145 if (_dbus_header_have_message_untrusted (loader->max_message_size,
4152 _dbus_string_get_length (&loader->data)))
4154 DBusMessage *message;
4156 _dbus_assert (validity == DBUS_VALID);
4158 message = dbus_message_new_empty_header ();
4159 if (message == NULL)
4162 if (!load_message (loader, message,
4163 byte_order, fields_array_len,
4164 header_len, body_len))
4166 dbus_message_unref (message);
4167 /* load_message() returns false if corrupted or OOM; if
4168 * corrupted then return TRUE for not OOM
4170 return loader->corrupted;
4173 _dbus_assert (loader->messages != NULL);
4174 _dbus_assert (_dbus_list_find_last (&loader->messages, message) != NULL);
4178 _dbus_verbose ("Initial peek at header says we don't have a whole message yet, or data broken with invalid code %d\n",
4180 if (validity != DBUS_VALID)
4182 loader->corrupted = TRUE;
4183 loader->corruption_reason = validity;
4193 * Peeks at first loaded message, returns #NULL if no messages have
4196 * @param loader the loader.
4197 * @returns the next message, or #NULL if none.
4200 _dbus_message_loader_peek_message (DBusMessageLoader *loader)
4202 if (loader->messages)
4203 return loader->messages->data;
4209 * Pops a loaded message (passing ownership of the message
4210 * to the caller). Returns #NULL if no messages have been
4213 * @param loader the loader.
4214 * @returns the next message, or #NULL if none.
4217 _dbus_message_loader_pop_message (DBusMessageLoader *loader)
4219 return _dbus_list_pop_first (&loader->messages);
4223 * Pops a loaded message inside a list link (passing ownership of the
4224 * message and link to the caller). Returns #NULL if no messages have
4227 * @param loader the loader.
4228 * @returns the next message link, or #NULL if none.
4231 _dbus_message_loader_pop_message_link (DBusMessageLoader *loader)
4233 return _dbus_list_pop_first_link (&loader->messages);
4237 * Returns a popped message link, used to undo a pop.
4239 * @param loader the loader
4240 * @param link the link with a message in it
4243 _dbus_message_loader_putback_message_link (DBusMessageLoader *loader,
4246 _dbus_list_prepend_link (&loader->messages, link);
4250 * Checks whether the loader is confused due to bad data.
4251 * If messages are received that are invalid, the
4252 * loader gets confused and gives up permanently.
4253 * This state is called "corrupted."
4255 * @param loader the loader
4256 * @returns #TRUE if the loader is hosed.
4259 _dbus_message_loader_get_is_corrupted (DBusMessageLoader *loader)
4261 _dbus_assert ((loader->corrupted && loader->corruption_reason != DBUS_VALID) ||
4262 (!loader->corrupted && loader->corruption_reason == DBUS_VALID));
4263 return loader->corrupted;
4267 * Checks what kind of bad data confused the loader.
4269 * @param loader the loader
4270 * @returns why the loader is hosed, or DBUS_VALID if it isn't.
4273 _dbus_message_loader_get_corruption_reason (DBusMessageLoader *loader)
4275 _dbus_assert ((loader->corrupted && loader->corruption_reason != DBUS_VALID) ||
4276 (!loader->corrupted && loader->corruption_reason == DBUS_VALID));
4278 return loader->corruption_reason;
4282 * Sets the maximum size message we allow.
4284 * @param loader the loader
4285 * @param size the max message size in bytes
4288 _dbus_message_loader_set_max_message_size (DBusMessageLoader *loader,
4291 if (size > DBUS_MAXIMUM_MESSAGE_LENGTH)
4293 _dbus_verbose ("clamping requested max message size %ld to %d\n",
4294 size, DBUS_MAXIMUM_MESSAGE_LENGTH);
4295 size = DBUS_MAXIMUM_MESSAGE_LENGTH;
4297 loader->max_message_size = size;
4301 * Gets the maximum allowed message size in bytes.
4303 * @param loader the loader
4304 * @returns max size in bytes
4307 _dbus_message_loader_get_max_message_size (DBusMessageLoader *loader)
4309 return loader->max_message_size;
4313 * Sets the maximum unix fds per message we allow.
4315 * @param loader the loader
4316 * @param size the max number of unix fds in a message
4319 _dbus_message_loader_set_max_message_unix_fds (DBusMessageLoader *loader,
4322 if (n > DBUS_MAXIMUM_MESSAGE_UNIX_FDS)
4324 _dbus_verbose ("clamping requested max message unix_fds %ld to %d\n",
4325 n, DBUS_MAXIMUM_MESSAGE_UNIX_FDS);
4326 n = DBUS_MAXIMUM_MESSAGE_UNIX_FDS;
4328 loader->max_message_unix_fds = n;
4332 * Gets the maximum allowed number of unix fds per message
4334 * @param loader the loader
4335 * @returns max unix fds
4338 _dbus_message_loader_get_max_message_unix_fds (DBusMessageLoader *loader)
4340 return loader->max_message_unix_fds;
4343 static DBusDataSlotAllocator slot_allocator;
4344 _DBUS_DEFINE_GLOBAL_LOCK (message_slots);
4347 * Allocates an integer ID to be used for storing application-specific
4348 * data on any DBusMessage. The allocated ID may then be used
4349 * with dbus_message_set_data() and dbus_message_get_data().
4350 * The passed-in slot must be initialized to -1, and is filled in
4351 * with the slot ID. If the passed-in slot is not -1, it's assumed
4352 * to be already allocated, and its refcount is incremented.
4354 * The allocated slot is global, i.e. all DBusMessage objects will
4355 * have a slot with the given integer ID reserved.
4357 * @param slot_p address of a global variable storing the slot
4358 * @returns #FALSE on failure (no memory)
4361 dbus_message_allocate_data_slot (dbus_int32_t *slot_p)
4363 return _dbus_data_slot_allocator_alloc (&slot_allocator,
4364 &_DBUS_LOCK_NAME (message_slots),
4369 * Deallocates a global ID for message data slots.
4370 * dbus_message_get_data() and dbus_message_set_data() may no
4371 * longer be used with this slot. Existing data stored on existing
4372 * DBusMessage objects will be freed when the message is
4373 * finalized, but may not be retrieved (and may only be replaced if
4374 * someone else reallocates the slot). When the refcount on the
4375 * passed-in slot reaches 0, it is set to -1.
4377 * @param slot_p address storing the slot to deallocate
4380 dbus_message_free_data_slot (dbus_int32_t *slot_p)
4382 _dbus_return_if_fail (*slot_p >= 0);
4384 _dbus_data_slot_allocator_free (&slot_allocator, slot_p);
4388 * Stores a pointer on a DBusMessage, along
4389 * with an optional function to be used for freeing
4390 * the data when the data is set again, or when
4391 * the message is finalized. The slot number
4392 * must have been allocated with dbus_message_allocate_data_slot().
4394 * @param message the message
4395 * @param slot the slot number
4396 * @param data the data to store
4397 * @param free_data_func finalizer function for the data
4398 * @returns #TRUE if there was enough memory to store the data
4401 dbus_message_set_data (DBusMessage *message,
4404 DBusFreeFunction free_data_func)
4406 DBusFreeFunction old_free_func;
4410 _dbus_return_val_if_fail (message != NULL, FALSE);
4411 _dbus_return_val_if_fail (slot >= 0, FALSE);
4413 retval = _dbus_data_slot_list_set (&slot_allocator,
4414 &message->slot_list,
4415 slot, data, free_data_func,
4416 &old_free_func, &old_data);
4420 /* Do the actual free outside the message lock */
4422 (* old_free_func) (old_data);
4429 * Retrieves data previously set with dbus_message_set_data().
4430 * The slot must still be allocated (must not have been freed).
4432 * @param message the message
4433 * @param slot the slot to get data from
4434 * @returns the data, or #NULL if not found
4437 dbus_message_get_data (DBusMessage *message,
4442 _dbus_return_val_if_fail (message != NULL, NULL);
4444 res = _dbus_data_slot_list_get (&slot_allocator,
4445 &message->slot_list,
4452 * Utility function to convert a machine-readable (not translated)
4453 * string into a D-Bus message type.
4456 * "method_call" -> DBUS_MESSAGE_TYPE_METHOD_CALL
4457 * "method_return" -> DBUS_MESSAGE_TYPE_METHOD_RETURN
4458 * "signal" -> DBUS_MESSAGE_TYPE_SIGNAL
4459 * "error" -> DBUS_MESSAGE_TYPE_ERROR
4460 * anything else -> DBUS_MESSAGE_TYPE_INVALID
4465 dbus_message_type_from_string (const char *type_str)
4467 if (strcmp (type_str, "method_call") == 0)
4468 return DBUS_MESSAGE_TYPE_METHOD_CALL;
4469 if (strcmp (type_str, "method_return") == 0)
4470 return DBUS_MESSAGE_TYPE_METHOD_RETURN;
4471 else if (strcmp (type_str, "signal") == 0)
4472 return DBUS_MESSAGE_TYPE_SIGNAL;
4473 else if (strcmp (type_str, "error") == 0)
4474 return DBUS_MESSAGE_TYPE_ERROR;
4476 return DBUS_MESSAGE_TYPE_INVALID;
4480 * Utility function to convert a D-Bus message type into a
4481 * machine-readable string (not translated).
4484 * DBUS_MESSAGE_TYPE_METHOD_CALL -> "method_call"
4485 * DBUS_MESSAGE_TYPE_METHOD_RETURN -> "method_return"
4486 * DBUS_MESSAGE_TYPE_SIGNAL -> "signal"
4487 * DBUS_MESSAGE_TYPE_ERROR -> "error"
4488 * DBUS_MESSAGE_TYPE_INVALID -> "invalid"
4493 dbus_message_type_to_string (int type)
4497 case DBUS_MESSAGE_TYPE_METHOD_CALL:
4498 return "method_call";
4499 case DBUS_MESSAGE_TYPE_METHOD_RETURN:
4500 return "method_return";
4501 case DBUS_MESSAGE_TYPE_SIGNAL:
4503 case DBUS_MESSAGE_TYPE_ERROR:
4511 * Turn a DBusMessage into the marshalled form as described in the D-Bus
4514 * Generally, this function is only useful for encapsulating D-Bus messages in
4515 * a different protocol.
4517 * @param msg the DBusMessage
4518 * @param marshalled_data_p the location to save the marshalled form to
4519 * @param len_p the location to save the length of the marshalled form to
4520 * @returns #FALSE if there was not enough memory
4523 dbus_message_marshal (DBusMessage *msg,
4524 char **marshalled_data_p,
4528 dbus_bool_t was_locked;
4530 _dbus_return_val_if_fail (msg != NULL, FALSE);
4531 _dbus_return_val_if_fail (marshalled_data_p != NULL, FALSE);
4532 _dbus_return_val_if_fail (len_p != NULL, FALSE);
4534 if (!_dbus_string_init (&tmp))
4537 /* Ensure the message is locked, to ensure the length header is filled in. */
4538 was_locked = msg->locked;
4541 dbus_message_lock (msg);
4543 if (!_dbus_string_copy (&(msg->header.data), 0, &tmp, 0))
4546 *len_p = _dbus_string_get_length (&tmp);
4548 if (!_dbus_string_copy (&(msg->body), 0, &tmp, *len_p))
4551 *len_p = _dbus_string_get_length (&tmp);
4553 if (!_dbus_string_steal_data (&tmp, marshalled_data_p))
4556 _dbus_string_free (&tmp);
4559 msg->locked = FALSE;
4564 _dbus_string_free (&tmp);
4567 msg->locked = FALSE;
4573 * Demarshal a D-Bus message from the format described in the D-Bus
4576 * Generally, this function is only useful for encapsulating D-Bus messages in
4577 * a different protocol.
4579 * @param str the marshalled DBusMessage
4580 * @param len the length of str
4581 * @param error the location to save errors to
4582 * @returns #NULL if there was an error
4585 dbus_message_demarshal (const char *str,
4589 DBusMessageLoader *loader;
4593 _dbus_return_val_if_fail (str != NULL, NULL);
4595 loader = _dbus_message_loader_new ();
4600 _dbus_message_loader_get_buffer (loader, &buffer);
4601 _dbus_string_append_len (buffer, str, len);
4602 _dbus_message_loader_return_buffer (loader, buffer, len);
4604 if (!_dbus_message_loader_queue_messages (loader))
4607 if (_dbus_message_loader_get_is_corrupted (loader))
4610 msg = _dbus_message_loader_pop_message (loader);
4615 _dbus_message_loader_unref (loader);
4619 dbus_set_error (error, DBUS_ERROR_INVALID_ARGS, "Message is corrupted (%s)",
4620 _dbus_validity_to_error_message (loader->corruption_reason));
4621 _dbus_message_loader_unref (loader);
4625 _DBUS_SET_OOM (error);
4626 _dbus_message_loader_unref (loader);
4631 * Returns the number of bytes required to be in the buffer to demarshal a
4634 * Generally, this function is only useful for encapsulating D-Bus messages in
4635 * a different protocol.
4637 * @param str data to be marshalled
4638 * @param len the length of str
4639 * @param error the location to save errors to
4640 * @returns -1 if there was no valid data to be demarshalled, 0 if there wasn't enough data to determine how much should be demarshalled. Otherwise returns the number of bytes to be demarshalled
4644 dbus_message_demarshal_bytes_needed(const char *buf,
4648 int byte_order, fields_array_len, header_len, body_len;
4649 DBusValidity validity = DBUS_VALID;
4652 if (!buf || len < DBUS_MINIMUM_HEADER_SIZE)
4655 if (len > DBUS_MAXIMUM_MESSAGE_LENGTH)
4656 len = DBUS_MAXIMUM_MESSAGE_LENGTH;
4657 _dbus_string_init_const_len (&str, buf, len);
4659 validity = DBUS_VALID;
4661 = _dbus_header_have_message_untrusted(DBUS_MAXIMUM_MESSAGE_LENGTH,
4662 &validity, &byte_order,
4668 _dbus_string_free (&str);
4670 if (validity == DBUS_VALID)
4672 _dbus_assert(have_message);
4673 return header_len + body_len;
4677 return -1; /* broken! */
4683 /* tests in dbus-message-util.c */