46a30b6f85e4f6e8aedb366427b63c0dc0bd61e2
[platform/upstream/dbus.git] / dbus / dbus-message.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-message.c  DBusMessage object
3  *
4  * Copyright (C) 2002, 2003, 2004, 2005  Red Hat Inc.
5  * Copyright (C) 2002, 2003  CodeFactory AB
6  *
7  * Licensed under the Academic Free License version 2.1
8  *
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.
13  *
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.
18  *
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  *
23  */
24
25 #include "dbus-internals.h"
26 #include "dbus-marshal-recursive.h"
27 #include "dbus-marshal-validate.h"
28 #include "dbus-marshal-byteswap.h"
29 #include "dbus-marshal-header.h"
30 #include "dbus-message-private.h"
31 #include "dbus-object-tree.h"
32 #include "dbus-memory.h"
33 #include "dbus-list.h"
34 #include <string.h>
35
36 /**
37  * @defgroup DBusMessageInternals DBusMessage implementation details
38  * @ingroup DBusInternals
39  * @brief DBusMessage private implementation details.
40  *
41  * The guts of DBusMessage and its methods.
42  *
43  * @{
44  */
45
46 /* Not thread locked, but strictly const/read-only so should be OK
47  */
48 /** An static string representing an empty signature */
49 _DBUS_STRING_DEFINE_STATIC(_dbus_empty_signature_str,  "");
50
51 /* these have wacky values to help trap uninitialized iterators;
52  * but has to fit in 3 bits
53  */
54 enum {
55   DBUS_MESSAGE_ITER_TYPE_READER = 3,
56   DBUS_MESSAGE_ITER_TYPE_WRITER = 7
57 };
58
59 /** typedef for internals of message iterator */
60 typedef struct DBusMessageRealIter DBusMessageRealIter;
61
62 /**
63  * @brief Internals of DBusMessageIter
64  *
65  * Object representing a position in a message. All fields are internal.
66  */
67 struct DBusMessageRealIter
68 {
69   DBusMessage *message; /**< Message used */
70   dbus_uint32_t changed_stamp : CHANGED_STAMP_BITS; /**< stamp to detect invalid iters */
71   dbus_uint32_t iter_type : 3;      /**< whether this is a reader or writer iter */
72   dbus_uint32_t sig_refcount : 8;   /**< depth of open_signature() */
73   union
74   {
75     DBusTypeWriter writer; /**< writer */
76     DBusTypeReader reader; /**< reader */
77   } u; /**< the type writer or reader that does all the work */
78 };
79
80 static void
81 get_const_signature (DBusHeader        *header,
82                      const DBusString **type_str_p,
83                      int               *type_pos_p)
84 {
85   if (_dbus_header_get_field_raw (header,
86                                   DBUS_HEADER_FIELD_SIGNATURE,
87                                   type_str_p,
88                                   type_pos_p))
89     {
90       *type_pos_p += 1; /* skip the signature length which is 1 byte */
91     }
92   else
93     {
94       *type_str_p = &_dbus_empty_signature_str;
95       *type_pos_p = 0;
96     }
97 }
98
99 /**
100  * Swaps the message to compiler byte order if required
101  *
102  * @param message the message
103  */
104 static void
105 _dbus_message_byteswap (DBusMessage *message)
106 {
107   const DBusString *type_str;
108   int type_pos;
109   
110   if (message->byte_order == DBUS_COMPILER_BYTE_ORDER)
111     return;
112
113   _dbus_verbose ("Swapping message into compiler byte order\n");
114   
115   get_const_signature (&message->header, &type_str, &type_pos);
116   
117   _dbus_marshal_byteswap (type_str, type_pos,
118                           message->byte_order,
119                           DBUS_COMPILER_BYTE_ORDER,
120                           &message->body, 0);
121
122   message->byte_order = DBUS_COMPILER_BYTE_ORDER;
123   
124   _dbus_header_byteswap (&message->header, DBUS_COMPILER_BYTE_ORDER);
125 }
126
127 #define ensure_byte_order(message)                      \
128  if (message->byte_order != DBUS_COMPILER_BYTE_ORDER)   \
129    _dbus_message_byteswap (message)
130
131 /**
132  * Gets the data to be sent over the network for this message.
133  * The header and then the body should be written out.
134  * This function is guaranteed to always return the same
135  * data once a message is locked (with _dbus_message_lock()).
136  *
137  * @param message the message.
138  * @param header return location for message header data.
139  * @param body return location for message body data.
140  */
141 void
142 _dbus_message_get_network_data (DBusMessage          *message,
143                                 const DBusString    **header,
144                                 const DBusString    **body)
145 {
146   _dbus_assert (message->locked);
147
148   *header = &message->header.data;
149   *body = &message->body;
150 }
151
152 /**
153  * Sets the serial number of a message.
154  * This can only be done once on a message.
155  *
156  * @param message the message
157  * @param serial the serial
158  */
159 void
160 _dbus_message_set_serial (DBusMessage   *message,
161                           dbus_uint32_t  serial)
162 {
163   _dbus_assert (message != NULL);
164   _dbus_assert (!message->locked);
165   _dbus_assert (dbus_message_get_serial (message) == 0);
166
167   _dbus_header_set_serial (&message->header, serial);
168 }
169
170 /**
171  * Adds a counter to be incremented immediately with the
172  * size of this message, and decremented by the size
173  * of this message when this message if finalized.
174  * The link contains a counter with its refcount already
175  * incremented, but the counter itself not incremented.
176  * Ownership of link and counter refcount is passed to
177  * the message.
178  *
179  * @param message the message
180  * @param link link with counter as data
181  */
182 void
183 _dbus_message_add_size_counter_link (DBusMessage  *message,
184                                      DBusList     *link)
185 {
186   /* right now we don't recompute the delta when message
187    * size changes, and that's OK for current purposes
188    * I think, but could be important to change later.
189    * Do recompute it whenever there are no outstanding counters,
190    * since it's basically free.
191    */
192   if (message->size_counters == NULL)
193     {
194       message->size_counter_delta =
195         _dbus_string_get_length (&message->header.data) +
196         _dbus_string_get_length (&message->body);
197
198 #if 0
199       _dbus_verbose ("message has size %ld\n",
200                      message->size_counter_delta);
201 #endif
202     }
203
204   _dbus_list_append_link (&message->size_counters, link);
205
206   _dbus_counter_adjust (link->data, message->size_counter_delta);
207 }
208
209 /**
210  * Adds a counter to be incremented immediately with the
211  * size of this message, and decremented by the size
212  * of this message when this message if finalized.
213  *
214  * @param message the message
215  * @param counter the counter
216  * @returns #FALSE if no memory
217  */
218 dbus_bool_t
219 _dbus_message_add_size_counter (DBusMessage *message,
220                                 DBusCounter *counter)
221 {
222   DBusList *link;
223
224   link = _dbus_list_alloc_link (counter);
225   if (link == NULL)
226     return FALSE;
227
228   _dbus_counter_ref (counter);
229   _dbus_message_add_size_counter_link (message, link);
230
231   return TRUE;
232 }
233
234 /**
235  * Removes a counter tracking the size of this message, and decrements
236  * the counter by the size of this message.
237  *
238  * @param message the message
239  * @param link_return return the link used
240  * @param counter the counter
241  */
242 void
243 _dbus_message_remove_size_counter (DBusMessage  *message,
244                                    DBusCounter  *counter,
245                                    DBusList    **link_return)
246 {
247   DBusList *link;
248
249   link = _dbus_list_find_last (&message->size_counters,
250                                counter);
251   _dbus_assert (link != NULL);
252
253   _dbus_list_unlink (&message->size_counters,
254                      link);
255   if (link_return)
256     *link_return = link;
257   else
258     _dbus_list_free_link (link);
259
260   _dbus_counter_adjust (counter, - message->size_counter_delta);
261
262   _dbus_counter_unref (counter);
263 }
264
265 /**
266  * Locks a message. Allows checking that applications don't keep a
267  * reference to a message in the outgoing queue and change it
268  * underneath us. Messages are locked when they enter the outgoing
269  * queue (dbus_connection_send_message()), and the library complains
270  * if the message is modified while locked.
271  *
272  * @param message the message to lock.
273  */
274 void
275 _dbus_message_lock (DBusMessage  *message)
276 {
277   if (!message->locked)
278     {
279       _dbus_header_update_lengths (&message->header,
280                                    _dbus_string_get_length (&message->body));
281
282       /* must have a signature if you have a body */
283       _dbus_assert (_dbus_string_get_length (&message->body) == 0 ||
284                     dbus_message_get_signature (message) != NULL);
285
286       message->locked = TRUE;
287     }
288 }
289
290 static dbus_bool_t
291 set_or_delete_string_field (DBusMessage *message,
292                             int          field,
293                             int          typecode,
294                             const char  *value)
295 {
296   if (value == NULL)
297     return _dbus_header_delete_field (&message->header, field);
298   else
299     return _dbus_header_set_field_basic (&message->header,
300                                          field,
301                                          typecode,
302                                          &value);
303 }
304
305 #if 0
306 /* Probably we don't need to use this */
307 /**
308  * Sets the signature of the message, i.e. the arguments in the
309  * message payload. The signature includes only "in" arguments for
310  * #DBUS_MESSAGE_TYPE_METHOD_CALL and only "out" arguments for
311  * #DBUS_MESSAGE_TYPE_METHOD_RETURN, so is slightly different from
312  * what you might expect (it does not include the signature of the
313  * entire C++-style method).
314  *
315  * The signature is a string made up of type codes such as
316  * #DBUS_TYPE_INT32. The string is terminated with nul (nul is also
317  * the value of #DBUS_TYPE_INVALID). The macros such as
318  * #DBUS_TYPE_INT32 evaluate to integers; to assemble a signature you
319  * may find it useful to use the string forms, such as
320  * #DBUS_TYPE_INT32_AS_STRING.
321  *
322  * An "unset" or #NULL signature is considered the same as an empty
323  * signature. In fact dbus_message_get_signature() will never return
324  * #NULL.
325  *
326  * @param message the message
327  * @param signature the type signature or #NULL to unset
328  * @returns #FALSE if no memory
329  */
330 static dbus_bool_t
331 _dbus_message_set_signature (DBusMessage *message,
332                              const char  *signature)
333 {
334   _dbus_return_val_if_fail (message != NULL, FALSE);
335   _dbus_return_val_if_fail (!message->locked, FALSE);
336   _dbus_return_val_if_fail (signature == NULL ||
337                             _dbus_check_is_valid_signature (signature));
338   /* can't delete the signature if you have a message body */
339   _dbus_return_val_if_fail (_dbus_string_get_length (&message->body) == 0 ||
340                             signature != NULL);
341
342   return set_or_delete_string_field (message,
343                                      DBUS_HEADER_FIELD_SIGNATURE,
344                                      DBUS_TYPE_SIGNATURE,
345                                      signature);
346 }
347 #endif
348
349 /** @} */
350
351 /**
352  * @defgroup DBusMessage DBusMessage
353  * @ingroup  DBus
354  * @brief Message to be sent or received over a DBusConnection.
355  *
356  * A DBusMessage is the most basic unit of communication over a
357  * DBusConnection. A DBusConnection represents a stream of messages
358  * received from a remote application, and a stream of messages
359  * sent to a remote application.
360  *
361  * @{
362  */
363
364 /**
365  * @typedef DBusMessage
366  *
367  * Opaque data type representing a message received from or to be
368  * sent to another application.
369  */
370
371 /**
372  * Returns the serial of a message or 0 if none has been specified.
373  * The message's serial number is provided by the application sending
374  * the message and is used to identify replies to this message.  All
375  * messages received on a connection will have a serial, but messages
376  * you haven't sent yet may return 0.
377  *
378  * @param message the message
379  * @returns the client serial
380  */
381 dbus_uint32_t
382 dbus_message_get_serial (DBusMessage *message)
383 {
384   _dbus_return_val_if_fail (message != NULL, 0);
385
386   return _dbus_header_get_serial (&message->header);
387 }
388
389 /**
390  * Sets the reply serial of a message (the client serial
391  * of the message this is a reply to).
392  *
393  * @param message the message
394  * @param reply_serial the client serial
395  * @returns #FALSE if not enough memory
396  */
397 dbus_bool_t
398 dbus_message_set_reply_serial (DBusMessage   *message,
399                                dbus_uint32_t  reply_serial)
400 {
401   _dbus_return_val_if_fail (message != NULL, FALSE);
402   _dbus_return_val_if_fail (!message->locked, FALSE);
403
404   return _dbus_header_set_field_basic (&message->header,
405                                        DBUS_HEADER_FIELD_REPLY_SERIAL,
406                                        DBUS_TYPE_UINT32,
407                                        &reply_serial);
408 }
409
410 /**
411  * Returns the serial that the message is a reply to or 0 if none.
412  *
413  * @param message the message
414  * @returns the reply serial
415  */
416 dbus_uint32_t
417 dbus_message_get_reply_serial  (DBusMessage *message)
418 {
419   dbus_uint32_t v_UINT32;
420
421   _dbus_return_val_if_fail (message != NULL, 0);
422
423   if (_dbus_header_get_field_basic (&message->header,
424                                     DBUS_HEADER_FIELD_REPLY_SERIAL,
425                                     DBUS_TYPE_UINT32,
426                                     &v_UINT32))
427     return v_UINT32;
428   else
429     return 0;
430 }
431
432 static void
433 free_size_counter (void *element,
434                    void *data)
435 {
436   DBusCounter *counter = element;
437   DBusMessage *message = data;
438
439   _dbus_counter_adjust (counter, - message->size_counter_delta);
440
441   _dbus_counter_unref (counter);
442 }
443
444 static void
445 dbus_message_finalize (DBusMessage *message)
446 {
447   _dbus_assert (message->refcount.value == 0);
448
449   /* This calls application callbacks! */
450   _dbus_data_slot_list_free (&message->slot_list);
451
452   _dbus_list_foreach (&message->size_counters,
453                       free_size_counter, message);
454   _dbus_list_clear (&message->size_counters);
455
456   _dbus_header_free (&message->header);
457   _dbus_string_free (&message->body);
458
459   _dbus_assert (message->refcount.value == 0);
460   
461   dbus_free (message);
462 }
463
464 /* Message Cache
465  *
466  * We cache some DBusMessage to reduce the overhead of allocating
467  * them.  In my profiling this consistently made about an 8%
468  * difference.  It avoids the malloc for the message, the malloc for
469  * the slot list, the malloc for the header string and body string,
470  * and the associated free() calls. It does introduce another global
471  * lock which could be a performance issue in certain cases.
472  *
473  * For the echo client/server the round trip time goes from around
474  * .000077 to .000069 with the message cache on my laptop. The sysprof
475  * change is as follows (numbers are cumulative percentage):
476  *
477  *  with message cache implemented as array as it is now (0.000069 per):
478  *    new_empty_header           1.46
479  *      mutex_lock               0.56    # i.e. _DBUS_LOCK(message_cache)
480  *      mutex_unlock             0.25
481  *      self                     0.41
482  *    unref                      2.24
483  *      self                     0.68
484  *      list_clear               0.43
485  *      mutex_lock               0.33    # i.e. _DBUS_LOCK(message_cache)
486  *      mutex_unlock             0.25
487  *
488  *  with message cache implemented as list (0.000070 per roundtrip):
489  *    new_empty_header           2.72
490  *      list_pop_first           1.88
491  *    unref                      3.3
492  *      list_prepend             1.63
493  *
494  * without cache (0.000077 per roundtrip):
495  *    new_empty_header           6.7
496  *      string_init_preallocated 3.43
497  *        dbus_malloc            2.43
498  *      dbus_malloc0             2.59
499  *
500  *    unref                      4.02
501  *      string_free              1.82
502  *        dbus_free              1.63
503  *      dbus_free                0.71
504  *
505  * If you implement the message_cache with a list, the primary reason
506  * it's slower is that you add another thread lock (on the DBusList
507  * mempool).
508  */
509
510 /** Avoid caching huge messages */
511 #define MAX_MESSAGE_SIZE_TO_CACHE _DBUS_ONE_MEGABYTE
512
513 /** Avoid caching too many messages */
514 #define MAX_MESSAGE_CACHE_SIZE    5
515
516 _DBUS_DEFINE_GLOBAL_LOCK (message_cache);
517 static DBusMessage *message_cache[MAX_MESSAGE_CACHE_SIZE];
518 static int message_cache_count = 0;
519 static dbus_bool_t message_cache_shutdown_registered = FALSE;
520
521 static void
522 dbus_message_cache_shutdown (void *data)
523 {
524   int i;
525
526   _DBUS_LOCK (message_cache);
527
528   i = 0;
529   while (i < MAX_MESSAGE_CACHE_SIZE)
530     {
531       if (message_cache[i])
532         dbus_message_finalize (message_cache[i]);
533
534       ++i;
535     }
536
537   message_cache_count = 0;
538   message_cache_shutdown_registered = FALSE;
539
540   _DBUS_UNLOCK (message_cache);
541 }
542
543 /**
544  * Tries to get a message from the message cache.  The retrieved
545  * message will have junk in it, so it still needs to be cleared out
546  * in dbus_message_new_empty_header()
547  *
548  * @returns the message, or #NULL if none cached
549  */
550 static DBusMessage*
551 dbus_message_get_cached (void)
552 {
553   DBusMessage *message;
554   int i;
555
556   message = NULL;
557
558   _DBUS_LOCK (message_cache);
559
560   _dbus_assert (message_cache_count >= 0);
561
562   if (message_cache_count == 0)
563     {
564       _DBUS_UNLOCK (message_cache);
565       return NULL;
566     }
567
568   /* This is not necessarily true unless count > 0, and
569    * message_cache is uninitialized until the shutdown is
570    * registered
571    */
572   _dbus_assert (message_cache_shutdown_registered);
573
574   i = 0;
575   while (i < MAX_MESSAGE_CACHE_SIZE)
576     {
577       if (message_cache[i])
578         {
579           message = message_cache[i];
580           message_cache[i] = NULL;
581           message_cache_count -= 1;
582           break;
583         }
584       ++i;
585     }
586   _dbus_assert (message_cache_count >= 0);
587   _dbus_assert (i < MAX_MESSAGE_CACHE_SIZE);
588   _dbus_assert (message != NULL);
589
590   _DBUS_UNLOCK (message_cache);
591
592   _dbus_assert (message->refcount.value == 0);
593   _dbus_assert (message->size_counters == NULL);
594
595   return message;
596 }
597
598 /**
599  * Tries to cache a message, otherwise finalize it.
600  *
601  * @param message the message
602  */
603 static void
604 dbus_message_cache_or_finalize (DBusMessage *message)
605 {
606   dbus_bool_t was_cached;
607   int i;
608   
609   _dbus_assert (message->refcount.value == 0);
610
611   /* This calls application code and has to be done first thing
612    * without holding the lock
613    */
614   _dbus_data_slot_list_clear (&message->slot_list);
615
616   _dbus_list_foreach (&message->size_counters,
617                       free_size_counter, message);
618   _dbus_list_clear (&message->size_counters);
619
620   was_cached = FALSE;
621
622   _DBUS_LOCK (message_cache);
623
624   if (!message_cache_shutdown_registered)
625     {
626       _dbus_assert (message_cache_count == 0);
627
628       if (!_dbus_register_shutdown_func (dbus_message_cache_shutdown, NULL))
629         goto out;
630
631       i = 0;
632       while (i < MAX_MESSAGE_CACHE_SIZE)
633         {
634           message_cache[i] = NULL;
635           ++i;
636         }
637
638       message_cache_shutdown_registered = TRUE;
639     }
640
641   _dbus_assert (message_cache_count >= 0);
642
643   if ((_dbus_string_get_length (&message->header.data) +
644        _dbus_string_get_length (&message->body)) >
645       MAX_MESSAGE_SIZE_TO_CACHE)
646     goto out;
647
648   if (message_cache_count >= MAX_MESSAGE_CACHE_SIZE)
649     goto out;
650
651   /* Find empty slot */
652   i = 0;
653   while (message_cache[i] != NULL)
654     ++i;
655
656   _dbus_assert (i < MAX_MESSAGE_CACHE_SIZE);
657
658   _dbus_assert (message_cache[i] == NULL);
659   message_cache[i] = message;
660   message_cache_count += 1;
661   was_cached = TRUE;
662 #ifndef DBUS_DISABLE_CHECKS
663   message->in_cache = TRUE;
664 #endif
665
666  out:
667   _DBUS_UNLOCK (message_cache);
668
669   _dbus_assert (message->refcount.value == 0);
670   
671   if (!was_cached)
672     dbus_message_finalize (message);
673 }
674
675 static DBusMessage*
676 dbus_message_new_empty_header (void)
677 {
678   DBusMessage *message;
679   dbus_bool_t from_cache;
680
681   message = dbus_message_get_cached ();
682
683   if (message != NULL)
684     {
685       from_cache = TRUE;
686     }
687   else
688     {
689       from_cache = FALSE;
690       message = dbus_new (DBusMessage, 1);
691       if (message == NULL)
692         return NULL;
693 #ifndef DBUS_DISABLE_CHECKS
694       message->generation = _dbus_current_generation;
695 #endif
696     }
697   
698   message->refcount.value = 1;
699   message->byte_order = DBUS_COMPILER_BYTE_ORDER;
700   message->locked = FALSE;
701 #ifndef DBUS_DISABLE_CHECKS
702   message->in_cache = FALSE;
703 #endif
704   message->size_counters = NULL;
705   message->size_counter_delta = 0;
706   message->changed_stamp = 0;
707
708   if (!from_cache)
709     _dbus_data_slot_list_init (&message->slot_list);
710
711   if (from_cache)
712     {
713       _dbus_header_reinit (&message->header, message->byte_order);
714       _dbus_string_set_length (&message->body, 0);
715     }
716   else
717     {
718       if (!_dbus_header_init (&message->header, message->byte_order))
719         {
720           dbus_free (message);
721           return NULL;
722         }
723
724       if (!_dbus_string_init_preallocated (&message->body, 32))
725         {
726           _dbus_header_free (&message->header);
727           dbus_free (message);
728           return NULL;
729         }
730     }
731
732   return message;
733 }
734
735 /**
736  * Constructs a new message of the given message type.
737  * Types include #DBUS_MESSAGE_TYPE_METHOD_CALL,
738  * #DBUS_MESSAGE_TYPE_SIGNAL, and so forth.
739  *
740  * @param message_type type of message
741  * @returns new message or #NULL If no memory
742  */
743 DBusMessage*
744 dbus_message_new (int message_type)
745 {
746   DBusMessage *message;
747
748   _dbus_return_val_if_fail (message_type != DBUS_MESSAGE_TYPE_INVALID, NULL);
749
750   message = dbus_message_new_empty_header ();
751   if (message == NULL)
752     return NULL;
753
754   if (!_dbus_header_create (&message->header,
755                             message_type,
756                             NULL, NULL, NULL, NULL, NULL))
757     {
758       dbus_message_unref (message);
759       return NULL;
760     }
761
762   return message;
763 }
764
765 /**
766  * Constructs a new message to invoke a method on a remote
767  * object. Returns #NULL if memory can't be allocated for the
768  * message. The destination may be #NULL in which case no destination
769  * is set; this is appropriate when using D-BUS in a peer-to-peer
770  * context (no message bus). The interface may be #NULL, which means
771  * that if multiple methods with the given name exist it is undefined
772  * which one will be invoked.
773   *
774  * @param destination name that the message should be sent to or #NULL
775  * @param path object path the message should be sent to
776  * @param interface interface to invoke method on
777  * @param method method to invoke
778  *
779  * @returns a new DBusMessage, free with dbus_message_unref()
780  * @see dbus_message_unref()
781  */
782 DBusMessage*
783 dbus_message_new_method_call (const char *destination,
784                               const char *path,
785                               const char *interface,
786                               const char *method)
787 {
788   DBusMessage *message;
789
790   _dbus_return_val_if_fail (path != NULL, NULL);
791   _dbus_return_val_if_fail (method != NULL, NULL);
792   _dbus_return_val_if_fail (destination == NULL ||
793                             _dbus_check_is_valid_bus_name (destination), NULL);
794   _dbus_return_val_if_fail (_dbus_check_is_valid_path (path), NULL);
795   _dbus_return_val_if_fail (interface == NULL ||
796                             _dbus_check_is_valid_interface (interface), NULL);
797   _dbus_return_val_if_fail (_dbus_check_is_valid_member (method), NULL);
798
799   message = dbus_message_new_empty_header ();
800   if (message == NULL)
801     return NULL;
802
803   if (!_dbus_header_create (&message->header,
804                             DBUS_MESSAGE_TYPE_METHOD_CALL,
805                             destination, path, interface, method, NULL))
806     {
807       dbus_message_unref (message);
808       return NULL;
809     }
810
811   return message;
812 }
813
814 /**
815  * Constructs a message that is a reply to a method call. Returns
816  * #NULL if memory can't be allocated for the message.
817  *
818  * @param method_call the message which the created
819  * message is a reply to.
820  * @returns a new DBusMessage, free with dbus_message_unref()
821  * @see dbus_message_new_method_call(), dbus_message_unref()
822  */
823 DBusMessage*
824 dbus_message_new_method_return (DBusMessage *method_call)
825 {
826   DBusMessage *message;
827   const char *sender;
828
829   _dbus_return_val_if_fail (method_call != NULL, NULL);
830
831   sender = dbus_message_get_sender (method_call);
832
833   /* sender is allowed to be null here in peer-to-peer case */
834
835   message = dbus_message_new_empty_header ();
836   if (message == NULL)
837     return NULL;
838
839   if (!_dbus_header_create (&message->header,
840                             DBUS_MESSAGE_TYPE_METHOD_RETURN,
841                             sender, NULL, NULL, NULL, NULL))
842     {
843       dbus_message_unref (message);
844       return NULL;
845     }
846
847   dbus_message_set_no_reply (message, TRUE);
848
849   if (!dbus_message_set_reply_serial (message,
850                                       dbus_message_get_serial (method_call)))
851     {
852       dbus_message_unref (message);
853       return NULL;
854     }
855
856   return message;
857 }
858
859 /**
860  * Constructs a new message representing a signal emission. Returns
861  * #NULL if memory can't be allocated for the message.  A signal is
862  * identified by its originating interface, and the name of the
863  * signal.
864  *
865  * @param path the path to the object emitting the signal
866  * @param interface the interface the signal is emitted from
867  * @param name name of the signal
868  * @returns a new DBusMessage, free with dbus_message_unref()
869  * @see dbus_message_unref()
870  */
871 DBusMessage*
872 dbus_message_new_signal (const char *path,
873                          const char *interface,
874                          const char *name)
875 {
876   DBusMessage *message;
877
878   _dbus_return_val_if_fail (path != NULL, NULL);
879   _dbus_return_val_if_fail (interface != NULL, NULL);
880   _dbus_return_val_if_fail (name != NULL, NULL);
881   _dbus_return_val_if_fail (_dbus_check_is_valid_path (path), NULL);
882   _dbus_return_val_if_fail (_dbus_check_is_valid_interface (interface), NULL);
883   _dbus_return_val_if_fail (_dbus_check_is_valid_member (name), NULL);
884
885   message = dbus_message_new_empty_header ();
886   if (message == NULL)
887     return NULL;
888
889   if (!_dbus_header_create (&message->header,
890                             DBUS_MESSAGE_TYPE_SIGNAL,
891                             NULL, path, interface, name, NULL))
892     {
893       dbus_message_unref (message);
894       return NULL;
895     }
896
897   dbus_message_set_no_reply (message, TRUE);
898
899   return message;
900 }
901
902 /**
903  * Creates a new message that is an error reply to a certain message.
904  * Error replies are possible in response to method calls primarily.
905  *
906  * @param reply_to the original message
907  * @param error_name the error name
908  * @param error_message the error message string or #NULL for none
909  * @returns a new error message
910  */
911 DBusMessage*
912 dbus_message_new_error (DBusMessage *reply_to,
913                         const char  *error_name,
914                         const char  *error_message)
915 {
916   DBusMessage *message;
917   const char *sender;
918   DBusMessageIter iter;
919
920   _dbus_return_val_if_fail (reply_to != NULL, NULL);
921   _dbus_return_val_if_fail (error_name != NULL, NULL);
922   _dbus_return_val_if_fail (_dbus_check_is_valid_error_name (error_name), NULL);
923
924   sender = dbus_message_get_sender (reply_to);
925
926   /* sender may be NULL for non-message-bus case or
927    * when the message bus is dealing with an unregistered
928    * connection.
929    */
930   message = dbus_message_new_empty_header ();
931   if (message == NULL)
932     return NULL;
933
934   if (!_dbus_header_create (&message->header,
935                             DBUS_MESSAGE_TYPE_ERROR,
936                             sender, NULL, NULL, NULL, error_name))
937     {
938       dbus_message_unref (message);
939       return NULL;
940     }
941
942   dbus_message_set_no_reply (message, TRUE);
943
944   if (!dbus_message_set_reply_serial (message,
945                                       dbus_message_get_serial (reply_to)))
946     {
947       dbus_message_unref (message);
948       return NULL;
949     }
950
951   if (error_message != NULL)
952     {
953       dbus_message_iter_init_append (message, &iter);
954       if (!dbus_message_iter_append_basic (&iter,
955                                            DBUS_TYPE_STRING,
956                                            &error_message))
957         {
958           dbus_message_unref (message);
959           return NULL;
960         }
961     }
962
963   return message;
964 }
965
966 /**
967  * Creates a new message that is an error reply to a certain message.
968  * Error replies are possible in response to method calls primarily.
969  *
970  * @param reply_to the original message
971  * @param error_name the error name
972  * @param error_format the error message format as with printf
973  * @param ... format string arguments
974  * @returns a new error message
975  */
976 DBusMessage*
977 dbus_message_new_error_printf (DBusMessage *reply_to,
978                                const char  *error_name,
979                                const char  *error_format,
980                                ...)
981 {
982   va_list args;
983   DBusString str;
984   DBusMessage *message;
985
986   _dbus_return_val_if_fail (reply_to != NULL, NULL);
987   _dbus_return_val_if_fail (error_name != NULL, NULL);
988   _dbus_return_val_if_fail (_dbus_check_is_valid_error_name (error_name), NULL);
989
990   if (!_dbus_string_init (&str))
991     return NULL;
992
993   va_start (args, error_format);
994
995   if (_dbus_string_append_printf_valist (&str, error_format, args))
996     message = dbus_message_new_error (reply_to, error_name,
997                                       _dbus_string_get_const_data (&str));
998   else
999     message = NULL;
1000
1001   _dbus_string_free (&str);
1002
1003   va_end (args);
1004
1005   return message;
1006 }
1007
1008
1009 /**
1010  * Creates a new message that is an exact replica of the message
1011  * specified, except that its refcount is set to 1, its message serial
1012  * is reset to 0, and if the original message was "locked" (in the
1013  * outgoing message queue and thus not modifiable) the new message
1014  * will not be locked.
1015  *
1016  * @param message the message.
1017  * @returns the new message.
1018  */
1019 DBusMessage *
1020 dbus_message_copy (const DBusMessage *message)
1021 {
1022   DBusMessage *retval;
1023
1024   _dbus_return_val_if_fail (message != NULL, NULL);
1025
1026   retval = dbus_new0 (DBusMessage, 1);
1027   if (retval == NULL)
1028     return NULL;
1029
1030   retval->refcount.value = 1;
1031   retval->byte_order = message->byte_order;
1032   retval->locked = FALSE;
1033 #ifndef DBUS_DISABLE_CHECKS
1034   retval->generation = message->generation;
1035 #endif
1036
1037   if (!_dbus_header_copy (&message->header, &retval->header))
1038     {
1039       dbus_free (retval);
1040       return NULL;
1041     }
1042
1043   if (!_dbus_string_init_preallocated (&retval->body,
1044                                        _dbus_string_get_length (&message->body)))
1045     {
1046       _dbus_header_free (&retval->header);
1047       dbus_free (retval);
1048       return NULL;
1049     }
1050
1051   if (!_dbus_string_copy (&message->body, 0,
1052                           &retval->body, 0))
1053     goto failed_copy;
1054
1055   return retval;
1056
1057  failed_copy:
1058   _dbus_header_free (&retval->header);
1059   _dbus_string_free (&retval->body);
1060   dbus_free (retval);
1061
1062   return NULL;
1063 }
1064
1065
1066 /**
1067  * Increments the reference count of a DBusMessage.
1068  *
1069  * @param message The message
1070  * @returns the message
1071  * @see dbus_message_unref
1072  */
1073 DBusMessage *
1074 dbus_message_ref (DBusMessage *message)
1075 {
1076   dbus_int32_t old_refcount;
1077
1078   _dbus_return_val_if_fail (message != NULL, NULL);
1079   _dbus_return_val_if_fail (message->generation == _dbus_current_generation, NULL);
1080   _dbus_return_val_if_fail (!message->in_cache, NULL);
1081   
1082   old_refcount = _dbus_atomic_inc (&message->refcount);
1083   _dbus_assert (old_refcount >= 1);
1084
1085   return message;
1086 }
1087
1088 /**
1089  * Decrements the reference count of a DBusMessage.
1090  *
1091  * @param message The message
1092  * @see dbus_message_ref
1093  */
1094 void
1095 dbus_message_unref (DBusMessage *message)
1096 {
1097  dbus_int32_t old_refcount;
1098
1099   _dbus_return_if_fail (message != NULL);
1100   _dbus_return_if_fail (message->generation == _dbus_current_generation);
1101   _dbus_return_if_fail (!message->in_cache);
1102
1103   old_refcount = _dbus_atomic_dec (&message->refcount);
1104
1105   _dbus_assert (old_refcount >= 0);
1106
1107   if (old_refcount == 1)
1108     {
1109       /* Calls application callbacks! */
1110       dbus_message_cache_or_finalize (message);
1111     }
1112 }
1113
1114 /**
1115  * Gets the type of a message. Types include
1116  * #DBUS_MESSAGE_TYPE_METHOD_CALL, #DBUS_MESSAGE_TYPE_METHOD_RETURN,
1117  * #DBUS_MESSAGE_TYPE_ERROR, #DBUS_MESSAGE_TYPE_SIGNAL, but other
1118  * types are allowed and all code must silently ignore messages of
1119  * unknown type. DBUS_MESSAGE_TYPE_INVALID will never be returned,
1120  * however.
1121  *
1122  *
1123  * @param message the message
1124  * @returns the type of the message
1125  */
1126 int
1127 dbus_message_get_type (DBusMessage *message)
1128 {
1129   _dbus_return_val_if_fail (message != NULL, DBUS_MESSAGE_TYPE_INVALID);
1130
1131   return _dbus_header_get_message_type (&message->header);
1132 }
1133
1134 /**
1135  * Appends fields to a message given a variable argument list. The
1136  * variable argument list should contain the type of each argument
1137  * followed by the value to append. Appendable types are basic types,
1138  * and arrays of fixed-length basic types. To append variable-length
1139  * basic types, or any more complex value, you have to use an iterator
1140  * rather than this function.
1141  *
1142  * To append a basic type, specify its type code followed by the
1143  * value. For example:
1144  *
1145  * @code
1146  * DBUS_TYPE_INT32, 42,
1147  * DBUS_TYPE_STRING, "Hello World"
1148  * @endcode
1149  * or
1150  * @code
1151  * dbus_int32_t val = 42;
1152  * DBUS_TYPE_INT32, val
1153  * @endcode
1154  *
1155  * Be sure that your provided value is the right size. For example, this
1156  * won't work:
1157  * @code
1158  * DBUS_TYPE_INT64, 42
1159  * @endcode
1160  * Because the "42" will be a 32-bit integer. You need to cast to
1161  * 64-bit.
1162  *
1163  * To append an array of fixed-length basic types, pass in the
1164  * DBUS_TYPE_ARRAY typecode, the element typecode, the address of
1165  * the array pointer, and a 32-bit integer giving the number of
1166  * elements in the array. So for example:
1167  * @code
1168  * const dbus_int32_t array[] = { 1, 2, 3 };
1169  * const dbus_int32_t *v_ARRAY = array;
1170  * DBUS_TYPE_ARRAY, DBUS_TYPE_INT32, &v_ARRAY, 3
1171  * @endcode
1172  *
1173  * @warning in C, given "int array[]", "&array == array" (the
1174  * comp.lang.c FAQ says otherwise, but gcc and the FAQ don't agree).
1175  * So if you're using an array instead of a pointer you have to create
1176  * a pointer variable, assign the array to it, then take the address
1177  * of the pointer variable. For strings it works to write
1178  * const char *array = "Hello" and then use &array though.
1179  *
1180  * The last argument to this function must be #DBUS_TYPE_INVALID,
1181  * marking the end of the argument list.
1182  *
1183  * @todo support DBUS_TYPE_STRUCT and DBUS_TYPE_VARIANT and complex arrays
1184  *
1185  * @todo If this fails due to lack of memory, the message is hosed and
1186  * you have to start over building the whole message.
1187  *
1188  * @param message the message
1189  * @param first_arg_type type of the first argument
1190  * @param ... value of first argument, list of additional type-value pairs
1191  * @returns #TRUE on success
1192  */
1193 dbus_bool_t
1194 dbus_message_append_args (DBusMessage *message,
1195                           int          first_arg_type,
1196                           ...)
1197 {
1198   dbus_bool_t retval;
1199   va_list var_args;
1200
1201   _dbus_return_val_if_fail (message != NULL, FALSE);
1202
1203   va_start (var_args, first_arg_type);
1204   retval = dbus_message_append_args_valist (message,
1205                                             first_arg_type,
1206                                             var_args);
1207   va_end (var_args);
1208
1209   return retval;
1210 }
1211
1212 /**
1213  * This function takes a va_list for use by language bindings.
1214  * It's otherwise the same as dbus_message_append_args().
1215  *
1216  * @todo for now, if this function fails due to OOM it will leave
1217  * the message half-written and you have to discard the message
1218  * and start over.
1219  *
1220  * @see dbus_message_append_args.
1221  * @param message the message
1222  * @param first_arg_type type of first argument
1223  * @param var_args value of first argument, then list of type/value pairs
1224  * @returns #TRUE on success
1225  */
1226 dbus_bool_t
1227 dbus_message_append_args_valist (DBusMessage *message,
1228                                  int          first_arg_type,
1229                                  va_list      var_args)
1230 {
1231   int type;
1232   DBusMessageIter iter;
1233
1234   _dbus_return_val_if_fail (message != NULL, FALSE);
1235
1236   type = first_arg_type;
1237
1238   dbus_message_iter_init_append (message, &iter);
1239
1240   while (type != DBUS_TYPE_INVALID)
1241     {
1242       if (_dbus_type_is_basic (type))
1243         {
1244           const DBusBasicValue *value;
1245           value = va_arg (var_args, const DBusBasicValue*);
1246
1247           if (!dbus_message_iter_append_basic (&iter,
1248                                                type,
1249                                                value))
1250             goto failed;
1251         }
1252       else if (type == DBUS_TYPE_ARRAY)
1253         {
1254           int element_type;
1255           const DBusBasicValue **value;
1256           int n_elements;
1257           DBusMessageIter array;
1258           char buf[2];
1259
1260           element_type = va_arg (var_args, int);
1261
1262 #ifndef DBUS_DISABLE_CHECKS
1263           if (!_dbus_type_is_fixed (element_type))
1264             {
1265               _dbus_warn ("arrays of %s can't be appended with %s for now\n",
1266                           _dbus_type_to_string (element_type),
1267                           _DBUS_FUNCTION_NAME);
1268               goto failed;
1269             }
1270 #endif
1271
1272           value = va_arg (var_args, const DBusBasicValue**);
1273           n_elements = va_arg (var_args, int);
1274
1275           buf[0] = element_type;
1276           buf[1] = '\0';
1277           if (!dbus_message_iter_open_container (&iter,
1278                                                  DBUS_TYPE_ARRAY,
1279                                                  buf,
1280                                                  &array))
1281             goto failed;
1282
1283           if (!dbus_message_iter_append_fixed_array (&array,
1284                                                      element_type,
1285                                                      value,
1286                                                      n_elements))
1287             goto failed;
1288
1289           if (!dbus_message_iter_close_container (&iter, &array))
1290             goto failed;
1291         }
1292 #ifndef DBUS_DISABLE_CHECKS
1293       else
1294         {
1295           _dbus_warn ("type %s isn't supported yet in %s\n",
1296                       _dbus_type_to_string (type), _DBUS_FUNCTION_NAME);
1297           goto failed;
1298         }
1299 #endif
1300
1301       type = va_arg (var_args, int);
1302     }
1303
1304   return TRUE;
1305
1306  failed:
1307   return FALSE;
1308 }
1309
1310 /**
1311  * Gets arguments from a message given a variable argument list.  The
1312  * supported types include those supported by
1313  * dbus_message_append_args(); that is, basic types and arrays of
1314  * fixed-length basic types.  The arguments are the same as they would
1315  * be for dbus_message_iter_get_basic() or
1316  * dbus_message_iter_get_fixed_array().
1317  *
1318  * In addition to those types, arrays of string, object path, and
1319  * signature are supported; but these are returned as allocated memory
1320  * and must be freed with dbus_free_string_array(), while the other
1321  * types are returned as const references.
1322  *
1323  * The variable argument list should contain the type of the argument
1324  * followed by a pointer to where the value should be stored. The list
1325  * is terminated with #DBUS_TYPE_INVALID.
1326  *
1327  * The returned values are constant; do not free them. They point
1328  * into the #DBusMessage.
1329  *
1330  * If the requested arguments are not present, or do not have the
1331  * requested types, then an error will be set.
1332  *
1333  * @todo support DBUS_TYPE_STRUCT and DBUS_TYPE_VARIANT and complex arrays
1334  *
1335  * @param message the message
1336  * @param error error to be filled in on failure
1337  * @param first_arg_type the first argument type
1338  * @param ... location for first argument value, then list of type-location pairs
1339  * @returns #FALSE if the error was set
1340  */
1341 dbus_bool_t
1342 dbus_message_get_args (DBusMessage     *message,
1343                        DBusError       *error,
1344                        int              first_arg_type,
1345                        ...)
1346 {
1347   dbus_bool_t retval;
1348   va_list var_args;
1349
1350   _dbus_return_val_if_fail (message != NULL, FALSE);
1351   _dbus_return_val_if_error_is_set (error, FALSE);
1352
1353   va_start (var_args, first_arg_type);
1354   retval = dbus_message_get_args_valist (message, error, first_arg_type, var_args);
1355   va_end (var_args);
1356
1357   return retval;
1358 }
1359
1360 /**
1361  * This function takes a va_list for use by language bindings. It is
1362  * otherwise the same as dbus_message_get_args().
1363  *
1364  * @see dbus_message_get_args
1365  * @param message the message
1366  * @param error error to be filled in
1367  * @param first_arg_type type of the first argument
1368  * @param var_args return location for first argument, followed by list of type/location pairs
1369  * @returns #FALSE if error was set
1370  */
1371 dbus_bool_t
1372 dbus_message_get_args_valist (DBusMessage     *message,
1373                               DBusError       *error,
1374                               int              first_arg_type,
1375                               va_list          var_args)
1376 {
1377   DBusMessageIter iter;
1378
1379   _dbus_return_val_if_fail (message != NULL, FALSE);
1380   _dbus_return_val_if_error_is_set (error, FALSE);
1381
1382   dbus_message_iter_init (message, &iter);
1383   return _dbus_message_iter_get_args_valist (&iter, error, first_arg_type, var_args);
1384 }
1385
1386 static void
1387 _dbus_message_iter_init_common (DBusMessage         *message,
1388                                 DBusMessageRealIter *real,
1389                                 int                  iter_type)
1390 {
1391   _dbus_assert (sizeof (DBusMessageRealIter) <= sizeof (DBusMessageIter));
1392
1393   /* Since the iterator will read or write who-knows-what from the
1394    * message, we need to get in the right byte order
1395    */
1396   ensure_byte_order (message);
1397   
1398   real->message = message;
1399   real->changed_stamp = message->changed_stamp;
1400   real->iter_type = iter_type;
1401   real->sig_refcount = 0;
1402 }
1403
1404 /**
1405  * Initializes a #DBusMessageIter for reading the arguments of the
1406  * message passed in.
1407  *
1408  * @param message the message
1409  * @param iter pointer to an iterator to initialize
1410  * @returns #FALSE if the message has no arguments
1411  */
1412 dbus_bool_t
1413 dbus_message_iter_init (DBusMessage     *message,
1414                         DBusMessageIter *iter)
1415 {
1416   DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
1417   const DBusString *type_str;
1418   int type_pos;
1419
1420   _dbus_return_val_if_fail (message != NULL, FALSE);
1421   _dbus_return_val_if_fail (iter != NULL, FALSE);
1422
1423   get_const_signature (&message->header, &type_str, &type_pos);
1424
1425   _dbus_message_iter_init_common (message, real,
1426                                   DBUS_MESSAGE_ITER_TYPE_READER);
1427
1428   _dbus_type_reader_init (&real->u.reader,
1429                           message->byte_order,
1430                           type_str, type_pos,
1431                           &message->body,
1432                           0);
1433
1434   return _dbus_type_reader_get_current_type (&real->u.reader) != DBUS_TYPE_INVALID;
1435 }
1436
1437 #ifndef DBUS_DISABLE_CHECKS
1438 static dbus_bool_t
1439 _dbus_message_iter_check (DBusMessageRealIter *iter)
1440 {
1441   if (iter == NULL)
1442     {
1443       _dbus_warn ("dbus message iterator is NULL\n");
1444       return FALSE;
1445     }
1446
1447   if (iter->iter_type == DBUS_MESSAGE_ITER_TYPE_READER)
1448     {
1449       if (iter->u.reader.byte_order != iter->message->byte_order)
1450         {
1451           _dbus_warn ("dbus message changed byte order since iterator was created\n");
1452           return FALSE;
1453         }
1454       /* because we swap the message into compiler order when you init an iter */
1455       _dbus_assert (iter->u.reader.byte_order == DBUS_COMPILER_BYTE_ORDER);
1456     }
1457   else if (iter->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER)
1458     {
1459       if (iter->u.writer.byte_order != iter->message->byte_order)
1460         {
1461           _dbus_warn ("dbus message changed byte order since append iterator was created\n");
1462           return FALSE;
1463         }
1464       /* because we swap the message into compiler order when you init an iter */
1465       _dbus_assert (iter->u.writer.byte_order == DBUS_COMPILER_BYTE_ORDER);
1466     }
1467   else
1468     {
1469       _dbus_warn ("dbus message iterator looks uninitialized or corrupted\n");
1470       return FALSE;
1471     }
1472
1473   if (iter->changed_stamp != iter->message->changed_stamp)
1474     {
1475       _dbus_warn ("dbus message iterator invalid because the message has been modified (or perhaps the iterator is just uninitialized)\n");
1476       return FALSE;
1477     }
1478
1479   return TRUE;
1480 }
1481 #endif /* DBUS_DISABLE_CHECKS */
1482
1483 /**
1484  * Checks if an iterator has any more fields.
1485  *
1486  * @param iter the message iter
1487  * @returns #TRUE if there are more fields
1488  * following
1489  */
1490 dbus_bool_t
1491 dbus_message_iter_has_next (DBusMessageIter *iter)
1492 {
1493   DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
1494
1495   _dbus_return_val_if_fail (_dbus_message_iter_check (real), FALSE);
1496   _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_READER, FALSE);
1497
1498   return _dbus_type_reader_has_next (&real->u.reader);
1499 }
1500
1501 /**
1502  * Moves the iterator to the next field, if any. If there's no next
1503  * field, returns #FALSE. If the iterator moves forward, returns
1504  * #TRUE.
1505  *
1506  * @param iter the message iter
1507  * @returns #TRUE if the iterator was moved to the next field
1508  */
1509 dbus_bool_t
1510 dbus_message_iter_next (DBusMessageIter *iter)
1511 {
1512   DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
1513
1514   _dbus_return_val_if_fail (_dbus_message_iter_check (real), FALSE);
1515   _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_READER, FALSE);
1516
1517   return _dbus_type_reader_next (&real->u.reader);
1518 }
1519
1520 /**
1521  * Returns the argument type of the argument that the message iterator
1522  * points to. If the iterator is at the end of the message, returns
1523  * #DBUS_TYPE_INVALID. You can thus write a loop as follows:
1524  *
1525  * @code
1526  * dbus_message_iter_init (&iter);
1527  * while ((current_type = dbus_message_iter_get_arg_type (&iter)) != DBUS_TYPE_INVALID)
1528  *   dbus_message_iter_next (&iter);
1529  * @endcode
1530  *
1531  * @param iter the message iter
1532  * @returns the argument type
1533  */
1534 int
1535 dbus_message_iter_get_arg_type (DBusMessageIter *iter)
1536 {
1537   DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
1538
1539   _dbus_return_val_if_fail (_dbus_message_iter_check (real), DBUS_TYPE_INVALID);
1540   _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_READER, FALSE);
1541
1542   return _dbus_type_reader_get_current_type (&real->u.reader);
1543 }
1544
1545 /**
1546  * Returns the element type of the array that the message iterator
1547  * points to. Note that you need to check that the iterator points to
1548  * an array prior to using this function.
1549  *
1550  * @param iter the message iter
1551  * @returns the array element type
1552  */
1553 int
1554 dbus_message_iter_get_element_type (DBusMessageIter *iter)
1555 {
1556   DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
1557
1558   _dbus_return_val_if_fail (_dbus_message_iter_check (real), DBUS_TYPE_INVALID);
1559   _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_READER, DBUS_TYPE_INVALID);
1560   _dbus_return_val_if_fail (dbus_message_iter_get_arg_type (iter) == DBUS_TYPE_ARRAY, DBUS_TYPE_INVALID);
1561
1562   return _dbus_type_reader_get_element_type (&real->u.reader);
1563 }
1564
1565 /**
1566  * Recurses into a container value when reading values from a message,
1567  * initializing a sub-iterator to use for traversing the child values
1568  * of the container.
1569  *
1570  * Note that this recurses into a value, not a type, so you can only
1571  * recurse if the value exists. The main implication of this is that
1572  * if you have for example an empty array of array of int32, you can
1573  * recurse into the outermost array, but it will have no values, so
1574  * you won't be able to recurse further. There's no array of int32 to
1575  * recurse into.
1576  *
1577  * @param iter the message iterator
1578  * @param sub the sub-iterator to initialize
1579  */
1580 void
1581 dbus_message_iter_recurse (DBusMessageIter  *iter,
1582                            DBusMessageIter  *sub)
1583 {
1584   DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
1585   DBusMessageRealIter *real_sub = (DBusMessageRealIter *)sub;
1586
1587   _dbus_return_if_fail (_dbus_message_iter_check (real));
1588   _dbus_return_if_fail (sub != NULL);
1589
1590   *real_sub = *real;
1591   _dbus_type_reader_recurse (&real->u.reader, &real_sub->u.reader);
1592 }
1593
1594 /**
1595  * Reads a basic-typed value from the message iterator.
1596  * Basic types are the non-containers such as integer and string.
1597  *
1598  * The value argument should be the address of a location to store
1599  * the returned value. So for int32 it should be a "dbus_int32_t*"
1600  * and for string a "const char**". The returned value is
1601  * by reference and should not be freed.
1602  *
1603  * All returned values are guaranteed to fit in 8 bytes. So you can
1604  * write code like this:
1605  *
1606  * @code
1607  * #ifdef DBUS_HAVE_INT64
1608  * dbus_uint64_t value;
1609  * int type;
1610  * dbus_message_iter_get_basic (&read_iter, &value);
1611  * type = dbus_message_iter_get_arg_type (&read_iter);
1612  * dbus_message_iter_append_basic (&write_iter, type, &value);
1613  * #endif
1614  * @endcode
1615  *
1616  * To avoid the #DBUS_HAVE_INT64 conditional, create a struct or
1617  * something that occupies at least 8 bytes, e.g. you could use a
1618  * struct with two int32 values in it. dbus_uint64_t is just one
1619  * example of a type that's large enough to hold any possible value.
1620  *
1621  * Be sure you have somehow checked that
1622  * dbus_message_iter_get_arg_type() matches the type you are
1623  * expecting, or you'll crash when you try to use an integer as a
1624  * string or something.
1625  *
1626  * @param iter the iterator
1627  * @param value location to store the value
1628  */
1629 void
1630 dbus_message_iter_get_basic (DBusMessageIter  *iter,
1631                              void             *value)
1632 {
1633   DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
1634
1635   _dbus_return_if_fail (_dbus_message_iter_check (real));
1636   _dbus_return_if_fail (value != NULL);
1637
1638   _dbus_type_reader_read_basic (&real->u.reader,
1639                                 value);
1640 }
1641
1642 /**
1643  * Reads a block of fixed-length values from the message iterator.
1644  * Fixed-length values are those basic types that are not string-like,
1645  * such as integers, bool, double. The block read will be from the
1646  * current position in the array until the end of the array.
1647  *
1648  * The value argument should be the address of a location to store the
1649  * returned array. So for int32 it should be a "const dbus_int32_t**"
1650  * The returned value is by reference and should not be freed.
1651  *
1652  * @param iter the iterator
1653  * @param value location to store the block
1654  * @param n_elements number of elements in the block
1655  */
1656 void
1657 dbus_message_iter_get_fixed_array (DBusMessageIter  *iter,
1658                                    void             *value,
1659                                    int              *n_elements)
1660 {
1661   DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
1662
1663   _dbus_return_if_fail (_dbus_message_iter_check (real));
1664   _dbus_return_if_fail (value != NULL);
1665   _dbus_return_if_fail (_dbus_type_is_fixed (_dbus_type_reader_get_element_type (&real->u.reader)));
1666
1667   _dbus_type_reader_read_fixed_multi (&real->u.reader,
1668                                       value, n_elements);
1669 }
1670
1671 /**
1672  * This function takes a va_list for use by language bindings and is
1673  * otherwise the same as dbus_message_iter_get_args().
1674  * dbus_message_get_args() is the place to go for complete
1675  * documentation.
1676  *
1677  * @see dbus_message_get_args
1678  * @param iter the message iter
1679  * @param error error to be filled in
1680  * @param first_arg_type type of the first argument
1681  * @param var_args return location for first argument, followed by list of type/location pairs
1682  * @returns #FALSE if error was set
1683  */
1684 dbus_bool_t
1685 _dbus_message_iter_get_args_valist (DBusMessageIter *iter,
1686                                     DBusError       *error,
1687                                     int              first_arg_type,
1688                                     va_list          var_args)
1689 {
1690   DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
1691   int spec_type, msg_type, i;
1692   dbus_bool_t retval;
1693
1694   _dbus_assert (_dbus_message_iter_check (real));
1695
1696   retval = FALSE;
1697
1698   spec_type = first_arg_type;
1699   i = 0;
1700
1701   while (spec_type != DBUS_TYPE_INVALID)
1702     {
1703       msg_type = dbus_message_iter_get_arg_type (iter);
1704
1705       if (msg_type != spec_type)
1706         {
1707           dbus_set_error (error, DBUS_ERROR_INVALID_ARGS,
1708                           "Argument %d is specified to be of type \"%s\", but "
1709                           "is actually of type \"%s\"\n", i,
1710                           _dbus_type_to_string (spec_type),
1711                           _dbus_type_to_string (msg_type));
1712
1713           goto out;
1714         }
1715
1716       if (_dbus_type_is_basic (spec_type))
1717         {
1718           DBusBasicValue *ptr;
1719
1720           ptr = va_arg (var_args, DBusBasicValue*);
1721
1722           _dbus_assert (ptr != NULL);
1723
1724           _dbus_type_reader_read_basic (&real->u.reader,
1725                                         ptr);
1726         }
1727       else if (spec_type == DBUS_TYPE_ARRAY)
1728         {
1729           int element_type;
1730           int spec_element_type;
1731           const DBusBasicValue **ptr;
1732           int *n_elements_p;
1733           DBusTypeReader array;
1734
1735           spec_element_type = va_arg (var_args, int);
1736           element_type = _dbus_type_reader_get_element_type (&real->u.reader);
1737
1738           if (spec_element_type != element_type)
1739             {
1740               dbus_set_error (error, DBUS_ERROR_INVALID_ARGS,
1741                               "Argument %d is specified to be an array of \"%s\", but "
1742                               "is actually an array of \"%s\"\n",
1743                               i,
1744                               _dbus_type_to_string (spec_element_type),
1745                               _dbus_type_to_string (element_type));
1746
1747               goto out;
1748             }
1749
1750           if (_dbus_type_is_fixed (spec_element_type))
1751             {
1752               ptr = va_arg (var_args, const DBusBasicValue**);
1753               n_elements_p = va_arg (var_args, int*);
1754
1755               _dbus_assert (ptr != NULL);
1756               _dbus_assert (n_elements_p != NULL);
1757
1758               _dbus_type_reader_recurse (&real->u.reader, &array);
1759
1760               _dbus_type_reader_read_fixed_multi (&array,
1761                                                   ptr, n_elements_p);
1762             }
1763           else if (spec_element_type == DBUS_TYPE_STRING ||
1764                    spec_element_type == DBUS_TYPE_SIGNATURE ||
1765                    spec_element_type == DBUS_TYPE_OBJECT_PATH)
1766             {
1767               char ***str_array_p;
1768               int n_elements;
1769               char **str_array;
1770
1771               str_array_p = va_arg (var_args, char***);
1772               n_elements_p = va_arg (var_args, int*);
1773
1774               _dbus_assert (str_array_p != NULL);
1775               _dbus_assert (n_elements_p != NULL);
1776
1777               /* Count elements in the array */
1778               _dbus_type_reader_recurse (&real->u.reader, &array);
1779
1780               n_elements = 0;
1781               while (_dbus_type_reader_get_current_type (&array) != DBUS_TYPE_INVALID)
1782                 {
1783                   ++n_elements;
1784                   _dbus_type_reader_next (&array);
1785                 }
1786
1787               str_array = dbus_new0 (char*, n_elements + 1);
1788               if (str_array == NULL)
1789                 {
1790                   _DBUS_SET_OOM (error);
1791                   goto out;
1792                 }
1793
1794               /* Now go through and dup each string */
1795               _dbus_type_reader_recurse (&real->u.reader, &array);
1796
1797               i = 0;
1798               while (i < n_elements)
1799                 {
1800                   const char *s;
1801                   _dbus_type_reader_read_basic (&array,
1802                                                 &s);
1803                   
1804                   str_array[i] = _dbus_strdup (s);
1805                   if (str_array[i] == NULL)
1806                     {
1807                       dbus_free_string_array (str_array);
1808                       _DBUS_SET_OOM (error);
1809                       goto out;
1810                     }
1811                   
1812                   ++i;
1813                   
1814                   if (!_dbus_type_reader_next (&array))
1815                     _dbus_assert (i == n_elements);
1816                 }
1817
1818               _dbus_assert (_dbus_type_reader_get_current_type (&array) == DBUS_TYPE_INVALID);
1819               _dbus_assert (i == n_elements);
1820               _dbus_assert (str_array[i] == NULL);
1821
1822               *str_array_p = str_array;
1823               *n_elements_p = n_elements;
1824             }
1825 #ifndef DBUS_DISABLE_CHECKS
1826           else
1827             {
1828               _dbus_warn ("you can't read arrays of container types (struct, variant, array) with %s for now\n",
1829                           _DBUS_FUNCTION_NAME);
1830               goto out;
1831             }
1832 #endif
1833         }
1834 #ifndef DBUS_DISABLE_CHECKS
1835       else
1836         {
1837           _dbus_warn ("you can only read arrays and basic types with %s for now\n",
1838                       _DBUS_FUNCTION_NAME);
1839           goto out;
1840         }
1841 #endif
1842
1843       spec_type = va_arg (var_args, int);
1844       if (!_dbus_type_reader_next (&real->u.reader) && spec_type != DBUS_TYPE_INVALID)
1845         {
1846           dbus_set_error (error, DBUS_ERROR_INVALID_ARGS,
1847                           "Message has only %d arguments, but more were expected", i);
1848           goto out;
1849         }
1850
1851       i++;
1852     }
1853
1854   retval = TRUE;
1855
1856  out:
1857
1858   return retval;
1859 }
1860
1861 /**
1862  * Initializes a #DBusMessageIter for appending arguments to the end
1863  * of a message.
1864  *
1865  * @todo If appending any of the arguments fails due to lack of
1866  * memory, generally the message is hosed and you have to start over
1867  * building the whole message.
1868  *
1869  * @param message the message
1870  * @param iter pointer to an iterator to initialize
1871  */
1872 void
1873 dbus_message_iter_init_append (DBusMessage     *message,
1874                                DBusMessageIter *iter)
1875 {
1876   DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
1877
1878   _dbus_return_if_fail (message != NULL);
1879   _dbus_return_if_fail (iter != NULL);
1880
1881   _dbus_message_iter_init_common (message, real,
1882                                   DBUS_MESSAGE_ITER_TYPE_WRITER);
1883
1884   /* We create the signature string and point iterators at it "on demand"
1885    * when a value is actually appended. That means that init() never fails
1886    * due to OOM.
1887    */
1888   _dbus_type_writer_init_types_delayed (&real->u.writer,
1889                                         message->byte_order,
1890                                         &message->body,
1891                                         _dbus_string_get_length (&message->body));
1892 }
1893
1894 /**
1895  * Creates a temporary signature string containing the current
1896  * signature, stores it in the iterator, and points the iterator to
1897  * the end of it. Used any time we write to the message.
1898  *
1899  * @param real an iterator without a type_str
1900  * @returns #FALSE if no memory
1901  */
1902 static dbus_bool_t
1903 _dbus_message_iter_open_signature (DBusMessageRealIter *real)
1904 {
1905   DBusString *str;
1906   const DBusString *current_sig;
1907   int current_sig_pos;
1908
1909   _dbus_assert (real->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER);
1910
1911   if (real->u.writer.type_str != NULL)
1912     {
1913       _dbus_assert (real->sig_refcount > 0);
1914       real->sig_refcount += 1;
1915       return TRUE;
1916     }
1917
1918   str = dbus_new (DBusString, 1);
1919   if (str == NULL)
1920     return FALSE;
1921
1922   if (!_dbus_header_get_field_raw (&real->message->header,
1923                                    DBUS_HEADER_FIELD_SIGNATURE,
1924                                    &current_sig, &current_sig_pos))
1925     current_sig = NULL;
1926
1927   if (current_sig)
1928     {
1929       int current_len;
1930
1931       current_len = _dbus_string_get_byte (current_sig, current_sig_pos);
1932       current_sig_pos += 1; /* move on to sig data */
1933
1934       if (!_dbus_string_init_preallocated (str, current_len + 4))
1935         {
1936           dbus_free (str);
1937           return FALSE;
1938         }
1939
1940       if (!_dbus_string_copy_len (current_sig, current_sig_pos, current_len,
1941                                   str, 0))
1942         {
1943           _dbus_string_free (str);
1944           dbus_free (str);
1945           return FALSE;
1946         }
1947     }
1948   else
1949     {
1950       if (!_dbus_string_init_preallocated (str, 4))
1951         {
1952           dbus_free (str);
1953           return FALSE;
1954         }
1955     }
1956
1957   real->sig_refcount = 1;
1958
1959   _dbus_type_writer_add_types (&real->u.writer,
1960                                str, _dbus_string_get_length (str));
1961   return TRUE;
1962 }
1963
1964 /**
1965  * Sets the new signature as the message signature, frees the
1966  * signature string, and marks the iterator as not having a type_str
1967  * anymore. Frees the signature even if it fails, so you can't
1968  * really recover from failure. Kinda busted.
1969  *
1970  * @param real an iterator without a type_str
1971  * @returns #FALSE if no memory
1972  */
1973 static dbus_bool_t
1974 _dbus_message_iter_close_signature (DBusMessageRealIter *real)
1975 {
1976   DBusString *str;
1977   const char *v_STRING;
1978   dbus_bool_t retval;
1979
1980   _dbus_assert (real->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER);
1981   _dbus_assert (real->u.writer.type_str != NULL);
1982   _dbus_assert (real->sig_refcount > 0);
1983
1984   real->sig_refcount -= 1;
1985
1986   if (real->sig_refcount > 0)
1987     return TRUE;
1988   _dbus_assert (real->sig_refcount == 0);
1989
1990   retval = TRUE;
1991
1992   str = real->u.writer.type_str;
1993
1994   v_STRING = _dbus_string_get_const_data (str);
1995   if (!_dbus_header_set_field_basic (&real->message->header,
1996                                      DBUS_HEADER_FIELD_SIGNATURE,
1997                                      DBUS_TYPE_SIGNATURE,
1998                                      &v_STRING))
1999     retval = FALSE;
2000
2001   _dbus_type_writer_remove_types (&real->u.writer);
2002   _dbus_string_free (str);
2003   dbus_free (str);
2004
2005   return retval;
2006 }
2007
2008 #ifndef DBUS_DISABLE_CHECKS
2009 static dbus_bool_t
2010 _dbus_message_iter_append_check (DBusMessageRealIter *iter)
2011 {
2012   if (!_dbus_message_iter_check (iter))
2013     return FALSE;
2014
2015   if (iter->message->locked)
2016     {
2017       _dbus_warn ("dbus append iterator can't be used: message is locked (has already been sent)\n");
2018       return FALSE;
2019     }
2020
2021   return TRUE;
2022 }
2023 #endif /* DBUS_DISABLE_CHECKS */
2024
2025 /**
2026  * Appends a basic-typed value to the message. The basic types are the
2027  * non-container types such as integer and string.
2028  *
2029  * The "value" argument should be the address of a basic-typed value.
2030  * So for string, const char**. For integer, dbus_int32_t*.
2031  *
2032  * @todo If this fails due to lack of memory, the message is hosed and
2033  * you have to start over building the whole message.
2034  *
2035  * @param iter the append iterator
2036  * @param type the type of the value
2037  * @param value the address of the value
2038  * @returns #FALSE if not enough memory
2039  */
2040 dbus_bool_t
2041 dbus_message_iter_append_basic (DBusMessageIter *iter,
2042                                 int              type,
2043                                 const void      *value)
2044 {
2045   DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
2046   dbus_bool_t ret;
2047
2048   _dbus_return_val_if_fail (_dbus_message_iter_append_check (real), FALSE);
2049   _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER, FALSE);
2050   _dbus_return_val_if_fail (_dbus_type_is_basic (type), FALSE);
2051   _dbus_return_val_if_fail (value != NULL, FALSE);
2052
2053   if (!_dbus_message_iter_open_signature (real))
2054     return FALSE;
2055
2056   ret = _dbus_type_writer_write_basic (&real->u.writer, type, value);
2057
2058   if (!_dbus_message_iter_close_signature (real))
2059     ret = FALSE;
2060
2061   return ret;
2062 }
2063
2064 /**
2065  * Appends a block of fixed-length values to an array. The
2066  * fixed-length types are all basic types that are not string-like. So
2067  * int32, double, bool, etc. You must call
2068  * dbus_message_iter_open_container() to open an array of values
2069  * before calling this function. You may call this function multiple
2070  * times (and intermixed with calls to
2071  * dbus_message_iter_append_basic()) for the same array.
2072  *
2073  * The "value" argument should be the address of the array.  So for
2074  * integer, "dbus_int32_t**" is expected for example.
2075  *
2076  * @warning in C, given "int array[]", "&array == array" (the
2077  * comp.lang.c FAQ says otherwise, but gcc and the FAQ don't agree).
2078  * So if you're using an array instead of a pointer you have to create
2079  * a pointer variable, assign the array to it, then take the address
2080  * of the pointer variable.
2081  * @code
2082  * const dbus_int32_t array[] = { 1, 2, 3 };
2083  * const dbus_int32_t *v_ARRAY = array;
2084  * if (!dbus_message_iter_append_fixed_array (&iter, DBUS_TYPE_INT32, &v_ARRAY, 3))
2085  *   fprintf (stderr, "No memory!\n");
2086  * @endcode
2087  * For strings it works to write const char *array = "Hello" and then
2088  * use &array though.
2089  *
2090  * @todo If this fails due to lack of memory, the message is hosed and
2091  * you have to start over building the whole message.
2092  *
2093  * @param iter the append iterator
2094  * @param element_type the type of the array elements
2095  * @param value the address of the array
2096  * @param n_elements the number of elements to append
2097  * @returns #FALSE if not enough memory
2098  */
2099 dbus_bool_t
2100 dbus_message_iter_append_fixed_array (DBusMessageIter *iter,
2101                                       int              element_type,
2102                                       const void      *value,
2103                                       int              n_elements)
2104 {
2105   DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
2106   dbus_bool_t ret;
2107
2108   _dbus_return_val_if_fail (_dbus_message_iter_append_check (real), FALSE);
2109   _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER, FALSE);
2110   _dbus_return_val_if_fail (_dbus_type_is_fixed (element_type), FALSE);
2111   _dbus_return_val_if_fail (real->u.writer.container_type == DBUS_TYPE_ARRAY, FALSE);
2112   _dbus_return_val_if_fail (value != NULL, FALSE);
2113   _dbus_return_val_if_fail (n_elements >= 0, FALSE);
2114   _dbus_return_val_if_fail (n_elements <=
2115                             DBUS_MAXIMUM_ARRAY_LENGTH / _dbus_type_get_alignment (element_type),
2116                             FALSE);
2117
2118   ret = _dbus_type_writer_write_fixed_multi (&real->u.writer, element_type, value, n_elements);
2119
2120   return ret;
2121 }
2122
2123 /**
2124  * Appends a container-typed value to the message; you are required to
2125  * append the contents of the container using the returned
2126  * sub-iterator, and then call
2127  * dbus_message_iter_close_container(). Container types are for
2128  * example struct, variant, and array. For variants, the
2129  * contained_signature should be the type of the single value inside
2130  * the variant. For structs and dict entries, contained_signature
2131  * should be #NULL; it will be set to whatever types you write into
2132  * the struct.  For arrays, contained_signature should be the type of
2133  * the array elements.
2134  *
2135  * @todo If this fails due to lack of memory, the message is hosed and
2136  * you have to start over building the whole message.
2137  *
2138  * @param iter the append iterator
2139  * @param type the type of the value
2140  * @param contained_signature the type of container contents
2141  * @param sub sub-iterator to initialize
2142  * @returns #FALSE if not enough memory
2143  */
2144 dbus_bool_t
2145 dbus_message_iter_open_container (DBusMessageIter *iter,
2146                                   int              type,
2147                                   const char      *contained_signature,
2148                                   DBusMessageIter *sub)
2149 {
2150   DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
2151   DBusMessageRealIter *real_sub = (DBusMessageRealIter *)sub;
2152   DBusString contained_str;
2153
2154   _dbus_return_val_if_fail (_dbus_message_iter_append_check (real), FALSE);
2155   _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER, FALSE);
2156   _dbus_return_val_if_fail (_dbus_type_is_container (type), FALSE);
2157   _dbus_return_val_if_fail (sub != NULL, FALSE);
2158   _dbus_return_val_if_fail ((type == DBUS_TYPE_STRUCT &&
2159                              contained_signature == NULL) ||
2160                             (type == DBUS_TYPE_DICT_ENTRY &&
2161                              contained_signature == NULL) ||
2162                             contained_signature != NULL, FALSE);
2163   _dbus_return_val_if_fail (type != DBUS_TYPE_DICT_ENTRY ||
2164                             dbus_message_iter_get_arg_type (iter) == DBUS_TYPE_ARRAY,
2165                             FALSE);
2166   
2167 #if 0
2168   /* FIXME this would fail if the contained_signature is a dict entry,
2169    * since dict entries are invalid signatures standalone (they must be in
2170    * an array)
2171    */
2172   _dbus_return_val_if_fail (contained_signature == NULL ||
2173                             _dbus_check_is_valid_signature (contained_signature));
2174 #endif
2175
2176   if (!_dbus_message_iter_open_signature (real))
2177     return FALSE;
2178
2179   _dbus_string_init_const (&contained_str, contained_signature);
2180
2181   *real_sub = *real;
2182   return _dbus_type_writer_recurse (&real->u.writer,
2183                                     type,
2184                                     &contained_str, 0,
2185                                     &real_sub->u.writer);
2186 }
2187
2188
2189 /**
2190  * Closes a container-typed value appended to the message; may write
2191  * out more information to the message known only after the entire
2192  * container is written, and may free resources created by
2193  * dbus_message_iter_open_container().
2194  *
2195  * @todo If this fails due to lack of memory, the message is hosed and
2196  * you have to start over building the whole message.
2197  *
2198  * @param iter the append iterator
2199  * @param sub sub-iterator to close
2200  * @returns #FALSE if not enough memory
2201  */
2202 dbus_bool_t
2203 dbus_message_iter_close_container (DBusMessageIter *iter,
2204                                    DBusMessageIter *sub)
2205 {
2206   DBusMessageRealIter *real = (DBusMessageRealIter *)iter;
2207   DBusMessageRealIter *real_sub = (DBusMessageRealIter *)sub;
2208   dbus_bool_t ret;
2209
2210   _dbus_return_val_if_fail (_dbus_message_iter_append_check (real), FALSE);
2211   _dbus_return_val_if_fail (real->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER, FALSE);
2212   _dbus_return_val_if_fail (_dbus_message_iter_append_check (real_sub), FALSE);
2213   _dbus_return_val_if_fail (real_sub->iter_type == DBUS_MESSAGE_ITER_TYPE_WRITER, FALSE);
2214
2215   ret = _dbus_type_writer_unrecurse (&real->u.writer,
2216                                      &real_sub->u.writer);
2217
2218   if (!_dbus_message_iter_close_signature (real))
2219     ret = FALSE;
2220
2221   return ret;
2222 }
2223
2224 /**
2225  * Sets a flag indicating that the message does not want a reply; if
2226  * this flag is set, the other end of the connection may (but is not
2227  * required to) optimize by not sending method return or error
2228  * replies. If this flag is set, there is no way to know whether the
2229  * message successfully arrived at the remote end. Normally you know a
2230  * message was received when you receive the reply to it.
2231  *
2232  * @param message the message
2233  * @param no_reply #TRUE if no reply is desired
2234  */
2235 void
2236 dbus_message_set_no_reply (DBusMessage *message,
2237                            dbus_bool_t  no_reply)
2238 {
2239   _dbus_return_if_fail (message != NULL);
2240   _dbus_return_if_fail (!message->locked);
2241
2242   _dbus_header_toggle_flag (&message->header,
2243                             DBUS_HEADER_FLAG_NO_REPLY_EXPECTED,
2244                             no_reply);
2245 }
2246
2247 /**
2248  * Returns #TRUE if the message does not expect
2249  * a reply.
2250  *
2251  * @param message the message
2252  * @returns #TRUE if the message sender isn't waiting for a reply
2253  */
2254 dbus_bool_t
2255 dbus_message_get_no_reply (DBusMessage *message)
2256 {
2257   _dbus_return_val_if_fail (message != NULL, FALSE);
2258
2259   return _dbus_header_get_flag (&message->header,
2260                                 DBUS_HEADER_FLAG_NO_REPLY_EXPECTED);
2261 }
2262
2263 /**
2264  * Sets a flag indicating that an owner for the destination name will
2265  * be automatically started before the message is delivered. When this
2266  * flag is set, the message is held until a name owner finishes
2267  * starting up, or fails to start up. In case of failure, the reply
2268  * will be an error.
2269  *
2270  * @param message the message
2271  * @param auto_start #TRUE if auto-starting is desired
2272  */
2273 void
2274 dbus_message_set_auto_start (DBusMessage *message,
2275                              dbus_bool_t  auto_start)
2276 {
2277   _dbus_return_if_fail (message != NULL);
2278   _dbus_return_if_fail (!message->locked);
2279
2280   _dbus_header_toggle_flag (&message->header,
2281                             DBUS_HEADER_FLAG_NO_AUTO_START,
2282                             !auto_start);
2283 }
2284
2285 /**
2286  * Returns #TRUE if the message will cause an owner for
2287  * destination name to be auto-started.
2288  *
2289  * @param message the message
2290  * @returns #TRUE if the message will use auto-start
2291  */
2292 dbus_bool_t
2293 dbus_message_get_auto_start (DBusMessage *message)
2294 {
2295   _dbus_return_val_if_fail (message != NULL, FALSE);
2296
2297   return !_dbus_header_get_flag (&message->header,
2298                                  DBUS_HEADER_FLAG_NO_AUTO_START);
2299 }
2300
2301
2302 /**
2303  * Sets the object path this message is being sent to (for
2304  * DBUS_MESSAGE_TYPE_METHOD_CALL) or the one a signal is being
2305  * emitted from (for DBUS_MESSAGE_TYPE_SIGNAL).
2306  *
2307  * @param message the message
2308  * @param object_path the path or #NULL to unset
2309  * @returns #FALSE if not enough memory
2310  */
2311 dbus_bool_t
2312 dbus_message_set_path (DBusMessage   *message,
2313                        const char    *object_path)
2314 {
2315   _dbus_return_val_if_fail (message != NULL, FALSE);
2316   _dbus_return_val_if_fail (!message->locked, FALSE);
2317   _dbus_return_val_if_fail (object_path == NULL ||
2318                             _dbus_check_is_valid_path (object_path),
2319                             FALSE);
2320
2321   return set_or_delete_string_field (message,
2322                                      DBUS_HEADER_FIELD_PATH,
2323                                      DBUS_TYPE_OBJECT_PATH,
2324                                      object_path);
2325 }
2326
2327 /**
2328  * Gets the object path this message is being sent to (for
2329  * DBUS_MESSAGE_TYPE_METHOD_CALL) or being emitted from (for
2330  * DBUS_MESSAGE_TYPE_SIGNAL). Returns #NULL if none.
2331  *
2332  * @param message the message
2333  * @returns the path (should not be freed) or #NULL
2334  */
2335 const char*
2336 dbus_message_get_path (DBusMessage   *message)
2337 {
2338   const char *v;
2339
2340   _dbus_return_val_if_fail (message != NULL, NULL);
2341
2342   v = NULL; /* in case field doesn't exist */
2343   _dbus_header_get_field_basic (&message->header,
2344                                 DBUS_HEADER_FIELD_PATH,
2345                                 DBUS_TYPE_OBJECT_PATH,
2346                                 &v);
2347   return v;
2348 }
2349
2350 /**
2351  * Gets the object path this message is being sent to
2352  * (for DBUS_MESSAGE_TYPE_METHOD_CALL) or being emitted
2353  * from (for DBUS_MESSAGE_TYPE_SIGNAL) in a decomposed
2354  * format (one array element per path component).
2355  * Free the returned array with dbus_free_string_array().
2356  *
2357  * An empty but non-NULL path array means the path "/".
2358  * So the path "/foo/bar" becomes { "foo", "bar", NULL }
2359  * and the path "/" becomes { NULL }.
2360  *
2361  * @todo this could be optimized by using the len from the message
2362  * instead of calling strlen() again
2363  *
2364  * @param message the message
2365  * @param path place to store allocated array of path components; #NULL set here if no path field exists
2366  * @returns #FALSE if no memory to allocate the array
2367  */
2368 dbus_bool_t
2369 dbus_message_get_path_decomposed (DBusMessage   *message,
2370                                   char        ***path)
2371 {
2372   const char *v;
2373
2374   _dbus_return_val_if_fail (message != NULL, FALSE);
2375   _dbus_return_val_if_fail (path != NULL, FALSE);
2376
2377   *path = NULL;
2378
2379   v = dbus_message_get_path (message);
2380   if (v != NULL)
2381     {
2382       if (!_dbus_decompose_path (v, strlen (v),
2383                                  path, NULL))
2384         return FALSE;
2385     }
2386   return TRUE;
2387 }
2388
2389 /**
2390  * Sets the interface this message is being sent to
2391  * (for DBUS_MESSAGE_TYPE_METHOD_CALL) or
2392  * the interface a signal is being emitted from
2393  * (for DBUS_MESSAGE_TYPE_SIGNAL).
2394  *
2395  * @param message the message
2396  * @param interface the interface or #NULL to unset
2397  * @returns #FALSE if not enough memory
2398  */
2399 dbus_bool_t
2400 dbus_message_set_interface (DBusMessage  *message,
2401                             const char   *interface)
2402 {
2403   _dbus_return_val_if_fail (message != NULL, FALSE);
2404   _dbus_return_val_if_fail (!message->locked, FALSE);
2405   _dbus_return_val_if_fail (interface == NULL ||
2406                             _dbus_check_is_valid_interface (interface),
2407                             FALSE);
2408
2409   return set_or_delete_string_field (message,
2410                                      DBUS_HEADER_FIELD_INTERFACE,
2411                                      DBUS_TYPE_STRING,
2412                                      interface);
2413 }
2414
2415 /**
2416  * Gets the interface this message is being sent to
2417  * (for DBUS_MESSAGE_TYPE_METHOD_CALL) or being emitted
2418  * from (for DBUS_MESSAGE_TYPE_SIGNAL).
2419  * The interface name is fully-qualified (namespaced).
2420  * Returns #NULL if none.
2421  *
2422  * @param message the message
2423  * @returns the message interface (should not be freed) or #NULL
2424  */
2425 const char*
2426 dbus_message_get_interface (DBusMessage *message)
2427 {
2428   const char *v;
2429
2430   _dbus_return_val_if_fail (message != NULL, NULL);
2431
2432   v = NULL; /* in case field doesn't exist */
2433   _dbus_header_get_field_basic (&message->header,
2434                                 DBUS_HEADER_FIELD_INTERFACE,
2435                                 DBUS_TYPE_STRING,
2436                                 &v);
2437   return v;
2438 }
2439
2440 /**
2441  * Sets the interface member being invoked
2442  * (DBUS_MESSAGE_TYPE_METHOD_CALL) or emitted
2443  * (DBUS_MESSAGE_TYPE_SIGNAL).
2444  * The interface name is fully-qualified (namespaced).
2445  *
2446  * @param message the message
2447  * @param member the member or #NULL to unset
2448  * @returns #FALSE if not enough memory
2449  */
2450 dbus_bool_t
2451 dbus_message_set_member (DBusMessage  *message,
2452                          const char   *member)
2453 {
2454   _dbus_return_val_if_fail (message != NULL, FALSE);
2455   _dbus_return_val_if_fail (!message->locked, FALSE);
2456   _dbus_return_val_if_fail (member == NULL ||
2457                             _dbus_check_is_valid_member (member),
2458                             FALSE);
2459
2460   return set_or_delete_string_field (message,
2461                                      DBUS_HEADER_FIELD_MEMBER,
2462                                      DBUS_TYPE_STRING,
2463                                      member);
2464 }
2465
2466 /**
2467  * Gets the interface member being invoked
2468  * (DBUS_MESSAGE_TYPE_METHOD_CALL) or emitted
2469  * (DBUS_MESSAGE_TYPE_SIGNAL). Returns #NULL if none.
2470  *
2471  * @param message the message
2472  * @returns the member name (should not be freed) or #NULL
2473  */
2474 const char*
2475 dbus_message_get_member (DBusMessage *message)
2476 {
2477   const char *v;
2478
2479   _dbus_return_val_if_fail (message != NULL, NULL);
2480
2481   v = NULL; /* in case field doesn't exist */
2482   _dbus_header_get_field_basic (&message->header,
2483                                 DBUS_HEADER_FIELD_MEMBER,
2484                                 DBUS_TYPE_STRING,
2485                                 &v);
2486   return v;
2487 }
2488
2489 /**
2490  * Sets the name of the error (DBUS_MESSAGE_TYPE_ERROR).
2491  * The name is fully-qualified (namespaced).
2492  *
2493  * @param message the message
2494  * @param error_name the name or #NULL to unset
2495  * @returns #FALSE if not enough memory
2496  */
2497 dbus_bool_t
2498 dbus_message_set_error_name (DBusMessage  *message,
2499                              const char   *error_name)
2500 {
2501   _dbus_return_val_if_fail (message != NULL, FALSE);
2502   _dbus_return_val_if_fail (!message->locked, FALSE);
2503   _dbus_return_val_if_fail (error_name == NULL ||
2504                             _dbus_check_is_valid_error_name (error_name),
2505                             FALSE);
2506
2507   return set_or_delete_string_field (message,
2508                                      DBUS_HEADER_FIELD_ERROR_NAME,
2509                                      DBUS_TYPE_STRING,
2510                                      error_name);
2511 }
2512
2513 /**
2514  * Gets the error name (DBUS_MESSAGE_TYPE_ERROR only)
2515  * or #NULL if none.
2516  *
2517  * @param message the message
2518  * @returns the error name (should not be freed) or #NULL
2519  */
2520 const char*
2521 dbus_message_get_error_name (DBusMessage *message)
2522 {
2523   const char *v;
2524
2525   _dbus_return_val_if_fail (message != NULL, NULL);
2526
2527   v = NULL; /* in case field doesn't exist */
2528   _dbus_header_get_field_basic (&message->header,
2529                                 DBUS_HEADER_FIELD_ERROR_NAME,
2530                                 DBUS_TYPE_STRING,
2531                                 &v);
2532   return v;
2533 }
2534
2535 /**
2536  * Sets the message's destination. The destination is the name of
2537  * another connection on the bus and may be either the unique name
2538  * assigned by the bus to each connection, or a well-known name
2539  * specified in advance.
2540  *
2541  * @param message the message
2542  * @param destination the destination name or #NULL to unset
2543  * @returns #FALSE if not enough memory
2544  */
2545 dbus_bool_t
2546 dbus_message_set_destination (DBusMessage  *message,
2547                               const char   *destination)
2548 {
2549   _dbus_return_val_if_fail (message != NULL, FALSE);
2550   _dbus_return_val_if_fail (!message->locked, FALSE);
2551   _dbus_return_val_if_fail (destination == NULL ||
2552                             _dbus_check_is_valid_bus_name (destination),
2553                             FALSE);
2554
2555   return set_or_delete_string_field (message,
2556                                      DBUS_HEADER_FIELD_DESTINATION,
2557                                      DBUS_TYPE_STRING,
2558                                      destination);
2559 }
2560
2561 /**
2562  * Gets the destination of a message or #NULL if there is none set.
2563  *
2564  * @param message the message
2565  * @returns the message destination (should not be freed) or #NULL
2566  */
2567 const char*
2568 dbus_message_get_destination (DBusMessage *message)
2569 {
2570   const char *v;
2571
2572   _dbus_return_val_if_fail (message != NULL, NULL);
2573
2574   v = NULL; /* in case field doesn't exist */
2575   _dbus_header_get_field_basic (&message->header,
2576                                 DBUS_HEADER_FIELD_DESTINATION,
2577                                 DBUS_TYPE_STRING,
2578                                 &v);
2579   return v;
2580 }
2581
2582 /**
2583  * Sets the message sender.
2584  *
2585  * @param message the message
2586  * @param sender the sender or #NULL to unset
2587  * @returns #FALSE if not enough memory
2588  */
2589 dbus_bool_t
2590 dbus_message_set_sender (DBusMessage  *message,
2591                          const char   *sender)
2592 {
2593   _dbus_return_val_if_fail (message != NULL, FALSE);
2594   _dbus_return_val_if_fail (!message->locked, FALSE);
2595   _dbus_return_val_if_fail (sender == NULL ||
2596                             _dbus_check_is_valid_bus_name (sender),
2597                             FALSE);
2598
2599   return set_or_delete_string_field (message,
2600                                      DBUS_HEADER_FIELD_SENDER,
2601                                      DBUS_TYPE_STRING,
2602                                      sender);
2603 }
2604
2605 /**
2606  * Gets the unique name of the connection which originated this
2607  * message, or #NULL if unknown or inapplicable. The sender is filled
2608  * in by the message bus.
2609  *
2610  * @param message the message
2611  * @returns the unique name of the sender or #NULL
2612  */
2613 const char*
2614 dbus_message_get_sender (DBusMessage *message)
2615 {
2616   const char *v;
2617
2618   _dbus_return_val_if_fail (message != NULL, NULL);
2619
2620   v = NULL; /* in case field doesn't exist */
2621   _dbus_header_get_field_basic (&message->header,
2622                                 DBUS_HEADER_FIELD_SENDER,
2623                                 DBUS_TYPE_STRING,
2624                                 &v);
2625   return v;
2626 }
2627
2628 /**
2629  * Gets the type signature of the message, i.e. the arguments in the
2630  * message payload. The signature includes only "in" arguments for
2631  * #DBUS_MESSAGE_TYPE_METHOD_CALL and only "out" arguments for
2632  * #DBUS_MESSAGE_TYPE_METHOD_RETURN, so is slightly different from
2633  * what you might expect (it does not include the signature of the
2634  * entire C++-style method).
2635  *
2636  * The signature is a string made up of type codes such as
2637  * #DBUS_TYPE_INT32. The string is terminated with nul (nul is also
2638  * the value of #DBUS_TYPE_INVALID).
2639  *
2640  * @param message the message
2641  * @returns the type signature
2642  */
2643 const char*
2644 dbus_message_get_signature (DBusMessage *message)
2645 {
2646   const DBusString *type_str;
2647   int type_pos;
2648
2649   _dbus_return_val_if_fail (message != NULL, NULL);
2650
2651   get_const_signature (&message->header, &type_str, &type_pos);
2652
2653   return _dbus_string_get_const_data_len (type_str, type_pos, 0);
2654 }
2655
2656 static dbus_bool_t
2657 _dbus_message_has_type_interface_member (DBusMessage *message,
2658                                          int          type,
2659                                          const char  *interface,
2660                                          const char  *member)
2661 {
2662   const char *n;
2663
2664   _dbus_assert (message != NULL);
2665   _dbus_assert (interface != NULL);
2666   _dbus_assert (member != NULL);
2667
2668   if (dbus_message_get_type (message) != type)
2669     return FALSE;
2670
2671   /* Optimize by checking the short member name first
2672    * instead of the longer interface name
2673    */
2674
2675   n = dbus_message_get_member (message);
2676
2677   if (n && strcmp (n, member) == 0)
2678     {
2679       n = dbus_message_get_interface (message);
2680
2681       if (n == NULL || strcmp (n, interface) == 0)
2682         return TRUE;
2683     }
2684
2685   return FALSE;
2686 }
2687
2688 /**
2689  * Checks whether the message is a method call with the given
2690  * interface and member fields.  If the message is not
2691  * #DBUS_MESSAGE_TYPE_METHOD_CALL, or has a different interface or
2692  * member field, returns #FALSE. If the interface field is missing,
2693  * then it will be assumed equal to the provided interface.  The D-BUS
2694  * protocol allows method callers to leave out the interface name.
2695  *
2696  * @param message the message
2697  * @param interface the name to check (must not be #NULL)
2698  * @param method the name to check (must not be #NULL)
2699  *
2700  * @returns #TRUE if the message is the specified method call
2701  */
2702 dbus_bool_t
2703 dbus_message_is_method_call (DBusMessage *message,
2704                              const char  *interface,
2705                              const char  *method)
2706 {
2707   _dbus_return_val_if_fail (message != NULL, FALSE);
2708   _dbus_return_val_if_fail (interface != NULL, FALSE);
2709   _dbus_return_val_if_fail (method != NULL, FALSE);
2710   /* don't check that interface/method are valid since it would be
2711    * expensive, and not catch many common errors
2712    */
2713
2714   return _dbus_message_has_type_interface_member (message,
2715                                                   DBUS_MESSAGE_TYPE_METHOD_CALL,
2716                                                   interface, method);
2717 }
2718
2719 /**
2720  * Checks whether the message is a signal with the given interface and
2721  * member fields.  If the message is not #DBUS_MESSAGE_TYPE_SIGNAL, or
2722  * has a different interface or member field, returns #FALSE.  If the
2723  * interface field in the message is missing, it is assumed to match
2724  * any interface you pass in to this function.
2725  *
2726  * @param message the message
2727  * @param interface the name to check (must not be #NULL)
2728  * @param signal_name the name to check (must not be #NULL)
2729  *
2730  * @returns #TRUE if the message is the specified signal
2731  */
2732 dbus_bool_t
2733 dbus_message_is_signal (DBusMessage *message,
2734                         const char  *interface,
2735                         const char  *signal_name)
2736 {
2737   _dbus_return_val_if_fail (message != NULL, FALSE);
2738   _dbus_return_val_if_fail (interface != NULL, FALSE);
2739   _dbus_return_val_if_fail (signal_name != NULL, FALSE);
2740   /* don't check that interface/name are valid since it would be
2741    * expensive, and not catch many common errors
2742    */
2743
2744   return _dbus_message_has_type_interface_member (message,
2745                                                   DBUS_MESSAGE_TYPE_SIGNAL,
2746                                                   interface, signal_name);
2747 }
2748
2749 /**
2750  * Checks whether the message is an error reply with the given error
2751  * name.  If the message is not #DBUS_MESSAGE_TYPE_ERROR, or has a
2752  * different name, returns #FALSE.
2753  *
2754  * @param message the message
2755  * @param error_name the name to check (must not be #NULL)
2756  *
2757  * @returns #TRUE if the message is the specified error
2758  */
2759 dbus_bool_t
2760 dbus_message_is_error (DBusMessage *message,
2761                        const char  *error_name)
2762 {
2763   const char *n;
2764
2765   _dbus_return_val_if_fail (message != NULL, FALSE);
2766   _dbus_return_val_if_fail (error_name != NULL, FALSE);
2767   /* don't check that error_name is valid since it would be expensive,
2768    * and not catch many common errors
2769    */
2770
2771   if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_ERROR)
2772     return FALSE;
2773
2774   n = dbus_message_get_error_name (message);
2775
2776   if (n && strcmp (n, error_name) == 0)
2777     return TRUE;
2778   else
2779     return FALSE;
2780 }
2781
2782 /**
2783  * Checks whether the message was sent to the given name.  If the
2784  * message has no destination specified or has a different
2785  * destination, returns #FALSE.
2786  *
2787  * @param message the message
2788  * @param name the name to check (must not be #NULL)
2789  *
2790  * @returns #TRUE if the message has the given destination name
2791  */
2792 dbus_bool_t
2793 dbus_message_has_destination (DBusMessage  *message,
2794                               const char   *name)
2795 {
2796   const char *s;
2797
2798   _dbus_return_val_if_fail (message != NULL, FALSE);
2799   _dbus_return_val_if_fail (name != NULL, FALSE);
2800   /* don't check that name is valid since it would be expensive, and
2801    * not catch many common errors
2802    */
2803
2804   s = dbus_message_get_destination (message);
2805
2806   if (s && strcmp (s, name) == 0)
2807     return TRUE;
2808   else
2809     return FALSE;
2810 }
2811
2812 /**
2813  * Checks whether the message has the given unique name as its sender.
2814  * If the message has no sender specified or has a different sender,
2815  * returns #FALSE. Note that a peer application will always have the
2816  * unique name of the connection as the sender. So you can't use this
2817  * function to see whether a sender owned a well-known name.
2818  *
2819  * Messages from the bus itself will have #DBUS_SERVICE_ORG_FREEDESKTOP_DBUS
2820  * as the sender.
2821  *
2822  * @param message the message
2823  * @param name the name to check (must not be #NULL)
2824  *
2825  * @returns #TRUE if the message has the given sender
2826  */
2827 dbus_bool_t
2828 dbus_message_has_sender (DBusMessage  *message,
2829                          const char   *name)
2830 {
2831   const char *s;
2832
2833   _dbus_return_val_if_fail (message != NULL, FALSE);
2834   _dbus_return_val_if_fail (name != NULL, FALSE);
2835   /* don't check that name is valid since it would be expensive, and
2836    * not catch many common errors
2837    */
2838
2839   s = dbus_message_get_sender (message);
2840
2841   if (s && strcmp (s, name) == 0)
2842     return TRUE;
2843   else
2844     return FALSE;
2845 }
2846
2847 /**
2848  * Checks whether the message has the given signature; see
2849  * dbus_message_get_signature() for more details on what the signature
2850  * looks like.
2851  *
2852  * @param message the message
2853  * @param signature typecode array
2854  * @returns #TRUE if message has the given signature
2855 */
2856 dbus_bool_t
2857 dbus_message_has_signature (DBusMessage   *message,
2858                             const char    *signature)
2859 {
2860   const char *s;
2861
2862   _dbus_return_val_if_fail (message != NULL, FALSE);
2863   _dbus_return_val_if_fail (signature != NULL, FALSE);
2864   /* don't check that signature is valid since it would be expensive,
2865    * and not catch many common errors
2866    */
2867
2868   s = dbus_message_get_signature (message);
2869
2870   if (s && strcmp (s, signature) == 0)
2871     return TRUE;
2872   else
2873     return FALSE;
2874 }
2875
2876 /**
2877  * Sets a #DBusError based on the contents of the given
2878  * message. The error is only set if the message
2879  * is an error message, as in DBUS_MESSAGE_TYPE_ERROR.
2880  * The name of the error is set to the name of the message,
2881  * and the error message is set to the first argument
2882  * if the argument exists and is a string.
2883  *
2884  * The return value indicates whether the error was set (the error is
2885  * set if and only if the message is an error message).  So you can
2886  * check for an error reply and convert it to DBusError in one go:
2887  * @code
2888  *  if (dbus_set_error_from_message (error, reply))
2889  *    return error;
2890  *  else
2891  *    process reply;
2892  * @endcode
2893  *
2894  * @param error the error to set
2895  * @param message the message to set it from
2896  * @returns #TRUE if dbus_message_get_is_error() returns #TRUE for the message
2897  */
2898 dbus_bool_t
2899 dbus_set_error_from_message (DBusError   *error,
2900                              DBusMessage *message)
2901 {
2902   const char *str;
2903
2904   _dbus_return_val_if_fail (message != NULL, FALSE);
2905   _dbus_return_val_if_error_is_set (error, FALSE);
2906
2907   if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_ERROR)
2908     return FALSE;
2909
2910   str = NULL;
2911   dbus_message_get_args (message, NULL,
2912                          DBUS_TYPE_STRING, &str,
2913                          DBUS_TYPE_INVALID);
2914
2915   dbus_set_error (error, dbus_message_get_error_name (message),
2916                   str ? "%s" : NULL, str);
2917
2918   return TRUE;
2919 }
2920
2921 /** @} */
2922
2923 /**
2924  * @addtogroup DBusMessageInternals
2925  *
2926  * @{
2927  */
2928
2929 /**
2930  * The initial buffer size of the message loader.
2931  *
2932  * @todo this should be based on min header size plus some average
2933  * body size, or something. Or rather, the min header size only, if we
2934  * want to try to read only the header, store that in a DBusMessage,
2935  * then read only the body and store that, etc., depends on
2936  * how we optimize _dbus_message_loader_get_buffer() and what
2937  * the exact message format is.
2938  */
2939 #define INITIAL_LOADER_DATA_LEN 32
2940
2941 /**
2942  * Creates a new message loader. Returns #NULL if memory can't
2943  * be allocated.
2944  *
2945  * @returns new loader, or #NULL.
2946  */
2947 DBusMessageLoader*
2948 _dbus_message_loader_new (void)
2949 {
2950   DBusMessageLoader *loader;
2951
2952   loader = dbus_new0 (DBusMessageLoader, 1);
2953   if (loader == NULL)
2954     return NULL;
2955   
2956   loader->refcount = 1;
2957
2958   loader->corrupted = FALSE;
2959   loader->corruption_reason = DBUS_VALID;
2960   
2961   /* Try to cap message size at something that won't *totally* hose
2962    * the system if we have a couple of them.
2963    */
2964   loader->max_message_size = _DBUS_ONE_MEGABYTE * 32;
2965
2966   if (!_dbus_string_init (&loader->data))
2967     {
2968       dbus_free (loader);
2969       return NULL;
2970     }
2971
2972   /* preallocate the buffer for speed, ignore failure */
2973   _dbus_string_set_length (&loader->data, INITIAL_LOADER_DATA_LEN);
2974   _dbus_string_set_length (&loader->data, 0);
2975
2976   return loader;
2977 }
2978
2979 /**
2980  * Increments the reference count of the loader.
2981  *
2982  * @param loader the loader.
2983  * @returns the loader
2984  */
2985 DBusMessageLoader *
2986 _dbus_message_loader_ref (DBusMessageLoader *loader)
2987 {
2988   loader->refcount += 1;
2989
2990   return loader;
2991 }
2992
2993 /**
2994  * Decrements the reference count of the loader and finalizes the
2995  * loader when the count reaches zero.
2996  *
2997  * @param loader the loader.
2998  */
2999 void
3000 _dbus_message_loader_unref (DBusMessageLoader *loader)
3001 {
3002   loader->refcount -= 1;
3003   if (loader->refcount == 0)
3004     {
3005       _dbus_list_foreach (&loader->messages,
3006                           (DBusForeachFunction) dbus_message_unref,
3007                           NULL);
3008       _dbus_list_clear (&loader->messages);
3009       _dbus_string_free (&loader->data);
3010       dbus_free (loader);
3011     }
3012 }
3013
3014 /**
3015  * Gets the buffer to use for reading data from the network.  Network
3016  * data is read directly into an allocated buffer, which is then used
3017  * in the DBusMessage, to avoid as many extra memcpy's as possible.
3018  * The buffer must always be returned immediately using
3019  * _dbus_message_loader_return_buffer(), even if no bytes are
3020  * successfully read.
3021  *
3022  * @todo this function can be a lot more clever. For example
3023  * it can probably always return a buffer size to read exactly
3024  * the body of the next message, thus avoiding any memory wastage
3025  * or reallocs.
3026  *
3027  * @todo we need to enforce a max length on strings in header fields.
3028  *
3029  * @param loader the message loader.
3030  * @param buffer the buffer
3031  */
3032 void
3033 _dbus_message_loader_get_buffer (DBusMessageLoader  *loader,
3034                                  DBusString        **buffer)
3035 {
3036   _dbus_assert (!loader->buffer_outstanding);
3037
3038   *buffer = &loader->data;
3039
3040   loader->buffer_outstanding = TRUE;
3041 }
3042
3043 /**
3044  * Returns a buffer obtained from _dbus_message_loader_get_buffer(),
3045  * indicating to the loader how many bytes of the buffer were filled
3046  * in. This function must always be called, even if no bytes were
3047  * successfully read.
3048  *
3049  * @param loader the loader.
3050  * @param buffer the buffer.
3051  * @param bytes_read number of bytes that were read into the buffer.
3052  */
3053 void
3054 _dbus_message_loader_return_buffer (DBusMessageLoader  *loader,
3055                                     DBusString         *buffer,
3056                                     int                 bytes_read)
3057 {
3058   _dbus_assert (loader->buffer_outstanding);
3059   _dbus_assert (buffer == &loader->data);
3060
3061   loader->buffer_outstanding = FALSE;
3062 }
3063
3064 /*
3065  * FIXME when we move the header out of the buffer, that memmoves all
3066  * buffered messages. Kind of crappy.
3067  *
3068  * Also we copy the header and body, which is kind of crappy.  To
3069  * avoid this, we have to allow header and body to be in a single
3070  * memory block, which is good for messages we read and bad for
3071  * messages we are creating. But we could move_len() the buffer into
3072  * this single memory block, and move_len() will just swap the buffers
3073  * if you're moving the entire buffer replacing the dest string.
3074  *
3075  * We could also have the message loader tell the transport how many
3076  * bytes to read; so it would first ask for some arbitrary number like
3077  * 256, then if the message was incomplete it would use the
3078  * header/body len to ask for exactly the size of the message (or
3079  * blocks the size of a typical kernel buffer for the socket). That
3080  * way we don't get trailing bytes in the buffer that have to be
3081  * memmoved. Though I suppose we also don't have a chance of reading a
3082  * bunch of small messages at once, so the optimization may be stupid.
3083  *
3084  * Another approach would be to keep a "start" index into
3085  * loader->data and only delete it occasionally, instead of after
3086  * each message is loaded.
3087  *
3088  * load_message() returns FALSE if not enough memory OR the loader was corrupted
3089  */
3090 static dbus_bool_t
3091 load_message (DBusMessageLoader *loader,
3092               DBusMessage       *message,
3093               int                byte_order,
3094               int                fields_array_len,
3095               int                header_len,
3096               int                body_len)
3097 {
3098   dbus_bool_t oom;
3099   DBusValidity validity;
3100   const DBusString *type_str;
3101   int type_pos;
3102   DBusValidationMode mode;
3103
3104   mode = DBUS_VALIDATION_MODE_DATA_IS_UNTRUSTED;
3105   
3106   oom = FALSE;
3107
3108 #if 0
3109   _dbus_verbose_bytes_of_string (&loader->data, 0, header_len /* + body_len */);
3110 #endif
3111
3112   /* 1. VALIDATE AND COPY OVER HEADER */
3113   _dbus_assert (_dbus_string_get_length (&message->header.data) == 0);
3114   _dbus_assert ((header_len + body_len) <= _dbus_string_get_length (&loader->data));
3115
3116   if (!_dbus_header_load (&message->header,
3117                           mode,
3118                           &validity,
3119                           byte_order,
3120                           fields_array_len,
3121                           header_len,
3122                           body_len,
3123                           &loader->data, 0,
3124                           _dbus_string_get_length (&loader->data)))
3125     {
3126       _dbus_verbose ("Failed to load header for new message code %d\n", validity);
3127       if (validity == DBUS_VALID)
3128         oom = TRUE;
3129       else
3130         {
3131           loader->corrupted = TRUE;
3132           loader->corruption_reason = validity;
3133         }
3134       goto failed;
3135     }
3136
3137   _dbus_assert (validity == DBUS_VALID);
3138
3139   message->byte_order = byte_order;
3140
3141   /* 2. VALIDATE BODY */
3142   if (mode != DBUS_VALIDATION_MODE_WE_TRUST_THIS_DATA_ABSOLUTELY)
3143     {
3144       get_const_signature (&message->header, &type_str, &type_pos);
3145       
3146       /* Because the bytes_remaining arg is NULL, this validates that the
3147        * body is the right length
3148        */
3149       validity = _dbus_validate_body_with_reason (type_str,
3150                                                   type_pos,
3151                                                   byte_order,
3152                                                   NULL,
3153                                                   &loader->data,
3154                                                   header_len,
3155                                                   body_len);
3156       if (validity != DBUS_VALID)
3157         {
3158           _dbus_verbose ("Failed to validate message body code %d\n", validity);
3159
3160           loader->corrupted = TRUE;
3161           loader->corruption_reason = validity;
3162           
3163           goto failed;
3164         }
3165     }
3166
3167   /* 3. COPY OVER BODY AND QUEUE MESSAGE */
3168
3169   if (!_dbus_list_append (&loader->messages, message))
3170     {
3171       _dbus_verbose ("Failed to append new message to loader queue\n");
3172       oom = TRUE;
3173       goto failed;
3174     }
3175
3176   _dbus_assert (_dbus_string_get_length (&message->body) == 0);
3177   _dbus_assert (_dbus_string_get_length (&loader->data) >=
3178                 (header_len + body_len));
3179
3180   if (!_dbus_string_copy_len (&loader->data, header_len, body_len, &message->body, 0))
3181     {
3182       _dbus_verbose ("Failed to move body into new message\n");
3183       oom = TRUE;
3184       goto failed;
3185     }
3186
3187   _dbus_string_delete (&loader->data, 0, header_len + body_len);
3188
3189   _dbus_assert (_dbus_string_get_length (&message->header.data) == header_len);
3190   _dbus_assert (_dbus_string_get_length (&message->body) == body_len);
3191
3192   _dbus_verbose ("Loaded message %p\n", message);
3193
3194   _dbus_assert (!oom);
3195   _dbus_assert (!loader->corrupted);
3196   _dbus_assert (loader->messages != NULL);
3197   _dbus_assert (_dbus_list_find_last (&loader->messages, message) != NULL);
3198
3199   return TRUE;
3200
3201  failed:
3202
3203   /* Clean up */
3204
3205   /* does nothing if the message isn't in the list */
3206   _dbus_list_remove_last (&loader->messages, message);
3207   
3208   if (oom)
3209     _dbus_assert (!loader->corrupted);
3210   else
3211     _dbus_assert (loader->corrupted);
3212
3213   _dbus_verbose_bytes_of_string (&loader->data, 0, _dbus_string_get_length (&loader->data));
3214
3215   return FALSE;
3216 }
3217
3218 /**
3219  * Converts buffered data into messages, if we have enough data.  If
3220  * we don't have enough data, does nothing.
3221  *
3222  * @todo we need to check that the proper named header fields exist
3223  * for each message type.
3224  *
3225  * @todo If a message has unknown type, we should probably eat it
3226  * right here rather than passing it out to applications.  However
3227  * it's not an error to see messages of unknown type.
3228  *
3229  * @param loader the loader.
3230  * @returns #TRUE if we had enough memory to finish.
3231  */
3232 dbus_bool_t
3233 _dbus_message_loader_queue_messages (DBusMessageLoader *loader)
3234 {
3235   while (!loader->corrupted &&
3236          _dbus_string_get_length (&loader->data) >= DBUS_MINIMUM_HEADER_SIZE)
3237     {
3238       DBusValidity validity;
3239       int byte_order, fields_array_len, header_len, body_len;
3240
3241       if (_dbus_header_have_message_untrusted (loader->max_message_size,
3242                                                &validity,
3243                                                &byte_order,
3244                                                &fields_array_len,
3245                                                &header_len,
3246                                                &body_len,
3247                                                &loader->data, 0,
3248                                                _dbus_string_get_length (&loader->data)))
3249         {
3250           DBusMessage *message;
3251
3252           _dbus_assert (validity == DBUS_VALID);
3253
3254           message = dbus_message_new_empty_header ();
3255           if (message == NULL)
3256             return FALSE;
3257
3258           if (!load_message (loader, message,
3259                              byte_order, fields_array_len,
3260                              header_len, body_len))
3261             {
3262               dbus_message_unref (message);
3263               /* load_message() returns false if corrupted or OOM; if
3264                * corrupted then return TRUE for not OOM
3265                */
3266               return loader->corrupted;
3267             }
3268
3269           _dbus_assert (loader->messages != NULL);
3270           _dbus_assert (_dbus_list_find_last (&loader->messages, message) != NULL);
3271         }
3272       else
3273         {
3274           _dbus_verbose ("Initial peek at header says we don't have a whole message yet, or data broken with invalid code %d\n",
3275                          validity);
3276           if (validity != DBUS_VALID)
3277             {
3278               loader->corrupted = TRUE;
3279               loader->corruption_reason = validity;
3280             }
3281           return TRUE;
3282         }
3283     }
3284
3285   return TRUE;
3286 }
3287
3288 /**
3289  * Peeks at first loaded message, returns #NULL if no messages have
3290  * been queued.
3291  *
3292  * @param loader the loader.
3293  * @returns the next message, or #NULL if none.
3294  */
3295 DBusMessage*
3296 _dbus_message_loader_peek_message (DBusMessageLoader *loader)
3297 {
3298   if (loader->messages)
3299     return loader->messages->data;
3300   else
3301     return NULL;
3302 }
3303
3304 /**
3305  * Pops a loaded message (passing ownership of the message
3306  * to the caller). Returns #NULL if no messages have been
3307  * queued.
3308  *
3309  * @param loader the loader.
3310  * @returns the next message, or #NULL if none.
3311  */
3312 DBusMessage*
3313 _dbus_message_loader_pop_message (DBusMessageLoader *loader)
3314 {
3315   return _dbus_list_pop_first (&loader->messages);
3316 }
3317
3318 /**
3319  * Pops a loaded message inside a list link (passing ownership of the
3320  * message and link to the caller). Returns #NULL if no messages have
3321  * been loaded.
3322  *
3323  * @param loader the loader.
3324  * @returns the next message link, or #NULL if none.
3325  */
3326 DBusList*
3327 _dbus_message_loader_pop_message_link (DBusMessageLoader *loader)
3328 {
3329   return _dbus_list_pop_first_link (&loader->messages);
3330 }
3331
3332 /**
3333  * Returns a popped message link, used to undo a pop.
3334  *
3335  * @param loader the loader
3336  * @param link the link with a message in it
3337  */
3338 void
3339 _dbus_message_loader_putback_message_link (DBusMessageLoader  *loader,
3340                                            DBusList           *link)
3341 {
3342   _dbus_list_prepend_link (&loader->messages, link);
3343 }
3344
3345 /**
3346  * Checks whether the loader is confused due to bad data.
3347  * If messages are received that are invalid, the
3348  * loader gets confused and gives up permanently.
3349  * This state is called "corrupted."
3350  *
3351  * @param loader the loader
3352  * @returns #TRUE if the loader is hosed.
3353  */
3354 dbus_bool_t
3355 _dbus_message_loader_get_is_corrupted (DBusMessageLoader *loader)
3356 {
3357   _dbus_assert ((loader->corrupted && loader->corruption_reason != DBUS_VALID) ||
3358                 (!loader->corrupted && loader->corruption_reason == DBUS_VALID));
3359   return loader->corrupted;
3360 }
3361
3362 /**
3363  * Sets the maximum size message we allow.
3364  *
3365  * @param loader the loader
3366  * @param size the max message size in bytes
3367  */
3368 void
3369 _dbus_message_loader_set_max_message_size (DBusMessageLoader  *loader,
3370                                            long                size)
3371 {
3372   if (size > DBUS_MAXIMUM_MESSAGE_LENGTH)
3373     {
3374       _dbus_verbose ("clamping requested max message size %ld to %d\n",
3375                      size, DBUS_MAXIMUM_MESSAGE_LENGTH);
3376       size = DBUS_MAXIMUM_MESSAGE_LENGTH;
3377     }
3378   loader->max_message_size = size;
3379 }
3380
3381 /**
3382  * Gets the maximum allowed message size in bytes.
3383  *
3384  * @param loader the loader
3385  * @returns max size in bytes
3386  */
3387 long
3388 _dbus_message_loader_get_max_message_size (DBusMessageLoader  *loader)
3389 {
3390   return loader->max_message_size;
3391 }
3392
3393 static DBusDataSlotAllocator slot_allocator;
3394 _DBUS_DEFINE_GLOBAL_LOCK (message_slots);
3395
3396 /**
3397  * Allocates an integer ID to be used for storing application-specific
3398  * data on any DBusMessage. The allocated ID may then be used
3399  * with dbus_message_set_data() and dbus_message_get_data().
3400  * The passed-in slot must be initialized to -1, and is filled in
3401  * with the slot ID. If the passed-in slot is not -1, it's assumed
3402  * to be already allocated, and its refcount is incremented.
3403  *
3404  * The allocated slot is global, i.e. all DBusMessage objects will
3405  * have a slot with the given integer ID reserved.
3406  *
3407  * @param slot_p address of a global variable storing the slot
3408  * @returns #FALSE on failure (no memory)
3409  */
3410 dbus_bool_t
3411 dbus_message_allocate_data_slot (dbus_int32_t *slot_p)
3412 {
3413   return _dbus_data_slot_allocator_alloc (&slot_allocator,
3414                                           _DBUS_LOCK_NAME (message_slots),
3415                                           slot_p);
3416 }
3417
3418 /**
3419  * Deallocates a global ID for message data slots.
3420  * dbus_message_get_data() and dbus_message_set_data() may no
3421  * longer be used with this slot.  Existing data stored on existing
3422  * DBusMessage objects will be freed when the message is
3423  * finalized, but may not be retrieved (and may only be replaced if
3424  * someone else reallocates the slot).  When the refcount on the
3425  * passed-in slot reaches 0, it is set to -1.
3426  *
3427  * @param slot_p address storing the slot to deallocate
3428  */
3429 void
3430 dbus_message_free_data_slot (dbus_int32_t *slot_p)
3431 {
3432   _dbus_return_if_fail (*slot_p >= 0);
3433
3434   _dbus_data_slot_allocator_free (&slot_allocator, slot_p);
3435 }
3436
3437 /**
3438  * Stores a pointer on a DBusMessage, along
3439  * with an optional function to be used for freeing
3440  * the data when the data is set again, or when
3441  * the message is finalized. The slot number
3442  * must have been allocated with dbus_message_allocate_data_slot().
3443  *
3444  * @param message the message
3445  * @param slot the slot number
3446  * @param data the data to store
3447  * @param free_data_func finalizer function for the data
3448  * @returns #TRUE if there was enough memory to store the data
3449  */
3450 dbus_bool_t
3451 dbus_message_set_data (DBusMessage     *message,
3452                        dbus_int32_t     slot,
3453                        void            *data,
3454                        DBusFreeFunction free_data_func)
3455 {
3456   DBusFreeFunction old_free_func;
3457   void *old_data;
3458   dbus_bool_t retval;
3459
3460   _dbus_return_val_if_fail (message != NULL, FALSE);
3461   _dbus_return_val_if_fail (slot >= 0, FALSE);
3462
3463   retval = _dbus_data_slot_list_set (&slot_allocator,
3464                                      &message->slot_list,
3465                                      slot, data, free_data_func,
3466                                      &old_free_func, &old_data);
3467
3468   if (retval)
3469     {
3470       /* Do the actual free outside the message lock */
3471       if (old_free_func)
3472         (* old_free_func) (old_data);
3473     }
3474
3475   return retval;
3476 }
3477
3478 /**
3479  * Retrieves data previously set with dbus_message_set_data().
3480  * The slot must still be allocated (must not have been freed).
3481  *
3482  * @param message the message
3483  * @param slot the slot to get data from
3484  * @returns the data, or #NULL if not found
3485  */
3486 void*
3487 dbus_message_get_data (DBusMessage   *message,
3488                        dbus_int32_t   slot)
3489 {
3490   void *res;
3491
3492   _dbus_return_val_if_fail (message != NULL, NULL);
3493
3494   res = _dbus_data_slot_list_get (&slot_allocator,
3495                                   &message->slot_list,
3496                                   slot);
3497
3498   return res;
3499 }
3500
3501 /**
3502  * Utility function to convert a machine-readable (not translated)
3503  * string into a D-BUS message type.
3504  *
3505  * @code
3506  *   "method_call"    -> DBUS_MESSAGE_TYPE_METHOD_CALL
3507  *   "method_return"  -> DBUS_MESSAGE_TYPE_METHOD_RETURN
3508  *   "signal"         -> DBUS_MESSAGE_TYPE_SIGNAL
3509  *   "error"          -> DBUS_MESSAGE_TYPE_ERROR
3510  *   anything else    -> DBUS_MESSAGE_TYPE_INVALID
3511  * @endcode
3512  *
3513  */
3514 int
3515 dbus_message_type_from_string (const char *type_str)
3516 {
3517   if (strcmp (type_str, "method_call") == 0)
3518     return DBUS_MESSAGE_TYPE_METHOD_CALL;
3519   if (strcmp (type_str, "method_return") == 0)
3520     return DBUS_MESSAGE_TYPE_METHOD_RETURN;
3521   else if (strcmp (type_str, "signal") == 0)
3522     return DBUS_MESSAGE_TYPE_SIGNAL;
3523   else if (strcmp (type_str, "error") == 0)
3524     return DBUS_MESSAGE_TYPE_ERROR;
3525   else
3526     return DBUS_MESSAGE_TYPE_INVALID;
3527 }
3528
3529 /**
3530  * Utility function to convert a D-BUS message type into a
3531  * machine-readable string (not translated).
3532  *
3533  * @code
3534  *   DBUS_MESSAGE_TYPE_METHOD_CALL    -> "method_call"
3535  *   DBUS_MESSAGE_TYPE_METHOD_RETURN  -> "method_return"
3536  *   DBUS_MESSAGE_TYPE_SIGNAL         -> "signal"
3537  *   DBUS_MESSAGE_TYPE_ERROR          -> "error"
3538  *   DBUS_MESSAGE_TYPE_INVALID        -> "invalid"
3539  * @endcode
3540  *
3541  */
3542 const char *
3543 dbus_message_type_to_string (int type)
3544 {
3545   switch (type)
3546     {
3547     case DBUS_MESSAGE_TYPE_METHOD_CALL:
3548       return "method_call";
3549     case DBUS_MESSAGE_TYPE_METHOD_RETURN:
3550       return "method_return";
3551     case DBUS_MESSAGE_TYPE_SIGNAL:
3552       return "signal";
3553     case DBUS_MESSAGE_TYPE_ERROR:
3554       return "error";
3555     default:
3556       return "invalid";
3557     }
3558 }
3559
3560 /** @} */
3561
3562 /* tests in dbus-message-util.c */