Fix accessibility of root apps on Linux
[platform/core/uifw/at-spi2-atk.git] / atk-adaptor / bridge.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2008, 2009 Codethink Ltd.
6  * Copyright 2001, 2002, 2003 Sun Microsystems Inc.,
7  * Copyright 2001, 2002, 2003 Ximian, Inc.
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library 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 GNU
17  * Library General Public License for more details.
18  *
19  * You should have received a copy of the GNU Library General Public
20  * License along with this library; if not, write to the
21  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22  * Boston, MA 02111-1307, USA.
23  */
24
25 #define _GNU_SOURCE
26 #include "config.h"
27 #include "dbus/dbus-glib-lowlevel.h"
28
29 #include <X11/Xlib.h>
30 #include <X11/Xatom.h>
31 #include <unistd.h>
32 #include <stdlib.h>
33 #include <stdio.h>
34 #include <stdarg.h>
35 #include <string.h>
36 #include<sys/stat.h>
37 #include <atk/atk.h>
38
39 #include <droute/droute.h>
40 #include <gmodule.h>
41 #include <glib/gi18n.h>
42
43 #include "bridge.h"
44 #include "event.h"
45 #include "adaptors.h"
46 #include "object.h"
47 #include "common/spi-stateset.h"
48
49 #include "accessible-register.h"
50 #include "accessible-leasing.h"
51 #include "accessible-cache.h"
52
53 #include "common/spi-dbus.h"
54
55 /*---------------------------------------------------------------------------*/
56
57 SpiBridge *spi_global_app_data = NULL;
58
59 static const AtkMisc *atk_misc = NULL;
60
61 /*static Display *bridge_display = NULL;*/
62
63 /*---------------------------------------------------------------------------*/
64
65 /*
66  * Returns a 'canonicalized' value for DISPLAY,
67  * with the screen number stripped off if present.
68  *
69  */
70 static const gchar *
71 spi_display_name (void)
72 {
73   static const char *canonical_display_name = NULL;
74   if (!canonical_display_name)
75     {
76       const gchar *display_env = g_getenv ("AT_SPI_DISPLAY");
77       if (!display_env)
78         {
79           display_env = g_getenv ("DISPLAY");
80           if (!display_env || !display_env[0])
81             canonical_display_name = ":0";
82           else
83             {
84               gchar *display_p, *screen_p;
85               canonical_display_name = g_strdup (display_env);
86               display_p = strrchr (canonical_display_name, ':');
87               screen_p = strrchr (canonical_display_name, '.');
88               if (screen_p && display_p && (screen_p > display_p))
89                 {
90                   *screen_p = '\0';
91                 }
92             }
93         }
94       else
95         {
96           canonical_display_name = display_env;
97         }
98     }
99   return canonical_display_name;
100 }
101
102 /*---------------------------------------------------------------------------*/
103
104 /*
105  * Gets the IOR from the XDisplay.
106  * Not currently used in D-Bus version, but something similar
107  * may be employed in the future for accessing the registry daemon
108  * bus name.
109  */
110
111 static DBusConnection *
112 spi_atk_bridge_get_bus (void)
113 {
114   Atom AT_SPI_BUS;
115   Atom actual_type;
116   Display *bridge_display;
117   int actual_format;
118   unsigned char *data = NULL;
119   unsigned long nitems;
120   unsigned long leftover;
121
122   DBusConnection *bus = NULL;
123   DBusError error;
124
125   bridge_display = XOpenDisplay (spi_display_name ());
126   if (!bridge_display)
127     {
128       g_warning ("AT_SPI: Could not get the display\n");
129       return NULL;
130     }
131
132   AT_SPI_BUS = XInternAtom (bridge_display, "AT_SPI_BUS", False);
133   XGetWindowProperty (bridge_display,
134                       XDefaultRootWindow (bridge_display),
135                       AT_SPI_BUS, 0L,
136                       (long) BUFSIZ, False,
137                       (Atom) 31, &actual_type, &actual_format,
138                       &nitems, &leftover, &data);
139   XCloseDisplay (bridge_display);
140
141   dbus_error_init (&error);
142
143   if (data == NULL)
144     {
145       g_warning
146         ("AT-SPI: Accessibility bus not found - Using session bus.\n");
147       bus = dbus_bus_get (DBUS_BUS_SESSION, &error);
148       if (!bus)
149         {
150           g_warning ("AT-SPI: Couldn't connect to bus: %s\n", error.message);
151           return NULL;
152         }
153     }
154   else
155     {
156       bus = dbus_connection_open (data, &error);
157       XFree (data);
158       if (!bus)
159         {
160           g_warning ("AT-SPI: Couldn't connect to bus: %s\n", error.message);
161           return NULL;
162         }
163       else
164         {
165           if (!dbus_bus_register (bus, &error))
166             {
167               g_warning ("AT-SPI: Couldn't register with bus: %s\n", error.message);
168               return NULL;
169             }
170           dbus_connection_set_exit_on_disconnect (bus, FALSE);
171         }
172     }
173
174   return bus;
175 }
176
177 static void
178 set_reply (DBusPendingCall *pending, void *user_data)
179 {
180     void **replyptr = (void **)user_data;
181
182     *replyptr = dbus_pending_call_steal_reply (pending);
183   dbus_pending_call_unref (pending);
184 }
185
186 /*---------------------------------------------------------------------------*/
187
188 static void
189 add_event (const char *bus_name, const char *event)
190 {
191   event_data *evdata;
192   gchar **data;
193   GList *new_list;
194
195   evdata = (event_data *) g_malloc (sizeof (*evdata));
196   if (!evdata)
197     return;
198   data = g_strsplit (event, ":", 3);
199   if (!data)
200     {
201       g_free (evdata);
202       return;
203     }
204   evdata->bus_name = g_strdup (bus_name);
205   evdata->data = data;
206   new_list = g_list_append (spi_global_app_data->events, evdata);
207   if (new_list)
208     spi_global_app_data->events = new_list;
209 }
210
211 static void
212 get_registered_event_listeners (SpiBridge *app)
213 {
214   DBusMessage *message, *reply;
215   DBusMessageIter iter, iter_array, iter_struct;
216
217   message = dbus_message_new_method_call (SPI_DBUS_NAME_REGISTRY,
218                                          SPI_DBUS_PATH_REGISTRY,
219                                          SPI_DBUS_INTERFACE_REGISTRY,
220                                          "GetRegisteredEvents");
221   spi_global_app_data->events_initialized = TRUE;
222   if (!message)
223     return;
224
225   reply = dbus_connection_send_with_reply_and_block (app->bus, message, 5000, NULL);
226   dbus_message_unref (message);
227   if (!reply)
228     return;
229   if (strcmp (dbus_message_get_signature (reply), "a(ss)") != 0)
230     {
231       /* TODO: Add a warning when it's okay to add strings */
232       dbus_message_unref (reply);
233       return;
234     }
235   dbus_message_iter_init (reply, &iter);
236   dbus_message_iter_recurse (&iter, &iter_array);
237   while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
238     {
239       char *bus_name, *event;
240       dbus_message_iter_recurse (&iter_array, &iter_struct);
241       dbus_message_iter_get_basic (&iter_struct, &bus_name);
242       dbus_message_iter_next (&iter_struct);
243       dbus_message_iter_get_basic (&iter_struct, &event);
244       add_event (bus_name, event);
245       dbus_message_iter_next (&iter_array);
246     }
247   dbus_message_unref (reply);
248 }
249
250 static void
251 register_reply (DBusPendingCall *pending, void *user_data)
252 {
253   DBusMessage *reply;
254   SpiBridge *app = user_data;
255   DBusMessage *message;
256
257   reply = dbus_pending_call_steal_reply (pending);
258   dbus_pending_call_unref (pending);
259   if (reply)
260     {
261       gchar *app_name, *obj_path;
262
263       if (strcmp (dbus_message_get_signature (reply), "(so)") != 0)
264         {
265           g_warning ("AT-SPI: Could not obtain desktop path or name\n");
266         }
267       else
268         {
269           DBusMessageIter iter, iter_struct;
270           dbus_message_iter_init (reply, &iter);
271           dbus_message_iter_recurse (&iter, &iter_struct);
272           dbus_message_iter_get_basic (&iter_struct, &app_name);
273           dbus_message_iter_next (&iter_struct);
274           dbus_message_iter_get_basic (&iter_struct, &obj_path);
275
276           app->desktop_name = g_strdup (app_name);
277           app->desktop_path = g_strdup (obj_path);
278         }
279     }
280   else
281     {
282       g_warning ("AT-SPI: Could not embed inside desktop");
283       return;
284     }
285   dbus_message_unref (reply);
286
287   get_registered_event_listeners (spi_global_app_data);
288 }
289
290 static gboolean
291 register_application (SpiBridge * app)
292 {
293   DBusMessage *message, *reply;
294   DBusMessageIter iter;
295   DBusError error;
296   DBusPendingCall *pending;
297   const int max_addr_length = 128; /* should be long enough */
298
299   dbus_error_init (&error);
300
301   /* These will be overridden when we get a reply, but in practice these
302      defaults should always be correct */
303   app->desktop_name = SPI_DBUS_NAME_REGISTRY;
304   app->desktop_path = SPI_DBUS_PATH_ROOT;
305
306   message = dbus_message_new_method_call (SPI_DBUS_NAME_REGISTRY,
307                                           SPI_DBUS_PATH_ROOT,
308                                           SPI_DBUS_INTERFACE_SOCKET,
309                                           "Embed");
310
311   dbus_message_iter_init_append (message, &iter);
312   spi_object_append_reference (&iter, app->root);
313   
314     if (!dbus_connection_send_with_reply (app->bus, message, &pending, -1)
315         || !pending)
316     {
317         return FALSE;
318     }
319
320     dbus_pending_call_set_notify (pending, register_reply, app, NULL);
321
322   if (message)
323     dbus_message_unref (message);
324
325   /* could this be better, we accept some amount of race in getting the temp name*/
326   /* make sure the directory exists */
327   mkdir ("/tmp/at-spi2/", S_IRWXU|S_IRWXG|S_IRWXO|S_ISVTX);
328   chmod ("/tmp/at-spi2/", S_IRWXU|S_IRWXG|S_IRWXO|S_ISVTX);
329   app->app_bus_addr = g_malloc(max_addr_length * sizeof(char));
330 #ifndef DISABLE_P2P
331   sprintf (app->app_bus_addr, "unix:path=/tmp/at-spi2/socket-%d-%d", getpid(),
332            rand());
333 #else
334   app->app_bus_addr [0] = '\0';
335 #endif
336
337   return TRUE;
338 }
339
340 /*---------------------------------------------------------------------------*/
341
342 static void
343 deregister_application (SpiBridge * app)
344 {
345   DBusMessage *message;
346   DBusMessageIter iter;
347   DBusError error;
348   const char *uname;
349
350   dbus_error_init (&error);
351
352   message = dbus_message_new_method_call (SPI_DBUS_NAME_REGISTRY,
353                                           SPI_DBUS_PATH_REGISTRY,
354                                           SPI_DBUS_INTERFACE_REGISTRY,
355                                           "DeregisterApplication");
356   dbus_message_set_no_reply (message, TRUE);
357
358   uname = dbus_bus_get_unique_name (app->bus);
359
360   dbus_message_iter_init_append (message, &iter);
361   dbus_message_iter_append_basic (&iter, DBUS_TYPE_STRING, &uname);
362   dbus_connection_send (app->bus, message, NULL);
363   if (message)
364     dbus_message_unref (message);
365 }
366
367 /*---------------------------------------------------------------------------*/
368
369 static void
370 exit_func (void)
371 {
372   if (!spi_global_app_data)
373     {
374       return;
375     }
376
377   spi_atk_tidy_windows ();
378   spi_atk_deregister_event_listeners ();
379   deregister_application (spi_global_app_data);
380
381   g_free (spi_global_app_data);
382   spi_global_app_data = NULL;
383
384   /* Not currently creating an XDisplay */
385 #if 0
386   if (bridge_display)
387     XCloseDisplay (bridge_display);
388 #endif
389 }
390
391 /*---------------------------------------------------------------------------*/
392
393 static AtkPlugClass *plug_class;
394 static AtkSocketClass *socket_class;
395
396 static gchar *
397 get_plug_id (AtkPlug * plug)
398 {
399   const char *uname = dbus_bus_get_unique_name (spi_global_app_data->bus);
400   gchar *path;
401   GString *str = g_string_new (NULL);
402
403   path = spi_register_object_to_path (spi_global_register, G_OBJECT (plug));
404   g_string_printf (str, "%s:%s", uname, path);
405   g_free (path);
406   return g_string_free (str, FALSE);
407 }
408
409 AtkStateSet *
410 socket_ref_state_set (AtkObject *accessible)
411 {
412   char *child_name, *child_path;
413   AtkSocket *socket = ATK_SOCKET (accessible);
414   int count = 0;
415   int j;
416   int v;
417   DBusMessage *message, *reply;
418   DBusMessageIter iter, iter_array;
419   AtkStateSet *set;
420
421   if (!socket->embedded_plug_id)
422     return NULL;
423
424   child_name = g_strdup (socket->embedded_plug_id);
425   if (!child_name)
426     return NULL;
427   child_path = g_utf8_strchr (child_name + 1, -1, ':');
428   if (!child_path)
429     {
430       g_free (child_name);
431       return NULL;
432     }
433   *(child_path++) = '\0';
434   message = dbus_message_new_method_call (child_name, child_path, SPI_DBUS_INTERFACE_ACCESSIBLE, "GetState");
435   g_free (child_name);
436   reply = dbus_connection_send_with_reply_and_block (spi_global_app_data->bus, message, 1, NULL);
437   dbus_message_unref (message);
438   if (reply == NULL)
439     return NULL;
440   if (strcmp (dbus_message_get_signature (reply), "au") != 0)
441     {
442       dbus_message_unref (reply);
443       return NULL;
444     }
445   set = atk_state_set_new ();
446   if (!set)
447     return  NULL;
448   dbus_message_iter_init (reply, &iter);
449   dbus_message_iter_recurse (&iter, &iter_array);
450   do
451     {
452       dbus_message_iter_get_basic (&iter_array, &v);
453       for (j = 0; j < 32; j++)
454         {
455           if (v & (1 << j))
456             {
457               AtkState state = spi_atk_state_from_spi_state ((count << 5) + j);
458               atk_state_set_add_state (set, state);
459             }
460         }
461       count++;
462     }
463   while (dbus_message_iter_next (&iter_array));
464   dbus_message_unref (reply);
465   return set;
466 }
467
468 static void
469 socket_embed_hook (AtkSocket * socket, gchar * plug_id)
470 {
471   AtkObject *accessible = ATK_OBJECT(socket);
472   gchar *plug_name, *plug_path;
473   AtkObjectClass *klass;
474
475   /* Force registration */
476   gchar *path = spi_register_object_to_path (spi_global_register, G_OBJECT (accessible));
477   /* Let the plug know that it has been embedded */
478   plug_name = g_strdup (plug_id);
479   if (!plug_name)
480     {
481       g_free (path);
482       return;
483     }
484   plug_path = g_utf8_strchr (plug_name + 1, -1, ':');
485   if (plug_path)
486     {
487       DBusMessage *message;
488       *(plug_path++) = '\0';
489       message = dbus_message_new_method_call (plug_name, plug_path, SPI_DBUS_INTERFACE_SOCKET, "Embedded");
490       dbus_message_append_args (message, DBUS_TYPE_STRING, &path, DBUS_TYPE_INVALID);
491       dbus_connection_send (spi_global_app_data->bus, message, NULL);
492     }
493   g_free (plug_name);
494   g_free (path);
495
496   klass = ATK_OBJECT_GET_CLASS (accessible);
497   klass->ref_state_set = socket_ref_state_set;
498 }
499
500 static void
501 install_plug_hooks ()
502 {
503   gpointer data;
504
505   data = g_type_class_ref (ATK_TYPE_PLUG);
506   plug_class = ATK_PLUG_CLASS (data);
507   data = g_type_class_ref (ATK_TYPE_SOCKET);
508   socket_class = ATK_SOCKET_CLASS (data);
509   plug_class->get_object_id = get_plug_id;
510   socket_class->embed = socket_embed_hook;
511 }
512
513 static uint
514 get_ancestral_uid (uint pid)
515 {
516   FILE *fp;
517   char buf [80];
518   int ppid = 0;
519   int uid = 0;
520   gboolean got_ppid = 0;
521   gboolean got_uid = 0;
522
523   sprintf (buf, "/proc/%d/status", pid);
524   fp = fopen (buf, "r");
525   if (!fp)
526     return 0;
527   while ((!got_ppid || !got_uid) && fgets (buf, sizeof (buf), fp))
528   {
529     if (sscanf (buf, "PPid:\t%d", &ppid) == 1)
530       got_ppid = TRUE;
531     else if (sscanf (buf, "Uid:\t%d", &uid) == 1)
532       got_uid = TRUE;
533   }
534   fclose (fp);
535
536   if (!got_ppid || !got_uid)
537     return 0;
538   if (uid != 0)
539     return uid;
540   if (ppid == 0 || ppid == 1)
541     return 0;
542   return get_ancestral_uid (ppid);
543 }
544
545 static dbus_bool_t
546 user_check (DBusConnection *bus, unsigned long uid)
547 {
548   if (uid == getuid () || uid == geteuid ())
549     return TRUE;
550   if (getuid () == 0)
551     return get_ancestral_uid (getpid ()) == uid;
552   return FALSE;
553 }
554
555 static void
556 new_connection_cb (DBusServer *server, DBusConnection *con, void *data)
557 {
558   GList *new_list;
559
560   dbus_connection_set_unix_user_function (con, user_check, NULL, NULL);
561   dbus_connection_ref(con);
562   dbus_connection_setup_with_g_main(con, NULL);
563   droute_intercept_dbus (con);
564   droute_context_register (spi_global_app_data->droute, con);
565
566   new_list = g_list_append (spi_global_app_data->direct_connections, con);
567   if (new_list)
568     spi_global_app_data->direct_connections = new_list;
569 }
570
571 static int
572 setup_bus (void)
573 {
574 #ifndef DISABLE_P2P
575   DBusServer *server;
576   DBusError err;
577
578   dbus_error_init(&err);
579   server = dbus_server_listen(spi_global_app_data->app_bus_addr, &err);
580   if (server == NULL)
581   {
582     g_warning (_("atk-bridge: Couldn't listen on dbus server: %s"), err.message);
583     dbus_error_init (&err);
584     spi_global_app_data->app_bus_addr [0] = '\0';
585     g_main_context_unref (spi_global_app_data->main_context);
586     spi_global_app_data->main_context = NULL;
587     return -1;
588   }
589
590   dbus_server_setup_with_g_main(server, NULL);
591   dbus_server_set_new_connection_function(server, new_connection_cb, NULL, NULL);
592
593   spi_global_app_data->server = server;
594 #endif
595
596   return 0;
597 }
598
599
600 gchar *atspi_dbus_name = NULL;
601 static gboolean atspi_no_register = FALSE;
602
603 static GOptionEntry atspi_option_entries[] = {
604   {"atspi-dbus-name", 0, 0, G_OPTION_ARG_STRING, &atspi_dbus_name,
605    "D-Bus bus name to register as", NULL},
606   {"atspi-no-register", 0, 0, G_OPTION_ARG_NONE, &atspi_no_register,
607    "Do not register with Registry Daemon", NULL},
608   {NULL}
609 };
610
611 static gchar *
612 introspect_children_cb (const char *path, void *data)
613 {
614   if (!strcmp (path, "/org/a11y/atspi/accessible"))
615     {
616       return g_strdup ("<node name=\"root\"/>\n");
617       /* TODO: Should we place the whole hierarchy here? */
618     }
619   return NULL;
620 }
621
622 static void
623 handle_event_listener_registered (DBusConnection *bus, DBusMessage *message,
624                                   void *user_data)
625 {
626   const char *name;
627   char *sender;
628
629   if (!dbus_message_get_args (message, NULL, DBUS_TYPE_STRING, &sender,
630     DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID))
631     return;
632
633   add_event (sender, name);
634 }
635
636 static void
637 remove_events (const char *bus_name, const char *event)
638 {
639   event_data *evdata;
640   gchar **remove_data;
641   GList *list;
642
643   remove_data = g_strsplit (event, ":", 3);
644   if (!remove_data)
645     {
646       return;
647     }
648
649   for (list = spi_global_app_data->events; list;)
650     {
651       event_data *evdata = list->data;
652       if (!g_strcmp0 (evdata->bus_name, bus_name) &&
653           spi_event_is_subtype (evdata->data, remove_data))
654         {
655           GList *events = spi_global_app_data->events;
656           list = list->next;
657           g_strfreev (evdata->data);
658           g_free (evdata->bus_name);
659           g_free (evdata);
660           spi_global_app_data->events = g_list_remove (events, evdata);
661         }
662       else
663         {
664           list = list->next;
665         }
666     }
667
668   g_strfreev (remove_data);
669 }
670
671 static void
672 handle_event_listener_deregistered (DBusConnection *bus, DBusMessage *message,
673                                     void *user_data)
674 {
675   const char *orig_name;
676   gchar *name;
677   char *sender;
678
679   if (!dbus_message_get_args (message, NULL, DBUS_TYPE_STRING, &sender,
680                               DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID))
681     return;
682
683   remove_events (sender, name);
684 }
685
686 static DBusHandlerResult
687 signal_filter (DBusConnection *bus, DBusMessage *message, void *user_data)
688 {
689   const char *interface = dbus_message_get_interface (message);
690   const char *member = dbus_message_get_member (message);
691   DBusHandlerResult result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
692
693   if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_SIGNAL)
694     return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
695
696   if (!strcmp (interface, SPI_DBUS_INTERFACE_REGISTRY))
697     {
698       result = DBUS_HANDLER_RESULT_HANDLED;
699       if (!strcmp (member, "EventListenerRegistered"))
700         handle_event_listener_registered (bus, message, user_data);
701       else if (!strcmp (member, "EventListenerDeregistered"))
702         handle_event_listener_deregistered (bus, message, user_data);
703       else
704         result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
705     }
706   return result;
707 }
708
709 /*
710  * spi_app_init
711  *
712  * The following needs to be initialized.
713  *
714  * - DRoute for routing message to their accessible objects.
715  * - Event handlers for emmitting signals on specific ATK events.
716  * - setup the bus for p2p communication
717  * - Application registration with the AT-SPI registry.
718  *
719  */
720 static int
721 adaptor_init (gint * argc, gchar ** argv[])
722 {
723   GOptionContext *opt;
724   GError *err = NULL;
725   DBusError error;
726   AtkObject *root;
727   gchar *introspection_directory;
728   static gboolean inited = FALSE;
729
730   if (inited)
731     return 0;
732
733   inited = TRUE;
734
735   DRoutePath *treepath, *accpath;
736
737   root = atk_get_root ();
738   g_warn_if_fail (root);
739   if (!root)
740     {
741       inited = FALSE;
742       return -1;
743     }
744
745   /* Parse command line options */
746   opt = g_option_context_new (NULL);
747   g_option_context_add_main_entries (opt, atspi_option_entries, NULL);
748   g_option_context_set_ignore_unknown_options (opt, TRUE);
749   if (!g_option_context_parse (opt, argc, argv, &err))
750     g_warning ("AT-SPI Option parsing failed: %s\n", err->message);
751   g_option_context_free (opt);
752
753   /* Allocate global data and do ATK initializations */
754   spi_global_app_data = g_new0 (SpiBridge, 1);
755   atk_misc = atk_misc_get_instance ();
756   spi_global_app_data->root = g_object_ref (root);
757
758   /* Set up D-Bus connection and register bus name */
759   dbus_error_init (&error);
760   spi_global_app_data->bus = spi_atk_bridge_get_bus ();
761   if (!spi_global_app_data->bus)
762     {
763       g_free (spi_global_app_data);
764       spi_global_app_data = NULL;
765       inited = FALSE;
766       return -1;
767     }
768
769   if (atspi_dbus_name != NULL)
770     {
771       if (dbus_bus_request_name
772           (spi_global_app_data->bus, atspi_dbus_name, 0, &error))
773         {
774           g_print ("AT-SPI Recieved D-Bus name - %s\n", atspi_dbus_name);
775         }
776       else
777         {
778           g_print
779             ("AT-SPI D-Bus name requested but could not be allocated - %s\n",
780              atspi_dbus_name);
781         }
782     }
783
784 #ifndef DISABLE_P2P
785   spi_global_app_data->main_context = g_main_context_new ();
786 #else
787   spi_global_app_data->main_context = NULL;
788 #endif
789
790   dbus_connection_setup_with_g_main (spi_global_app_data->bus, NULL);
791
792   /* Hook our plug-and socket functions */
793   install_plug_hooks ();
794
795   /* 
796    * Create the leasing, register and cache objects.
797    * The order is important here, the cache depends on the
798    * register object.
799    */
800   spi_global_register = g_object_new (SPI_REGISTER_TYPE, NULL);
801   spi_global_leasing  = g_object_new (SPI_LEASING_TYPE, NULL);
802   spi_global_cache    = g_object_new (SPI_CACHE_TYPE, NULL);
803
804   /* Register droute for routing AT-SPI messages */
805   spi_global_app_data->droute =
806     droute_new ();
807
808   treepath = droute_add_one (spi_global_app_data->droute,
809                              "/org/a11y/atspi/cache", spi_global_cache);
810
811   if (!treepath)
812     {
813       g_warning ("atk-bridge: Error in droute_add_one().  Already running?");
814       return -1;
815     }
816
817   accpath = droute_add_many (spi_global_app_data->droute,
818                              "/org/a11y/atspi/accessible",
819                              NULL,
820                              introspect_children_cb,
821                              NULL,
822                              (DRouteGetDatumFunction)
823                              spi_global_register_path_to_object);
824
825
826   /* Register all interfaces with droute and set up application accessible db */
827   spi_initialize_cache (treepath);
828   spi_initialize_accessible (accpath);
829   spi_initialize_application (accpath);
830   spi_initialize_action (accpath);
831   spi_initialize_collection (accpath);
832   spi_initialize_component (accpath);
833   spi_initialize_document (accpath);
834   spi_initialize_editabletext (accpath);
835   spi_initialize_hyperlink (accpath);
836   spi_initialize_hypertext (accpath);
837   spi_initialize_image (accpath);
838   spi_initialize_selection (accpath);
839   spi_initialize_socket (accpath);
840   spi_initialize_table (accpath);
841   spi_initialize_text (accpath);
842   spi_initialize_value (accpath);
843
844   droute_context_register (spi_global_app_data->droute,
845                            spi_global_app_data->bus);
846
847   /* Register methods to send D-Bus signals on certain ATK events */
848   spi_atk_register_event_listeners ();
849
850   /* Set up filter and match rules to catch signals */
851   dbus_bus_add_match (spi_global_app_data->bus, "type='signal', interface='org.a11y.atspi.Registry', sender='org.a11y.atspi.Registry'", NULL);
852   dbus_connection_add_filter (spi_global_app_data->bus, signal_filter, NULL,
853                               NULL);
854
855   /* Register this app by sending a signal out to AT-SPI registry daemon */
856   if (!atspi_no_register && (!root || !ATK_IS_PLUG (root)))
857     register_application (spi_global_app_data);
858   else
859     get_registered_event_listeners (spi_global_app_data);
860
861   setup_bus();
862
863   return 0;
864 }
865
866 /*---------------------------------------------------------------------------*/
867
868 int
869 gtk_module_init (gint * argc, gchar ** argv[])
870 {
871   const gchar *load_bridge = g_getenv ("NO_AT_BRIDGE");
872
873   if (!load_bridge || g_ascii_strtod (load_bridge, NULL) == 0)
874     {
875       return adaptor_init (argc, argv);
876     }
877   return 0;
878 }
879
880 gchar*
881 g_module_check_init (GModule *module)
882 {
883   g_module_make_resident (module);
884
885   return NULL;
886 }
887
888 void
889 gnome_accessibility_module_init (void)
890 {
891   const gchar *load_bridge = g_getenv ("NO_AT_BRIDGE");
892
893   if (!load_bridge || g_ascii_strtod (load_bridge, NULL) == 0)
894     {
895       adaptor_init (NULL, NULL);
896
897       if (g_getenv ("AT_SPI_DEBUG"))
898         {
899           g_print ("Atk Accessibility bridge initialized\n");
900         }
901     }
902 }
903
904 void
905 gnome_accessibility_module_shutdown (void)
906 {
907   spi_atk_deregister_event_listeners ();
908   exit_func ();
909 }
910
911 /*END------------------------------------------------------------------------*/