Strip copyright headers from examples
[platform/upstream/glib.git] / gio / tests / gdbus-example-peer.c
1 /*
2
3 Usage examples (modulo addresses / credentials).
4
5 UNIX domain socket transport:
6
7  Server:
8    $ ./gdbus-example-peer --server --address unix:abstract=myaddr
9    Server is listening at: unix:abstract=myaddr
10    Client connected.
11    Peer credentials: GCredentials:unix-user=500,unix-group=500,unix-process=13378
12    Negotiated capabilities: unix-fd-passing=1
13    Client said: Hey, it's 1273093080 already!
14
15  Client:
16    $ ./gdbus-example-peer --address unix:abstract=myaddr
17    Connected.
18    Negotiated capabilities: unix-fd-passing=1
19    Server said: You said 'Hey, it's 1273093080 already!'. KTHXBYE!
20
21 Nonce-secured TCP transport on the same host:
22
23  Server:
24    $ ./gdbus-example-peer --server --address nonce-tcp:
25    Server is listening at: nonce-tcp:host=localhost,port=43077,noncefile=/tmp/gdbus-nonce-file-X1ZNCV
26    Client connected.
27    Peer credentials: (no credentials received)
28    Negotiated capabilities: unix-fd-passing=0
29    Client said: Hey, it's 1273093206 already!
30
31  Client:
32    $ ./gdbus-example-peer -address nonce-tcp:host=localhost,port=43077,noncefile=/tmp/gdbus-nonce-file-X1ZNCV
33    Connected.
34    Negotiated capabilities: unix-fd-passing=0
35    Server said: You said 'Hey, it's 1273093206 already!'. KTHXBYE!
36
37 TCP transport on two different hosts with a shared home directory:
38
39  Server:
40    host1 $ ./gdbus-example-peer --server --address tcp:host=0.0.0.0
41    Server is listening at: tcp:host=0.0.0.0,port=46314
42    Client connected.
43    Peer credentials: (no credentials received)
44    Negotiated capabilities: unix-fd-passing=0
45    Client said: Hey, it's 1273093337 already!
46
47  Client:
48    host2 $ ./gdbus-example-peer -a tcp:host=host1,port=46314
49    Connected.
50    Negotiated capabilities: unix-fd-passing=0
51    Server said: You said 'Hey, it's 1273093337 already!'. KTHXBYE!
52
53 TCP transport on two different hosts without authentication:
54
55  Server:
56    host1 $ ./gdbus-example-peer --server --address tcp:host=0.0.0.0 --allow-anonymous
57    Server is listening at: tcp:host=0.0.0.0,port=59556
58    Client connected.
59    Peer credentials: (no credentials received)
60    Negotiated capabilities: unix-fd-passing=0
61    Client said: Hey, it's 1273093652 already!
62
63  Client:
64    host2 $ ./gdbus-example-peer -a tcp:host=host1,port=59556
65    Connected.
66    Negotiated capabilities: unix-fd-passing=0
67    Server said: You said 'Hey, it's 1273093652 already!'. KTHXBYE!
68
69  */
70
71 #include <gio/gio.h>
72 #include <stdlib.h>
73
74 /* ---------------------------------------------------------------------------------------------------- */
75
76 static GDBusNodeInfo *introspection_data = NULL;
77
78 /* Introspection data for the service we are exporting */
79 static const gchar introspection_xml[] =
80   "<node>"
81   "  <interface name='org.gtk.GDBus.TestPeerInterface'>"
82   "    <method name='HelloWorld'>"
83   "      <arg type='s' name='greeting' direction='in'/>"
84   "      <arg type='s' name='response' direction='out'/>"
85   "    </method>"
86   "  </interface>"
87   "</node>";
88
89 /* ---------------------------------------------------------------------------------------------------- */
90
91 static void
92 handle_method_call (GDBusConnection       *connection,
93                     const gchar           *sender,
94                     const gchar           *object_path,
95                     const gchar           *interface_name,
96                     const gchar           *method_name,
97                     GVariant              *parameters,
98                     GDBusMethodInvocation *invocation,
99                     gpointer               user_data)
100 {
101   if (g_strcmp0 (method_name, "HelloWorld") == 0)
102     {
103       const gchar *greeting;
104       gchar *response;
105
106       g_variant_get (parameters, "(s)", &greeting);
107       response = g_strdup_printf ("You said '%s'. KTHXBYE!", greeting);
108       g_dbus_method_invocation_return_value (invocation,
109                                              g_variant_new ("(s)", response));
110       g_free (response);
111       g_print ("Client said: %s\n", greeting);
112     }
113 }
114
115 static const GDBusInterfaceVTable interface_vtable =
116 {
117   handle_method_call,
118   NULL,
119   NULL,
120 };
121
122 /* ---------------------------------------------------------------------------------------------------- */
123
124 static void
125 on_new_connection (GDBusServer *server,
126                    GDBusConnection *connection,
127                    gpointer user_data)
128 {
129   guint registration_id;
130   GCredentials *credentials;
131   gchar *s;
132
133   credentials = g_dbus_connection_get_peer_credentials (connection);
134   if (credentials == NULL)
135     s = g_strdup ("(no credentials received)");
136   else
137     s = g_credentials_to_string (credentials);
138
139
140   g_print ("Client connected.\n"
141            "Peer credentials: %s\n"
142            "Negotiated capabilities: unix-fd-passing=%d\n",
143            s,
144            g_dbus_connection_get_capabilities (connection) & G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING);
145
146   g_object_ref (connection);
147   registration_id = g_dbus_connection_register_object (connection,
148                                                        "/org/gtk/GDBus/TestObject",
149                                                        "org.gtk.GDBus.TestPeerInterface",
150                                                        introspection_data->interfaces[0],
151                                                        &interface_vtable,
152                                                        NULL,  /* user_data */
153                                                        NULL,  /* user_data_free_func */
154                                                        NULL); /* GError** */
155   g_assert (registration_id > 0);
156 }
157
158 /* ---------------------------------------------------------------------------------------------------- */
159
160 int
161 main (int argc, char *argv[])
162 {
163   gint ret;
164   gboolean opt_server;
165   gchar *opt_address;
166   GOptionContext *opt_context;
167   gboolean opt_allow_anonymous;
168   GError *error;
169   GOptionEntry opt_entries[] =
170     {
171       { "server", 's', 0, G_OPTION_ARG_NONE, &opt_server, "Start a server instead of a client", NULL },
172       { "address", 'a', 0, G_OPTION_ARG_STRING, &opt_address, "D-Bus address to use", NULL },
173       { "allow-anonymous", 'n', 0, G_OPTION_ARG_NONE, &opt_allow_anonymous, "Allow anonymous authentication", NULL },
174       { NULL}
175     };
176
177   ret = 1;
178
179   g_type_init ();
180
181   opt_address = NULL;
182   opt_server = FALSE;
183   opt_allow_anonymous = FALSE;
184
185   opt_context = g_option_context_new ("peer-to-peer example");
186   error = NULL;
187   g_option_context_add_main_entries (opt_context, opt_entries, NULL);
188   if (!g_option_context_parse (opt_context, &argc, &argv, &error))
189     {
190       g_printerr ("Error parsing options: %s\n", error->message);
191       g_error_free (error);
192       goto out;
193     }
194   if (opt_address == NULL)
195     {
196       g_printerr ("Incorrect usage, try --help.\n");
197       goto out;
198     }
199   if (!opt_server && opt_allow_anonymous)
200     {
201       g_printerr ("The --allow-anonymous option only makes sense when used with --server.\n");
202       goto out;
203     }
204
205   /* We are lazy here - we don't want to manually provide
206    * the introspection data structures - so we just build
207    * them from XML.
208    */
209   introspection_data = g_dbus_node_info_new_for_xml (introspection_xml, NULL);
210   g_assert (introspection_data != NULL);
211
212   if (opt_server)
213     {
214       GDBusServer *server;
215       gchar *guid;
216       GMainLoop *loop;
217       GDBusServerFlags server_flags;
218
219       guid = g_dbus_generate_guid ();
220
221       server_flags = G_DBUS_SERVER_FLAGS_NONE;
222       if (opt_allow_anonymous)
223         server_flags |= G_DBUS_SERVER_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS;
224
225       error = NULL;
226       server = g_dbus_server_new_sync (opt_address,
227                                        server_flags,
228                                        guid,
229                                        NULL, /* GDBusAuthObserver */
230                                        NULL, /* GCancellable */
231                                        &error);
232       g_dbus_server_start (server);
233       g_free (guid);
234
235       if (server == NULL)
236         {
237           g_printerr ("Error creating server at address %s: %s\n", opt_address, error->message);
238           g_error_free (error);
239           goto out;
240         }
241       g_print ("Server is listening at: %s\n", g_dbus_server_get_client_address (server));
242       g_signal_connect (server,
243                         "new-connection",
244                         G_CALLBACK (on_new_connection),
245                         NULL);
246
247       loop = g_main_loop_new (NULL, FALSE);
248       g_main_loop_run (loop);
249
250       g_object_unref (server);
251       g_main_loop_unref (loop);
252     }
253   else
254     {
255       GDBusConnection *connection;
256       const gchar *greeting_response;
257       GVariant *value;
258       gchar *greeting;
259
260       error = NULL;
261       connection = g_dbus_connection_new_for_address_sync (opt_address,
262                                                            G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_CLIENT,
263                                                            NULL, /* GCancellable */
264                                                            &error);
265       if (connection == NULL)
266         {
267           g_printerr ("Error connecting to D-Bus address %s: %s\n", opt_address, error->message);
268           g_error_free (error);
269           goto out;
270         }
271
272       g_print ("Connected.\n"
273                "Negotiated capabilities: unix-fd-passing=%d\n",
274                g_dbus_connection_get_capabilities (connection) & G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING);
275
276       greeting = g_strdup_printf ("Hey, it's %" G_GUINT64_FORMAT " already!", (guint64) time (NULL));
277       value = g_dbus_connection_call_sync (connection,
278                                            NULL, /* bus_name */
279                                            "/org/gtk/GDBus/TestObject",
280                                            "org.gtk.GDBus.TestPeerInterface",
281                                            "HelloWorld",
282                                            g_variant_new ("(s)", greeting),
283                                            G_DBUS_CALL_FLAGS_NONE,
284                                            -1,
285                                            NULL,
286                                            &error);
287       if (value == NULL)
288         {
289           g_printerr ("Error invoking HelloWorld(): %s\n", error->message);
290           g_error_free (error);
291           goto out;
292         }
293       g_variant_get (value, "(s)", &greeting_response);
294       g_print ("Server said: %s\n", greeting_response);
295       g_variant_unref (value);
296
297       g_object_unref (connection);
298     }
299   g_dbus_node_info_unref (introspection_data);
300
301   ret = 0;
302
303  out:
304   return ret;
305 }