2005-01-18 Havoc Pennington <hp@redhat.com>
[platform/upstream/dbus.git] / dbus / dbus-protocol.h
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-protocol.h  D-Bus protocol constants
3  *
4  * Copyright (C) 2002, 2003  CodeFactory AB
5  * Copyright (C) 2004, 2005 Red Hat, Inc.
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 #ifndef DBUS_PROTOCOL_H
26 #define DBUS_PROTOCOL_H
27
28 /* Don't include anything in here from anywhere else. It's
29  * intended for use by any random library.
30  */
31
32 #ifdef  __cplusplus
33 extern "C" {
34 #endif
35
36 /* Message byte order */
37 #define DBUS_LITTLE_ENDIAN ('l')  /* LSB first */
38 #define DBUS_BIG_ENDIAN    ('B')  /* MSB first */
39
40 /* Protocol version */
41 #define DBUS_MAJOR_PROTOCOL_VERSION 1
42
43 /* Never a legitimate type */
44 #define DBUS_TYPE_INVALID       ((int) '\0')
45 #define DBUS_TYPE_INVALID_AS_STRING        "\0"
46
47 /* Primitive types */
48 #define DBUS_TYPE_BYTE          ((int) 'y')
49 #define DBUS_TYPE_BYTE_AS_STRING           "y"
50 #define DBUS_TYPE_BOOLEAN       ((int) 'b')
51 #define DBUS_TYPE_BOOLEAN_AS_STRING        "b"
52 #define DBUS_TYPE_INT32         ((int) 'i')
53 #define DBUS_TYPE_INT32_AS_STRING          "i"
54
55 #define DBUS_TYPE_UINT32        ((int) 'u')
56 #define DBUS_TYPE_UINT32_AS_STRING         "u"
57 #define DBUS_TYPE_INT64         ((int) 'x')
58 #define DBUS_TYPE_INT64_AS_STRING          "x"
59 #define DBUS_TYPE_UINT64        ((int) 't')
60 #define DBUS_TYPE_UINT64_AS_STRING         "t"
61
62 #define DBUS_TYPE_DOUBLE        ((int) 'd')
63 #define DBUS_TYPE_DOUBLE_AS_STRING         "d"
64 #define DBUS_TYPE_STRING        ((int) 's')
65 #define DBUS_TYPE_STRING_AS_STRING         "s"
66 #define DBUS_TYPE_OBJECT_PATH   ((int) 'o')
67 #define DBUS_TYPE_OBJECT_PATH_AS_STRING    "o"
68 #define DBUS_TYPE_SIGNATURE     ((int) 'g')
69 #define DBUS_TYPE_SIGNATURE_AS_STRING      "g"
70
71 /* Compound types */
72 #define DBUS_TYPE_ARRAY         ((int) 'a')
73 #define DBUS_TYPE_ARRAY_AS_STRING          "a"
74 #define DBUS_TYPE_VARIANT       ((int) 'v')
75 #define DBUS_TYPE_VARIANT_AS_STRING        "v"
76
77 /* STRUCT is sort of special since its code can't appear in a type string,
78  * instead DBUS_STRUCT_BEGIN_CHAR has to appear
79  */
80 #define DBUS_TYPE_STRUCT        ((int) 'r')
81 #define DBUS_TYPE_STRUCT_AS_STRING         "r"
82
83 /* Does not count INVALID */
84 #define DBUS_NUMBER_OF_TYPES    (13)
85
86 /* characters other than typecodes that appear in type signatures */
87 #define DBUS_STRUCT_BEGIN_CHAR   ((int) '(')
88 #define DBUS_STRUCT_BEGIN_CHAR_AS_STRING   "("
89 #define DBUS_STRUCT_END_CHAR     ((int) ')')
90 #define DBUS_STRUCT_END_CHAR_AS_STRING     ")"
91
92 /* Max length in bytes of a bus name, interface, or member (not object
93  * path, paths are unlimited). This is limited because lots of stuff
94  * is O(n) in this number, plus it would be obnoxious to type in a
95  * paragraph-long method name so most likely something like that would
96  * be an exploit.
97  */
98 #define DBUS_MAXIMUM_NAME_LENGTH 255
99
100 /* This one is 255 so it fits in a byte */
101 #define DBUS_MAXIMUM_SIGNATURE_LENGTH 255
102
103 /* Max length of a match rule string; to keep people from hosing the
104  * daemon with some huge rule
105  */
106 #define DBUS_MAXIMUM_MATCH_RULE_LENGTH 1024
107
108 /* Max length of a marshaled array in bytes (64M, 2^26) We use signed
109  * int for lengths so must be INT_MAX or less.  We need something a
110  * bit smaller than INT_MAX because the array is inside a message with
111  * header info, etc.  so an INT_MAX array wouldn't allow the message
112  * overhead.  The 64M number is an attempt at a larger number than
113  * we'd reasonably ever use, but small enough that your bus would chew
114  * through it fairly quickly without locking up forever. If you have
115  * data that's likely to be larger than this, you should probably be
116  * sending it in multiple incremental messages anyhow.
117  */
118 #define DBUS_MAXIMUM_ARRAY_LENGTH (67108864)
119 /* Number of bits you need in an unsigned to store the max array size */
120 #define DBUS_MAXIMUM_ARRAY_LENGTH_BITS 26
121
122 /* The maximum total message size including header and body; similar
123  * rationale to max array size.
124  */
125 #define DBUS_MAXIMUM_MESSAGE_LENGTH (DBUS_MAXIMUM_ARRAY_LENGTH * 2)
126 /* Number of bits you need in an unsigned to store the max message size */
127 #define DBUS_MAXIMUM_MESSAGE_LENGTH_BITS 27
128
129 /* Depth of recursion in the type tree. This is automatically limited
130  * to DBUS_MAXIMUM_SIGNATURE_LENGTH since you could only have an array
131  * of array of array of ... that fit in the max signature.  But that's
132  * probably a bit too large.
133  */
134 #define DBUS_MAXIMUM_TYPE_RECURSION_DEPTH 32
135
136 /* Types of message */
137 #define DBUS_MESSAGE_TYPE_INVALID       0
138 #define DBUS_MESSAGE_TYPE_METHOD_CALL   1
139 #define DBUS_MESSAGE_TYPE_METHOD_RETURN 2
140 #define DBUS_MESSAGE_TYPE_ERROR         3
141 #define DBUS_MESSAGE_TYPE_SIGNAL        4
142
143 /* Header flags */
144 #define DBUS_HEADER_FLAG_NO_REPLY_EXPECTED 0x1
145 #define DBUS_HEADER_FLAG_AUTO_START        0x2
146
147 /* Header fields */
148 #define DBUS_HEADER_FIELD_INVALID        0
149 #define DBUS_HEADER_FIELD_PATH           1
150 #define DBUS_HEADER_FIELD_INTERFACE      2
151 #define DBUS_HEADER_FIELD_MEMBER         3
152 #define DBUS_HEADER_FIELD_ERROR_NAME     4
153 #define DBUS_HEADER_FIELD_REPLY_SERIAL   5
154 #define DBUS_HEADER_FIELD_DESTINATION    6
155 #define DBUS_HEADER_FIELD_SENDER         7
156 #define DBUS_HEADER_FIELD_SIGNATURE      8
157
158 #define DBUS_HEADER_FIELD_LAST DBUS_HEADER_FIELD_SIGNATURE
159
160 /* Header format is defined as a signature:
161  *   byte                            byte order
162  *   byte                            message type ID
163  *   byte                            flags
164  *   byte                            protocol version
165  *   uint32                          body length
166  *   uint32                          serial
167  *   array of struct (byte,variant)  (field name, value)
168  *
169  * The length of the header can be computed as the
170  * fixed size of the initial data, plus the length of
171  * the array at the end, plus padding to an 8-boundary.
172  */
173 #define DBUS_HEADER_SIGNATURE                   \
174      DBUS_TYPE_BYTE_AS_STRING                   \
175      DBUS_TYPE_BYTE_AS_STRING                   \
176      DBUS_TYPE_BYTE_AS_STRING                   \
177      DBUS_TYPE_BYTE_AS_STRING                   \
178      DBUS_TYPE_UINT32_AS_STRING                 \
179      DBUS_TYPE_UINT32_AS_STRING                 \
180      DBUS_TYPE_ARRAY_AS_STRING                  \
181      DBUS_STRUCT_BEGIN_CHAR_AS_STRING           \
182      DBUS_TYPE_BYTE_AS_STRING                   \
183      DBUS_TYPE_VARIANT_AS_STRING                \
184      DBUS_STRUCT_END_CHAR_AS_STRING
185
186
187 /* Services */
188 #define DBUS_SERVICE_ORG_FREEDESKTOP_DBUS      "org.freedesktop.DBus"
189
190 /* Paths */
191 #define DBUS_PATH_ORG_FREEDESKTOP_DBUS  "/org/freedesktop/DBus"
192 #define DBUS_PATH_ORG_FREEDESKTOP_LOCAL "/org/freedesktop/Local"
193
194 /* Interfaces, these #define don't do much other than
195  * catch typos at compile time
196  */
197 #define DBUS_INTERFACE_ORG_FREEDESKTOP_DBUS  "org.freedesktop.DBus"
198 #define DBUS_INTERFACE_ORG_FREEDESKTOP_INTROSPECTABLE "org.freedesktop.Introspectable"
199
200 /* This is a special interface whose methods can only be invoked
201  * by the local implementation (messages from remote apps aren't
202  * allowed to specify this interface).
203  */
204 #define DBUS_INTERFACE_ORG_FREEDESKTOP_LOCAL "org.freedesktop.Local"
205
206 /* Owner flags */
207 #define DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT 0x1
208 #define DBUS_NAME_FLAG_REPLACE_EXISTING     0x2
209
210 /* Replies to request for a name */
211 #define DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER  1
212 #define DBUS_REQUEST_NAME_REPLY_IN_QUEUE       2
213 #define DBUS_REQUEST_NAME_REPLY_EXISTS         3
214 #define DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER  4
215
216 /* Replies to service starts */
217 #define DBUS_START_REPLY_SUCCESS         1
218 #define DBUS_START_REPLY_ALREADY_RUNNING 2
219
220 /* Errors */
221 /* WARNING these get autoconverted to an enum in dbus-glib.h. Thus,
222  * if you change the order it breaks the ABI. Keep them in order.
223  * Also, don't change the formatting since that will break the sed
224  * script.
225  */
226 #define DBUS_ERROR_FAILED                     "org.freedesktop.DBus.Error.Failed"
227 #define DBUS_ERROR_NO_MEMORY                  "org.freedesktop.DBus.Error.NoMemory"
228 #define DBUS_ERROR_SERVICE_UNKNOWN            "org.freedesktop.DBus.Error.ServiceUnknown"
229 #define DBUS_ERROR_NAME_HAS_NO_OWNER          "org.freedesktop.DBus.Error.NameHasNoOwner"
230 #define DBUS_ERROR_NO_REPLY                   "org.freedesktop.DBus.Error.NoReply"
231 #define DBUS_ERROR_IO_ERROR                   "org.freedesktop.DBus.Error.IOError"
232 #define DBUS_ERROR_BAD_ADDRESS                "org.freedesktop.DBus.Error.BadAddress"
233 #define DBUS_ERROR_NOT_SUPPORTED              "org.freedesktop.DBus.Error.NotSupported"
234 #define DBUS_ERROR_LIMITS_EXCEEDED            "org.freedesktop.DBus.Error.LimitsExceeded"
235 #define DBUS_ERROR_ACCESS_DENIED              "org.freedesktop.DBus.Error.AccessDenied"
236 #define DBUS_ERROR_AUTH_FAILED                "org.freedesktop.DBus.Error.AuthFailed"
237 #define DBUS_ERROR_NO_SERVER                  "org.freedesktop.DBus.Error.NoServer"
238 #define DBUS_ERROR_TIMEOUT                    "org.freedesktop.DBus.Error.Timeout"
239 #define DBUS_ERROR_NO_NETWORK                 "org.freedesktop.DBus.Error.NoNetwork"
240 #define DBUS_ERROR_ADDRESS_IN_USE             "org.freedesktop.DBus.Error.AddressInUse"
241 #define DBUS_ERROR_DISCONNECTED               "org.freedesktop.DBus.Error.Disconnected"
242 #define DBUS_ERROR_INVALID_ARGS               "org.freedesktop.DBus.Error.InvalidArgs"
243 #define DBUS_ERROR_FILE_NOT_FOUND             "org.freedesktop.DBus.Error.FileNotFound"
244 #define DBUS_ERROR_UNKNOWN_METHOD             "org.freedesktop.DBus.Error.UnknownMethod"
245 #define DBUS_ERROR_TIMED_OUT                  "org.freedesktop.DBus.Error.TimedOut"
246 #define DBUS_ERROR_MATCH_RULE_NOT_FOUND       "org.freedesktop.DBus.Error.MatchRuleNotFound"
247 #define DBUS_ERROR_MATCH_RULE_INVALID         "org.freedesktop.DBus.Error.MatchRuleInvalid"
248 #define DBUS_ERROR_SPAWN_EXEC_FAILED          "org.freedesktop.DBus.Error.Spawn.ExecFailed"
249 #define DBUS_ERROR_SPAWN_FORK_FAILED          "org.freedesktop.DBus.Error.Spawn.ForkFailed"
250 #define DBUS_ERROR_SPAWN_CHILD_EXITED         "org.freedesktop.DBus.Error.Spawn.ChildExited"
251 #define DBUS_ERROR_SPAWN_CHILD_SIGNALED       "org.freedesktop.DBus.Error.Spawn.ChildSignaled"
252 #define DBUS_ERROR_SPAWN_FAILED               "org.freedesktop.DBus.Error.Spawn.Failed"
253 #define DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN    "org.freedesktop.DBus.Error.UnixProcessIdUnknown"
254
255 #ifdef __cplusplus
256 }
257 #endif
258
259 #endif /* DBUS_PROTOCOL_H */