D-Bus  1.11.6
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 
45 
50 {
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)
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)
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))
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),
166 
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 =
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);
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 
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) &&
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  default:
480  _dbus_assert_not_reached ("invalid auth state");
481  }
482  }
483 
484  out:
485  if (auth_completed)
486  *auth_completed = (orig_auth_state != _dbus_transport_try_to_authenticate (transport));
487 
488  check_read_watch (transport);
489  check_write_watch (transport);
490  _dbus_transport_unref (transport);
491 
492  if (oom)
493  return FALSE;
494  else
495  return TRUE;
496 }
497 
498 /* returns false on oom */
499 static dbus_bool_t
500 do_writing (DBusTransport *transport)
501 {
502  int total;
503  DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
504  dbus_bool_t oom;
505 
506  /* No messages without authentication! */
507  if (!_dbus_transport_try_to_authenticate (transport))
508  {
509  _dbus_verbose ("Not authenticated, not writing anything\n");
510  return TRUE;
511  }
512 
513  if (transport->disconnected)
514  {
515  _dbus_verbose ("Not connected, not writing anything\n");
516  return TRUE;
517  }
518 
519 #if 1
520  _dbus_verbose ("do_writing(), have_messages = %d, fd = %" DBUS_SOCKET_FORMAT "\n",
522  _dbus_socket_printable (socket_transport->fd));
523 #endif
524 
525  oom = FALSE;
526  total = 0;
527 
528  while (!transport->disconnected &&
530  {
531  int bytes_written;
532  DBusMessage *message;
533  const DBusString *header;
534  const DBusString *body;
535  int header_len, body_len;
536  int total_bytes_to_write;
537  int saved_errno;
538 
539  if (total > socket_transport->max_bytes_written_per_iteration)
540  {
541  _dbus_verbose ("%d bytes exceeds %d bytes written per iteration, returning\n",
542  total, socket_transport->max_bytes_written_per_iteration);
543  goto out;
544  }
545 
546  message = _dbus_connection_get_message_to_send (transport->connection);
547  _dbus_assert (message != NULL);
548  dbus_message_lock (message);
549 
550 #if 0
551  _dbus_verbose ("writing message %p\n", message);
552 #endif
553 
555  &header, &body);
556 
557  header_len = _dbus_string_get_length (header);
558  body_len = _dbus_string_get_length (body);
559 
560  if (_dbus_auth_needs_encoding (transport->auth))
561  {
562  /* Does fd passing even make sense with encoded data? */
563  _dbus_assert(!DBUS_TRANSPORT_CAN_SEND_UNIX_FD(transport));
564 
565  if (_dbus_string_get_length (&socket_transport->encoded_outgoing) == 0)
566  {
567  if (!_dbus_auth_encode_data (transport->auth,
568  header, &socket_transport->encoded_outgoing))
569  {
570  oom = TRUE;
571  goto out;
572  }
573 
574  if (!_dbus_auth_encode_data (transport->auth,
575  body, &socket_transport->encoded_outgoing))
576  {
577  _dbus_string_set_length (&socket_transport->encoded_outgoing, 0);
578  oom = TRUE;
579  goto out;
580  }
581  }
582 
583  total_bytes_to_write = _dbus_string_get_length (&socket_transport->encoded_outgoing);
584 
585 #if 0
586  _dbus_verbose ("encoded message is %d bytes\n",
587  total_bytes_to_write);
588 #endif
589 
590  bytes_written =
591  _dbus_write_socket (socket_transport->fd,
592  &socket_transport->encoded_outgoing,
593  socket_transport->message_bytes_written,
594  total_bytes_to_write - socket_transport->message_bytes_written);
595  saved_errno = _dbus_save_socket_errno ();
596  }
597  else
598  {
599  total_bytes_to_write = header_len + body_len;
600 
601 #if 0
602  _dbus_verbose ("message is %d bytes\n",
603  total_bytes_to_write);
604 #endif
605 
606 #ifdef HAVE_UNIX_FD_PASSING
607  if (socket_transport->message_bytes_written <= 0 && DBUS_TRANSPORT_CAN_SEND_UNIX_FD(transport))
608  {
609  /* Send the fds along with the first byte of the message */
610  const int *unix_fds;
611  unsigned n;
612 
613  _dbus_message_get_unix_fds(message, &unix_fds, &n);
614 
615  bytes_written =
616  _dbus_write_socket_with_unix_fds_two (socket_transport->fd,
617  header,
618  socket_transport->message_bytes_written,
619  header_len - socket_transport->message_bytes_written,
620  body,
621  0, body_len,
622  unix_fds,
623  n);
624  saved_errno = _dbus_save_socket_errno ();
625 
626  if (bytes_written > 0 && n > 0)
627  _dbus_verbose("Wrote %i unix fds\n", n);
628  }
629  else
630 #endif
631  {
632  if (socket_transport->message_bytes_written < header_len)
633  {
634  bytes_written =
635  _dbus_write_socket_two (socket_transport->fd,
636  header,
637  socket_transport->message_bytes_written,
638  header_len - socket_transport->message_bytes_written,
639  body,
640  0, body_len);
641  }
642  else
643  {
644  bytes_written =
645  _dbus_write_socket (socket_transport->fd,
646  body,
647  (socket_transport->message_bytes_written - header_len),
648  body_len -
649  (socket_transport->message_bytes_written - header_len));
650  }
651 
652  saved_errno = _dbus_save_socket_errno ();
653  }
654  }
655 
656  if (bytes_written < 0)
657  {
658  /* EINTR already handled for us */
659 
660  /* If the other end closed the socket with close() or shutdown(), we
661  * receive EPIPE here but we must not close the socket yet: there
662  * might still be some data to read. See:
663  * http://lists.freedesktop.org/archives/dbus/2008-March/009526.html
664  */
665 
666  if (_dbus_get_is_errno_eagain_or_ewouldblock (saved_errno) || _dbus_get_is_errno_epipe (saved_errno))
667  goto out;
668 
669  /* Since Linux commit 25888e (from 2.6.37-rc4, Nov 2010), sendmsg()
670  * on Unix sockets returns -1 errno=ETOOMANYREFS when the passfd
671  * mechanism (SCM_RIGHTS) is used recursively with a recursion level
672  * of maximum 4. The kernel does not have an API to check whether
673  * the passed fds can be forwarded and it can change asynchronously.
674  * See:
675  * https://bugs.freedesktop.org/show_bug.cgi?id=80163
676  */
677 
678  else if (_dbus_get_is_errno_etoomanyrefs (saved_errno))
679  {
680  /* We only send fds in the first byte of the message.
681  * ETOOMANYREFS cannot happen after.
682  */
683  _dbus_assert (socket_transport->message_bytes_written == 0);
684 
685  _dbus_verbose (" discard message of %d bytes due to ETOOMANYREFS\n",
686  total_bytes_to_write);
687 
688  socket_transport->message_bytes_written = 0;
689  _dbus_string_set_length (&socket_transport->encoded_outgoing, 0);
690  _dbus_string_compact (&socket_transport->encoded_outgoing, 2048);
691 
692  /* The message was not actually sent but it needs to be removed
693  * from the outgoing queue
694  */
696  message);
697  }
698  else
699  {
700  _dbus_verbose ("Error writing to remote app: %s\n",
701  _dbus_strerror (saved_errno));
702  do_io_error (transport);
703  goto out;
704  }
705  }
706  else
707  {
708  _dbus_verbose (" wrote %d bytes of %d\n", bytes_written,
709  total_bytes_to_write);
710 
711  total += bytes_written;
712  socket_transport->message_bytes_written += bytes_written;
713 
714  _dbus_assert (socket_transport->message_bytes_written <=
715  total_bytes_to_write);
716 
717  if (socket_transport->message_bytes_written == total_bytes_to_write)
718  {
719  socket_transport->message_bytes_written = 0;
720  _dbus_string_set_length (&socket_transport->encoded_outgoing, 0);
721  _dbus_string_compact (&socket_transport->encoded_outgoing, 2048);
722 
724  message);
725  }
726  }
727  }
728 
729  out:
730  if (oom)
731  return FALSE;
732  else
733  return TRUE;
734 }
735 
736 /* returns false on out-of-memory */
737 static dbus_bool_t
738 do_reading (DBusTransport *transport)
739 {
740  DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
741  DBusString *buffer;
742  int bytes_read;
743  int total;
744  dbus_bool_t oom;
745  int saved_errno;
746 
747  _dbus_verbose ("fd = %" DBUS_SOCKET_FORMAT "\n",
748  _dbus_socket_printable (socket_transport->fd));
749 
750  /* No messages without authentication! */
751  if (!_dbus_transport_try_to_authenticate (transport))
752  return TRUE;
753 
754  oom = FALSE;
755 
756  total = 0;
757 
758  again:
759 
760  /* See if we've exceeded max messages and need to disable reading */
761  check_read_watch (transport);
762 
763  if (total > socket_transport->max_bytes_read_per_iteration)
764  {
765  _dbus_verbose ("%d bytes exceeds %d bytes read per iteration, returning\n",
766  total, socket_transport->max_bytes_read_per_iteration);
767  goto out;
768  }
769 
770  _dbus_assert (socket_transport->read_watch != NULL ||
771  transport->disconnected);
772 
773  if (transport->disconnected)
774  goto out;
775 
776  if (!dbus_watch_get_enabled (socket_transport->read_watch))
777  return TRUE;
778 
779  if (_dbus_auth_needs_decoding (transport->auth))
780  {
781  /* Does fd passing even make sense with encoded data? */
782  _dbus_assert(!DBUS_TRANSPORT_CAN_SEND_UNIX_FD(transport));
783 
784  if (_dbus_string_get_length (&socket_transport->encoded_incoming) > 0)
785  bytes_read = _dbus_string_get_length (&socket_transport->encoded_incoming);
786  else
787  bytes_read = _dbus_read_socket (socket_transport->fd,
788  &socket_transport->encoded_incoming,
789  socket_transport->max_bytes_read_per_iteration);
790 
791  saved_errno = _dbus_save_socket_errno ();
792 
793  _dbus_assert (_dbus_string_get_length (&socket_transport->encoded_incoming) ==
794  bytes_read);
795 
796  if (bytes_read > 0)
797  {
799  &buffer);
800 
801  if (!_dbus_auth_decode_data (transport->auth,
802  &socket_transport->encoded_incoming,
803  buffer))
804  {
805  _dbus_verbose ("Out of memory decoding incoming data\n");
807  buffer);
808 
809  oom = TRUE;
810  goto out;
811  }
812 
814  buffer);
815 
816  _dbus_string_set_length (&socket_transport->encoded_incoming, 0);
817  _dbus_string_compact (&socket_transport->encoded_incoming, 2048);
818  }
819  }
820  else
821  {
823  &buffer);
824 
825 #ifdef HAVE_UNIX_FD_PASSING
826  if (DBUS_TRANSPORT_CAN_SEND_UNIX_FD(transport))
827  {
828  int *fds;
829  unsigned int n_fds;
830 
831  if (!_dbus_message_loader_get_unix_fds(transport->loader, &fds, &n_fds))
832  {
833  _dbus_verbose ("Out of memory reading file descriptors\n");
834  _dbus_message_loader_return_buffer (transport->loader, buffer);
835  oom = TRUE;
836  goto out;
837  }
838 
839  bytes_read = _dbus_read_socket_with_unix_fds(socket_transport->fd,
840  buffer,
841  socket_transport->max_bytes_read_per_iteration,
842  fds, &n_fds);
843  saved_errno = _dbus_save_socket_errno ();
844 
845  if (bytes_read >= 0 && n_fds > 0)
846  _dbus_verbose("Read %i unix fds\n", n_fds);
847 
848  _dbus_message_loader_return_unix_fds(transport->loader, fds, bytes_read < 0 ? 0 : n_fds);
849  }
850  else
851 #endif
852  {
853  bytes_read = _dbus_read_socket (socket_transport->fd,
854  buffer, socket_transport->max_bytes_read_per_iteration);
855  saved_errno = _dbus_save_socket_errno ();
856  }
857 
859  buffer);
860  }
861 
862  if (bytes_read < 0)
863  {
864  /* EINTR already handled for us */
865 
866  if (_dbus_get_is_errno_enomem (saved_errno))
867  {
868  _dbus_verbose ("Out of memory in read()/do_reading()\n");
869  oom = TRUE;
870  goto out;
871  }
872  else if (_dbus_get_is_errno_eagain_or_ewouldblock (saved_errno))
873  goto out;
874  else
875  {
876  _dbus_verbose ("Error reading from remote app: %s\n",
877  _dbus_strerror (saved_errno));
878  do_io_error (transport);
879  goto out;
880  }
881  }
882  else if (bytes_read == 0)
883  {
884  _dbus_verbose ("Disconnected from remote app\n");
885  do_io_error (transport);
886  goto out;
887  }
888  else
889  {
890  _dbus_verbose (" read %d bytes\n", bytes_read);
891 
892  total += bytes_read;
893 
894  if (!_dbus_transport_queue_messages (transport))
895  {
896  oom = TRUE;
897  _dbus_verbose (" out of memory when queueing messages we just read in the transport\n");
898  goto out;
899  }
900 
901  /* Try reading more data until we get EAGAIN and return, or
902  * exceed max bytes per iteration. If in blocking mode of
903  * course we'll block instead of returning.
904  */
905  goto again;
906  }
907 
908  out:
909  if (oom)
910  return FALSE;
911  else
912  return TRUE;
913 }
914 
915 static dbus_bool_t
916 unix_error_with_read_to_come (DBusTransport *itransport,
917  DBusWatch *watch,
918  unsigned int flags)
919 {
920  DBusTransportSocket *transport = (DBusTransportSocket *) itransport;
921 
922  if (!(flags & DBUS_WATCH_HANGUP || flags & DBUS_WATCH_ERROR))
923  return FALSE;
924 
925  /* If we have a read watch enabled ...
926  we -might have data incoming ... => handle the HANGUP there */
927  if (watch != transport->read_watch &&
928  _dbus_watch_get_enabled (transport->read_watch))
929  return FALSE;
930 
931  return TRUE;
932 }
933 
934 static dbus_bool_t
935 socket_handle_watch (DBusTransport *transport,
936  DBusWatch *watch,
937  unsigned int flags)
938 {
939  DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
940 
941  _dbus_assert (watch == socket_transport->read_watch ||
942  watch == socket_transport->write_watch);
943  _dbus_assert (watch != NULL);
944 
945  /* If we hit an error here on a write watch, don't disconnect the transport yet because data can
946  * still be in the buffer and do_reading may need several iteration to read
947  * it all (because of its max_bytes_read_per_iteration limit).
948  */
949  if (!(flags & DBUS_WATCH_READABLE) && unix_error_with_read_to_come (transport, watch, flags))
950  {
951  _dbus_verbose ("Hang up or error on watch\n");
952  _dbus_transport_disconnect (transport);
953  return TRUE;
954  }
955 
956  if (watch == socket_transport->read_watch &&
957  (flags & DBUS_WATCH_READABLE))
958  {
959  dbus_bool_t auth_finished;
960 #if 1
961  _dbus_verbose ("handling read watch %p flags = %x\n",
962  watch, flags);
963 #endif
964  if (!do_authentication (transport, TRUE, FALSE, &auth_finished))
965  return FALSE;
966 
967  /* We don't want to do a read immediately following
968  * a successful authentication. This is so we
969  * have a chance to propagate the authentication
970  * state further up. Specifically, we need to
971  * process any pending data from the auth object.
972  */
973  if (!auth_finished)
974  {
975  if (!do_reading (transport))
976  {
977  _dbus_verbose ("no memory to read\n");
978  return FALSE;
979  }
980  }
981  else
982  {
983  _dbus_verbose ("Not reading anything since we just completed the authentication\n");
984  }
985  }
986  else if (watch == socket_transport->write_watch &&
987  (flags & DBUS_WATCH_WRITABLE))
988  {
989 #if 1
990  _dbus_verbose ("handling write watch, have_outgoing_messages = %d\n",
992 #endif
993  if (!do_authentication (transport, FALSE, TRUE, NULL))
994  return FALSE;
995 
996  if (!do_writing (transport))
997  {
998  _dbus_verbose ("no memory to write\n");
999  return FALSE;
1000  }
1001 
1002  /* See if we still need the write watch */
1003  check_write_watch (transport);
1004  }
1005 #ifdef DBUS_ENABLE_VERBOSE_MODE
1006  else
1007  {
1008  if (watch == socket_transport->read_watch)
1009  _dbus_verbose ("asked to handle read watch with non-read condition 0x%x\n",
1010  flags);
1011  else if (watch == socket_transport->write_watch)
1012  _dbus_verbose ("asked to handle write watch with non-write condition 0x%x\n",
1013  flags);
1014  else
1015  _dbus_verbose ("asked to handle watch %p on fd %" DBUS_SOCKET_FORMAT " that we don't recognize\n",
1016  watch, dbus_watch_get_socket (watch));
1017  }
1018 #endif /* DBUS_ENABLE_VERBOSE_MODE */
1019 
1020  return TRUE;
1021 }
1022 
1023 static void
1024 socket_disconnect (DBusTransport *transport)
1025 {
1026  DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
1027 
1028  _dbus_verbose ("\n");
1029 
1030  free_watches (transport);
1031 
1032  _dbus_close_socket (socket_transport->fd, NULL);
1033  _dbus_socket_invalidate (&socket_transport->fd);
1034 }
1035 
1036 static dbus_bool_t
1037 socket_connection_set (DBusTransport *transport)
1038 {
1039  DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
1040 
1041  _dbus_watch_set_handler (socket_transport->write_watch,
1043  transport->connection, NULL);
1044 
1045  _dbus_watch_set_handler (socket_transport->read_watch,
1047  transport->connection, NULL);
1048 
1050  socket_transport->write_watch))
1051  return FALSE;
1052 
1054  socket_transport->read_watch))
1055  {
1057  socket_transport->write_watch);
1058  return FALSE;
1059  }
1060 
1061  check_read_watch (transport);
1062  check_write_watch (transport);
1063 
1064  return TRUE;
1065 }
1066 
1074 static void
1075 socket_do_iteration (DBusTransport *transport,
1076  unsigned int flags,
1077  int timeout_milliseconds)
1078 {
1079  DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
1080  DBusPollFD poll_fd;
1081  int poll_res;
1082  int poll_timeout;
1083 
1084  _dbus_verbose (" iteration flags = %s%s timeout = %d read_watch = %p write_watch = %p fd = %" DBUS_SOCKET_FORMAT "\n",
1085  flags & DBUS_ITERATION_DO_READING ? "read" : "",
1086  flags & DBUS_ITERATION_DO_WRITING ? "write" : "",
1087  timeout_milliseconds,
1088  socket_transport->read_watch,
1089  socket_transport->write_watch,
1090  _dbus_socket_printable (socket_transport->fd));
1091 
1092  /* the passed in DO_READING/DO_WRITING flags indicate whether to
1093  * read/write messages, but regardless of those we may need to block
1094  * for reading/writing to do auth. But if we do reading for auth,
1095  * we don't want to read any messages yet if not given DO_READING.
1096  */
1097 
1098  poll_fd.fd = _dbus_socket_get_pollable (socket_transport->fd);
1099  poll_fd.events = 0;
1100 
1101  if (_dbus_transport_try_to_authenticate (transport))
1102  {
1103  /* This is kind of a hack; if we have stuff to write, then try
1104  * to avoid the poll. This is probably about a 5% speedup on an
1105  * echo client/server.
1106  *
1107  * If both reading and writing were requested, we want to avoid this
1108  * since it could have funky effects:
1109  * - both ends spinning waiting for the other one to read
1110  * data so they can finish writing
1111  * - prioritizing all writing ahead of reading
1112  */
1113  if ((flags & DBUS_ITERATION_DO_WRITING) &&
1114  !(flags & (DBUS_ITERATION_DO_READING | DBUS_ITERATION_BLOCK)) &&
1115  !transport->disconnected &&
1117  {
1118  do_writing (transport);
1119 
1120  if (transport->disconnected ||
1122  goto out;
1123  }
1124 
1125  /* If we get here, we decided to do the poll() after all */
1126  _dbus_assert (socket_transport->read_watch);
1127  if (flags & DBUS_ITERATION_DO_READING)
1128  poll_fd.events |= _DBUS_POLLIN;
1129 
1130  _dbus_assert (socket_transport->write_watch);
1131  if (flags & DBUS_ITERATION_DO_WRITING)
1132  poll_fd.events |= _DBUS_POLLOUT;
1133  }
1134  else
1135  {
1136  DBusAuthState auth_state;
1137 
1138  auth_state = _dbus_auth_do_work (transport->auth);
1139 
1140  if (transport->receive_credentials_pending ||
1141  auth_state == DBUS_AUTH_STATE_WAITING_FOR_INPUT)
1142  poll_fd.events |= _DBUS_POLLIN;
1143 
1144  if (transport->send_credentials_pending ||
1145  auth_state == DBUS_AUTH_STATE_HAVE_BYTES_TO_SEND)
1146  poll_fd.events |= _DBUS_POLLOUT;
1147  }
1148 
1149  if (poll_fd.events)
1150  {
1151  int saved_errno;
1152 
1153  if (flags & DBUS_ITERATION_BLOCK)
1154  poll_timeout = timeout_milliseconds;
1155  else
1156  poll_timeout = 0;
1157 
1158  /* For blocking selects we drop the connection lock here
1159  * to avoid blocking out connection access during a potentially
1160  * indefinite blocking call. The io path is still protected
1161  * by the io_path_cond condvar, so we won't reenter this.
1162  */
1163  if (flags & DBUS_ITERATION_BLOCK)
1164  {
1165  _dbus_verbose ("unlock pre poll\n");
1166  _dbus_connection_unlock (transport->connection);
1167  }
1168 
1169  again:
1170  poll_res = _dbus_poll (&poll_fd, 1, poll_timeout);
1171  saved_errno = _dbus_save_socket_errno ();
1172 
1173  if (poll_res < 0 && _dbus_get_is_errno_eintr (saved_errno))
1174  goto again;
1175 
1176  if (flags & DBUS_ITERATION_BLOCK)
1177  {
1178  _dbus_verbose ("lock post poll\n");
1179  _dbus_connection_lock (transport->connection);
1180  }
1181 
1182  if (poll_res >= 0)
1183  {
1184  if (poll_res == 0)
1185  poll_fd.revents = 0; /* some concern that posix does not guarantee this;
1186  * valgrind flags it as an error. though it probably
1187  * is guaranteed on linux at least.
1188  */
1189 
1190  if (poll_fd.revents & _DBUS_POLLERR)
1191  do_io_error (transport);
1192  else
1193  {
1194  dbus_bool_t need_read = (poll_fd.revents & _DBUS_POLLIN) > 0;
1195  dbus_bool_t need_write = (poll_fd.revents & _DBUS_POLLOUT) > 0;
1196  dbus_bool_t authentication_completed;
1197 
1198  _dbus_verbose ("in iteration, need_read=%d need_write=%d\n",
1199  need_read, need_write);
1200  do_authentication (transport, need_read, need_write,
1201  &authentication_completed);
1202 
1203  /* See comment in socket_handle_watch. */
1204  if (authentication_completed)
1205  goto out;
1206 
1207  if (need_read && (flags & DBUS_ITERATION_DO_READING))
1208  do_reading (transport);
1209  if (need_write && (flags & DBUS_ITERATION_DO_WRITING))
1210  do_writing (transport);
1211  }
1212  }
1213  else
1214  {
1215  _dbus_verbose ("Error from _dbus_poll(): %s\n",
1216  _dbus_strerror (saved_errno));
1217  }
1218  }
1219 
1220 
1221  out:
1222  /* We need to install the write watch only if we did not
1223  * successfully write everything. Note we need to be careful that we
1224  * don't call check_write_watch *before* do_writing, since it's
1225  * inefficient to add the write watch, and we can avoid it most of
1226  * the time since we can write immediately.
1227  *
1228  * However, we MUST always call check_write_watch(); DBusConnection code
1229  * relies on the fact that running an iteration will notice that
1230  * messages are pending.
1231  */
1232  check_write_watch (transport);
1233 
1234  _dbus_verbose (" ... leaving do_iteration()\n");
1235 }
1236 
1237 static void
1238 socket_live_messages_changed (DBusTransport *transport)
1239 {
1240  /* See if we should look for incoming messages again */
1241  check_read_watch (transport);
1242 }
1243 
1244 
1245 static dbus_bool_t
1246 socket_get_socket_fd (DBusTransport *transport,
1247  DBusSocket *fd_p)
1248 {
1249  DBusTransportSocket *socket_transport = (DBusTransportSocket*) transport;
1250 
1251  *fd_p = socket_transport->fd;
1252 
1253  return TRUE;
1254 }
1255 
1256 static const DBusTransportVTable socket_vtable = {
1257  socket_finalize,
1258  socket_handle_watch,
1259  socket_disconnect,
1260  socket_connection_set,
1261  socket_do_iteration,
1262  socket_live_messages_changed,
1263  socket_get_socket_fd
1264 };
1265 
1279  const DBusString *server_guid,
1280  const DBusString *address)
1281 {
1282  DBusTransportSocket *socket_transport;
1283 
1284  socket_transport = dbus_new0 (DBusTransportSocket, 1);
1285  if (socket_transport == NULL)
1286  return NULL;
1287 
1288  if (!_dbus_string_init (&socket_transport->encoded_outgoing))
1289  goto failed_0;
1290 
1291  if (!_dbus_string_init (&socket_transport->encoded_incoming))
1292  goto failed_1;
1293 
1294  socket_transport->write_watch = _dbus_watch_new (_dbus_socket_get_pollable (fd),
1296  FALSE,
1297  NULL, NULL, NULL);
1298  if (socket_transport->write_watch == NULL)
1299  goto failed_2;
1300 
1301  socket_transport->read_watch = _dbus_watch_new (_dbus_socket_get_pollable (fd),
1303  FALSE,
1304  NULL, NULL, NULL);
1305  if (socket_transport->read_watch == NULL)
1306  goto failed_3;
1307 
1308  if (!_dbus_transport_init_base (&socket_transport->base,
1309  &socket_vtable,
1310  server_guid, address))
1311  goto failed_4;
1312 
1313 #ifdef HAVE_UNIX_FD_PASSING
1315 #endif
1316 
1317  socket_transport->fd = fd;
1318  socket_transport->message_bytes_written = 0;
1319 
1320  /* These values should probably be tunable or something. */
1321  socket_transport->max_bytes_read_per_iteration = 2048;
1322  socket_transport->max_bytes_written_per_iteration = 2048;
1323 
1324  return (DBusTransport*) socket_transport;
1325 
1326  failed_4:
1327  _dbus_watch_invalidate (socket_transport->read_watch);
1328  _dbus_watch_unref (socket_transport->read_watch);
1329  failed_3:
1330  _dbus_watch_invalidate (socket_transport->write_watch);
1331  _dbus_watch_unref (socket_transport->write_watch);
1332  failed_2:
1333  _dbus_string_free (&socket_transport->encoded_incoming);
1334  failed_1:
1335  _dbus_string_free (&socket_transport->encoded_outgoing);
1336  failed_0:
1337  dbus_free (socket_transport);
1338  return NULL;
1339 }
1340 
1354  const char *port,
1355  const char *family,
1356  const char *noncefile,
1357  DBusError *error)
1358 {
1359  DBusSocket fd;
1360  DBusTransport *transport;
1361  DBusString address;
1362 
1363  _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1364 
1365  if (!_dbus_string_init (&address))
1366  {
1368  return NULL;
1369  }
1370 
1371  if (host == NULL)
1372  host = "localhost";
1373 
1374  if (!_dbus_string_append (&address, noncefile ? "nonce-tcp:" : "tcp:"))
1375  goto error;
1376 
1377  if (!_dbus_string_append (&address, "host=") ||
1378  !_dbus_string_append (&address, host))
1379  goto error;
1380 
1381  if (!_dbus_string_append (&address, ",port=") ||
1382  !_dbus_string_append (&address, port))
1383  goto error;
1384 
1385  if (family != NULL &&
1386  (!_dbus_string_append (&address, ",family=") ||
1387  !_dbus_string_append (&address, family)))
1388  goto error;
1389 
1390  if (noncefile != NULL &&
1391  (!_dbus_string_append (&address, ",noncefile=") ||
1392  !_dbus_string_append (&address, noncefile)))
1393  goto error;
1394 
1395  fd = _dbus_connect_tcp_socket_with_nonce (host, port, family, noncefile, error);
1396  if (!_dbus_socket_is_valid (fd))
1397  {
1398  _DBUS_ASSERT_ERROR_IS_SET (error);
1399  _dbus_string_free (&address);
1400  return NULL;
1401  }
1402 
1403  _dbus_verbose ("Successfully connected to tcp socket %s:%s\n",
1404  host, port);
1405 
1406  transport = _dbus_transport_new_for_socket (fd, NULL, &address);
1407  _dbus_string_free (&address);
1408  if (transport == NULL)
1409  {
1411  _dbus_close_socket (fd, NULL);
1412  _dbus_socket_invalidate (&fd);
1413  }
1414 
1415  return transport;
1416 
1417 error:
1418  _dbus_string_free (&address);
1420  return NULL;
1421 }
1422 
1431 DBusTransportOpenResult
1433  DBusTransport **transport_p,
1434  DBusError *error)
1435 {
1436  const char *method;
1437  dbus_bool_t isTcp;
1438  dbus_bool_t isNonceTcp;
1439 
1440  method = dbus_address_entry_get_method (entry);
1441  _dbus_assert (method != NULL);
1442 
1443  isTcp = strcmp (method, "tcp") == 0;
1444  isNonceTcp = strcmp (method, "nonce-tcp") == 0;
1445 
1446  if (isTcp || isNonceTcp)
1447  {
1448  const char *host = dbus_address_entry_get_value (entry, "host");
1449  const char *port = dbus_address_entry_get_value (entry, "port");
1450  const char *family = dbus_address_entry_get_value (entry, "family");
1451  const char *noncefile = dbus_address_entry_get_value (entry, "noncefile");
1452 
1453  if ((isNonceTcp == TRUE) != (noncefile != NULL)) {
1454  _dbus_set_bad_address (error, method, "noncefile", NULL);
1455  return DBUS_TRANSPORT_OPEN_BAD_ADDRESS;
1456  }
1457 
1458  if (port == NULL)
1459  {
1460  _dbus_set_bad_address (error, method, "port", NULL);
1461  return DBUS_TRANSPORT_OPEN_BAD_ADDRESS;
1462  }
1463 
1464  *transport_p = _dbus_transport_new_for_tcp_socket (host, port, family, noncefile, error);
1465  if (*transport_p == NULL)
1466  {
1467  _DBUS_ASSERT_ERROR_IS_SET (error);
1468  return DBUS_TRANSPORT_OPEN_DID_NOT_CONNECT;
1469  }
1470  else
1471  {
1472  _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1473  return DBUS_TRANSPORT_OPEN_OK;
1474  }
1475  }
1476  else
1477  {
1478  _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1479  return DBUS_TRANSPORT_OPEN_NOT_HANDLED;
1480  }
1481 }
1482 
Implementation details of DBusTransportSocket.
dbus_bool_t _dbus_string_append(DBusString *str, const char *buffer)
Appends a nul-terminated C-style string to a DBusString.
Definition: dbus-string.c:935
void dbus_message_lock(DBusMessage *message)
Locks a message.
Definition: dbus-message.c:407
DBusTransport base
Parent instance.
void _dbus_connection_toggle_watch_unlocked(DBusConnection *connection, DBusWatch *watch, dbus_bool_t enabled)
Toggles a watch and notifies app via connection&#39;s DBusWatchToggledFunction if available.
long max_live_messages_unix_fds
Max total unix fds of received messages.
const char * message
public error message field
Definition: dbus-errors.h:51
DBusWatch * _dbus_watch_new(DBusPollable fd, unsigned int flags, dbus_bool_t enabled, DBusWatchHandler handler, void *data, DBusFreeFunction free_data_function)
Creates a new DBusWatch.
Definition: dbus-watch.c:88
Implementation of DBusWatch.
Definition: dbus-watch.c:40
DBusTransport * _dbus_transport_new_for_tcp_socket(const char *host, const char *port, const char *family, const char *noncefile, DBusError *error)
Creates a new transport for the given hostname and port.
#define NULL
A null pointer, defined appropriately for C or C++.
DBUS_PRIVATE_EXPORT void _dbus_message_loader_return_buffer(DBusMessageLoader *loader, DBusString *buffer)
Returns a buffer obtained from _dbus_message_loader_get_buffer(), indicating to the loader how many b...
DBusAuth * auth
Authentication conversation.
unsigned int disconnected
TRUE if we are disconnected.
void dbus_free(void *memory)
Frees a block of memory previously allocated by dbus_malloc() or dbus_malloc0().
Definition: dbus-memory.c:701
DBUS_PRIVATE_EXPORT void _dbus_message_loader_return_unix_fds(DBusMessageLoader *loader, int *fds, unsigned n_fds)
Returns a buffer obtained from _dbus_message_loader_get_unix_fds().
dbus_bool_t _dbus_auth_needs_decoding(DBusAuth *auth)
Called post-authentication, indicates whether we need to decode the message stream with _dbus_auth_de...
Definition: dbus-auth.c:2684
long max_live_messages_size
Max total size of received messages.
DBUS_PRIVATE_EXPORT void _dbus_connection_lock(DBusConnection *connection)
Acquires the connection lock.
dbus_bool_t _dbus_auth_encode_data(DBusAuth *auth, const DBusString *plaintext, DBusString *encoded)
Called post-authentication, encodes a block of bytes for sending to the peer.
Definition: dbus-auth.c:2652
DBUS_EXPORT dbus_bool_t dbus_watch_get_enabled(DBusWatch *watch)
Returns whether a watch is enabled or not.
Definition: dbus-watch.c:703
#define _dbus_assert(condition)
Aborts with an error message if the condition is false.
#define DBUS_ERROR_INIT
Expands to a suitable initializer for a DBusError on the stack.
Definition: dbus-errors.h:62
const char * dbus_address_entry_get_method(DBusAddressEntry *entry)
Returns the method string of an address entry.
Definition: dbus-address.c:227
DBusTransportOpenResult _dbus_transport_open_socket(DBusAddressEntry *entry, DBusTransport **transport_p, DBusError *error)
Opens a TCP socket transport.
dbus_bool_t _dbus_transport_queue_messages(DBusTransport *transport)
Processes data we&#39;ve read while handling a watch, potentially converting some of it to messages and q...
void _dbus_auth_return_buffer(DBusAuth *auth, DBusString *buffer)
Returns a buffer with new data read into it.
Definition: dbus-auth.c:2572
DBusAuthState _dbus_auth_do_work(DBusAuth *auth)
Analyzes buffered input and moves the auth conversation forward, returning the new state of the auth ...
Definition: dbus-auth.c:2465
void dbus_error_free(DBusError *error)
Frees an error that&#39;s been set (or just initialized), then reinitializes the error as in dbus_error_i...
Definition: dbus-errors.c:211
int max_bytes_written_per_iteration
To avoid blocking too long.
DBusConnection * connection
Connection owning this transport.
#define _DBUS_POLLIN
There is data to read.
Definition: dbus-sysdeps.h:389
unsigned int send_credentials_pending
TRUE if we need to send credentials
int _dbus_read_socket(DBusSocket fd, DBusString *buffer, int count)
Like _dbus_read(), but only works on sockets so is available on Windows.
dbus_bool_t _dbus_string_init(DBusString *str)
Initializes a string.
Definition: dbus-string.c:175
DBusMessage * _dbus_connection_get_message_to_send(DBusConnection *connection)
Gets the next outgoing message.
short events
Events to poll for.
Definition: dbus-sysdeps.h:384
DBusString encoded_incoming
Encoded version of current incoming data.
dbus_bool_t _dbus_send_credentials_socket(DBusSocket server_fd, DBusError *error)
Sends a single nul byte with our UNIX credentials as ancillary data.
dbus_bool_t _dbus_close_socket(DBusSocket fd, DBusError *error)
Closes a socket.
dbus_bool_t _dbus_get_is_errno_etoomanyrefs(int e)
See if errno is ETOOMANYREFS.
Definition: dbus-sysdeps.c:735
dbus_bool_t _dbus_transport_get_is_connected(DBusTransport *transport)
Returns TRUE if the transport has not been disconnected.
dbus_bool_t _dbus_transport_init_base(DBusTransport *transport, const DBusTransportVTable *vtable, const DBusString *server_guid, const DBusString *address)
Initializes the base class members of DBusTransport.
Socket interface.
Definition: dbus-sysdeps.h:149
void _dbus_auth_get_buffer(DBusAuth *auth, DBusString **buffer)
Get a buffer to be used for reading bytes from the peer we&#39;re conversing with.
Definition: dbus-auth.c:2554
Internals of DBusMessage.
dbus_bool_t _dbus_auth_decode_data(DBusAuth *auth, const DBusString *encoded, DBusString *plaintext)
Called post-authentication, decodes a block of bytes received from the peer.
Definition: dbus-auth.c:2715
const char * dbus_address_entry_get_value(DBusAddressEntry *entry, const char *key)
Returns a value from a key of an entry.
Definition: dbus-address.c:244
DBusSocket fd
File descriptor.
DBusTransport * _dbus_transport_new_for_socket(DBusSocket fd, const DBusString *server_guid, const DBusString *address)
Creates a new transport for the given socket file descriptor.
dbus_bool_t _dbus_get_is_errno_epipe(int e)
See if errno is EPIPE.
Definition: dbus-sysdeps.c:725
#define dbus_new0(type, count)
Safe macro for using dbus_malloc0().
Definition: dbus-memory.h:59
void _dbus_auth_bytes_sent(DBusAuth *auth, int bytes_sent)
Notifies the auth conversation object that the given number of bytes of the outgoing buffer have been...
Definition: dbus-auth.c:2534
void _dbus_connection_remove_watch_unlocked(DBusConnection *connection, DBusWatch *watch)
Removes a watch using the connection&#39;s DBusRemoveWatchFunction if available.
dbus_bool_t _dbus_string_compact(DBusString *str, int max_waste)
Compacts the string to avoid wasted memory.
Definition: dbus-string.c:389
unsigned int receive_credentials_pending
TRUE if we need to receive credentials
As in POLLOUT.
DBusCounter * live_messages
Counter for size/unix fds of all live messages.
dbus_bool_t _dbus_get_is_errno_eagain_or_ewouldblock(int e)
See if errno is EAGAIN or EWOULDBLOCK (this has to be done differently for Winsock so is abstracted) ...
dbus_uint32_t dbus_bool_t
A boolean, valid values are TRUE and FALSE.
Definition: dbus-types.h:35
dbus_bool_t _dbus_connection_has_messages_to_send_unlocked(DBusConnection *connection)
Checks whether there are messages in the outgoing message queue.
DBUS_EXPORT int dbus_watch_get_socket(DBusWatch *watch)
Returns a socket to be watched, on UNIX this will return -1 if our transport is not socket-based so d...
Definition: dbus-watch.c:594
#define _DBUS_POLLOUT
Writing now will not block.
Definition: dbus-sysdeps.h:393
int _dbus_write_socket_two(DBusSocket fd, const DBusString *buffer1, int start1, int len1, const DBusString *buffer2, int start2, int len2)
Like _dbus_write_two() but only works on sockets and is thus available on Windows.
Internals of DBusAddressEntry.
Definition: dbus-address.c:43
dbus_bool_t _dbus_read_credentials_socket(DBusSocket client_fd, DBusCredentials *credentials, DBusError *error)
Reads a single byte which must be nul (an error occurs otherwise), and reads unix credentials if avai...
DBusWatch * write_watch
Watch for writability.
void _dbus_watch_invalidate(DBusWatch *watch)
Clears the file descriptor from a now-invalid watch object so that no one tries to use it...
Definition: dbus-watch.c:169
void _dbus_set_bad_address(DBusError *error, const char *address_problem_type, const char *address_problem_field, const char *address_problem_other)
Sets DBUS_ERROR_BAD_ADDRESS.
Definition: dbus-address.c:65
dbus_bool_t _dbus_connection_handle_watch(DBusWatch *watch, unsigned int condition, void *data)
A callback for use with dbus_watch_new() to create a DBusWatch.
dbus_bool_t _dbus_get_is_errno_eintr(int e)
See if errno is EINTR.
Definition: dbus-sysdeps.c:715
Object representing an exception.
Definition: dbus-errors.h:48
dbus_bool_t _dbus_connection_add_watch_unlocked(DBusConnection *connection, DBusWatch *watch)
Adds a watch using the connection&#39;s DBusAddWatchFunction if available.
void dbus_set_error(DBusError *error, const char *name, const char *format,...)
Assigns an error name and message to a DBusError.
Definition: dbus-errors.c:354
The virtual table that must be implemented to create a new kind of transport.
int message_bytes_written
Number of bytes of current outgoing message that have been written.
int _dbus_read_socket_with_unix_fds(DBusSocket fd, DBusString *buffer, int count, int *fds, unsigned int *n_fds)
Like _dbus_read_socket() but also tries to read unix fds from the socket.
void _dbus_connection_message_sent_unlocked(DBusConnection *connection, DBusMessage *message)
Notifies the connection that a message has been sent, so the message can be removed from the outgoing...
As in POLLERR (can&#39;t watch for this, but can be present in current state passed to dbus_watch_handle(...
void _dbus_string_free(DBusString *str)
Frees a string created by _dbus_string_init().
Definition: dbus-string.c:259
#define TRUE
Expands to "1".
DBusPollable fd
File descriptor.
Definition: dbus-sysdeps.h:383
#define _dbus_assert_not_reached(explanation)
Aborts with an error message if called.
DBusMessageLoader * loader
Message-loading buffer.
As in POLLHUP (can&#39;t watch for it, but can be present in current state passed to dbus_watch_handle())...
void _dbus_message_get_network_data(DBusMessage *message, const DBusString **header, const DBusString **body)
Gets the data to be sent over the network for this message.
Definition: dbus-message.c:231
Object representing a transport such as a socket.
dbus_bool_t _dbus_auth_set_credentials(DBusAuth *auth, DBusCredentials *credentials)
Sets credentials received via reliable means from the operating system.
Definition: dbus-auth.c:2747
void _dbus_auth_set_unix_fd_possible(DBusAuth *auth, dbus_bool_t b)
Sets whether unix fd passing is potentially on the transport and hence shall be negotiated.
Definition: dbus-auth.c:2823
DBUS_PRIVATE_EXPORT dbus_bool_t _dbus_message_loader_get_unix_fds(DBusMessageLoader *loader, int **fds, unsigned *max_n_fds)
Gets the buffer to use for reading unix fds from the network.
DBusTransport * _dbus_transport_ref(DBusTransport *transport)
Increments the reference count for the transport.
dbus_bool_t _dbus_transport_try_to_authenticate(DBusTransport *transport)
Returns TRUE if we have been authenticated.
DBUS_PRIVATE_EXPORT void _dbus_message_loader_get_buffer(DBusMessageLoader *loader, DBusString **buffer)
Gets the buffer to use for reading data from the network.
dbus_bool_t _dbus_auth_get_bytes_to_send(DBusAuth *auth, const DBusString **str)
Gets bytes that need to be sent to the peer we&#39;re conversing with.
Definition: dbus-auth.c:2509
void _dbus_watch_unref(DBusWatch *watch)
Decrements the reference count of a DBusWatch object and finalizes the object if the count reaches ze...
Definition: dbus-watch.c:138
DBusWatch * read_watch
Watch for readability.
#define DBUS_ERROR_NO_MEMORY
There was not enough memory to complete an operation.
#define FALSE
Expands to "0".
DBusCredentials * credentials
Credentials of other end read from the socket.
dbus_bool_t _dbus_string_set_length(DBusString *str, int length)
Sets the length of a string.
Definition: dbus-string.c:802
int max_bytes_read_per_iteration
To avoid blocking too long.
int _dbus_write_socket(DBusSocket fd, const DBusString *buffer, int start, int len)
Like _dbus_write(), but only supports sockets and is thus available on Windows.
dbus_bool_t _dbus_auth_needs_encoding(DBusAuth *auth)
Called post-authentication, indicates whether we need to encode the message stream with _dbus_auth_en...
Definition: dbus-auth.c:2625
As in POLLIN.
DBUS_PRIVATE_EXPORT void _dbus_message_get_unix_fds(DBusMessage *message, const int **fds, unsigned *n_fds)
Gets the unix fds to be sent over the network for this message.
Definition: dbus-message.c:250
void _dbus_watch_set_handler(DBusWatch *watch, DBusWatchHandler handler, void *data, DBusFreeFunction free_data_function)
Sets the handler for the watch.
Definition: dbus-watch.c:499
void _dbus_transport_disconnect(DBusTransport *transport)
Closes our end of the connection to a remote application.
dbus_bool_t _dbus_socket_can_pass_unix_fd(DBusSocket fd)
Checks whether file descriptors may be passed via the socket.
void _dbus_transport_finalize_base(DBusTransport *transport)
Finalizes base class members of DBusTransport.
int _dbus_poll(DBusPollFD *fds, int n_fds, int timeout_milliseconds)
Wrapper for poll().
DBUS_PRIVATE_EXPORT void _dbus_connection_unlock(DBusConnection *connection)
Releases the connection lock.
short revents
Events that occurred.
Definition: dbus-sysdeps.h:385
void _dbus_transport_unref(DBusTransport *transport)
Decrements the reference count for the transport.
long _dbus_counter_get_unix_fd_value(DBusCounter *counter)
Gets the current value of the unix fd counter.
dbus_bool_t _dbus_get_is_errno_enomem(int e)
See if errno is ENOMEM.
Definition: dbus-sysdeps.c:705
#define _DBUS_POLLERR
Error condition.
Definition: dbus-sysdeps.h:395
DBusString encoded_outgoing
Encoded version of current outgoing message.
long _dbus_counter_get_size_value(DBusCounter *counter)
Gets the current value of the size counter.