|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21573/root/usr/share/devhelp/books/dbus/api/ |
Upload File : |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>D-Bus: dbus-transport.c Source File</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.4.7 -->
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li id="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
</ul></div>
<h1>dbus-transport.c</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */</span>
<a name="l00002"></a>00002 <span class="comment">/* dbus-transport.c DBusTransport object (internal to D-Bus implementation)</span>
<a name="l00003"></a>00003 <span class="comment"> *</span>
<a name="l00004"></a>00004 <span class="comment"> * Copyright (C) 2002, 2003 Red Hat Inc.</span>
<a name="l00005"></a>00005 <span class="comment"> *</span>
<a name="l00006"></a>00006 <span class="comment"> * Licensed under the Academic Free License version 2.1</span>
<a name="l00007"></a>00007 <span class="comment"> * </span>
<a name="l00008"></a>00008 <span class="comment"> * This program is free software; you can redistribute it and/or modify</span>
<a name="l00009"></a>00009 <span class="comment"> * it under the terms of the GNU General Public License as published by</span>
<a name="l00010"></a>00010 <span class="comment"> * the Free Software Foundation; either version 2 of the License, or</span>
<a name="l00011"></a>00011 <span class="comment"> * (at your option) any later version.</span>
<a name="l00012"></a>00012 <span class="comment"> *</span>
<a name="l00013"></a>00013 <span class="comment"> * This program is distributed in the hope that it will be useful,</span>
<a name="l00014"></a>00014 <span class="comment"> * but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
<a name="l00015"></a>00015 <span class="comment"> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</span>
<a name="l00016"></a>00016 <span class="comment"> * GNU General Public License for more details.</span>
<a name="l00017"></a>00017 <span class="comment"> * </span>
<a name="l00018"></a>00018 <span class="comment"> * You should have received a copy of the GNU General Public License</span>
<a name="l00019"></a>00019 <span class="comment"> * along with this program; if not, write to the Free Software</span>
<a name="l00020"></a>00020 <span class="comment"> * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA</span>
<a name="l00021"></a>00021 <span class="comment"> *</span>
<a name="l00022"></a>00022 <span class="comment"> */</span>
<a name="l00023"></a>00023
<a name="l00024"></a>00024 <span class="preprocessor">#include "dbus-transport-protected.h"</span>
<a name="l00025"></a>00025 <span class="preprocessor">#include "dbus-transport-unix.h"</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include "dbus-transport-socket.h"</span>
<a name="l00027"></a>00027 <span class="preprocessor">#include "dbus-connection-internal.h"</span>
<a name="l00028"></a>00028 <span class="preprocessor">#include "dbus-watch.h"</span>
<a name="l00029"></a>00029 <span class="preprocessor">#include "dbus-auth.h"</span>
<a name="l00030"></a>00030 <span class="preprocessor">#include "dbus-address.h"</span>
<a name="l00031"></a>00031 <span class="preprocessor">#include "dbus-credentials.h"</span>
<a name="l00032"></a>00032 <span class="preprocessor">#ifdef DBUS_BUILD_TESTS</span>
<a name="l00033"></a>00033 <span class="preprocessor"></span><span class="preprocessor">#include "dbus-server-debug-pipe.h"</span>
<a name="l00034"></a>00034 <span class="preprocessor">#endif</span>
<a name="l00035"></a>00035 <span class="preprocessor"></span>
<a name="l00057"></a>00057 <span class="keyword">static</span> <span class="keywordtype">void</span>
<a name="l00058"></a>00058 live_messages_size_notify (<a class="code" href="structDBusCounter.html">DBusCounter</a> *counter,
<a name="l00059"></a>00059 <span class="keywordtype">void</span> *user_data)
<a name="l00060"></a>00060 {
<a name="l00061"></a>00061 <a class="code" href="structDBusTransport.html">DBusTransport</a> *transport = user_data;
<a name="l00062"></a>00062
<a name="l00063"></a>00063 <a class="code" href="group__DBusTransport.html#g31d6dbc864c9ea643d72521bbb1b7c56">_dbus_transport_ref</a> (transport);
<a name="l00064"></a>00064
<a name="l00065"></a>00065 <span class="preprocessor">#if 0</span>
<a name="l00066"></a>00066 <span class="preprocessor"></span> _dbus_verbose (<span class="stringliteral">"Counter value is now %d\n"</span>,
<a name="l00067"></a>00067 (<span class="keywordtype">int</span>) <a class="code" href="group__DBusResources.html#g817729ebefbd486f816b24a1fefc889d">_dbus_counter_get_value</a> (counter));
<a name="l00068"></a>00068 <span class="preprocessor">#endif</span>
<a name="l00069"></a>00069 <span class="preprocessor"></span>
<a name="l00070"></a>00070 <span class="comment">/* disable or re-enable the read watch for the transport if</span>
<a name="l00071"></a>00071 <span class="comment"> * required.</span>
<a name="l00072"></a>00072 <span class="comment"> */</span>
<a name="l00073"></a>00073 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#7350850a4e02a7eaa4036eb47d4778e5">vtable</a>-><a class="code" href="structDBusTransportVTable.html#f28ab32fb4f7332a245f48a7d2823dfc">live_messages_changed</a>)
<a name="l00074"></a>00074 (* transport-><a class="code" href="structDBusTransport.html#7350850a4e02a7eaa4036eb47d4778e5">vtable</a>-><a class="code" href="structDBusTransportVTable.html#f28ab32fb4f7332a245f48a7d2823dfc">live_messages_changed</a>) (transport);
<a name="l00075"></a>00075
<a name="l00076"></a>00076 <a class="code" href="group__DBusTransport.html#gb7c53c32a2320c81aae8ce4345762e73">_dbus_transport_unref</a> (transport);
<a name="l00077"></a>00077 }
<a name="l00078"></a>00078
<a name="l00092"></a>00092 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a>
<a name="l00093"></a><a class="code" href="group__DBusTransport.html#ga5ece78ea671fe9d9ed17fc6920c9d09">00093</a> <a class="code" href="group__DBusTransport.html#ga5ece78ea671fe9d9ed17fc6920c9d09">_dbus_transport_init_base</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport,
<a name="l00094"></a>00094 <span class="keyword">const</span> <a class="code" href="structDBusTransportVTable.html">DBusTransportVTable</a> *vtable,
<a name="l00095"></a>00095 <span class="keyword">const</span> <a class="code" href="structDBusString.html">DBusString</a> *server_guid,
<a name="l00096"></a>00096 <span class="keyword">const</span> <a class="code" href="structDBusString.html">DBusString</a> *address)
<a name="l00097"></a>00097 {
<a name="l00098"></a>00098 <a class="code" href="structDBusMessageLoader.html">DBusMessageLoader</a> *loader;
<a name="l00099"></a>00099 <a class="code" href="structDBusAuth.html">DBusAuth</a> *auth;
<a name="l00100"></a>00100 <a class="code" href="structDBusCounter.html">DBusCounter</a> *counter;
<a name="l00101"></a>00101 <span class="keywordtype">char</span> *address_copy;
<a name="l00102"></a>00102 <a class="code" href="structDBusCredentials.html">DBusCredentials</a> *creds;
<a name="l00103"></a>00103
<a name="l00104"></a>00104 loader = <a class="code" href="group__DBusMessageInternals.html#g66f1c10cf909ba09ed732bc125ff8671">_dbus_message_loader_new</a> ();
<a name="l00105"></a>00105 <span class="keywordflow">if</span> (loader == <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>)
<a name="l00106"></a>00106 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00107"></a>00107
<a name="l00108"></a>00108 <span class="keywordflow">if</span> (server_guid)
<a name="l00109"></a>00109 auth = <a class="code" href="group__DBusAuth.html#g302e454600ae0e1aa27193d4b0a86385">_dbus_auth_server_new</a> (server_guid);
<a name="l00110"></a>00110 <span class="keywordflow">else</span>
<a name="l00111"></a>00111 auth = <a class="code" href="group__DBusAuth.html#gee76dbcdada8bcafe131f5a2de151ac3">_dbus_auth_client_new</a> ();
<a name="l00112"></a>00112 <span class="keywordflow">if</span> (auth == <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>)
<a name="l00113"></a>00113 {
<a name="l00114"></a>00114 <a class="code" href="group__DBusMessageInternals.html#g51299aab1f5e0b2408ab858d3377b20c">_dbus_message_loader_unref</a> (loader);
<a name="l00115"></a>00115 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00116"></a>00116 }
<a name="l00117"></a>00117
<a name="l00118"></a>00118 counter = <a class="code" href="group__DBusResources.html#g9911dd8fa020299a2b517251ea0be399">_dbus_counter_new</a> ();
<a name="l00119"></a>00119 <span class="keywordflow">if</span> (counter == <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>)
<a name="l00120"></a>00120 {
<a name="l00121"></a>00121 <a class="code" href="group__DBusAuth.html#g7fb648be9d6d451917195a0e43eeece0">_dbus_auth_unref</a> (auth);
<a name="l00122"></a>00122 <a class="code" href="group__DBusMessageInternals.html#g51299aab1f5e0b2408ab858d3377b20c">_dbus_message_loader_unref</a> (loader);
<a name="l00123"></a>00123 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00124"></a>00124 }
<a name="l00125"></a>00125
<a name="l00126"></a>00126 creds = <a class="code" href="group__DBusCredentials.html#g749dd398d725f37a7943d60074785844">_dbus_credentials_new</a> ();
<a name="l00127"></a>00127 <span class="keywordflow">if</span> (creds == <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>)
<a name="l00128"></a>00128 {
<a name="l00129"></a>00129 <a class="code" href="group__DBusResources.html#g48d9b53d1a395ab3c4f1846ca569ef3f">_dbus_counter_unref</a> (counter);
<a name="l00130"></a>00130 <a class="code" href="group__DBusAuth.html#g7fb648be9d6d451917195a0e43eeece0">_dbus_auth_unref</a> (auth);
<a name="l00131"></a>00131 <a class="code" href="group__DBusMessageInternals.html#g51299aab1f5e0b2408ab858d3377b20c">_dbus_message_loader_unref</a> (loader);
<a name="l00132"></a>00132 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00133"></a>00133 }
<a name="l00134"></a>00134
<a name="l00135"></a>00135 <span class="keywordflow">if</span> (server_guid)
<a name="l00136"></a>00136 {
<a name="l00137"></a>00137 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (address == <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00138"></a>00138 address_copy = <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>;
<a name="l00139"></a>00139 }
<a name="l00140"></a>00140 <span class="keywordflow">else</span>
<a name="l00141"></a>00141 {
<a name="l00142"></a>00142 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (address != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00143"></a>00143
<a name="l00144"></a>00144 <span class="keywordflow">if</span> (!<a class="code" href="group__DBusString.html#g7e509d4f959d19d96f83250e62287b06">_dbus_string_copy_data</a> (address, &address_copy))
<a name="l00145"></a>00145 {
<a name="l00146"></a>00146 <a class="code" href="group__DBusCredentials.html#g89913c830c3627cd006a50ca693af580">_dbus_credentials_unref</a> (creds);
<a name="l00147"></a>00147 <a class="code" href="group__DBusResources.html#g48d9b53d1a395ab3c4f1846ca569ef3f">_dbus_counter_unref</a> (counter);
<a name="l00148"></a>00148 <a class="code" href="group__DBusAuth.html#g7fb648be9d6d451917195a0e43eeece0">_dbus_auth_unref</a> (auth);
<a name="l00149"></a>00149 <a class="code" href="group__DBusMessageInternals.html#g51299aab1f5e0b2408ab858d3377b20c">_dbus_message_loader_unref</a> (loader);
<a name="l00150"></a>00150 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00151"></a>00151 }
<a name="l00152"></a>00152 }
<a name="l00153"></a>00153
<a name="l00154"></a>00154 transport-><a class="code" href="structDBusTransport.html#1a6554a692a353f8402c1419cd94e904">refcount</a> = 1;
<a name="l00155"></a>00155 transport-><a class="code" href="structDBusTransport.html#7350850a4e02a7eaa4036eb47d4778e5">vtable</a> = vtable;
<a name="l00156"></a>00156 transport-><a class="code" href="structDBusTransport.html#aaba590c281236d176600016b7edab48">loader</a> = loader;
<a name="l00157"></a>00157 transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a> = auth;
<a name="l00158"></a>00158 transport-><a class="code" href="structDBusTransport.html#991a23c90978c3a35cb1f50f99daee5f">live_messages_size</a> = counter;
<a name="l00159"></a>00159 transport-><a class="code" href="structDBusTransport.html#12d3052e51b2f0bf398d48e31e5f9da8">authenticated</a> = <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00160"></a>00160 transport-><a class="code" href="structDBusTransport.html#487a7375e94efba850f8344a252cfa63">disconnected</a> = <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00161"></a>00161 transport-><a class="code" href="structDBusTransport.html#38fa70b1473eb08a6c871c7791b46d6e">is_server</a> = (server_guid != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00162"></a>00162 transport-><a class="code" href="structDBusTransport.html#7d91848b94203022be1090d93dd2cd04">send_credentials_pending</a> = !transport-><a class="code" href="structDBusTransport.html#38fa70b1473eb08a6c871c7791b46d6e">is_server</a>;
<a name="l00163"></a>00163 transport-><a class="code" href="structDBusTransport.html#aa29089fbb1fbdb5b412b3ed18c84b2d">receive_credentials_pending</a> = transport-><a class="code" href="structDBusTransport.html#38fa70b1473eb08a6c871c7791b46d6e">is_server</a>;
<a name="l00164"></a>00164 transport-><a class="code" href="structDBusTransport.html#586180e57d80c428fc81e579d9159cb2">address</a> = address_copy;
<a name="l00165"></a>00165
<a name="l00166"></a>00166 transport-><a class="code" href="structDBusTransport.html#c83be11f3497da6a21aed51782cd68d0">unix_user_function</a> = <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>;
<a name="l00167"></a>00167 transport-><a class="code" href="structDBusTransport.html#7df35abee6aeef69eff659d65dd430f4">unix_user_data</a> = <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>;
<a name="l00168"></a>00168 transport-><a class="code" href="structDBusTransport.html#754f10d16c06f373464fe6bf88a15cdd">free_unix_user_data</a> = <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>;
<a name="l00169"></a>00169
<a name="l00170"></a>00170 transport-><a class="code" href="structDBusTransport.html#17403591c2a1d936be5ed13a36e6416a">windows_user_function</a> = <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>;
<a name="l00171"></a>00171 transport-><a class="code" href="structDBusTransport.html#333c4300fe345d25e9dcb828d20baff7">windows_user_data</a> = <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>;
<a name="l00172"></a>00172 transport-><a class="code" href="structDBusTransport.html#ab0e5248bd01f31ac4dcdab3c3b7b570">free_windows_user_data</a> = <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>;
<a name="l00173"></a>00173
<a name="l00174"></a>00174 transport-><a class="code" href="structDBusTransport.html#aad7cb51a3e4ff2dd900ac971cc52b36">expected_guid</a> = <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>;
<a name="l00175"></a>00175
<a name="l00176"></a>00176 <span class="comment">/* Try to default to something that won't totally hose the system,</span>
<a name="l00177"></a>00177 <span class="comment"> * but doesn't impose too much of a limitation.</span>
<a name="l00178"></a>00178 <span class="comment"> */</span>
<a name="l00179"></a>00179 transport-><a class="code" href="structDBusTransport.html#23e0925741fc1c4ba3a369bac4bca4b6">max_live_messages_size</a> = _DBUS_ONE_MEGABYTE * 63;
<a name="l00180"></a>00180
<a name="l00181"></a>00181 <span class="comment">/* credentials read from socket if any */</span>
<a name="l00182"></a>00182 transport-><a class="code" href="structDBusTransport.html#cb3d5fe913d4c281f3495e95cd450c57">credentials</a> = creds;
<a name="l00183"></a>00183
<a name="l00184"></a>00184 <a class="code" href="group__DBusResources.html#gdf751ffe6ca8c3f81a89df70fc9c93d0">_dbus_counter_set_notify</a> (transport-><a class="code" href="structDBusTransport.html#991a23c90978c3a35cb1f50f99daee5f">live_messages_size</a>,
<a name="l00185"></a>00185 transport-><a class="code" href="structDBusTransport.html#23e0925741fc1c4ba3a369bac4bca4b6">max_live_messages_size</a>,
<a name="l00186"></a>00186 live_messages_size_notify,
<a name="l00187"></a>00187 transport);
<a name="l00188"></a>00188
<a name="l00189"></a>00189 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#586180e57d80c428fc81e579d9159cb2">address</a>)
<a name="l00190"></a>00190 _dbus_verbose (<span class="stringliteral">"Initialized transport on address %s\n"</span>, transport-><a class="code" href="structDBusTransport.html#586180e57d80c428fc81e579d9159cb2">address</a>);
<a name="l00191"></a>00191
<a name="l00192"></a>00192 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga8cecfc5c5c054d2875c03e77b7be15d">TRUE</a>;
<a name="l00193"></a>00193 }
<a name="l00194"></a>00194
<a name="l00201"></a>00201 <span class="keywordtype">void</span>
<a name="l00202"></a><a class="code" href="group__DBusTransport.html#gf27a2aceb062921f3915acb1491a646a">00202</a> <a class="code" href="group__DBusTransport.html#gf27a2aceb062921f3915acb1491a646a">_dbus_transport_finalize_base</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport)
<a name="l00203"></a>00203 {
<a name="l00204"></a>00204 <span class="keywordflow">if</span> (!transport-><a class="code" href="structDBusTransport.html#487a7375e94efba850f8344a252cfa63">disconnected</a>)
<a name="l00205"></a>00205 <a class="code" href="group__DBusTransport.html#g78444dd8f6c6d6b429433ad81c3e318a">_dbus_transport_disconnect</a> (transport);
<a name="l00206"></a>00206
<a name="l00207"></a>00207 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#754f10d16c06f373464fe6bf88a15cdd">free_unix_user_data</a> != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>)
<a name="l00208"></a>00208 (* transport-><a class="code" href="structDBusTransport.html#754f10d16c06f373464fe6bf88a15cdd">free_unix_user_data</a>) (transport-><a class="code" href="structDBusTransport.html#7df35abee6aeef69eff659d65dd430f4">unix_user_data</a>);
<a name="l00209"></a>00209
<a name="l00210"></a>00210 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#ab0e5248bd01f31ac4dcdab3c3b7b570">free_windows_user_data</a> != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>)
<a name="l00211"></a>00211 (* transport-><a class="code" href="structDBusTransport.html#ab0e5248bd01f31ac4dcdab3c3b7b570">free_windows_user_data</a>) (transport-><a class="code" href="structDBusTransport.html#333c4300fe345d25e9dcb828d20baff7">windows_user_data</a>);
<a name="l00212"></a>00212
<a name="l00213"></a>00213 <a class="code" href="group__DBusMessageInternals.html#g51299aab1f5e0b2408ab858d3377b20c">_dbus_message_loader_unref</a> (transport-><a class="code" href="structDBusTransport.html#aaba590c281236d176600016b7edab48">loader</a>);
<a name="l00214"></a>00214 <a class="code" href="group__DBusAuth.html#g7fb648be9d6d451917195a0e43eeece0">_dbus_auth_unref</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>);
<a name="l00215"></a>00215 <a class="code" href="group__DBusResources.html#gdf751ffe6ca8c3f81a89df70fc9c93d0">_dbus_counter_set_notify</a> (transport-><a class="code" href="structDBusTransport.html#991a23c90978c3a35cb1f50f99daee5f">live_messages_size</a>,
<a name="l00216"></a>00216 0, <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>, <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00217"></a>00217 <a class="code" href="group__DBusResources.html#g48d9b53d1a395ab3c4f1846ca569ef3f">_dbus_counter_unref</a> (transport-><a class="code" href="structDBusTransport.html#991a23c90978c3a35cb1f50f99daee5f">live_messages_size</a>);
<a name="l00218"></a>00218 <a class="code" href="group__DBusMemory.html#g488c6b08cc8c1ddf0203243c4b27a13c">dbus_free</a> (transport-><a class="code" href="structDBusTransport.html#586180e57d80c428fc81e579d9159cb2">address</a>);
<a name="l00219"></a>00219 <a class="code" href="group__DBusMemory.html#g488c6b08cc8c1ddf0203243c4b27a13c">dbus_free</a> (transport-><a class="code" href="structDBusTransport.html#aad7cb51a3e4ff2dd900ac971cc52b36">expected_guid</a>);
<a name="l00220"></a>00220 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#cb3d5fe913d4c281f3495e95cd450c57">credentials</a>)
<a name="l00221"></a>00221 <a class="code" href="group__DBusCredentials.html#g89913c830c3627cd006a50ca693af580">_dbus_credentials_unref</a> (transport-><a class="code" href="structDBusTransport.html#cb3d5fe913d4c281f3495e95cd450c57">credentials</a>);
<a name="l00222"></a>00222 }
<a name="l00223"></a>00223
<a name="l00224"></a>00224
<a name="l00234"></a>00234 <span class="keyword">static</span> <a class="code" href="structDBusTransport.html">DBusTransport</a>*
<a name="l00235"></a>00235 check_address (<span class="keyword">const</span> <span class="keywordtype">char</span> *address, <a class="code" href="structDBusError.html">DBusError</a> *error)
<a name="l00236"></a>00236 {
<a name="l00237"></a>00237 <a class="code" href="structDBusAddressEntry.html">DBusAddressEntry</a> **entries;
<a name="l00238"></a>00238 <a class="code" href="structDBusTransport.html">DBusTransport</a> *transport = <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>;
<a name="l00239"></a>00239 <span class="keywordtype">int</span> len, i;
<a name="l00240"></a>00240
<a name="l00241"></a>00241 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (address != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00242"></a>00242 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (*address != <span class="charliteral">'\0'</span>);
<a name="l00243"></a>00243
<a name="l00244"></a>00244 <span class="keywordflow">if</span> (!<a class="code" href="group__DBusAddress.html#gba56db98921bbe358d8549339a3cf20d">dbus_parse_address</a> (address, &entries, &len, error))
<a name="l00245"></a>00245 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>; <span class="comment">/* not a valid address */</span>
<a name="l00246"></a>00246
<a name="l00247"></a>00247 <span class="keywordflow">for</span> (i = 0; i < len; i++)
<a name="l00248"></a>00248 {
<a name="l00249"></a>00249 transport = <a class="code" href="group__DBusTransport.html#g0893897223056c89f33b2641a7b21cf8">_dbus_transport_open</a> (entries[i], error);
<a name="l00250"></a>00250 <span class="keywordflow">if</span> (transport != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>)
<a name="l00251"></a>00251 <span class="keywordflow">break</span>;
<a name="l00252"></a>00252 }
<a name="l00253"></a>00253
<a name="l00254"></a>00254 <a class="code" href="group__DBusAddress.html#geec9b8bf0e25269d7b3e9922b01968c1">dbus_address_entries_free</a> (entries);
<a name="l00255"></a>00255 <span class="keywordflow">return</span> transport;
<a name="l00256"></a>00256 }
<a name="l00257"></a>00257
<a name="l00265"></a>00265 <span class="keyword">static</span> <a class="code" href="structDBusTransport.html">DBusTransport</a>*
<a name="l00266"></a>00266 _dbus_transport_new_for_autolaunch (<a class="code" href="structDBusError.html">DBusError</a> *error)
<a name="l00267"></a>00267 {
<a name="l00268"></a>00268 <a class="code" href="structDBusString.html">DBusString</a> address;
<a name="l00269"></a>00269 <a class="code" href="structDBusTransport.html">DBusTransport</a> *result = <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>;
<a name="l00270"></a>00270
<a name="l00271"></a>00271 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
<a name="l00272"></a>00272
<a name="l00273"></a>00273 <span class="keywordflow">if</span> (!<a class="code" href="group__DBusString.html#g348252317f7bb8ac43529972945830ae">_dbus_string_init</a> (&address))
<a name="l00274"></a>00274 {
<a name="l00275"></a>00275 <a class="code" href="group__DBusErrors.html#g4e1b4b297468006781a957129ad9cf00">dbus_set_error</a> (error, <a class="code" href="group__DBusProtocol.html#gc32eaf0b92f798307853cd4fe0cf11c2">DBUS_ERROR_NO_MEMORY</a>, <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00276"></a>00276 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>;
<a name="l00277"></a>00277 }
<a name="l00278"></a>00278
<a name="l00279"></a>00279 <span class="keywordflow">if</span> (!<a class="code" href="group__DBusSysdeps.html#g5d0a3ba7355b396fab824b6404840db2">_dbus_get_autolaunch_address</a> (&address, error))
<a name="l00280"></a>00280 {
<a name="l00281"></a>00281 _DBUS_ASSERT_ERROR_IS_SET (error);
<a name="l00282"></a>00282 <span class="keywordflow">goto</span> out;
<a name="l00283"></a>00283 }
<a name="l00284"></a>00284
<a name="l00285"></a>00285 result = check_address (_dbus_string_get_const_data (&address), error);
<a name="l00286"></a>00286 <span class="keywordflow">if</span> (result == <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>)
<a name="l00287"></a>00287 _DBUS_ASSERT_ERROR_IS_SET (error);
<a name="l00288"></a>00288 <span class="keywordflow">else</span>
<a name="l00289"></a>00289 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
<a name="l00290"></a>00290
<a name="l00291"></a>00291 out:
<a name="l00292"></a>00292 <a class="code" href="group__DBusString.html#g781ca91acda49a834dce7d0ed0eef212">_dbus_string_free</a> (&address);
<a name="l00293"></a>00293 <span class="keywordflow">return</span> result;
<a name="l00294"></a>00294 }
<a name="l00295"></a>00295
<a name="l00296"></a>00296 <span class="keyword">static</span> DBusTransportOpenResult
<a name="l00297"></a>00297 _dbus_transport_open_autolaunch (<a class="code" href="structDBusAddressEntry.html">DBusAddressEntry</a> *entry,
<a name="l00298"></a>00298 <a class="code" href="structDBusTransport.html">DBusTransport</a> **transport_p,
<a name="l00299"></a>00299 <a class="code" href="structDBusError.html">DBusError</a> *error)
<a name="l00300"></a>00300 {
<a name="l00301"></a>00301 <span class="keyword">const</span> <span class="keywordtype">char</span> *method;
<a name="l00302"></a>00302
<a name="l00303"></a>00303 method = <a class="code" href="group__DBusAddress.html#g0905615382af3a8525b8a884d31b3f1c">dbus_address_entry_get_method</a> (entry);
<a name="l00304"></a>00304 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (method != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00305"></a>00305
<a name="l00306"></a>00306 <span class="keywordflow">if</span> (strcmp (method, <span class="stringliteral">"autolaunch"</span>) == 0)
<a name="l00307"></a>00307 {
<a name="l00308"></a>00308 *transport_p = _dbus_transport_new_for_autolaunch (error);
<a name="l00309"></a>00309
<a name="l00310"></a>00310 <span class="keywordflow">if</span> (*transport_p == <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>)
<a name="l00311"></a>00311 {
<a name="l00312"></a>00312 _DBUS_ASSERT_ERROR_IS_SET (error);
<a name="l00313"></a>00313 <span class="keywordflow">return</span> DBUS_TRANSPORT_OPEN_DID_NOT_CONNECT;
<a name="l00314"></a>00314 }
<a name="l00315"></a>00315 <span class="keywordflow">else</span>
<a name="l00316"></a>00316 {
<a name="l00317"></a>00317 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
<a name="l00318"></a>00318 <span class="keywordflow">return</span> DBUS_TRANSPORT_OPEN_OK;
<a name="l00319"></a>00319 }
<a name="l00320"></a>00320 }
<a name="l00321"></a>00321 <span class="keywordflow">else</span>
<a name="l00322"></a>00322 {
<a name="l00323"></a>00323 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
<a name="l00324"></a>00324 <span class="keywordflow">return</span> DBUS_TRANSPORT_OPEN_NOT_HANDLED;
<a name="l00325"></a>00325 }
<a name="l00326"></a>00326 }
<a name="l00327"></a>00327
<a name="l00328"></a>00328 <span class="keyword">static</span> <span class="keyword">const</span> <span class="keyword">struct </span>{
<a name="l00329"></a>00329 DBusTransportOpenResult (* func) (<a class="code" href="structDBusAddressEntry.html">DBusAddressEntry</a> *entry,
<a name="l00330"></a>00330 <a class="code" href="structDBusTransport.html">DBusTransport</a> **transport_p,
<a name="l00331"></a>00331 <a class="code" href="structDBusError.html">DBusError</a> *error);
<a name="l00332"></a>00332 } open_funcs[] = {
<a name="l00333"></a>00333 { <a class="code" href="group__DBusTransportSocket.html#g1bb28d9c6b0aa2b7efdf63f97116bb85">_dbus_transport_open_socket</a> },
<a name="l00334"></a>00334 { <a class="code" href="group__DBusTransportUnix.html#gfd694944860033155276df9162bdf72e">_dbus_transport_open_platform_specific</a> },
<a name="l00335"></a>00335 { _dbus_transport_open_autolaunch }
<a name="l00336"></a>00336 <span class="preprocessor">#ifdef DBUS_BUILD_TESTS</span>
<a name="l00337"></a>00337 <span class="preprocessor"></span> , { _dbus_transport_open_debug_pipe }
<a name="l00338"></a>00338 <span class="preprocessor">#endif</span>
<a name="l00339"></a>00339 <span class="preprocessor"></span>};
<a name="l00340"></a>00340
<a name="l00349"></a>00349 <a class="code" href="structDBusTransport.html">DBusTransport</a>*
<a name="l00350"></a><a class="code" href="group__DBusTransport.html#g0893897223056c89f33b2641a7b21cf8">00350</a> <a class="code" href="group__DBusTransport.html#g0893897223056c89f33b2641a7b21cf8">_dbus_transport_open</a> (<a class="code" href="structDBusAddressEntry.html">DBusAddressEntry</a> *entry,
<a name="l00351"></a>00351 <a class="code" href="structDBusError.html">DBusError</a> *error)
<a name="l00352"></a>00352 {
<a name="l00353"></a>00353 <a class="code" href="structDBusTransport.html">DBusTransport</a> *transport;
<a name="l00354"></a>00354 <span class="keyword">const</span> <span class="keywordtype">char</span> *expected_guid_orig;
<a name="l00355"></a>00355 <span class="keywordtype">char</span> *expected_guid;
<a name="l00356"></a>00356 <span class="keywordtype">int</span> i;
<a name="l00357"></a>00357 <a class="code" href="structDBusError.html">DBusError</a> tmp_error;
<a name="l00358"></a>00358
<a name="l00359"></a>00359 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
<a name="l00360"></a>00360
<a name="l00361"></a>00361 transport = <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>;
<a name="l00362"></a>00362 expected_guid_orig = <a class="code" href="group__DBusAddress.html#g531aca53af647b833c54b6ab345bc549">dbus_address_entry_get_value</a> (entry, <span class="stringliteral">"guid"</span>);
<a name="l00363"></a>00363 expected_guid = <a class="code" href="group__DBusInternalsUtils.html#g9d00d77f6595b9d7ac1baf59d44bf58c">_dbus_strdup</a> (expected_guid_orig);
<a name="l00364"></a>00364
<a name="l00365"></a>00365 <span class="keywordflow">if</span> (expected_guid_orig != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a> && expected_guid == <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>)
<a name="l00366"></a>00366 {
<a name="l00367"></a>00367 _DBUS_SET_OOM (error);
<a name="l00368"></a>00368 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>;
<a name="l00369"></a>00369 }
<a name="l00370"></a>00370
<a name="l00371"></a>00371 <a class="code" href="group__DBusErrors.html#g8ce28eae754237703296599967d7ab77">dbus_error_init</a> (&tmp_error);
<a name="l00372"></a>00372 <span class="keywordflow">for</span> (i = 0; i < (int) <a class="code" href="group__DBusInternalsUtils.html#gc153abad46f4eb80999a2b340d29d1f0">_DBUS_N_ELEMENTS</a> (open_funcs); ++i)
<a name="l00373"></a>00373 {
<a name="l00374"></a>00374 DBusTransportOpenResult result;
<a name="l00375"></a>00375
<a name="l00376"></a>00376 _DBUS_ASSERT_ERROR_IS_CLEAR (&tmp_error);
<a name="l00377"></a>00377 result = (* open_funcs[i].func) (entry, &transport, &tmp_error);
<a name="l00378"></a>00378
<a name="l00379"></a>00379 <span class="keywordflow">switch</span> (result)
<a name="l00380"></a>00380 {
<a name="l00381"></a>00381 <span class="keywordflow">case</span> DBUS_TRANSPORT_OPEN_OK:
<a name="l00382"></a>00382 _DBUS_ASSERT_ERROR_IS_CLEAR (&tmp_error);
<a name="l00383"></a>00383 <span class="keywordflow">goto</span> out;
<a name="l00384"></a>00384 <span class="keywordflow">break</span>;
<a name="l00385"></a>00385 <span class="keywordflow">case</span> DBUS_TRANSPORT_OPEN_NOT_HANDLED:
<a name="l00386"></a>00386 _DBUS_ASSERT_ERROR_IS_CLEAR (&tmp_error);
<a name="l00387"></a>00387 <span class="comment">/* keep going through the loop of open funcs */</span>
<a name="l00388"></a>00388 <span class="keywordflow">break</span>;
<a name="l00389"></a>00389 <span class="keywordflow">case</span> DBUS_TRANSPORT_OPEN_BAD_ADDRESS:
<a name="l00390"></a>00390 _DBUS_ASSERT_ERROR_IS_SET (&tmp_error);
<a name="l00391"></a>00391 <span class="keywordflow">goto</span> out;
<a name="l00392"></a>00392 <span class="keywordflow">break</span>;
<a name="l00393"></a>00393 <span class="keywordflow">case</span> DBUS_TRANSPORT_OPEN_DID_NOT_CONNECT:
<a name="l00394"></a>00394 _DBUS_ASSERT_ERROR_IS_SET (&tmp_error);
<a name="l00395"></a>00395 <span class="keywordflow">goto</span> out;
<a name="l00396"></a>00396 <span class="keywordflow">break</span>;
<a name="l00397"></a>00397 }
<a name="l00398"></a>00398 }
<a name="l00399"></a>00399
<a name="l00400"></a>00400 out:
<a name="l00401"></a>00401
<a name="l00402"></a>00402 <span class="keywordflow">if</span> (transport == <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>)
<a name="l00403"></a>00403 {
<a name="l00404"></a>00404 <span class="keywordflow">if</span> (!<a class="code" href="group__DBusErrors.html#g49c2509c79ae0fa01f5004b17e2ec6be">dbus_error_is_set</a> (&tmp_error))
<a name="l00405"></a>00405 <a class="code" href="group__DBusAddressInternals.html#g5b6409826263c7d62570c56889f7ddb2">_dbus_set_bad_address</a> (&tmp_error,
<a name="l00406"></a>00406 <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>, <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>,
<a name="l00407"></a>00407 <span class="stringliteral">"Unknown address type (examples of valid types are \"tcp\" and on UNIX \"unix\")"</span>);
<a name="l00408"></a>00408
<a name="l00409"></a>00409 _DBUS_ASSERT_ERROR_IS_SET (&tmp_error);
<a name="l00410"></a>00410 <a class="code" href="group__DBusErrors.html#g9857517c813b19ef87b12f00558cecda">dbus_move_error</a>(&tmp_error, error);
<a name="l00411"></a>00411 <a class="code" href="group__DBusMemory.html#g488c6b08cc8c1ddf0203243c4b27a13c">dbus_free</a> (expected_guid);
<a name="l00412"></a>00412 }
<a name="l00413"></a>00413 <span class="keywordflow">else</span>
<a name="l00414"></a>00414 {
<a name="l00415"></a>00415 _DBUS_ASSERT_ERROR_IS_CLEAR (&tmp_error);
<a name="l00416"></a>00416 transport-><a class="code" href="structDBusTransport.html#aad7cb51a3e4ff2dd900ac971cc52b36">expected_guid</a> = expected_guid;
<a name="l00417"></a>00417 }
<a name="l00418"></a>00418
<a name="l00419"></a>00419 <span class="keywordflow">return</span> transport;
<a name="l00420"></a>00420 }
<a name="l00421"></a>00421
<a name="l00428"></a>00428 <a class="code" href="structDBusTransport.html">DBusTransport</a> *
<a name="l00429"></a><a class="code" href="group__DBusTransport.html#g31d6dbc864c9ea643d72521bbb1b7c56">00429</a> <a class="code" href="group__DBusTransport.html#g31d6dbc864c9ea643d72521bbb1b7c56">_dbus_transport_ref</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport)
<a name="l00430"></a>00430 {
<a name="l00431"></a>00431 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (transport-><a class="code" href="structDBusTransport.html#1a6554a692a353f8402c1419cd94e904">refcount</a> > 0);
<a name="l00432"></a>00432
<a name="l00433"></a>00433 transport-><a class="code" href="structDBusTransport.html#1a6554a692a353f8402c1419cd94e904">refcount</a> += 1;
<a name="l00434"></a>00434
<a name="l00435"></a>00435 <span class="keywordflow">return</span> transport;
<a name="l00436"></a>00436 }
<a name="l00437"></a>00437
<a name="l00445"></a>00445 <span class="keywordtype">void</span>
<a name="l00446"></a><a class="code" href="group__DBusTransport.html#gb7c53c32a2320c81aae8ce4345762e73">00446</a> <a class="code" href="group__DBusTransport.html#gb7c53c32a2320c81aae8ce4345762e73">_dbus_transport_unref</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport)
<a name="l00447"></a>00447 {
<a name="l00448"></a>00448 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (transport != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00449"></a>00449 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (transport-><a class="code" href="structDBusTransport.html#1a6554a692a353f8402c1419cd94e904">refcount</a> > 0);
<a name="l00450"></a>00450
<a name="l00451"></a>00451 transport-><a class="code" href="structDBusTransport.html#1a6554a692a353f8402c1419cd94e904">refcount</a> -= 1;
<a name="l00452"></a>00452 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#1a6554a692a353f8402c1419cd94e904">refcount</a> == 0)
<a name="l00453"></a>00453 {
<a name="l00454"></a>00454 _dbus_verbose (<span class="stringliteral">"%s: finalizing\n"</span>, _DBUS_FUNCTION_NAME);
<a name="l00455"></a>00455
<a name="l00456"></a>00456 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (transport-><a class="code" href="structDBusTransport.html#7350850a4e02a7eaa4036eb47d4778e5">vtable</a>-><a class="code" href="structDBusTransportVTable.html#85adba17e1ea7e9a687146908c735dfc">finalize</a> != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00457"></a>00457
<a name="l00458"></a>00458 (* transport-><a class="code" href="structDBusTransport.html#7350850a4e02a7eaa4036eb47d4778e5">vtable</a>-><a class="code" href="structDBusTransportVTable.html#85adba17e1ea7e9a687146908c735dfc">finalize</a>) (transport);
<a name="l00459"></a>00459 }
<a name="l00460"></a>00460 }
<a name="l00461"></a>00461
<a name="l00470"></a>00470 <span class="keywordtype">void</span>
<a name="l00471"></a><a class="code" href="group__DBusTransport.html#g78444dd8f6c6d6b429433ad81c3e318a">00471</a> <a class="code" href="group__DBusTransport.html#g78444dd8f6c6d6b429433ad81c3e318a">_dbus_transport_disconnect</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport)
<a name="l00472"></a>00472 {
<a name="l00473"></a>00473 _dbus_verbose (<span class="stringliteral">"%s start\n"</span>, _DBUS_FUNCTION_NAME);
<a name="l00474"></a>00474
<a name="l00475"></a>00475 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (transport-><a class="code" href="structDBusTransport.html#7350850a4e02a7eaa4036eb47d4778e5">vtable</a>-><a class="code" href="structDBusTransportVTable.html#ddf39f9f35702bc66dd33c0fd1dcb62c">disconnect</a> != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00476"></a>00476
<a name="l00477"></a>00477 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#487a7375e94efba850f8344a252cfa63">disconnected</a>)
<a name="l00478"></a>00478 <span class="keywordflow">return</span>;
<a name="l00479"></a>00479
<a name="l00480"></a>00480 (* transport-><a class="code" href="structDBusTransport.html#7350850a4e02a7eaa4036eb47d4778e5">vtable</a>-><a class="code" href="structDBusTransportVTable.html#ddf39f9f35702bc66dd33c0fd1dcb62c">disconnect</a>) (transport);
<a name="l00481"></a>00481
<a name="l00482"></a>00482 transport-><a class="code" href="structDBusTransport.html#487a7375e94efba850f8344a252cfa63">disconnected</a> = <a class="code" href="group__DBusMacros.html#ga8cecfc5c5c054d2875c03e77b7be15d">TRUE</a>;
<a name="l00483"></a>00483
<a name="l00484"></a>00484 _dbus_verbose (<span class="stringliteral">"%s end\n"</span>, _DBUS_FUNCTION_NAME);
<a name="l00485"></a>00485 }
<a name="l00486"></a>00486
<a name="l00495"></a>00495 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a>
<a name="l00496"></a><a class="code" href="group__DBusTransport.html#gceee4b098b0177870ad934daad90a9c6">00496</a> <a class="code" href="group__DBusTransport.html#gceee4b098b0177870ad934daad90a9c6">_dbus_transport_get_is_connected</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport)
<a name="l00497"></a>00497 {
<a name="l00498"></a>00498 <span class="keywordflow">return</span> !transport-><a class="code" href="structDBusTransport.html#487a7375e94efba850f8344a252cfa63">disconnected</a>;
<a name="l00499"></a>00499 }
<a name="l00500"></a>00500
<a name="l00501"></a>00501 <span class="keyword">static</span> <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a>
<a name="l00502"></a>00502 auth_via_unix_user_function (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport)
<a name="l00503"></a>00503 {
<a name="l00504"></a>00504 <a class="code" href="structDBusCredentials.html">DBusCredentials</a> *auth_identity;
<a name="l00505"></a>00505 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a> allow;
<a name="l00506"></a>00506 <a class="code" href="structDBusConnection.html">DBusConnection</a> *connection;
<a name="l00507"></a>00507 <a class="code" href="group__DBusConnection.html#g141b80629859a4c154c793f08c33d687">DBusAllowUnixUserFunction</a> unix_user_function;
<a name="l00508"></a>00508 <span class="keywordtype">void</span> *unix_user_data;
<a name="l00509"></a>00509 <a class="code" href="group__DBusSysdeps.html#g186e987b700f9ddc6cea8aa0db82b151">dbus_uid_t</a> uid;
<a name="l00510"></a>00510
<a name="l00511"></a>00511 <span class="comment">/* Dropping the lock here probably isn't that safe. */</span>
<a name="l00512"></a>00512
<a name="l00513"></a>00513 auth_identity = <a class="code" href="group__DBusAuth.html#gbfa5450530b999bcb0fabf37c414a80e">_dbus_auth_get_identity</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>);
<a name="l00514"></a>00514 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (auth_identity != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00515"></a>00515
<a name="l00516"></a>00516 connection = transport-><a class="code" href="structDBusTransport.html#8abdfc9327aa30550982c83b45354651">connection</a>;
<a name="l00517"></a>00517 unix_user_function = transport-><a class="code" href="structDBusTransport.html#c83be11f3497da6a21aed51782cd68d0">unix_user_function</a>;
<a name="l00518"></a>00518 unix_user_data = transport-><a class="code" href="structDBusTransport.html#7df35abee6aeef69eff659d65dd430f4">unix_user_data</a>;
<a name="l00519"></a>00519 uid = <a class="code" href="group__DBusCredentials.html#g462892f995f2932bf0eb3b843407e6d5">_dbus_credentials_get_unix_uid</a> (auth_identity);
<a name="l00520"></a>00520
<a name="l00521"></a>00521 _dbus_verbose (<span class="stringliteral">"unlock %s\n"</span>, _DBUS_FUNCTION_NAME);
<a name="l00522"></a>00522 <a class="code" href="group__DBusConnectionInternals.html#g3db10d48ec16e485d5a638aacebd4ad2">_dbus_connection_unlock</a> (connection);
<a name="l00523"></a>00523
<a name="l00524"></a>00524 allow = (* unix_user_function) (connection,
<a name="l00525"></a>00525 uid,
<a name="l00526"></a>00526 unix_user_data);
<a name="l00527"></a>00527
<a name="l00528"></a>00528 _dbus_verbose (<span class="stringliteral">"lock %s post unix user function\n"</span>, _DBUS_FUNCTION_NAME);
<a name="l00529"></a>00529 <a class="code" href="group__DBusConnectionInternals.html#g4fe0c8f7b72dc89b9e1a3110db2f778e">_dbus_connection_lock</a> (connection);
<a name="l00530"></a>00530
<a name="l00531"></a>00531 <span class="keywordflow">if</span> (allow)
<a name="l00532"></a>00532 {
<a name="l00533"></a>00533 _dbus_verbose (<span class="stringliteral">"Client UID "</span><a class="code" href="group__DBusSysdeps.html#gb657f0434f01b463891942f373f7b4a1">DBUS_UID_FORMAT</a><span class="stringliteral">" authorized\n"</span>, uid);
<a name="l00534"></a>00534 }
<a name="l00535"></a>00535 <span class="keywordflow">else</span>
<a name="l00536"></a>00536 {
<a name="l00537"></a>00537 _dbus_verbose (<span class="stringliteral">"Client UID "</span><a class="code" href="group__DBusSysdeps.html#gb657f0434f01b463891942f373f7b4a1">DBUS_UID_FORMAT</a>
<a name="l00538"></a>00538 <span class="stringliteral">" was rejected, disconnecting\n"</span>,
<a name="l00539"></a>00539 <a class="code" href="group__DBusCredentials.html#g462892f995f2932bf0eb3b843407e6d5">_dbus_credentials_get_unix_uid</a> (auth_identity));
<a name="l00540"></a>00540 <a class="code" href="group__DBusTransport.html#g78444dd8f6c6d6b429433ad81c3e318a">_dbus_transport_disconnect</a> (transport);
<a name="l00541"></a>00541 }
<a name="l00542"></a>00542
<a name="l00543"></a>00543 <span class="keywordflow">return</span> allow;
<a name="l00544"></a>00544 }
<a name="l00545"></a>00545
<a name="l00546"></a>00546 <span class="keyword">static</span> <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a>
<a name="l00547"></a>00547 auth_via_windows_user_function (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport)
<a name="l00548"></a>00548 {
<a name="l00549"></a>00549 <a class="code" href="structDBusCredentials.html">DBusCredentials</a> *auth_identity;
<a name="l00550"></a>00550 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a> allow;
<a name="l00551"></a>00551 <a class="code" href="structDBusConnection.html">DBusConnection</a> *connection;
<a name="l00552"></a>00552 <a class="code" href="group__DBusConnection.html#gf5c1e751b33a480c33f9141ad3ac75d9">DBusAllowWindowsUserFunction</a> windows_user_function;
<a name="l00553"></a>00553 <span class="keywordtype">void</span> *windows_user_data;
<a name="l00554"></a>00554 <span class="keywordtype">char</span> *windows_sid;
<a name="l00555"></a>00555
<a name="l00556"></a>00556 <span class="comment">/* Dropping the lock here probably isn't that safe. */</span>
<a name="l00557"></a>00557
<a name="l00558"></a>00558 auth_identity = <a class="code" href="group__DBusAuth.html#gbfa5450530b999bcb0fabf37c414a80e">_dbus_auth_get_identity</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>);
<a name="l00559"></a>00559 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (auth_identity != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00560"></a>00560
<a name="l00561"></a>00561 connection = transport-><a class="code" href="structDBusTransport.html#8abdfc9327aa30550982c83b45354651">connection</a>;
<a name="l00562"></a>00562 windows_user_function = transport-><a class="code" href="structDBusTransport.html#17403591c2a1d936be5ed13a36e6416a">windows_user_function</a>;
<a name="l00563"></a>00563 windows_user_data = transport-><a class="code" href="structDBusTransport.html#7df35abee6aeef69eff659d65dd430f4">unix_user_data</a>;
<a name="l00564"></a>00564 windows_sid = <a class="code" href="group__DBusInternalsUtils.html#g9d00d77f6595b9d7ac1baf59d44bf58c">_dbus_strdup</a> (<a class="code" href="group__DBusCredentials.html#g53680e02140559fb36efeec68d398ac0">_dbus_credentials_get_windows_sid</a> (auth_identity));
<a name="l00565"></a>00565
<a name="l00566"></a>00566 <span class="keywordflow">if</span> (windows_sid == <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>)
<a name="l00567"></a>00567 {
<a name="l00568"></a>00568 <span class="comment">/* OOM */</span>
<a name="l00569"></a>00569 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00570"></a>00570 }
<a name="l00571"></a>00571
<a name="l00572"></a>00572 _dbus_verbose (<span class="stringliteral">"unlock %s\n"</span>, _DBUS_FUNCTION_NAME);
<a name="l00573"></a>00573 <a class="code" href="group__DBusConnectionInternals.html#g3db10d48ec16e485d5a638aacebd4ad2">_dbus_connection_unlock</a> (connection);
<a name="l00574"></a>00574
<a name="l00575"></a>00575 allow = (* windows_user_function) (connection,
<a name="l00576"></a>00576 windows_sid,
<a name="l00577"></a>00577 windows_user_data);
<a name="l00578"></a>00578
<a name="l00579"></a>00579 _dbus_verbose (<span class="stringliteral">"lock %s post windows user function\n"</span>, _DBUS_FUNCTION_NAME);
<a name="l00580"></a>00580 <a class="code" href="group__DBusConnectionInternals.html#g4fe0c8f7b72dc89b9e1a3110db2f778e">_dbus_connection_lock</a> (connection);
<a name="l00581"></a>00581
<a name="l00582"></a>00582 <span class="keywordflow">if</span> (allow)
<a name="l00583"></a>00583 {
<a name="l00584"></a>00584 _dbus_verbose (<span class="stringliteral">"Client SID '%s' authorized\n"</span>, windows_sid);
<a name="l00585"></a>00585 }
<a name="l00586"></a>00586 <span class="keywordflow">else</span>
<a name="l00587"></a>00587 {
<a name="l00588"></a>00588 _dbus_verbose (<span class="stringliteral">"Client SID '%s' was rejected, disconnecting\n"</span>,
<a name="l00589"></a>00589 <a class="code" href="group__DBusCredentials.html#g53680e02140559fb36efeec68d398ac0">_dbus_credentials_get_windows_sid</a> (auth_identity));
<a name="l00590"></a>00590 <a class="code" href="group__DBusTransport.html#g78444dd8f6c6d6b429433ad81c3e318a">_dbus_transport_disconnect</a> (transport);
<a name="l00591"></a>00591 }
<a name="l00592"></a>00592
<a name="l00593"></a>00593 <span class="keywordflow">return</span> allow;
<a name="l00594"></a>00594 }
<a name="l00595"></a>00595
<a name="l00596"></a>00596 <span class="keyword">static</span> <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a>
<a name="l00597"></a>00597 auth_via_default_rules (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport)
<a name="l00598"></a>00598 {
<a name="l00599"></a>00599 <a class="code" href="structDBusCredentials.html">DBusCredentials</a> *auth_identity;
<a name="l00600"></a>00600 <a class="code" href="structDBusCredentials.html">DBusCredentials</a> *our_identity;
<a name="l00601"></a>00601 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a> allow;
<a name="l00602"></a>00602
<a name="l00603"></a>00603 auth_identity = <a class="code" href="group__DBusAuth.html#gbfa5450530b999bcb0fabf37c414a80e">_dbus_auth_get_identity</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>);
<a name="l00604"></a>00604 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (auth_identity != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00605"></a>00605
<a name="l00606"></a>00606 <span class="comment">/* By default, connection is allowed if the client is 1) root or 2)</span>
<a name="l00607"></a>00607 <span class="comment"> * has the same UID as us or 3) anonymous is allowed.</span>
<a name="l00608"></a>00608 <span class="comment"> */</span>
<a name="l00609"></a>00609
<a name="l00610"></a>00610 our_identity = <a class="code" href="group__DBusCredentials.html#g63b2f88e91962510ed947bae98270818">_dbus_credentials_new_from_current_process</a> ();
<a name="l00611"></a>00611 <span class="keywordflow">if</span> (our_identity == <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>)
<a name="l00612"></a>00612 {
<a name="l00613"></a>00613 <span class="comment">/* OOM */</span>
<a name="l00614"></a>00614 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00615"></a>00615 }
<a name="l00616"></a>00616
<a name="l00617"></a>00617 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#30a82ca7826ef4735a5caa4c921ec014">allow_anonymous</a> ||
<a name="l00618"></a>00618 <a class="code" href="group__DBusCredentials.html#g462892f995f2932bf0eb3b843407e6d5">_dbus_credentials_get_unix_uid</a> (auth_identity) == 0 ||
<a name="l00619"></a>00619 <a class="code" href="group__DBusCredentials.html#g2f10263b80ff6611c15a78e8f6823dfa">_dbus_credentials_same_user</a> (our_identity,
<a name="l00620"></a>00620 auth_identity))
<a name="l00621"></a>00621 {
<a name="l00622"></a>00622 <span class="keywordflow">if</span> (<a class="code" href="group__DBusCredentials.html#g0fb8d13878e126ccc243c4a30fd8598c">_dbus_credentials_include</a>(our_identity,DBUS_CREDENTIAL_WINDOWS_SID))
<a name="l00623"></a>00623 _dbus_verbose (<span class="stringliteral">"Client authorized as SID '%s'"</span>
<a name="l00624"></a>00624 <span class="stringliteral">"matching our SID '%s'\n"</span>,
<a name="l00625"></a>00625 <a class="code" href="group__DBusCredentials.html#g53680e02140559fb36efeec68d398ac0">_dbus_credentials_get_windows_sid</a>(auth_identity),
<a name="l00626"></a>00626 <a class="code" href="group__DBusCredentials.html#g53680e02140559fb36efeec68d398ac0">_dbus_credentials_get_windows_sid</a>(our_identity));
<a name="l00627"></a>00627 <span class="keywordflow">else</span>
<a name="l00628"></a>00628 _dbus_verbose (<span class="stringliteral">"Client authorized as UID "</span><a class="code" href="group__DBusSysdeps.html#gb657f0434f01b463891942f373f7b4a1">DBUS_UID_FORMAT</a>
<a name="l00629"></a>00629 <span class="stringliteral">" matching our UID "</span><a class="code" href="group__DBusSysdeps.html#gb657f0434f01b463891942f373f7b4a1">DBUS_UID_FORMAT</a><span class="stringliteral">"\n"</span>,
<a name="l00630"></a>00630 <a class="code" href="group__DBusCredentials.html#g462892f995f2932bf0eb3b843407e6d5">_dbus_credentials_get_unix_uid</a>(auth_identity),
<a name="l00631"></a>00631 <a class="code" href="group__DBusCredentials.html#g462892f995f2932bf0eb3b843407e6d5">_dbus_credentials_get_unix_uid</a>(our_identity));
<a name="l00632"></a>00632 <span class="comment">/* We have authenticated! */</span>
<a name="l00633"></a>00633 allow = <a class="code" href="group__DBusMacros.html#ga8cecfc5c5c054d2875c03e77b7be15d">TRUE</a>;
<a name="l00634"></a>00634 }
<a name="l00635"></a>00635 <span class="keywordflow">else</span>
<a name="l00636"></a>00636 {
<a name="l00637"></a>00637 <span class="keywordflow">if</span> (<a class="code" href="group__DBusCredentials.html#g0fb8d13878e126ccc243c4a30fd8598c">_dbus_credentials_include</a>(our_identity,DBUS_CREDENTIAL_WINDOWS_SID))
<a name="l00638"></a>00638 _dbus_verbose (<span class="stringliteral">"Client authorized as SID '%s'"</span>
<a name="l00639"></a>00639 <span class="stringliteral">" but our SID is '%s', disconnecting\n"</span>,
<a name="l00640"></a>00640 <a class="code" href="group__DBusCredentials.html#g53680e02140559fb36efeec68d398ac0">_dbus_credentials_get_windows_sid</a>(our_identity),
<a name="l00641"></a>00641 <a class="code" href="group__DBusCredentials.html#g53680e02140559fb36efeec68d398ac0">_dbus_credentials_get_windows_sid</a>(our_identity));
<a name="l00642"></a>00642 <span class="keywordflow">else</span>
<a name="l00643"></a>00643 _dbus_verbose (<span class="stringliteral">"Client authorized as UID "</span>DBUS_UID_FORMAT
<a name="l00644"></a>00644 <span class="stringliteral">" but our UID is "</span>DBUS_UID_FORMAT<span class="stringliteral">", disconnecting\n"</span>,
<a name="l00645"></a>00645 <a class="code" href="group__DBusCredentials.html#g462892f995f2932bf0eb3b843407e6d5">_dbus_credentials_get_unix_uid</a>(our_identity),
<a name="l00646"></a>00646 <a class="code" href="group__DBusCredentials.html#g462892f995f2932bf0eb3b843407e6d5">_dbus_credentials_get_unix_uid</a>(our_identity));
<a name="l00647"></a>00647 <a class="code" href="group__DBusTransport.html#g78444dd8f6c6d6b429433ad81c3e318a">_dbus_transport_disconnect</a> (transport);
<a name="l00648"></a>00648 allow = <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00649"></a>00649 }
<a name="l00650"></a>00650
<a name="l00651"></a>00651 <a class="code" href="group__DBusCredentials.html#g89913c830c3627cd006a50ca693af580">_dbus_credentials_unref</a> (our_identity);
<a name="l00652"></a>00652
<a name="l00653"></a>00653 <span class="keywordflow">return</span> allow;
<a name="l00654"></a>00654 }
<a name="l00655"></a>00655
<a name="l00656"></a>00656
<a name="l00667"></a>00667 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a>
<a name="l00668"></a><a class="code" href="group__DBusTransport.html#g251ff6d644e1dc6d46c58705e6dcc787">00668</a> <a class="code" href="group__DBusTransport.html#g251ff6d644e1dc6d46c58705e6dcc787">_dbus_transport_get_is_authenticated</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport)
<a name="l00669"></a>00669 {
<a name="l00670"></a>00670 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#12d3052e51b2f0bf398d48e31e5f9da8">authenticated</a>)
<a name="l00671"></a>00671 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga8cecfc5c5c054d2875c03e77b7be15d">TRUE</a>;
<a name="l00672"></a>00672 <span class="keywordflow">else</span>
<a name="l00673"></a>00673 {
<a name="l00674"></a>00674 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a> maybe_authenticated;
<a name="l00675"></a>00675
<a name="l00676"></a>00676 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#487a7375e94efba850f8344a252cfa63">disconnected</a>)
<a name="l00677"></a>00677 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00678"></a>00678
<a name="l00679"></a>00679 <span class="comment">/* paranoia ref since we call user callbacks sometimes */</span>
<a name="l00680"></a>00680 <a class="code" href="group__DBusConnectionInternals.html#g7151f75b5d2308ec80cfe893aba72aa1">_dbus_connection_ref_unlocked</a> (transport-><a class="code" href="structDBusTransport.html#8abdfc9327aa30550982c83b45354651">connection</a>);
<a name="l00681"></a>00681
<a name="l00682"></a>00682 maybe_authenticated =
<a name="l00683"></a>00683 (!(transport-><a class="code" href="structDBusTransport.html#7d91848b94203022be1090d93dd2cd04">send_credentials_pending</a> ||
<a name="l00684"></a>00684 transport-><a class="code" href="structDBusTransport.html#aa29089fbb1fbdb5b412b3ed18c84b2d">receive_credentials_pending</a>));
<a name="l00685"></a>00685
<a name="l00686"></a>00686 <span class="keywordflow">if</span> (maybe_authenticated)
<a name="l00687"></a>00687 {
<a name="l00688"></a>00688 <span class="keywordflow">switch</span> (<a class="code" href="group__DBusAuth.html#g097c71f7f20b749275c6b31cd98623f5">_dbus_auth_do_work</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>))
<a name="l00689"></a>00689 {
<a name="l00690"></a>00690 <span class="keywordflow">case</span> DBUS_AUTH_STATE_AUTHENTICATED:
<a name="l00691"></a>00691 <span class="comment">/* leave as maybe_authenticated */</span>
<a name="l00692"></a>00692 <span class="keywordflow">break</span>;
<a name="l00693"></a>00693 <span class="keywordflow">default</span>:
<a name="l00694"></a>00694 maybe_authenticated = <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00695"></a>00695 }
<a name="l00696"></a>00696 }
<a name="l00697"></a>00697
<a name="l00698"></a>00698 <span class="comment">/* If we're the client, verify the GUID</span>
<a name="l00699"></a>00699 <span class="comment"> */</span>
<a name="l00700"></a>00700 <span class="keywordflow">if</span> (maybe_authenticated && !transport-><a class="code" href="structDBusTransport.html#38fa70b1473eb08a6c871c7791b46d6e">is_server</a>)
<a name="l00701"></a>00701 {
<a name="l00702"></a>00702 <span class="keyword">const</span> <span class="keywordtype">char</span> *server_guid;
<a name="l00703"></a>00703
<a name="l00704"></a>00704 server_guid = <a class="code" href="group__DBusAuth.html#gd0bf394093dd9ac43ebf71a5f35a4f3f">_dbus_auth_get_guid_from_server</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>);
<a name="l00705"></a>00705 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (server_guid != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00706"></a>00706
<a name="l00707"></a>00707 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#aad7cb51a3e4ff2dd900ac971cc52b36">expected_guid</a> &&
<a name="l00708"></a>00708 strcmp (transport-><a class="code" href="structDBusTransport.html#aad7cb51a3e4ff2dd900ac971cc52b36">expected_guid</a>, server_guid) != 0)
<a name="l00709"></a>00709 {
<a name="l00710"></a>00710 _dbus_verbose (<span class="stringliteral">"Client expected GUID '%s' and we got '%s' from the server\n"</span>,
<a name="l00711"></a>00711 transport-><a class="code" href="structDBusTransport.html#aad7cb51a3e4ff2dd900ac971cc52b36">expected_guid</a>, server_guid);
<a name="l00712"></a>00712 <a class="code" href="group__DBusTransport.html#g78444dd8f6c6d6b429433ad81c3e318a">_dbus_transport_disconnect</a> (transport);
<a name="l00713"></a>00713 <a class="code" href="group__DBusConnectionInternals.html#g9ffbd9aa4f07cb30d92887e956a9fd43">_dbus_connection_unref_unlocked</a> (transport-><a class="code" href="structDBusTransport.html#8abdfc9327aa30550982c83b45354651">connection</a>);
<a name="l00714"></a>00714 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00715"></a>00715 }
<a name="l00716"></a>00716
<a name="l00717"></a>00717 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#aad7cb51a3e4ff2dd900ac971cc52b36">expected_guid</a> == <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>)
<a name="l00718"></a>00718 {
<a name="l00719"></a>00719 transport-><a class="code" href="structDBusTransport.html#aad7cb51a3e4ff2dd900ac971cc52b36">expected_guid</a> = <a class="code" href="group__DBusInternalsUtils.html#g9d00d77f6595b9d7ac1baf59d44bf58c">_dbus_strdup</a> (server_guid);
<a name="l00720"></a>00720
<a name="l00721"></a>00721 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#aad7cb51a3e4ff2dd900ac971cc52b36">expected_guid</a> == <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>)
<a name="l00722"></a>00722 {
<a name="l00723"></a>00723 _dbus_verbose (<span class="stringliteral">"No memory to complete auth in %s\n"</span>, _DBUS_FUNCTION_NAME);
<a name="l00724"></a>00724 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00725"></a>00725 }
<a name="l00726"></a>00726 }
<a name="l00727"></a>00727 }
<a name="l00728"></a>00728
<a name="l00729"></a>00729 <span class="comment">/* If we're the server, see if we want to allow this identity to proceed.</span>
<a name="l00730"></a>00730 <span class="comment"> */</span>
<a name="l00731"></a>00731 <span class="keywordflow">if</span> (maybe_authenticated && transport-><a class="code" href="structDBusTransport.html#38fa70b1473eb08a6c871c7791b46d6e">is_server</a>)
<a name="l00732"></a>00732 {
<a name="l00733"></a>00733 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a> allow;
<a name="l00734"></a>00734 <a class="code" href="structDBusCredentials.html">DBusCredentials</a> *auth_identity;
<a name="l00735"></a>00735
<a name="l00736"></a>00736 auth_identity = <a class="code" href="group__DBusAuth.html#gbfa5450530b999bcb0fabf37c414a80e">_dbus_auth_get_identity</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>);
<a name="l00737"></a>00737 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (auth_identity != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00738"></a>00738
<a name="l00739"></a>00739 <span class="comment">/* If we have an auth'd user and a user function, delegate</span>
<a name="l00740"></a>00740 <span class="comment"> * deciding whether auth credentials are good enough to the</span>
<a name="l00741"></a>00741 <span class="comment"> * app; otherwise, use our default decision process.</span>
<a name="l00742"></a>00742 <span class="comment"> */</span>
<a name="l00743"></a>00743 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#c83be11f3497da6a21aed51782cd68d0">unix_user_function</a> != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a> &&
<a name="l00744"></a>00744 <a class="code" href="group__DBusCredentials.html#g0fb8d13878e126ccc243c4a30fd8598c">_dbus_credentials_include</a> (auth_identity, DBUS_CREDENTIAL_UNIX_USER_ID))
<a name="l00745"></a>00745 {
<a name="l00746"></a>00746 allow = auth_via_unix_user_function (transport);
<a name="l00747"></a>00747 }
<a name="l00748"></a>00748 <span class="keywordflow">else</span> <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#17403591c2a1d936be5ed13a36e6416a">windows_user_function</a> != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a> &&
<a name="l00749"></a>00749 <a class="code" href="group__DBusCredentials.html#g0fb8d13878e126ccc243c4a30fd8598c">_dbus_credentials_include</a> (auth_identity, DBUS_CREDENTIAL_WINDOWS_SID))
<a name="l00750"></a>00750 {
<a name="l00751"></a>00751 allow = auth_via_windows_user_function (transport);
<a name="l00752"></a>00752 }
<a name="l00753"></a>00753 <span class="keywordflow">else</span>
<a name="l00754"></a>00754 {
<a name="l00755"></a>00755 allow = auth_via_default_rules (transport);
<a name="l00756"></a>00756 }
<a name="l00757"></a>00757
<a name="l00758"></a>00758 <span class="keywordflow">if</span> (!allow)
<a name="l00759"></a>00759 maybe_authenticated = <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00760"></a>00760 }
<a name="l00761"></a>00761
<a name="l00762"></a>00762 transport-><a class="code" href="structDBusTransport.html#12d3052e51b2f0bf398d48e31e5f9da8">authenticated</a> = maybe_authenticated;
<a name="l00763"></a>00763
<a name="l00764"></a>00764 <a class="code" href="group__DBusConnectionInternals.html#g9ffbd9aa4f07cb30d92887e956a9fd43">_dbus_connection_unref_unlocked</a> (transport-><a class="code" href="structDBusTransport.html#8abdfc9327aa30550982c83b45354651">connection</a>);
<a name="l00765"></a>00765 <span class="keywordflow">return</span> maybe_authenticated;
<a name="l00766"></a>00766 }
<a name="l00767"></a>00767 }
<a name="l00768"></a>00768
<a name="l00775"></a>00775 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a>
<a name="l00776"></a><a class="code" href="group__DBusTransport.html#gf0588dd4a6d1c556dd885d4c67622399">00776</a> <a class="code" href="group__DBusTransport.html#gf0588dd4a6d1c556dd885d4c67622399">_dbus_transport_get_is_anonymous</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport)
<a name="l00777"></a>00777 {
<a name="l00778"></a>00778 <a class="code" href="structDBusCredentials.html">DBusCredentials</a> *auth_identity;
<a name="l00779"></a>00779
<a name="l00780"></a>00780 <span class="keywordflow">if</span> (!transport-><a class="code" href="structDBusTransport.html#12d3052e51b2f0bf398d48e31e5f9da8">authenticated</a>)
<a name="l00781"></a>00781 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga8cecfc5c5c054d2875c03e77b7be15d">TRUE</a>;
<a name="l00782"></a>00782
<a name="l00783"></a>00783 auth_identity = <a class="code" href="group__DBusAuth.html#gbfa5450530b999bcb0fabf37c414a80e">_dbus_auth_get_identity</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>);
<a name="l00784"></a>00784
<a name="l00785"></a>00785 <span class="keywordflow">if</span> (<a class="code" href="group__DBusCredentials.html#gbfd7a1f681a91b45ba2f4e7461131827">_dbus_credentials_are_anonymous</a> (auth_identity))
<a name="l00786"></a>00786 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga8cecfc5c5c054d2875c03e77b7be15d">TRUE</a>;
<a name="l00787"></a>00787 <span class="keywordflow">else</span>
<a name="l00788"></a>00788 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00789"></a>00789 }
<a name="l00790"></a>00790
<a name="l00798"></a>00798 <span class="keyword">const</span> <span class="keywordtype">char</span>*
<a name="l00799"></a><a class="code" href="group__DBusTransport.html#gc7e53868392b5e550454f47a1bc0a737">00799</a> <a class="code" href="group__DBusTransport.html#gc7e53868392b5e550454f47a1bc0a737">_dbus_transport_get_address</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport)
<a name="l00800"></a>00800 {
<a name="l00801"></a>00801 <span class="keywordflow">return</span> transport-><a class="code" href="structDBusTransport.html#586180e57d80c428fc81e579d9159cb2">address</a>;
<a name="l00802"></a>00802 }
<a name="l00803"></a>00803
<a name="l00811"></a>00811 <span class="keyword">const</span> <span class="keywordtype">char</span>*
<a name="l00812"></a><a class="code" href="group__DBusTransport.html#g920abde00e77a970330fa3fc552fe7ea">00812</a> <a class="code" href="group__DBusTransport.html#g920abde00e77a970330fa3fc552fe7ea">_dbus_transport_get_server_id</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport)
<a name="l00813"></a>00813 {
<a name="l00814"></a>00814 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#38fa70b1473eb08a6c871c7791b46d6e">is_server</a>)
<a name="l00815"></a>00815 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>;
<a name="l00816"></a>00816 <span class="keywordflow">else</span>
<a name="l00817"></a>00817 <span class="keywordflow">return</span> transport-><a class="code" href="structDBusTransport.html#aad7cb51a3e4ff2dd900ac971cc52b36">expected_guid</a>;
<a name="l00818"></a>00818 }
<a name="l00819"></a>00819
<a name="l00829"></a>00829 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a>
<a name="l00830"></a><a class="code" href="group__DBusTransport.html#g4a010098fe079eb6f201ff034d15fdff">00830</a> <a class="code" href="group__DBusTransport.html#g4a010098fe079eb6f201ff034d15fdff">_dbus_transport_handle_watch</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport,
<a name="l00831"></a>00831 <a class="code" href="structDBusWatch.html">DBusWatch</a> *watch,
<a name="l00832"></a>00832 <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> condition)
<a name="l00833"></a>00833 {
<a name="l00834"></a>00834 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a> retval;
<a name="l00835"></a>00835
<a name="l00836"></a>00836 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (transport-><a class="code" href="structDBusTransport.html#7350850a4e02a7eaa4036eb47d4778e5">vtable</a>-><a class="code" href="structDBusTransportVTable.html#d7e364d129b6921b0c7b554e29d395f5">handle_watch</a> != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00837"></a>00837
<a name="l00838"></a>00838 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#487a7375e94efba850f8344a252cfa63">disconnected</a>)
<a name="l00839"></a>00839 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga8cecfc5c5c054d2875c03e77b7be15d">TRUE</a>;
<a name="l00840"></a>00840
<a name="l00841"></a>00841 <span class="keywordflow">if</span> (<a class="code" href="group__DBusWatch.html#g91308f393d41b31babda17c83833517f">dbus_watch_get_socket</a> (watch) < 0)
<a name="l00842"></a>00842 {
<a name="l00843"></a>00843 <a class="code" href="group__DBusInternalsUtils.html#g63f2f8a068454b781f214ba596e313b4">_dbus_warn_check_failed</a> (<span class="stringliteral">"Tried to handle an invalidated watch; this watch should have been removed\n"</span>);
<a name="l00844"></a>00844 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga8cecfc5c5c054d2875c03e77b7be15d">TRUE</a>;
<a name="l00845"></a>00845 }
<a name="l00846"></a>00846
<a name="l00847"></a>00847 <a class="code" href="group__DBusWatchInternals.html#gb8f49926fe9ee56cb4ae7c1c8071cca3">_dbus_watch_sanitize_condition</a> (watch, &condition);
<a name="l00848"></a>00848
<a name="l00849"></a>00849 <a class="code" href="group__DBusTransport.html#g31d6dbc864c9ea643d72521bbb1b7c56">_dbus_transport_ref</a> (transport);
<a name="l00850"></a>00850 <a class="code" href="group__DBusWatchInternals.html#g0db8530cc53589589d67dfb35d03db61">_dbus_watch_ref</a> (watch);
<a name="l00851"></a>00851 retval = (* transport-><a class="code" href="structDBusTransport.html#7350850a4e02a7eaa4036eb47d4778e5">vtable</a>-><a class="code" href="structDBusTransportVTable.html#d7e364d129b6921b0c7b554e29d395f5">handle_watch</a>) (transport, watch, condition);
<a name="l00852"></a>00852 <a class="code" href="group__DBusWatchInternals.html#g7d27dfc13a3ccfbaa99ceab331bb46f0">_dbus_watch_unref</a> (watch);
<a name="l00853"></a>00853 <a class="code" href="group__DBusTransport.html#gb7c53c32a2320c81aae8ce4345762e73">_dbus_transport_unref</a> (transport);
<a name="l00854"></a>00854
<a name="l00855"></a>00855 <span class="keywordflow">return</span> retval;
<a name="l00856"></a>00856 }
<a name="l00857"></a>00857
<a name="l00867"></a>00867 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a>
<a name="l00868"></a><a class="code" href="group__DBusTransport.html#g9aaa3f8bf429c94d4ed180dff36c503c">00868</a> <a class="code" href="group__DBusTransport.html#g9aaa3f8bf429c94d4ed180dff36c503c">_dbus_transport_set_connection</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport,
<a name="l00869"></a>00869 <a class="code" href="structDBusConnection.html">DBusConnection</a> *connection)
<a name="l00870"></a>00870 {
<a name="l00871"></a>00871 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (transport-><a class="code" href="structDBusTransport.html#7350850a4e02a7eaa4036eb47d4778e5">vtable</a>-><a class="code" href="structDBusTransportVTable.html#039019c6859c75e7b9c3b05a38043f64">connection_set</a> != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00872"></a>00872 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (transport-><a class="code" href="structDBusTransport.html#8abdfc9327aa30550982c83b45354651">connection</a> == <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00873"></a>00873
<a name="l00874"></a>00874 transport-><a class="code" href="structDBusTransport.html#8abdfc9327aa30550982c83b45354651">connection</a> = connection;
<a name="l00875"></a>00875
<a name="l00876"></a>00876 <a class="code" href="group__DBusTransport.html#g31d6dbc864c9ea643d72521bbb1b7c56">_dbus_transport_ref</a> (transport);
<a name="l00877"></a>00877 <span class="keywordflow">if</span> (!(* transport-><a class="code" href="structDBusTransport.html#7350850a4e02a7eaa4036eb47d4778e5">vtable</a>-><a class="code" href="structDBusTransportVTable.html#039019c6859c75e7b9c3b05a38043f64">connection_set</a>) (transport))
<a name="l00878"></a>00878 transport-><a class="code" href="structDBusTransport.html#8abdfc9327aa30550982c83b45354651">connection</a> = <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>;
<a name="l00879"></a>00879 <a class="code" href="group__DBusTransport.html#gb7c53c32a2320c81aae8ce4345762e73">_dbus_transport_unref</a> (transport);
<a name="l00880"></a>00880
<a name="l00881"></a>00881 <span class="keywordflow">return</span> transport-><a class="code" href="structDBusTransport.html#8abdfc9327aa30550982c83b45354651">connection</a> != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>;
<a name="l00882"></a>00882 }
<a name="l00883"></a>00883
<a name="l00891"></a>00891 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a>
<a name="l00892"></a><a class="code" href="group__DBusTransport.html#gc58d38eb19b39774f89271fc6472e087">00892</a> <a class="code" href="group__DBusTransport.html#gc58d38eb19b39774f89271fc6472e087">_dbus_transport_get_socket_fd</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport,
<a name="l00893"></a>00893 <span class="keywordtype">int</span> *fd_p)
<a name="l00894"></a>00894 {
<a name="l00895"></a>00895 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a> retval;
<a name="l00896"></a>00896
<a name="l00897"></a>00897 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#7350850a4e02a7eaa4036eb47d4778e5">vtable</a>-><a class="code" href="structDBusTransportVTable.html#b11f6388cdbd7f5e44e52c884670bee5">get_socket_fd</a> == <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>)
<a name="l00898"></a>00898 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00899"></a>00899
<a name="l00900"></a>00900 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#487a7375e94efba850f8344a252cfa63">disconnected</a>)
<a name="l00901"></a>00901 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l00902"></a>00902
<a name="l00903"></a>00903 <a class="code" href="group__DBusTransport.html#g31d6dbc864c9ea643d72521bbb1b7c56">_dbus_transport_ref</a> (transport);
<a name="l00904"></a>00904
<a name="l00905"></a>00905 retval = (* transport-><a class="code" href="structDBusTransport.html#7350850a4e02a7eaa4036eb47d4778e5">vtable</a>-><a class="code" href="structDBusTransportVTable.html#b11f6388cdbd7f5e44e52c884670bee5">get_socket_fd</a>) (transport,
<a name="l00906"></a>00906 fd_p);
<a name="l00907"></a>00907
<a name="l00908"></a>00908 <a class="code" href="group__DBusTransport.html#gb7c53c32a2320c81aae8ce4345762e73">_dbus_transport_unref</a> (transport);
<a name="l00909"></a>00909
<a name="l00910"></a>00910 <span class="keywordflow">return</span> retval;
<a name="l00911"></a>00911 }
<a name="l00912"></a>00912
<a name="l00924"></a>00924 <span class="keywordtype">void</span>
<a name="l00925"></a><a class="code" href="group__DBusTransport.html#gc5e6d7a01debcf852b8d5a2fbc666fde">00925</a> <a class="code" href="group__DBusTransport.html#gc5e6d7a01debcf852b8d5a2fbc666fde">_dbus_transport_do_iteration</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport,
<a name="l00926"></a>00926 <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> flags,
<a name="l00927"></a>00927 <span class="keywordtype">int</span> timeout_milliseconds)
<a name="l00928"></a>00928 {
<a name="l00929"></a>00929 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (transport-><a class="code" href="structDBusTransport.html#7350850a4e02a7eaa4036eb47d4778e5">vtable</a>-><a class="code" href="structDBusTransportVTable.html#ddbd055aef5a4d243b3e7e89513d2c38">do_iteration</a> != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l00930"></a>00930
<a name="l00931"></a>00931 _dbus_verbose (<span class="stringliteral">"Transport iteration flags 0x%x timeout %d connected = %d\n"</span>,
<a name="l00932"></a>00932 flags, timeout_milliseconds, !transport-><a class="code" href="structDBusTransport.html#487a7375e94efba850f8344a252cfa63">disconnected</a>);
<a name="l00933"></a>00933
<a name="l00934"></a>00934 <span class="keywordflow">if</span> ((flags & (DBUS_ITERATION_DO_WRITING |
<a name="l00935"></a>00935 DBUS_ITERATION_DO_READING)) == 0)
<a name="l00936"></a>00936 <span class="keywordflow">return</span>; <span class="comment">/* Nothing to do */</span>
<a name="l00937"></a>00937
<a name="l00938"></a>00938 <span class="keywordflow">if</span> (transport-><a class="code" href="structDBusTransport.html#487a7375e94efba850f8344a252cfa63">disconnected</a>)
<a name="l00939"></a>00939 <span class="keywordflow">return</span>;
<a name="l00940"></a>00940
<a name="l00941"></a>00941 <a class="code" href="group__DBusTransport.html#g31d6dbc864c9ea643d72521bbb1b7c56">_dbus_transport_ref</a> (transport);
<a name="l00942"></a>00942 (* transport-><a class="code" href="structDBusTransport.html#7350850a4e02a7eaa4036eb47d4778e5">vtable</a>-><a class="code" href="structDBusTransportVTable.html#ddbd055aef5a4d243b3e7e89513d2c38">do_iteration</a>) (transport, flags,
<a name="l00943"></a>00943 timeout_milliseconds);
<a name="l00944"></a>00944 <a class="code" href="group__DBusTransport.html#gb7c53c32a2320c81aae8ce4345762e73">_dbus_transport_unref</a> (transport);
<a name="l00945"></a>00945
<a name="l00946"></a>00946 _dbus_verbose (<span class="stringliteral">"%s end\n"</span>, _DBUS_FUNCTION_NAME);
<a name="l00947"></a>00947 }
<a name="l00948"></a>00948
<a name="l00949"></a>00949 <span class="keyword">static</span> <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a>
<a name="l00950"></a>00950 recover_unused_bytes (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport)
<a name="l00951"></a>00951 {
<a name="l00952"></a>00952 <span class="keywordflow">if</span> (<a class="code" href="group__DBusAuth.html#gc6e9dc07335a6291842374d834e95ad2">_dbus_auth_needs_decoding</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>))
<a name="l00953"></a>00953 {
<a name="l00954"></a>00954 <a class="code" href="structDBusString.html">DBusString</a> plaintext;
<a name="l00955"></a>00955 <span class="keyword">const</span> <a class="code" href="structDBusString.html">DBusString</a> *encoded;
<a name="l00956"></a>00956 <a class="code" href="structDBusString.html">DBusString</a> *buffer;
<a name="l00957"></a>00957 <span class="keywordtype">int</span> orig_len;
<a name="l00958"></a>00958
<a name="l00959"></a>00959 <span class="keywordflow">if</span> (!<a class="code" href="group__DBusString.html#g348252317f7bb8ac43529972945830ae">_dbus_string_init</a> (&plaintext))
<a name="l00960"></a>00960 <span class="keywordflow">goto</span> nomem;
<a name="l00961"></a>00961
<a name="l00962"></a>00962 <a class="code" href="group__DBusAuth.html#gf9e2ab67f2ddd26eeb7deeb8b0af7817">_dbus_auth_get_unused_bytes</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>,
<a name="l00963"></a>00963 &encoded);
<a name="l00964"></a>00964
<a name="l00965"></a>00965 <span class="keywordflow">if</span> (!<a class="code" href="group__DBusAuth.html#g7eb40f71c0ede79f954bcb2c001c8502">_dbus_auth_decode_data</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>,
<a name="l00966"></a>00966 encoded, &plaintext))
<a name="l00967"></a>00967 {
<a name="l00968"></a>00968 <a class="code" href="group__DBusString.html#g781ca91acda49a834dce7d0ed0eef212">_dbus_string_free</a> (&plaintext);
<a name="l00969"></a>00969 <span class="keywordflow">goto</span> nomem;
<a name="l00970"></a>00970 }
<a name="l00971"></a>00971
<a name="l00972"></a>00972 <a class="code" href="group__DBusMessageInternals.html#ge77f064b8034189a955d5be982d2fbdb">_dbus_message_loader_get_buffer</a> (transport-><a class="code" href="structDBusTransport.html#aaba590c281236d176600016b7edab48">loader</a>,
<a name="l00973"></a>00973 &buffer);
<a name="l00974"></a>00974
<a name="l00975"></a>00975 orig_len = _dbus_string_get_length (buffer);
<a name="l00976"></a>00976
<a name="l00977"></a>00977 <span class="keywordflow">if</span> (!<a class="code" href="group__DBusString.html#gd379fce8d4ef4f7e28f81f50b46ee4c9">_dbus_string_move</a> (&plaintext, 0, buffer,
<a name="l00978"></a>00978 orig_len))
<a name="l00979"></a>00979 {
<a name="l00980"></a>00980 <a class="code" href="group__DBusString.html#g781ca91acda49a834dce7d0ed0eef212">_dbus_string_free</a> (&plaintext);
<a name="l00981"></a>00981 <span class="keywordflow">goto</span> nomem;
<a name="l00982"></a>00982 }
<a name="l00983"></a>00983
<a name="l00984"></a>00984 _dbus_verbose (<span class="stringliteral">" %d unused bytes sent to message loader\n"</span>,
<a name="l00985"></a>00985 _dbus_string_get_length (buffer) -
<a name="l00986"></a>00986 orig_len);
<a name="l00987"></a>00987
<a name="l00988"></a>00988 <a class="code" href="group__DBusMessageInternals.html#gc559604b855d0eb6f32b8c20328553cc">_dbus_message_loader_return_buffer</a> (transport-><a class="code" href="structDBusTransport.html#aaba590c281236d176600016b7edab48">loader</a>,
<a name="l00989"></a>00989 buffer,
<a name="l00990"></a>00990 _dbus_string_get_length (buffer) -
<a name="l00991"></a>00991 orig_len);
<a name="l00992"></a>00992
<a name="l00993"></a>00993 <a class="code" href="group__DBusAuth.html#gbbe8cf9e5958357c49a190ca259aa9b3">_dbus_auth_delete_unused_bytes</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>);
<a name="l00994"></a>00994
<a name="l00995"></a>00995 <a class="code" href="group__DBusString.html#g781ca91acda49a834dce7d0ed0eef212">_dbus_string_free</a> (&plaintext);
<a name="l00996"></a>00996 }
<a name="l00997"></a>00997 <span class="keywordflow">else</span>
<a name="l00998"></a>00998 {
<a name="l00999"></a>00999 <span class="keyword">const</span> <a class="code" href="structDBusString.html">DBusString</a> *bytes;
<a name="l01000"></a>01000 <a class="code" href="structDBusString.html">DBusString</a> *buffer;
<a name="l01001"></a>01001 <span class="keywordtype">int</span> orig_len;
<a name="l01002"></a>01002 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a> succeeded;
<a name="l01003"></a>01003
<a name="l01004"></a>01004 <a class="code" href="group__DBusMessageInternals.html#ge77f064b8034189a955d5be982d2fbdb">_dbus_message_loader_get_buffer</a> (transport-><a class="code" href="structDBusTransport.html#aaba590c281236d176600016b7edab48">loader</a>,
<a name="l01005"></a>01005 &buffer);
<a name="l01006"></a>01006
<a name="l01007"></a>01007 orig_len = _dbus_string_get_length (buffer);
<a name="l01008"></a>01008
<a name="l01009"></a>01009 <a class="code" href="group__DBusAuth.html#gf9e2ab67f2ddd26eeb7deeb8b0af7817">_dbus_auth_get_unused_bytes</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>,
<a name="l01010"></a>01010 &bytes);
<a name="l01011"></a>01011
<a name="l01012"></a>01012 succeeded = <a class="code" href="group__DBusMacros.html#ga8cecfc5c5c054d2875c03e77b7be15d">TRUE</a>;
<a name="l01013"></a>01013 <span class="keywordflow">if</span> (!<a class="code" href="group__DBusString.html#g3c10f0d1bcaa3b450025b9c6a8b901d7">_dbus_string_copy</a> (bytes, 0, buffer, _dbus_string_get_length (buffer)))
<a name="l01014"></a>01014 succeeded = <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l01015"></a>01015
<a name="l01016"></a>01016 _dbus_verbose (<span class="stringliteral">" %d unused bytes sent to message loader\n"</span>,
<a name="l01017"></a>01017 _dbus_string_get_length (buffer) -
<a name="l01018"></a>01018 orig_len);
<a name="l01019"></a>01019
<a name="l01020"></a>01020 <a class="code" href="group__DBusMessageInternals.html#gc559604b855d0eb6f32b8c20328553cc">_dbus_message_loader_return_buffer</a> (transport-><a class="code" href="structDBusTransport.html#aaba590c281236d176600016b7edab48">loader</a>,
<a name="l01021"></a>01021 buffer,
<a name="l01022"></a>01022 _dbus_string_get_length (buffer) -
<a name="l01023"></a>01023 orig_len);
<a name="l01024"></a>01024
<a name="l01025"></a>01025 <span class="keywordflow">if</span> (succeeded)
<a name="l01026"></a>01026 <a class="code" href="group__DBusAuth.html#gbbe8cf9e5958357c49a190ca259aa9b3">_dbus_auth_delete_unused_bytes</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>);
<a name="l01027"></a>01027 <span class="keywordflow">else</span>
<a name="l01028"></a>01028 <span class="keywordflow">goto</span> nomem;
<a name="l01029"></a>01029 }
<a name="l01030"></a>01030
<a name="l01031"></a>01031 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga8cecfc5c5c054d2875c03e77b7be15d">TRUE</a>;
<a name="l01032"></a>01032
<a name="l01033"></a>01033 nomem:
<a name="l01034"></a>01034 _dbus_verbose (<span class="stringliteral">"Not enough memory to transfer unused bytes from auth conversation\n"</span>);
<a name="l01035"></a>01035 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l01036"></a>01036 }
<a name="l01037"></a>01037
<a name="l01045"></a>01045 <a class="code" href="group__DBusConnection.html#gbf250a32ff740b2a8c99136e0142d8d2">DBusDispatchStatus</a>
<a name="l01046"></a><a class="code" href="group__DBusTransport.html#g32153a834758b5a88d7bde8f7a205c71">01046</a> <a class="code" href="group__DBusTransport.html#g32153a834758b5a88d7bde8f7a205c71">_dbus_transport_get_dispatch_status</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport)
<a name="l01047"></a>01047 {
<a name="l01048"></a>01048 <span class="keywordflow">if</span> (<a class="code" href="group__DBusResources.html#g817729ebefbd486f816b24a1fefc889d">_dbus_counter_get_value</a> (transport-><a class="code" href="structDBusTransport.html#991a23c90978c3a35cb1f50f99daee5f">live_messages_size</a>) >= transport-><a class="code" href="structDBusTransport.html#23e0925741fc1c4ba3a369bac4bca4b6">max_live_messages_size</a>)
<a name="l01049"></a>01049 <span class="keywordflow">return</span> <a class="code" href="group__DBusConnection.html#ggbf250a32ff740b2a8c99136e0142d8d2cb9bb9daa90f520d5fc9e84de3c5f017">DBUS_DISPATCH_COMPLETE</a>; <span class="comment">/* complete for now */</span>
<a name="l01050"></a>01050
<a name="l01051"></a>01051 <span class="keywordflow">if</span> (!<a class="code" href="group__DBusTransport.html#g251ff6d644e1dc6d46c58705e6dcc787">_dbus_transport_get_is_authenticated</a> (transport))
<a name="l01052"></a>01052 {
<a name="l01053"></a>01053 <span class="keywordflow">if</span> (<a class="code" href="group__DBusAuth.html#g097c71f7f20b749275c6b31cd98623f5">_dbus_auth_do_work</a> (transport->auth) ==
<a name="l01054"></a>01054 DBUS_AUTH_STATE_WAITING_FOR_MEMORY)
<a name="l01055"></a>01055 <span class="keywordflow">return</span> <a class="code" href="group__DBusConnection.html#ggbf250a32ff740b2a8c99136e0142d8d25af20a035f29cfa67fb8d69fb693b685">DBUS_DISPATCH_NEED_MEMORY</a>;
<a name="l01056"></a>01056 <span class="keywordflow">else</span> <span class="keywordflow">if</span> (!<a class="code" href="group__DBusTransport.html#g251ff6d644e1dc6d46c58705e6dcc787">_dbus_transport_get_is_authenticated</a> (transport))
<a name="l01057"></a>01057 <span class="keywordflow">return</span> <a class="code" href="group__DBusConnection.html#ggbf250a32ff740b2a8c99136e0142d8d2cb9bb9daa90f520d5fc9e84de3c5f017">DBUS_DISPATCH_COMPLETE</a>;
<a name="l01058"></a>01058 }
<a name="l01059"></a>01059
<a name="l01060"></a>01060 <span class="keywordflow">if</span> (!transport->unused_bytes_recovered &&
<a name="l01061"></a>01061 !recover_unused_bytes (transport))
<a name="l01062"></a>01062 <span class="keywordflow">return</span> <a class="code" href="group__DBusConnection.html#ggbf250a32ff740b2a8c99136e0142d8d25af20a035f29cfa67fb8d69fb693b685">DBUS_DISPATCH_NEED_MEMORY</a>;
<a name="l01063"></a>01063
<a name="l01064"></a>01064 transport->unused_bytes_recovered = <a class="code" href="group__DBusMacros.html#ga8cecfc5c5c054d2875c03e77b7be15d">TRUE</a>;
<a name="l01065"></a>01065
<a name="l01066"></a>01066 <span class="keywordflow">if</span> (!<a class="code" href="group__DBusMessageInternals.html#gf55885371a6d022ec94c79bd7138923f">_dbus_message_loader_queue_messages</a> (transport->loader))
<a name="l01067"></a>01067 <span class="keywordflow">return</span> <a class="code" href="group__DBusConnection.html#ggbf250a32ff740b2a8c99136e0142d8d25af20a035f29cfa67fb8d69fb693b685">DBUS_DISPATCH_NEED_MEMORY</a>;
<a name="l01068"></a>01068
<a name="l01069"></a>01069 <span class="keywordflow">if</span> (<a class="code" href="group__DBusMessageInternals.html#g66674354acdd09ca6e11d600b34bdd5f">_dbus_message_loader_peek_message</a> (transport->loader) != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>)
<a name="l01070"></a>01070 <span class="keywordflow">return</span> <a class="code" href="group__DBusConnection.html#ggbf250a32ff740b2a8c99136e0142d8d2df8e8a594ab338cb9cf7855b19e37e93">DBUS_DISPATCH_DATA_REMAINS</a>;
<a name="l01071"></a>01071 <span class="keywordflow">else</span>
<a name="l01072"></a>01072 <span class="keywordflow">return</span> <a class="code" href="group__DBusConnection.html#ggbf250a32ff740b2a8c99136e0142d8d2cb9bb9daa90f520d5fc9e84de3c5f017">DBUS_DISPATCH_COMPLETE</a>;
<a name="l01073"></a>01073 }
<a name="l01074"></a>01074
<a name="l01083"></a>01083 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a>
<a name="l01084"></a><a class="code" href="group__DBusTransport.html#g4046f36ecbdb75219f2b667f92e75a2b">01084</a> <a class="code" href="group__DBusTransport.html#g4046f36ecbdb75219f2b667f92e75a2b">_dbus_transport_queue_messages</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport)
<a name="l01085"></a>01085 {
<a name="l01086"></a>01086 <a class="code" href="group__DBusConnection.html#gbf250a32ff740b2a8c99136e0142d8d2">DBusDispatchStatus</a> status;
<a name="l01087"></a>01087
<a name="l01088"></a>01088 <span class="preprocessor">#if 0</span>
<a name="l01089"></a>01089 <span class="preprocessor"></span> _dbus_verbose (<span class="stringliteral">"_dbus_transport_queue_messages()\n"</span>);
<a name="l01090"></a>01090 <span class="preprocessor">#endif</span>
<a name="l01091"></a>01091 <span class="preprocessor"></span>
<a name="l01092"></a>01092 <span class="comment">/* Queue any messages */</span>
<a name="l01093"></a>01093 <span class="keywordflow">while</span> ((status = <a class="code" href="group__DBusTransport.html#g32153a834758b5a88d7bde8f7a205c71">_dbus_transport_get_dispatch_status</a> (transport)) == <a class="code" href="group__DBusConnection.html#ggbf250a32ff740b2a8c99136e0142d8d2df8e8a594ab338cb9cf7855b19e37e93">DBUS_DISPATCH_DATA_REMAINS</a>)
<a name="l01094"></a>01094 {
<a name="l01095"></a>01095 <a class="code" href="structDBusMessage.html">DBusMessage</a> *message;
<a name="l01096"></a>01096 <a class="code" href="structDBusList.html">DBusList</a> *link;
<a name="l01097"></a>01097
<a name="l01098"></a>01098 link = <a class="code" href="group__DBusMessageInternals.html#g6ec3c1ad57340f717a47d79092122d04">_dbus_message_loader_pop_message_link</a> (transport->loader);
<a name="l01099"></a>01099 <a class="code" href="group__DBusInternalsUtils.html#g129c6c03f011cdc171934d5d386cc797">_dbus_assert</a> (link != <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>);
<a name="l01100"></a>01100
<a name="l01101"></a>01101 message = link-><a class="code" href="structDBusList.html#29ab457bcf9092252bb0c4282c727055">data</a>;
<a name="l01102"></a>01102
<a name="l01103"></a>01103 _dbus_verbose (<span class="stringliteral">"queueing received message %p\n"</span>, message);
<a name="l01104"></a>01104
<a name="l01105"></a>01105 <span class="keywordflow">if</span> (!<a class="code" href="group__DBusMessageInternals.html#g563ac5990a24808a952b117894e6c894">_dbus_message_add_size_counter</a> (message, transport->live_messages_size))
<a name="l01106"></a>01106 {
<a name="l01107"></a>01107 <a class="code" href="group__DBusMessageInternals.html#g71b290eb470a55217971fcd6851fc40c">_dbus_message_loader_putback_message_link</a> (transport->loader,
<a name="l01108"></a>01108 link);
<a name="l01109"></a>01109 status = <a class="code" href="group__DBusConnection.html#ggbf250a32ff740b2a8c99136e0142d8d25af20a035f29cfa67fb8d69fb693b685">DBUS_DISPATCH_NEED_MEMORY</a>;
<a name="l01110"></a>01110 <span class="keywordflow">break</span>;
<a name="l01111"></a>01111 }
<a name="l01112"></a>01112 <span class="keywordflow">else</span>
<a name="l01113"></a>01113 {
<a name="l01114"></a>01114 <span class="comment">/* pass ownership of link and message ref to connection */</span>
<a name="l01115"></a>01115 <a class="code" href="group__DBusConnectionInternals.html#gc1b92eba0aeee294dc28fcc260c9b749">_dbus_connection_queue_received_message_link</a> (transport->connection,
<a name="l01116"></a>01116 link);
<a name="l01117"></a>01117 }
<a name="l01118"></a>01118 }
<a name="l01119"></a>01119
<a name="l01120"></a>01120 <span class="keywordflow">if</span> (<a class="code" href="group__DBusMessageInternals.html#g38da52ac9344b00df530098bdd9a3842">_dbus_message_loader_get_is_corrupted</a> (transport->loader))
<a name="l01121"></a>01121 {
<a name="l01122"></a>01122 _dbus_verbose (<span class="stringliteral">"Corrupted message stream, disconnecting\n"</span>);
<a name="l01123"></a>01123 <a class="code" href="group__DBusTransport.html#g78444dd8f6c6d6b429433ad81c3e318a">_dbus_transport_disconnect</a> (transport);
<a name="l01124"></a>01124 }
<a name="l01125"></a>01125
<a name="l01126"></a>01126 <span class="keywordflow">return</span> status != <a class="code" href="group__DBusConnection.html#ggbf250a32ff740b2a8c99136e0142d8d25af20a035f29cfa67fb8d69fb693b685">DBUS_DISPATCH_NEED_MEMORY</a>;
<a name="l01127"></a>01127 }
<a name="l01128"></a>01128
<a name="l01135"></a>01135 <span class="keywordtype">void</span>
<a name="l01136"></a><a class="code" href="group__DBusTransport.html#g03ea875260e71f59af708146cabf95ab">01136</a> <a class="code" href="group__DBusTransport.html#g03ea875260e71f59af708146cabf95ab">_dbus_transport_set_max_message_size</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport,
<a name="l01137"></a>01137 <span class="keywordtype">long</span> size)
<a name="l01138"></a>01138 {
<a name="l01139"></a>01139 <a class="code" href="group__DBusMessageInternals.html#g031623c6235f98801cab3e53f0a5f757">_dbus_message_loader_set_max_message_size</a> (transport-><a class="code" href="structDBusTransport.html#aaba590c281236d176600016b7edab48">loader</a>, size);
<a name="l01140"></a>01140 }
<a name="l01141"></a>01141
<a name="l01148"></a>01148 <span class="keywordtype">long</span>
<a name="l01149"></a><a class="code" href="group__DBusTransport.html#ge36d2a90bad6ef13c0379fa9864ff68e">01149</a> <a class="code" href="group__DBusTransport.html#ge36d2a90bad6ef13c0379fa9864ff68e">_dbus_transport_get_max_message_size</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport)
<a name="l01150"></a>01150 {
<a name="l01151"></a>01151 <span class="keywordflow">return</span> <a class="code" href="group__DBusMessageInternals.html#gdd76a4b7191465f2dcb8e6b56b717961">_dbus_message_loader_get_max_message_size</a> (transport-><a class="code" href="structDBusTransport.html#aaba590c281236d176600016b7edab48">loader</a>);
<a name="l01152"></a>01152 }
<a name="l01153"></a>01153
<a name="l01160"></a>01160 <span class="keywordtype">void</span>
<a name="l01161"></a><a class="code" href="group__DBusTransport.html#g08e0368732df5f4e58a2c838fe4484f6">01161</a> <a class="code" href="group__DBusTransport.html#g08e0368732df5f4e58a2c838fe4484f6">_dbus_transport_set_max_received_size</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport,
<a name="l01162"></a>01162 <span class="keywordtype">long</span> size)
<a name="l01163"></a>01163 {
<a name="l01164"></a>01164 transport-><a class="code" href="structDBusTransport.html#23e0925741fc1c4ba3a369bac4bca4b6">max_live_messages_size</a> = size;
<a name="l01165"></a>01165 <a class="code" href="group__DBusResources.html#gdf751ffe6ca8c3f81a89df70fc9c93d0">_dbus_counter_set_notify</a> (transport-><a class="code" href="structDBusTransport.html#991a23c90978c3a35cb1f50f99daee5f">live_messages_size</a>,
<a name="l01166"></a>01166 transport-><a class="code" href="structDBusTransport.html#23e0925741fc1c4ba3a369bac4bca4b6">max_live_messages_size</a>,
<a name="l01167"></a>01167 live_messages_size_notify,
<a name="l01168"></a>01168 transport);
<a name="l01169"></a>01169 }
<a name="l01170"></a>01170
<a name="l01171"></a>01171
<a name="l01178"></a>01178 <span class="keywordtype">long</span>
<a name="l01179"></a><a class="code" href="group__DBusTransport.html#g8992b33d9060a103bd38705462a0ea96">01179</a> <a class="code" href="group__DBusTransport.html#g8992b33d9060a103bd38705462a0ea96">_dbus_transport_get_max_received_size</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport)
<a name="l01180"></a>01180 {
<a name="l01181"></a>01181 <span class="keywordflow">return</span> transport-><a class="code" href="structDBusTransport.html#23e0925741fc1c4ba3a369bac4bca4b6">max_live_messages_size</a>;
<a name="l01182"></a>01182 }
<a name="l01183"></a>01183
<a name="l01191"></a>01191 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a>
<a name="l01192"></a><a class="code" href="group__DBusTransport.html#gf3c4a47f73bd584a9fda1e5e7a825da9">01192</a> <a class="code" href="group__DBusTransport.html#gf3c4a47f73bd584a9fda1e5e7a825da9">_dbus_transport_get_unix_user</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport,
<a name="l01193"></a>01193 <span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> *uid)
<a name="l01194"></a>01194 {
<a name="l01195"></a>01195 <a class="code" href="structDBusCredentials.html">DBusCredentials</a> *auth_identity;
<a name="l01196"></a>01196
<a name="l01197"></a>01197 *uid = <a class="code" href="group__DBusInternalsUtils.html#gfe869e3145b7e32c4fb6a6741c9fc78e">_DBUS_INT32_MAX</a>; <span class="comment">/* better than some root or system user in</span>
<a name="l01198"></a>01198 <span class="comment"> * case of bugs in the caller. Caller should</span>
<a name="l01199"></a>01199 <span class="comment"> * never use this value on purpose, however.</span>
<a name="l01200"></a>01200 <span class="comment"> */</span>
<a name="l01201"></a>01201
<a name="l01202"></a>01202 <span class="keywordflow">if</span> (!transport-><a class="code" href="structDBusTransport.html#12d3052e51b2f0bf398d48e31e5f9da8">authenticated</a>)
<a name="l01203"></a>01203 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l01204"></a>01204
<a name="l01205"></a>01205 auth_identity = <a class="code" href="group__DBusAuth.html#gbfa5450530b999bcb0fabf37c414a80e">_dbus_auth_get_identity</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>);
<a name="l01206"></a>01206
<a name="l01207"></a>01207 <span class="keywordflow">if</span> (<a class="code" href="group__DBusCredentials.html#g0fb8d13878e126ccc243c4a30fd8598c">_dbus_credentials_include</a> (auth_identity,
<a name="l01208"></a>01208 DBUS_CREDENTIAL_UNIX_USER_ID))
<a name="l01209"></a>01209 {
<a name="l01210"></a>01210 *uid = <a class="code" href="group__DBusCredentials.html#g462892f995f2932bf0eb3b843407e6d5">_dbus_credentials_get_unix_uid</a> (auth_identity);
<a name="l01211"></a>01211 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga8cecfc5c5c054d2875c03e77b7be15d">TRUE</a>;
<a name="l01212"></a>01212 }
<a name="l01213"></a>01213 <span class="keywordflow">else</span>
<a name="l01214"></a>01214 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l01215"></a>01215 }
<a name="l01216"></a>01216
<a name="l01224"></a>01224 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a>
<a name="l01225"></a><a class="code" href="group__DBusTransport.html#ge66bc81abe904a4b3ab32d8920c8fe1e">01225</a> <a class="code" href="group__DBusTransport.html#ge66bc81abe904a4b3ab32d8920c8fe1e">_dbus_transport_get_unix_process_id</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport,
<a name="l01226"></a>01226 <span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> *pid)
<a name="l01227"></a>01227 {
<a name="l01228"></a>01228 <a class="code" href="structDBusCredentials.html">DBusCredentials</a> *auth_identity;
<a name="l01229"></a>01229
<a name="l01230"></a>01230 *pid = <a class="code" href="group__DBusSysdeps.html#g4eb5f05dd6ad89caa4b0340e1cf0b8d9">DBUS_PID_UNSET</a>; <span class="comment">/* Caller should never use this value on purpose,</span>
<a name="l01231"></a>01231 <span class="comment"> * but we set it to a safe number, INT_MAX,</span>
<a name="l01232"></a>01232 <span class="comment"> * just to root out possible bugs in bad callers.</span>
<a name="l01233"></a>01233 <span class="comment"> */</span>
<a name="l01234"></a>01234
<a name="l01235"></a>01235 <span class="keywordflow">if</span> (!transport-><a class="code" href="structDBusTransport.html#12d3052e51b2f0bf398d48e31e5f9da8">authenticated</a>)
<a name="l01236"></a>01236 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l01237"></a>01237
<a name="l01238"></a>01238 auth_identity = <a class="code" href="group__DBusAuth.html#gbfa5450530b999bcb0fabf37c414a80e">_dbus_auth_get_identity</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>);
<a name="l01239"></a>01239
<a name="l01240"></a>01240 <span class="keywordflow">if</span> (<a class="code" href="group__DBusCredentials.html#g0fb8d13878e126ccc243c4a30fd8598c">_dbus_credentials_include</a> (auth_identity,
<a name="l01241"></a>01241 DBUS_CREDENTIAL_UNIX_PROCESS_ID))
<a name="l01242"></a>01242 {
<a name="l01243"></a>01243 *pid = <a class="code" href="group__DBusCredentials.html#gbfeac1dce53994487186d97c934bc486">_dbus_credentials_get_unix_pid</a> (auth_identity);
<a name="l01244"></a>01244 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga8cecfc5c5c054d2875c03e77b7be15d">TRUE</a>;
<a name="l01245"></a>01245 }
<a name="l01246"></a>01246 <span class="keywordflow">else</span>
<a name="l01247"></a>01247 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l01248"></a>01248 }
<a name="l01249"></a>01249
<a name="l01260"></a>01260 <span class="keywordtype">void</span>
<a name="l01261"></a><a class="code" href="group__DBusTransport.html#g9f0ab472678a107c2ebe7f1da0754c44">01261</a> <a class="code" href="group__DBusTransport.html#g9f0ab472678a107c2ebe7f1da0754c44">_dbus_transport_set_unix_user_function</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport,
<a name="l01262"></a>01262 <a class="code" href="group__DBusConnection.html#g141b80629859a4c154c793f08c33d687">DBusAllowUnixUserFunction</a> function,
<a name="l01263"></a>01263 <span class="keywordtype">void</span> *data,
<a name="l01264"></a>01264 <a class="code" href="group__DBusMemory.html#g8792ec2b2b8626ca28022faf51ec415a">DBusFreeFunction</a> free_data_function,
<a name="l01265"></a>01265 <span class="keywordtype">void</span> **old_data,
<a name="l01266"></a>01266 <a class="code" href="group__DBusMemory.html#g8792ec2b2b8626ca28022faf51ec415a">DBusFreeFunction</a> *old_free_data_function)
<a name="l01267"></a>01267 {
<a name="l01268"></a>01268 *old_data = transport-><a class="code" href="structDBusTransport.html#7df35abee6aeef69eff659d65dd430f4">unix_user_data</a>;
<a name="l01269"></a>01269 *old_free_data_function = transport-><a class="code" href="structDBusTransport.html#754f10d16c06f373464fe6bf88a15cdd">free_unix_user_data</a>;
<a name="l01270"></a>01270
<a name="l01271"></a>01271 transport-><a class="code" href="structDBusTransport.html#c83be11f3497da6a21aed51782cd68d0">unix_user_function</a> = function;
<a name="l01272"></a>01272 transport-><a class="code" href="structDBusTransport.html#7df35abee6aeef69eff659d65dd430f4">unix_user_data</a> = data;
<a name="l01273"></a>01273 transport-><a class="code" href="structDBusTransport.html#754f10d16c06f373464fe6bf88a15cdd">free_unix_user_data</a> = free_data_function;
<a name="l01274"></a>01274 }
<a name="l01275"></a>01275
<a name="l01283"></a>01283 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a>
<a name="l01284"></a><a class="code" href="group__DBusTransport.html#g3f4f4ce9eaef18567fd21f5c6a1fde99">01284</a> <a class="code" href="group__DBusTransport.html#g3f4f4ce9eaef18567fd21f5c6a1fde99">_dbus_transport_get_windows_user</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport,
<a name="l01285"></a>01285 <span class="keywordtype">char</span> **windows_sid_p)
<a name="l01286"></a>01286 {
<a name="l01287"></a>01287 <a class="code" href="structDBusCredentials.html">DBusCredentials</a> *auth_identity;
<a name="l01288"></a>01288
<a name="l01289"></a>01289 *windows_sid_p = <a class="code" href="group__DBusMacros.html#g070d2ce7b6bb7e5c05602aa8c308d0c4">NULL</a>;
<a name="l01290"></a>01290
<a name="l01291"></a>01291 <span class="keywordflow">if</span> (!transport-><a class="code" href="structDBusTransport.html#12d3052e51b2f0bf398d48e31e5f9da8">authenticated</a>)
<a name="l01292"></a>01292 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l01293"></a>01293
<a name="l01294"></a>01294 auth_identity = <a class="code" href="group__DBusAuth.html#gbfa5450530b999bcb0fabf37c414a80e">_dbus_auth_get_identity</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>);
<a name="l01295"></a>01295
<a name="l01296"></a>01296 <span class="keywordflow">if</span> (<a class="code" href="group__DBusCredentials.html#g0fb8d13878e126ccc243c4a30fd8598c">_dbus_credentials_include</a> (auth_identity,
<a name="l01297"></a>01297 DBUS_CREDENTIAL_WINDOWS_SID))
<a name="l01298"></a>01298 {
<a name="l01299"></a>01299 <span class="comment">/* If no memory, we are supposed to return TRUE and set NULL */</span>
<a name="l01300"></a>01300 *windows_sid_p = <a class="code" href="group__DBusInternalsUtils.html#g9d00d77f6595b9d7ac1baf59d44bf58c">_dbus_strdup</a> (<a class="code" href="group__DBusCredentials.html#g53680e02140559fb36efeec68d398ac0">_dbus_credentials_get_windows_sid</a> (auth_identity));
<a name="l01301"></a>01301
<a name="l01302"></a>01302 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga8cecfc5c5c054d2875c03e77b7be15d">TRUE</a>;
<a name="l01303"></a>01303 }
<a name="l01304"></a>01304 <span class="keywordflow">else</span>
<a name="l01305"></a>01305 <span class="keywordflow">return</span> <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l01306"></a>01306 }
<a name="l01307"></a>01307
<a name="l01319"></a>01319 <span class="keywordtype">void</span>
<a name="l01320"></a><a class="code" href="group__DBusTransport.html#gdbf528ef41efde73d0bc386d10b7f5b1">01320</a> <a class="code" href="group__DBusTransport.html#gdbf528ef41efde73d0bc386d10b7f5b1">_dbus_transport_set_windows_user_function</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport,
<a name="l01321"></a>01321 <a class="code" href="group__DBusConnection.html#gf5c1e751b33a480c33f9141ad3ac75d9">DBusAllowWindowsUserFunction</a> function,
<a name="l01322"></a>01322 <span class="keywordtype">void</span> *data,
<a name="l01323"></a>01323 <a class="code" href="group__DBusMemory.html#g8792ec2b2b8626ca28022faf51ec415a">DBusFreeFunction</a> free_data_function,
<a name="l01324"></a>01324 <span class="keywordtype">void</span> **old_data,
<a name="l01325"></a>01325 <a class="code" href="group__DBusMemory.html#g8792ec2b2b8626ca28022faf51ec415a">DBusFreeFunction</a> *old_free_data_function)
<a name="l01326"></a>01326 {
<a name="l01327"></a>01327 *old_data = transport-><a class="code" href="structDBusTransport.html#333c4300fe345d25e9dcb828d20baff7">windows_user_data</a>;
<a name="l01328"></a>01328 *old_free_data_function = transport-><a class="code" href="structDBusTransport.html#ab0e5248bd01f31ac4dcdab3c3b7b570">free_windows_user_data</a>;
<a name="l01329"></a>01329
<a name="l01330"></a>01330 transport-><a class="code" href="structDBusTransport.html#17403591c2a1d936be5ed13a36e6416a">windows_user_function</a> = function;
<a name="l01331"></a>01331 transport-><a class="code" href="structDBusTransport.html#333c4300fe345d25e9dcb828d20baff7">windows_user_data</a> = data;
<a name="l01332"></a>01332 transport-><a class="code" href="structDBusTransport.html#ab0e5248bd01f31ac4dcdab3c3b7b570">free_windows_user_data</a> = free_data_function;
<a name="l01333"></a>01333 }
<a name="l01334"></a>01334
<a name="l01343"></a>01343 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a>
<a name="l01344"></a><a class="code" href="group__DBusTransport.html#g345827326824547201e8c517474af135">01344</a> <a class="code" href="group__DBusTransport.html#g345827326824547201e8c517474af135">_dbus_transport_set_auth_mechanisms</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport,
<a name="l01345"></a>01345 <span class="keyword">const</span> <span class="keywordtype">char</span> **mechanisms)
<a name="l01346"></a>01346 {
<a name="l01347"></a>01347 <span class="keywordflow">return</span> <a class="code" href="group__DBusAuth.html#g9454e2c512b4e2ea54d47cff6acaa4db">_dbus_auth_set_mechanisms</a> (transport-><a class="code" href="structDBusTransport.html#cf71c91312f325be13ce6c09298b1eb8">auth</a>, mechanisms);
<a name="l01348"></a>01348 }
<a name="l01349"></a>01349
<a name="l01356"></a>01356 <span class="keywordtype">void</span>
<a name="l01357"></a><a class="code" href="group__DBusTransport.html#g5f4bd7eb5621003595b75cb8033463cd">01357</a> <a class="code" href="group__DBusTransport.html#g5f4bd7eb5621003595b75cb8033463cd">_dbus_transport_set_allow_anonymous</a> (<a class="code" href="structDBusTransport.html">DBusTransport</a> *transport,
<a name="l01358"></a>01358 <a class="code" href="group__DBusTypes.html#g39c9cb0f3a2a8ad6f55cc4855d035349">dbus_bool_t</a> value)
<a name="l01359"></a>01359 {
<a name="l01360"></a>01360 transport-><a class="code" href="structDBusTransport.html#30a82ca7826ef4735a5caa4c921ec014">allow_anonymous</a> = value != <a class="code" href="group__DBusMacros.html#ga93f0eb578d23995850d61f7d61c55c1">FALSE</a>;
<a name="l01361"></a>01361 }
<a name="l01362"></a>01362
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Dec 14 22:26:13 2009 for D-Bus by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address>
</body>
</html>