AW: Session Bus vs. System Bus

Jehne, Dennis jehne at 4com.de
Wed Jul 12 07:35:44 PDT 2006


 
Hello all, hello Havoc,
Many thanks for the rebuild hint.
I´ve done that and the error is gone. 
But as you wrote, I got another error now unfortunately and I would like to explain this as some strange stuff happens.
	
After starting the system bus 
[root at localhost tools]# dbus-daemon-1 --system)
I start dbus-monitor again (in a different shell/session) and get the error

[root at localhost tools]# ./dbus-monitor --system
Failed to open connection to system message bus: No reply within specified time

I have found a mail in the archive (http://lists.freedesktop.org/archives/dbus/2006-June/005052.html) and I have tried this out.

I have executed in my shell the first line "dbus-daemon --system --print-address >/tmp/output 2>&1 &" and did a tail on the output file.
Then I have set the "DBUS_SESSION_BUS_ADDRESS=[above address] bash" in the same shell where I have started the system bus and started dbus-monitor in a different shell which was already open. 
Guess what, dbus-monitor started and printed out first infos. 

As I have started in my first attempt "dbus-daemon-1 --system" instead of "dbus-daemon --system" as written in the mail, I guess my problem lies in the "..daemon-1". This seems to be the daemon coming with the rpm/dep as far as I underastand it. And as this daemon uses a different conf file, I believe this explains the error. Here is my output:

[root at localhost tools]# ps aux | grep bus
root      2643  0.0  0.1  4616  620 pts/0    R+   14:02   0:00 grep bus
[root at localhost tools]# dbus-daemon --system --print-address >/tmp/output 2>&1 &
[1] 2644
[root at localhost tools]# tail /tmp/output
unix:path=/var/run/dbus/system_bus_socket,guid=0be5b444d9a6cb253819a379a8daa900
[1]+  Done                    dbus-daemon --system --print-address >/tmp/output 2>&1
[root at localhost tools]# ps aux | grep bus
501       2645  0.0  0.2  3168  948 ?        Ss   14:03   0:00 dbus-daemon --system --print-address
root      2648  0.0  0.1  5276  620 pts/0    R+   14:03   0:00 grep bus
[root at localhost tools]# DBUS_SESSION_BUS_ADDRESS=unix:path=/var/run/dbus/system_bus_socket,guid=0be5b444d9a6cb253819a379a8daa900 bash
[root at localhost tools]# 
[root at localhost tools]# echo $DBUS_SESSION_BUS_ADDRESS 
unix:path=/var/run/dbus/system_bus_socket,guid=0be5b444d9a6cb253819a379a8daa900
[root at localhost tools]# 
[root at localhost tools]# ./dbus-monitor --system
signal sender=org.freedesktop.DBus -> dest=:1.0 interface=org.freedesktop.DBus; member=NameAcquired
   string ":1.0"
......
This tells me that is seems to be crucial to set and export (?) the env var DBUS_SESSION_BUS_ADDRESS after the system bus has started. Is that right? 

Then I went to lunch and tried this stuff exactly again and now I wasn´t able to connect dbus_monitor again to the system bus. I got again the "No reply within specified time" error. Well I have searched if there was anything I made different but could not find something. What I have tried then was, I did change the <user> entry in the session.conf from "messagebus" to "root" and it works again. 

But I´m wondering why it was working in the first attempt with the messagebus user 501. I have also started the monitor as root. (see above) Can you explain this? What did I wrong?

If setting the env var DBUS_SESSION_BUS_ADDRESS is so important, is there a script doing all this alltogether during startup? I have found dbus-launch but haven´t tried it out yet. Is that maybe a way where I just start it and it does all I do at the mometn step by step? Or do I need to write one myself? I also get the info that the message.pid still excists adn I need to kill it. This would be also a step to automate.

Ok, so then I have started my testapp which calls "dbus_details->conn = dbus_bus_get(DBUS_BUS_SYSTEM, &err);" and I get the following:

[root at localhost debug]# ./dbusPing
Syntax: dbus-Ping [name msgSize Msg]
[root at localhost debug]# ./dbusPing test.dj.bus 500 hello
Read the following: argc <4>
Name <test.dj.bus> 
MsgSize <500>
Msg<hello>
DBus: dbus_bus_get OK
Name Error (Connection ":1.1" is not allowed to own the service "test.dj.bus" due to security policies in the configuration file)
DBus: dbus_bus_request_name NOT OK
MAIN - NACH get_bus
exit in get_bus
[root at localhost debug]# ./dbusPing org.freedesktop.DBus 500 hello           
Read the following: argc <4>
Name <org.freedesktop.DBus> 
MsgSize <500>
Msg<hello>
DBus: dbus_bus_get OK
Name Error (Connection ":1.2" is not allowed to own the service "org.freedesktop.DBus" due to security policies in the configuration file)
DBus: dbus_bus_request_name NOT OK
MAIN - NACH get_bus
exit in get_bus
[root at localhost debug]#


The system bus uses the /usr/local/etc/dbus-1/system.conf per default. I have found another thread which says that one should replace the policy part of the system.conf with the one in the session.conf first of all to allow everything. It seems to be some policy issue. Ok, I did that and my app could connect to the system bus so far.

But what do I need to specify in the policy that my testapps are allowed to own selfmade services?
The policy out of the session.conf allows everything, so I might start "firewalling" from scratch and try out different policy entries. Or do you have a better way for me?

Thanks a lot for your help in advance and best regards,
Dennis Jehne



-----Ursprüngliche Nachricht-----
Von: Havoc Pennington [mailto:hp at redhat.com] 
Gesendet: Mittwoch, 12. Juli 2006 07:14
An: Jehne, Dennis
Cc: dbus at lists.freedesktop.org
Betreff: Re: Session Bus vs. System Bus

Jehne, Dennis wrote:
> [root at localhost tools]# ./dbus-monitor --system Failed to open 
> connection to system message bus: Failed to connect to socket 
> /usr/local/var/run/dbus/system_bus_socket: No such file or directory

If you fully rebuilt dbus with --localstatedir=/var there's no way you'll get this error... if you're still getting it after that, then something is not rebuilt, or not reinstalled, or not restarted, or not deleted.

If you're getting a different error now then let us know what it is.

Replacing the system bus on a system that already has an rpm/deb packaged system bus I would consider a plenty advanced thing to do though... it's not something I'd mess with if you can help it. If possible, replacing the rpm/deb with a new one would be a lot better than trying to somehow overwrite the rpm/deb stuff with a tarball build.

Havoc
-------------- next part --------------
[root at localhost dbus-1]# strace -f -s 100 dbus-daemon-1 --system
execve("/usr/bin/dbus-daemon-1", ["dbus-daemon-1", "--system"], [/* 25 vars */]) = 0
uname({sys="Linux", node="localhost.localdomain", ...}) = 0
brk(0)                                  = 0x9753000
access("/etc/ld.so.preload", R_OK)      = -1 ENOENT (No such file or directory)
open("/usr/local/lib/tls/i686/sse2/libexpat.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/local/lib/tls/i686/sse2", 0xbffc8a3c) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/tls/i686/libexpat.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/local/lib/tls/i686", 0xbffc8a3c) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/tls/sse2/libexpat.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/local/lib/tls/sse2", 0xbffc8a3c) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/tls/libexpat.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/local/lib/tls", 0xbffc8a3c) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/i686/sse2/libexpat.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/local/lib/i686/sse2", 0xbffc8a3c) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/i686/libexpat.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/local/lib/i686", 0xbffc8a3c) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/sse2/libexpat.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/local/lib/sse2", 0xbffc8a3c) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libexpat.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/local/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/etc/ld.so.cache", O_RDONLY)      = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=70417, ...}) = 0
old_mmap(NULL, 70417, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7f8b000
close(3)                                = 0
open("/usr/lib/libexpat.so.0", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320?\332\0004\0\0\0\340\355\1\0\0\0\0\0004\0 \0\5\0(\0\35\0\34\0\1\0\0\0\0\0\0\0\0 \332\0\0 \332\0\264\310\1\0\264\310\1\0\5\0\0\0\0\20\0\0\1\0"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=127592, ...}) = 0
old_mmap(0xda2000, 124868, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xda2000
old_mmap(0xdbf000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1d000) = 0xdbf000
close(3)                                = 0
open("/usr/local/lib/libselinux.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libselinux.so.1", O_RDONLY)  = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240\240\277\0004\0\0\0\310\327\0\0\0\0\0\0004\0 \0\4\0(\0\33\0\32\0\1\0\0\0\0\0\0\0\0\200\277\0\0\200\277\0\260\307\0\0\260\307\0\0\5\0\0\0\0\20"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=56320, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f8a000
old_mmap(0xbf8000, 56172, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xbf8000
old_mmap(0xc05000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd000) = 0xc05000
close(3)                                = 0
open("/usr/local/lib/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/tls/libpthread.so.0", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0Px\260\0004\0\0\0\204\5\1\0\0\0\0\0004\0 \0\t\0(\0\'\0$\0\6\0\0\0004\0\0\00040\260\00040\260\0 \1\0\0 \1\0\0\5\0\0\0\4\0\0\0\3\0\0\0\364\315\0\0"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=93985, ...}) = 0
old_mmap(0xb03000, 70108, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb03000
old_mmap(0xb11000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd000) = 0xb11000
old_mmap(0xb13000, 4572, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb13000
close(3)                                = 0
open("/usr/local/lib/libaudit.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libaudit.so.0", O_RDONLY)    = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 \342\324\0004\0\0\0d\325\0\0\0\0\0\0004\0 \0\4\0(\0\33\0\32\0\1\0\0\0\0\0\0\0\0\220\324\0\0\220\324\0\310\222\0\0\310\222\0\0\5\0\0\0\0\20\0\0"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=55708, ...}) = 0
old_mmap(0xd49000, 57320, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xd49000
old_mmap(0xd53000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0xd53000
close(3)                                = 0
open("/usr/local/lib/libnsl.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libnsl.so.1", O_RDONLY)      = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320d\34\0004\0\0\0\2005\1\0\0\0\0\0004\0 \0\10\0(\0!\0\36\0\6\0\0\0004\0\0\00040\34\00040\34\0\0\1\0\0\0\1\0\0\5\0\0\0\4\0\0\0\3\0\0\0+\27\1\0"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=95148, ...}) = 0
old_mmap(0x1c3000, 88064, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x1c3000
old_mmap(0x1d5000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x11000) = 0x1d5000
old_mmap(0x1d7000, 6144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x1d7000
close(3)                                = 0
open("/usr/local/lib/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/tls/libc.so.6", O_RDONLY)    = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\20\357\232\0004\0\0\0hD\23\0\0\0\0\0004\0 \0\n\0(\0C\0@\0\6\0\0\0004\0\0\0004\240\231\0004\240\231\0@\1\0\0@\1\0\0\5\0\0\0\4\0\0\0\3\0\0\0\200"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1454546, ...}) = 0
old_mmap(0x99a000, 1219772, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x99a000
old_mmap(0xabe000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x124000) = 0xabe000
old_mmap(0xac2000, 7356, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xac2000
close(3)                                = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f89000
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f88000
mprotect(0xabe000, 4096, PROT_READ)     = 0
mprotect(0x996000, 4096, PROT_READ)     = 0
set_thread_area({entry_number:-1 -> 6, base_addr:0xb7f886c0, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
munmap(0xb7f8b000, 70417)               = 0
set_tid_address(0xb7f88708)             = 8396
rt_sigaction(SIGRTMIN, {0xb07380, [], SA_RESTORER|SA_SIGINFO, 0xb0e880}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {0xb073f0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0xb0e880}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
getrlimit(RLIMIT_STACK, {rlim_cur=10240*1024, rlim_max=RLIM_INFINITY}) = 0
_sysctl({{CTL_KERN, KERN_VERSION, 0, 20909, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, 2, 0xbffc91cc, 31, (nil), 0}) = 0
access("/etc/selinux/", F_OK)           = 0
brk(0)                                  = 0x9753000
brk(0x9774000)                          = 0x9774000
open("/etc/selinux/config", O_RDONLY)   = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=447, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f9c000
read(3, "# This file controls the state of SELinux on the system.\n# SELINUX= can take one of these three valu"..., 4096) = 447
close(3)                                = 0
munmap(0xb7f9c000, 4096)                = 0
open("/proc/mounts", O_RDONLY)          = 3
fstat64(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f9c000
read(3, "rootfs / rootfs rw 0 0\n/proc /proc proc rw,nodiratime 0 0\nnone /dev tmpfs rw 0 0\n/dev/root / ext3 rw"..., 1024) = 408
read(3, "", 1024)                       = 0
close(3)                                = 0
munmap(0xb7f9c000, 4096)                = 0
open("/proc/filesystems", O_RDONLY)     = 3
read(3, "nodev\tsysfs\nnodev\trootfs\nnodev\tbdev\nnodev\tproc\nnodev\tsockfs\nnodev\tbinfmt_misc\nnodev\tusbfs\nnodev\tusbd"..., 4095) = 286
close(3)                                = 0
open("/etc/dbus-1/system.conf", O_RDONLY) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=1795, ...}) = 0
read(3, "<!-- This configuration file controls the systemwide message bus.\n     Add a system-local.conf and e"..., 1795) = 1795
close(3)                                = 0
open("/etc/dbus-1/system.d", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY) = 3
fstat64(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
fcntl64(3, F_SETFD, FD_CLOEXEC)         = 0
getdents64(3, /* 7 entries */, 4096)    = 232
open("/etc/dbus-1/system.d/bluez.conf", O_RDONLY) = 4
fstat64(4, {st_mode=S_IFREG|0644, st_size=836, ...}) = 0
read(4, "<!-- This configuration file specifies the required security policies\n     for bluez-pin to work. --"..., 836) = 836
close(4)                                = 0
open("/etc/dbus-1/system.d/cups.conf", O_RDONLY) = 4
fstat64(4, {st_mode=S_IFREG|0644, st_size=460, ...}) = 0
read(4, "<!DOCTYPE busconfig PUBLIC \"-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN\"\n \"http://www.freede"..., 460) = 460
close(4)                                = 0
getuid32()                              = 0
socket(PF_FILE, SOCK_STREAM, 0)         = 4
fcntl64(4, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(4, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
connect(4, {sa_family=AF_FILE, path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(4)                                = 0
socket(PF_FILE, SOCK_STREAM, 0)         = 4
fcntl64(4, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(4, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
connect(4, {sa_family=AF_FILE, path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(4)                                = 0
open("/etc/nsswitch.conf", O_RDONLY)    = 4
fstat64(4, {st_mode=S_IFREG|0644, st_size=1623, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f9c000
read(4, "#\n# /etc/nsswitch.conf\n#\n# An example Name Service Switch config file. This file should be\n# sorted "..., 4096) = 1623
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0xb7f9c000, 4096)                = 0
open("/usr/local/lib/libnss_files.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY)      = 4
fstat64(4, {st_mode=S_IFREG|0644, st_size=70417, ...}) = 0
old_mmap(NULL, 70417, PROT_READ, MAP_PRIVATE, 4, 0) = 0xb7f8b000
close(4)                                = 0
open("/lib/libnss_files.so.2", O_RDONLY) = 4
read(4, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\20\33\0\0004\0\0\0\274\224\0\0\0\0\0\0004\0 \0\10\0(\0\36\0\33\0\6\0\0\0004\0\0\0004\0\0\0004\0\0\0\0\1\0\0\0\1\0\0\5\0\0\0\4\0\0\0\3\0\0\0\0\212"..., 512) = 512
fstat64(4, {st_mode=S_IFREG|0755, st_size=45889, ...}) = 0
old_mmap(NULL, 41608, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0xe88000
old_mmap(0xe91000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x8000) = 0xe91000
close(4)                                = 0
munmap(0xb7f8b000, 70417)               = 0
open("/etc/passwd", O_RDONLY)           = 4
fcntl64(4, F_GETFD)                     = 0
fcntl64(4, F_SETFD, FD_CLOEXEC)         = 0
fstat64(4, {st_mode=S_IFREG|0644, st_size=1877, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f9c000
read(4, "root:x:0:0:root:/root:/bin/bash\nbin:x:1:1:bin:/bin:/sbin/nologin\ndaemon:x:2:2:daemon:/sbin:/sbin/nol"..., 4096) = 1877
close(4)                                = 0
munmap(0xb7f9c000, 4096)                = 0
socket(PF_FILE, SOCK_STREAM, 0)         = 4
fcntl64(4, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(4, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
connect(4, {sa_family=AF_FILE, path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(4)                                = 0
socket(PF_FILE, SOCK_STREAM, 0)         = 4
fcntl64(4, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(4, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
connect(4, {sa_family=AF_FILE, path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(4)                                = 0
open("/etc/group", O_RDONLY)            = 4
fcntl64(4, F_GETFD)                     = 0
fcntl64(4, F_SETFD, FD_CLOEXEC)         = 0
fstat64(4, {st_mode=S_IFREG|0644, st_size=667, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f9c000
_llseek(4, 0, [0], SEEK_CUR)            = 0
read(4, "root:x:0:root\nbin:x:1:root,bin,daemon\ndaemon:x:2:root,bin,daemon\nsys:x:3:root,bin,adm\nadm:x:4:root,a"..., 4096) = 667
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0xb7f9c000, 4096)                = 0
open("/etc/dbus-1/system.d/hal.conf", O_RDONLY) = 4
fstat64(4, {st_mode=S_IFREG|0644, st_size=949, ...}) = 0
read(4, "<!DOCTYPE busconfig PUBLIC\n \"-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN\"\n \"http://www.freed"..., 949) = 949
close(4)                                = 0
open("/etc/passwd", O_RDONLY)           = 4
fcntl64(4, F_GETFD)                     = 0
fcntl64(4, F_SETFD, FD_CLOEXEC)         = 0
fstat64(4, {st_mode=S_IFREG|0644, st_size=1877, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f9c000
read(4, "root:x:0:0:root:/root:/bin/bash\nbin:x:1:1:bin:/bin:/sbin/nologin\ndaemon:x:2:2:daemon:/sbin:/sbin/nol"..., 4096) = 1877
close(4)                                = 0
munmap(0xb7f9c000, 4096)                = 0
open("/etc/group", O_RDONLY)            = 4
fcntl64(4, F_GETFD)                     = 0
fcntl64(4, F_SETFD, FD_CLOEXEC)         = 0
fstat64(4, {st_mode=S_IFREG|0644, st_size=667, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f9c000
_llseek(4, 0, [0], SEEK_CUR)            = 0
read(4, "root:x:0:root\nbin:x:1:root,bin,daemon\ndaemon:x:2:root,bin,daemon\nsys:x:3:root,bin,adm\nadm:x:4:root,a"..., 4096) = 667
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0xb7f9c000, 4096)                = 0
open("/etc/dbus-1/system.d/NetworkManager.conf", O_RDONLY) = 4
fstat64(4, {st_mode=S_IFREG|0644, st_size=380, ...}) = 0
read(4, "<!DOCTYPE busconfig PUBLIC\n \"-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN\"\n \"http://www.freed"..., 380) = 380
close(4)                                = 0
open("/etc/dbus-1/system.d/cups-config-daemon-dbus.conf", O_RDONLY) = 4
fstat64(4, {st_mode=S_IFREG|0644, st_size=812, ...}) = 0
read(4, "<!DOCTYPE busconfig PUBLIC\n \"-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN\"\n \"http://www.freed"..., 812) = 812
close(4)                                = 0
getdents64(3, /* 0 entries */, 4096)    = 0
close(3)                                = 0
open("/etc/dbus-1/system-local.conf", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/var/run/messagebus.pid", 0xbffc90bc) = -1 ENOENT (No such file or directory)
socket(PF_FILE, SOCK_STREAM, 0)         = 3
stat64("/var/run/dbus/system_bus_socket", {st_mode=S_IFSOCK|0777, st_size=0, ...}) = 0
unlink("/var/run/dbus/system_bus_socket") = 0
bind(3, {sa_family=AF_FILE, path="/var/run/dbus/system_bus_socket"}, 110) = 0
listen(3, 30)                           = 0
fcntl64(3, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(3, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
chmod("/var/run/dbus/system_bus_socket", 0777) = 0
fcntl64(3, F_GETFD)                     = 0
fcntl64(3, F_SETFD, FD_CLOEXEC)         = 0
gettimeofday({1152693228, 514692}, NULL) = 0
gettimeofday({1152693228, 519560}, NULL) = 0
chdir("/")                              = 0
clone(Process 8397 attached
child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7f88708) = 8397
[pid  8396] open("/var/run/messagebus.pid", O_WRONLY|O_CREAT|O_EXCL, 0644 <unfinished ...>
[pid  8397] open("/dev/null", O_RDWR <unfinished ...>
[pid  8396] <... open resumed> )        = 4
[pid  8397] <... open resumed> )        = 4
[pid  8396] fcntl64(4, F_GETFL <unfinished ...>
[pid  8397] dup2(4, 0 <unfinished ...>
[pid  8396] <... fcntl64 resumed> )     = 0x1 (flags O_WRONLY)
[pid  8397] <... dup2 resumed> )        = 0
[pid  8396] fstat64(4,  <unfinished ...>
[pid  8397] dup2(4, 1 <unfinished ...>
[pid  8396] <... fstat64 resumed> {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid  8397] <... dup2 resumed> )        = 1
[pid  8396] mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 <unfinished ...>
[pid  8397] dup2(4, 2 <unfinished ...>
[pid  8396] <... mmap2 resumed> )       = 0xb7f9c000
[pid  8397] <... dup2 resumed> )        = 2
[pid  8396] _llseek(4, 0,  <unfinished ...>
[pid  8397] umask(022 <unfinished ...>
[pid  8396] <... _llseek resumed> [0], SEEK_CUR) = 0
[pid  8397] <... umask resumed> )       = 022
[pid  8396] write(4, "8397\n", 5 <unfinished ...>
[pid  8397] setsid( <unfinished ...>
[pid  8396] <... write resumed> )       = 5
[pid  8397] <... setsid resumed> )      = 8397
[pid  8396] close(4 <unfinished ...>
[pid  8397] open("/etc/passwd", O_RDONLY <unfinished ...>
[pid  8396] <... close resumed> )       = 0
[pid  8397] <... open resumed> )        = 5
[pid  8396] munmap(0xb7f9c000, 4096 <unfinished ...>
[pid  8397] fcntl64(5, F_GETFD <unfinished ...>
[pid  8396] <... munmap resumed> )      = 0
[pid  8397] <... fcntl64 resumed> )     = 0
[pid  8396] exit_group(0)               = ?
[pid  8397] fcntl64(5, F_SETFD, FD_CLOEXECProcess 8396 detached
) = 0
fstat64(5, {st_mode=S_IFREG|0644, st_size=1877, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f9c000
read(5, "root:x:0:0:root:/root:/bin/bash\nbin:x:1:1:bin:/bin:/sbin/nologin\ndaemon:x:2:2:daemon:/sbin:/sbin/nol"..., 4096) = 1877
close(5)                                = 0
munmap(0xb7f9c000, 4096)                = 0
open("/etc/group", O_RDONLY)            = 5
fcntl64(5, F_GETFD)                     = 0
fcntl64(5, F_SETFD, FD_CLOEXEC)         = 0
fstat64(5, {st_mode=S_IFREG|0644, st_size=667, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f9c000
_llseek(5, 0, [0], SEEK_CUR)            = 0
read(5, "root:x:0:root\nbin:x:1:root,bin,daemon\ndaemon:x:2:root,bin,daemon\nsys:x:3:root,bin,adm\nadm:x:4:root,a"..., 4096) = 667
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0xb7f9c000, 4096)                = 0
setgid32(81)                            = 0
setuid32(81)                            = 0
socketpair(PF_FILE, SOCK_STREAM, 0, [5, 6]) = 0
rt_sigaction(SIGHUP, {0x8062cf0, [], SA_RESTORER, 0xb0e888}, NULL, 8) = 0
rt_sigaction(SIGTERM, {0x8062cf0, [], SA_RESTORER, 0xb0e888}, NULL, 8) = 0
gettimeofday({1152693228, 733939}, NULL) = 0
poll([{fd=3, events=POLLIN, revents=POLLIN}, {fd=5, events=POLLIN}], 2, -1) = 1
gettimeofday({1152693230, 706943}, NULL) = 0
accept(3, {sa_family=AF_FILE, path="Ÿ"}, [2]) = 7
fcntl64(7, F_GETFD)                     = 0
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
fcntl64(7, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(7, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_DFL}, 8) = 0
gettimeofday({1152693230, 744196}, NULL) = 0
gettimeofday({1152693230, 749017}, NULL) = 0
gettimeofday({1152693230, 753633}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 27761) = 1
gettimeofday({1152693230, 762450}, NULL) = 0
recvmsg(7, {msg_name(0)=NULL, msg_iov(1)=[{"\0", 1}], msg_controllen=0, msg_flags=0}, 0) = 1
getsockopt(7, SOL_SOCKET, SO_PEERCRED, "y\7\0\0\0\0\0\0\0\0\0\0", [12]) = 0
read(7, "AUTH EXTERNAL 30\r\n", 2048)   = 18
gettimeofday({1152693230, 780971}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLOUT, revents=POLLOUT}], 3, 27734) = 1
gettimeofday({1152693230, 788105}, NULL) = 0
write(7, "OK\r\n", 4)                   = 4
gettimeofday({1152693230, 799192}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 27716) = 1
gettimeofday({1152693230, 810157}, NULL) = 0
read(7, "BEGIN\r\nl\1\0\0\200\0\0\0\0\0\0\0\1\0\0\0\1o\0\0\25\0\0\0/org/freedesktop/DBus\0\6s\24\0\0\0org.freedesktop.DBus\0\2s\0\24\0\0\0org.freedeskt"..., 2048) = 135
open("/etc/passwd", O_RDONLY)           = 8
fcntl64(8, F_GETFD)                     = 0
fcntl64(8, F_SETFD, FD_CLOEXEC)         = 0
fstat64(8, {st_mode=S_IFREG|0644, st_size=1877, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f9c000
read(8, "root:x:0:0:root:/root:/bin/bash\nbin:x:1:1:bin:/bin:/sbin/nologin\ndaemon:x:2:2:daemon:/sbin:/sbin/nol"..., 4096) = 1877
close(8)                                = 0
munmap(0xb7f9c000, 4096)                = 0
open("/etc/group", O_RDONLY)            = 8
fcntl64(8, F_GETFD)                     = 0
fcntl64(8, F_SETFD, FD_CLOEXEC)         = 0
fstat64(8, {st_mode=S_IFREG|0644, st_size=667, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f9c000
_llseek(8, 0, [0], SEEK_CUR)            = 0
read(8, "root:x:0:root\nbin:x:1:root,bin,daemon\ndaemon:x:2:root,bin,daemon\nsys:x:3:root,bin,adm\nadm:x:4:root,a"..., 4096) = 667
read(8, "", 4096)                       = 0
close(8)                                = 0
munmap(0xb7f9c000, 4096)                = 0
getuid32()                              = 81
close(7)                                = 0
gettimeofday({1152693230, 913753}, NULL) = 0
poll([{fd=3, events=POLLIN, revents=POLLIN}, {fd=5, events=POLLIN}], 2, 27601) = 1
gettimeofday({1152693233, 704008}, NULL) = 0
accept(3, {sa_family=AF_FILE, path="Ÿ"}, [2]) = 7
fcntl64(7, F_GETFD)                     = 0
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
fcntl64(7, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(7, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
gettimeofday({1152693233, 722079}, NULL) = 0
gettimeofday({1152693233, 728594}, NULL) = 0
gettimeofday({1152693233, 732562}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 24780) = 1
gettimeofday({1152693233, 743559}, NULL) = 0
recvmsg(7, {msg_name(0)=NULL, msg_iov(1)=[{"\0", 1}], msg_controllen=0, msg_flags=0}, 0) = 1
getsockopt(7, SOL_SOCKET, SO_PEERCRED, "y\7\0\0\0\0\0\0\0\0\0\0", [12]) = 0
read(7, "AUTH EXTERNAL 30\r\n", 2048)   = 18
gettimeofday({1152693233, 765246}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLOUT, revents=POLLOUT}], 3, 24748) = 1
gettimeofday({1152693233, 776544}, NULL) = 0
write(7, "OK\r\n", 4)                   = 4
gettimeofday({1152693233, 791247}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 24722) = 1
gettimeofday({1152693233, 799278}, NULL) = 0
read(7, "BEGIN\r\nl\1\0\0\200\0\0\0\0\0\0\0\1\0\0\0\1o\0\0\25\0\0\0/org/freedesktop/DBus\0\6s\24\0\0\0org.freedesktop.DBus\0\2s\0\24\0\0\0org.freedeskt"..., 2048) = 135
getuid32()                              = 81
close(7)                                = 0
gettimeofday({1152693233, 822685}, NULL) = 0
poll([{fd=3, events=POLLIN, revents=POLLIN}, {fd=5, events=POLLIN}], 2, 24690) = 1
gettimeofday({1152693236, 703483}, NULL) = 0
accept(3, {sa_family=AF_FILE, path="Ÿ"}, [2]) = 7
fcntl64(7, F_GETFD)                     = 0
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
fcntl64(7, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(7, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
gettimeofday({1152693236, 706811}, NULL) = 0
gettimeofday({1152693236, 707061}, NULL) = 0
gettimeofday({1152693236, 707214}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 21812) = 1
gettimeofday({1152693236, 710362}, NULL) = 0
recvmsg(7, {msg_name(0)=NULL, msg_iov(1)=[{"\0", 1}], msg_controllen=0, msg_flags=0}, 0) = 1
getsockopt(7, SOL_SOCKET, SO_PEERCRED, "y\7\0\0\0\0\0\0\0\0\0\0", [12]) = 0
read(7, "AUTH EXTERNAL 30\r\n", 2048)   = 18
gettimeofday({1152693236, 714555}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLOUT, revents=POLLOUT}], 3, 21805) = 1
gettimeofday({1152693236, 716516}, NULL) = 0
write(7, "OK\r\n", 4)                   = 4
gettimeofday({1152693236, 718565}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 21800) = 1
gettimeofday({1152693236, 722333}, NULL) = 0
read(7, "BEGIN\r\nl\1\0\0\200\0\0\0\0\0\0\0\1\0\0\0\1o\0\0\25\0\0\0/org/freedesktop/DBus\0\6s\24\0\0\0org.freedesktop.DBus\0\2s\0\24\0\0\0org.freedeskt"..., 2048) = 135
getuid32()                              = 81
close(7)                                = 0
gettimeofday({1152693236, 727771}, NULL) = 0
poll(


[{fd=3, events=POLLIN, revents=POLLIN}, {fd=5, events=POLLIN}], 2, 21791) = 1
gettimeofday({1152693239, 705628}, NULL) = 0
accept(3, {sa_family=AF_FILE, path="Ÿ"}, [2]) = 7
fcntl64(7, F_GETFD)                     = 0
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
fcntl64(7, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(7, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
gettimeofday({1152693239, 708805}, NULL) = 0
gettimeofday({1152693239, 708950}, NULL) = 0
gettimeofday({1152693239, 709100}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 18810) = 1
gettimeofday({1152693239, 709480}, NULL) = 0
recvmsg(7, {msg_name(0)=NULL, msg_iov(1)=[{"\0", 1}], msg_controllen=0, msg_flags=0}, 0) = 1
getsockopt(7, SOL_SOCKET, SO_PEERCRED, "y\7\0\0\0\0\0\0\0\0\0\0", [12]) = 0
read(7, "AUTH EXTERNAL 30\r\n", 2048)   = 18
gettimeofday({1152693239, 710329}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLOUT, revents=POLLOUT}], 3, 18809) = 1
gettimeofday({1152693239, 710640}, NULL) = 0
write(7, "OK\r\n", 4)                   = 4
gettimeofday({1152693239, 711058}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 18808) = 1
gettimeofday({1152693239, 711408}, NULL) = 0
read(7, "BEGIN\r\nl\1\0\0\200\0\0\0\0\0\0\0\1\0\0\0\1o\0\0\25\0\0\0/org/freedesktop/DBus\0\6s\24\0\0\0org.freedesktop.DBus\0\2s\0\24\0\0\0org.freedeskt"..., 2048) = 135
getuid32()                              = 81
close(7)                                = 0
gettimeofday({1152693239, 712380}, NULL) = 0
poll(


[{fd=3, events=POLLIN, revents=POLLIN}, {fd=5, events=POLLIN}], 2, 18807) = 1
gettimeofday({1152693242, 708663}, NULL) = 0
accept(3, {sa_family=AF_FILE, path="Ÿ"}, [2]) = 7
fcntl64(7, F_GETFD)                     = 0
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
fcntl64(7, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(7, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
gettimeofday({1152693242, 740195}, NULL) = 0
gettimeofday({1152693242, 745308}, NULL) = 0
gettimeofday({1152693242, 749988}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 15764) = 1
gettimeofday({1152693242, 757990}, NULL) = 0
recvmsg(7, {msg_name(0)=NULL, msg_iov(1)=[{"\0", 1}], msg_controllen=0, msg_flags=0}, 0) = 1
getsockopt(7, SOL_SOCKET, SO_PEERCRED, "y\7\0\0\0\0\0\0\0\0\0\0", [12]) = 0
read(7, "AUTH EXTERNAL 30\r\n", 2048)   = 18
gettimeofday({1152693242, 773965}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLOUT, revents=POLLOUT}], 3, 15740) = 1
gettimeofday({1152693242, 777037}, NULL) = 0
write(7, "OK\r\n", 4)                   = 4
gettimeofday({1152693242, 782371}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 15732) = 1
gettimeofday({1152693242, 789236}, NULL) = 0
read(7, "BEGIN\r\nl\1\0\0\200\0\0\0\0\0\0\0\1\0\0\0\1o\0\0\25\0\0\0/org/freedesktop/DBus\0\6s\24\0\0\0org.freedesktop.DBus\0\2s\0\24\0\0\0org.freedeskt"..., 2048) = 135
getuid32()                              = 81
close(7)                                = 0
gettimeofday({1152693242, 810244}, NULL) = 0
poll(


[{fd=3, events=POLLIN, revents=POLLIN}, {fd=5, events=POLLIN}], 2, 15704) = 1
gettimeofday({1152693245, 708613}, NULL) = 0
accept(3, {sa_family=AF_FILE, path="Ÿ"}, [2]) = 7
fcntl64(7, F_GETFD)                     = 0
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
fcntl64(7, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(7, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
gettimeofday({1152693245, 740925}, NULL) = 0
gettimeofday({1152693245, 747645}, NULL) = 0
gettimeofday({1152693245, 750718}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 12762) = 1
gettimeofday({1152693245, 760672}, NULL) = 0
recvmsg(7, {msg_name(0)=NULL, msg_iov(1)=[{"\0", 1}], msg_controllen=0, msg_flags=0}, 0) = 1
getsockopt(7, SOL_SOCKET, SO_PEERCRED, "y\7\0\0\0\0\0\0\0\0\0\0", [12]) = 0
read(7, "AUTH EXTERNAL 30\r\n", 2048)   = 18
gettimeofday({1152693245, 779765}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLOUT, revents=POLLOUT}], 3, 12733) = 1
gettimeofday({1152693245, 789049}, NULL) = 0
write(7, "OK\r\n", 4)                   = 4
gettimeofday({1152693245, 798779}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 12714) = 1
gettimeofday({1152693245, 811145}, NULL) = 0
read(7, "BEGIN\r\nl\1\0\0\200\0\0\0\0\0\0\0\1\0\0\0\1o\0\0\25\0\0\0/org/freedesktop/DBus\0\6s\24\0\0\0org.freedesktop.DBus\0\2s\0\24\0\0\0org.freedeskt"..., 2048) = 135
getuid32()                              = 81
close(7)                                = 0
gettimeofday({1152693245, 833210}, NULL) = 0
poll(


[{fd=3, events=POLLIN, revents=POLLIN}, {fd=5, events=POLLIN}], 2, 12680) = 1
gettimeofday({1152693248, 708953}, NULL) = 0
accept(3, {sa_family=AF_FILE, path="Ÿ"}, [2]) = 7
fcntl64(7, F_GETFD)                     = 0
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
fcntl64(7, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(7, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
gettimeofday({1152693248, 729037}, NULL) = 0
gettimeofday({1152693248, 734075}, NULL) = 0
gettimeofday({1152693248, 736676}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 9777) = 1
gettimeofday({1152693248, 745040}, NULL) = 0
recvmsg(7, {msg_name(0)=NULL, msg_iov(1)=[{"\0", 1}], msg_controllen=0, msg_flags=0}, 0) = 1
getsockopt(7, SOL_SOCKET, SO_PEERCRED, "y\7\0\0\0\0\0\0\0\0\0\0", [12]) = 0
read(7, "AUTH EXTERNAL 30\r\n", 2048)   = 18
gettimeofday({1152693248, 764270}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLOUT, revents=POLLOUT}], 3, 9750) = 1
gettimeofday({1152693248, 771386}, NULL) = 0
write(7, "OK\r\n", 4)                   = 4
gettimeofday({1152693248, 778230}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 9736) = 1
gettimeofday({1152693248, 785237}, NULL) = 0
read(7, "BEGIN\r\nl\1\0\0\200\0\0\0\0\0\0\0\1\0\0\0\1o\0\0\25\0\0\0/org/freedesktop/DBus\0\6s\24\0\0\0org.freedesktop.DBus\0\2s\0\24\0\0\0org.freedeskt"..., 2048) = 135
getuid32()                              = 81
close(7)                                = 0
gettimeofday({1152693248, 809431}, NULL) = 0
poll([{fd=3, events=POLLIN, revents=POLLIN}, {fd=5, events=POLLIN}], 2, 9705) = 1
gettimeofday({1152693251, 706545}, NULL) = 0
accept(3, {sa_family=AF_FILE, path="Ÿ"}, [2]) = 7
fcntl64(7, F_GETFD)                     = 0
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
fcntl64(7, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(7, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
gettimeofday({1152693251, 727579}, NULL) = 0
gettimeofday({1152693251, 737864}, NULL) = 0
gettimeofday({1152693251, 742014}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 6767) = 1
gettimeofday({1152693251, 752004}, NULL) = 0
recvmsg(7, {msg_name(0)=NULL, msg_iov(1)=[{"\0", 1}], msg_controllen=0, msg_flags=0}, 0) = 1
getsockopt(7, SOL_SOCKET, SO_PEERCRED, "y\7\0\0\0\0\0\0\0\0\0\0", [12]) = 0
read(7, "AUTH EXTERNAL 30\r\n", 2048)   = 18
gettimeofday({1152693251, 768775}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLOUT, revents=POLLOUT}], 3, 6740) = 1
gettimeofday({1152693251, 778442}, NULL) = 0
write(7, "OK\r\n", 4)                   = 4
gettimeofday({1152693251, 790921}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 6718) = 1
gettimeofday({1152693251, 798825}, NULL) = 0
read(7, "BEGIN\r\nl\1\0\0\200\0\0\0\0\0\0\0\1\0\0\0\1o\0\0\25\0\0\0/org/freedesktop/DBus\0\6s\24\0\0\0org.freedesktop.DBus\0\2s\0\24\0\0\0org.freedeskt"..., 2048) = 135
getuid32()                              = 81
close(7)                                = 0
gettimeofday({1152693251, 813826}, NULL) = 0
poll([{fd=3, events=POLLIN, revents=POLLIN}, {fd=5, events=POLLIN}], 2, 6695) = 1
gettimeofday({1152693254, 710282}, NULL) = 0
accept(3, {sa_family=AF_FILE, path="Ÿ"}, [2]) = 7
fcntl64(7, F_GETFD)                     = 0
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
fcntl64(7, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(7, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
gettimeofday({1152693254, 719741}, NULL) = 0
gettimeofday({1152693254, 720693}, NULL) = 0
gettimeofday({1152693254, 721636}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 3797) = 1
gettimeofday({1152693254, 723646}, NULL) = 0
recvmsg(7, {msg_name(0)=NULL, msg_iov(1)=[{"\0", 1}], msg_controllen=0, msg_flags=0}, 0) = 1
getsockopt(7, SOL_SOCKET, SO_PEERCRED, "y\7\0\0\0\0\0\0\0\0\0\0", [12]) = 0
read(7, "AUTH EXTERNAL 30\r\n", 2048)   = 18
gettimeofday({1152693254, 728292}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLOUT, revents=POLLOUT}], 3, 3791) = 1
gettimeofday({1152693254, 731388}, NULL) = 0
write(7, "OK\r\n", 4)                   = 4
gettimeofday({1152693254, 735893}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 3783) = 1
gettimeofday({1152693254, 744913}, NULL) = 0
read(7, "BEGIN\r\nl\1\0\0\200\0\0\0\0\0\0\0\1\0\0\0\1o\0\0\25\0\0\0/org/freedesktop/DBus\0\6s\24\0\0\0org.freedesktop.DBus\0\2s\0\24\0\0\0org.freedeskt"..., 2048) = 135
getuid32()                              = 81
close(7)                                = 0
gettimeofday({1152693254, 769817}, NULL) = 0
poll([{fd=3, events=POLLIN, revents=POLLIN}, {fd=5, events=POLLIN}], 2, 3749) = 1
gettimeofday({1152693257, 709544}, NULL) = 0
accept(3, {sa_family=AF_FILE, path="Ÿ"}, [2]) = 7
fcntl64(7, F_GETFD)                     = 0
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
fcntl64(7, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(7, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
gettimeofday({1152693257, 712898}, NULL) = 0
gettimeofday({1152693257, 713119}, NULL) = 0
gettimeofday({1152693257, 713263}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 806) = 1
gettimeofday({1152693257, 713555}, NULL) = 0
recvmsg(7, {msg_name(0)=NULL, msg_iov(1)=[{"\0", 1}], msg_controllen=0, msg_flags=0}, 0) = 1
getsockopt(7, SOL_SOCKET, SO_PEERCRED, "y\7\0\0\0\0\0\0\0\0\0\0", [12]) = 0
read(7, "AUTH EXTERNAL 30\r\n", 2048)   = 18
gettimeofday({1152693257, 714381}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLOUT, revents=POLLOUT}], 3, 805) = 1
gettimeofday({1152693257, 714667}, NULL) = 0
write(7, "OK\r\n", 4)                   = 4
gettimeofday({1152693257, 715186}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 804) = 1
gettimeofday({1152693257, 715472}, NULL) = 0
read(7, "BEGIN\r\nl\1\0\0\200\0\0\0\0\0\0\0\1\0\0\0\1o\0\0\25\0\0\0/org/freedesktop/DBus\0\6s\24\0\0\0org.freedesktop.DBus\0\2s\0\24\0\0\0org.freedeskt"..., 2048) = 135
getuid32()                              = 81
close(7)                                = 0
gettimeofday({1152693257, 716496}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}], 2, 803) = 0
gettimeofday({1152693258, 521929}, NULL) = 0
gettimeofday({1152693258, 527028}, NULL) = 0
poll(




[{fd=3, events=POLLIN, revents=POLLIN}, {fd=5, events=POLLIN}], 2, -1) = 1
gettimeofday({1152693260, 712222}, NULL) = 0
accept(3, {sa_family=AF_FILE, path="u   "}, [2]) = 7
fcntl64(7, F_GETFD)                     = 0
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
fcntl64(7, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(7, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
rt_sigaction(SIGPIPE, {SIG_IGN}, 
{SIG_IGN}, 8) = 0
gettimeofday({1152693260, 747517}, NULL) = 0
gettimeofday({1152693260, 751208}, NULL) = 0
gettimeofday({1152693260, 757935}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 27760) = 1
gettimeofday({1152693260, 769597}, NULL) = 0
recvmsg(7, {msg_name(0)=NULL, msg_iov(1)=[{"\0", 1}], msg_controllen=0, msg_flags=0}, 0) = 1
getsockopt(7, SOL_SOCKET, SO_PEERCRED, "y\7\0\0\0\0\0\0\0\0\0\0", [12]) = 0
read(7, "AUTH EXTERNAL 30\r\n", 2048)   = 18
gettimeofday({1152693260, 794534}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLOUT, revents=POLLOUT}], 3, 27724) = 1
gettimeofday({1152693260, 804540}, NULL) = 0
write(7, "OK\r\n", 4)                   = 4
gettimeofday({1152693260, 815649}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 27703) = 1
gettimeofday({1152693260, 823901}, NULL) = 0
read(7, "BEGIN\r\nl\1\0\0\200\0\0\0\0\0\0\0\1\0\0\0\1o\0\0\25\0\0\0/org/freedesktop/DBus\0\6s\24\0\0\0org.freedesktop.DBus\0\2s\0\24\0\0\0org.freedeskt"..., 2048) = 135

getuid32()                              = 81
close(7)                                = 0
gettimeofday({1152693260, 849467}, NULL) = 0
poll(














[{fd=3, events=POLLIN, revents=POLLIN}, {fd=5, events=POLLIN}], 2, 27669) = 1
gettimeofday({1152693263, 709384}, NULL) = 0
accept(3, {sa_family=AF_FILE, path="Ÿ"}, [2]) = 7
fcntl64(7, F_GETFD)                     = 0
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
fcntl64(7, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(7, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
gettimeofday({1152693263, 715479}, NULL) = 0
gettimeofday({1152693263, 719759}, NULL) = 0
gettimeofday({1152693263, 725144}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 24792) = 1
gettimeofday({1152693263, 734960}, NULL) = 0
recvmsg(7, {msg_name(0)=NULL, msg_iov(1)=[{"\0", 1}], msg_controllen=0, msg_flags=0}, 0) = 1
getsockopt(7, SOL_SOCKET, SO_PEERCRED, "y\7\0\0\0\0\0\0\0\0\0\0", [12]) = 0
read(7, "AUTH EXTERNAL 30\r\n", 2048)   = 18
gettimeofday({1152693263, 751994}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLOUT, revents=POLLOUT}], 3, 24765) = 1
gettimeofday({1152693263, 758249}, NULL) = 0
write(7, "OK\r\n", 4)                   = 4
gettimeofday({1152693263, 765218}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 24752) = 1
gettimeofday({1152693263, 772043}, NULL) = 0
read(7, "BEGIN\r\nl\1\0\0\200\0\0\0\0\0\0\0\1\0\0\0\1o\0\0\25\0\0\0/org/freedesktop/DBus\0\6s\24\0\0\0org.freedesktop.DBus\0\2s\0\24\0\0\0org.freedeskt"..., 2048) = 135
getuid32()                              = 81
close(7)                                = 0
gettimeofday({1152693263, 787722}, NULL) = 0
poll(








[{fd=3, events=POLLIN, revents=POLLIN}, {fd=5, events=POLLIN}], 2, 24730) = 1
gettimeofday({1152693266, 711341}, NULL) = 0
accept(3, {sa_family=AF_FILE, path="Ÿ"}, [2]) = 7
fcntl64(7, F_GETFD)                     = 0
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
fcntl64(7, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(7, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
gettimeofday({1152693266, 716570}, NULL) = 0
gettimeofday({1152693266, 716713}, NULL) = 0
gettimeofday({1152693266, 717604}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 21804) = 1
gettimeofday({1152693266, 718611}, NULL) = 0
recvmsg(7, {msg_name(0)=NULL, msg_iov(1)=[{"\0", 1}], msg_controllen=0, msg_flags=0}, 0) = 1
getsockopt(7, SOL_SOCKET, SO_PEERCRED, "y\7\0\0\0\0\0\0\0\0\0\0", [12]) = 0
read(7, "AUTH EXTERNAL 30\r\n", 2048)   = 18
gettimeofday({1152693266, 720784}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLOUT, revents=POLLOUT}], 3, 21801) = 1
gettimeofday({1152693266, 722714}, NULL) = 0
write(7, "OK\r\n", 4)                   = 4
gettimeofday({1152693266, 724591}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 21797) = 1
gettimeofday({1152693266, 725549}, NULL) = 0
read(7, "BEGIN\r\nl\1\0\0\200\0\0\0\0\0\0\0\1\0\0\0\1o\0\0\25\0\0\0/org/freedesktop/DBus\0\6s\24\0\0\0org.freedesktop.DBus\0\2s\0\24\0\0\0org.freedeskt"..., 2048) = 135
getuid32()                              = 81
close(7)                                = 0
gettimeofday({1152693266, 729489}, NULL) = 0
poll(




/**********************************************************************/
/*                                                                    */
/*Here´s the part where I started the dbus_monitor in the other shell */
/*                                                                    */
/*                                                                    */
/**********************************************************************/

[{fd=3, events=POLLIN, revents=POLLIN}, {fd=5, events=POLLIN}], 2, 21792) = 1
gettimeofday({1152693268, 75998}, NULL) = 0
accept(3, {sa_family=AF_FILE, path="Ÿ"}, [2]) = 7
fcntl64(7, F_GETFD)                     = 0
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
fcntl64(7, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(7, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
gettimeofday({1152693268, 92586}, NULL) = 0
gettimeofday({1152693268, 95046}, NULL) = 0
gettimeofday({1152693268, 96012}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 20422) = 1
gettimeofday({1152693268, 103355}, NULL) = 0
recvmsg(7, {msg_name(0)=NULL, msg_iov(1)=[{"\0", 1}], msg_controllen=0, msg_flags=0}, 0) = 1
getsockopt(7, SOL_SOCKET, SO_PEERCRED, "\316 \0\0\0\0\0\0\0\0\0\0", [12]) = 0
read(7, 0x97533d0, 2048)                = -1 EAGAIN (Resource temporarily unavailable)
gettimeofday({1152693268, 107937}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 20410) = 1
gettimeofday({1152693268, 110936}, NULL) = 0
read(7, "AUTH EXTERNAL 30\r\n", 2048)   = 18
gettimeofday({1152693268, 112872}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLOUT, revents=POLLOUT}], 3, 20406) = 1
gettimeofday({1152693268, 115939}, NULL) = 0
write(7, "OK\r\n", 4)                   = 4
gettimeofday({1152693268, 119515}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN|POLLHUP}], 3, 20399) = 1
gettimeofday({1152693268, 124516}, NULL) = 0
read(7, "", 2048)                       = 0
close(7)                                = 0
gettimeofday({1152693268, 128759}, NULL) = 0
poll(

//end of the part 


[{fd=3, events=POLLIN, revents=POLLIN}, {fd=5, events=POLLIN}], 2, 20390) = 1
gettimeofday({1152693269, 712618}, NULL) = 0
accept(3, {sa_family=AF_FILE, path="Ÿ"}, [2]) = 7
fcntl64(7, F_GETFD)                     = 0
fcntl64(7, F_SETFD, FD_CLOEXEC)         = 0
fcntl64(7, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(7, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
gettimeofday({1152693269, 744193}, NULL) = 0
gettimeofday({1152693269, 748176}, NULL) = 0
gettimeofday({1152693269, 751992}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 18766) = 1
gettimeofday({1152693269, 757341}, NULL) = 0
recvmsg(7, {msg_name(0)=NULL, msg_iov(1)=[{"\0", 1}], msg_controllen=0, msg_flags=0}, 0) = 1
getsockopt(7, SOL_SOCKET, SO_PEERCRED, "y\7\0\0\0\0\0\0\0\0\0\0", [12]) = 0
read(7, "AUTH EXTERNAL 30\r\n", 2048)   = 18
gettimeofday(
{1152693269, 774071}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLOUT, revents=POLLOUT}], 3, 18744) = 1
gettimeofday({1152693269, 785998}, NULL) = 0
write(7, "OK\r\n", 4)                   = 4
gettimeofday({1152693269, 792360}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=5, events=POLLIN}, {fd=7, events=POLLIN, revents=POLLIN}], 3, 18726) = 1
gettimeofday({1152693269, 801049}, NULL) = 0
read(7, "BEGIN\r\nl\1\0\0\200\0\0\0\0\0\0\0\1\0\0\0\1o\0\0\25\0\0\0/org/freedesktop/DBus\0\6s\24\0\0\0org.freedesktop.DBus\0\2s\0\24\0\0\0org.freedeskt"..., 2048) = 135
getuid32()                              = 81
close(7)                                = 0
gettimeofday({1152693269, 825181}, NULL) = 0
poll( <unfinished ...>
Process 8397 detached
[root at localhost dbus-1]# 


More information about the dbus mailing list