Merge branch 'dbus-1.10'
[platform/upstream/dbus.git] / dbus / dbus-transport-socket.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-transport-socket.c  Socket subclasses of DBusTransport
3  *
4  * Copyright (C) 2002, 2003, 2004, 2006  Red Hat Inc.
5  *
6  * Licensed under the Academic Free License version 2.1
7  * 
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  * 
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  *
22  */
23
24 #include <config.h>
25 #include "dbus-internals.h"
26 #include "dbus-connection-internal.h"
27 #include "dbus-nonce.h"
28 #include "dbus-transport-socket.h"
29 #include "dbus-transport-protected.h"
30 #include "dbus-watch.h"
31 #include "dbus-credentials.h"
32
33 /**
34  * @defgroup DBusTransportSocket DBusTransport implementations for sockets
35  * @ingroup  DBusInternals
36  * @brief Implementation details of DBusTransport on sockets
37  *
38  * @{
39  */
40
41 /**
42  * Opaque object representing a socket file descriptor transport.
43  */
44 typedef struct DBusTransportSocket DBusTransportSocket;
45
46 /**
47  * Implementation details of DBusTransportSocket. All members are private.
48  */
49 struct DBusTransportSocket
50 {
51   DBusTransport base;                   /**< Parent instance */
52   DBusSocket fd;                        /**< File descriptor. */
53   DBusWatch *read_watch;                /**< Watch for readability. */
54   DBusWatch *write_watch;               /**< Watch for writability. */
55
56   int max_bytes_read_per_iteration;     /**< To avoid blocking too long. */
57   int max_bytes_written_per_iteration;  /**< To avoid blocking too long. */
58
59   int message_bytes_written;            /**< Number of bytes of current
60                                          *   outgoing message that have
61                                          *   been written.
62                                          */
63   DBusString encoded_outgoing;          /**< Encoded version of current
64                                          *   outgoing message.
65                                          */
66   DBusString encoded_incoming;          /**< Encoded version of current
67                                          *   incoming data.
68                                          */
69 };
70
71 static void
72 free_watches (DBusTransport *transport)
73 {
74   DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
75
76   _dbus_verbose ("start\n");
77   
78   if (socket_transport->read_watch)
79     {
80       if (transport->connection)
81         _dbus_connection_remove_watch_unlocked (transport->connection,
82                                                 socket_transport->read_watch);
83       _dbus_watch_invalidate (socket_transport->read_watch);
84       _dbus_watch_unref (socket_transport->read_watch);
85       socket_transport->read_watch = NULL;
86     }
87
88   if (socket_transport->write_watch)
89     {
90       if (transport->connection)
91         _dbus_connection_remove_watch_unlocked (transport->connection,
92                                                 socket_transport->write_watch);
93       _dbus_watch_invalidate (socket_transport->write_watch);
94       _dbus_watch_unref (socket_transport->write_watch);
95       socket_transport->write_watch = NULL;
96     }
97
98   _dbus_verbose ("end\n");
99 }
100
101 static void
102 socket_finalize (DBusTransport *transport)
103 {
104   DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
105
106   _dbus_verbose ("\n");
107   
108   free_watches (transport);
109
110   _dbus_string_free (&socket_transport->encoded_outgoing);
111   _dbus_string_free (&socket_transport->encoded_incoming);
112   
113   _dbus_transport_finalize_base (transport);
114
115   _dbus_assert (socket_transport->read_watch == NULL);
116   _dbus_assert (socket_transport->write_watch == NULL);
117   
118   dbus_free (transport);
119 }
120
121 static void
122 check_write_watch (DBusTransport *transport)
123 {
124   DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
125   dbus_bool_t needed;
126
127   if (transport->connection == NULL)
128     return;
129
130   if (transport->disconnected)
131     {
132       _dbus_assert (socket_transport->write_watch == NULL);
133       return;
134     }
135   
136   _dbus_transport_ref (transport);
137
138   if (_dbus_transport_try_to_authenticate (transport))
139     needed = _dbus_connection_has_messages_to_send_unlocked (transport->connection);
140   else
141     {
142       if (transport->send_credentials_pending)
143         needed = TRUE;
144       else
145         {
146           DBusAuthState auth_state;
147           
148           auth_state = _dbus_auth_do_work (transport->auth);
149           
150           /* If we need memory we install the write watch just in case,
151            * if there's no need for it, it will get de-installed
152            * next time we try reading.
153            */
154           if (auth_state == DBUS_AUTH_STATE_HAVE_BYTES_TO_SEND ||
155               auth_state == DBUS_AUTH_STATE_WAITING_FOR_MEMORY)
156             needed = TRUE;
157           else
158             needed = FALSE;
159         }
160     }
161
162   _dbus_verbose ("check_write_watch(): needed = %d on connection %p watch %p fd = %" DBUS_SOCKET_FORMAT " outgoing messages exist %d\n",
163                  needed, transport->connection, socket_transport->write_watch,
164                  _dbus_socket_printable (socket_transport->fd),
165                  _dbus_connection_has_messages_to_send_unlocked (transport->connection));
166
167   _dbus_connection_toggle_watch_unlocked (transport->connection,
168                                           socket_transport->write_watch,
169                                           needed);
170
171   _dbus_transport_unref (transport);
172 }
173
174 static void
175 check_read_watch (DBusTransport *transport)
176 {
177   DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
178   dbus_bool_t need_read_watch;
179
180   _dbus_verbose ("fd = %" DBUS_SOCKET_FORMAT "\n",
181                  _dbus_socket_printable (socket_transport->fd));
182   
183   if (transport->connection == NULL)
184     return;
185
186   if (transport->disconnected)
187     {
188       _dbus_assert (socket_transport->read_watch == NULL);
189       return;
190     }
191   
192   _dbus_transport_ref (transport);
193
194   if (_dbus_transport_try_to_authenticate (transport))
195     need_read_watch =
196       (_dbus_counter_get_size_value (transport->live_messages) < transport->max_live_messages_size) &&
197       (_dbus_counter_get_unix_fd_value (transport->live_messages) < transport->max_live_messages_unix_fds);
198   else
199     {
200       if (transport->receive_credentials_pending)
201         need_read_watch = TRUE;
202       else
203         {
204           /* The reason to disable need_read_watch when not WAITING_FOR_INPUT
205            * is to avoid spinning on the file descriptor when we're waiting
206            * to write or for some other part of the auth process
207            */
208           DBusAuthState auth_state;
209           
210           auth_state = _dbus_auth_do_work (transport->auth);
211
212           /* If we need memory we install the read watch just in case,
213            * if there's no need for it, it will get de-installed
214            * next time we try reading. If we're authenticated we
215            * install it since we normally have it installed while
216            * authenticated.
217            */
218           if (auth_state == DBUS_AUTH_STATE_WAITING_FOR_INPUT ||
219               auth_state == DBUS_AUTH_STATE_WAITING_FOR_MEMORY ||
220               auth_state == DBUS_AUTH_STATE_AUTHENTICATED)
221             need_read_watch = TRUE;
222           else
223             need_read_watch = FALSE;
224         }
225     }
226
227   _dbus_verbose ("  setting read watch enabled = %d\n", need_read_watch);
228   _dbus_connection_toggle_watch_unlocked (transport->connection,
229                                           socket_transport->read_watch,
230                                           need_read_watch);
231
232   _dbus_transport_unref (transport);
233 }
234
235 static void
236 do_io_error (DBusTransport *transport)
237 {
238   _dbus_transport_ref (transport);
239   _dbus_transport_disconnect (transport);
240   _dbus_transport_unref (transport);
241 }
242
243 /* return value is whether we successfully read any new data. */
244 static dbus_bool_t
245 read_data_into_auth (DBusTransport *transport,
246                      dbus_bool_t   *oom)
247 {
248   DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
249   DBusString *buffer;
250   int bytes_read;
251   int saved_errno;
252
253   *oom = FALSE;
254
255   _dbus_auth_get_buffer (transport->auth, &buffer);
256   
257   bytes_read = _dbus_read_socket (socket_transport->fd,
258                                   buffer, socket_transport->max_bytes_read_per_iteration);
259   saved_errno = _dbus_save_socket_errno ();
260
261   _dbus_auth_return_buffer (transport->auth, buffer);
262
263   if (bytes_read > 0)
264     {
265       _dbus_verbose (" read %d bytes in auth phase\n", bytes_read);
266
267       return TRUE;
268     }
269   else if (bytes_read < 0)
270     {
271       /* EINTR already handled for us */
272
273       if (_dbus_get_is_errno_enomem (saved_errno))
274         {
275           *oom = TRUE;
276         }
277       else if (_dbus_get_is_errno_eagain_or_ewouldblock (saved_errno))
278         ; /* do nothing, just return FALSE below */
279       else
280         {
281           _dbus_verbose ("Error reading from remote app: %s\n",
282                          _dbus_strerror (saved_errno));
283           do_io_error (transport);
284         }
285
286       return FALSE;
287     }
288   else
289     {
290       _dbus_assert (bytes_read == 0);
291       
292       _dbus_verbose ("Disconnected from remote app\n");
293       do_io_error (transport);
294
295       return FALSE;
296     }
297 }
298
299 /* Return value is whether we successfully wrote any bytes */
300 static dbus_bool_t
301 write_data_from_auth (DBusTransport *transport)
302 {
303   DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
304   int bytes_written;
305   int saved_errno;
306   const DBusString *buffer;
307
308   if (!_dbus_auth_get_bytes_to_send (transport->auth,
309                                      &buffer))
310     return FALSE;
311   
312   bytes_written = _dbus_write_socket (socket_transport->fd,
313                                       buffer,
314                                       0, _dbus_string_get_length (buffer));
315   saved_errno = _dbus_save_socket_errno ();
316
317   if (bytes_written > 0)
318     {
319       _dbus_auth_bytes_sent (transport->auth, bytes_written);
320       return TRUE;
321     }
322   else if (bytes_written < 0)
323     {
324       /* EINTR already handled for us */
325       
326       if (_dbus_get_is_errno_eagain_or_ewouldblock (saved_errno))
327         ;
328       else
329         {
330           _dbus_verbose ("Error writing to remote app: %s\n",
331                          _dbus_strerror (saved_errno));
332           do_io_error (transport);
333         }
334     }
335
336   return FALSE;
337 }
338
339 /* FALSE on OOM */
340 static dbus_bool_t
341 exchange_credentials (DBusTransport *transport,
342                       dbus_bool_t    do_reading,
343                       dbus_bool_t    do_writing)
344 {
345   DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
346   DBusError error = DBUS_ERROR_INIT;
347
348   _dbus_verbose ("exchange_credentials: do_reading = %d, do_writing = %d\n",
349                   do_reading, do_writing);
350
351   if (do_writing && transport->send_credentials_pending)
352     {
353       if (_dbus_send_credentials_socket (socket_transport->fd,
354                                          &error))
355         {
356           transport->send_credentials_pending = FALSE;
357         }
358       else
359         {
360           _dbus_verbose ("Failed to write credentials: %s\n", error.message);
361           dbus_error_free (&error);
362           do_io_error (transport);
363         }
364     }
365   
366   if (do_reading && transport->receive_credentials_pending)
367     {
368       /* FIXME this can fail due to IO error _or_ OOM, broken
369        * (somewhat tricky to fix since the OOM error can be set after
370        * we already read the credentials byte, so basically we need to
371        * separate reading the byte and storing it in the
372        * transport->credentials). Does not really matter for now
373        * because storing in credentials never actually fails on unix.
374        */      
375       if (_dbus_read_credentials_socket (socket_transport->fd,
376                                          transport->credentials,
377                                          &error))
378         {
379           transport->receive_credentials_pending = FALSE;
380         }
381       else
382         {
383           _dbus_verbose ("Failed to read credentials %s\n", error.message);
384           dbus_error_free (&error);
385           do_io_error (transport);
386         }
387     }
388
389   if (!(transport->send_credentials_pending ||
390         transport->receive_credentials_pending))
391     {
392       if (!_dbus_auth_set_credentials (transport->auth,
393                                        transport->credentials))
394         return FALSE;
395     }
396
397   return TRUE;
398 }
399
400 static dbus_bool_t
401 do_authentication (DBusTransport *transport,
402                    dbus_bool_t    do_reading,
403                    dbus_bool_t    do_writing,
404                    dbus_bool_t   *auth_completed)
405 {
406   dbus_bool_t oom;
407   dbus_bool_t orig_auth_state;
408
409   oom = FALSE;
410   
411   orig_auth_state = _dbus_transport_try_to_authenticate (transport);
412
413   /* This is essential to avoid the check_write_watch() at the end,
414    * we don't want to add a write watch in do_iteration before
415    * we try writing and get EAGAIN
416    */
417   if (orig_auth_state)
418     {
419       if (auth_completed)
420         *auth_completed = FALSE;
421       return TRUE;
422     }
423   
424   _dbus_transport_ref (transport);
425   
426   while (!_dbus_transport_try_to_authenticate (transport) &&
427          _dbus_transport_get_is_connected (transport))
428     {      
429       if (!exchange_credentials (transport, do_reading, do_writing))
430         {
431           /* OOM */
432           oom = TRUE;
433           goto out;
434         }
435       
436       if (transport->send_credentials_pending ||
437           transport->receive_credentials_pending)
438         {
439           _dbus_verbose ("send_credentials_pending = %d receive_credentials_pending = %d\n",
440                          transport->send_credentials_pending,
441                          transport->receive_credentials_pending);
442           goto out;
443         }
444
445 #define TRANSPORT_SIDE(t) ((t)->is_server ? "server" : "client")
446       switch (_dbus_auth_do_work (transport->auth))
447         {
448         case DBUS_AUTH_STATE_WAITING_FOR_INPUT:
449           _dbus_verbose (" %s auth state: waiting for input\n",
450                          TRANSPORT_SIDE (transport));
451           if (!do_reading || !read_data_into_auth (transport, &oom))
452             goto out;
453           break;
454       
455         case DBUS_AUTH_STATE_WAITING_FOR_MEMORY:
456           _dbus_verbose (" %s auth state: waiting for memory\n",
457                          TRANSPORT_SIDE (transport));
458           oom = TRUE;
459           goto out;
460           break;
461       
462         case DBUS_AUTH_STATE_HAVE_BYTES_TO_SEND:
463           _dbus_verbose (" %s auth state: bytes to send\n",
464                          TRANSPORT_SIDE (transport));
465           if (!do_writing || !write_data_from_auth (transport))
466             goto out;
467           break;
468       
469         case DBUS_AUTH_STATE_NEED_DISCONNECT:
470           _dbus_verbose (" %s auth state: need to disconnect\n",
471                          TRANSPORT_SIDE (transport));
472           do_io_error (transport);
473           break;
474       
475         case DBUS_AUTH_STATE_AUTHENTICATED:
476           _dbus_verbose (" %s auth state: authenticated\n",
477                          TRANSPORT_SIDE (transport));
478           break;
479         }
480     }
481
482  out:
483   if (auth_completed)
484     *auth_completed = (orig_auth_state != _dbus_transport_try_to_authenticate (transport));
485   
486   check_read_watch (transport);
487   check_write_watch (transport);
488   _dbus_transport_unref (transport);
489
490   if (oom)
491     return FALSE;
492   else
493     return TRUE;
494 }
495
496 /* returns false on oom */
497 static dbus_bool_t
498 do_writing (DBusTransport *transport)
499 {
500   int total;
501   DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
502   dbus_bool_t oom;
503   
504   /* No messages without authentication! */
505   if (!_dbus_transport_try_to_authenticate (transport))
506     {
507       _dbus_verbose ("Not authenticated, not writing anything\n");
508       return TRUE;
509     }
510
511   if (transport->disconnected)
512     {
513       _dbus_verbose ("Not connected, not writing anything\n");
514       return TRUE;
515     }
516
517 #if 1
518   _dbus_verbose ("do_writing(), have_messages = %d, fd = %" DBUS_SOCKET_FORMAT "\n",
519                  _dbus_connection_has_messages_to_send_unlocked (transport->connection),
520                  _dbus_socket_printable (socket_transport->fd));
521 #endif
522   
523   oom = FALSE;
524   total = 0;
525
526   while (!transport->disconnected &&
527          _dbus_connection_has_messages_to_send_unlocked (transport->connection))
528     {
529       int bytes_written;
530       DBusMessage *message;
531       const DBusString *header;
532       const DBusString *body;
533       int header_len, body_len;
534       int total_bytes_to_write;
535       int saved_errno;
536       
537       if (total > socket_transport->max_bytes_written_per_iteration)
538         {
539           _dbus_verbose ("%d bytes exceeds %d bytes written per iteration, returning\n",
540                          total, socket_transport->max_bytes_written_per_iteration);
541           goto out;
542         }
543       
544       message = _dbus_connection_get_message_to_send (transport->connection);
545       _dbus_assert (message != NULL);
546       dbus_message_lock (message);
547
548 #if 0
549       _dbus_verbose ("writing message %p\n", message);
550 #endif
551       
552       _dbus_message_get_network_data (message,
553                                       &header, &body);
554
555       header_len = _dbus_string_get_length (header);
556       body_len = _dbus_string_get_length (body);
557
558       if (_dbus_auth_needs_encoding (transport->auth))
559         {
560           /* Does fd passing even make sense with encoded data? */
561           _dbus_assert(!DBUS_TRANSPORT_CAN_SEND_UNIX_FD(transport));
562
563           if (_dbus_string_get_length (&socket_transport->encoded_outgoing) == 0)
564             {
565               if (!_dbus_auth_encode_data (transport->auth,
566                                            header, &socket_transport->encoded_outgoing))
567                 {
568                   oom = TRUE;
569                   goto out;
570                 }
571               
572               if (!_dbus_auth_encode_data (transport->auth,
573                                            body, &socket_transport->encoded_outgoing))
574                 {
575                   _dbus_string_set_length (&socket_transport->encoded_outgoing, 0);
576                   oom = TRUE;
577                   goto out;
578                 }
579             }
580           
581           total_bytes_to_write = _dbus_string_get_length (&socket_transport->encoded_outgoing);
582
583 #if 0
584           _dbus_verbose ("encoded message is %d bytes\n",
585                          total_bytes_to_write);
586 #endif
587           
588           bytes_written =
589             _dbus_write_socket (socket_transport->fd,
590                                 &socket_transport->encoded_outgoing,
591                                 socket_transport->message_bytes_written,
592                                 total_bytes_to_write - socket_transport->message_bytes_written);
593           saved_errno = _dbus_save_socket_errno ();
594         }
595       else
596         {
597           total_bytes_to_write = header_len + body_len;
598
599 #if 0
600           _dbus_verbose ("message is %d bytes\n",
601                          total_bytes_to_write);
602 #endif
603
604 #ifdef HAVE_UNIX_FD_PASSING
605           if (socket_transport->message_bytes_written <= 0 && DBUS_TRANSPORT_CAN_SEND_UNIX_FD(transport))
606             {
607               /* Send the fds along with the first byte of the message */
608               const int *unix_fds;
609               unsigned n;
610
611               _dbus_message_get_unix_fds(message, &unix_fds, &n);
612
613               bytes_written =
614                 _dbus_write_socket_with_unix_fds_two (socket_transport->fd,
615                                                       header,
616                                                       socket_transport->message_bytes_written,
617                                                       header_len - socket_transport->message_bytes_written,
618                                                       body,
619                                                       0, body_len,
620                                                       unix_fds,
621                                                       n);
622               saved_errno = _dbus_save_socket_errno ();
623
624               if (bytes_written > 0 && n > 0)
625                 _dbus_verbose("Wrote %i unix fds\n", n);
626             }
627           else
628 #endif
629             {
630               if (socket_transport->message_bytes_written < header_len)
631                 {
632                   bytes_written =
633                     _dbus_write_socket_two (socket_transport->fd,
634                                             header,
635                                             socket_transport->message_bytes_written,
636                                             header_len - socket_transport->message_bytes_written,
637                                             body,
638                                             0, body_len);
639                 }
640               else
641                 {
642                   bytes_written =
643                     _dbus_write_socket (socket_transport->fd,
644                                         body,
645                                         (socket_transport->message_bytes_written - header_len),
646                                         body_len -
647                                         (socket_transport->message_bytes_written - header_len));
648                 }
649
650               saved_errno = _dbus_save_socket_errno ();
651             }
652         }
653
654       if (bytes_written < 0)
655         {
656           /* EINTR already handled for us */
657           
658           /* If the other end closed the socket with close() or shutdown(), we
659            * receive EPIPE here but we must not close the socket yet: there
660            * might still be some data to read. See:
661            * http://lists.freedesktop.org/archives/dbus/2008-March/009526.html
662            */
663           
664           if (_dbus_get_is_errno_eagain_or_ewouldblock (saved_errno) || _dbus_get_is_errno_epipe (saved_errno))
665             goto out;
666
667           /* Since Linux commit 25888e (from 2.6.37-rc4, Nov 2010), sendmsg()
668            * on Unix sockets returns -1 errno=ETOOMANYREFS when the passfd
669            * mechanism (SCM_RIGHTS) is used recursively with a recursion level
670            * of maximum 4. The kernel does not have an API to check whether
671            * the passed fds can be forwarded and it can change asynchronously.
672            * See:
673            * https://bugs.freedesktop.org/show_bug.cgi?id=80163
674            */
675
676           else if (_dbus_get_is_errno_etoomanyrefs (saved_errno))
677             {
678               /* We only send fds in the first byte of the message.
679                * ETOOMANYREFS cannot happen after.
680                */
681               _dbus_assert (socket_transport->message_bytes_written == 0);
682
683               _dbus_verbose (" discard message of %d bytes due to ETOOMANYREFS\n",
684                              total_bytes_to_write);
685
686               socket_transport->message_bytes_written = 0;
687               _dbus_string_set_length (&socket_transport->encoded_outgoing, 0);
688               _dbus_string_compact (&socket_transport->encoded_outgoing, 2048);
689
690               /* The message was not actually sent but it needs to be removed
691                * from the outgoing queue
692                */
693               _dbus_connection_message_sent_unlocked (transport->connection,
694                                                       message);
695             }
696           else
697             {
698               _dbus_verbose ("Error writing to remote app: %s\n",
699                              _dbus_strerror (saved_errno));
700               do_io_error (transport);
701               goto out;
702             }
703         }
704       else
705         {
706           _dbus_verbose (" wrote %d bytes of %d\n", bytes_written,
707                          total_bytes_to_write);
708           
709           total += bytes_written;
710           socket_transport->message_bytes_written += bytes_written;
711
712           _dbus_assert (socket_transport->message_bytes_written <=
713                         total_bytes_to_write);
714           
715           if (socket_transport->message_bytes_written == total_bytes_to_write)
716             {
717               socket_transport->message_bytes_written = 0;
718               _dbus_string_set_length (&socket_transport->encoded_outgoing, 0);
719               _dbus_string_compact (&socket_transport->encoded_outgoing, 2048);
720
721               _dbus_connection_message_sent_unlocked (transport->connection,
722                                                       message);
723             }
724         }
725     }
726
727  out:
728   if (oom)
729     return FALSE;
730   else
731     return TRUE;
732 }
733
734 /* returns false on out-of-memory */
735 static dbus_bool_t
736 do_reading (DBusTransport *transport)
737 {
738   DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
739   DBusString *buffer;
740   int bytes_read;
741   int total;
742   dbus_bool_t oom;
743   int saved_errno;
744
745   _dbus_verbose ("fd = %" DBUS_SOCKET_FORMAT "\n",
746                  _dbus_socket_printable (socket_transport->fd));
747   
748   /* No messages without authentication! */
749   if (!_dbus_transport_try_to_authenticate (transport))
750     return TRUE;
751
752   oom = FALSE;
753   
754   total = 0;
755
756  again:
757   
758   /* See if we've exceeded max messages and need to disable reading */
759   check_read_watch (transport);
760   
761   if (total > socket_transport->max_bytes_read_per_iteration)
762     {
763       _dbus_verbose ("%d bytes exceeds %d bytes read per iteration, returning\n",
764                      total, socket_transport->max_bytes_read_per_iteration);
765       goto out;
766     }
767
768   _dbus_assert (socket_transport->read_watch != NULL ||
769                 transport->disconnected);
770   
771   if (transport->disconnected)
772     goto out;
773
774   if (!dbus_watch_get_enabled (socket_transport->read_watch))
775     return TRUE;
776   
777   if (_dbus_auth_needs_decoding (transport->auth))
778     {
779       /* Does fd passing even make sense with encoded data? */
780       _dbus_assert(!DBUS_TRANSPORT_CAN_SEND_UNIX_FD(transport));
781
782       if (_dbus_string_get_length (&socket_transport->encoded_incoming) > 0)
783         bytes_read = _dbus_string_get_length (&socket_transport->encoded_incoming);
784       else
785         bytes_read = _dbus_read_socket (socket_transport->fd,
786                                         &socket_transport->encoded_incoming,
787                                         socket_transport->max_bytes_read_per_iteration);
788
789       saved_errno = _dbus_save_socket_errno ();
790
791       _dbus_assert (_dbus_string_get_length (&socket_transport->encoded_incoming) ==
792                     bytes_read);
793       
794       if (bytes_read > 0)
795         {
796           _dbus_message_loader_get_buffer (transport->loader,
797                                            &buffer);
798
799           if (!_dbus_auth_decode_data (transport->auth,
800                                        &socket_transport->encoded_incoming,
801                                        buffer))
802             {
803               _dbus_verbose ("Out of memory decoding incoming data\n");
804               _dbus_message_loader_return_buffer (transport->loader,
805                                               buffer);
806
807               oom = TRUE;
808               goto out;
809             }
810
811           _dbus_message_loader_return_buffer (transport->loader,
812                                               buffer);
813
814           _dbus_string_set_length (&socket_transport->encoded_incoming, 0);
815           _dbus_string_compact (&socket_transport->encoded_incoming, 2048);
816         }
817     }
818   else
819     {
820       _dbus_message_loader_get_buffer (transport->loader,
821                                        &buffer);
822
823 #ifdef HAVE_UNIX_FD_PASSING
824       if (DBUS_TRANSPORT_CAN_SEND_UNIX_FD(transport))
825         {
826           int *fds;
827           unsigned int n_fds;
828
829           if (!_dbus_message_loader_get_unix_fds(transport->loader, &fds, &n_fds))
830             {
831               _dbus_verbose ("Out of memory reading file descriptors\n");
832               _dbus_message_loader_return_buffer (transport->loader, buffer);
833               oom = TRUE;
834               goto out;
835             }
836
837           bytes_read = _dbus_read_socket_with_unix_fds(socket_transport->fd,
838                                                        buffer,
839                                                        socket_transport->max_bytes_read_per_iteration,
840                                                        fds, &n_fds);
841           saved_errno = _dbus_save_socket_errno ();
842
843           if (bytes_read >= 0 && n_fds > 0)
844             _dbus_verbose("Read %i unix fds\n", n_fds);
845
846           _dbus_message_loader_return_unix_fds(transport->loader, fds, bytes_read < 0 ? 0 : n_fds);
847         }
848       else
849 #endif
850         {
851           bytes_read = _dbus_read_socket (socket_transport->fd,
852                                           buffer, socket_transport->max_bytes_read_per_iteration);
853           saved_errno = _dbus_save_socket_errno ();
854         }
855
856       _dbus_message_loader_return_buffer (transport->loader,
857                                           buffer);
858     }
859
860   if (bytes_read < 0)
861     {
862       /* EINTR already handled for us */
863
864       if (_dbus_get_is_errno_enomem (saved_errno))
865         {
866           _dbus_verbose ("Out of memory in read()/do_reading()\n");
867           oom = TRUE;
868           goto out;
869         }
870       else if (_dbus_get_is_errno_eagain_or_ewouldblock (saved_errno))
871         goto out;
872       else
873         {
874           _dbus_verbose ("Error reading from remote app: %s\n",
875                          _dbus_strerror (saved_errno));
876           do_io_error (transport);
877           goto out;
878         }
879     }
880   else if (bytes_read == 0)
881     {
882       _dbus_verbose ("Disconnected from remote app\n");
883       do_io_error (transport);
884       goto out;
885     }
886   else
887     {
888       _dbus_verbose (" read %d bytes\n", bytes_read);
889       
890       total += bytes_read;      
891
892       if (!_dbus_transport_queue_messages (transport))
893         {
894           oom = TRUE;
895           _dbus_verbose (" out of memory when queueing messages we just read in the transport\n");
896           goto out;
897         }
898       
899       /* Try reading more data until we get EAGAIN and return, or
900        * exceed max bytes per iteration.  If in blocking mode of
901        * course we'll block instead of returning.
902        */
903       goto again;
904     }
905
906  out:
907   if (oom)
908     return FALSE;
909   else
910     return TRUE;
911 }
912
913 static dbus_bool_t
914 unix_error_with_read_to_come (DBusTransport *itransport,
915                               DBusWatch     *watch,
916                               unsigned int   flags)
917 {
918   DBusTransportSocket *transport = (DBusTransportSocket *) itransport;
919
920   if (!(flags & DBUS_WATCH_HANGUP || flags & DBUS_WATCH_ERROR))
921     return FALSE;
922    
923   /* If we have a read watch enabled ...
924      we -might have data incoming ... => handle the HANGUP there */
925   if (watch != transport->read_watch &&
926       _dbus_watch_get_enabled (transport->read_watch))
927     return FALSE;
928       
929   return TRUE; 
930 }
931
932 static dbus_bool_t
933 socket_handle_watch (DBusTransport *transport,
934                    DBusWatch     *watch,
935                    unsigned int   flags)
936 {
937   DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
938
939   _dbus_assert (watch == socket_transport->read_watch ||
940                 watch == socket_transport->write_watch);
941   _dbus_assert (watch != NULL);
942   
943   /* If we hit an error here on a write watch, don't disconnect the transport yet because data can
944    * still be in the buffer and do_reading may need several iteration to read
945    * it all (because of its max_bytes_read_per_iteration limit). 
946    */
947   if (!(flags & DBUS_WATCH_READABLE) && unix_error_with_read_to_come (transport, watch, flags))
948     {
949       _dbus_verbose ("Hang up or error on watch\n");
950       _dbus_transport_disconnect (transport);
951       return TRUE;
952     }
953   
954   if (watch == socket_transport->read_watch &&
955       (flags & DBUS_WATCH_READABLE))
956     {
957       dbus_bool_t auth_finished;
958 #if 1
959       _dbus_verbose ("handling read watch %p flags = %x\n",
960                      watch, flags);
961 #endif
962       if (!do_authentication (transport, TRUE, FALSE, &auth_finished))
963         return FALSE;
964
965       /* We don't want to do a read immediately following
966        * a successful authentication.  This is so we
967        * have a chance to propagate the authentication
968        * state further up.  Specifically, we need to
969        * process any pending data from the auth object.
970        */
971       if (!auth_finished)
972         {
973           if (!do_reading (transport))
974             {
975               _dbus_verbose ("no memory to read\n");
976               return FALSE;
977             }
978         }
979       else
980         {
981           _dbus_verbose ("Not reading anything since we just completed the authentication\n");
982         }
983     }
984   else if (watch == socket_transport->write_watch &&
985            (flags & DBUS_WATCH_WRITABLE))
986     {
987 #if 1
988       _dbus_verbose ("handling write watch, have_outgoing_messages = %d\n",
989                      _dbus_connection_has_messages_to_send_unlocked (transport->connection));
990 #endif
991       if (!do_authentication (transport, FALSE, TRUE, NULL))
992         return FALSE;
993       
994       if (!do_writing (transport))
995         {
996           _dbus_verbose ("no memory to write\n");
997           return FALSE;
998         }
999
1000       /* See if we still need the write watch */
1001       check_write_watch (transport);
1002     }
1003 #ifdef DBUS_ENABLE_VERBOSE_MODE
1004   else
1005     {
1006       if (watch == socket_transport->read_watch)
1007         _dbus_verbose ("asked to handle read watch with non-read condition 0x%x\n",
1008                        flags);
1009       else if (watch == socket_transport->write_watch)
1010         _dbus_verbose ("asked to handle write watch with non-write condition 0x%x\n",
1011                        flags);
1012       else
1013         _dbus_verbose ("asked to handle watch %p on fd %" DBUS_SOCKET_FORMAT " that we don't recognize\n",
1014                        watch, dbus_watch_get_socket (watch));
1015     }
1016 #endif /* DBUS_ENABLE_VERBOSE_MODE */
1017
1018   return TRUE;
1019 }
1020
1021 static void
1022 socket_disconnect (DBusTransport *transport)
1023 {
1024   DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
1025
1026   _dbus_verbose ("\n");
1027   
1028   free_watches (transport);
1029   
1030   _dbus_close_socket (socket_transport->fd, NULL);
1031   _dbus_socket_invalidate (&socket_transport->fd);
1032 }
1033
1034 static dbus_bool_t
1035 socket_connection_set (DBusTransport *transport)
1036 {
1037   DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
1038
1039   _dbus_watch_set_handler (socket_transport->write_watch,
1040                            _dbus_connection_handle_watch,
1041                            transport->connection, NULL);
1042
1043   _dbus_watch_set_handler (socket_transport->read_watch,
1044                            _dbus_connection_handle_watch,
1045                            transport->connection, NULL);
1046   
1047   if (!_dbus_connection_add_watch_unlocked (transport->connection,
1048                                             socket_transport->write_watch))
1049     return FALSE;
1050
1051   if (!_dbus_connection_add_watch_unlocked (transport->connection,
1052                                             socket_transport->read_watch))
1053     {
1054       _dbus_connection_remove_watch_unlocked (transport->connection,
1055                                               socket_transport->write_watch);
1056       return FALSE;
1057     }
1058
1059   check_read_watch (transport);
1060   check_write_watch (transport);
1061
1062   return TRUE;
1063 }
1064
1065 /**
1066  * @todo We need to have a way to wake up the select sleep if
1067  * a new iteration request comes in with a flag (read/write) that
1068  * we're not currently serving. Otherwise a call that just reads
1069  * could block a write call forever (if there are no incoming
1070  * messages).
1071  */
1072 static  void
1073 socket_do_iteration (DBusTransport *transport,
1074                    unsigned int   flags,
1075                    int            timeout_milliseconds)
1076 {
1077   DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
1078   DBusPollFD poll_fd;
1079   int poll_res;
1080   int poll_timeout;
1081
1082   _dbus_verbose (" iteration flags = %s%s timeout = %d read_watch = %p write_watch = %p fd = %" DBUS_SOCKET_FORMAT "\n",
1083                  flags & DBUS_ITERATION_DO_READING ? "read" : "",
1084                  flags & DBUS_ITERATION_DO_WRITING ? "write" : "",
1085                  timeout_milliseconds,
1086                  socket_transport->read_watch,
1087                  socket_transport->write_watch,
1088                  _dbus_socket_printable (socket_transport->fd));
1089   
1090   /* the passed in DO_READING/DO_WRITING flags indicate whether to
1091    * read/write messages, but regardless of those we may need to block
1092    * for reading/writing to do auth.  But if we do reading for auth,
1093    * we don't want to read any messages yet if not given DO_READING.
1094    */
1095
1096   poll_fd.fd = _dbus_socket_get_pollable (socket_transport->fd);
1097   poll_fd.events = 0;
1098   
1099   if (_dbus_transport_try_to_authenticate (transport))
1100     {
1101       /* This is kind of a hack; if we have stuff to write, then try
1102        * to avoid the poll. This is probably about a 5% speedup on an
1103        * echo client/server.
1104        *
1105        * If both reading and writing were requested, we want to avoid this
1106        * since it could have funky effects:
1107        *   - both ends spinning waiting for the other one to read
1108        *     data so they can finish writing
1109        *   - prioritizing all writing ahead of reading
1110        */
1111       if ((flags & DBUS_ITERATION_DO_WRITING) &&
1112           !(flags & (DBUS_ITERATION_DO_READING | DBUS_ITERATION_BLOCK)) &&
1113           !transport->disconnected &&
1114           _dbus_connection_has_messages_to_send_unlocked (transport->connection))
1115         {
1116           do_writing (transport);
1117
1118           if (transport->disconnected ||
1119               !_dbus_connection_has_messages_to_send_unlocked (transport->connection))
1120             goto out;
1121         }
1122
1123       /* If we get here, we decided to do the poll() after all */
1124       _dbus_assert (socket_transport->read_watch);
1125       if (flags & DBUS_ITERATION_DO_READING)
1126         poll_fd.events |= _DBUS_POLLIN;
1127
1128       _dbus_assert (socket_transport->write_watch);
1129       if (flags & DBUS_ITERATION_DO_WRITING)
1130         poll_fd.events |= _DBUS_POLLOUT;
1131     }
1132   else
1133     {
1134       DBusAuthState auth_state;
1135       
1136       auth_state = _dbus_auth_do_work (transport->auth);
1137
1138       if (transport->receive_credentials_pending ||
1139           auth_state == DBUS_AUTH_STATE_WAITING_FOR_INPUT)
1140         poll_fd.events |= _DBUS_POLLIN;
1141
1142       if (transport->send_credentials_pending ||
1143           auth_state == DBUS_AUTH_STATE_HAVE_BYTES_TO_SEND)
1144         poll_fd.events |= _DBUS_POLLOUT;
1145     }
1146
1147   if (poll_fd.events)
1148     {
1149       int saved_errno;
1150
1151       if (flags & DBUS_ITERATION_BLOCK)
1152         poll_timeout = timeout_milliseconds;
1153       else
1154         poll_timeout = 0;
1155
1156       /* For blocking selects we drop the connection lock here
1157        * to avoid blocking out connection access during a potentially
1158        * indefinite blocking call. The io path is still protected
1159        * by the io_path_cond condvar, so we won't reenter this.
1160        */
1161       if (flags & DBUS_ITERATION_BLOCK)
1162         {
1163           _dbus_verbose ("unlock pre poll\n");
1164           _dbus_connection_unlock (transport->connection);
1165         }
1166       
1167     again:
1168       poll_res = _dbus_poll (&poll_fd, 1, poll_timeout);
1169       saved_errno = _dbus_save_socket_errno ();
1170
1171       if (poll_res < 0 && _dbus_get_is_errno_eintr (saved_errno))
1172         goto again;
1173
1174       if (flags & DBUS_ITERATION_BLOCK)
1175         {
1176           _dbus_verbose ("lock post poll\n");
1177           _dbus_connection_lock (transport->connection);
1178         }
1179       
1180       if (poll_res >= 0)
1181         {
1182           if (poll_res == 0)
1183             poll_fd.revents = 0; /* some concern that posix does not guarantee this;
1184                                   * valgrind flags it as an error. though it probably
1185                                   * is guaranteed on linux at least.
1186                                   */
1187           
1188           if (poll_fd.revents & _DBUS_POLLERR)
1189             do_io_error (transport);
1190           else
1191             {
1192               dbus_bool_t need_read = (poll_fd.revents & _DBUS_POLLIN) > 0;
1193               dbus_bool_t need_write = (poll_fd.revents & _DBUS_POLLOUT) > 0;
1194               dbus_bool_t authentication_completed;
1195
1196               _dbus_verbose ("in iteration, need_read=%d need_write=%d\n",
1197                              need_read, need_write);
1198               do_authentication (transport, need_read, need_write,
1199                                  &authentication_completed);
1200
1201               /* See comment in socket_handle_watch. */
1202               if (authentication_completed)
1203                 goto out;
1204                                  
1205               if (need_read && (flags & DBUS_ITERATION_DO_READING))
1206                 do_reading (transport);
1207               if (need_write && (flags & DBUS_ITERATION_DO_WRITING))
1208                 do_writing (transport);
1209             }
1210         }
1211       else
1212         {
1213           _dbus_verbose ("Error from _dbus_poll(): %s\n",
1214                          _dbus_strerror (saved_errno));
1215         }
1216     }
1217
1218
1219  out:
1220   /* We need to install the write watch only if we did not
1221    * successfully write everything. Note we need to be careful that we
1222    * don't call check_write_watch *before* do_writing, since it's
1223    * inefficient to add the write watch, and we can avoid it most of
1224    * the time since we can write immediately.
1225    * 
1226    * However, we MUST always call check_write_watch(); DBusConnection code
1227    * relies on the fact that running an iteration will notice that
1228    * messages are pending.
1229    */
1230   check_write_watch (transport);
1231
1232   _dbus_verbose (" ... leaving do_iteration()\n");
1233 }
1234
1235 static void
1236 socket_live_messages_changed (DBusTransport *transport)
1237 {
1238   /* See if we should look for incoming messages again */
1239   check_read_watch (transport);
1240 }
1241
1242
1243 static dbus_bool_t
1244 socket_get_socket_fd (DBusTransport *transport,
1245                       DBusSocket    *fd_p)
1246 {
1247   DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
1248   
1249   *fd_p = socket_transport->fd;
1250   
1251   return TRUE;
1252 }
1253
1254 static const DBusTransportVTable socket_vtable = {
1255   socket_finalize,
1256   socket_handle_watch,
1257   socket_disconnect,
1258   socket_connection_set,
1259   socket_do_iteration,
1260   socket_live_messages_changed,
1261   socket_get_socket_fd
1262 };
1263
1264 /**
1265  * Creates a new transport for the given socket file descriptor.  The file
1266  * descriptor must be nonblocking (use _dbus_set_fd_nonblocking() to
1267  * make it so). This function is shared by various transports that
1268  * boil down to a full duplex file descriptor.
1269  *
1270  * @param fd the file descriptor.
1271  * @param server_guid non-#NULL if this transport is on the server side of a connection
1272  * @param address the transport's address
1273  * @returns the new transport, or #NULL if no memory.
1274  */
1275 DBusTransport*
1276 _dbus_transport_new_for_socket (DBusSocket        fd,
1277                                 const DBusString *server_guid,
1278                                 const DBusString *address)
1279 {
1280   DBusTransportSocket *socket_transport;
1281   
1282   socket_transport = dbus_new0 (DBusTransportSocket, 1);
1283   if (socket_transport == NULL)
1284     return NULL;
1285
1286   if (!_dbus_string_init (&socket_transport->encoded_outgoing))
1287     goto failed_0;
1288
1289   if (!_dbus_string_init (&socket_transport->encoded_incoming))
1290     goto failed_1;
1291   
1292   socket_transport->write_watch = _dbus_watch_new (_dbus_socket_get_pollable (fd),
1293                                                  DBUS_WATCH_WRITABLE,
1294                                                  FALSE,
1295                                                  NULL, NULL, NULL);
1296   if (socket_transport->write_watch == NULL)
1297     goto failed_2;
1298   
1299   socket_transport->read_watch = _dbus_watch_new (_dbus_socket_get_pollable (fd),
1300                                                 DBUS_WATCH_READABLE,
1301                                                 FALSE,
1302                                                 NULL, NULL, NULL);
1303   if (socket_transport->read_watch == NULL)
1304     goto failed_3;
1305
1306   if (!_dbus_transport_init_base (&socket_transport->base,
1307                                   &socket_vtable,
1308                                   server_guid, address))
1309     goto failed_4;
1310
1311 #ifdef HAVE_UNIX_FD_PASSING
1312   _dbus_auth_set_unix_fd_possible(socket_transport->base.auth, _dbus_socket_can_pass_unix_fd(fd));
1313 #endif
1314
1315   socket_transport->fd = fd;
1316   socket_transport->message_bytes_written = 0;
1317   
1318   /* These values should probably be tunable or something. */     
1319   socket_transport->max_bytes_read_per_iteration = 2048;
1320   socket_transport->max_bytes_written_per_iteration = 2048;
1321   
1322   return (DBusTransport*) socket_transport;
1323
1324  failed_4:
1325   _dbus_watch_invalidate (socket_transport->read_watch);
1326   _dbus_watch_unref (socket_transport->read_watch);
1327  failed_3:
1328   _dbus_watch_invalidate (socket_transport->write_watch);
1329   _dbus_watch_unref (socket_transport->write_watch);
1330  failed_2:
1331   _dbus_string_free (&socket_transport->encoded_incoming);
1332  failed_1:
1333   _dbus_string_free (&socket_transport->encoded_outgoing);
1334  failed_0:
1335   dbus_free (socket_transport);
1336   return NULL;
1337 }
1338
1339 /**
1340  * Creates a new transport for the given hostname and port.
1341  * If host is NULL, it will default to localhost
1342  *
1343  * @param host the host to connect to
1344  * @param port the port to connect to
1345  * @param family the address family to connect to
1346  * @param noncefile path to nonce file
1347  * @param error location to store reason for failure.
1348  * @returns a new transport, or #NULL on failure.
1349  */
1350 DBusTransport*
1351 _dbus_transport_new_for_tcp_socket (const char     *host,
1352                                     const char     *port,
1353                                     const char     *family,
1354                                     const char     *noncefile,
1355                                     DBusError      *error)
1356 {
1357   DBusSocket fd;
1358   DBusTransport *transport;
1359   DBusString address;
1360   
1361   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1362
1363   if (!_dbus_string_init (&address))
1364     {
1365       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1366       return NULL;
1367     }
1368
1369   if (host == NULL)
1370     host = "localhost";
1371
1372   if (!_dbus_string_append (&address, noncefile ? "nonce-tcp:" : "tcp:"))
1373     goto error;
1374
1375   if (!_dbus_string_append (&address, "host=") ||
1376       !_dbus_string_append (&address, host))
1377     goto error;
1378
1379   if (!_dbus_string_append (&address, ",port=") ||
1380       !_dbus_string_append (&address, port))
1381     goto error;
1382
1383   if (family != NULL &&
1384       (!_dbus_string_append (&address, ",family=") ||
1385        !_dbus_string_append (&address, family)))
1386     goto error;
1387
1388   if (noncefile != NULL &&
1389       (!_dbus_string_append (&address, ",noncefile=") ||
1390        !_dbus_string_append (&address, noncefile)))
1391     goto error;
1392
1393   fd = _dbus_connect_tcp_socket_with_nonce (host, port, family, noncefile, error);
1394   if (!_dbus_socket_is_valid (fd))
1395     {
1396       _DBUS_ASSERT_ERROR_IS_SET (error);
1397       _dbus_string_free (&address);
1398       return NULL;
1399     }
1400
1401   _dbus_verbose ("Successfully connected to tcp socket %s:%s\n",
1402                  host, port);
1403   
1404   transport = _dbus_transport_new_for_socket (fd, NULL, &address);
1405   _dbus_string_free (&address);
1406   if (transport == NULL)
1407     {
1408       dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1409       _dbus_close_socket (fd, NULL);
1410       _dbus_socket_invalidate (&fd);
1411     }
1412
1413   return transport;
1414
1415 error:
1416   _dbus_string_free (&address);
1417   dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
1418   return NULL;
1419 }
1420
1421 /**
1422  * Opens a TCP socket transport.
1423  * 
1424  * @param entry the address entry to try opening as a tcp transport.
1425  * @param transport_p return location for the opened transport
1426  * @param error error to be set
1427  * @returns result of the attempt
1428  */
1429 DBusTransportOpenResult
1430 _dbus_transport_open_socket(DBusAddressEntry  *entry,
1431                             DBusTransport    **transport_p,                            
1432                             DBusError         *error)
1433 {
1434   const char *method;
1435   dbus_bool_t isTcp;
1436   dbus_bool_t isNonceTcp;
1437   
1438   method = dbus_address_entry_get_method (entry);
1439   _dbus_assert (method != NULL);
1440
1441   isTcp = strcmp (method, "tcp") == 0;
1442   isNonceTcp = strcmp (method, "nonce-tcp") == 0;
1443
1444   if (isTcp || isNonceTcp)
1445     {
1446       const char *host = dbus_address_entry_get_value (entry, "host");
1447       const char *port = dbus_address_entry_get_value (entry, "port");
1448       const char *family = dbus_address_entry_get_value (entry, "family");
1449       const char *noncefile = dbus_address_entry_get_value (entry, "noncefile");
1450
1451       if ((isNonceTcp == TRUE) != (noncefile != NULL)) {
1452           _dbus_set_bad_address (error, method, "noncefile", NULL);
1453           return DBUS_TRANSPORT_OPEN_BAD_ADDRESS;
1454       }
1455
1456       if (port == NULL)
1457         {
1458           _dbus_set_bad_address (error, method, "port", NULL);
1459           return DBUS_TRANSPORT_OPEN_BAD_ADDRESS;
1460         }
1461
1462       *transport_p = _dbus_transport_new_for_tcp_socket (host, port, family, noncefile, error);
1463       if (*transport_p == NULL)
1464         {
1465           _DBUS_ASSERT_ERROR_IS_SET (error);
1466           return DBUS_TRANSPORT_OPEN_DID_NOT_CONNECT;
1467         }
1468       else
1469         {
1470           _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1471           return DBUS_TRANSPORT_OPEN_OK;
1472         }
1473     }
1474   else
1475     {
1476       _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1477       return DBUS_TRANSPORT_OPEN_NOT_HANDLED;
1478     }
1479 }
1480
1481 /** @} */
1482