* More CIFS $ Share Woes
@ 2009-08-28 14:09 Jason T. Masker
2009-08-28 14:58 ` Jason T. Masker
2009-08-31 4:32 ` Ian Kent
0 siblings, 2 replies; 8+ messages in thread
From: Jason T. Masker @ 2009-08-28 14:09 UTC (permalink / raw)
To: autofs
I have been following some of the discussion about the autofs mounting
of cifs $ shares being recently broken as I am experiencing this issue
myself on Fedora 11.
Here is my current auto.cifs script, only slightly modified from the
distributed auto.smb script to include credentials:
---------------start auto.cifs----------------------------
#!/bin/bash
# $Id$
# This file must be executable to work! chmod 755!
key="$1"
# Note: create a cred file for each windows/Samba-Server in your
network
# which requires password authentification. The file should
contain
# exactly two lines:
# username=user
# password=*****
# Please don't use blank spaces to separate the equal sign from
the
# user account name or password.
credfile="/etc/auto.smb.$key"
defcred="/etc/auto.smb.jmasker"
# Note: Use cifs instead of smbfs:
mountopts="-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users"
smbclientopts=""
for P in /bin /sbin /usr/bin /usr/sbin
do
if [ -x $P/smbclient ]
then
SMBCLIENT=$P/smbclient
break
fi
done
[ -x $SMBCLIENT ] || exit 1
if [ -e "$credfile" ]
then
mountopts=$mountopts",credentials=$credfile"
smbclientopts="-A "$credfile
else
mountopts=$mountopts",credentials=$defcred"
smbclientopts="-A "$defcred
fi
$SMBCLIENT $smbclientopts -gL $key 2>/dev/null \
| awk -v key="$key" -v opts="$mountopts" -F'|' -- '
BEGIN { ORS=""; first=1 }
/Disk/ {
if (first)
print opts; first=0
dir = $2
loc = $2
# Enclose mount dir and location in quotes
# Double quote "$" in location as it is special
gsub(/\$$/, "\\$", loc);
print " \\\n\t \"/" dir "\"", "\"://" key "/" loc "\""
}
END { if (!first) print "\n"; else exit 1 }
'
-----------------end auto.cifs----------------------------------
Here is the auto.cifs output when I run it manually for a host to
which I am trying to connect:
---------------auto.cifs output-----------------------
bash# /etc/auto.cifs VMW1013
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
\
"/My Documents" "://VMW1013/My Documents" \
"/ADMIN$" "://VMW1013/ADMIN\$" \
"/C$" "://VMW1013/C\$" \
"/Shared" "://VMW1013/Shared"
----------------auto.cifs output------------------------
Now here is the debug output when I try to mount a Windows
"administrative" share ending in a $. The commands I type to initiate
the automount are:
cd /cifs/VMW1013
cd C\$
and here is the debug output:
-------------automount debug-----------------
Starting automounter version 5.0.4-36, master map auto.master
using kernel protocol version 5.01
lookup_nss_read_master: reading master files auto.master
parse_init: parse(sun): init gathered global options: (null)
lookup_read_master: lookup(file): read entry /misc
lookup_read_master: lookup(file): read entry /net
lookup_read_master: lookup(file): read entry /cifs
lookup_read_master: lookup(file): read entry +auto.master
lookup_nss_read_master: reading master files auto.master
parse_init: parse(sun): init gathered global options: (null)
lookup_nss_read_master: reading master nisplus auto.master
parse_init: parse(sun): init gathered global options: (null)
lookup_read_master: lookup(nisplus): couldn't locate nis+ table
auto.master
lookup(file): failed to read included master map auto.master
master_do_mount: mounting /misc
automount_path_to_fifo: fifo name /var/run/autofs.fifo-misc
lookup_nss_read_map: reading map file /etc/auto.misc
parse_init: parse(sun): init gathered global options: (null)
mounted indirect on /misc with timeout 300, freq 75 seconds
st_ready: st_ready(): state = 0 path /misc
master_do_mount: mounting /net
automount_path_to_fifo: fifo name /var/run/autofs.fifo-net
lookup_nss_read_map: reading map hosts (null)
parse_init: parse(sun): init gathered global options: (null)
mounted indirect on /net with timeout 300, freq 75 seconds
st_ready: st_ready(): state = 0 path /net
master_do_mount: mounting /cifs
automount_path_to_fifo: fifo name /var/run/autofs.fifo-cifs
lookup_nss_read_map: reading map file /etc/auto.cifs
parse_init: parse(sun): init gathered global options: (null)
mounted indirect on /cifs with timeout 60, freq 15 seconds
st_ready: st_ready(): state = 0 path /cifs
handle_packet: type = 3
handle_packet_missing_indirect: token 117, name VMW1013, request pid
7097
attempting to mount entry /cifs/VMW1013
lookup_mount: lookup(program): looking up VMW1013
lookup_mount: lookup(program): VMW1013 ->
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
"/My Documents" "://VMW1013/My Documents" "/ADMIN$"
"://VMW1013/ADMIN\$" "/C$" "://VMW1013/C\$" "/Shared"
"://VMW1013/Shared"
parse_mount: parse(sun): expanded entry:
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
"/My Documents" "://VMW1013/My Documents" "/ADMIN$"
"://VMW1013/ADMIN\$" "/C$" "://VMW1013/C\$" "/Shared"
"://VMW1013/Shared"
parse_mount: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mount: parse(sun): dequote(""/My Documents"") -> /My Documents
parse_mapent: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mapent: parse(sun): dequote(""://VMW1013/My Documents"") ->
://VMW1013/My Documents
add_offset_entry: parse(sun): added multi-mount offset /My Documents
-> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/My Documents
parse_mount: parse(sun): dequote(""/ADMIN$"") -> /ADMIN$
parse_mapent: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mapent: parse(sun): dequote(""://VMW1013/ADMIN\$"") ->
://VMW1013/ADMIN\$
add_offset_entry: parse(sun): added multi-mount offset /ADMIN$ ->
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/ADMIN\$
parse_mount: parse(sun): dequote(""/C$"") -> /C$
parse_mapent: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mapent: parse(sun): dequote(""://VMW1013/C\$"") ->
://VMW1013/C\$
add_offset_entry: parse(sun): added multi-mount offset /C$ ->
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/C\$
parse_mount: parse(sun): dequote(""/Shared"") -> /Shared
parse_mapent: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mapent: parse(sun): dequote(""://VMW1013/Shared"") ->
://VMW1013/Shared
add_offset_entry: parse(sun): added multi-mount offset /Shared ->
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/Shared
mount_multi_triggers: mount offset /cifs/VMW1013/ADMIN$ at
/cifs/VMW1013
mount_autofs_offset: calling mount -t autofs -s -o
fd=21,pgrp=8942,minproto=5,maxproto=5,offset automount
/cifs/VMW1013/ADMIN$
mounted offset on /cifs/VMW1013/ADMIN$ with timeout 60, freq 15
seconds
mount_autofs_offset: mounted trigger /cifs/VMW1013/ADMIN$ at
/cifs/VMW1013/ADMIN$
mount_multi_triggers: mount offset /cifs/VMW1013/C$ at /cifs/VMW1013
mount_autofs_offset: calling mount -t autofs -s -o
fd=21,pgrp=8942,minproto=5,maxproto=5,offset automount
/cifs/VMW1013/C$
mounted offset on /cifs/VMW1013/C$ with timeout 60, freq 15 seconds
mount_autofs_offset: mounted trigger /cifs/VMW1013/C$ at
/cifs/VMW1013/C$
mount_multi_triggers: mount offset /cifs/VMW1013/My Documents at
/cifs/VMW1013
mount_autofs_offset: calling mount -t autofs -s -o
fd=21,pgrp=8942,minproto=5,maxproto=5,offset automount
/cifs/VMW1013/My Documents
mounted offset on /cifs/VMW1013/My Documents with timeout 60, freq 15
seconds
mount_autofs_offset: mounted trigger /cifs/VMW1013/My Documents at
/cifs/VMW1013/My Documents
mount_multi_triggers: mount offset /cifs/VMW1013/Shared at
/cifs/VMW1013
mount_autofs_offset: calling mount -t autofs -s -o
fd=21,pgrp=8942,minproto=5,maxproto=5,offset automount
/cifs/VMW1013/Shared
mounted offset on /cifs/VMW1013/Shared with timeout 60, freq 15
seconds
mount_autofs_offset: mounted trigger /cifs/VMW1013/Shared at
/cifs/VMW1013/Shared
dev_ioctl_send_ready: token = 117
mounted /cifs/VMW1013
handle_packet: type = 5
handle_packet_missing_direct: token 118, name /cifs/VMW1013/C$,
request pid 7097
attempting to mount entry /cifs/VMW1013/C$
lookup_mount: lookup(program): /cifs/VMW1013/C$ ->
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/C\$
parse_mount: parse(sun): expanded entry:
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/C\$
parse_mount: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mount: parse(sun): core of entry:
options=fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker,
loc=://VMW1013/C\$
sun_mount: parse(sun): mounting root /tmp/auto3eU6En, mountpoint
/cifs/VMW1013/C$, what //VMW1013/C\$, fstype cifs, options
file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
do_mount: //VMW1013/C\$ /cifs/VMW1013/C$ type cifs options
file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
using module generic
mount_mount: mount(generic): calling mkdir_path /tmp/auto3eU6En
mount_mount: mount(generic): calling mount -t cifs -s -o
file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
//VMW1013/C\$ /tmp/auto3eU6En
>> retrying with upper case share name
>> mount error(6): No such device or address
>> Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)
mount(generic): failed to mount //VMW1013/C\$ (type cifs) on
/tmp/auto3eU6En
dev_ioctl_send_fail: token = 118
failed to mount /cifs/VMW1013/C$
handle_packet: type = 5
handle_packet_missing_direct: token 119, name /cifs/VMW1013/C$,
request pid 7097
attempting to mount entry /cifs/VMW1013/C$
dev_ioctl_send_fail: token = 119
failed to mount /cifs/VMW1013/C$
^Cdo_notify_state: signal 2
master_notify_state_change: sig 2 switching /misc from 1 to 5
st_prepare_shutdown: state 1 path /misc
expire_proc: exp_proc = 3046108016 path /misc
master_notify_state_change: sig 2 switching /net from 1 to 5
expire_cleanup: got thid 3046108016 path /misc stat 0
expire_cleanup: sigchld: exp 3046108016 finished, switching from 5 to
7
st_shutdown: state 5 path /misc
master_notify_state_change: sig 2 switching /cifs from 1 to 5
st_prepare_shutdown: state 1 path /cifs
expire_proc: exp_proc = 3047160688 path /cifs
handle_packet: type = 4
handle_packet_expire_indirect: token 120, name VMW1013
st_prepare_shutdown: state 1 path /net
expire_proc: exp_proc = 3045055344 path /net
expiring path /cifs/VMW1013
umount_multi: path /cifs/VMW1013 incl 1
expire_cleanup: got thid 3045055344 path /net stat 0
expire_cleanup: sigchld: exp 3045055344 finished, switching from 5 to
7
st_shutdown: state 5 path /net
umount_multi_triggers: umount offset /cifs/VMW1013/ADMIN$
umounted offset mount /cifs/VMW1013/ADMIN$
umount_multi_triggers: umount offset /cifs/VMW1013/C$
umounted offset mount /cifs/VMW1013/C$
umount_multi_triggers: umount offset /cifs/VMW1013/My Documents
umounted offset mount /cifs/VMW1013/My Documents
umount_multi_triggers: umount offset /cifs/VMW1013/Shared
umounted offset mount /cifs/VMW1013/Shared
cache_delete_offset_list: deleting offset key /cifs/VMW1013/ADMIN$
cache_delete_offset_list: deleting offset key /cifs/VMW1013/C$
cache_delete_offset_list: deleting offset key /cifs/VMW1013/My
Documents
cache_delete_offset_list: deleting offset key /cifs/VMW1013/Shared
rm_unwanted_fn: removing directory /cifs/VMW1013
expired /cifs/VMW1013
dev_ioctl_send_ready: token = 120
expire_cleanup: got thid 3047160688 path /cifs stat 0
expire_cleanup: sigchld: exp 3047160688 finished, switching from 5 to
7
st_shutdown: state 5 path /cifs
umount_multi: path /misc incl 0
umounted indirect mount /misc
automount_path_to_fifo: fifo name /var/run/autofs.fifo-misc
shut down path /misc
umount_multi: path /net incl 0
umounted indirect mount /net
automount_path_to_fifo: fifo name /var/run/autofs.fifo-net
shut down path /net
umount_multi: path /cifs incl 0
umounted indirect mount /cifs
automount_path_to_fifo: fifo name /var/run/autofs.fifo-cifs
shut down path /cifs
autofs stopped
[root@FMI2081 tmp]# mkdir TEST
[root@FMI2081 tmp]# /usr/sbin/automount -f -d
Starting automounter version 5.0.4-36, master map auto.master
using kernel protocol version 5.01
lookup_nss_read_master: reading master files auto.master
parse_init: parse(sun): init gathered global options: (null)
lookup_read_master: lookup(file): read entry /misc
lookup_read_master: lookup(file): read entry /net
lookup_read_master: lookup(file): read entry /cifs
lookup_read_master: lookup(file): read entry +auto.master
lookup_nss_read_master: reading master files auto.master
parse_init: parse(sun): init gathered global options: (null)
lookup_nss_read_master: reading master nisplus auto.master
parse_init: parse(sun): init gathered global options: (null)
lookup_read_master: lookup(nisplus): couldn't locate nis+ table
auto.master
lookup(file): failed to read included master map auto.master
master_do_mount: mounting /misc
automount_path_to_fifo: fifo name /var/run/autofs.fifo-misc
lookup_nss_read_map: reading map file /etc/auto.misc
parse_init: parse(sun): init gathered global options: (null)
mounted indirect on /misc with timeout 300, freq 75 seconds
st_ready: st_ready(): state = 0 path /misc
master_do_mount: mounting /net
automount_path_to_fifo: fifo name /var/run/autofs.fifo-net
lookup_nss_read_map: reading map hosts (null)
parse_init: parse(sun): init gathered global options: (null)
mounted indirect on /net with timeout 300, freq 75 seconds
st_ready: st_ready(): state = 0 path /net
master_do_mount: mounting /cifs
automount_path_to_fifo: fifo name /var/run/autofs.fifo-cifs
lookup_nss_read_map: reading map file /etc/auto.cifs
parse_init: parse(sun): init gathered global options: (null)
mounted indirect on /cifs with timeout 60, freq 15 seconds
st_ready: st_ready(): state = 0 path /cifs
handle_packet: type = 3
handle_packet_missing_indirect: token 121, name VMW1013, request pid
7097
attempting to mount entry /cifs/VMW1013
lookup_mount: lookup(program): looking up VMW1013
lookup_mount: lookup(program): VMW1013 ->
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
"/My Documents" "://VMW1013/My Documents" "/ADMIN$"
"://VMW1013/ADMIN\$" "/C$" "://VMW1013/C\$" "/Shared"
"://VMW1013/Shared"
parse_mount: parse(sun): expanded entry:
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
"/My Documents" "://VMW1013/My Documents" "/ADMIN$"
"://VMW1013/ADMIN\$" "/C$" "://VMW1013/C\$" "/Shared"
"://VMW1013/Shared"
parse_mount: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mount: parse(sun): dequote(""/My Documents"") -> /My Documents
parse_mapent: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mapent: parse(sun): dequote(""://VMW1013/My Documents"") ->
://VMW1013/My Documents
add_offset_entry: parse(sun): added multi-mount offset /My Documents
-> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/My Documents
parse_mount: parse(sun): dequote(""/ADMIN$"") -> /ADMIN$
parse_mapent: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mapent: parse(sun): dequote(""://VMW1013/ADMIN\$"") ->
://VMW1013/ADMIN\$
add_offset_entry: parse(sun): added multi-mount offset /ADMIN$ ->
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/ADMIN\$
parse_mount: parse(sun): dequote(""/C$"") -> /C$
parse_mapent: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mapent: parse(sun): dequote(""://VMW1013/C\$"") ->
://VMW1013/C\$
add_offset_entry: parse(sun): added multi-mount offset /C$ ->
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/C\$
parse_mount: parse(sun): dequote(""/Shared"") -> /Shared
parse_mapent: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mapent: parse(sun): dequote(""://VMW1013/Shared"") ->
://VMW1013/Shared
add_offset_entry: parse(sun): added multi-mount offset /Shared ->
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/Shared
mount_multi_triggers: mount offset /cifs/VMW1013/ADMIN$ at
/cifs/VMW1013
mount_autofs_offset: calling mount -t autofs -s -o
fd=21,pgrp=9009,minproto=5,maxproto=5,offset automount
/cifs/VMW1013/ADMIN$
mounted offset on /cifs/VMW1013/ADMIN$ with timeout 60, freq 15
seconds
mount_autofs_offset: mounted trigger /cifs/VMW1013/ADMIN$ at
/cifs/VMW1013/ADMIN$
mount_multi_triggers: mount offset /cifs/VMW1013/C$ at /cifs/VMW1013
mount_autofs_offset: calling mount -t autofs -s -o
fd=21,pgrp=9009,minproto=5,maxproto=5,offset automount
/cifs/VMW1013/C$
mounted offset on /cifs/VMW1013/C$ with timeout 60, freq 15 seconds
mount_autofs_offset: mounted trigger /cifs/VMW1013/C$ at
/cifs/VMW1013/C$
mount_multi_triggers: mount offset /cifs/VMW1013/My Documents at
/cifs/VMW1013
mount_autofs_offset: calling mount -t autofs -s -o
fd=21,pgrp=9009,minproto=5,maxproto=5,offset automount
/cifs/VMW1013/My Documents
mounted offset on /cifs/VMW1013/My Documents with timeout 60, freq 15
seconds
mount_autofs_offset: mounted trigger /cifs/VMW1013/My Documents at
/cifs/VMW1013/My Documents
mount_multi_triggers: mount offset /cifs/VMW1013/Shared at
/cifs/VMW1013
mount_autofs_offset: calling mount -t autofs -s -o
fd=21,pgrp=9009,minproto=5,maxproto=5,offset automount
/cifs/VMW1013/Shared
mounted offset on /cifs/VMW1013/Shared with timeout 60, freq 15
seconds
mount_autofs_offset: mounted trigger /cifs/VMW1013/Shared at
/cifs/VMW1013/Shared
dev_ioctl_send_ready: token = 121
mounted /cifs/VMW1013
handle_packet: type = 5
handle_packet_missing_direct: token 122, name /cifs/VMW1013/C$,
request pid 7097
attempting to mount entry /cifs/VMW1013/C$
lookup_mount: lookup(program): /cifs/VMW1013/C$ ->
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/C\$
parse_mount: parse(sun): expanded entry:
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/C\$
parse_mount: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mount: parse(sun): core of entry:
options=fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker,
loc=://VMW1013/C\$
sun_mount: parse(sun): mounting root /tmp/autoeCe5fB, mountpoint
/cifs/VMW1013/C$, what //VMW1013/C\$, fstype cifs, options
file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
do_mount: //VMW1013/C\$ /cifs/VMW1013/C$ type cifs options
file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
using module generic
mount_mount: mount(generic): calling mkdir_path /tmp/autoeCe5fB
mount_mount: mount(generic): calling mount -t cifs -s -o
file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
//VMW1013/C\$ /tmp/autoeCe5fB
>> retrying with upper case share name
>> mount error(6): No such device or address
>> Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)
mount(generic): failed to mount //VMW1013/C\$ (type cifs) on
/tmp/autoeCe5fB
dev_ioctl_send_fail: token = 122
failed to mount /cifs/VMW1013/C$
handle_packet: type = 5
handle_packet_missing_direct: token 123, name /cifs/VMW1013/C$,
request pid 7097
attempting to mount entry /cifs/VMW1013/C$
dev_ioctl_send_fail: token = 123
failed to mount /cifs/VMW1013/C$
^Cdo_notify_state: signal 2
master_notify_state_change: sig 2 switching /misc from 1 to 5
st_prepare_shutdown: state 1 path /misc
expire_proc: exp_proc = 3047156592 path /misc
master_notify_state_change: sig 2 switching /net from 1 to 5
expire_cleanup: got thid 3047156592 path /misc stat 0
expire_cleanup: sigchld: exp 3047156592 finished, switching from 5 to
7
st_shutdown: state 5 path /misc
master_notify_state_change: sig 2 switching /cifs from 1 to 5
st_prepare_shutdown: state 1 path /cifs
expire_proc: exp_proc = 3048209264 path /cifs
handle_packet: type = 4
handle_packet_expire_indirect: token 124, name VMW1013
st_prepare_shutdown: state 1 path /net
expire_proc: exp_proc = 3046103920 path /net
expiring path /cifs/VMW1013
umount_multi: path /cifs/VMW1013 incl 1
expire_cleanup: got thid 3046103920 path /net stat 0
expire_cleanup: sigchld: exp 3046103920 finished, switching from 5 to
7
st_shutdown: state 5 path /net
umount_multi_triggers: umount offset /cifs/VMW1013/ADMIN$
umounted offset mount /cifs/VMW1013/ADMIN$
umount_multi_triggers: umount offset /cifs/VMW1013/C$
umounted offset mount /cifs/VMW1013/C$
umount_multi_triggers: umount offset /cifs/VMW1013/My Documents
umounted offset mount /cifs/VMW1013/My Documents
umount_multi_triggers: umount offset /cifs/VMW1013/Shared
umounted offset mount /cifs/VMW1013/Shared
cache_delete_offset_list: deleting offset key /cifs/VMW1013/ADMIN$
cache_delete_offset_list: deleting offset key /cifs/VMW1013/C$
cache_delete_offset_list: deleting offset key /cifs/VMW1013/My
Documents
cache_delete_offset_list: deleting offset key /cifs/VMW1013/Shared
rm_unwanted_fn: removing directory /cifs/VMW1013
expired /cifs/VMW1013
dev_ioctl_send_ready: token = 124
expire_cleanup: got thid 3048209264 path /cifs stat 0
expire_cleanup: sigchld: exp 3048209264 finished, switching from 5 to
7
st_shutdown: state 5 path /cifs
umount_multi: path /misc incl 0
umounted indirect mount /misc
automount_path_to_fifo: fifo name /var/run/autofs.fifo-misc
shut down path /misc
umount_multi: path /net incl 0
umounted indirect mount /net
automount_path_to_fifo: fifo name /var/run/autofs.fifo-net
shut down path /net
umount_multi: path /cifs incl 0
umounted indirect mount /cifs
automount_path_to_fifo: fifo name /var/run/autofs.fifo-cifs
shut down path /cifs
autofs stopped
-------------------------automount debug------------------------
Where you see the line:
mount_mount: mount(generic): calling mount -t cifs -s -o
file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
//VMW1013/C\$ /tmp/autoeCe5fB
I think it is not being truthful. :)
Here is the output when I try the command manually:
[tmp]# mkdir autoeCe5fB
[tmp]# mount -t cifs -s -o
file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
//VMW1013/C\$ /tmp/autoeCe5fB
[tmp]# cd autoeCe5fB/
[autoeCe5fB]# ls
5.5.0.0-TIV-TSMBAC-LinuxX86.tar
871-ezvpn-nowork.pcap
871-ezvpn-problem-public-nowork.pcap
871-ezvpn-problem-public-worked.pcap
acs-01-cert08.cer
acs-01-certchain08.p7b
acs-02-cert08.cer
acs-02-certchain08.p7b
acs20070925R01.enc
acs20070925R02.enc
acs20080117R01.enc
....more files...
Thoughts?
-Jason
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: More CIFS $ Share Woes
2009-08-28 14:09 More CIFS $ Share Woes Jason T. Masker
@ 2009-08-28 14:58 ` Jason T. Masker
2009-08-31 4:32 ` Ian Kent
1 sibling, 0 replies; 8+ messages in thread
From: Jason T. Masker @ 2009-08-28 14:58 UTC (permalink / raw)
To: autofs
[-- Attachment #1: Type: text/plain, Size: 143 bytes --]
I am attaching an strace of automount. Here I start the daemon,
execute "cd /cifs/VMW1013/C$" and immediately stop the daemon after it
fails.
[-- Attachment #2: automount_trace.txt --]
[-- Type: text/plain, Size: 266961 bytes --]
10206 execve("/usr/sbin/automount", ["/usr/sbin/automount", "-f", "-d"], [/* 52 vars */]) = 0
10206 brk(0) = 0x1cfa000
10206 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
10206 open("/etc/ld.so.cache", O_RDONLY) = 3
10206 fstat64(3, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10206 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7f8a000
10206 close(3) = 0
10206 open("/lib/libpthread.so.0", O_RDONLY) = 3
10206 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0Pi\326\0004\0\0\0\350"..., 512) = 512
10206 fstat64(3, {st_mode=S_IFREG|0755, st_size=140408, ...}) = 0
10206 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f89000
10206 mmap2(NULL, 106976, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x281000
10206 mprotect(0x297000, 4096, PROT_NONE) = 0
10206 mmap2(0x298000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16) = 0x298000
10206 mmap2(0x29a000, 4576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x29a000
10206 close(3) = 0
10206 open("/usr/lib/libtirpc.so.1", O_RDONLY) = 3
10206 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`]\0\0004\0\0\0\344"..., 512) = 512
10206 fstat64(3, {st_mode=S_IFREG|0755, st_size=146972, ...}) = 0
10206 mmap2(NULL, 146864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xba7000
10206 mmap2(0xbca000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x23) = 0xbca000
10206 close(3) = 0
10206 open("/lib/libdl.so.2", O_RDONLY) = 3
10206 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`\272\325\0004\0\0\0("..., 512) = 512
10206 fstat64(3, {st_mode=S_IFREG|0755, st_size=20464, ...}) = 0
10206 mmap2(NULL, 16500, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x110000
10206 mmap2(0x113000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2) = 0x113000
10206 close(3) = 0
10206 open("/lib/libgcc_s.so.1", O_RDONLY) = 3
10206 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0@\377M\0004\0\0\0x"..., 512) = 512
10206 fstat64(3, {st_mode=S_IFREG|0755, st_size=172368, ...}) = 0
10206 mmap2(NULL, 173832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x1b6000
10206 mmap2(0x1e0000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x29) = 0x1e0000
10206 close(3) = 0
10206 open("/lib/libc.so.6", O_RDONLY) = 3
10206 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300K\275\0004\0\0\0\354"..., 512) = 512
10206 fstat64(3, {st_mode=S_IFREG|0755, st_size=1803428, ...}) = 0
10206 mmap2(NULL, 1509672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7d5000
10206 mmap2(0x940000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16b) = 0x940000
10206 mmap2(0x943000, 10536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x943000
10206 close(3) = 0
10206 open("/lib/libnsl.so.1", O_RDONLY) = 3
10206 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\260q\365\0074\0\0\0\370"..., 512) = 512
10206 fstat64(3, {st_mode=S_IFREG|0755, st_size=117912, ...}) = 0
10206 mmap2(NULL, 108520, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x98b000
10206 mmap2(0x9a2000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16) = 0x9a2000
10206 mmap2(0x9a4000, 6120, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x9a4000
10206 close(3) = 0
10206 open("/usr/lib/libgssglue.so.1", O_RDONLY) = 3
10206 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\260\24\0\0004\0\0\0\274"..., 512) = 512
10206 fstat64(3, {st_mode=S_IFREG|0755, st_size=31516, ...}) = 0
10206 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f88000
10206 mmap2(NULL, 34472, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xd1b000
10206 mmap2(0xd23000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7) = 0xd23000
10206 close(3) = 0
10206 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f87000
10206 set_thread_area({entry_number:-1 -> 6, base_addr:0xb7f876c0, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
10206 mprotect(0x9a2000, 4096, PROT_READ) = 0
10206 mprotect(0x940000, 8192, PROT_READ) = 0
10206 mprotect(0x113000, 4096, PROT_READ) = 0
10206 mprotect(0x298000, 4096, PROT_READ) = 0
10206 mprotect(0xb78000, 4096, PROT_READ) = 0
10206 munmap(0xb7f8a000, 134654) = 0
10206 set_tid_address(0xb7f87728) = 10206
10206 set_robust_list(0xb7f87730, 0xc) = 0
10206 futex(0xbfe0dee0, FUTEX_WAKE_PRIVATE, 1) = 0
10206 futex(0xbfe0dee0, 0x189 /* FUTEX_??? */, 1, NULL, bfe0def0) = -1 EAGAIN (Resource temporarily unavailable)
10206 rt_sigaction(SIGRTMIN, {0x285340, [], SA_SIGINFO}, NULL, 8) = 0
10206 rt_sigaction(SIGRT_1, {0x285840, [], SA_RESTART|SA_SIGINFO}, NULL, 8) = 0
10206 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
10206 getrlimit(RLIMIT_STACK, {rlim_cur=10240*1024, rlim_max=RLIM_INFINITY}) = 0
10206 uname({sys="Linux", node="FMI2081.fic.ffg", ...}) = 0
10206 time(NULL) = 1251470808
10206 rt_sigprocmask(SIG_BLOCK, ~[ILL TRAP ABRT BUS FPE SEGV RTMIN RT_1], NULL, 8) = 0
10206 brk(0) = 0x1cfa000
10206 brk(0x1d1b000) = 0x1d1b000
10206 open("/etc/sysconfig/autofs", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 3
10206 fcntl64(3, F_GETFD) = 0x1 (flags FD_CLOEXEC)
10206 fstat64(3, {st_mode=S_IFREG|0644, st_size=3647, ...}) = 0
10206 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7faa000
10206 read(3, "#\n# Define default options for au"..., 4096) = 3647
10206 read(3, ""..., 4096) = 0
10206 close(3) = 0
10206 munmap(0xb7faa000, 4096) = 0
10206 uname({sys="Linux", node="FMI2081.fic.ffg", ...}) = 0
10206 geteuid32() = 0
10206 open("/dev/autofs", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 3
10206 fcntl64(3, F_GETFD) = 0x1 (flags FD_CLOEXEC)
10206 ioctl(3, 0xc0189371, 0xbfe0dbe8) = 0
10206 getpgrp() = 10205
10206 gettimeofday({1251470808, 304724}, NULL) = 0
10206 mkdir("/tmp/autosarR8Y", 0700) = 0
10206 pipe([4, 5]) = 0
10206 mount("automount", "/tmp/autosarR8Y", "autofs", MS_MGC_VAL, "fd=5,pgrp=10205,minproto=3,maxpr"...) = 0
10206 close(5) = 0
10206 stat64("/tmp/autosarR8Y", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10206 ioctl(3, 0xc0189374, 0x1cfa008) = 0
10206 ioctl(3, 0xc0189379, 0xbfe0dbf8) = 0
10206 ioctl(3, 0xc0189372, 0xbfe0dbf8) = 0
10206 ioctl(3, 0xc0189373, 0xbfe0dbf8) = 0
10206 ioctl(3, 0xc0189375, 0xbfe0dbf8) = 0
10206 oldumount("/tmp/autosarR8Y") = 0
10206 close(4) = 0
10206 rmdir("/tmp/autosarR8Y") = 0
10206 setrlimit(RLIMIT_NOFILE, {rlim_cur=10*1024, rlim_max=10*1024}) = 0
10206 setrlimit(RLIMIT_CORE, {rlim_cur=RLIM_INFINITY, rlim_max=RLIM_INFINITY}) = 0
10206 chdir("/") = 0
10206 pipe([4, 5]) = 0
10206 fcntl64(4, F_GETFD) = 0
10206 fcntl64(4, F_SETFD, FD_CLOEXEC) = 0
10206 fcntl64(5, F_SETFD, FD_CLOEXEC) = 0
10206 open("/var/run/autofs-running.10206", O_WRONLY|O_CREAT|O_LARGEFILE|O_CLOEXEC, 0) = 6
10206 fcntl64(6, F_GETFD) = 0x1 (flags FD_CLOEXEC)
10206 close(6) = 0
10206 link("/var/run/autofs-running.10206", "/var/run/autofs-running") = 0
10206 unlink("/var/run/autofs-running.10206") = 0
10206 open("/var/run/autofs-running", O_RDWR|O_LARGEFILE|O_CLOEXEC) = 6
10206 write(6, "10206\n"..., 6) = 6
10206 close(6) = 0
10206 write(2, "Starting automounter version 5.0."..., 61) = 61
10206 write(2, "\n"..., 1) = 1
10206 write(2, "using kernel protocol version 5.0"..., 34) = 34
10206 write(2, "\n"..., 1) = 1
10206 mmap2(NULL, 69632, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0xb7f9a000
10206 mprotect(0xb7f9a000, 4096, PROT_NONE) = 0
10206 clone(child_stack=0xb7faa494, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0xb7faabd8, {entry_number:6, base_addr:0xb7faab70, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}, child_tidptr=0xb7faabd8) = 10207
10207 set_robust_list(0xb7faabe0, 0xc) = 0
10207 futex(0xf60a24, FUTEX_WAIT_PRIVATE, 1, NULL <unfinished ...>
10206 mmap2(NULL, 69632, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0xb7f76000
10206 mprotect(0xb7f76000, 4096, PROT_NONE) = 0
10206 clone(child_stack=0xb7f86494, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0xb7f86bd8, {entry_number:6, base_addr:0xb7f86b70, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}, child_tidptr=0xb7f86bd8) = 10208
10208 set_robust_list(0xb7f86be0, 0xc) = 0
10208 gettimeofday({1251470808, 309989}, NULL) = 0
10208 clock_gettime(CLOCK_REALTIME, {1251470808, 310035523}) = 0
10208 futex(0xf60964, FUTEX_WAIT_PRIVATE, 1, {0, 999953477} <unfinished ...>
10206 futex(0x114068, FUTEX_WAKE_PRIVATE, 2147483647) = 0
10206 open("/etc/ld.so.cache", O_RDONLY) = 6
10206 fstat64(6, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10206 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 6, 0) = 0xb7f55000
10206 close(6) = 0
10206 open("/usr/lib/libxml2.so", O_RDONLY) = 6
10206 read(6, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`\322\233\0004\0\0\0\20"..., 512) = 512
10206 fstat64(6, {st_mode=S_IFREG|0755, st_size=1292224, ...}) = 0
10206 mmap2(NULL, 1297236, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x29c000
10206 mmap2(0x3d3000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x136) = 0x3d3000
10206 mmap2(0x3d8000, 2900, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x3d8000
10206 close(6) = 0
10206 open("/lib/libz.so.1", O_RDONLY) = 6
10206 read(6, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 \6\330\0004\0\0\0\0"..., 512) = 512
10206 fstat64(6, {st_mode=S_IFREG|0755, st_size=75440, ...}) = 0
10206 mmap2(NULL, 76688, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0xd65000
10206 mmap2(0xd77000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x11) = 0xd77000
10206 close(6) = 0
10206 open("/lib/libm.so.6", O_RDONLY) = 6
10206 read(6, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`D\323\0004\0\0\0<"..., 512) = 512
10206 fstat64(6, {st_mode=S_IFREG|0755, st_size=206204, ...}) = 0
10206 mmap2(NULL, 159872, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0xe74000
10206 mmap2(0xe9a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x25) = 0xe9a000
10206 close(6) = 0
10206 mprotect(0xe9a000, 4096, PROT_READ) = 0
10206 munmap(0xb7f55000, 134654) = 0
10206 open("/etc/ld.so.cache", O_RDONLY) = 6
10206 fstat64(6, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10206 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 6, 0) = 0xb7f55000
10206 close(6) = 0
10206 open("/lib/tls/i686/sse2/libitirpc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 stat64("/lib/tls/i686/sse2", 0xbfe0d6f8) = -1 ENOENT (No such file or directory)
10206 open("/lib/tls/i686/libitirpc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 stat64("/lib/tls/i686", 0xbfe0d6f8) = -1 ENOENT (No such file or directory)
10206 open("/lib/tls/sse2/libitirpc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 stat64("/lib/tls/sse2", 0xbfe0d6f8) = -1 ENOENT (No such file or directory)
10206 open("/lib/tls/libitirpc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 stat64("/lib/tls", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
10206 open("/lib/i686/sse2/libitirpc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 stat64("/lib/i686/sse2", 0xbfe0d6f8) = -1 ENOENT (No such file or directory)
10206 open("/lib/i686/libitirpc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 stat64("/lib/i686", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
10206 open("/lib/sse2/libitirpc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 stat64("/lib/sse2", 0xbfe0d6f8) = -1 ENOENT (No such file or directory)
10206 open("/lib/libitirpc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 stat64("/lib", {st_mode=S_IFDIR|0755, st_size=12288, ...}) = 0
10206 open("/usr/lib/tls/i686/sse2/libitirpc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 stat64("/usr/lib/tls/i686/sse2", 0xbfe0d6f8) = -1 ENOENT (No such file or directory)
10206 open("/usr/lib/tls/i686/libitirpc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 stat64("/usr/lib/tls/i686", 0xbfe0d6f8) = -1 ENOENT (No such file or directory)
10206 open("/usr/lib/tls/sse2/libitirpc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 stat64("/usr/lib/tls/sse2", 0xbfe0d6f8) = -1 ENOENT (No such file or directory)
10206 open("/usr/lib/tls/libitirpc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 stat64("/usr/lib/tls", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
10206 open("/usr/lib/i686/sse2/libitirpc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 stat64("/usr/lib/i686/sse2", 0xbfe0d6f8) = -1 ENOENT (No such file or directory)
10206 open("/usr/lib/i686/libitirpc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 stat64("/usr/lib/i686", 0xbfe0d6f8) = -1 ENOENT (No such file or directory)
10206 open("/usr/lib/sse2/libitirpc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 stat64("/usr/lib/sse2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
10206 open("/usr/lib/libitirpc.so", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 stat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=135168, ...}) = 0
10206 munmap(0xb7f55000, 134654) = 0
10206 open("/etc/ld.so.cache", O_RDONLY) = 6
10206 fstat64(6, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10206 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 6, 0) = 0xb7f55000
10206 close(6) = 0
10206 open("/lib/tls/libitirpc.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 open("/lib/i686/libitirpc.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 open("/lib/libitirpc.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 open("/usr/lib/tls/libitirpc.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 open("/usr/lib/sse2/libitirpc.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 open("/usr/lib/libitirpc.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 munmap(0xb7f55000, 134654) = 0
10206 open("/etc/nsswitch.conf", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 6
10206 fcntl64(6, F_GETFD) = 0x1 (flags FD_CLOEXEC)
10206 ioctl(6, SNDCTL_TMR_TIMEBASE or TCGETS, 0xbfe07438) = -1 ENOTTY (Inappropriate ioctl for device)
10206 fstat64(6, {st_mode=S_IFREG|0644, st_size=1696, ...}) = 0
10206 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f75000
10206 read(6, "#\n# /etc/nsswitch.conf\n#\n# An exa"..., 8192) = 1696
10206 read(6, ""..., 4096) = 0
10206 read(6, ""..., 8192) = 0
10206 ioctl(6, SNDCTL_TMR_TIMEBASE or TCGETS, 0xbfe07438) = -1 ENOTTY (Inappropriate ioctl for device)
10206 close(6) = 0
10206 munmap(0xb7f75000, 4096) = 0
10206 write(2, "lookup_nss_read_master: reading m"..., 56) = 56
10206 write(2, "\n"..., 1) = 1
10206 open("/usr/lib/autofs/lookup_files.so", O_RDONLY) = 6
10206 read(6, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300>\0\0004\0\0\0\274"..., 512) = 512
10206 fstat64(6, {st_mode=S_IFREG|0755, st_size=107292, ...}) = 0
10206 mmap2(NULL, 113928, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x115000
10206 mmap2(0x12f000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x19) = 0x12f000
10206 mmap2(0x130000, 3336, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x130000
10206 close(6) = 0
10206 access("/etc/auto.master", R_OK) = 0
10206 open("/usr/lib/autofs/parse_sun.so", O_RDONLY) = 6
10206 read(6, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320Q\0\0004\0\0\0\250"..., 512) = 512
10206 fstat64(6, {st_mode=S_IFREG|0755, st_size=146400, ...}) = 0
10206 mmap2(NULL, 149704, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x721000
10206 mmap2(0x744000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x23) = 0x744000
10206 mmap2(0x745000, 2248, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x745000
10206 close(6) = 0
10206 uname({sys="Linux", node="FMI2081.fic.ffg", ...}) = 0
10206 write(2, "parse_init: parse(sun): init gath"..., 60) = 60
10206 write(2, "\n"..., 1) = 1
10206 open("/usr/lib/autofs/mount_nfs.so", O_RDONLY) = 6
10206 read(6, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320\"\0\0004\0\0\0\330"..., 512) = 512
10206 fstat64(6, {st_mode=S_IFREG|0755, st_size=44560, ...}) = 0
10206 mmap2(NULL, 47364, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0xb20000
10206 mmap2(0xb2b000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0xa) = 0xb2b000
10206 close(6) = 0
10206 open("/usr/lib/autofs/mount_bind.so", O_RDONLY) = 6
10206 read(6, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\200\f\0\0004\0\0\0\204"..., 512) = 512
10206 fstat64(6, {st_mode=S_IFREG|0755, st_size=10172, ...}) = 0
10206 mmap2(NULL, 12956, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0xef7000
10206 mmap2(0xefa000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x2) = 0xefa000
10206 close(6) = 0
10206 mkdir("/tmp/auto23mV3q", 0700) = 0
10206 mkdir("/tmp/autou5q1YS", 0700) = 0
10206 lstat64("/tmp/auto23mV3q", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
10206 readlink("/etc/mtab", 0xbfe084e6, 4096) = -1 EINVAL (Invalid argument)
10206 pipe([6, 7]) = 0
10206 fcntl64(6, F_GETFD) = 0
10206 fcntl64(6, F_SETFD, FD_CLOEXEC) = 0
10206 fcntl64(7, F_SETFD, FD_CLOEXEC) = 0
10206 rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], ~[ILL TRAP ABRT BUS FPE KILL SEGV STOP RTMIN RT_1], 8) = 0
10206 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7f87728) = 10209
10209 rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
10209 rt_sigaction(SIGHUP, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGINT, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGQUIT, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGILL, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGTRAP, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGABRT, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGBUS, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGFPE, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGUSR1, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGSEGV, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGUSR2, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGPIPE, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGALRM, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGTERM, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGSTKFLT, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGCHLD, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGCONT, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGTSTP, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGTTIN, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGTTOU, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGURG, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGXCPU, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGXFSZ, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGVTALRM, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGPROF, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGWINCH, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGIO, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGPWR, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGSYS, {0x1, [], 0}, NULL, 8) = 0
10206 rt_sigprocmask(SIG_SETMASK, ~[ILL TRAP ABRT BUS FPE KILL SEGV STOP RTMIN RT_1], <unfinished ...>
10209 rt_sigaction(SIGRT_2, {0x1, [], 0}, <unfinished ...>
10206 <... rt_sigprocmask resumed> NULL, 8) = 0
10209 <... rt_sigaction resumed> NULL, 8) = 0
10206 close(7 <unfinished ...>
10209 rt_sigaction(SIGRT_3, {0x1, [], 0}, <unfinished ...>
10206 <... close resumed> ) = 0
10209 <... rt_sigaction resumed> NULL, 8) = 0
10206 poll([{fd=6, events=POLLIN}], 1, -1 <unfinished ...>
10209 rt_sigaction(SIGRT_4, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_5, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_6, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_7, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_8, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_9, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_10, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_11, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_12, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_13, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_14, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_15, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_16, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_17, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_18, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_19, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_20, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_21, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_22, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_23, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_24, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_25, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_26, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_27, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_28, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_29, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_30, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_31, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_32, {0x1, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGHUP, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGINT, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGQUIT, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGILL, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGTRAP, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGABRT, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGBUS, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGFPE, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGUSR1, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGSEGV, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGUSR2, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGPIPE, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGALRM, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGTERM, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGSTKFLT, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGCHLD, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGCONT, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGTSTP, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGTTIN, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGTTOU, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGURG, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGXCPU, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGXFSZ, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGVTALRM, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGPROF, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGWINCH, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGIO, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGPWR, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGSYS, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_2, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_3, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_4, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_5, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_6, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_7, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_8, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_9, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_10, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_11, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_12, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_13, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_14, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_15, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_16, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_17, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_18, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_19, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_20, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_21, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_22, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_23, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_24, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_25, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_26, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_27, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_28, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_29, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_30, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_31, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGRT_32, {SIG_DFL, [], 0}, NULL, 8) = 0
10209 rt_sigaction(SIGUSR1, {0x1, [], SA_RESTART}, NULL, 8) = 0
10209 rt_sigaction(SIGUSR2, {0x1, [], SA_RESTART}, NULL, 8) = 0
10209 rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
10209 close(6) = 0
10209 dup2(7, 1) = 1
10209 dup2(7, 2) = 2
10209 close(7) = 0
10209 execve("/bin/mount", ["/bin/mount", "-n", "--bind", "/tmp/auto23mV3q", "/tmp/autou5q1YS"], [/* 54 vars */]) = 0
10209 brk(0) = 0x23ad000
10209 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
10209 open("/etc/ld.so.cache", O_RDONLY) = 3
10209 fstat64(3, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10209 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb80a7000
10209 close(3) = 0
10209 open("/lib/libblkid.so.1", O_RDONLY) = 3
10209 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0@\240J\0004\0\0\0\34"..., 512) = 512
10209 fstat64(3, {st_mode=S_IFREG|0755, st_size=46796, ...}) = 0
10209 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb80a6000
10209 mmap2(NULL, 43928, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x1d0000
10209 mmap2(0x1da000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa) = 0x1da000
10209 close(3) = 0
10209 open("/lib/libuuid.so.1", O_RDONLY) = 3
10209 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P_8\0004\0\0\0\370"..., 512) = 512
10209 fstat64(3, {st_mode=S_IFREG|0755, st_size=15864, ...}) = 0
10209 mmap2(NULL, 12820, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x20e000
10209 mmap2(0x211000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3) = 0x211000
10209 close(3) = 0
10209 open("/lib/libselinux.so.1", O_RDONLY) = 3
10209 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0000a\334\0004\0\0\0P"..., 512) = 512
10209 fstat64(3, {st_mode=S_IFREG|0755, st_size=118312, ...}) = 0
10209 mmap2(NULL, 121836, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x72c000
10209 mmap2(0x748000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b) = 0x748000
10209 close(3) = 0
10209 open("/lib/libsepol.so.1", O_RDONLY) = 3
10209 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\200\277\23\0004\0\0\0\0"..., 512) = 512
10209 fstat64(3, {st_mode=S_IFREG|0755, st_size=237488, ...}) = 0
10209 mmap2(NULL, 236096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x35b000
10209 mmap2(0x394000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x39) = 0x394000
10209 close(3) = 0
10209 open("/lib/libc.so.6", O_RDONLY) = 3
10209 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300K\275\0004\0\0\0\354"..., 512) = 512
10209 fstat64(3, {st_mode=S_IFREG|0755, st_size=1803428, ...}) = 0
10209 mmap2(NULL, 1509672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x395000
10209 mmap2(0x500000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16b) = 0x500000
10209 mmap2(0x503000, 10536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x503000
10209 close(3) = 0
10209 open("/lib/libdl.so.2", O_RDONLY) = 3
10209 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`\272\325\0004\0\0\0("..., 512) = 512
10209 fstat64(3, {st_mode=S_IFREG|0755, st_size=20464, ...}) = 0
10209 mmap2(NULL, 16500, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xfce000
10209 mmap2(0xfd1000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2) = 0xfd1000
10209 close(3) = 0
10209 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb80a5000
10209 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb80a4000
10209 set_thread_area({entry_number:-1 -> 6, base_addr:0xb80a4750, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
10209 mprotect(0xfd1000, 4096, PROT_READ) = 0
10209 mprotect(0x500000, 8192, PROT_READ) = 0
10209 mprotect(0x748000, 4096, PROT_READ) = 0
10209 mprotect(0x176000, 4096, PROT_READ) = 0
10209 munmap(0xb80a7000, 134654) = 0
10209 brk(0) = 0x23ad000
10209 brk(0x23ce000) = 0x23ce000
10209 open("/etc/selinux/config", O_RDONLY|O_LARGEFILE) = 3
10209 fstat64(3, {st_mode=S_IFREG|0644, st_size=439, ...}) = 0
10209 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb80c7000
10209 read(3, "\n# This file controls the state o"..., 4096) = 439
10209 read(3, ""..., 4096) = 0
10209 close(3) = 0
10209 munmap(0xb80c7000, 4096) = 0
10209 statfs64("/selinux", 84, {f_type=0xf97cff8c, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=4096}) = 0
10209 stat64("/selinux/class", {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
10209 open("/selinux/mls", O_RDONLY|O_LARGEFILE) = 3
10209 read(3, "1"..., 19) = 1
10209 close(3) = 0
10209 open("/usr/lib/locale/locale-archive", O_RDONLY|O_LARGEFILE) = 3
10209 fstat64(3, {st_mode=S_IFREG|0644, st_size=84748720, ...}) = 0
10209 mmap2(NULL, 2097152, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7ea4000
10209 close(3) = 0
10209 umask(022) = 022
10209 open("/dev/null", O_RDWR|O_LARGEFILE) = 3
10209 close(3) = 0
10209 getuid32() = 0
10209 geteuid32() = 0
10209 readlink("/tmp", 0xbfec97eb, 4096) = -1 EINVAL (Invalid argument)
10209 readlink("/tmp/auto23mV3q", 0xbfec97eb, 4096) = -1 EINVAL (Invalid argument)
10209 rt_sigprocmask(SIG_BLOCK, ~[TRAP SEGV RTMIN RT_1], NULL, 8) = 0
10209 mount("/tmp/auto23mV3q", "/tmp/autou5q1YS", 0x63e650, MS_MGC_VAL|MS_BIND, NULL) = 0
10209 readlink("/tmp", 0xbfec963b, 4096) = -1 EINVAL (Invalid argument)
10209 readlink("/tmp/autou5q1YS", 0xbfec963b, 4096) = -1 EINVAL (Invalid argument)
10209 rt_sigprocmask(SIG_UNBLOCK, ~[TRAP SEGV RTMIN RT_1], NULL, 8) = 0
10209 exit_group(0) = ?
10206 <... poll resumed> ) = 1 ([{fd=6, revents=POLLHUP}])
10206 read(6, ""..., 2047) = 0
10206 close(6) = 0
10206 waitpid(10209, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0) = 10209
10206 rt_sigprocmask(SIG_SETMASK, ~[ILL TRAP ABRT BUS FPE KILL SEGV STOP RTMIN RT_1], NULL, 8) = 0
10206 lstat64("/tmp/autou5q1YS", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
10206 readlink("/etc/mtab", 0xbfe084e4, 4096) = -1 EINVAL (Invalid argument)
10206 pipe([6, 7]) = 0
10206 fcntl64(6, F_SETFD, FD_CLOEXEC) = 0
10206 fcntl64(7, F_SETFD, FD_CLOEXEC) = 0
10206 rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], ~[ILL TRAP ABRT BUS FPE KILL SEGV STOP RTMIN RT_1], 8) = 0
10206 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7f87728) = 10210
10206 rt_sigprocmask(SIG_SETMASK, ~[ILL TRAP ABRT BUS FPE KILL SEGV STOP RTMIN RT_1], NULL, 8) = 0
10210 rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], <unfinished ...>
10206 close(7 <unfinished ...>
10210 <... rt_sigprocmask resumed> NULL, 8) = 0
10206 <... close resumed> ) = 0
10206 poll([{fd=6, events=POLLIN}], 1, 12000 <unfinished ...>
10210 rt_sigaction(SIGHUP, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGINT, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGQUIT, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGILL, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGTRAP, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGABRT, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGBUS, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGFPE, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGUSR1, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGSEGV, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGUSR2, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGPIPE, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGALRM, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGTERM, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGSTKFLT, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGCHLD, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGCONT, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGTSTP, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGTTIN, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGTTOU, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGURG, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGXCPU, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGXFSZ, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGVTALRM, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGPROF, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGWINCH, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGIO, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGPWR, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGSYS, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_2, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_3, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_4, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_5, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_6, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_7, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_8, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_9, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_10, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_11, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_12, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_13, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_14, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_15, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_16, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_17, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_18, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_19, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_20, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_21, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_22, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_23, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_24, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_25, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_26, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_27, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_28, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_29, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_30, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_31, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_32, {0x1, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGHUP, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGINT, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGQUIT, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGILL, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGTRAP, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGABRT, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGBUS, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGFPE, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGUSR1, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGSEGV, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGUSR2, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGPIPE, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGALRM, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGTERM, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGSTKFLT, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGCHLD, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGCONT, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGTSTP, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGTTIN, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGTTOU, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGURG, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGXCPU, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGXFSZ, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGVTALRM, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGPROF, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGWINCH, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGIO, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGPWR, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGSYS, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_2, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_3, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_4, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_5, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_6, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_7, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_8, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_9, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_10, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_11, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_12, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_13, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_14, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_15, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_16, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_17, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_18, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_19, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_20, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_21, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_22, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_23, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_24, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_25, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_26, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_27, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_28, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_29, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_30, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_31, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGRT_32, {SIG_DFL, [], 0}, NULL, 8) = 0
10210 rt_sigaction(SIGUSR1, {0x1, [], SA_RESTART}, NULL, 8) = 0
10210 rt_sigaction(SIGUSR2, {0x1, [], SA_RESTART}, NULL, 8) = 0
10210 rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
10210 close(6) = 0
10210 dup2(7, 1) = 1
10210 dup2(7, 2) = 2
10210 close(7) = 0
10210 execve("/bin/umount", ["/bin/umount", "-n", "/tmp/autou5q1YS"], [/* 54 vars */]) = 0
10210 brk(0) = 0x761000
10210 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
10210 open("/etc/ld.so.cache", O_RDONLY) = 3
10210 fstat64(3, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10210 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7f4a000
10210 close(3) = 0
10210 open("/lib/libblkid.so.1", O_RDONLY) = 3
10210 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0@\240J\0004\0\0\0\34"..., 512) = 512
10210 fstat64(3, {st_mode=S_IFREG|0755, st_size=46796, ...}) = 0
10210 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f49000
10210 mmap2(NULL, 43928, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x156000
10210 mmap2(0x160000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa) = 0x160000
10210 close(3) = 0
10210 open("/lib/libuuid.so.1", O_RDONLY) = 3
10210 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P_8\0004\0\0\0\370"..., 512) = 512
10210 fstat64(3, {st_mode=S_IFREG|0755, st_size=15864, ...}) = 0
10210 mmap2(NULL, 12820, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xd92000
10210 mmap2(0xd95000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3) = 0xd95000
10210 close(3) = 0
10210 open("/lib/libc.so.6", O_RDONLY) = 3
10210 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300K\275\0004\0\0\0\354"..., 512) = 512
10210 fstat64(3, {st_mode=S_IFREG|0755, st_size=1803428, ...}) = 0
10210 mmap2(NULL, 1509672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x946000
10210 mmap2(0xab1000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16b) = 0xab1000
10210 mmap2(0xab4000, 10536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xab4000
10210 close(3) = 0
10210 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f48000
10210 set_thread_area({entry_number:-1 -> 6, base_addr:0xb7f48700, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
10210 mprotect(0xab1000, 8192, PROT_READ) = 0
10210 mprotect(0x6fc000, 4096, PROT_READ) = 0
10210 munmap(0xb7f4a000, 134654) = 0
10210 brk(0) = 0x761000
10210 brk(0x782000) = 0x782000
10210 open("/usr/lib/locale/locale-archive", O_RDONLY|O_LARGEFILE) = 3
10210 fstat64(3, {st_mode=S_IFREG|0644, st_size=84748720, ...}) = 0
10210 mmap2(NULL, 2097152, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7d48000
10210 close(3) = 0
10210 umask(022) = 022
10210 getuid32() = 0
10210 geteuid32() = 0
10210 readlink("/tmp", 0xbfb9ff3b, 4096) = -1 EINVAL (Invalid argument)
10210 readlink("/tmp/autou5q1YS", 0xbfb9ff3b, 4096) = -1 EINVAL (Invalid argument)
10210 umask(077) = 022
10210 open("/etc/mtab", O_RDONLY|O_LARGEFILE) = 3
10210 umask(022) = 077
10210 fstat64(3, {st_mode=S_IFREG|0644, st_size=408, ...}) = 0
10210 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f6a000
10210 read(3, "/dev/mapper/vg_fmi2081-lv_root / "..., 4096) = 408
10210 read(3, ""..., 4096) = 0
10210 close(3) = 0
10210 munmap(0xb7f6a000, 4096) = 0
10210 stat64("/sbin/umount./tmp/autou5q1YS", 0xbfba1df0) = -1 ENOENT (No such file or directory)
10210 oldumount("/tmp/autou5q1YS") = 0
10210 exit_group(0) = ?
10206 <... poll resumed> ) = 1 ([{fd=6, revents=POLLHUP}])
10206 read(6, ""..., 2047) = 0
10206 close(6) = 0
10206 waitpid(10210, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0) = 10210
10206 rt_sigprocmask(SIG_SETMASK, ~[ILL TRAP ABRT BUS FPE KILL SEGV STOP RTMIN RT_1], NULL, 8) = 0
10206 rmdir("/tmp/auto23mV3q") = 0
10206 rmdir("/tmp/autou5q1YS") = 0
10206 open("/dev/urandom", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 6
10206 fcntl64(6, F_GETFD) = 0x1 (flags FD_CLOEXEC)
10206 read(6, "\322\322\322\227"..., 4) = 4
10206 close(6) = 0
10206 open("/etc/auto.master", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 6
10206 fcntl64(6, F_GETFD) = 0x1 (flags FD_CLOEXEC)
10206 fstat64(6, {st_mode=S_IFREG|0644, st_size=692, ...}) = 0
10206 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f75000
10206 read(6, "#\n# Sample auto.master file\n# Thi"..., 4096) = 692
10206 write(2, "lookup_read_master: lookup(file):"..., 50) = 50
10206 write(2, "\n"..., 1) = 1
10206 ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
10206 ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
10206 write(2, "lookup_read_master: lookup(file):"..., 49) = 49
10206 write(2, "\n"..., 1) = 1
10206 ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
10206 ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
10206 write(2, "lookup_read_master: lookup(file):"..., 50) = 50
10206 write(2, "\n"..., 1) = 1
10206 ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
10206 ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
10206 brk(0x1d3c000) = 0x1d3c000
10206 write(2, "lookup_read_master: lookup(file):"..., 57) = 57
10206 write(2, "\n"..., 1) = 1
10206 open("/etc/nsswitch.conf", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 7
10206 fstat64(7, {st_mode=S_IFREG|0644, st_size=1696, ...}) = 0
10206 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f74000
10206 read(7, "#\n# /etc/nsswitch.conf\n#\n# An exa"..., 8192) = 1696
10206 read(7, ""..., 4096) = 0
10206 read(7, ""..., 8192) = 0
10206 ioctl(7, SNDCTL_TMR_TIMEBASE or TCGETS, 0xbfe06188) = -1 ENOTTY (Inappropriate ioctl for device)
10206 close(7) = 0
10206 munmap(0xb7f74000, 4096) = 0
10206 write(2, "lookup_nss_read_master: reading m"..., 56) = 56
10206 write(2, "\n"..., 1) = 1
10206 access("/etc/auto.master", R_OK) = 0
10206 write(2, "parse_init: parse(sun): init gath"..., 60) = 60
10206 write(2, "\n"..., 1) = 1
10206 write(2, "lookup_nss_read_master: reading m"..., 58) = 58
10206 write(2, "\n"..., 1) = 1
10206 open("/usr/lib/autofs/lookup_nisplus.so", O_RDONLY) = 7
10206 read(7, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\220>\0\0004\0\0\0\334"..., 512) = 512
10206 fstat64(7, {st_mode=S_IFREG|0755, st_size=101948, ...}) = 0
10206 mmap2(NULL, 108584, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x961000
10206 mmap2(0x97a000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x18) = 0x97a000
10206 mmap2(0x97b000, 2088, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x97b000
10206 close(7) = 0
10206 uname({sys="Linux", node="FMI2081.fic.ffg", ...}) = 0
10206 write(2, "parse_init: parse(sun): init gath"..., 60) = 60
10206 write(2, "\n"..., 1) = 1
10206 gettimeofday({1251470808, 353422}, NULL) = 0
10206 stat64("/var/nis/NIS_COLD_START", 0xbfe0c6e4) = -1 ENOENT (No such file or directory)
10206 open("/var/nis/NIS_COLD_START", O_RDONLY) = -1 ENOENT (No such file or directory)
10206 write(2, "lookup_read_master: lookup(nisplu"..., 75) = 75
10206 write(2, "\n"..., 1) = 1
10206 munmap(0x961000, 108584) = 0
10206 write(2, "lookup(file): failed to read incl"..., 60) = 60
10206 write(2, "\n"..., 1) = 1
10206 read(6, ""..., 4096) = 0
10206 close(6) = 0
10206 munmap(0xb7f75000, 4096) = 0
10206 munmap(0xef7000, 12956) = 0
10206 munmap(0xb20000, 47364) = 0
10206 munmap(0x721000, 149704) = 0
10206 munmap(0x115000, 113928) = 0
10206 fstat64(-1, 0xbfe0dc2c) = -1 EBADF (Bad file descriptor)
10206 write(2, "master_do_mount: mounting /misc"..., 31) = 31
10206 write(2, "\n"..., 1) = 1
10206 mmap2(NULL, 10489856, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0xb7575000
10206 mprotect(0xb7575000, 4096, PROT_NONE) = 0
10206 clone(child_stack=0xb7f75494, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0xb7f75bd8, {entry_number:6, base_addr:0xb7f75b70, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}, child_tidptr=0xb7f75bd8) = 10211
10211 set_robust_list(0xb7f75be0, 0xc) = 0
10211 mmap2(NULL, 2097152, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0xb7375000
10211 munmap(0xb7375000, 569344) = 0
10211 munmap(0xb7500000, 479232) = 0
10211 mprotect(0xb7400000, 135168, PROT_READ|PROT_WRITE) = 0
10211 futex(0xbfe0dc94, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10206 futex(0xbfe0dc94, FUTEX_WAKE_PRIVATE, 1) = 1
10211 <... futex resumed> ) = 0
10211 pipe([6, 7]) = 0
10211 fcntl64(6, F_SETFD, FD_CLOEXEC) = 0
10211 fcntl64(7, F_SETFD, FD_CLOEXEC) = 0
10211 pipe([8, 9]) = 0
10211 fcntl64(8, F_SETFD, FD_CLOEXEC) = 0
10211 fcntl64(9, F_SETFD, FD_CLOEXEC) = 0
10211 write(2, "automount_path_to_fifo: fifo name"..., 59) = 59
10211 write(2, "\n"..., 1) = 1
10211 unlink("/var/run/autofs.fifo-misc") = -1 ENOENT (No such file or directory)
10211 mknod("/var/run/autofs.fifo-misc", S_IFIFO|0600) = 0
10211 open("/var/run/autofs.fifo-misc", O_RDWR|O_NONBLOCK|O_LARGEFILE) = 10
10211 fcntl64(10, F_SETFD, FD_CLOEXEC) = 0
10211 time(NULL) = 1251470808
10211 write(2, "lookup_nss_read_map: reading map "..., 52) = 52
10211 write(2, "\n"..., 1) = 1
10211 stat64("/etc/auto.misc", {st_mode=S_IFREG|0644, st_size=786, ...}) = 0
10211 open("/usr/lib/autofs/lookup_file.so", O_RDONLY) = 11
10211 read(11, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300>\0\0004\0\0\0\274"..., 512) = 512
10211 fstat64(11, {st_mode=S_IFREG|0755, st_size=107292, ...}) = 0
10211 mmap2(NULL, 113928, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 11, 0) = 0x4e4000
10211 mmap2(0x4fe000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 11, 0x19) = 0x4fe000
10211 mmap2(0x4ff000, 3336, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x4ff000
10211 close(11) = 0
10211 access("/etc/auto.misc", R_OK) = 0
10211 open("/usr/lib/autofs/parse_sun.so", O_RDONLY) = 11
10211 read(11, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320Q\0\0004\0\0\0\250"..., 512) = 512
10211 fstat64(11, {st_mode=S_IFREG|0755, st_size=146400, ...}) = 0
10211 mmap2(NULL, 149704, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 11, 0) = 0x544000
10211 mmap2(0x567000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 11, 0x23) = 0x567000
10211 mmap2(0x568000, 2248, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x568000
10211 close(11) = 0
10211 uname({sys="Linux", node="FMI2081.fic.ffg", ...}) = 0
10211 write(2, "parse_init: parse(sun): init gath"..., 60) = 60
10211 write(2, "\n"..., 1) = 1
10211 open("/usr/lib/autofs/mount_nfs.so", O_RDONLY) = 11
10211 read(11, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320\"\0\0004\0\0\0\330"..., 512) = 512
10211 fstat64(11, {st_mode=S_IFREG|0755, st_size=44560, ...}) = 0
10211 mmap2(NULL, 47364, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 11, 0) = 0x22a000
10211 mmap2(0x235000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 11, 0xa) = 0x235000
10211 close(11) = 0
10211 open("/usr/lib/autofs/mount_bind.so", O_RDONLY) = 11
10211 read(11, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\200\f\0\0004\0\0\0\204"..., 512) = 512
10211 fstat64(11, {st_mode=S_IFREG|0755, st_size=10172, ...}) = 0
10211 mmap2(NULL, 12956, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 11, 0) = 0xbd3000
10211 mmap2(0xbd6000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 11, 0x2) = 0xbd6000
10211 close(11) = 0
10211 mkdir("/tmp/autoIpLFZk", 0700) = 0
10211 mkdir("/tmp/autoWNWl0M", 0700) = 0
10211 lstat64("/tmp/autoIpLFZk", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
10211 readlink("/etc/mtab", 0xb7f6f8f6, 4096) = -1 EINVAL (Invalid argument)
10211 pipe([11, 14]) = 0
10211 fcntl64(11, F_SETFD, FD_CLOEXEC) = 0
10211 fcntl64(14, F_SETFD, FD_CLOEXEC) = 0
10211 rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], ~[ILL TRAP ABRT BUS FPE KILL SEGV STOP RTMIN RT_1], 8) = 0
10211 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7f75bd8) = 10212
10211 rt_sigprocmask(SIG_SETMASK, ~[ILL TRAP ABRT BUS FPE KILL SEGV STOP RTMIN RT_1], <unfinished ...>
10212 rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], <unfinished ...>
10211 <... rt_sigprocmask resumed> NULL, 8) = 0
10212 <... rt_sigprocmask resumed> NULL, 8) = 0
10211 close(14) = 0
10211 poll([{fd=11, events=POLLIN}], 1, -1 <unfinished ...>
10212 rt_sigaction(SIGHUP, {0x1, [], 0}, NULL, 8) = 0
10206 futex(0xbfe0dcb0, FUTEX_WAIT_PRIVATE, 1, NULL <unfinished ...>
10212 rt_sigaction(SIGINT, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGQUIT, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGILL, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGTRAP, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGABRT, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGBUS, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGFPE, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGUSR1, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGSEGV, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGUSR2, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGPIPE, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGALRM, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGTERM, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGSTKFLT, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGCHLD, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGCONT, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGTSTP, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGTTIN, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGTTOU, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGURG, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGXCPU, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGXFSZ, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGVTALRM, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGPROF, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGWINCH, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGIO, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGPWR, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGSYS, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_2, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_3, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_4, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_5, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_6, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_7, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_8, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_9, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_10, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_11, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_12, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_13, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_14, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_15, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_16, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_17, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_18, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_19, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_20, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_21, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_22, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_23, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_24, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_25, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_26, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_27, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_28, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_29, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_30, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_31, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_32, {0x1, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGHUP, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGINT, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGQUIT, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGILL, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGTRAP, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGABRT, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGBUS, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGFPE, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGUSR1, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGSEGV, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGUSR2, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGPIPE, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGALRM, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGTERM, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGSTKFLT, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGCHLD, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGCONT, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGTSTP, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGTTIN, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGTTOU, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGURG, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGXCPU, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGXFSZ, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGVTALRM, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGPROF, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGWINCH, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGIO, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGPWR, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGSYS, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_2, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_3, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_4, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_5, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_6, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_7, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_8, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_9, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_10, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_11, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_12, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_13, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_14, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_15, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_16, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_17, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_18, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_19, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_20, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_21, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_22, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_23, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_24, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_25, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_26, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_27, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_28, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_29, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_30, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_31, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGRT_32, {SIG_DFL, [], 0}, NULL, 8) = 0
10212 rt_sigaction(SIGUSR1, {0x1, [], SA_RESTART}, NULL, 8) = 0
10212 rt_sigaction(SIGUSR2, {0x1, [], SA_RESTART}, NULL, 8) = 0
10212 rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
10212 close(11) = 0
10212 dup2(14, 1) = 1
10212 dup2(14, 2) = 2
10212 close(14) = 0
10212 execve("/bin/mount", ["/bin/mount", "-n", "--bind", "/tmp/autoIpLFZk", "/tmp/autoWNWl0M"], [/* 54 vars */]) = 0
10212 brk(0) = 0x1856000
10212 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
10212 open("/etc/ld.so.cache", O_RDONLY) = 3
10212 fstat64(3, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10212 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7f57000
10212 close(3) = 0
10212 open("/lib/libblkid.so.1", O_RDONLY) = 3
10212 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0@\240J\0004\0\0\0\34"..., 512) = 512
10212 fstat64(3, {st_mode=S_IFREG|0755, st_size=46796, ...}) = 0
10212 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f56000
10212 mmap2(NULL, 43928, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb8f000
10212 mmap2(0xb99000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa) = 0xb99000
10212 close(3) = 0
10212 open("/lib/libuuid.so.1", O_RDONLY) = 3
10212 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P_8\0004\0\0\0\370"..., 512) = 512
10212 fstat64(3, {st_mode=S_IFREG|0755, st_size=15864, ...}) = 0
10212 mmap2(NULL, 12820, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x468000
10212 mmap2(0x46b000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3) = 0x46b000
10212 close(3) = 0
10212 open("/lib/libselinux.so.1", O_RDONLY) = 3
10212 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0000a\334\0004\0\0\0P"..., 512) = 512
10212 fstat64(3, {st_mode=S_IFREG|0755, st_size=118312, ...}) = 0
10212 mmap2(NULL, 121836, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x32f000
10212 mmap2(0x34b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b) = 0x34b000
10212 close(3) = 0
10212 open("/lib/libsepol.so.1", O_RDONLY) = 3
10212 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\200\277\23\0004\0\0\0\0"..., 512) = 512
10212 fstat64(3, {st_mode=S_IFREG|0755, st_size=237488, ...}) = 0
10212 mmap2(NULL, 236096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x8dc000
10212 mmap2(0x915000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x39) = 0x915000
10212 close(3) = 0
10212 open("/lib/libc.so.6", O_RDONLY) = 3
10212 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300K\275\0004\0\0\0\354"..., 512) = 512
10212 fstat64(3, {st_mode=S_IFREG|0755, st_size=1803428, ...}) = 0
10212 mmap2(NULL, 1509672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xcad000
10212 mmap2(0xe18000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16b) = 0xe18000
10212 mmap2(0xe1b000, 10536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xe1b000
10212 close(3) = 0
10212 open("/lib/libdl.so.2", O_RDONLY) = 3
10212 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`\272\325\0004\0\0\0("..., 512) = 512
10212 fstat64(3, {st_mode=S_IFREG|0755, st_size=20464, ...}) = 0
10212 mmap2(NULL, 16500, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x16f000
10212 mmap2(0x172000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2) = 0x172000
10212 close(3) = 0
10212 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f55000
10212 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f54000
10212 set_thread_area({entry_number:-1 -> 6, base_addr:0xb7f54750, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
10212 mprotect(0x172000, 4096, PROT_READ) = 0
10212 mprotect(0xe18000, 8192, PROT_READ) = 0
10212 mprotect(0x34b000, 4096, PROT_READ) = 0
10212 mprotect(0x3e6000, 4096, PROT_READ) = 0
10212 munmap(0xb7f57000, 134654) = 0
10212 brk(0) = 0x1856000
10212 brk(0x1877000) = 0x1877000
10212 open("/etc/selinux/config", O_RDONLY|O_LARGEFILE) = 3
10212 fstat64(3, {st_mode=S_IFREG|0644, st_size=439, ...}) = 0
10212 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f77000
10212 read(3, "\n# This file controls the state o"..., 4096) = 439
10212 read(3, ""..., 4096) = 0
10212 close(3) = 0
10212 munmap(0xb7f77000, 4096) = 0
10212 statfs64("/selinux", 84, {f_type=0xf97cff8c, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=4096}) = 0
10212 stat64("/selinux/class", {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
10212 open("/selinux/mls", O_RDONLY|O_LARGEFILE) = 3
10212 read(3, "1"..., 19) = 1
10212 close(3) = 0
10212 open("/usr/lib/locale/locale-archive", O_RDONLY|O_LARGEFILE) = 3
10212 fstat64(3, {st_mode=S_IFREG|0644, st_size=84748720, ...}) = 0
10212 mmap2(NULL, 2097152, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7d54000
10212 close(3) = 0
10212 umask(022) = 022
10212 open("/dev/null", O_RDWR|O_LARGEFILE) = 3
10212 close(3) = 0
10212 getuid32() = 0
10212 geteuid32() = 0
10212 readlink("/tmp", 0xbfdb5a0b, 4096) = -1 EINVAL (Invalid argument)
10212 readlink("/tmp/autoIpLFZk", 0xbfdb5a0b, 4096) = -1 EINVAL (Invalid argument)
10212 rt_sigprocmask(SIG_BLOCK, ~[TRAP SEGV RTMIN RT_1], NULL, 8) = 0
10212 mount("/tmp/autoIpLFZk", "/tmp/autoWNWl0M", 0x89f650, MS_MGC_VAL|MS_BIND, NULL) = 0
10212 readlink("/tmp", 0xbfdb585b, 4096) = -1 EINVAL (Invalid argument)
10212 readlink("/tmp/autoWNWl0M", 0xbfdb585b, 4096) = -1 EINVAL (Invalid argument)
10212 rt_sigprocmask(SIG_UNBLOCK, ~[TRAP SEGV RTMIN RT_1], NULL, 8) = 0
10212 exit_group(0) = ?
10211 <... poll resumed> ) = 1 ([{fd=11, revents=POLLHUP}])
10211 read(11, ""..., 2047) = 0
10211 close(11) = 0
10211 waitpid(10212, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0) = 10212
10211 rt_sigprocmask(SIG_SETMASK, ~[ILL TRAP ABRT BUS FPE KILL SEGV STOP RTMIN RT_1], NULL, 8) = 0
10211 lstat64("/tmp/autoWNWl0M", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
10211 readlink("/etc/mtab", 0xb7f6f8f4, 4096) = -1 EINVAL (Invalid argument)
10211 pipe([11, 14]) = 0
10211 fcntl64(11, F_SETFD, FD_CLOEXEC) = 0
10211 fcntl64(14, F_SETFD, FD_CLOEXEC) = 0
10211 rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], ~[ILL TRAP ABRT BUS FPE KILL SEGV STOP RTMIN RT_1], 8) = 0
10211 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7f75bd8) = 10213
10213 rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
10213 rt_sigaction(SIGHUP, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGINT, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGQUIT, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGILL, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGTRAP, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGABRT, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGBUS, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGFPE, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGUSR1, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGSEGV, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGUSR2, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGPIPE, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGALRM, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGTERM, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGSTKFLT, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGCHLD, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGCONT, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGTSTP, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGTTIN, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGTTOU, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGURG, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGXCPU, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGXFSZ, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGVTALRM, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGPROF, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGWINCH, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGIO, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGPWR, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGSYS, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_2, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_3, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_4, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_5, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_6, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_7, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_8, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_9, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_10, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_11, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_12, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_13, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_14, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_15, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_16, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_17, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_18, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_19, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_20, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_21, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_22, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_23, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_24, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_25, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_26, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_27, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_28, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_29, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_30, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_31, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_32, {0x1, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGHUP, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGINT, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGQUIT, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGILL, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGTRAP, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGABRT, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGBUS, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGFPE, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGUSR1, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGSEGV, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGUSR2, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGPIPE, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGALRM, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGTERM, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGSTKFLT, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGCHLD, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGCONT, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGTSTP, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGTTIN, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGTTOU, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGURG, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGXCPU, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGXFSZ, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGVTALRM, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGPROF, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGWINCH, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGIO, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGPWR, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGSYS, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_2, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_3, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_4, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_5, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_6, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_7, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_8, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_9, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_10, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_11, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_12, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_13, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_14, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_15, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_16, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_17, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_18, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_19, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_20, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_21, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_22, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_23, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_24, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_25, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_26, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_27, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_28, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_29, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_30, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_31, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGRT_32, {SIG_DFL, [], 0}, NULL, 8) = 0
10213 rt_sigaction(SIGUSR1, {0x1, [], SA_RESTART}, NULL, 8) = 0
10213 rt_sigaction(SIGUSR2, {0x1, [], SA_RESTART}, NULL, 8) = 0
10213 rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
10213 close(11) = 0
10213 dup2(14, 1) = 1
10213 dup2(14, 2) = 2
10213 close(14) = 0
10213 execve("/bin/umount", ["/bin/umount", "-n", "/tmp/autoWNWl0M"], [/* 54 vars */] <unfinished ...>
10211 rt_sigprocmask(SIG_SETMASK, ~[ILL TRAP ABRT BUS FPE KILL SEGV STOP RTMIN RT_1], NULL, 8) = 0
10211 close(14) = 0
10211 poll([{fd=11, events=POLLIN}], 1, 12000 <unfinished ...>
10213 <... execve resumed> ) = 0
10213 brk(0) = 0x1154000
10213 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
10213 open("/etc/ld.so.cache", O_RDONLY) = 3
10213 fstat64(3, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10213 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb8035000
10213 close(3) = 0
10213 open("/lib/libblkid.so.1", O_RDONLY) = 3
10213 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0@\240J\0004\0\0\0\34"..., 512) = 512
10213 fstat64(3, {st_mode=S_IFREG|0755, st_size=46796, ...}) = 0
10213 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb8034000
10213 mmap2(NULL, 43928, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x90b000
10213 mmap2(0x915000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa) = 0x915000
10213 close(3) = 0
10213 open("/lib/libuuid.so.1", O_RDONLY) = 3
10213 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P_8\0004\0\0\0\370"..., 512) = 512
10213 fstat64(3, {st_mode=S_IFREG|0755, st_size=15864, ...}) = 0
10213 mmap2(NULL, 12820, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xd22000
10213 mmap2(0xd25000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3) = 0xd25000
10213 close(3) = 0
10213 open("/lib/libc.so.6", O_RDONLY) = 3
10213 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300K\275\0004\0\0\0\354"..., 512) = 512
10213 fstat64(3, {st_mode=S_IFREG|0755, st_size=1803428, ...}) = 0
10213 mmap2(NULL, 1509672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x20a000
10213 mmap2(0x375000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16b) = 0x375000
10213 mmap2(0x378000, 10536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x378000
10213 close(3) = 0
10213 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb8033000
10213 set_thread_area({entry_number:-1 -> 6, base_addr:0xb8033700, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
10213 mprotect(0x375000, 8192, PROT_READ) = 0
10213 mprotect(0xfbd000, 4096, PROT_READ) = 0
10213 munmap(0xb8035000, 134654) = 0
10213 brk(0) = 0x1154000
10213 brk(0x1175000) = 0x1175000
10213 open("/usr/lib/locale/locale-archive", O_RDONLY|O_LARGEFILE) = 3
10213 fstat64(3, {st_mode=S_IFREG|0644, st_size=84748720, ...}) = 0
10213 mmap2(NULL, 2097152, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7e33000
10213 close(3) = 0
10213 umask(022) = 022
10213 getuid32() = 0
10213 geteuid32() = 0
10213 readlink("/tmp", 0xbfc921bb, 4096) = -1 EINVAL (Invalid argument)
10213 readlink("/tmp/autoWNWl0M", 0xbfc921bb, 4096) = -1 EINVAL (Invalid argument)
10213 umask(077) = 022
10213 open("/etc/mtab", O_RDONLY|O_LARGEFILE) = 3
10213 umask(022) = 077
10213 fstat64(3, {st_mode=S_IFREG|0644, st_size=408, ...}) = 0
10213 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb8055000
10213 read(3, "/dev/mapper/vg_fmi2081-lv_root / "..., 4096) = 408
10213 read(3, ""..., 4096) = 0
10213 close(3) = 0
10213 munmap(0xb8055000, 4096) = 0
10213 stat64("/sbin/umount./tmp/autoWNWl0M", 0xbfc94070) = -1 ENOENT (No such file or directory)
10213 oldumount("/tmp/autoWNWl0M") = 0
10213 exit_group(0) = ?
10211 <... poll resumed> ) = 1 ([{fd=11, revents=POLLHUP}])
10211 read(11, ""..., 2047) = 0
10211 close(11) = 0
10211 waitpid(10213, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0) = 10213
10211 rt_sigprocmask(SIG_SETMASK, ~[ILL TRAP ABRT BUS FPE KILL SEGV STOP RTMIN RT_1], NULL, 8) = 0
10211 rmdir("/tmp/autoIpLFZk") = 0
10211 rmdir("/tmp/autoWNWl0M") = 0
10211 open("/dev/urandom", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 11
10211 fcntl64(11, F_GETFD) = 0x1 (flags FD_CLOEXEC)
10211 read(11, "\213\375\346M"..., 4) = 4
10211 close(11) = 0
10211 open("/etc/auto.misc", O_RDONLY|O_LARGEFILE|O_CLOEXEC) = 11
10211 fcntl64(11, F_GETFD) = 0x1 (flags FD_CLOEXEC)
10211 fstat64(11, {st_mode=S_IFREG|0644, st_size=786, ...}) = 0
10211 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7574000
10211 read(11, "#\n# This is an automounter map an"..., 4096) = 786
10211 read(11, ""..., 4096) = 0
10211 close(11) = 0
10211 munmap(0xb7574000, 4096) = 0
10211 ioctl(3, 0xc018937e, 0xb7401458) = -1 ENOENT (No such file or directory)
10211 getpgrp() = 10205
10211 stat64("/misc", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
10211 mount("/etc/auto.misc", "/misc", "autofs", MS_MGC_VAL, "fd=7,pgrp=10205,minproto=5,maxpr"...) = 0
10211 stat64("/misc", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10211 ioctl(3, 0xc0189374, 0xb7401458) = 0
10211 ioctl(3, 0xc018937a, 0xb7f75198) = 0
10211 write(2, "mounted indirect on /misc with ti"..., 59) = 59
10211 write(2, "\n"..., 1) = 1
10211 write(2, "st_ready: st_ready(): state = 0 p"..., 42) = 42
10211 write(2, "\n"..., 1) = 1
10211 futex(0xf60964, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xf60960, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1}) = 1
10211 futex(0xbfe0dcb0, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xbfe0dcac, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
10208 <... futex resumed> ) = 0
10211 <... futex resumed> ) = 1
10206 <... futex resumed> ) = 0
10208 futex(0xf60990, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10206 futex(0xbfe0dc94, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10208 <... futex resumed> ) = 0
10211 futex(0xbfe0dc94, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10208 clock_gettime(CLOCK_REALTIME, <unfinished ...>
10211 <... futex resumed> ) = 1
10208 <... clock_gettime resumed> {1251470808, 412136286}) = 0
10206 <... futex resumed> ) = 0
10208 futex(0xf60964, FUTEX_WAIT_PRIVATE, 3, {0, 897852714} <unfinished ...>
10206 futex(0xbfe0dc94, FUTEX_WAKE_PRIVATE, 1) = 0
10206 fstat64(-1, 0xbfe0dc2c) = -1 EBADF (Bad file descriptor)
10206 write(2, "master_do_mount: mounting /net"..., 30) = 30
10206 write(2, "\n"..., 1) = 1
10206 mmap2(NULL, 10489856, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0xb69ff000
10206 mprotect(0xb69ff000, 4096, PROT_NONE) = 0
10206 clone(child_stack=0xb73ff494, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0xb73ffbd8, {entry_number:6, base_addr:0xb73ffb70, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}, child_tidptr=0xb73ffbd8) = 10214
10206 futex(0xbfe0dcb0, FUTEX_WAIT_PRIVATE, 1, NULL <unfinished ...>
10214 set_robust_list(0xb73ffbe0, 0xc <unfinished ...>
10211 time( <unfinished ...>
10214 <... set_robust_list resumed> ) = 0
10211 <... time resumed> NULL) = 1251470808
10214 mmap2(NULL, 2097152, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0 <unfinished ...>
10211 futex(0xf60a24, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xf60a20, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
10214 <... mmap2 resumed> ) = 0xb67ff000
10211 <... futex resumed> ) = 1
10214 munmap(0xb67ff000, 4096 <unfinished ...>
10207 <... futex resumed> ) = 0
10214 <... munmap resumed> ) = 0
10207 futex(0xf60a00, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10214 munmap(0xb6900000, 1044480 <unfinished ...>
10211 futex(0xf60a00, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10214 <... munmap resumed> ) = 0
10211 <... futex resumed> ) = 1
10214 mprotect(0xb6800000, 135168, PROT_READ|PROT_WRITE <unfinished ...>
10207 <... futex resumed> ) = 0
10214 <... mprotect resumed> ) = 0
10211 poll([{fd=6, events=POLLIN}, {fd=8, events=POLLIN}, {fd=10, events=POLLIN}], 3, -1 <unfinished ...>
10214 pipe( <unfinished ...>
10207 time(NULL) = 1251470808
10214 <... pipe resumed> [14, 15]) = 0
10207 gettimeofday( <unfinished ...>
10214 fcntl64(14, F_SETFD, FD_CLOEXEC <unfinished ...>
10207 <... gettimeofday resumed> {1251470808, 413596}, NULL) = 0
10214 <... fcntl64 resumed> ) = 0
10207 futex(0xf60a00, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10214 fcntl64(15, F_SETFD, FD_CLOEXEC <unfinished ...>
10207 <... futex resumed> ) = 0
10214 <... fcntl64 resumed> ) = 0
10207 clock_gettime(CLOCK_REALTIME, <unfinished ...>
10214 pipe( <unfinished ...>
10207 <... clock_gettime resumed> {1251470808, 413800461}) = 0
10214 <... pipe resumed> [16, 17]) = 0
10207 futex(0xf60a24, FUTEX_WAIT_PRIVATE, 3, {78, 999795539} <unfinished ...>
10214 fcntl64(16, F_SETFD, FD_CLOEXEC) = 0
10214 fcntl64(17, F_SETFD, FD_CLOEXEC) = 0
10214 write(2, "automount_path_to_fifo: fifo name"..., 58) = 58
10214 write(2, "\n"..., 1) = 1
10214 unlink("/var/run/autofs.fifo-net") = -1 ENOENT (No such file or directory)
10214 mknod("/var/run/autofs.fifo-net", S_IFIFO|0600) = 0
10214 open("/var/run/autofs.fifo-net", O_RDWR|O_NONBLOCK|O_LARGEFILE) = 18
10214 fcntl64(18, F_SETFD, FD_CLOEXEC) = 0
10214 time(NULL) = 1251470808
10214 write(2, "lookup_nss_read_map: reading map "..., 45) = 45
10214 write(2, "\n"..., 1) = 1
10214 open("/usr/lib/autofs/lookup_hosts.so", O_RDONLY) = 19
10214 read(19, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\220H\0\0004\0\0\0|"..., 512) = 512
10214 fstat64(19, {st_mode=S_IFREG|0755, st_size=107740, ...}) = 0
10214 mmap2(NULL, 114440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 19, 0) = 0xd39000
10214 mmap2(0xd53000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 19, 0x19) = 0xd53000
10214 mmap2(0xd54000, 3848, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xd54000
10214 close(19) = 0
10214 write(2, "parse_init: parse(sun): init gath"..., 60) = 60
10214 write(2, "\n"..., 1) = 1
10214 ioctl(3, 0xc018937e, 0xb68008d0) = -1 ENOENT (No such file or directory)
10214 getpgrp() = 10205
10214 stat64("/net", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
10214 mount("-hosts", "/net", "autofs", MS_MGC_VAL, "fd=15,pgrp=10205,minproto=5,maxp"...) = 0
10214 stat64("/net", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10214 ioctl(3, 0xc0189374, 0xb68008d0) = 0
10214 ioctl(3, 0xc018937a, 0xb73ff198) = 0
10214 write(2, "mounted indirect on /net with tim"..., 58) = 58
10214 write(2, "\n"..., 1) = 1
10214 write(2, "st_ready: st_ready(): state = 0 p"..., 41) = 41
10214 write(2, "\n"..., 1) = 1
10214 futex(0xf60964, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xf60960, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1}) = 1
10208 <... futex resumed> ) = 0
10208 futex(0xf60990, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10214 futex(0xf60990, FUTEX_WAKE_PRIVATE, 1) = 1
10208 <... futex resumed> ) = 0
10208 futex(0xf60990, FUTEX_WAKE_PRIVATE, 1) = 0
10208 clock_gettime(CLOCK_REALTIME, {1251470808, 419233197}) = 0
10208 futex(0xf60964, FUTEX_WAIT_PRIVATE, 5, {0, 890755803} <unfinished ...>
10214 futex(0xbfe0dcb0, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xbfe0dcac, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1}) = 1
10206 <... futex resumed> ) = 0
10214 time( <unfinished ...>
10206 futex(0xbfe0dc94, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10214 <... time resumed> NULL) = 1251470808
10206 <... futex resumed> ) = 0
10214 poll([{fd=14, events=POLLIN}, {fd=16, events=POLLIN}, {fd=18, events=POLLIN}], 3, -1 <unfinished ...>
10206 fstat64(-1, 0xbfe0dc2c) = -1 EBADF (Bad file descriptor)
10206 write(2, "master_do_mount: mounting /cifs"..., 31) = 31
10206 write(2, "\n"..., 1) = 1
10206 mmap2(NULL, 10489856, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0xb5dff000
10206 mprotect(0xb5dff000, 4096, PROT_NONE) = 0
10206 clone(child_stack=0xb67ff494, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0xb67ffbd8, {entry_number:6, base_addr:0xb67ffb70, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}, child_tidptr=0xb67ffbd8) = 10215
10206 futex(0xbfe0dcb0, FUTEX_WAIT_PRIVATE, 1, NULL <unfinished ...>
10215 set_robust_list(0xb67ffbe0, 0xc) = 0
10215 open("/proc/stat", O_RDONLY|O_CLOEXEC) = 20
10215 read(20, "cpu 1064563 17616 765148 7021528"..., 8192) = 2879
10215 close(20) = 0
10215 mmap2(NULL, 2097152, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0xb5bff000
10215 munmap(0xb5bff000, 4096) = 0
10215 munmap(0xb5d00000, 1044480) = 0
10215 mprotect(0xb5c00000, 135168, PROT_READ|PROT_WRITE) = 0
10215 pipe([20, 21]) = 0
10215 fcntl64(20, F_SETFD, FD_CLOEXEC) = 0
10215 fcntl64(21, F_SETFD, FD_CLOEXEC) = 0
10215 pipe([22, 23]) = 0
10215 fcntl64(22, F_SETFD, FD_CLOEXEC) = 0
10215 fcntl64(23, F_SETFD, FD_CLOEXEC) = 0
10215 write(2, "automount_path_to_fifo: fifo name"..., 59) = 59
10215 write(2, "\n"..., 1) = 1
10215 unlink("/var/run/autofs.fifo-cifs") = -1 ENOENT (No such file or directory)
10215 mknod("/var/run/autofs.fifo-cifs", S_IFIFO|0600) = 0
10215 open("/var/run/autofs.fifo-cifs", O_RDWR|O_NONBLOCK|O_LARGEFILE) = 24
10215 fcntl64(24, F_SETFD, FD_CLOEXEC) = 0
10215 time(NULL) = 1251470808
10215 write(2, "lookup_nss_read_map: reading map "..., 52) = 52
10215 write(2, "\n"..., 1) = 1
10215 stat64("/etc/auto.cifs", {st_mode=S_IFREG|0755, st_size=1742, ...}) = 0
10215 open("/usr/lib/autofs/lookup_program.so", O_RDONLY) = 25
10215 read(25, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`<\0\0004\0\0\0\254"..., 512) = 512
10215 fstat64(25, {st_mode=S_IFREG|0755, st_size=96740, ...}) = 0
10215 mmap2(NULL, 99368, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 25, 0) = 0x115000
10215 mmap2(0x12c000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 25, 0x17) = 0x12c000
10215 mmap2(0x12d000, 1064, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x12d000
10215 close(25) = 0
10215 access("/etc/auto.cifs", X_OK) = 0
10215 write(2, "parse_init: parse(sun): init gath"..., 60) = 60
10215 write(2, "\n"..., 1) = 1
10215 ioctl(3, 0xc018937e, 0xb5c00920) = -1 ENOENT (No such file or directory)
10215 getpgrp() = 10205
10215 stat64("/cifs", 0xb67fd0e8) = -1 ENOENT (No such file or directory)
10215 open("/etc/mtab", O_RDONLY|O_CLOEXEC) = 25
10215 fcntl64(25, F_GETFD) = 0x1 (flags FD_CLOEXEC)
10215 fstat64(25, {st_mode=S_IFREG|0644, st_size=408, ...}) = 0
10215 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f99000
10215 read(25, "/dev/mapper/vg_fmi2081-lv_root / "..., 4096) = 408
10215 read(25, ""..., 4096) = 0
10215 close(25) = 0
10215 munmap(0xb7f99000, 4096) = 0
10215 mkdir("/cifs", 0555) = 0
10215 mount("/etc/auto.cifs", "/cifs", "autofs", MS_MGC_VAL, "fd=21,pgrp=10205,minproto=5,maxp"...) = 0
10215 stat64("/cifs", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10215 ioctl(3, 0xc0189374, 0xb5c00920) = 0
10215 ioctl(3, 0xc018937a, 0xb67ff198) = 0
10215 write(2, "mounted indirect on /cifs with ti"..., 58) = 58
10215 write(2, "\n"..., 1) = 1
10215 write(2, "st_ready: st_ready(): state = 0 p"..., 42) = 42
10215 write(2, "\n"..., 1) = 1
10215 futex(0xf60964, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xf60960, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1}) = 1
10208 <... futex resumed> ) = 0
10208 futex(0xf60990, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10215 futex(0xf60990, FUTEX_WAKE_PRIVATE, 1) = 1
10208 <... futex resumed> ) = 0
10208 futex(0xf60990, FUTEX_WAKE_PRIVATE, 1) = 0
10208 clock_gettime(CLOCK_REALTIME, {1251470808, 428220990}) = 0
10208 futex(0xf60964, FUTEX_WAIT_PRIVATE, 7, {0, 881768010} <unfinished ...>
10215 futex(0xbfe0dcb0, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xbfe0dcac, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1}) = 1
10215 time(NULL) = 1251470808
10215 futex(0xf60a24, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xf60a20, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1}) = 1
10207 <... futex resumed> ) = 0
10207 futex(0xf60a00, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10215 futex(0xf60a00, FUTEX_WAKE_PRIVATE, 1) = 1
10207 <... futex resumed> ) = 0
10207 time(NULL) = 1251470808
10207 gettimeofday({1251470808, 428742}, NULL) = 0
10206 <... futex resumed> ) = 0
10207 futex(0xf60a00, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10206 futex(0xbfe0dc94, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10207 <... futex resumed> ) = 0
10206 <... futex resumed> ) = 0
10207 clock_gettime(CLOCK_REALTIME, <unfinished ...>
10206 write(5, "\0\0\0\0"..., 4 <unfinished ...>
10207 <... clock_gettime resumed> {1251470808, 428995389}) = 0
10206 <... write resumed> ) = 4
10207 futex(0xf60a24, FUTEX_WAIT_PRIVATE, 5, {19, 999746611} <unfinished ...>
10206 close(5 <unfinished ...>
10215 poll([{fd=20, events=POLLIN}, {fd=22, events=POLLIN}, {fd=24, events=POLLIN}], 3, -1 <unfinished ...>
10206 <... close resumed> ) = 0
10206 rt_sigtimedwait(~[ILL TRAP ABRT BUS FPE SEGV CHLD CONT RTMIN RT_1], <unfinished ...>
10215 <... poll resumed> ) = 1 ([{fd=20, revents=POLLIN}])
10215 read(20, "\5\0\0\0\3\0\0\0\215\0\0\0\26\0\0\0g\313\5\0\0\0\0\0\364\1\0\0\364\1\0\0\271"..., 300) = 300
10215 write(2, "handle_packet: type = 3"..., 23) = 23
10215 write(2, "\n"..., 1) = 1
10215 write(2, "handle_packet_missing_indirect: t"..., 73) = 73
10215 write(2, "\n"..., 1) = 1
10215 mmap2(NULL, 1052672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0xb5aff000
10215 mprotect(0xb5aff000, 4096, PROT_NONE) = 0
10215 clone(child_stack=0xb5bff494, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0xb5bffbd8, {entry_number:6, base_addr:0xb5bffb70, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}, child_tidptr=0xb5bffbd8) = 10216
10215 gettimeofday( <unfinished ...>
10216 set_robust_list(0xb5bffbe0, 0xc <unfinished ...>
10215 <... gettimeofday resumed> {1251470808, 901752}, NULL) = 0
10216 <... set_robust_list resumed> ) = 0
10215 clock_gettime(CLOCK_REALTIME, <unfinished ...>
10216 futex(0xb5c01080, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10215 <... clock_gettime resumed> {1251470808, 901925357}) = 0
10215 futex(0xb5c01080, FUTEX_WAKE_PRIVATE, 1) = 1
10216 <... futex resumed> ) = 0
10215 futex(0xb5c01084, FUTEX_WAIT_PRIVATE, 1, {1, 999826643} <unfinished ...>
10216 futex(0xb5c01084, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xb5c01080, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
10215 <... futex resumed> ) = -1 EAGAIN (Resource temporarily unavailable)
10215 futex(0xb5c01080, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10216 <... futex resumed> ) = 1
10216 lstat64("/cifs/VMW1013", 0xb5bfd29c) = -1 ENOENT (No such file or directory)
10216 write(2, "attempting to mount entry /cifs/V"..., 39) = 39
10216 write(2, "\n"..., 1) = 1
10216 socket(PF_FILE, 0x80801 /* SOCK_??? */, 0 <unfinished ...>
10215 <... futex resumed> ) = 0
10216 <... socket resumed> ) = 5
10215 futex(0xb5c01080, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10216 connect(5, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110 <unfinished ...>
10215 <... futex resumed> ) = 0
10216 <... connect resumed> ) = -1 ENOENT (No such file or directory)
10215 futex(0xb5c01068, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10216 close(5 <unfinished ...>
10215 <... futex resumed> ) = 0
10216 <... close resumed> ) = 0
10215 poll([{fd=20, events=POLLIN}, {fd=22, events=POLLIN}, {fd=24, events=POLLIN}], 3, -1 <unfinished ...>
10216 socket(PF_FILE, 0x80801 /* SOCK_??? */, 0) = 5
10216 connect(5, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
10216 close(5) = 0
10216 open("/etc/nsswitch.conf", O_RDONLY) = 5
10216 fstat64(5, {st_mode=S_IFREG|0644, st_size=1696, ...}) = 0
10216 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f99000
10216 read(5, "#\n# /etc/nsswitch.conf\n#\n# An exa"..., 4096) = 1696
10216 read(5, ""..., 4096) = 0
10216 close(5) = 0
10216 munmap(0xb7f99000, 4096) = 0
10216 open("/etc/ld.so.cache", O_RDONLY) = 5
10216 fstat64(5, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10216 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 5, 0) = 0xb7554000
10216 close(5) = 0
10216 open("/lib/libnss_files.so.2", O_RDONLY) = 5
10216 read(5, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0000\32\0\0004\0\0\0\314"..., 512) = 512
10216 fstat64(5, {st_mode=S_IFREG|0755, st_size=55540, ...}) = 0
10216 mmap2(NULL, 49864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0xda9000
10216 mmap2(0xdb4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0xa) = 0xdb4000
10216 close(5) = 0
10216 mprotect(0xdb4000, 4096, PROT_READ) = 0
10216 munmap(0xb7554000, 134654) = 0
10216 open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 5
10216 fcntl64(5, F_GETFD) = 0x1 (flags FD_CLOEXEC)
10216 fstat64(5, {st_mode=S_IFREG|0644, st_size=1949, ...}) = 0
10216 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f99000
10216 read(5, "root:x:0:0:root:/root:/bin/bash\nb"..., 4096) = 1949
10216 close(5) = 0
10216 munmap(0xb7f99000, 4096) = 0
10216 socket(PF_FILE, 0x80801 /* SOCK_??? */, 0) = 5
10216 connect(5, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
10216 close(5) = 0
10216 socket(PF_FILE, 0x80801 /* SOCK_??? */, 0) = 5
10216 connect(5, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
10216 close(5) = 0
10216 open("/etc/group", O_RDONLY|O_CLOEXEC) = 5
10216 fstat64(5, {st_mode=S_IFREG|0644, st_size=919, ...}) = 0
10216 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f99000
10216 read(5, "root:x:0:root\nbin:x:1:root,bin,da"..., 4096) = 919
10216 close(5) = 0
10216 munmap(0xb7f99000, 4096) = 0
10216 sched_yield() = 0
10216 time(NULL) = 1251470808
10216 stat64("/etc/auto.cifs", {st_mode=S_IFREG|0755, st_size=1742, ...}) = 0
10216 write(2, "lookup_mount: lookup(program): lo"..., 49) = 49
10216 write(2, "\n"..., 1) = 1
10216 pipe([5, 26]) = 0
10216 fcntl64(5, F_GETFD) = 0
10216 fcntl64(5, F_SETFD, FD_CLOEXEC) = 0
10216 fcntl64(26, F_SETFD, FD_CLOEXEC) = 0
10216 pipe([27, 28]) = 0
10216 fcntl64(27, F_SETFD, FD_CLOEXEC) = 0
10216 fcntl64(28, F_SETFD, FD_CLOEXEC) = 0
10216 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb5bffbd8) = 10217
10217 rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
10217 rt_sigaction(SIGHUP, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGINT, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGQUIT, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGILL, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGTRAP, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGABRT, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGBUS, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGFPE, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGUSR1, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGSEGV, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGUSR2, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGPIPE, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGALRM, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGTERM, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGSTKFLT, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGCHLD, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGCONT, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGTSTP, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGTTIN, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGTTOU, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGURG, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGXCPU, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGXFSZ, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGVTALRM, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGPROF, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGWINCH, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGIO, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGPWR, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGSYS, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_2, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_3, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_4, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_5, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_6, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_7, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_8, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_9, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_10, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_11, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_12, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_13, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_14, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_15, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_16, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_17, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_18, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_19, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_20, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_21, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_22, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_23, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_24, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_25, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_26, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_27, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_28, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_29, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_30, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_31, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_32, {0x1, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGHUP, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGINT, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGQUIT, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGILL, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGTRAP, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGABRT, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGBUS, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGFPE, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGUSR1, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGSEGV, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGUSR2, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGPIPE, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGALRM, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGTERM, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGSTKFLT, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGCHLD, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGCONT, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGTSTP, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGTTIN, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGTTOU, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGURG, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGXCPU, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGXFSZ, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGVTALRM, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGPROF, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGWINCH, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGIO, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGPWR, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGSYS, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_2, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_3, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_4, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_5, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_6, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_7, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_8, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_9, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_10, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_11, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_12, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_13, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_14, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_15, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_16, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_17, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_18, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_19, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_20, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_21, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_22, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_23, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_24, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_25, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_26, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_27, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_28, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_29, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_30, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_31, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGRT_32, {SIG_DFL, [], 0}, NULL, 8) = 0
10217 rt_sigaction(SIGUSR1, {0x1, [], SA_RESTART}, NULL, 8) = 0
10217 rt_sigaction(SIGUSR2, {0x1, [], SA_RESTART}, NULL, 8) = 0
10217 rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
10217 close(5) = 0
10217 close(27) = 0
10217 dup2(26, 1) = 1
10217 dup2(28, 2) = 2
10217 close(26) = 0
10217 close(28) = 0
10217 chdir("/cifs") = 0
10217 execve("/etc/auto.cifs", ["/etc/auto.cifs", "VMW1013"], [/* 54 vars */] <unfinished ...>
10216 close(26) = 0
10216 close(28) = 0
10216 poll([{fd=5, events=POLLIN}, {fd=27, events=POLLIN}], 2, -1 <unfinished ...>
10217 <... execve resumed> ) = 0
10217 brk(0) = 0x9df7000
10217 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
10217 open("/etc/ld.so.cache", O_RDONLY) = 3
10217 fstat64(3, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10217 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7f14000
10217 close(3) = 0
10217 open("/lib/libtinfo.so.5", O_RDONLY) = 3
10217 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\260z\232\0004\0\0\0D"..., 512) = 512
10217 fstat64(3, {st_mode=S_IFREG|0755, st_size=97268, ...}) = 0
10217 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f13000
10217 mmap2(0x9a2000, 99160, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x9a2000
10217 mmap2(0x9b8000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15) = 0x9b8000
10217 close(3) = 0
10217 open("/lib/libdl.so.2", O_RDONLY) = 3
10217 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`\272\325\0004\0\0\0("..., 512) = 512
10217 fstat64(3, {st_mode=S_IFREG|0755, st_size=20464, ...}) = 0
10217 mmap2(0xd5b000, 16500, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xd5b000
10217 mmap2(0xd5e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2) = 0xd5e000
10217 close(3) = 0
10217 open("/lib/libc.so.6", O_RDONLY) = 3
10217 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300K\275\0004\0\0\0\354"..., 512) = 512
10217 fstat64(3, {st_mode=S_IFREG|0755, st_size=1803428, ...}) = 0
10217 mmap2(0xbbe000, 1509672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xbbe000
10217 mmap2(0xd29000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16b) = 0xd29000
10217 mmap2(0xd2c000, 10536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xd2c000
10217 close(3) = 0
10217 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f12000
10217 set_thread_area({entry_number:-1 -> 6, base_addr:0xb7f126c0, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
10217 mprotect(0xd5e000, 4096, PROT_READ) = 0
10217 mprotect(0xd29000, 8192, PROT_READ) = 0
10217 mprotect(0xbba000, 4096, PROT_READ) = 0
10217 munmap(0xb7f14000, 134654) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 open("/dev/tty", O_RDWR|O_NONBLOCK|O_LARGEFILE) = 3
10217 close(3) = 0
10217 brk(0) = 0x9df7000
10217 brk(0x9e18000) = 0x9e18000
10217 open("/usr/lib/locale/locale-archive", O_RDONLY|O_LARGEFILE) = 3
10217 fstat64(3, {st_mode=S_IFREG|0644, st_size=84748720, ...}) = 0
10217 mmap2(NULL, 2097152, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7d12000
10217 close(3) = 0
10217 getuid32() = 0
10217 getgid32() = 0
10217 geteuid32() = 0
10217 getegid32() = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 time(NULL) = 1251470808
10217 open("/proc/meminfo", O_RDONLY) = 3
10217 fstat64(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
10217 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f34000
10217 read(3, "MemTotal: 2061836 kB\nMemFr"..., 1024) = 1024
10217 close(3) = 0
10217 munmap(0xb7f34000, 4096) = 0
10217 rt_sigaction(SIGCHLD, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
10217 rt_sigaction(SIGCHLD, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
10217 rt_sigaction(SIGINT, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
10217 rt_sigaction(SIGINT, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
10217 rt_sigaction(SIGQUIT, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
10217 rt_sigaction(SIGQUIT, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigaction(SIGQUIT, {0x1, [], 0}, {SIG_DFL, [], 0}, 8) = 0
10217 uname({sys="Linux", node="FMI2081.fic.ffg", ...}) = 0
10217 stat64("/root", {st_mode=S_IFDIR|0750, st_size=4096, ...}) = 0
10217 stat64(".", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10217 getcwd("/cifs"..., 4096) = 6
10217 getpid() = 10217
10217 open("/usr/lib/gconv/gconv-modules.cache", O_RDONLY) = 3
10217 fstat64(3, {st_mode=S_IFREG|0644, st_size=26048, ...}) = 0
10217 mmap2(NULL, 26048, PROT_READ, MAP_SHARED, 3, 0) = 0xb7f2e000
10217 close(3) = 0
10217 getppid() = 10206
10217 gettimeofday({1251470808, 935114}, NULL) = 0
10217 getpgrp() = 10205
10217 rt_sigaction(SIGCHLD, {0x80818d0, [], 0}, {SIG_DFL, [], 0}, 8) = 0
10217 getrlimit(RLIMIT_NPROC, {rlim_cur=1024, rlim_max=16374}) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 open("/etc/auto.cifs", O_RDONLY|O_LARGEFILE) = 3
10217 ioctl(3, SNDCTL_TMR_TIMEBASE or TCGETS, 0xbffd73c8) = -1 ENOTTY (Inappropriate ioctl for device)
10217 _llseek(3, 0, [0], SEEK_CUR) = 0
10217 read(3, "#!/bin/bash\n# $Id$\n# This file mu"..., 80) = 80
10217 _llseek(3, 0, [0], SEEK_SET) = 0
10217 getrlimit(RLIMIT_NOFILE, {rlim_cur=10*1024, rlim_max=10*1024}) = 0
10217 fcntl64(255, F_GETFD) = -1 EBADF (Bad file descriptor)
10217 dup2(3, 255) = 255
10217 close(3) = 0
10217 fcntl64(255, F_SETFD, FD_CLOEXEC) = 0
10217 fcntl64(255, F_GETFL) = 0x8000 (flags O_RDONLY|O_LARGEFILE)
10217 fstat64(255, {st_mode=S_IFREG|0755, st_size=1742, ...}) = 0
10217 _llseek(255, 0, [0], SEEK_CUR) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 read(255, "#!/bin/bash\n# $Id$\n# This file mu"..., 1742) = 1742
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 stat64("/bin/smbclient", 0xbffd702c) = -1 ENOENT (No such file or directory)
10217 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 stat64("/sbin/smbclient", 0xbffd702c) = -1 ENOENT (No such file or directory)
10217 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 stat64("/usr/bin/smbclient", {st_mode=S_IFREG|0755, st_size=4531676, ...}) = 0
10217 geteuid32() = 0
10217 getegid32() = 0
10217 getuid32() = 0
10217 getgid32() = 0
10217 access("/usr/bin/smbclient", X_OK) = 0
10217 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 stat64("/usr/bin/smbclient", {st_mode=S_IFREG|0755, st_size=4531676, ...}) = 0
10217 geteuid32() = 0
10217 getegid32() = 0
10217 getuid32() = 0
10217 getgid32() = 0
10217 access("/usr/bin/smbclient", X_OK) = 0
10217 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 stat64("/etc/auto.smb.VMW1013", 0xbffd71f8) = -1 ENOENT (No such file or directory)
10217 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
10217 pipe([3, 4]) = 0
10217 rt_sigprocmask(SIG_BLOCK, [INT CHLD], [CHLD], 8) = 0
10217 _llseek(255, -276, [1466], SEEK_CUR) = 0
10217 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7f12728) = 10218
10217 rt_sigprocmask(SIG_SETMASK, [CHLD], <unfinished ...>
10218 close(255 <unfinished ...>
10217 <... rt_sigprocmask resumed> NULL, 8) = 0
10218 <... close resumed> ) = 0
10217 close(4 <unfinished ...>
10218 rt_sigprocmask(SIG_SETMASK, [], <unfinished ...>
10217 <... close resumed> ) = 0
10218 <... rt_sigprocmask resumed> NULL, 8) = 0
10217 close(4 <unfinished ...>
10218 rt_sigaction(SIGTSTP, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
10218 rt_sigaction(SIGTTIN, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
10218 rt_sigaction(SIGTTOU, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
10218 close(3) = 0
10218 dup2(4, 1) = 1
10218 close(4) = 0
10218 rt_sigaction(SIGINT, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
10218 rt_sigaction(SIGQUIT, {SIG_DFL, [], 0}, {0x1, [], 0}, 8) = 0
10218 rt_sigaction(SIGCHLD, {SIG_DFL, [], 0}, {0x80818d0, [], 0}, 8) = 0
10218 open("/dev/null", O_WRONLY|O_CREAT|O_TRUNC|O_LARGEFILE, 0666) = 3
10218 dup2(3, 2) = 2
10218 close(3) = 0
10218 execve("/usr/bin/smbclient", ["/usr/bin/smbclient", "-A", "/etc/auto.smb.jmasker", "-gL", "VMW1013"], [/* 53 vars */]) = 0
10218 brk(0) = 0x1dd5000
10218 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
10218 open("/etc/ld.so.cache", O_RDONLY) = 3
10218 fstat64(3, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10218 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb80ba000
10218 close(3) = 0
10218 open("/lib/libreadline.so.5", O_RDONLY <unfinished ...>
10217 <... close resumed> ) = -1 EBADF (Bad file descriptor)
10218 <... open resumed> ) = 3
10217 rt_sigprocmask(SIG_BLOCK, [INT CHLD], <unfinished ...>
10218 read(3, <unfinished ...>
10217 <... rt_sigprocmask resumed> [CHLD], 8) = 0
10218 <... read resumed> "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`\315\20\0004\0\0\0`"..., 512) = 512
10217 clone( <unfinished ...>
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=218640, ...}) = 0
10217 <... clone resumed> child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7f12728) = 10219
10218 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb80b9000
10218 mmap2(NULL, 220212, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0 <unfinished ...>
10219 close(255) = 0
10218 <... mmap2 resumed> ) = 0x173000
10219 rt_sigprocmask(SIG_SETMASK, [], <unfinished ...>
10218 mmap2(0x1a4000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x31 <unfinished ...>
10219 <... rt_sigprocmask resumed> NULL, 8) = 0
10219 rt_sigaction(SIGTSTP, {SIG_DFL, [], 0}, <unfinished ...>
10218 <... mmap2 resumed> ) = 0x1a4000
10219 <... rt_sigaction resumed> {SIG_DFL, [], 0}, 8) = 0
10219 rt_sigaction(SIGTTIN, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
10218 mmap2(0x1a8000, 3124, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x1a8000
10218 close(3) = 0
10218 open("/lib/libncurses.so.5", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240\35\234\0004\0\0\0l"..., 512) = 512
10219 rt_sigaction(SIGTTOU, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
10218 fstat64(3, <unfinished ...>
10219 dup2(3, 0 <unfinished ...>
10218 <... fstat64 resumed> {st_mode=S_IFREG|0755, st_size=139292, ...}) = 0
10219 <... dup2 resumed> ) = 0
10219 close(3 <unfinished ...>
10218 mmap2(NULL, 136728, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0 <unfinished ...>
10219 <... close resumed> ) = 0
10218 <... mmap2 resumed> ) = 0x110000
10218 mmap2(0x131000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x21) = 0x131000
10218 close(3) = 0
10218 open("/lib/libcrypt.so.1", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\340\10\0\0004\0\0\0\30"..., 512) = 512
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=38976, ...}) = 0
10218 mmap2(NULL, 196956, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0 <unfinished ...>
10219 stat64(".", <unfinished ...>
10218 <... mmap2 resumed> ) = 0x132000
10219 <... stat64 resumed> {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10218 mmap2(0x13a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7 <unfinished ...>
10219 stat64("/usr/kerberos/sbin/awk", 0xbffd7000) = -1 ENOENT (No such file or directory)
10218 <... mmap2 resumed> ) = 0x13a000
10219 stat64("/usr/lib/qt-3.3/bin/awk", 0xbffd7000) = -1 ENOENT (No such file or directory)
10219 stat64("/usr/kerberos/bin/awk", 0xbffd7000) = -1 ENOENT (No such file or directory)
10219 stat64("/usr/lib/ccache/awk", 0xbffd7000) = -1 ENOENT (No such file or directory)
10219 stat64("/usr/local/bin/awk", 0xbffd7000) = -1 ENOENT (No such file or directory)
10219 stat64("/usr/bin/awk", {st_mode=S_IFREG|0755, st_size=344496, ...}) = 0
10219 access("/usr/bin/awk", X_OK) = 0
10219 access("/usr/bin/awk", R_OK) = 0
10219 stat64("/usr/bin/awk", {st_mode=S_IFREG|0755, st_size=344496, ...}) = 0
10219 access("/usr/bin/awk", X_OK) = 0
10219 access("/usr/bin/awk", R_OK) = 0
10219 rt_sigaction(SIGINT, {SIG_DFL, [], 0}, {SIG_DFL, [], 0}, 8) = 0
10219 rt_sigaction(SIGQUIT, {SIG_DFL, [], 0}, {0x1, [], 0}, 8) = 0
10219 rt_sigaction(SIGCHLD, {SIG_DFL, [], 0}, {0x80818d0, [], 0}, 8) = 0
10219 execve("/usr/bin/awk", ["awk", "-v", "key=VMW1013", "-v", "opts=-fstype=cifs,file_mode=0644"..., "-F|", "--", "\n BEGIN { ORS=\"\"; first"...], [/* 53 vars */] <unfinished ...>
10217 rt_sigprocmask(SIG_SETMASK, [CHLD], <unfinished ...>
10219 <... execve resumed> ) = 0
10218 mmap2(0x13c000, 155996, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0 <unfinished ...>
10217 <... rt_sigprocmask resumed> NULL, 8) = 0
10219 brk(0 <unfinished ...>
10218 <... mmap2 resumed> ) = 0x13c000
10219 <... brk resumed> ) = 0x9ecb000
10218 close(3 <unfinished ...>
10217 close(3) = 0
10219 access("/etc/ld.so.preload", R_OK <unfinished ...>
10218 <... close resumed> ) = 0
10219 <... access resumed> ) = -1 ENOENT (No such file or directory)
10218 open("/lib/libcap.so.2", O_RDONLY <unfinished ...>
10219 open("/etc/ld.so.cache", O_RDONLY <unfinished ...>
10218 <... open resumed> ) = 3
10219 <... open resumed> ) = 3
10218 read(3, <unfinished ...>
10219 fstat64(3, <unfinished ...>
10218 <... read resumed> "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\0\335L\0004\0\0\0\204"..., 512) = 512
10219 <... fstat64 resumed> {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10218 fstat64(3, <unfinished ...>
10219 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 3, 0 <unfinished ...>
10218 <... fstat64 resumed> {st_mode=S_IFREG|0755, st_size=15924, ...}) = 0
10219 <... mmap2 resumed> ) = 0xb7eed000
10218 mmap2(NULL, 17136, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0 <unfinished ...>
10219 close(3 <unfinished ...>
10217 rt_sigprocmask(SIG_BLOCK, [CHLD], <unfinished ...>
10219 <... close resumed> ) = 0
10218 <... mmap2 resumed> ) = 0x163000
10217 <... rt_sigprocmask resumed> [CHLD], 8) = 0
10219 open("/lib/libdl.so.2", O_RDONLY <unfinished ...>
10218 mmap2(0x167000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3 <unfinished ...>
10219 <... open resumed> ) = 3
10218 <... mmap2 resumed> ) = 0x167000
10219 read(3, <unfinished ...>
10218 close(3 <unfinished ...>
10219 <... read resumed> "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`\272\325\0004\0\0\0("..., 512) = 512
10218 <... close resumed> ) = 0
10219 fstat64(3, <unfinished ...>
10218 open("/lib/libresolv.so.2", O_RDONLY <unfinished ...>
10219 <... fstat64 resumed> {st_mode=S_IFREG|0755, st_size=20464, ...}) = 0
10218 <... open resumed> ) = 3
10219 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 <unfinished ...>
10218 read(3, <unfinished ...>
10219 <... mmap2 resumed> ) = 0xb7eec000
10218 <... read resumed> "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\200\26d\0004\0\0\0\364"..., 512) = 512
10219 mmap2(0xd5b000, 16500, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0 <unfinished ...>
10218 fstat64(3, <unfinished ...>
10219 <... mmap2 resumed> ) = 0xd5b000
10219 mmap2(0xd5e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2 <unfinished ...>
10218 <... fstat64 resumed> {st_mode=S_IFREG|0755, st_size=102332, ...}) = 0
10219 <... mmap2 resumed> ) = 0xd5e000
10218 mmap2(NULL, 100424, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0 <unfinished ...>
10219 close(3 <unfinished ...>
10218 <... mmap2 resumed> ) = 0x1a9000
10219 <... close resumed> ) = 0
10218 mprotect(0x1bd000, 4096, PROT_NONE <unfinished ...>
10217 rt_sigprocmask(SIG_SETMASK, [CHLD], <unfinished ...>
10219 open("/lib/libm.so.6", O_RDONLY <unfinished ...>
10218 <... mprotect resumed> ) = 0
10219 <... open resumed> ) = 3
10218 mmap2(0x1be000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14 <unfinished ...>
10219 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`D\323\0004\0\0\0<"..., 512) = 512
10218 <... mmap2 resumed> ) = 0x1be000
10219 fstat64(3, <unfinished ...>
10217 <... rt_sigprocmask resumed> NULL, 8) = 0
10219 <... fstat64 resumed> {st_mode=S_IFREG|0755, st_size=206204, ...}) = 0
10218 mmap2(0x1c0000, 6216, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0 <unfinished ...>
10219 mmap2(0xd31000, 159872, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0 <unfinished ...>
10218 <... mmap2 resumed> ) = 0x1c0000
10219 <... mmap2 resumed> ) = 0xd31000
10219 mmap2(0xd57000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x25 <unfinished ...>
10218 close(3 <unfinished ...>
10219 <... mmap2 resumed> ) = 0xd57000
10218 <... close resumed> ) = 0
10217 rt_sigprocmask(SIG_BLOCK, [CHLD], <unfinished ...>
10219 close(3 <unfinished ...>
10217 <... rt_sigprocmask resumed> [CHLD], 8) = 0
10217 rt_sigaction(SIGINT, {0x807f720, [], 0}, {SIG_DFL, [], 0}, 8) = 0
10217 waitpid(-1, <unfinished ...>
10219 <... close resumed> ) = 0
10218 open("/lib/libnsl.so.1", O_RDONLY <unfinished ...>
10219 open("/lib/libc.so.6", O_RDONLY <unfinished ...>
10218 <... open resumed> ) = 3
10219 <... open resumed> ) = 3
10218 read(3, <unfinished ...>
10219 read(3, <unfinished ...>
10218 <... read resumed> "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\260q\365\0074\0\0\0\370"..., 512) = 512
10219 <... read resumed> "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300K\275\0004\0\0\0\354"..., 512) = 512
10218 fstat64(3, <unfinished ...>
10219 fstat64(3, <unfinished ...>
10218 <... fstat64 resumed> {st_mode=S_IFREG|0755, st_size=117912, ...}) = 0
10219 <... fstat64 resumed> {st_mode=S_IFREG|0755, st_size=1803428, ...}) = 0
10218 mmap2(NULL, 108520, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0 <unfinished ...>
10219 mmap2(0xbbe000, 1509672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0 <unfinished ...>
10218 <... mmap2 resumed> ) = 0xb98000
10219 <... mmap2 resumed> ) = 0xbbe000
10218 mmap2(0xbaf000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16 <unfinished ...>
10219 mmap2(0xd29000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16b <unfinished ...>
10218 <... mmap2 resumed> ) = 0xbaf000
10219 <... mmap2 resumed> ) = 0xd29000
10219 mmap2(0xd2c000, 10536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0 <unfinished ...>
10218 mmap2(0xbb1000, 6120, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0 <unfinished ...>
10219 <... mmap2 resumed> ) = 0xd2c000
10219 close(3 <unfinished ...>
10218 <... mmap2 resumed> ) = 0xbb1000
10219 <... close resumed> ) = 0
10218 close(3 <unfinished ...>
10219 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 <unfinished ...>
10218 <... close resumed> ) = 0
10219 <... mmap2 resumed> ) = 0xb7eeb000
10218 open("/lib/libdl.so.2", O_RDONLY <unfinished ...>
10219 set_thread_area({entry_number:-1 -> <unfinished ...>
10218 <... open resumed> ) = 3
10219 <... set_thread_area resumed> 6, base_addr:0xb7eeb6c0, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
10218 read(3, <unfinished ...>
10219 mprotect(0xd5e000, 4096, PROT_READ <unfinished ...>
10218 <... read resumed> "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`\272\325\0004\0\0\0("..., 512) = 512
10219 <... mprotect resumed> ) = 0
10218 fstat64(3, <unfinished ...>
10219 mprotect(0xd57000, 4096, PROT_READ <unfinished ...>
10218 <... fstat64 resumed> {st_mode=S_IFREG|0755, st_size=20464, ...}) = 0
10219 <... mprotect resumed> ) = 0
10218 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 <unfinished ...>
10219 mprotect(0xd29000, 8192, PROT_READ <unfinished ...>
10218 <... mmap2 resumed> ) = 0xb80b8000
10219 <... mprotect resumed> ) = 0
10218 mmap2(NULL, 16500, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0 <unfinished ...>
10219 mprotect(0xbba000, 4096, PROT_READ <unfinished ...>
10218 <... mmap2 resumed> ) = 0xb81000
10219 <... mprotect resumed> ) = 0
10218 mmap2(0xb84000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2 <unfinished ...>
10219 munmap(0xb7eed000, 134654 <unfinished ...>
10218 <... mmap2 resumed> ) = 0xb84000
10219 <... munmap resumed> ) = 0
10219 brk(0 <unfinished ...>
10218 close(3 <unfinished ...>
10219 <... brk resumed> ) = 0x9ecb000
10218 <... close resumed> ) = 0
10219 brk(0x9eec000 <unfinished ...>
10218 open("/lib/libpopt.so.0", O_RDONLY <unfinished ...>
10219 <... brk resumed> ) = 0x9eec000
10218 <... open resumed> ) = 3
10219 open("/usr/lib/locale/locale-archive", O_RDONLY|O_LARGEFILE <unfinished ...>
10218 read(3, <unfinished ...>
10219 <... open resumed> ) = 3
10218 <... read resumed> "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P\343\215\0074\0\0\0\200"..., 512) = 512
10219 fstat64(3, <unfinished ...>
10218 fstat64(3, <unfinished ...>
10219 <... fstat64 resumed> {st_mode=S_IFREG|0644, st_size=84748720, ...}) = 0
10218 <... fstat64 resumed> {st_mode=S_IFREG|0755, st_size=34392, ...}) = 0
10219 mmap2(NULL, 2097152, PROT_READ, MAP_PRIVATE, 3, 0 <unfinished ...>
10218 mmap2(NULL, 35568, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0 <unfinished ...>
10219 <... mmap2 resumed> ) = 0xb7ceb000
10218 <... mmap2 resumed> ) = 0xd93000
10219 close(3 <unfinished ...>
10218 mmap2(0xd9b000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7 <unfinished ...>
10219 <... close resumed> ) = 0
10218 <... mmap2 resumed> ) = 0xd9b000
10219 rt_sigaction(SIGFPE, {0x80731f0, [FPE], SA_RESTART}, <unfinished ...>
10218 close(3 <unfinished ...>
10219 <... rt_sigaction resumed> {SIG_DFL, [], 0}, 8) = 0
10218 <... close resumed> ) = 0
10219 rt_sigaction(SIGBUS, {0x80731f0, [BUS], SA_RESTART}, <unfinished ...>
10218 open("/usr/lib/libgssapi_krb5.so.2", O_RDONLY <unfinished ...>
10219 <... rt_sigaction resumed> {SIG_DFL, [], 0}, 8) = 0
10218 <... open resumed> ) = 3
10219 rt_sigaction(SIGSEGV, {0x808aa50, [HUP INT QUIT USR1 USR2 PIPE ALRM TERM CHLD URG XCPU XFSZ VTALRM PROF WINCH IO PWR], 0}, <unfinished ...>
10218 read(3, <unfinished ...>
10219 <... rt_sigaction resumed> NULL, 8) = 0
10218 <... read resumed> "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0p\255\212\0004\0\0\0\240"..., 512) = 512
10219 open("/proc/self/maps", O_RDONLY <unfinished ...>
10218 fstat64(3, <unfinished ...>
10219 <... open resumed> ) = 3
10218 <... fstat64 resumed> {st_mode=S_IFREG|0755, st_size=178336, ...}) = 0
10219 read(3, <unfinished ...>
10218 mmap2(NULL, 175068, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0 <unfinished ...>
10219 <... read resumed> "00194000-00195000 r-xp 00194000 0"..., 4096) = 1315
10218 <... mmap2 resumed> ) = 0x639000
10219 close(3 <unfinished ...>
10218 mmap2(0x663000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2a <unfinished ...>
10219 <... close resumed> ) = 0
10219 sigaltstack({ss_sp=0x9ecb9c0, ss_flags=0, ss_size=16384} <unfinished ...>
10218 <... mmap2 resumed> ) = 0x663000
10219 <... sigaltstack resumed> , NULL) = 0
10218 close(3 <unfinished ...>
10219 rt_sigaction(SIGSEGV, {0x808aa50, [HUP INT QUIT USR1 USR2 PIPE ALRM TERM CHLD URG XCPU XFSZ VTALRM PROF WINCH IO PWR], SA_STACK}, <unfinished ...>
10218 <... close resumed> ) = 0
10219 <... rt_sigaction resumed> NULL, 8) = 0
10218 open("/usr/lib/libkrb5.so.3", O_RDONLY <unfinished ...>
10219 fstat64(0, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
10218 <... open resumed> ) = 3
10219 fstat64(1, <unfinished ...>
10218 read(3, <unfinished ...>
10219 <... fstat64 resumed> {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
10218 <... read resumed> "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\340\1j\0004\0\0\0d"..., 512) = 512
10219 fstat64(2, <unfinished ...>
10218 fstat64(3, <unfinished ...>
10219 <... fstat64 resumed> {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
10218 <... fstat64 resumed> {st_mode=S_IFREG|0755, st_size=642108, ...}) = 0
10219 getgroups32(0, <unfinished ...>
10218 mmap2(NULL, 638952, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0 <unfinished ...>
10219 <... getgroups32 resumed> NULL) = 7
10218 <... mmap2 resumed> ) = 0x664000
10219 getgroups32(7, <unfinished ...>
10218 mmap2(0x6fe000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9a <unfinished ...>
10219 <... getgroups32 resumed> [0, 1, 2, 3, 4, 6, 10]) = 7
10218 <... mmap2 resumed> ) = 0x6fe000
10219 open("/usr/lib/gconv/gconv-modules.cache", O_RDONLY <unfinished ...>
10218 close(3 <unfinished ...>
10219 <... open resumed> ) = 3
10218 <... close resumed> ) = 0
10219 fstat64(3, {st_mode=S_IFREG|0644, st_size=26048, ...}) = 0
10218 open("/usr/lib/libk5crypto.so.3", O_RDONLY <unfinished ...>
10219 mmap2(NULL, 26048, PROT_READ, MAP_SHARED, 3, 0 <unfinished ...>
10218 <... open resumed> ) = 3
10219 <... mmap2 resumed> ) = 0xb7f07000
10218 read(3, <unfinished ...>
10219 close(3 <unfinished ...>
10218 <... read resumed> "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\200\206f\0004\0\0\0\4"..., 512) = 512
10219 <... close resumed> ) = 0
10218 fstat64(3, <unfinished ...>
10219 ioctl(1, SNDCTL_TMR_TIMEBASE or TCGETS <unfinished ...>
10218 <... fstat64 resumed> {st_mode=S_IFREG|0755, st_size=149212, ...}) = 0
10219 <... ioctl resumed> , 0xbfb268b8) = -1 EINVAL (Invalid argument)
10218 mmap2(NULL, 146848, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0 <unfinished ...>
10219 fstat64(0, <unfinished ...>
10218 <... mmap2 resumed> ) = 0x700000
10219 <... fstat64 resumed> {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
10218 mmap2(0x723000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x23 <unfinished ...>
10219 ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, 0xbfb26758) = -1 EINVAL (Invalid argument)
10219 fstat64(0, <unfinished ...>
10218 <... mmap2 resumed> ) = 0x723000
10219 <... fstat64 resumed> {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
10218 close(3 <unfinished ...>
10219 read(0, <unfinished ...>
10218 <... close resumed> ) = 0
10218 open("/lib/libcom_err.so.2", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\20\rf\0004\0\0\0\230"..., 512) = 512
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=10864, ...}) = 0
10218 mmap2(NULL, 11996, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x168000
10218 mmap2(0x16a000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0x16a000
10218 close(3) = 0
10218 open("/usr/lib/libldap-2.4.so.2", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\220\233\0\0004\0\0\0\314"..., 512) = 512
10218 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb80b7000
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=284676, ...}) = 0
10218 mmap2(NULL, 283360, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x9a2000
10218 mmap2(0x9e6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x44) = 0x9e6000
10218 close(3) = 0
10218 open("/usr/lib/liblber-2.4.so.2", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0p\305\362\0024\0\0\0\234"..., 512) = 512
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=57932, ...}) = 0
10218 mmap2(NULL, 59188, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x1c2000
10218 mmap2(0x1d0000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd) = 0x1d0000
10218 close(3) = 0
10218 open("/usr/lib/libtalloc.so.1", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\360\21\324\0004\0\0\0\204"..., 512) = 512
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=34612, ...}) = 0
10218 mmap2(NULL, 36224, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xc8d000
10218 mmap2(0xc95000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7) = 0xc95000
10218 close(3) = 0
10218 open("/usr/lib/libtdb.so.1", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300E\312\0074\0\0\0000"..., 512) = 512
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=54496, ...}) = 0
10218 mmap2(NULL, 56104, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x8c0000
10218 mmap2(0x8cd000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc) = 0x8cd000
10218 close(3) = 0
10218 open("/usr/lib/libwbclient.so.0", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300(\323\0004\0\0\0\260"..., 512) = 512
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=44128, ...}) = 0
10218 mmap2(NULL, 52736, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xdce000
10218 mmap2(0xdd8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9) = 0xdd8000
10218 mmap2(0xdda000, 3584, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xdda000
10218 close(3) = 0
10218 open("/lib/libc.so.6", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300K\275\0004\0\0\0\354"..., 512) = 512
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=1803428, ...}) = 0
10218 mmap2(NULL, 1509672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x724000
10218 mmap2(0x88f000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16b) = 0x88f000
10218 mmap2(0x892000, 10536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x892000
10218 close(3) = 0
10218 open("/lib/libtinfo.so.5", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\260z\232\0004\0\0\0D"..., 512) = 512
10218 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb80b6000
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=97268, ...}) = 0
10218 mmap2(NULL, 99160, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x895000
10218 mmap2(0x8ab000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15) = 0x8ab000
10218 close(3) = 0
10218 open("/lib/libfreebl3.so", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\20\31\0\0004\0\0\0\30"..., 512) = 512
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=273784, ...}) = 0
10218 mmap2(NULL, 293964, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xc3d000
10218 mmap2(0xc80000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x42) = 0xc80000
10218 mmap2(0xc81000, 15436, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xc81000
10218 close(3) = 0
10218 open("/lib/libattr.so.1", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\0\336G\0004\0\0\0\344"..., 512) = 512
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=17812, ...}) = 0
10218 mmap2(NULL, 19048, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x16b000
10218 mmap2(0x16f000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3) = 0x16f000
10218 close(3) = 0
10218 open("/usr/lib/libkrb5support.so.0", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\0\370r\0004\0\0\0\374"..., 512) = 512
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=38868, ...}) = 0
10218 mmap2(NULL, 39916, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xa99000
10218 mmap2(0xaa2000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8) = 0xaa2000
10218 close(3) = 0
10218 open("/lib/libkeyutils.so.1", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`\270h\0004\0\0\0\240"..., 512) = 512
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=7976, ...}) = 0
10218 mmap2(NULL, 9260, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x170000
10218 mmap2(0x172000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0x172000
10218 close(3) = 0
10218 open("/lib/libpthread.so.0", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0Pi\326\0004\0\0\0\350"..., 512) = 512
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=140408, ...}) = 0
10218 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb80b5000
10218 mmap2(NULL, 106976, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x8ce000
10218 mprotect(0x8e4000, 4096, PROT_NONE) = 0
10218 mmap2(0x8e5000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16) = 0x8e5000
10218 mmap2(0x8e7000, 4576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x8e7000
10218 close(3) = 0
10218 open("/usr/lib/libsasl2.so.2", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\2601\0\0004\0\0\0\f"..., 512) = 512
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=98628, ...}) = 0
10218 mmap2(NULL, 101480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x8e9000
10218 mmap2(0x901000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17) = 0x901000
10218 close(3) = 0
10218 open("/usr/lib/libssl.so.8", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\260R\216\0004\0\0\0\34"..., 512) = 512
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=310220, ...}) = 0
10218 mmap2(NULL, 311176, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x902000
10218 mmap2(0x94a000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x47) = 0x94a000
10218 close(3) = 0
10218 open("/usr/lib/libcrypto.so.8", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\0)w\0004\0\0\0\264"..., 512) = 512
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=1468772, ...}) = 0
10218 mmap2(NULL, 1483968, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xe21000
10218 mmap2(0xf72000, 90112, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x150) = 0xf72000
10218 mmap2(0xf88000, 13504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xf88000
10218 close(3) = 0
10218 open("/lib/libselinux.so.1", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0000a\334\0004\0\0\0P"..., 512) = 512
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=118312, ...}) = 0
10218 mmap2(NULL, 121836, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x94e000
10218 mmap2(0x96a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b) = 0x96a000
10218 close(3) = 0
10218 open("/lib/libz.so.1", O_RDONLY) = 3
10218 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 \6\330\0004\0\0\0\0"..., 512) = 512
10218 fstat64(3, {st_mode=S_IFREG|0755, st_size=75440, ...}) = 0
10218 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb80b4000
10218 mmap2(NULL, 76688, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xbe0000
10218 mmap2(0xbf2000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x11) = 0xbf2000
10218 close(3) = 0
10218 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb80b3000
10218 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb80b2000
10218 set_thread_area({entry_number:-1 -> 6, base_addr:0xb80b2730, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
10218 mprotect(0x96a000, 4096, PROT_READ) = 0
10218 mprotect(0x8e5000, 4096, PROT_READ) = 0
10218 mprotect(0x88f000, 8192, PROT_READ) = 0
10218 mprotect(0xdd8000, 4096, PROT_READ) = 0
10218 mprotect(0xb84000, 4096, PROT_READ) = 0
10218 mprotect(0xbaf000, 4096, PROT_READ) = 0
10218 mprotect(0x1be000, 4096, PROT_READ) = 0
10218 mprotect(0x13a000, 4096, PROT_READ) = 0
10218 mprotect(0x62a000, 32768, PROT_READ) = 0
10218 mprotect(0xe1f000, 4096, PROT_READ) = 0
10218 munmap(0xb80ba000, 134654) = 0
10218 set_tid_address(0xb80b2798) = 10218
10218 set_robust_list(0xb80b27a0, 0xc) = 0
10218 futex(0xbf851690, FUTEX_WAKE_PRIVATE, 1) = 0
10218 futex(0xbf851690, 0x189 /* FUTEX_??? */, 1, NULL, bf8516a0) = -1 EAGAIN (Resource temporarily unavailable)
10218 rt_sigaction(SIGRTMIN, {0x8d2340, [], SA_SIGINFO}, NULL, 8) = 0
10218 rt_sigaction(SIGRT_1, {0x8d2840, [], SA_RESTART|SA_SIGINFO}, NULL, 8) = 0
10218 rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
10218 getrlimit(RLIMIT_STACK, {rlim_cur=10240*1024, rlim_max=RLIM_INFINITY}) = 0
10218 uname({sys="Linux", node="FMI2081.fic.ffg", ...}) = 0
10218 brk(0) = 0x1dd5000
10218 brk(0x1df6000) = 0x1df6000
10218 open("/etc/selinux/config", O_RDONLY|O_LARGEFILE) = 3
10218 fstat64(3, {st_mode=S_IFREG|0644, st_size=439, ...}) = 0
10218 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb80da000
10218 read(3, "\n# This file controls the state o"..., 4096) = 439
10218 read(3, ""..., 4096) = 0
10218 close(3) = 0
10218 munmap(0xb80da000, 4096) = 0
10218 statfs64("/selinux", 84, {f_type=0xf97cff8c, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=4096}) = 0
10218 stat64("/selinux/class", {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
10218 open("/selinux/mls", O_RDONLY|O_LARGEFILE) = 3
10218 read(3, "1"..., 19) = 1
10218 close(3) = 0
10218 dup(2) = 3
10218 open("/usr/lib/samba/upcase.dat", O_RDONLY|O_LARGEFILE) = 4
10218 mmap2(NULL, 131072, PROT_READ, MAP_SHARED, 4, 0) = 0xb80bb000
10218 close(4) = 0
10218 open("/usr/lib/samba/lowcase.dat", O_RDONLY|O_LARGEFILE) = 4
10218 mmap2(NULL, 131072, PROT_READ, MAP_SHARED, 4, 0) = 0xb8092000
10218 close(4) = 0
10218 open("/etc/auto.smb.jmasker", O_RDONLY|O_LARGEFILE) = 4
10218 read(4, "username=fic\\jmasker\npassword=***"..., 8192) = 43
10218 read(4, ""..., 8192) = 0
10218 close(4) = 0
10218 uname({sys="Linux", node="FMI2081.fic.ffg", ...}) = 0
10218 stat64("/etc/samba/smb.conf", {st_mode=S_IFREG|0644, st_size=9778, ...}) = 0
10218 open("/etc/samba/smb.conf", O_RDONLY|O_LARGEFILE) = 4
10218 fstat64(4, {st_mode=S_IFREG|0644, st_size=9778, ...}) = 0
10218 read(4, "# This is the main Samba configur"..., 9778) = 9778
10218 close(4) = 0
10218 open("/usr/lib/locale/locale-archive", O_RDONLY|O_LARGEFILE) = 4
10218 fstat64(4, {st_mode=S_IFREG|0644, st_size=84748720, ...}) = 0
10218 mmap2(NULL, 2097152, PROT_READ, MAP_PRIVATE, 4, 0) = 0xb7e92000
10218 close(4) = 0
10218 open("/usr/lib/gconv/gconv-modules.cache", O_RDONLY) = 4
10218 fstat64(4, {st_mode=S_IFREG|0644, st_size=26048, ...}) = 0
10218 mmap2(NULL, 26048, PROT_READ, MAP_SHARED, 4, 0) = 0xb7e8b000
10218 close(4) = 0
10218 futex(0x891a6c, FUTEX_WAKE_PRIVATE, 2147483647) = 0
10218 open("/usr/lib/gconv/UTF-16.so", O_RDONLY) = 4
10218 read(4, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`\4\0\0004\0\0\0\250"..., 512) = 512
10218 fstat64(4, {st_mode=S_IFREG|0755, st_size=11648, ...}) = 0
10218 mmap2(NULL, 12324, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x1d1000
10218 mmap2(0x1d3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1) = 0x1d3000
10218 close(4) = 0
10218 mprotect(0x1d3000, 4096, PROT_READ) = 0
10218 open("/usr/lib/gconv/IBM850.so", O_RDONLY) = 4
10218 read(4, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\260\3\0\0004\0\0\0|"..., 512) = 512
10218 fstat64(4, {st_mode=S_IFREG|0755, st_size=11604, ...}) = 0
10218 mmap2(NULL, 12312, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x1d5000
10218 mmap2(0x1d7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x1) = 0x1d7000
10218 close(4) = 0
10218 mprotect(0x1d7000, 4096, PROT_READ) = 0
10218 brk(0x1e19000) = 0x1e19000
10218 brk(0x1e41000) = 0x1e41000
10218 open("/usr/lib/samba/valid.dat", O_RDONLY|O_LARGEFILE) = 4
10218 mmap2(NULL, 65536, PROT_READ, MAP_SHARED, 4, 0) = 0xb7e7b000
10218 close(4) = 0
10218 socket(PF_NETLINK, SOCK_RAW, 0) = 4
10218 bind(4, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 0
10218 getsockname(4, {sa_family=AF_NETLINK, pid=10218, groups=00000000}, [12]) = 0
10218 time(NULL) = 1251470808
10218 sendto(4, "\24\0\0\0\22\0\1\3\330\355\227J\0\0\0\0\0\0\0\0"..., 20, 0, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 20
10218 recvmsg(4, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"\354\0\0\0\20\0\2\0\330\355\227J\352'\0\0\0\0\4\3\1\0\0\0I\0\1\0\0\0\0\0\7"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 1688
10218 recvmsg(4, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"\24\0\0\0\3\0\2\0\330\355\227J\352'\0\0\0\0\0\0\1\0\0\0I\0\1\0\0\0\0\0\7"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 20
10218 sendto(4, "\24\0\0\0\26\0\1\3\331\355\227J\0\0\0\0\0\0\0\0"..., 20, 0, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 20
10218 recvmsg(4, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"0\0\0\0\24\0\2\0\331\355\227J\352'\0\0\2\10\200\376\1\0\0\0\10\0\1\0\177\0\0\1\10"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 168
10218 recvmsg(4, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"@\0\0\0\24\0\2\0\331\355\227J\352'\0\0\n\200\200\376\1\0\0\0\24\0\1\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 192
10218 recvmsg(4, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"\24\0\0\0\3\0\2\0\331\355\227J\352'\0\0\0\0\0\0\1\0\0\0\24\0\1\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 20
10218 close(4) = 0
10218 geteuid32() = 0
10218 getuid32() = 0
10218 brk(0x1e6c000) = 0x1e6c000
10218 stat64("/var/lib/samba", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
10218 open("/var/lib/samba/gencache.tdb", O_RDWR|O_CREAT|O_LARGEFILE, 0644) = 4
10218 fcntl64(4, F_GETFD) = 0
10218 fcntl64(4, F_SETFD, FD_CLOEXEC) = 0
10218 fcntl64(4, F_SETLKW64, {type=F_WRLCK, whence=SEEK_SET, start=0, len=1}, 0xbf850678) = 0
10218 read(4, "TDB file\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0m"..., 168) = 168
10218 fstat64(4, {st_mode=S_IFREG|0644, st_size=16384, ...}) = 0
10218 mmap2(NULL, 16384, PROT_READ|PROT_WRITE, MAP_SHARED, 4, 0) = 0xb7e77000
10218 fcntl64(4, F_SETLKW64, {type=F_UNLCK, whence=SEEK_SET, start=0, len=1}, 0xbf850678) = 0
10218 fcntl64(4, F_SETLKW64, {type=F_RDLCK, whence=SEEK_SET, start=468, len=1}, 0xbf8505e8) = 0
10218 fcntl64(4, F_SETLKW64, {type=F_UNLCK, whence=SEEK_SET, start=468, len=1}, 0xbf850648) = 0
10218 fcntl64(4, F_SETLKW64, {type=F_RDLCK, whence=SEEK_SET, start=236, len=1}, 0xbf850498) = 0
10218 fcntl64(4, F_SETLKW64, {type=F_UNLCK, whence=SEEK_SET, start=236, len=1}, 0xbf850528) = 0
10218 time(NULL) = 1251470808
10218 socket(PF_NETLINK, SOCK_RAW, 0) = 5
10218 bind(5, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 0
10218 getsockname(5, {sa_family=AF_NETLINK, pid=10218, groups=00000000}, [12]) = 0
10218 time(NULL) = 1251470808
10218 sendto(5, "\24\0\0\0\26\0\1\3\330\355\227J\0\0\0\0\0\0\0\0"..., 20, 0, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 20
10218 recvmsg(5, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"0\0\0\0\24\0\2\0\330\355\227J\352'\0\0\2\10\200\376\1\0\0\0\10\0\1\0\177\0\0\1\10"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 168
10218 recvmsg(5, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"@\0\0\0\24\0\2\0\330\355\227J\352'\0\0\n\200\200\376\1\0\0\0\24\0\1\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 192
10218 recvmsg(5, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"\24\0\0\0\3\0\2\0\330\355\227J\352'\0\0\0\0\0\0\1\0\0\0\24\0\1\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 20
10218 close(5) = 0
10218 socket(PF_INET, SOCK_STREAM, IPPROTO_IP) = 5
10218 fcntl64(5, F_GETFL) = 0x2 (flags O_RDWR)
10218 fcntl64(5, F_SETFL, O_RDWR|O_NONBLOCK) = 0
10218 connect(5, {sa_family=AF_INET, sin_port=htons(445), sin_addr=inet_addr("10.0.33.12")}, 16) = -1 EINPROGRESS (Operation now in progress)
10218 nanosleep({0, 10000000}, {0, 10000000}) = 0
10218 connect(5, {sa_family=AF_INET, sin_port=htons(445), sin_addr=inet_addr("10.0.33.12")}, 16) = 0
10218 fcntl64(5, F_GETFL) = 0x802 (flags O_RDWR|O_NONBLOCK)
10218 fcntl64(5, F_SETFL, O_RDWR) = 0
10218 setsockopt(5, SOL_TCP, TCP_NODELAY, [1], 4) = 0
10218 writev(5, [{"\0\0\0\276\377SMBr\0\0\0\0\10\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\0\352'\0"..., 194}], 1) = 194
10218 gettimeofday({1251470809, 4917}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999029})
10218 read(5, "\0\0\0\255"..., 4) = 4
10218 gettimeofday({1251470809, 6078}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999996})
10218 read(5, "\377SMBr\0\0\0\0\210\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\0\352'\0\0\1\0\21"..., 173) = 173
10218 writev(5, [{"\0\0\0\242\377SMBs\0\0\0\0\10\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\0\352'\0"..., 166}], 1) = 166
10218 gettimeofday({1251470809, 7147}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 998677})
10218 read(5, "\0\0\0018"..., 4) = 4
10218 gettimeofday({1251470809, 8747}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999995})
10218 read(5, "\377SMBs\26\0\0\300\210\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\0\352'\0\10\2\0\4"..., 312) = 312
10218 open("/dev/urandom", O_RDONLY|O_LARGEFILE) = 6
10218 read(6, "w\251S*\354\233Fx"..., 8) = 8
10218 read(6, "X\t\210\26-O\234\232v\37'\35\t!xm"..., 16) = 16
10218 writev(5, [{"\0\0\1\0\377SMBs\0\0\0\0\10\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\0\352'\0"..., 260}], 1) = 260
10218 gettimeofday({1251470809, 9770}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 994267})
10218 read(5, "\0\0\0~"..., 4) = 4
10218 gettimeofday({1251470809, 15751}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999995})
10218 read(5, "\377SMBs\0\0\0\0\210\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\0\352'\0\10\3\0\4"..., 126) = 126
10218 write(3, "Domain=[FIC] OS=[Windows 5.1] Ser"..., 64) = 64
10218 writev(5, [{"\0\0\0P\377SMBu\0\0\0\0\10\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\0\352'\0"..., 84}], 1) = 84
10218 gettimeofday({1251470809, 16457}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999485})
10218 read(5, "\0\0\0008"..., 4) = 4
10218 gettimeofday({1251470809, 17211}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999996})
10218 read(5, "\377SMBu\0\0\0\0\210\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0\10\4\0\7"..., 56) = 56
10218 writev(5, [{"\0\0\0d\377SMB\242\0\0\0\0\10\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0"..., 104}], 1) = 104
10218 gettimeofday({1251470809, 17793}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999625})
10218 read(5, "\0\0\0g"..., 4) = 4
10218 gettimeofday({1251470809, 18459}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999995})
10218 read(5, "\377SMB\242\0\0\0\0\210\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0\10\5\0\""..., 103) = 103
10218 brk(0x1e8d000) = 0x1e8d000
10218 writev(5, [{"\0\0\0\232\377SMB%\0\0\0\0\10\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0"..., 158}], 1) = 158
10218 gettimeofday({1251470809, 19149}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999492})
10218 read(5, "\0\0\0|"..., 4) = 4
10218 gettimeofday({1251470809, 19902}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999996})
10218 read(5, "\377SMB%\0\0\0\0\210\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0\10\6\0\n"..., 124) = 124
10218 brk(0x1e8c000) = 0x1e8c000
10218 writev(5, [{"\0\0\0\252\377SMB%\0\0\0\0\10\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0"..., 174}], 1) = 174
10218 gettimeofday({1251470809, 20604}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999666})
10218 read(5, "\0\0\1\324"..., 4) = 4
10218 gettimeofday({1251470809, 21176}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999995})
10218 read(5, "\377SMB%\0\0\0\0\210\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0\10\7\0\n"..., 468) = 468
10218 stat64("/usr/lib/samba/.msg", 0xbf850a20) = -1 ENOENT (No such file or directory)
10218 fstat64(1, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
10218 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7e76000
10218 writev(5, [{"\0\0\0)\377SMB\4\0\0\0\0\10\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0"..., 45}], 1) = 45
10218 gettimeofday({1251470809, 22131}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999561})
10218 read(5, "\0\0\0#"..., 4) = 4
10218 gettimeofday({1251470809, 22810}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999995})
10218 read(5, "\377SMB\4\0\0\0\0\210\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0\10\10\0\0"..., 35) = 35
10218 socket(PF_NETLINK, SOCK_RAW, 0) = 7
10218 bind(7, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 0
10218 getsockname(7, {sa_family=AF_NETLINK, pid=10218, groups=00000000}, [12]) = 0
10218 time(NULL) = 1251470809
10218 sendto(7, "\24\0\0\0\26\0\1\3\331\355\227J\0\0\0\0\0\0\0\0"..., 20, 0, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 20
10218 recvmsg(7, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"0\0\0\0\24\0\2\0\331\355\227J\352'\0\0\2\10\200\376\1\0\0\0\10\0\1\0\177\0\0\1\10"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 168
10218 recvmsg(7, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"@\0\0\0\24\0\2\0\331\355\227J\352'\0\0\n\200\200\376\1\0\0\0\24\0\1\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 192
10218 recvmsg(7, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"\24\0\0\0\3\0\2\0\331\355\227J\352'\0\0\0\0\0\0\1\0\0\0\24\0\1\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 20
10218 close(7) = 0
10218 socket(PF_FILE, 0x80801 /* SOCK_??? */, 0) = 7
10218 connect(7, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
10218 close(7) = 0
10218 socket(PF_FILE, 0x80801 /* SOCK_??? */, 0) = 7
10218 connect(7, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
10218 close(7) = 0
10218 open("/etc/nsswitch.conf", O_RDONLY) = 7
10218 fstat64(7, {st_mode=S_IFREG|0644, st_size=1696, ...}) = 0
10218 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7e75000
10218 read(7, "#\n# /etc/nsswitch.conf\n#\n# An exa"..., 4096) = 1696
10218 read(7, ""..., 4096) = 0
10218 close(7) = 0
10218 munmap(0xb7e75000, 4096) = 0
10218 open("/etc/host.conf", O_RDONLY) = 7
10218 fstat64(7, {st_mode=S_IFREG|0644, st_size=26, ...}) = 0
10218 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7e75000
10218 read(7, "multi on\norder hosts,bind\n"..., 4096) = 26
10218 read(7, ""..., 4096) = 0
10218 close(7) = 0
10218 munmap(0xb7e75000, 4096) = 0
10218 futex(0x893b24, FUTEX_WAKE_PRIVATE, 2147483647) = 0
10218 open("/etc/resolv.conf", O_RDONLY) = 7
10218 fstat64(7, {st_mode=S_IFREG|0644, st_size=104, ...}) = 0
10218 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7e75000
10218 read(7, "# Generated by NetworkManager\ndom"..., 4096) = 104
10218 read(7, ""..., 4096) = 0
10218 close(7) = 0
10218 munmap(0xb7e75000, 4096) = 0
10218 open("/etc/ld.so.cache", O_RDONLY) = 7
10218 fstat64(7, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10218 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 7, 0) = 0xb7e55000
10218 close(7) = 0
10218 open("/lib/libnss_files.so.2", O_RDONLY) = 7
10218 read(7, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0000\32\0\0004\0\0\0\314"..., 512) = 512
10218 fstat64(7, {st_mode=S_IFREG|0755, st_size=55540, ...}) = 0
10218 mmap2(NULL, 49864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x8ae000
10218 mmap2(0x8b9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0xa) = 0x8b9000
10218 close(7) = 0
10218 mprotect(0x8b9000, 4096, PROT_READ) = 0
10218 munmap(0xb7e55000, 134654) = 0
10218 open("/etc/hosts", O_RDONLY|O_CLOEXEC) = 7
10218 fcntl64(7, F_GETFD) = 0x1 (flags FD_CLOEXEC)
10218 fstat64(7, {st_mode=S_IFREG|0644, st_size=158, ...}) = 0
10218 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7e75000
10218 read(7, "127.0.0.1 localhost localhost.l"..., 4096) = 158
10218 read(7, ""..., 4096) = 0
10218 close(7) = 0
10218 munmap(0xb7e75000, 4096) = 0
10218 open("/etc/ld.so.cache", O_RDONLY) = 7
10218 fstat64(7, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10218 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 7, 0) = 0xb7e55000
10218 close(7) = 0
10218 open("/lib/libnss_dns.so.2", O_RDONLY) = 7
10218 read(7, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\0\f\0\0004\0\0\0\10"..., 512) = 512
10218 fstat64(7, {st_mode=S_IFREG|0755, st_size=25904, ...}) = 0
10218 mmap2(NULL, 24704, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x1d9000
10218 mmap2(0x1de000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x4) = 0x1de000
10218 close(7) = 0
10218 mprotect(0x1de000, 4096, PROT_READ) = 0
10218 munmap(0xb7e55000, 134654) = 0
10218 socket(PF_INET, 0x802 /* SOCK_??? */, IPPROTO_IP) = 7
10218 connect(7, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("10.0.1.128")}, 28) = 0
10218 gettimeofday({1251470809, 32534}, NULL) = 0
10218 poll([{fd=7, events=POLLOUT}], 1, 0) = 1 ([{fd=7, revents=POLLOUT}])
10218 send(7, "\2766\1\0\0\1\0\0\0\0\0\0\7VMW1013\3fic\3ffg\0\0\1\0\1"..., 33, MSG_NOSIGNAL) = 33
10218 poll([{fd=7, events=POLLIN|POLLOUT}], 1, 5000) = 1 ([{fd=7, revents=POLLOUT}])
10218 send(7, "f\244\1\0\0\1\0\0\0\0\0\0\7VMW1013\3fic\3ffg\0\0\34\0\1"..., 33, MSG_NOSIGNAL) = 33
10218 gettimeofday({1251470809, 33285}, NULL) = 0
10218 poll([{fd=7, events=POLLIN}], 1, 4999) = 1 ([{fd=7, revents=POLLIN}])
10218 ioctl(7, FIONREAD, [49]) = 0
10218 recvfrom(7, "\2766\205\200\0\1\0\1\0\0\0\0\7VMW1013\3fic\3ffg\0\0\1\0\1"..., 2048, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("10.0.1.128")}, [16]) = 49
10218 gettimeofday({1251470809, 33901}, NULL) = 0
10218 poll([{fd=7, events=POLLIN}], 1, 4998) = 1 ([{fd=7, revents=POLLIN}])
10218 ioctl(7, FIONREAD, [86]) = 0
10218 recvfrom(7, "f\244\205\200\0\1\0\0\0\1\0\0\7VMW1013\3fic\3ffg\0\0\34\0\1"..., 1999, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("10.0.1.128")}, [16]) = 86
10218 close(7) = 0
10218 writev(5, [{"\0\0\0#\377SMBq\0\0\0\0\10\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0"..., 39}], 1) = 39
10218 gettimeofday({1251470809, 34791}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999653})
10218 read(5, "\0\0\0#"..., 4) = 4
10218 gettimeofday({1251470809, 35454}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999995})
10218 read(5, "\377SMBq\0\0\0\0\210\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0\10\t\0\0"..., 35) = 35
10218 close(5) = 0
10218 geteuid32() = 0
10218 getuid32() = 0
10218 fcntl64(4, F_SETLKW64, {type=F_RDLCK, whence=SEEK_SET, start=468, len=1}, 0xbf8505e8) = 0
10218 fcntl64(4, F_SETLKW64, {type=F_UNLCK, whence=SEEK_SET, start=468, len=1}, 0xbf850648) = 0
10218 fcntl64(4, F_SETLKW64, {type=F_RDLCK, whence=SEEK_SET, start=236, len=1}, 0xbf850498) = 0
10218 fcntl64(4, F_SETLKW64, {type=F_UNLCK, whence=SEEK_SET, start=236, len=1}, 0xbf850528) = 0
10218 time(NULL) = 1251470809
10218 socket(PF_NETLINK, SOCK_RAW, 0) = 5
10218 bind(5, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 0
10218 getsockname(5, {sa_family=AF_NETLINK, pid=10218, groups=00000000}, [12]) = 0
10218 time(NULL) = 1251470809
10218 sendto(5, "\24\0\0\0\26\0\1\3\331\355\227J\0\0\0\0\0\0\0\0"..., 20, 0, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 20
10218 recvmsg(5, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"0\0\0\0\24\0\2\0\331\355\227J\352'\0\0\2\10\200\376\1\0\0\0\10\0\1\0\177\0\0\1\10"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 168
10218 recvmsg(5, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"@\0\0\0\24\0\2\0\331\355\227J\352'\0\0\n\200\200\376\1\0\0\0\24\0\1\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 192
10218 recvmsg(5, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"\24\0\0\0\3\0\2\0\331\355\227J\352'\0\0\0\0\0\0\1\0\0\0\24\0\1\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 20
10218 close(5) = 0
10218 socket(PF_INET, SOCK_STREAM, IPPROTO_IP) = 5
10218 fcntl64(5, F_GETFL) = 0x2 (flags O_RDWR)
10218 fcntl64(5, F_SETFL, O_RDWR|O_NONBLOCK) = 0
10218 connect(5, {sa_family=AF_INET, sin_port=htons(139), sin_addr=inet_addr("10.0.33.12")}, 16) = -1 EINPROGRESS (Operation now in progress)
10218 nanosleep({0, 10000000}, {0, 10000000}) = 0
10218 connect(5, {sa_family=AF_INET, sin_port=htons(139), sin_addr=inet_addr("10.0.33.12")}, 16) = 0
10218 fcntl64(5, F_GETFL) = 0x802 (flags O_RDWR|O_NONBLOCK)
10218 fcntl64(5, F_SETFL, O_RDWR) = 0
10218 setsockopt(5, SOL_TCP, TCP_NODELAY, [1], 4) = 0
10218 writev(5, [{"\201\0\0D FGENFHDBDADBDDCACACACACACACA"..., 72}], 1) = 72
10218 gettimeofday({1251470809, 50015}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999685})
10218 read(5, "\202\0\0\0"..., 4) = 4
10218 writev(5, [{"\0\0\0\276\377SMBr\0\0\0\0\10\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\0\352'\0"..., 194}], 1) = 194
10218 gettimeofday({1251470809, 50847}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999607})
10218 read(5, "\0\0\0\255"..., 4) = 4
10218 gettimeofday({1251470809, 51573}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999995})
10218 read(5, "\377SMBr\0\0\0\0\210\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\0\352'\0\0\2\0\21"..., 173) = 173
10218 writev(5, [{"\0\0\0\242\377SMBs\0\0\0\0\10\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\0\352'\0"..., 166}], 1) = 166
10218 gettimeofday({1251470809, 52556}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999537})
10218 read(5, "\0\0\0018"..., 4) = 4
10218 gettimeofday({1251470809, 53337}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999995})
10218 read(5, "\377SMBs\26\0\0\300\210\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\0\352'\0\10\3\0\4"..., 312) = 312
10218 read(6, "\30\377\364\203\210\333\302\302"..., 8) = 8
10218 read(6, "]\343\350\36\255(\256\r\361\221|\177Z\207\206\271"..., 16) = 16
10218 writev(5, [{"\0\0\1\0\377SMBs\0\0\0\0\10\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\0\352'\0"..., 260}], 1) = 260
10218 gettimeofday({1251470809, 55656}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 996646})
10218 read(5, "\0\0\0~"..., 4) = 4
10218 gettimeofday({1251470809, 59359}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999995})
10218 read(5, "\377SMBs\0\0\0\0\210\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\0\352'\0\10\4\0\4"..., 126) = 126
10218 write(3, "Domain=[FIC] OS=[Windows 5.1] Ser"..., 64) = 64
10218 writev(5, [{"\0\0\0P\377SMBu\0\0\0\0\10\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\0\352'\0"..., 84}], 1) = 84
10218 gettimeofday({1251470809, 60066}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999518})
10218 read(5, "\0\0\0008"..., 4) = 4
10218 gettimeofday({1251470809, 60863}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999995})
10218 read(5, "\377SMBu\0\0\0\0\210\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0\10\5\0\7"..., 56) = 56
10218 writev(5, [{"\0\0\0x\377SMB%\0\0\0\0\10\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0"..., 124}], 1) = 124
10218 gettimeofday({1251470809, 61431}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 998632})
10218 read(5, "\0\0\21\4"..., 4) = 4
10218 gettimeofday({1251470809, 63225}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999995})
10218 read(5, "\377SMB%\0\0\0\0\210\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0\10\6\0\n"..., 4356) = 4356
10218 gettimeofday({1251470809, 63614}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999995})
10218 read(5, "\0\0\4\372"..., 4) = 4
10218 gettimeofday({1251470809, 63967}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999995})
10218 read(5, "\377SMB%\0\0\0\0\210\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0\10\6\0\n"..., 1274) = 1274
10218 writev(5, [{"\0\0\0x\377SMB%\0\0\0\0\10\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0"..., 124}], 1) = 124
10218 gettimeofday({1251470809, 65523}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999327})
10218 read(5, "\0\0\0\236"..., 4) = 4
10218 gettimeofday({1251470809, 66506}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999995})
10218 read(5, "\377SMB%\0\0\0\0\210\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0\10\7\0\n"..., 158) = 158
10218 writev(5, [{"\0\0\0#\377SMBq\0\0\0\0\10\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0"..., 39}], 1) = 39
10218 gettimeofday({1251470809, 67114}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999783})
10218 read(5, "\0\0\0#"..., 4) = 4
10218 gettimeofday({1251470809, 67643}, NULL) = 0
10218 select(6, [5], NULL, NULL, {20, 0}) = 1 (in [5], left {19, 999995})
10218 read(5, "\377SMBq\0\0\0\0\210\1\310\0\0\0\0\0\0\0\0\0\0\0\0\0\10\352'\0\10\10\0\0"..., 35) = 35
10218 close(5) = 0
10218 write(1, "Disk|My Documents|\nIPC|IPC$|Remot"..., 3552 <unfinished ...>
10219 <... read resumed> "Disk|My Documents|\nIPC|IPC$|Remot"..., 4096) = 3552
10219 fstat64(1, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
10219 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f06000
10219 read(0, <unfinished ...>
10218 <... write resumed> ) = 3552
10218 exit_group(0) = ?
10219 <... read resumed> ""..., 4096) = 0
10219 write(1, "-fstype=cifs,file_mode=0644,dir_m"..., 240) = 240
10219 exit_group(0) = ?
10217 <... waitpid resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0) = 10219
10217 waitpid(-1, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0) = 10218
10217 rt_sigprocmask(SIG_SETMASK, [CHLD], NULL, 8) = 0
10217 rt_sigaction(SIGINT, {SIG_DFL, [], 0}, {0x807f720, [], 0}, 8) = 0
10217 close(3) = -1 EBADF (Bad file descriptor)
10217 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
10217 --- SIGCHLD (Child exited) @ 0 (0) ---
10217 waitpid(-1, 0xbffd6edc, WNOHANG) = -1 ECHILD (No child processes)
10217 sigreturn() = ? (mask now [])
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 read(255, "\n\n\n\n\n\n\n\n\n\n#\t/Disk/ { if (first) "..., 1742) = 276
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
10217 read(255, ""..., 1742) = 0
10217 exit_group(0) = ?
10216 <... poll resumed> ) = 1 ([{fd=5, revents=POLLIN}])
10216 read(5, "-"..., 1) = 1
10216 read(5, "f"..., 1) = 1
10216 read(5, "s"..., 1) = 1
10216 read(5, "t"..., 1) = 1
10216 read(5, "y"..., 1) = 1
10216 read(5, "p"..., 1) = 1
10216 read(5, "e"..., 1) = 1
10216 read(5, "="..., 1) = 1
10216 read(5, "c"..., 1) = 1
10216 read(5, "i"..., 1) = 1
10216 read(5, "f"..., 1) = 1
10216 read(5, "s"..., 1) = 1
10216 read(5, ","..., 1) = 1
10216 read(5, "f"..., 1) = 1
10216 read(5, "i"..., 1) = 1
10216 read(5, "l"..., 1) = 1
10216 read(5, "e"..., 1) = 1
10216 read(5, "_"..., 1) = 1
10216 read(5, "m"..., 1) = 1
10216 read(5, "o"..., 1) = 1
10216 read(5, "d"..., 1) = 1
10216 read(5, "e"..., 1) = 1
10216 read(5, "="..., 1) = 1
10216 read(5, "0"..., 1) = 1
10216 read(5, "6"..., 1) = 1
10216 read(5, "4"..., 1) = 1
10216 read(5, "4"..., 1) = 1
10216 read(5, ","..., 1) = 1
10216 read(5, "d"..., 1) = 1
10216 read(5, "i"..., 1) = 1
10216 read(5, "r"..., 1) = 1
10216 read(5, "_"..., 1) = 1
10216 read(5, "m"..., 1) = 1
10216 read(5, "o"..., 1) = 1
10216 read(5, "d"..., 1) = 1
10216 read(5, "e"..., 1) = 1
10216 read(5, "="..., 1) = 1
10216 read(5, "0"..., 1) = 1
10216 read(5, "7"..., 1) = 1
10216 read(5, "5"..., 1) = 1
10216 read(5, "5"..., 1) = 1
10216 read(5, ","..., 1) = 1
10216 read(5, "u"..., 1) = 1
10216 read(5, "i"..., 1) = 1
10216 read(5, "d"..., 1) = 1
10216 read(5, "="..., 1) = 1
10216 read(5, "j"..., 1) = 1
10216 read(5, "m"..., 1) = 1
10216 read(5, "a"..., 1) = 1
10216 read(5, "s"..., 1) = 1
10216 read(5, "k"..., 1) = 1
10216 read(5, "e"..., 1) = 1
10216 read(5, "r"..., 1) = 1
10216 read(5, ","..., 1) = 1
10216 read(5, "g"..., 1) = 1
10216 read(5, "i"..., 1) = 1
10216 read(5, "d"..., 1) = 1
10216 read(5, "="..., 1) = 1
10216 read(5, "u"..., 1) = 1
10216 read(5, "s"..., 1) = 1
10216 read(5, "e"..., 1) = 1
10216 read(5, "r"..., 1) = 1
10216 read(5, "s"..., 1) = 1
10216 read(5, ","..., 1) = 1
10216 read(5, "c"..., 1) = 1
10216 read(5, "r"..., 1) = 1
10216 read(5, "e"..., 1) = 1
10216 read(5, "d"..., 1) = 1
10216 read(5, "e"..., 1) = 1
10216 read(5, "n"..., 1) = 1
10216 read(5, "t"..., 1) = 1
10216 read(5, "i"..., 1) = 1
10216 read(5, "a"..., 1) = 1
10216 read(5, "l"..., 1) = 1
10216 read(5, "s"..., 1) = 1
10216 read(5, "="..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "e"..., 1) = 1
10216 read(5, "t"..., 1) = 1
10216 read(5, "c"..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "a"..., 1) = 1
10216 read(5, "u"..., 1) = 1
10216 read(5, "t"..., 1) = 1
10216 read(5, "o"..., 1) = 1
10216 read(5, "."..., 1) = 1
10216 read(5, "s"..., 1) = 1
10216 read(5, "m"..., 1) = 1
10216 read(5, "b"..., 1) = 1
10216 read(5, "."..., 1) = 1
10216 read(5, "j"..., 1) = 1
10216 read(5, "m"..., 1) = 1
10216 read(5, "a"..., 1) = 1
10216 read(5, "s"..., 1) = 1
10216 read(5, "k"..., 1) = 1
10216 read(5, "e"..., 1) = 1
10216 read(5, "r"..., 1) = 1
10216 read(5, " "..., 1) = 1
10216 read(5, "\\"..., 1) = 1
10216 read(5, "\n"..., 1) = 1
10216 read(5, "\t"..., 1) = 1
10216 read(5, " "..., 1) = 1
10216 read(5, "\""..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "M"..., 1) = 1
10216 read(5, "y"..., 1) = 1
10216 read(5, " "..., 1) = 1
10216 read(5, "D"..., 1) = 1
10216 read(5, "o"..., 1) = 1
10216 read(5, "c"..., 1) = 1
10216 read(5, "u"..., 1) = 1
10216 read(5, "m"..., 1) = 1
10216 read(5, "e"..., 1) = 1
10216 read(5, "n"..., 1) = 1
10216 read(5, "t"..., 1) = 1
10216 read(5, "s"..., 1) = 1
10216 read(5, "\""..., 1) = 1
10216 read(5, " "..., 1) = 1
10216 read(5, "\""..., 1) = 1
10216 read(5, ":"..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "V"..., 1) = 1
10216 read(5, "M"..., 1) = 1
10216 read(5, "W"..., 1) = 1
10216 read(5, "1"..., 1) = 1
10216 read(5, "0"..., 1) = 1
10216 read(5, "1"..., 1) = 1
10216 read(5, "3"..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "M"..., 1) = 1
10216 read(5, "y"..., 1) = 1
10216 read(5, " "..., 1) = 1
10216 read(5, "D"..., 1) = 1
10216 read(5, "o"..., 1) = 1
10216 read(5, "c"..., 1) = 1
10216 read(5, "u"..., 1) = 1
10216 read(5, "m"..., 1) = 1
10216 read(5, "e"..., 1) = 1
10216 read(5, "n"..., 1) = 1
10216 read(5, "t"..., 1) = 1
10216 read(5, "s"..., 1) = 1
10216 read(5, "\""..., 1) = 1
10216 read(5, " "..., 1) = 1
10216 read(5, "\\"..., 1) = 1
10216 read(5, "\n"..., 1) = 1
10216 read(5, "\t"..., 1) = 1
10216 read(5, " "..., 1) = 1
10216 read(5, "\""..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "A"..., 1) = 1
10216 read(5, "D"..., 1) = 1
10216 read(5, "M"..., 1) = 1
10216 read(5, "I"..., 1) = 1
10216 read(5, "N"..., 1) = 1
10216 read(5, "$"..., 1) = 1
10216 read(5, "\""..., 1) = 1
10216 read(5, " "..., 1) = 1
10216 read(5, "\""..., 1) = 1
10216 read(5, ":"..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "V"..., 1) = 1
10216 read(5, "M"..., 1) = 1
10216 read(5, "W"..., 1) = 1
10216 read(5, "1"..., 1) = 1
10216 read(5, "0"..., 1) = 1
10216 read(5, "1"..., 1) = 1
10216 read(5, "3"..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "A"..., 1) = 1
10216 read(5, "D"..., 1) = 1
10216 read(5, "M"..., 1) = 1
10216 read(5, "I"..., 1) = 1
10216 read(5, "N"..., 1) = 1
10216 read(5, "\\"..., 1) = 1
10216 read(5, "$"..., 1) = 1
10216 read(5, "\""..., 1) = 1
10216 read(5, " "..., 1) = 1
10216 read(5, "\\"..., 1) = 1
10216 read(5, "\n"..., 1) = 1
10216 read(5, "\t"..., 1) = 1
10216 read(5, " "..., 1) = 1
10216 read(5, "\""..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "C"..., 1) = 1
10216 read(5, "$"..., 1) = 1
10216 read(5, "\""..., 1) = 1
10216 read(5, " "..., 1) = 1
10216 read(5, "\""..., 1) = 1
10216 read(5, ":"..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "V"..., 1) = 1
10216 read(5, "M"..., 1) = 1
10216 read(5, "W"..., 1) = 1
10216 read(5, "1"..., 1) = 1
10216 read(5, "0"..., 1) = 1
10216 read(5, "1"..., 1) = 1
10216 read(5, "3"..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "C"..., 1) = 1
10216 read(5, "\\"..., 1) = 1
10216 read(5, "$"..., 1) = 1
10216 read(5, "\""..., 1) = 1
10216 read(5, " "..., 1) = 1
10216 read(5, "\\"..., 1) = 1
10216 read(5, "\n"..., 1) = 1
10216 read(5, "\t"..., 1) = 1
10216 read(5, " "..., 1) = 1
10216 read(5, "\""..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "S"..., 1) = 1
10216 read(5, "h"..., 1) = 1
10216 read(5, "a"..., 1) = 1
10216 read(5, "r"..., 1) = 1
10216 read(5, "e"..., 1) = 1
10216 read(5, "d"..., 1) = 1
10216 read(5, "\""..., 1) = 1
10216 read(5, " "..., 1) = 1
10216 read(5, "\""..., 1) = 1
10216 read(5, ":"..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "V"..., 1) = 1
10216 read(5, "M"..., 1) = 1
10216 read(5, "W"..., 1) = 1
10216 read(5, "1"..., 1) = 1
10216 read(5, "0"..., 1) = 1
10216 read(5, "1"..., 1) = 1
10216 read(5, "3"..., 1) = 1
10216 read(5, "/"..., 1) = 1
10216 read(5, "S"..., 1) = 1
10216 read(5, "h"..., 1) = 1
10216 read(5, "a"..., 1) = 1
10216 read(5, "r"..., 1) = 1
10216 read(5, "e"..., 1) = 1
10216 read(5, "d"..., 1) = 1
10216 read(5, "\""..., 1) = 1
10216 read(5, "\n"..., 1) = 1
10216 read(5, ""..., 1) = 0
10216 poll([{fd=5, events=POLLIN}, {fd=27, events=POLLIN}], 2, -1) = 2 ([{fd=5, revents=POLLHUP}, {fd=27, revents=POLLHUP}])
10216 close(5) = 0
10216 close(27) = 0
10216 waitpid(10217, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0) = 10217
10216 time(NULL) = 1251470809
10216 write(2, "lookup_mount: lookup(program): VM"..., 277) = 277
10216 write(2, "\n"..., 1) = 1
10216 write(2, "parse_mount: parse(sun): expanded"..., 276) = 276
10216 write(2, "\n"..., 1) = 1
10216 write(2, "parse_mount: parse(sun): gathered"..., 139) = 139
10216 write(2, "\n"..., 1) = 1
10216 time(NULL) = 1251470809
10216 write(2, "parse_mount: parse(sun): dequote("..., 68) = 68
10216 write(2, "\n"..., 1) = 1
10216 write(2, "parse_mapent: parse(sun): gathere"..., 140) = 140
10216 write(2, "\n"..., 1) = 1
10216 write(2, "parse_mapent: parse(sun): dequote"..., 89) = 89
10216 write(2, "\n"..., 1) = 1
10216 write(2, "add_offset_entry: parse(sun): add"..., 193) = 193
10216 write(2, "\n"..., 1) = 1
10216 write(2, "parse_mount: parse(sun): dequote("..., 56) = 56
10216 write(2, "\n"..., 1) = 1
10216 write(2, "parse_mapent: parse(sun): gathere"..., 140) = 140
10216 write(2, "\n"..., 1) = 1
10216 write(2, "parse_mapent: parse(sun): dequote"..., 79) = 79
10216 write(2, "\n"..., 1) = 1
10216 write(2, "add_offset_entry: parse(sun): add"..., 182) = 182
10216 write(2, "\n"..., 1) = 1
10216 write(2, "parse_mount: parse(sun): dequote("..., 48) = 48
10216 write(2, "\n"..., 1) = 1
10216 write(2, "parse_mapent: parse(sun): gathere"..., 140) = 140
10216 write(2, "\n"..., 1) = 1
10216 write(2, "parse_mapent: parse(sun): dequote"..., 71) = 71
10216 write(2, "\n"..., 1) = 1
10216 write(2, "add_offset_entry: parse(sun): add"..., 174) = 174
10216 write(2, "\n"..., 1) = 1
10216 write(2, "parse_mount: parse(sun): dequote("..., 56) = 56
10216 write(2, "\n"..., 1) = 1
10216 write(2, "parse_mapent: parse(sun): gathere"..., 140) = 140
10216 write(2, "\n"..., 1) = 1
10216 write(2, "parse_mapent: parse(sun): dequote"..., 77) = 77
10216 write(2, "\n"..., 1) = 1
10216 write(2, "add_offset_entry: parse(sun): add"..., 181) = 181
10216 write(2, "\n"..., 1) = 1
10216 mkdir("/tmp/autosltqDg", 0700) = 0
10216 write(2, "mount_multi_triggers: mount offse"..., 72) = 72
10216 write(2, "\n"..., 1) = 1
10216 futex(0xf6091c, FUTEX_WAKE_PRIVATE, 2147483647) = 0
10216 getpgrp() = 10205
10216 stat64("/cifs", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10216 stat64("/cifs/VMW1013", 0xb5bf84e8) = -1 ENOENT (No such file or directory)
10216 statfs64("/cifs", 84, {f_type=0x187, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=4096}) = 0
10216 mkdir("/cifs/VMW1013", 0555) = 0
10216 stat64("/cifs/VMW1013/ADMIN$", 0xb5bf84e8) = -1 ENOENT (No such file or directory)
10216 statfs64("/cifs/VMW1013", 84, {f_type=0x187, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=4096}) = 0
10216 mkdir("/cifs/VMW1013/ADMIN$", 0555) = 0
10216 write(2, "mount_autofs_offset: calling moun"..., 128) = 128
10216 write(2, "\n"..., 1) = 1
10216 mount("/etc/auto.cifs", "/cifs/VMW1013/ADMIN$", "autofs", MS_MGC_VAL, "fd=21,pgrp=10205,minproto=5,maxp"...) = 0
10216 stat64("/cifs/VMW1013/ADMIN$", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10216 ioctl(3, 0xc0189374, 0x1d000d8) = 0
10216 ioctl(3, 0xc018937a, 0xb5bfa598) = 0
10216 write(2, "mounted offset on /cifs/VMW1013/A"..., 71) = 71
10216 write(2, "\n"..., 1) = 1
10216 ioctl(3, 0xc0189375, 0xb5bfa598) = 0
10216 write(2, "mount_autofs_offset: mounted trig"..., 81) = 81
10216 write(2, "\n"..., 1) = 1
10216 write(2, "mount_multi_triggers: mount offse"..., 68) = 68
10216 write(2, "\n"..., 1) = 1
10216 stat64("/cifs", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10216 stat64("/cifs/VMW1013", {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
10216 stat64("/cifs/VMW1013/C$", 0xb5bf84e8) = -1 ENOENT (No such file or directory)
10216 statfs64("/cifs/VMW1013", 84, {f_type=0x187, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=4096}) = 0
10216 mkdir("/cifs/VMW1013/C$", 0555) = 0
10216 write(2, "mount_autofs_offset: calling moun"..., 124) = 124
10216 write(2, "\n"..., 1) = 1
10216 mount("/etc/auto.cifs", "/cifs/VMW1013/C$", "autofs", MS_MGC_VAL, "fd=21,pgrp=10205,minproto=5,maxp"...) = 0
10216 stat64("/cifs/VMW1013/C$", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10216 ioctl(3, 0xc0189374, 0x1d1e9f8) = 0
10216 ioctl(3, 0xc018937a, 0xb5bfa598) = 0
10216 write(2, "mounted offset on /cifs/VMW1013/C"..., 67) = 67
10216 write(2, "\n"..., 1) = 1
10216 ioctl(3, 0xc0189375, 0xb5bfa598) = 0
10216 write(2, "mount_autofs_offset: mounted trig"..., 73) = 73
10216 write(2, "\n"..., 1) = 1
10216 write(2, "mount_multi_triggers: mount offse"..., 78) = 78
10216 write(2, "\n"..., 1) = 1
10216 stat64("/cifs", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10216 stat64("/cifs/VMW1013", {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
10216 stat64("/cifs/VMW1013/My Documents", 0xb5bf84e8) = -1 ENOENT (No such file or directory)
10216 statfs64("/cifs/VMW1013", 84, {f_type=0x187, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=4096}) = 0
10216 mkdir("/cifs/VMW1013/My Documents", 0555) = 0
10216 write(2, "mount_autofs_offset: calling moun"..., 134) = 134
10216 write(2, "\n"..., 1) = 1
10216 mount("/etc/auto.cifs", "/cifs/VMW1013/My Documents", "autofs", MS_MGC_VAL, "fd=21,pgrp=10205,minproto=5,maxp"...) = 0
10216 stat64("/cifs/VMW1013/My Documents", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10216 ioctl(3, 0xc0189374, 0x1d000d8) = 0
10216 ioctl(3, 0xc018937a, 0xb5bfa598) = 0
10216 write(2, "mounted offset on /cifs/VMW1013/M"..., 77) = 77
10216 write(2, "\n"..., 1) = 1
10216 ioctl(3, 0xc0189375, 0xb5bfa598) = 0
10216 write(2, "mount_autofs_offset: mounted trig"..., 93) = 93
10216 write(2, "\n"..., 1) = 1
10216 write(2, "mount_multi_triggers: mount offse"..., 72) = 72
10216 write(2, "\n"..., 1) = 1
10216 stat64("/cifs", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10216 stat64("/cifs/VMW1013", {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
10216 stat64("/cifs/VMW1013/Shared", 0xb5bf84e8) = -1 ENOENT (No such file or directory)
10216 statfs64("/cifs/VMW1013", 84, {f_type=0x187, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=4096}) = 0
10216 mkdir("/cifs/VMW1013/Shared", 0555) = 0
10216 write(2, "mount_autofs_offset: calling moun"..., 128) = 128
10216 write(2, "\n"..., 1) = 1
10216 mount("/etc/auto.cifs", "/cifs/VMW1013/Shared", "autofs", MS_MGC_VAL, "fd=21,pgrp=10205,minproto=5,maxp"...) = 0
10216 stat64("/cifs/VMW1013/Shared", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10216 ioctl(3, 0xc0189374, 0x1d000d8) = 0
10216 ioctl(3, 0xc018937a, 0xb5bfa598) = 0
10216 write(2, "mounted offset on /cifs/VMW1013/S"..., 71) = 71
10216 write(2, "\n"..., 1) = 1
10216 ioctl(3, 0xc0189375, 0xb5bfa598) = 0
10216 write(2, "mount_autofs_offset: mounted trig"..., 81) = 81
10216 write(2, "\n"..., 1) = 1
10216 rmdir("/tmp/autosltqDg") = 0
10216 write(2, "dev_ioctl_send_ready: token = 141"..., 33) = 33
10216 write(2, "\n"..., 1) = 1
10216 ioctl(3, 0xc0189376, 0xb5bfd194) = 0
10216 write(2, "mounted /cifs/VMW1013"..., 21) = 21
10216 write(2, "\n"..., 1) = 1
10216 _exit(0) = ?
10215 <... poll resumed> ) = 1 ([{fd=20, revents=POLLIN}])
10215 read(20, "\5\0\0\0\5\0\0\0\216\0\0\0\30\0\0\0\206\313\5\0\0\0\0\0\364\1\0\0\364\1\0\0\271"..., 300) = 300
10215 write(2, "handle_packet: type = 5"..., 23) = 23
10215 write(2, "\n"..., 1) = 1
10215 ioctl(3, 0xc0189374, 0xb5c009b0) = 0
10215 write(2, "handle_packet_missing_direct: tok"..., 80) = 80
10215 write(2, "\n"..., 1) = 1
10215 clone(child_stack=0xb5bff494, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0xb5bffbd8, {entry_number:6, base_addr:0xb5bffb70, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}, child_tidptr=0xb5bffbd8) = 10220
10220 set_robust_list(0xb5bffbe0, 0xc) = 0
10220 futex(0xb5c01068, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10215 gettimeofday({1251470809, 113065}, NULL) = 0
10215 futex(0xb5c01068, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10220 <... futex resumed> ) = 0
10220 futex(0xb5c01080, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10215 <... futex resumed> ) = 1
10215 clock_gettime(CLOCK_REALTIME, {1251470809, 113201790}) = 0
10215 futex(0xb5c01080, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10220 <... futex resumed> ) = 0
10220 futex(0xb5c01084, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xb5c01080, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1}) = 0
10220 futex(0xb5c01068, FUTEX_WAKE_PRIVATE, 1) = 0
10220 fstat64(5, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10220 stat64("/cifs/VMW1013/C$", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10220 write(2, "attempting to mount entry /cifs/V"..., 42) = 42
10220 write(2, "\n"..., 1) = 1
10220 open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 26
10220 fstat64(26, {st_mode=S_IFREG|0644, st_size=1949, ...}) = 0
10220 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f99000
10220 read(26, "root:x:0:0:root:/root:/bin/bash\nb"..., 4096) = 1949
10220 close(26) = 0
10220 munmap(0xb7f99000, 4096) = 0
10220 open("/etc/group", O_RDONLY|O_CLOEXEC) = 26
10220 fstat64(26, {st_mode=S_IFREG|0644, st_size=919, ...}) = 0
10220 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f99000
10220 read(26, "root:x:0:root\nbin:x:1:root,bin,da"..., 4096) = 919
10220 close(26) = 0
10220 munmap(0xb7f99000, 4096) = 0
10220 sched_yield() = 0
10220 time(NULL) = 1251470809
10220 stat64("/etc/auto.cifs", {st_mode=S_IFREG|0755, st_size=1742, ...}) = 0
10220 time(NULL) = 1251470809
10220 write(2, "lookup_mount: lookup(program): /c"..., 163) = 163
10220 write(2, "\n"..., 1) = 1
10220 write(2, "parse_mount: parse(sun): expanded"..., 153) = 153
10220 write(2, "\n"..., 1) = 1
10220 write(2, "parse_mount: parse(sun): gathered"..., 139) = 139
10220 write(2, "\n"..., 1) = 1
10220 write(2, "parse_mount: parse(sun): core of "..., 164) = 164
10220 write(2, "\n"..., 1) = 1
10220 mkdir("/tmp/autok8GciK", 0700) = 0
10220 write(2, "sun_mount: parse(sun): mounting r"..., 208) = 208
10220 write(2, "\n"..., 1) = 1
10220 open("/usr/lib/autofs/mount_cifs.so", O_RDONLY) = -1 ENOENT (No such file or directory)
10220 open("/usr/lib/autofs/mount_generic.so", O_RDONLY) = 26
10220 read(26, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240\n\0\0004\0\0\0\330"..., 512) = 512
10220 fstat64(26, {st_mode=S_IFREG|0755, st_size=8720, ...}) = 0
10220 mmap2(NULL, 11496, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 26, 0) = 0x12e000
10220 mmap2(0x130000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 26, 0x1) = 0x130000
10220 close(26) = 0
10220 write(2, "do_mount: //VMW1013/C\\$ /cifs/VMW"..., 164) = 164
10220 write(2, "\n"..., 1) = 1
10220 write(2, "mount_mount: mount(generic): call"..., 63) = 63
10220 write(2, "\n"..., 1) = 1
10220 stat64("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=16384, ...}) = 0
10220 stat64("/tmp/autok8GciK", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
10220 write(2, "mount_mount: mount(generic): call"..., 171) = 171
10220 write(2, "\n"..., 1) = 1
10220 readlink("/etc/mtab", 0xb5bfb476, 4096) = -1 EINVAL (Invalid argument)
10220 pipe([26, 27]) = 0
10220 fcntl64(26, F_SETFD, FD_CLOEXEC) = 0
10220 fcntl64(27, F_SETFD, FD_CLOEXEC) = 0
10220 rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], ~[ILL TRAP ABRT BUS FPE KILL SEGV STOP RTMIN RT_1], 8) = 0
10220 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb5bffbd8) = 10221
10220 rt_sigprocmask(SIG_SETMASK, ~[ILL TRAP ABRT BUS FPE KILL SEGV STOP RTMIN RT_1], NULL, 8) = 0
10220 close(27) = 0
10220 poll([{fd=26, events=POLLIN}], 1, -1 <unfinished ...>
10215 <... futex resumed> ) = 1
10215 futex(0xb5c01084, FUTEX_WAIT_PRIVATE, 1, {1, 999863210}) = -1 EAGAIN (Resource temporarily unavailable)
10215 futex(0xb5c01068, FUTEX_WAKE_PRIVATE, 1) = 0
10215 poll([{fd=20, events=POLLIN}, {fd=22, events=POLLIN}, {fd=24, events=POLLIN}], 3, -1 <unfinished ...>
10221 rt_sigprocmask(SIG_BLOCK, ~[RTMIN RT_1], NULL, 8) = 0
10221 rt_sigaction(SIGHUP, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGINT, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGQUIT, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGILL, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGTRAP, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGABRT, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGBUS, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGFPE, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGUSR1, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGSEGV, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGUSR2, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGPIPE, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGALRM, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGTERM, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGSTKFLT, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGCHLD, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGCONT, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGTSTP, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGTTIN, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGTTOU, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGURG, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGXCPU, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGXFSZ, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGVTALRM, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGPROF, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGWINCH, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGIO, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGPWR, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGSYS, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_2, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_3, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_4, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_5, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_6, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_7, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_8, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_9, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_10, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_11, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_12, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_13, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_14, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_15, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_16, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_17, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_18, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_19, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_20, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_21, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_22, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_23, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_24, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_25, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_26, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_27, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_28, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_29, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_30, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_31, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_32, {0x1, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGHUP, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGINT, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGQUIT, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGILL, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGTRAP, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGABRT, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGBUS, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGFPE, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGUSR1, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGSEGV, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGUSR2, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGPIPE, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGALRM, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGTERM, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGSTKFLT, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGCHLD, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGCONT, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGTSTP, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGTTIN, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGTTOU, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGURG, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGXCPU, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGXFSZ, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGVTALRM, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGPROF, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGWINCH, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGIO, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGPWR, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGSYS, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_2, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_3, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_4, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_5, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_6, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_7, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_8, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_9, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_10, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_11, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_12, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_13, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_14, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_15, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_16, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_17, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_18, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_19, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_20, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_21, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_22, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_23, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_24, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_25, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_26, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_27, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_28, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_29, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_30, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_31, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGRT_32, {SIG_DFL, [], 0}, NULL, 8) = 0
10221 rt_sigaction(SIGUSR1, {0x1, [], SA_RESTART}, NULL, 8) = 0
10221 rt_sigaction(SIGUSR2, {0x1, [], SA_RESTART}, NULL, 8) = 0
10221 rt_sigprocmask(SIG_UNBLOCK, ~[RTMIN RT_1], NULL, 8) = 0
10221 close(26) = 0
10221 dup2(27, 1) = 1
10221 dup2(27, 2) = 2
10221 close(27) = 0
10221 execve("/bin/mount", ["/bin/mount", "-t", "cifs", "-s", "-o", "file_mode=0644,dir_mode=0755,uid"..., "//VMW1013/C\\$", "/tmp/autok8GciK"], [/* 54 vars */]) = 0
10221 brk(0) = 0x1807000
10221 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
10221 open("/etc/ld.so.cache", O_RDONLY) = 3
10221 fstat64(3, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10221 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7ff8000
10221 close(3) = 0
10221 open("/lib/libblkid.so.1", O_RDONLY) = 3
10221 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0@\240J\0004\0\0\0\34"..., 512) = 512
10221 fstat64(3, {st_mode=S_IFREG|0755, st_size=46796, ...}) = 0
10221 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7ff7000
10221 mmap2(NULL, 43928, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x1a3000
10221 mmap2(0x1ad000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa) = 0x1ad000
10221 close(3) = 0
10221 open("/lib/libuuid.so.1", O_RDONLY) = 3
10221 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P_8\0004\0\0\0\370"..., 512) = 512
10221 fstat64(3, {st_mode=S_IFREG|0755, st_size=15864, ...}) = 0
10221 mmap2(NULL, 12820, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xfe7000
10221 mmap2(0xfea000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3) = 0xfea000
10221 close(3) = 0
10221 open("/lib/libselinux.so.1", O_RDONLY) = 3
10221 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0000a\334\0004\0\0\0P"..., 512) = 512
10221 fstat64(3, {st_mode=S_IFREG|0755, st_size=118312, ...}) = 0
10221 mmap2(NULL, 121836, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x4cc000
10221 mmap2(0x4e8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b) = 0x4e8000
10221 close(3) = 0
10221 open("/lib/libsepol.so.1", O_RDONLY) = 3
10221 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\200\277\23\0004\0\0\0\0"..., 512) = 512
10221 fstat64(3, {st_mode=S_IFREG|0755, st_size=237488, ...}) = 0
10221 mmap2(NULL, 236096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x110000
10221 mmap2(0x149000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x39) = 0x149000
10221 close(3) = 0
10221 open("/lib/libc.so.6", O_RDONLY) = 3
10221 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300K\275\0004\0\0\0\354"..., 512) = 512
10221 fstat64(3, {st_mode=S_IFREG|0755, st_size=1803428, ...}) = 0
10221 mmap2(NULL, 1509672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x1ae000
10221 mmap2(0x319000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16b) = 0x319000
10221 mmap2(0x31c000, 10536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x31c000
10221 close(3) = 0
10221 open("/lib/libdl.so.2", O_RDONLY) = 3
10221 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`\272\325\0004\0\0\0("..., 512) = 512
10221 fstat64(3, {st_mode=S_IFREG|0755, st_size=20464, ...}) = 0
10221 mmap2(NULL, 16500, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xc19000
10221 mmap2(0xc1c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2) = 0xc1c000
10221 close(3) = 0
10221 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7ff6000
10221 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7ff5000
10221 set_thread_area({entry_number:-1 -> 6, base_addr:0xb7ff5750, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
10221 mprotect(0xc1c000, 4096, PROT_READ) = 0
10221 mprotect(0x319000, 8192, PROT_READ) = 0
10221 mprotect(0x4e8000, 4096, PROT_READ) = 0
10221 mprotect(0x9d8000, 4096, PROT_READ) = 0
10221 munmap(0xb7ff8000, 134654) = 0
10221 brk(0) = 0x1807000
10221 brk(0x1828000) = 0x1828000
10221 open("/etc/selinux/config", O_RDONLY|O_LARGEFILE) = 3
10221 fstat64(3, {st_mode=S_IFREG|0644, st_size=439, ...}) = 0
10221 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb8018000
10221 read(3, "\n# This file controls the state o"..., 4096) = 439
10221 read(3, ""..., 4096) = 0
10221 close(3) = 0
10221 munmap(0xb8018000, 4096) = 0
10221 statfs64("/selinux", 84, {f_type=0xf97cff8c, f_bsize=4096, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0}, f_namelen=255, f_frsize=4096}) = 0
10221 stat64("/selinux/class", {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
10221 open("/selinux/mls", O_RDONLY|O_LARGEFILE) = 3
10221 read(3, "1"..., 19) = 1
10221 close(3) = 0
10221 open("/usr/lib/locale/locale-archive", O_RDONLY|O_LARGEFILE) = 3
10221 fstat64(3, {st_mode=S_IFREG|0644, st_size=84748720, ...}) = 0
10221 mmap2(NULL, 2097152, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7df5000
10221 close(3) = 0
10221 umask(022) = 022
10221 open("/dev/null", O_RDWR|O_LARGEFILE) = 3
10221 close(3) = 0
10221 getuid32() = 0
10221 geteuid32() = 0
10221 socket(PF_FILE, 0x80801 /* SOCK_??? */, 0) = 3
10221 connect(3, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
10221 close(3) = 0
10221 socket(PF_FILE, 0x80801 /* SOCK_??? */, 0) = 3
10221 connect(3, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
10221 close(3) = 0
10221 open("/etc/nsswitch.conf", O_RDONLY) = 3
10221 fstat64(3, {st_mode=S_IFREG|0644, st_size=1696, ...}) = 0
10221 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb8018000
10221 read(3, "#\n# /etc/nsswitch.conf\n#\n# An exa"..., 4096) = 1696
10221 read(3, ""..., 4096) = 0
10221 close(3) = 0
10221 munmap(0xb8018000, 4096) = 0
10221 open("/etc/ld.so.cache", O_RDONLY) = 3
10221 fstat64(3, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10221 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7ff8000
10221 close(3) = 0
10221 open("/lib/libnss_files.so.2", O_RDONLY) = 3
10221 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0000\32\0\0004\0\0\0\314"..., 512) = 512
10221 fstat64(3, {st_mode=S_IFREG|0755, st_size=55540, ...}) = 0
10221 mmap2(NULL, 49864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x5e7000
10221 mmap2(0x5f2000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa) = 0x5f2000
10221 close(3) = 0
10221 mprotect(0x5f2000, 4096, PROT_READ) = 0
10221 munmap(0xb7ff8000, 134654) = 0
10221 open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 3
10221 fcntl64(3, F_GETFD) = 0x1 (flags FD_CLOEXEC)
10221 fstat64(3, {st_mode=S_IFREG|0644, st_size=1949, ...}) = 0
10221 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb8018000
10221 read(3, "root:x:0:0:root:/root:/bin/bash\nb"..., 4096) = 1949
10221 close(3) = 0
10221 munmap(0xb8018000, 4096) = 0
10221 socket(PF_FILE, 0x80801 /* SOCK_??? */, 0) = 3
10221 connect(3, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
10221 close(3) = 0
10221 socket(PF_FILE, 0x80801 /* SOCK_??? */, 0) = 3
10221 connect(3, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
10221 close(3) = 0
10221 open("/etc/group", O_RDONLY|O_CLOEXEC) = 3
10221 fstat64(3, {st_mode=S_IFREG|0644, st_size=919, ...}) = 0
10221 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb8018000
10221 read(3, "root:x:0:root\nbin:x:1:root,bin,da"..., 4096) = 919
10221 close(3) = 0
10221 munmap(0xb8018000, 4096) = 0
10221 stat64("/sbin/mount.cifs", {st_mode=S_IFREG|0755, st_size=30836, ...}) = 0
10221 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7ff57b8) = 10222
10221 wait4(-1, <unfinished ...>
10222 getgid32() = 0
10222 setgid32(0) = 0
10222 getuid32() = 0
10222 setuid32(0) = 0
10222 execve("/sbin/mount.cifs", ["/sbin/mount.cifs", "//VMW1013/C\\$", "/tmp/autok8GciK", "-o", "rw,file_mode=0644,dir_mode=0755,"...], [/* 50 vars */]) = 0
10222 brk(0) = 0xff1000
10222 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
10222 open("/etc/ld.so.cache", O_RDONLY) = 3
10222 fstat64(3, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10222 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb8021000
10222 close(3) = 0
10222 open("/lib/libpopt.so.0", O_RDONLY) = 3
10222 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P\343\215\0074\0\0\0\200"..., 512) = 512
10222 fstat64(3, {st_mode=S_IFREG|0755, st_size=34392, ...}) = 0
10222 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb8020000
10222 mmap2(NULL, 35568, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xcb5000
10222 mmap2(0xcbd000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7) = 0xcbd000
10222 close(3) = 0
10222 open("/lib/libc.so.6", O_RDONLY) = 3
10222 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300K\275\0004\0\0\0\354"..., 512) = 512
10222 fstat64(3, {st_mode=S_IFREG|0755, st_size=1803428, ...}) = 0
10222 mmap2(NULL, 1509672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xdab000
10222 mmap2(0xf16000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16b) = 0xf16000
10222 mmap2(0xf19000, 10536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xf19000
10222 close(3) = 0
10222 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb801f000
10222 set_thread_area({entry_number:-1 -> 6, base_addr:0xb801f6c0, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
10222 mprotect(0xf16000, 8192, PROT_READ) = 0
10222 mprotect(0x7ab000, 4096, PROT_READ) = 0
10222 mprotect(0xd41000, 4096, PROT_READ) = 0
10222 munmap(0xb8021000, 134654) = 0
10222 uname({sys="Linux", node="FMI2081.fic.ffg", ...}) = 0
10222 brk(0) = 0xff1000
10222 brk(0x1012000) = 0x1012000
10222 getuid32() = 0
10222 open("/etc/auto.smb.jmasker", O_RDONLY|O_LARGEFILE) = 3
10222 fstat64(3, {st_mode=S_IFREG|0600, st_size=43, ...}) = 0
10222 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb8041000
10222 read(3, "username=fic\\jmasker\npassword=***"..., 4096) = 43
10222 read(3, ""..., 4096) = 0
10222 close(3) = 0
10222 munmap(0xb8041000, 4096) = 0
10222 socket(PF_NETLINK, SOCK_RAW, 0) = 3
10222 bind(3, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 0
10222 getsockname(3, {sa_family=AF_NETLINK, pid=10222, groups=00000000}, [12]) = 0
10222 time(NULL) = 1251470809
10222 sendto(3, "\24\0\0\0\26\0\1\3\331\355\227J\0\0\0\0\0\0\0\0"..., 20, 0, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 20
10222 recvmsg(3, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"0\0\0\0\24\0\2\0\331\355\227J\356'\0\0\2\10\200\376\1\0\0\0\10\0\1\0\177\0\0\1\10"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 168
10222 recvmsg(3, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"@\0\0\0\24\0\2\0\331\355\227J\356'\0\0\n\200\200\376\1\0\0\0\24\0\1\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 192
10222 recvmsg(3, {msg_name(12)={sa_family=AF_NETLINK, pid=0, groups=00000000}, msg_iov(1)=[{"\24\0\0\0\3\0\2\0\331\355\227J\356'\0\0\0\0\0\0\1\0\0\0\24\0\1\0\0\0\0\0\0"..., 4096}], msg_controllen=0, msg_flags=0}, 0) = 20
10222 close(3) = 0
10222 socket(PF_FILE, 0x80801 /* SOCK_??? */, 0) = 3
10222 connect(3, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
10222 close(3) = 0
10222 socket(PF_FILE, 0x80801 /* SOCK_??? */, 0) = 3
10222 connect(3, {sa_family=AF_FILE, path="/var/run/nscd/socket"...}, 110) = -1 ENOENT (No such file or directory)
10222 close(3) = 0
10222 open("/etc/nsswitch.conf", O_RDONLY) = 3
10222 fstat64(3, {st_mode=S_IFREG|0644, st_size=1696, ...}) = 0
10222 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb8041000
10222 read(3, "#\n# /etc/nsswitch.conf\n#\n# An exa"..., 4096) = 1696
10222 read(3, ""..., 4096) = 0
10222 close(3) = 0
10222 munmap(0xb8041000, 4096) = 0
10222 open("/etc/host.conf", O_RDONLY) = 3
10222 fstat64(3, {st_mode=S_IFREG|0644, st_size=26, ...}) = 0
10222 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb8041000
10222 read(3, "multi on\norder hosts,bind\n"..., 4096) = 26
10222 read(3, ""..., 4096) = 0
10222 close(3) = 0
10222 munmap(0xb8041000, 4096) = 0
10222 getpid() = 10222
10222 open("/etc/resolv.conf", O_RDONLY) = 3
10222 fstat64(3, {st_mode=S_IFREG|0644, st_size=104, ...}) = 0
10222 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb8041000
10222 read(3, "# Generated by NetworkManager\ndom"..., 4096) = 104
10222 read(3, ""..., 4096) = 0
10222 close(3) = 0
10222 munmap(0xb8041000, 4096) = 0
10222 open("/etc/ld.so.cache", O_RDONLY) = 3
10222 fstat64(3, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10222 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb8021000
10222 close(3) = 0
10222 open("/lib/libnss_files.so.2", O_RDONLY) = 3
10222 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0000\32\0\0004\0\0\0\314"..., 512) = 512
10222 fstat64(3, {st_mode=S_IFREG|0755, st_size=55540, ...}) = 0
10222 mmap2(NULL, 49864, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xd63000
10222 mmap2(0xd6e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa) = 0xd6e000
10222 close(3) = 0
10222 mprotect(0xd6e000, 4096, PROT_READ) = 0
10222 munmap(0xb8021000, 134654) = 0
10222 open("/etc/hosts", O_RDONLY|O_CLOEXEC) = 3
10222 fcntl64(3, F_GETFD) = 0x1 (flags FD_CLOEXEC)
10222 fstat64(3, {st_mode=S_IFREG|0644, st_size=158, ...}) = 0
10222 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb8041000
10222 read(3, "127.0.0.1 localhost localhost.l"..., 4096) = 158
10222 read(3, ""..., 4096) = 0
10222 close(3) = 0
10222 munmap(0xb8041000, 4096) = 0
10222 open("/etc/ld.so.cache", O_RDONLY) = 3
10222 fstat64(3, {st_mode=S_IFREG|0644, st_size=134654, ...}) = 0
10222 mmap2(NULL, 134654, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb8021000
10222 close(3) = 0
10222 open("/lib/libnss_dns.so.2", O_RDONLY) = 3
10222 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\0\f\0\0004\0\0\0\10"..., 512) = 512
10222 fstat64(3, {st_mode=S_IFREG|0755, st_size=25904, ...}) = 0
10222 mmap2(NULL, 24704, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x415000
10222 mmap2(0x41a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4) = 0x41a000
10222 close(3) = 0
10222 open("/lib/libresolv.so.2", O_RDONLY) = 3
10222 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\200\26d\0004\0\0\0\364"..., 512) = 512
10222 fstat64(3, {st_mode=S_IFREG|0755, st_size=102332, ...}) = 0
10222 mmap2(NULL, 100424, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x110000
10222 mprotect(0x124000, 4096, PROT_NONE) = 0
10222 mmap2(0x125000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14) = 0x125000
10222 mmap2(0x127000, 6216, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x127000
10222 close(3) = 0
10222 mprotect(0x125000, 4096, PROT_READ) = 0
10222 mprotect(0x41a000, 4096, PROT_READ) = 0
10222 munmap(0xb8021000, 134654) = 0
10222 socket(PF_INET, 0x802 /* SOCK_??? */, IPPROTO_IP) = 3
10222 connect(3, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("10.0.1.128")}, 28) = 0
10222 gettimeofday({1251470809, 151582}, NULL) = 0
10222 poll([{fd=3, events=POLLOUT}], 1, 0) = 1 ([{fd=3, revents=POLLOUT}])
10222 send(3, "\2\321\1\0\0\1\0\0\0\0\0\0\7VMW1013\3fic\3ffg\0\0\1\0\1"..., 33, MSG_NOSIGNAL) = 33
10222 poll([{fd=3, events=POLLIN|POLLOUT}], 1, 5000) = 1 ([{fd=3, revents=POLLOUT}])
10222 send(3, "^\247\1\0\0\1\0\0\0\0\0\0\7VMW1013\3fic\3ffg\0\0\34\0\1"..., 33, MSG_NOSIGNAL) = 33
10222 gettimeofday({1251470809, 151927}, NULL) = 0
10222 poll([{fd=3, events=POLLIN}], 1, 4999) = 1 ([{fd=3, revents=POLLIN}])
10222 ioctl(3, FIONREAD, [49]) = 0
10222 recvfrom(3, "\2\321\205\200\0\1\0\1\0\0\0\0\7VMW1013\3fic\3ffg\0\0\1\0\1"..., 2048, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("10.0.1.128")}, [16]) = 49
10222 gettimeofday({1251470809, 152561}, NULL) = 0
10222 poll([{fd=3, events=POLLIN}], 1, 4999) = 1 ([{fd=3, revents=POLLIN}])
10222 ioctl(3, FIONREAD, [86]) = 0
10222 recvfrom(3, "^\247\205\200\0\1\0\0\0\1\0\0\7VMW1013\3fic\3ffg\0\0\34\0\1"..., 1999, 0, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("10.0.1.128")}, [16]) = 86
10222 close(3) = 0
10222 lstat64("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=16384, ...}) = 0
10222 lstat64("/tmp/autok8GciK", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
10222 chdir("/tmp/autok8GciK") = 0
10222 stat64(".", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
10222 getuid32() = 0
10222 mount("//VMW1013/C/$", "/tmp/autok8GciK", "cifs", MS_MANDLOCK, "unc=//VMW1013\\C,user=jmasker,,,,"...) = -1 ENXIO (No such device or address)
10222 fstat64(1, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
10222 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb8041000
10222 mount("//VMW1013/C/$", "/tmp/autok8GciK", "cifs", MS_MANDLOCK, "unc=//VMW1013\\C,user=jmasker,,,,"...) = -1 ENXIO (No such device or address)
10222 write(1, "retrying with upper case share na"..., 138) = 138
10220 <... poll resumed> ) = 1 ([{fd=26, revents=POLLIN}])
10220 read(26, "retrying with upper case share na"..., 2047) = 138
10220 write(2, ">> retrying with upper case share"..., 38 <unfinished ...>
10222 exit_group(32) = ?
10220 <... write resumed> ) = 38
10220 write(2, "\n"..., 1) = 1
10221 <... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 32}], 0, NULL) = 10222
10220 write(2, ">> mount error(6): No such device"..., 44 <unfinished ...>
10221 --- SIGCHLD (Child exited) @ 0 (0) ---
10220 <... write resumed> ) = 44
10220 write(2, "\n"..., 1 <unfinished ...>
10221 exit_group(32) = ?
10220 <... write resumed> ) = 1
10220 write(2, ">> Refer to the mount.cifs(8) man"..., 62) = 62
10220 write(2, "\n"..., 1) = 1
10220 poll([{fd=26, events=POLLIN}], 1, -1) = 1 ([{fd=26, revents=POLLHUP}])
10220 read(26, ""..., 2047) = 0
10220 close(26) = 0
10220 waitpid(10221, [{WIFEXITED(s) && WEXITSTATUS(s) == 32}], 0) = 10221
10220 rt_sigprocmask(SIG_SETMASK, ~[ILL TRAP ABRT BUS FPE KILL SEGV STOP RTMIN RT_1], NULL, 8) = 0
10220 write(2, "mount(generic): failed to mount /"..., 76) = 76
10220 write(2, "\n"..., 1) = 1
10220 lstat64("/tmp/autok8GciK", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
10220 munmap(0x12e000, 11496) = 0
10220 rmdir("/tmp/autok8GciK") = 0
10220 time(NULL) = 1251470809
10220 write(2, "dev_ioctl_send_fail: token = 142"..., 32) = 32
10220 write(2, "\n"..., 1) = 1
10220 ioctl(3, 0xc0189377, 0xb5bfe154) = 0
10220 ioctl(3, 0xc0189375, 0xb5bfe1e8) = 0
10220 write(2, "failed to mount /cifs/VMW1013/C$"..., 32) = 32
10220 write(2, "\n"..., 1) = 1
10220 _exit(0) = ?
10215 <... poll resumed> ) = 1 ([{fd=20, revents=POLLIN}])
10215 read(20, "\5\0\0\0\5\0\0\0\217\0\0\0\30\0\0\0\206\313\5\0\0\0\0\0\364\1\0\0\364\1\0\0\271"..., 300) = 300
10215 write(2, "handle_packet: type = 5"..., 23) = 23
10215 write(2, "\n"..., 1) = 1
10215 ioctl(3, 0xc0189374, 0xb5c009b0) = 0
10215 write(2, "handle_packet_missing_direct: tok"..., 80) = 80
10215 write(2, "\n"..., 1) = 1
10215 clone(child_stack=0xb5bff494, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0xb5bffbd8, {entry_number:6, base_addr:0xb5bffb70, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}, child_tidptr=0xb5bffbd8) = 10223
10215 gettimeofday({1251470809, 159565}, NULL) = 0
10215 clock_gettime(CLOCK_REALTIME, {1251470809, 159607138}) = 0
10215 futex(0xb5c01084, FUTEX_WAIT_PRIVATE, 1, {1, 999957862} <unfinished ...>
10223 set_robust_list(0xb5bffbe0, 0xc) = 0
10223 futex(0xb5c01084, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xb5c01080, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1}) = 1
10215 <... futex resumed> ) = 0
10223 fstat64(5, <unfinished ...>
10215 futex(0xb5c01068, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10223 <... fstat64 resumed> {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10215 <... futex resumed> ) = 0
10223 stat64("/cifs/VMW1013/C$", <unfinished ...>
10215 poll([{fd=20, events=POLLIN}, {fd=22, events=POLLIN}, {fd=24, events=POLLIN}], 3, -1 <unfinished ...>
10223 <... stat64 resumed> {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10223 write(2, "attempting to mount entry /cifs/V"..., 42) = 42
10223 write(2, "\n"..., 1) = 1
10223 open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 26
10223 fstat64(26, {st_mode=S_IFREG|0644, st_size=1949, ...}) = 0
10223 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f99000
10223 read(26, "root:x:0:0:root:/root:/bin/bash\nb"..., 4096) = 1949
10223 close(26) = 0
10223 munmap(0xb7f99000, 4096) = 0
10223 open("/etc/group", O_RDONLY|O_CLOEXEC) = 26
10223 fstat64(26, {st_mode=S_IFREG|0644, st_size=919, ...}) = 0
10223 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f99000
10223 read(26, "root:x:0:root\nbin:x:1:root,bin,da"..., 4096) = 919
10223 close(26) = 0
10223 munmap(0xb7f99000, 4096) = 0
10223 sched_yield() = 0
10223 time(NULL) = 1251470809
10223 stat64("/etc/auto.cifs", {st_mode=S_IFREG|0755, st_size=1742, ...}) = 0
10223 time(NULL) = 1251470809
10223 write(2, "dev_ioctl_send_fail: token = 143"..., 32) = 32
10223 write(2, "\n"..., 1) = 1
10223 ioctl(3, 0xc0189377, 0xb5bfe154) = 0
10223 ioctl(3, 0xc0189375, 0xb5bfe1e8) = 0
10223 write(2, "failed to mount /cifs/VMW1013/C$"..., 32) = 32
10223 write(2, "\n"..., 1) = 1
10223 _exit(0) = ?
10208 <... futex resumed> ) = -1 ETIMEDOUT (Connection timed out)
10208 gettimeofday({1251470809, 310338}, NULL) = 0
10208 futex(0xf60990, FUTEX_WAKE_PRIVATE, 1) = 0
10208 clock_gettime(CLOCK_REALTIME, {1251470809, 310506622}) = 0
10208 futex(0xf60964, FUTEX_WAIT_PRIVATE, 9, {0, 999831378}) = -1 ETIMEDOUT (Connection timed out)
10208 gettimeofday({1251470810, 310632}, NULL) = 0
10208 futex(0xf60990, FUTEX_WAKE_PRIVATE, 1) = 0
10208 clock_gettime(CLOCK_REALTIME, {1251470810, 310721509}) = 0
10208 futex(0xf60964, FUTEX_WAIT_PRIVATE, 11, {0, 999910491} <unfinished ...>
10206 <... rt_sigtimedwait resumed> 0, 0, 8) = 2
10206 clone(child_stack=0xb5bff494, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0xb5bffbd8, {entry_number:6, base_addr:0xb5bffb70, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}, child_tidptr=0xb5bffbd8) = 10224
10224 set_robust_list(0xb5bffbe0, 0xc) = 0
10224 futex(0xf607a0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10206 futex(0xf607a0, FUTEX_WAKE_PRIVATE, 1) = 1
10224 <... futex resumed> ) = 0
10224 write(2, "do_notify_state: signal 2"..., 25) = 25
10224 write(2, "\n"..., 1) = 1
10224 futex(0xf607b8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10206 futex(0xf607b8, FUTEX_WAKE_PRIVATE, 1) = 1
10224 <... futex resumed> ) = 0
10224 futex(0xf607bc, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xf607b8, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1}) = 0
10224 futex(0xf607a0, FUTEX_WAKE_PRIVATE, 1) = 0
10224 futex(0xf60964, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xf60960, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1}) = 1
10208 <... futex resumed> ) = 0
10224 write(2, "master_notify_state_change: sig 2"..., 61 <unfinished ...>
10208 futex(0xf60990, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10224 <... write resumed> ) = 61
10224 write(2, "\n"..., 1) = 1
10224 futex(0xf60990, FUTEX_WAKE_PRIVATE, 1) = 1
10208 <... futex resumed> ) = 0
10224 write(2, "master_notify_state_change: sig 2"..., 60 <unfinished ...>
10208 futex(0xf60990, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10224 <... write resumed> ) = 60
10224 write(2, "\n"..., 1) = 1
10224 futex(0xf60990, FUTEX_WAKE_PRIVATE, 1) = 1
10208 <... futex resumed> ) = 0
10224 write(2, "master_notify_state_change: sig 2"..., 61 <unfinished ...>
10208 futex(0xf60990, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10224 <... write resumed> ) = 61
10224 write(2, "\n"..., 1) = 1
10224 futex(0xf60990, FUTEX_WAKE_PRIVATE, 1) = 1
10208 <... futex resumed> ) = 0
10224 _exit(0) = ?
10208 write(2, "st_prepare_shutdown: state 1 path"..., 39) = 39
10208 write(2, "\n"..., 1) = 1
10208 clone(child_stack=0xb5bff494, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0xb5bffbd8, {entry_number:6, base_addr:0xb5bffb70, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}, child_tidptr=0xb5bffbd8) = 10225
10225 set_robust_list(0xb5bffbe0, 0xc) = 0
10225 futex(0x1cff7d0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10208 write(2, "expire_proc: exp_proc = 304925784"..., 45) = 45
10208 write(2, "\n"..., 1) = 1
10208 futex(0x1cff7d0, FUTEX_WAKE_PRIVATE, 1) = 1
10225 <... futex resumed> ) = 0
10225 futex(0x1cff7e8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10208 futex(0x1cff7e8, FUTEX_WAKE_PRIVATE, 1) = 1
10206 futex(0xf607bc, FUTEX_WAIT_PRIVATE, 1, NULL <unfinished ...>
10225 <... futex resumed> ) = 0
10206 <... futex resumed> ) = -1 EAGAIN (Resource temporarily unavailable)
10225 futex(0x1cff7ec, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x1cff7e8, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
10206 futex(0xf607a0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10225 <... futex resumed> ) = 0
10206 <... futex resumed> ) = 0
10225 futex(0x1cff7d0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10206 rt_sigtimedwait(~[ILL TRAP ABRT BUS FPE SEGV CHLD CONT RTMIN RT_1], <unfinished ...>
10225 <... futex resumed> ) = 0
10225 open("/proc/mounts", O_RDONLY|O_CLOEXEC) = 5
10225 fstat64(5, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
10225 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f99000
10225 read(5, "rootfs / rootfs rw 0 0\n/dev/root "..., 1024) = 1024
10225 read(5, ",maxproto=5,indirect 0 0\n/etc/aut"..., 1024) = 597
10225 read(5, ""..., 1024) = 0
10225 close(5) = 0
10225 munmap(0xb7f99000, 4096) = 0
10225 ioctl(3, 0xc018937e, 0xb5c009b0) = 1
10225 ioctl(3, 0xc018937e, 0xb5c009b0) = 1
10225 ioctl(3, 0xc018937e, 0xb5c009b0) = 1
10225 ioctl(3, 0xc018937e, 0xb5c009e8) = 1
10225 ioctl(3, 0xc018937e, 0xb5c00a18) = 1
10225 lstat64("/cifs", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10225 open("/cifs", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 5
10225 fcntl64(5, F_GETFD) = 0x1 (flags FD_CLOEXEC)
10225 getdents64(5, /* 3 entries */, 32768) = 80
10225 getdents64(5, /* 0 entries */, 32768) = 0
10225 close(5) = 0
10225 ioctl(3, 0xc018937e, 0xb5c00a48) = 0
10225 lstat64("/cifs/VMW1013", {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
10225 open("/cifs/VMW1013", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 5
10225 getdents64(5, /* 6 entries */, 32768) = 168
10225 getdents64(5, /* 0 entries */, 32768) = 0
10225 close(5) = 0
10225 ioctl(3, 0xc018937e, 0xb5c00ee8) = 1
10225 lstat64("/cifs/VMW1013/Shared", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10225 ioctl(3, 0xc018937e, 0xb5c00ee8) = 1
10225 lstat64("/cifs/VMW1013/My Documents", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10225 ioctl(3, 0xc018937e, 0xb5c00f20) = 1
10225 lstat64("/cifs/VMW1013/C$", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10225 ioctl(3, 0xc018937e, 0xb5c00ee8) = 1
10225 lstat64("/cifs/VMW1013/ADMIN$", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10225 ioctl(3, 0xc018937c <unfinished ...>
10215 <... poll resumed> ) = 1 ([{fd=20, revents=POLLIN}])
10215 read(20, "\5\0\0\0\4\0\0\0\220\0\0\0\26\0\0\0g\313\5\0\0\0\0\0\0\0\0\0\0\0\0\0\361"..., 300) = 300
10215 write(2, "handle_packet: type = 4"..., 23) = 23
10215 write(2, "\n"..., 1) = 1
10215 write(2, "handle_packet_expire_indirect: to"..., 54) = 54
10215 write(2, "\n"..., 1) = 1
10215 mmap2(NULL, 1052672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0xb59fe000
10215 mprotect(0xb59fe000, 4096, PROT_NONE) = 0
10215 clone(child_stack=0xb5afe494, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0xb5afebd8, {entry_number:6, base_addr:0xb5afeb70, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}, child_tidptr=0xb5afebd8) = 10226
10215 gettimeofday( <unfinished ...>
10226 set_robust_list(0xb5afebe0, 0xc <unfinished ...>
10215 <... gettimeofday resumed> {1251470810, 518028}, NULL) = 0
10226 <... set_robust_list resumed> ) = 0
10215 clock_gettime(CLOCK_REALTIME, <unfinished ...>
10226 futex(0xb5c01080, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10215 <... clock_gettime resumed> {1251470810, 518195207}) = 0
10215 futex(0xb5c01080, FUTEX_WAKE_PRIVATE, 1) = 1
10226 <... futex resumed> ) = 0
10215 futex(0xb5c01084, FUTEX_WAIT_PRIVATE, 1, {1, 999832793} <unfinished ...>
10226 futex(0xb5c01084, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xb5c01080, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
10215 <... futex resumed> ) = -1 EAGAIN (Resource temporarily unavailable)
10226 <... futex resumed> ) = 0
10215 futex(0xf60904, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10226 futex(0xf60904, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10215 <... futex resumed> ) = -1 EAGAIN (Resource temporarily unavailable)
10226 <... futex resumed> ) = 0
10215 futex(0xf60904, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10226 write(2, "expiring path /cifs/VMW1013"..., 27 <unfinished ...>
10215 <... futex resumed> ) = 0
10226 <... write resumed> ) = 27
10215 poll([{fd=20, events=POLLIN}, {fd=22, events=POLLIN}, {fd=24, events=POLLIN}], 3, -1 <unfinished ...>
10226 write(2, "\n"..., 1) = 1
10226 write(2, "umount_multi: path /cifs/VMW1013 "..., 39) = 39
10226 write(2, "\n"..., 1) = 1
10226 write(2, "umount_multi_triggers: umount off"..., 57 <unfinished ...>
10208 futex(0x1cff7ec, FUTEX_WAIT_PRIVATE, 1, NULL <unfinished ...>
10226 <... write resumed> ) = 57
10226 write(2, "\n"..., 1) = 1
10226 ioctl(3, 0xc018937e, 0xb6800910) = 1
10208 <... futex resumed> ) = -1 EAGAIN (Resource temporarily unavailable)
10226 ioctl(3, 0xc0189374 <unfinished ...>
10208 futex(0x1cff7d0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10226 <... ioctl resumed> , 0xb6800910) = 0
10208 <... futex resumed> ) = 0
10226 ioctl(3, 0xc018937d <unfinished ...>
10208 write(2, "st_prepare_shutdown: state 1 path"..., 38 <unfinished ...>
10226 <... ioctl resumed> , 0xb5af9f98) = 0
10208 <... write resumed> ) = 38
10226 ioctl(3, 0xc0189379, 0xb5af9f98) = 0
10208 write(2, "\n"..., 1 <unfinished ...>
10226 ioctl(3, 0xc0189375 <unfinished ...>
10208 <... write resumed> ) = 1
10226 <... ioctl resumed> , 0xb5af9f98) = 0
10226 sched_yield( <unfinished ...>
10208 mmap2(NULL, 1052672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0 <unfinished ...>
10226 <... sched_yield resumed> ) = 0
10208 <... mmap2 resumed> ) = 0xb58fd000
10226 oldumount("/cifs/VMW1013/ADMIN$" <unfinished ...>
10208 mprotect(0xb58fd000, 4096, PROT_NONE <unfinished ...>
10226 <... oldumount resumed> ) = 0
10226 write(2, "umounted offset mount /cifs/VMW10"..., 42) = 42
10208 <... mprotect resumed> ) = 0
10208 clone(child_stack=0xb59fd494, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0xb59fdbd8, {entry_number:6, base_addr:0xb59fdb70, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}, child_tidptr=0xb59fdbd8) = 10227
10227 set_robust_list(0xb59fdbe0, 0xc) = 0
10227 futex(0x1cff7d0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10226 write(2, "\n"..., 1 <unfinished ...>
10208 futex(0x94332c, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10226 <... write resumed> ) = 1
10226 futex(0x94332c, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10208 <... futex resumed> ) = -1 EAGAIN (Resource temporarily unavailable)
10226 <... futex resumed> ) = 0
10208 write(2, "expire_proc: exp_proc = 304715249"..., 44 <unfinished ...>
10226 rmdir("/cifs/VMW1013/ADMIN$" <unfinished ...>
10208 <... write resumed> ) = 44
10226 <... rmdir resumed> ) = 0
10208 futex(0x94332c, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10226 write(2, "umount_multi_triggers: umount off"..., 53 <unfinished ...>
10208 <... futex resumed> ) = 0
10226 <... write resumed> ) = 53
10226 write(2, "\n"..., 1) = 1
10226 ioctl(3, 0xc018937e, 0xb6800948) = 1
10208 write(2, "\n"..., 1 <unfinished ...>
10226 ioctl(3, 0xc0189374 <unfinished ...>
10208 <... write resumed> ) = 1
10226 <... ioctl resumed> , 0xb6800948) = 0
10226 ioctl(3, 0xc018937d <unfinished ...>
10208 futex(0x1cff7d0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10226 <... ioctl resumed> , 0xb5af9f98) = 0
10227 <... futex resumed> ) = 0
10208 <... futex resumed> ) = 1
10227 futex(0x1cff7e8, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10208 futex(0x1cff7e8, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10227 <... futex resumed> ) = -1 EAGAIN (Resource temporarily unavailable)
10208 <... futex resumed> ) = 0
10227 futex(0x1cff7ec, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x1cff7e8, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
10208 futex(0x1cff7ec, FUTEX_WAIT_PRIVATE, 1, NULL <unfinished ...>
10227 <... futex resumed> ) = 0
10208 <... futex resumed> ) = -1 EAGAIN (Resource temporarily unavailable)
10227 futex(0x1cff7d0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10208 futex(0x1cff7d0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10227 <... futex resumed> ) = 0
10208 <... futex resumed> ) = 0
10227 open("/proc/mounts", O_RDONLY|O_CLOEXEC <unfinished ...>
10208 write(2, "st_prepare_shutdown: state 1 path"..., 39 <unfinished ...>
10227 <... open resumed> ) = 26
10208 <... write resumed> ) = 39
10226 ioctl(3, 0xc0189379, 0xb5af9f98) = 0
10227 fstat64(26, <unfinished ...>
10226 ioctl(3, 0xc0189375 <unfinished ...>
10227 <... fstat64 resumed> {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
10208 write(2, "\n"..., 1 <unfinished ...>
10227 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 <unfinished ...>
10208 <... write resumed> ) = 1
10226 <... ioctl resumed> , 0xb5af9f98) = 0
10227 <... mmap2 resumed> ) = 0xb7f99000
10226 sched_yield( <unfinished ...>
10227 read(26, <unfinished ...>
10208 mmap2(NULL, 1052672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0 <unfinished ...>
10226 <... sched_yield resumed> ) = 0
10226 oldumount("/cifs/VMW1013/C$" <unfinished ...>
10227 <... read resumed> "rootfs / rootfs rw 0 0\n/dev/root "..., 1024) = 1024
10208 <... mmap2 resumed> ) = 0xb57fc000
10226 <... oldumount resumed> ) = 0
10226 write(2, "umounted offset mount /cifs/VMW10"..., 38) = 38
10226 write(2, "\n"..., 1) = 1
10226 rmdir("/cifs/VMW1013/C$") = 0
10226 write(2, "umount_multi_triggers: umount off"..., 63) = 63
10226 write(2, "\n"..., 1) = 1
10226 ioctl(3, 0xc018937e, 0xb6800910) = 1
10226 ioctl(3, 0xc0189374, 0xb6800910) = 0
10226 ioctl(3, 0xc018937d, 0xb5af9f98) = 0
10226 ioctl(3, 0xc0189379, 0xb5af9f98) = 0
10226 ioctl(3, 0xc0189375, 0xb5af9f98) = 0
10226 sched_yield() = 0
10226 oldumount("/cifs/VMW1013/My Documents" <unfinished ...>
10227 read(26, <unfinished ...>
10208 mprotect(0xb57fc000, 4096, PROT_NONE <unfinished ...>
10227 <... read resumed> ",maxproto=5,indirect 0 0\n/etc/aut"..., 1024) = 244
10208 <... mprotect resumed> ) = 0
10227 read(26, <unfinished ...>
10226 <... oldumount resumed> ) = 0
10227 <... read resumed> ""..., 1024) = 0
10208 clone( <unfinished ...>
10227 close(26) = 0
10226 write(2, "umounted offset mount /cifs/VMW10"..., 48 <unfinished ...>
10227 munmap(0xb7f99000, 4096 <unfinished ...>
10208 <... clone resumed> child_stack=0xb58fc494, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0xb58fcbd8, {entry_number:6, base_addr:0xb58fcb70, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}, child_tidptr=0xb58fcbd8) = 10228
10228 set_robust_list(0xb58fcbe0, 0xc <unfinished ...>
10227 <... munmap resumed> ) = 0
10228 <... set_robust_list resumed> ) = 0
10227 open("/proc/mounts", O_RDONLY|O_CLOEXEC <unfinished ...>
10228 futex(0x1cff7d0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10208 futex(0x94332c, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10227 <... open resumed> ) = 5
10227 fstat64(5, <unfinished ...>
10226 <... write resumed> ) = 48
10226 futex(0x94332c, FUTEX_WAKE_PRIVATE, 1) = 1
10227 <... fstat64 resumed> {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
10226 write(2, "\n"..., 1 <unfinished ...>
10227 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 <unfinished ...>
10226 <... write resumed> ) = 1
10226 rmdir("/cifs/VMW1013/My Documents" <unfinished ...>
10227 <... mmap2 resumed> ) = 0xb7f99000
10226 <... rmdir resumed> ) = 0
10208 <... futex resumed> ) = 0
10226 write(2, "umount_multi_triggers: umount off"..., 57 <unfinished ...>
10208 futex(0x94332c, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10226 <... write resumed> ) = 57
10226 futex(0x94332c, FUTEX_WAKE_PRIVATE, 1) = 1
10226 write(2, "\n"..., 1 <unfinished ...>
10227 read(5, <unfinished ...>
10226 <... write resumed> ) = 1
10226 ioctl(3, 0xc018937e <unfinished ...>
10227 <... read resumed> "rootfs / rootfs rw 0 0\n/dev/root "..., 1024) = 1024
10226 <... ioctl resumed> , 0xb6800910) = 1
10226 ioctl(3, 0xc0189374 <unfinished ...>
10227 read(5, <unfinished ...>
10226 <... ioctl resumed> , 0xb6800910) = 0
10227 <... read resumed> ",maxproto=5,indirect 0 0\n/etc/aut"..., 1024) = 244
10226 ioctl(3, 0xc018937d <unfinished ...>
10227 read(5, <unfinished ...>
10226 <... ioctl resumed> , 0xb5af9f98) = 0
10227 <... read resumed> ""..., 1024) = 0
10227 close(5 <unfinished ...>
10226 ioctl(3, 0xc0189379 <unfinished ...>
10208 <... futex resumed> ) = 0
10226 <... ioctl resumed> , 0xb5af9f98) = 0
10208 write(2, "expire_proc: exp_proc = 304609982"..., 45 <unfinished ...>
10226 ioctl(3, 0xc0189375 <unfinished ...>
10208 <... write resumed> ) = 45
10226 <... ioctl resumed> , 0xb5af9f98) = 0
10208 futex(0x94332c, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10226 sched_yield( <unfinished ...>
10208 <... futex resumed> ) = 0
10226 <... sched_yield resumed> ) = 0
10208 write(2, "\n"..., 1 <unfinished ...>
10226 oldumount("/cifs/VMW1013/Shared" <unfinished ...>
10208 <... write resumed> ) = 1
10227 <... close resumed> ) = 0
10227 munmap(0xb7f99000, 4096) = 0
10227 futex(0xf60990, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10226 <... oldumount resumed> ) = 0
10208 futex(0x1cff7d0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10226 write(2, "umounted offset mount /cifs/VMW10"..., 42 <unfinished ...>
10208 <... futex resumed> ) = 1
10226 <... write resumed> ) = 42
10208 futex(0x1cff7ec, FUTEX_WAIT_PRIVATE, 1, NULL <unfinished ...>
10226 write(2, "\n"..., 1 <unfinished ...>
10228 <... futex resumed> ) = 0
10226 <... write resumed> ) = 1
10226 rmdir("/cifs/VMW1013/Shared") = 0
10228 futex(0x1cff7ec, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x1cff7e8, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
10226 ioctl(3, 0xc018937e <unfinished ...>
10228 <... futex resumed> ) = 1
10226 <... ioctl resumed> , 0xb6800948) = 0
10226 write(2, "cache_delete_offset_list: deletin"..., 66) = 66
10226 write(2, "\n"..., 1) = 1
10226 write(2, "cache_delete_offset_list: deletin"..., 62) = 62
10226 write(2, "\n"..., 1) = 1
10226 write(2, "cache_delete_offset_list: deletin"..., 72) = 72
10226 write(2, "\n"..., 1) = 1
10226 write(2, "cache_delete_offset_list: deletin"..., 66 <unfinished ...>
10228 futex(0x1cff7d0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10226 <... write resumed> ) = 66
10226 write(2, "\n"..., 1) = 1
10226 ioctl(3, 0xc018937e <unfinished ...>
10228 <... futex resumed> ) = 0
10226 <... ioctl resumed> , 0xb6800948) = 0
10228 open("/proc/mounts", O_RDONLY|O_CLOEXEC <unfinished ...>
10226 lstat64("/cifs/VMW1013", <unfinished ...>
10208 <... futex resumed> ) = 0
10226 <... lstat64 resumed> {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
10208 futex(0x1cff7d0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10226 open("/cifs/VMW1013", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC <unfinished ...>
10208 <... futex resumed> ) = 0
10226 <... open resumed> ) = 5
10208 gettimeofday( <unfinished ...>
10226 getdents64(5, <unfinished ...>
10208 <... gettimeofday resumed> {1251470810, 535125}, NULL) = 0
10226 <... getdents64 resumed> /* 2 entries */, 32768) = 48
10208 futex(0xf60990, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10226 getdents64(5, <unfinished ...>
10227 <... futex resumed> ) = 0
10226 <... getdents64 resumed> /* 0 entries */, 32768) = 0
10208 <... futex resumed> ) = 1
10227 write(2, "expire_cleanup: got thid 30471524"..., 52 <unfinished ...>
10226 close(5 <unfinished ...>
10227 <... write resumed> ) = 52
10208 clock_gettime(CLOCK_REALTIME, <unfinished ...>
10228 <... open resumed> ) = 26
10227 write(2, "\n"..., 1 <unfinished ...>
10226 <... close resumed> ) = 0
10208 <... clock_gettime resumed> {1251470810, 535679948}) = 0
10227 <... write resumed> ) = 1
10228 fstat64(26, <unfinished ...>
10227 ioctl(3, 0xc018937d <unfinished ...>
10226 lstat64("/cifs/VMW1013", <unfinished ...>
10227 <... ioctl resumed> , 0xb59fd1d8) = 0
10226 <... lstat64 resumed> {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
10227 write(2, "expire_cleanup: sigchld: exp 3047"..., 71 <unfinished ...>
10226 futex(0x94332c, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10227 <... write resumed> ) = 71
10208 futex(0xf60964, FUTEX_WAIT_PRIVATE, 13, {0, 999445052} <unfinished ...>
10228 <... fstat64 resumed> {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
10227 futex(0x94332c, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10226 <... futex resumed> ) = -1 EAGAIN (Resource temporarily unavailable)
10227 <... futex resumed> ) = 0
10226 write(2, "rm_unwanted_fn: removing director"..., 48 <unfinished ...>
10227 futex(0x94332c, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10226 <... write resumed> ) = 48
10228 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f99000
10226 futex(0x94332c, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10228 read(26, <unfinished ...>
10227 <... futex resumed> ) = 0
10226 <... futex resumed> ) = 1
10227 write(2, "\n"..., 1 <unfinished ...>
10226 futex(0x94332c, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10227 <... write resumed> ) = 1
10228 <... read resumed> "rootfs / rootfs rw 0 0\n/dev/root "..., 1024) = 1024
10227 futex(0x94332c, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10226 <... futex resumed> ) = -1 EAGAIN (Resource temporarily unavailable)
10228 read(26, ",maxproto=5,indirect 0 0\n/etc/aut"..., 1024) = 128
10228 read(26, ""..., 1024) = 0
10228 close(26) = 0
10228 munmap(0xb7f99000, 4096) = 0
10228 open("/proc/mounts", O_RDONLY|O_CLOEXEC) = 5
10228 fstat64(5, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
10228 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 <unfinished ...>
10227 <... futex resumed> ) = 0
10226 write(2, "\n"..., 1 <unfinished ...>
10227 futex(0x94332c, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10226 <... write resumed> ) = 1
10228 <... mmap2 resumed> ) = 0xb7f99000
10228 read(5, <unfinished ...>
10226 futex(0x94332c, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10227 <... futex resumed> ) = 0
10226 <... futex resumed> ) = 1
10227 write(2, "st_shutdown: state 5 path /net"..., 30 <unfinished ...>
10226 rmdir("/cifs/VMW1013" <unfinished ...>
10227 <... write resumed> ) = 30
10228 <... read resumed> "rootfs / rootfs rw 0 0\n/dev/root "..., 1024) = 1024
10227 futex(0x94332c, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10226 <... rmdir resumed> ) = 0
10227 <... futex resumed> ) = 0
10226 write(2, "expired /cifs/VMW1013"..., 21 <unfinished ...>
10227 futex(0x94332c, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10226 <... write resumed> ) = 21
10228 read(5, <unfinished ...>
10226 futex(0x94332c, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10227 <... futex resumed> ) = 0
10228 <... read resumed> ",maxproto=5,indirect 0 0\n/etc/aut"..., 1024) = 128
10227 write(2, "\n"..., 1 <unfinished ...>
10228 read(5, <unfinished ...>
10227 <... write resumed> ) = 1
10228 <... read resumed> ""..., 1024) = 0
10227 futex(0x94332c, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10228 close(5 <unfinished ...>
10227 <... futex resumed> ) = 0
10228 <... close resumed> ) = 0
10227 write(17, "\7\0\0\0"..., 4 <unfinished ...>
10228 munmap(0xb7f99000, 4096 <unfinished ...>
10227 <... write resumed> ) = 4
10227 futex(0xf60990, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10228 <... munmap resumed> ) = 0
10227 <... futex resumed> ) = 0
10228 write(2, "expire_cleanup: got thid 30460998"..., 53 <unfinished ...>
10227 _exit(0) = ?
10228 <... write resumed> ) = 53
10226 <... futex resumed> ) = 1
10228 write(2, "\n"..., 1 <unfinished ...>
10214 <... poll resumed> ) = 1 ([{fd=16, revents=POLLIN}])
10228 <... write resumed> ) = 1
10214 futex(0xf60990, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10228 ioctl(3, 0xc018937d, 0xb58fc1d8) = 0
10228 write(2, "expire_cleanup: sigchld: exp 3046"..., 71 <unfinished ...>
10226 futex(0x94332c, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10228 <... write resumed> ) = 71
10228 futex(0x94332c, FUTEX_WAKE_PRIVATE, 1) = 0
10228 write(2, "\n"..., 1 <unfinished ...>
10226 <... futex resumed> ) = -1 EAGAIN (Resource temporarily unavailable)
10228 <... write resumed> ) = 1
10228 write(2, "st_shutdown: state 5 path /misc"..., 31 <unfinished ...>
10226 futex(0x94332c, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10228 <... write resumed> ) = 31
10228 futex(0x94332c, FUTEX_WAKE_PRIVATE, 1) = 0
10228 write(2, "\n"..., 1) = 1
10228 write(9, "\7\0\0\0"..., 4) = 4
10211 <... poll resumed> ) = 1 ([{fd=8, revents=POLLIN}])
10211 futex(0xf60990, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10228 futex(0xf60990, FUTEX_WAKE_PRIVATE, 1) = 1
10214 <... futex resumed> ) = 0
10214 read(16, "\7\0\0\0"..., 4) = 4
10214 futex(0xf60990, FUTEX_WAKE_PRIVATE, 1) = 1
10214 futex(0xf60964, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xf60960, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1}) = 1
10214 nanosleep({0, 200000000}, <unfinished ...>
10211 <... futex resumed> ) = 0
10211 read(8, "\7\0\0\0"..., 4) = 4
10211 futex(0xf60990, FUTEX_WAKE_PRIVATE, 1) = 0
10211 futex(0xf60ca0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10228 _exit(0) = ?
10226 <... futex resumed> ) = -1 EAGAIN (Resource temporarily unavailable)
10208 <... futex resumed> ) = 0
10226 write(2, "\n"..., 1 <unfinished ...>
10208 gettimeofday( <unfinished ...>
10226 <... write resumed> ) = 1
10226 futex(0x94332c, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10208 <... gettimeofday resumed> {1251470810, 542782}, NULL) = 0
10226 <... futex resumed> ) = 0
10208 futex(0xf60990, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10226 write(2, "dev_ioctl_send_ready: token = 144"..., 33 <unfinished ...>
10208 <... futex resumed> ) = 0
10226 <... write resumed> ) = 33
10226 write(2, "\n"..., 1) = 1
10226 ioctl(3, 0xc0189376 <unfinished ...>
10225 <... ioctl resumed> , 0xb5bff238) = 0
10225 nanosleep({0, 100000000}, <unfinished ...>
10208 clock_gettime(CLOCK_REALTIME, <unfinished ...>
10226 <... ioctl resumed> , 0xb5afd224) = 0
10208 <... clock_gettime resumed> {1251470810, 543419539}) = 0
10226 _exit(0) = ?
10208 futex(0xf60964, FUTEX_WAIT_PRIVATE, 15, {0, 999362461} <unfinished ...>
10225 <... nanosleep resumed> NULL) = 0
10225 ioctl(3, 0xc018937c, 0xb5bff238) = -1 EAGAIN (Resource temporarily unavailable)
10225 ioctl(3, 0xc018937d, 0xb5bff1a8) = 0
10225 ioctl(3, 0xc018937c, 0xb5bff238) = -1 EAGAIN (Resource temporarily unavailable)
10225 ioctl(3, 0xc018937d, 0xb5bff1a8) = 0
10225 ioctl(3, 0xc018937c, 0xb5bff238) = -1 EAGAIN (Resource temporarily unavailable)
10225 ioctl(3, 0xc018937d, 0xb5bff1a8) = 0
10225 ioctl(3, 0xc018937c, 0xb5bff238) = -1 EAGAIN (Resource temporarily unavailable)
10225 ioctl(3, 0xc018937d, 0xb5bff1a8) = 0
10225 ioctl(3, 0xc018937c, 0xb5bff238) = -1 EAGAIN (Resource temporarily unavailable)
10225 ioctl(3, 0xc018937d, 0xb5bff1a8) = 0
10225 open("/proc/mounts", O_RDONLY|O_CLOEXEC) = 5
10225 fstat64(5, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
10225 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f99000
10225 read(5, "rootfs / rootfs rw 0 0\n/dev/root "..., 1024) = 1024
10225 read(5, ",maxproto=5,indirect 0 0\n/etc/aut"..., 1024) = 128
10225 read(5, ""..., 1024) = 0
10225 close(5) = 0
10225 munmap(0xb7f99000, 4096) = 0
10225 write(2, "expire_cleanup: got thid 30492578"..., 53) = 53
10225 write(2, "\n"..., 1) = 1
10225 ioctl(3, 0xc018937d, 0xb5bff1d8) = 0
10225 write(2, "expire_cleanup: sigchld: exp 3049"..., 71) = 71
10225 write(2, "\n"..., 1) = 1
10225 write(2, "st_shutdown: state 5 path /cifs"..., 31) = 31
10225 write(2, "\n"..., 1) = 1
10225 write(23, "\7\0\0\0"..., 4) = 4
10225 _exit(0) = ?
10215 <... poll resumed> ) = 1 ([{fd=22, revents=POLLIN}])
10215 read(22, "\7\0\0\0"..., 4) = 4
10215 futex(0xf60ca0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10214 <... nanosleep resumed> {16124304, 30504320}) = 0
10214 munmap(0xd39000, 114440) = 0
10214 write(2, "umount_multi: path /net incl 0"..., 30) = 30
10214 write(2, "\n"..., 1) = 1
10214 ioctl(3, 0xc018937e, 0xb68004b0) = 1
10214 lstat64("/net", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10214 open("/net", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 5
10214 getdents64(5, /* 2 entries */, 32768) = 48
10214 getdents64(5, /* 0 entries */, 32768) = 0
10214 close(5) = 0
10214 ioctl(3, 0xc018937d, 0xb73fe178) = 0
10214 ioctl(3, 0xc0189379, 0xb73fe178) = 0
10214 ioctl(3, 0xc0189375, 0xb73fe178) = 0
10214 sched_yield() = 0
10214 oldumount("/net") = 0
10214 close(16) = 0
10214 close(17) = 0
10214 close(14) = 0
10214 close(15) = 0
10214 write(2, "umounted indirect mount /net"..., 28) = 28
10214 write(2, "\n"..., 1) = 1
10214 write(2, "automount_path_to_fifo: fifo name"..., 58) = 58
10214 write(2, "\n"..., 1) = 1
10214 close(18) = 0
10214 unlink("/var/run/autofs.fifo-net") = 0
10214 futex(0xf60ca0, FUTEX_WAKE_PRIVATE, 1) = 1
10214 write(2, "shut down path /net"..., 19) = 19
10214 write(2, "\n"..., 1) = 1
10214 tgkill(10206, 10206, SIGTERM) = 0
10214 _exit(0) = ?
10211 <... futex resumed> ) = 0
10211 futex(0xf60964, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xf60960, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1}) = 1
10211 nanosleep({0, 200000000}, <unfinished ...>
10208 <... futex resumed> ) = 0
10206 <... rt_sigtimedwait resumed> 0, 0, 8) = 15
10208 gettimeofday( <unfinished ...>
10206 futex(0xf60ca0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
10208 <... gettimeofday resumed> {1251470810, 746455}, NULL) = 0
10208 futex(0xf60990, FUTEX_WAKE_PRIVATE, 1) = 0
10208 clock_gettime(CLOCK_REALTIME, {1251470810, 746779940}) = 0
10208 futex(0xf60964, FUTEX_WAIT_PRIVATE, 17, {0, 999675060} <unfinished ...>
10211 <... nanosleep resumed> {16124304, 30491528}) = 0
10211 munmap(0x4e4000, 113928) = 0
10211 write(2, "umount_multi: path /misc incl 0"..., 31) = 31
10211 write(2, "\n"..., 1) = 1
10211 ioctl(3, 0xc018937e, 0xb7400520) = 1
10211 lstat64("/misc", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10211 open("/misc", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 5
10211 getdents64(5, /* 2 entries */, 32768) = 48
10211 getdents64(5, /* 0 entries */, 32768) = 0
10211 close(5) = 0
10211 ioctl(3, 0xc018937d, 0xb7f74178) = 0
10211 ioctl(3, 0xc0189379, 0xb7f74178) = 0
10211 ioctl(3, 0xc0189375, 0xb7f74178) = 0
10211 sched_yield() = 0
10211 oldumount("/misc") = 0
10211 close(8) = 0
10211 close(9) = 0
10211 close(6) = 0
10211 close(7) = 0
10211 write(2, "umounted indirect mount /misc"..., 29) = 29
10211 write(2, "\n"..., 1) = 1
10211 write(2, "automount_path_to_fifo: fifo name"..., 59) = 59
10211 write(2, "\n"..., 1) = 1
10211 close(10) = 0
10211 unlink("/var/run/autofs.fifo-misc") = 0
10211 futex(0xf60ca0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
10215 <... futex resumed> ) = 0
10215 futex(0xf60a24, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0xf60a20, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1}) = 1
10215 nanosleep({0, 200000000}, <unfinished ...>
10211 <... futex resumed> ) = 1
10211 write(2, "shut down path /misc"..., 20) = 20
10211 write(2, "\n"..., 1) = 1
10211 tgkill(10206, 10206, SIGTERM) = 0
10211 _exit(0) = ?
10207 <... futex resumed> ) = 0
10207 time(NULL) = 1251470810
10207 futex(0xf60a00, FUTEX_WAKE_PRIVATE, 1) = 0
10207 futex(0xf60a24, FUTEX_WAIT_PRIVATE, 7, NULL <unfinished ...>
10215 <... nanosleep resumed> {16124304, 30517160}) = 0
10215 munmap(0xbd3000, 12956) = 0
10215 munmap(0x22a000, 47364) = 0
10215 munmap(0x544000, 149704) = 0
10215 munmap(0x115000, 99368) = 0
10215 write(2, "umount_multi: path /cifs incl 0"..., 31) = 31
10215 write(2, "\n"..., 1) = 1
10215 ioctl(3, 0xc018937e, 0xb5c00800) = 1
10215 lstat64("/cifs", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
10215 open("/cifs", O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY|O_CLOEXEC) = 5
10215 getdents64(5, /* 2 entries */, 32768) = 48
10215 getdents64(5, /* 0 entries */, 32768) = 0
10215 close(5) = 0
10215 ioctl(3, 0xc018937d, 0xb67fe178) = 0
10215 ioctl(3, 0xc0189379, 0xb67fe178) = 0
10215 ioctl(3, 0xc0189375, 0xb67fe178) = 0
10215 sched_yield() = 0
10215 oldumount("/cifs") = 0
10215 close(22) = 0
10215 close(23) = 0
10215 close(20) = 0
10215 close(21) = 0
10215 write(2, "umounted indirect mount /cifs"..., 29) = 29
10215 write(2, "\n"..., 1) = 1
10215 write(2, "automount_path_to_fifo: fifo name"..., 59) = 59
10215 write(2, "\n"..., 1) = 1
10215 close(24) = 0
10215 unlink("/var/run/autofs.fifo-cifs") = 0
10215 futex(0xf60ca0, FUTEX_WAKE_PRIVATE, 1) = 1
10215 rmdir("/cifs") = 0
10215 write(2, "shut down path /cifs"..., 20) = 20
10215 write(2, "\n"..., 1) = 1
10215 tgkill(10206, 10206, SIGTERM) = 0
10215 _exit(0) = ?
10206 <... futex resumed> ) = 0
10206 futex(0xf60ca0, FUTEX_WAKE_PRIVATE, 1) = 0
10206 unlink("/var/run/autofs-running") = 0
10206 munmap(0x29c000, 1297236) = 0
10206 munmap(0xd65000, 76688) = 0
10206 munmap(0xe74000, 159872) = 0
10206 close(3) = 0
10206 write(2, "autofs stopped"..., 14) = 14
10206 write(2, "\n"..., 1) = 1
10206 exit_group(0) = ?
[-- Attachment #3: Type: text/plain, Size: 140 bytes --]
_______________________________________________
autofs mailing list
autofs@linux.kernel.org
http://linux.kernel.org/mailman/listinfo/autofs
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: More CIFS $ Share Woes
2009-08-28 14:09 More CIFS $ Share Woes Jason T. Masker
2009-08-28 14:58 ` Jason T. Masker
@ 2009-08-31 4:32 ` Ian Kent
2009-08-31 12:22 ` Jason T. Masker
1 sibling, 1 reply; 8+ messages in thread
From: Ian Kent @ 2009-08-31 4:32 UTC (permalink / raw)
To: Jason T. Masker; +Cc: autofs
Jason T. Masker wrote:
> I have been following some of the discussion about the autofs mounting
> of cifs $ shares being recently broken as I am experiencing this issue
> myself on Fedora 11.
See below.
>
> Here is my current auto.cifs script, only slightly modified from the
> distributed auto.smb script to include credentials:
> ---------------start auto.cifs----------------------------
> #!/bin/bash
> # $Id$
> # This file must be executable to work! chmod 755!
> key="$1"
> # Note: create a cred file for each windows/Samba-Server in your
> network
> # which requires password authentification. The file should
> contain
> # exactly two lines:
> # username=user
> # password=*****
> # Please don't use blank spaces to separate the equal sign from
> the
> # user account name or password.
> credfile="/etc/auto.smb.$key"
> defcred="/etc/auto.smb.jmasker"
> # Note: Use cifs instead of smbfs:
> mountopts="-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users"
> smbclientopts=""
> for P in /bin /sbin /usr/bin /usr/sbin
> do
> if [ -x $P/smbclient ]
> then
> SMBCLIENT=$P/smbclient
> break
> fi
> done
> [ -x $SMBCLIENT ] || exit 1
> if [ -e "$credfile" ]
> then
> mountopts=$mountopts",credentials=$credfile"
> smbclientopts="-A "$credfile
> else
> mountopts=$mountopts",credentials=$defcred"
> smbclientopts="-A "$defcred
> fi
> $SMBCLIENT $smbclientopts -gL $key 2>/dev/null \
> | awk -v key="$key" -v opts="$mountopts" -F'|' -- '
> BEGIN { ORS=""; first=1 }
> /Disk/ {
> if (first)
> print opts; first=0
> dir = $2
> loc = $2
> # Enclose mount dir and location in quotes
> # Double quote "$" in location as it is special
> gsub(/\$$/, "\\$", loc);
I think that the result of the last thread on this was that the gsub()
is now breaking the mounts. Comment it out and see if that resolves the
problem.
I wasn't entirely sure of the correction so I haven't made changes to
the Fedora package.
> print " \\\n\t \"/" dir "\"", "\"://" key "/" loc "\""
> }
> END { if (!first) print "\n"; else exit 1 }
> '
>
> -----------------end auto.cifs----------------------------------
>
> Here is the auto.cifs output when I run it manually for a host to
> which I am trying to connect:
>
> ---------------auto.cifs output-----------------------
> bash# /etc/auto.cifs VMW1013
> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> \
> "/My Documents" "://VMW1013/My Documents" \
> "/ADMIN$" "://VMW1013/ADMIN\$" \
> "/C$" "://VMW1013/C\$" \
> "/Shared" "://VMW1013/Shared"
>
> ----------------auto.cifs output------------------------
>
>
> Now here is the debug output when I try to mount a Windows
> "administrative" share ending in a $. The commands I type to initiate
> the automount are:
>
> cd /cifs/VMW1013
> cd C\$
>
> and here is the debug output:
>
> -------------automount debug-----------------
>
> Starting automounter version 5.0.4-36, master map auto.master
> using kernel protocol version 5.01
> lookup_nss_read_master: reading master files auto.master
> parse_init: parse(sun): init gathered global options: (null)
> lookup_read_master: lookup(file): read entry /misc
> lookup_read_master: lookup(file): read entry /net
> lookup_read_master: lookup(file): read entry /cifs
> lookup_read_master: lookup(file): read entry +auto.master
> lookup_nss_read_master: reading master files auto.master
> parse_init: parse(sun): init gathered global options: (null)
> lookup_nss_read_master: reading master nisplus auto.master
> parse_init: parse(sun): init gathered global options: (null)
> lookup_read_master: lookup(nisplus): couldn't locate nis+ table
> auto.master
> lookup(file): failed to read included master map auto.master
> master_do_mount: mounting /misc
> automount_path_to_fifo: fifo name /var/run/autofs.fifo-misc
> lookup_nss_read_map: reading map file /etc/auto.misc
> parse_init: parse(sun): init gathered global options: (null)
> mounted indirect on /misc with timeout 300, freq 75 seconds
> st_ready: st_ready(): state = 0 path /misc
> master_do_mount: mounting /net
> automount_path_to_fifo: fifo name /var/run/autofs.fifo-net
> lookup_nss_read_map: reading map hosts (null)
> parse_init: parse(sun): init gathered global options: (null)
> mounted indirect on /net with timeout 300, freq 75 seconds
> st_ready: st_ready(): state = 0 path /net
> master_do_mount: mounting /cifs
> automount_path_to_fifo: fifo name /var/run/autofs.fifo-cifs
> lookup_nss_read_map: reading map file /etc/auto.cifs
> parse_init: parse(sun): init gathered global options: (null)
> mounted indirect on /cifs with timeout 60, freq 15 seconds
> st_ready: st_ready(): state = 0 path /cifs
> handle_packet: type = 3
> handle_packet_missing_indirect: token 117, name VMW1013, request pid
> 7097
> attempting to mount entry /cifs/VMW1013
> lookup_mount: lookup(program): looking up VMW1013
> lookup_mount: lookup(program): VMW1013 ->
> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> "/My Documents" "://VMW1013/My Documents" "/ADMIN$"
> "://VMW1013/ADMIN\$" "/C$" "://VMW1013/C\$" "/Shared"
> "://VMW1013/Shared"
> parse_mount: parse(sun): expanded entry:
> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> "/My Documents" "://VMW1013/My Documents" "/ADMIN$"
> "://VMW1013/ADMIN\$" "/C$" "://VMW1013/C\$" "/Shared"
> "://VMW1013/Shared"
> parse_mount: parse(sun): gathered options:
> fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> parse_mount: parse(sun): dequote(""/My Documents"") -> /My Documents
> parse_mapent: parse(sun): gathered options:
> fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> parse_mapent: parse(sun): dequote(""://VMW1013/My Documents"") ->
> ://VMW1013/My Documents
> add_offset_entry: parse(sun): added multi-mount offset /My Documents
> -> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> ://VMW1013/My Documents
> parse_mount: parse(sun): dequote(""/ADMIN$"") -> /ADMIN$
> parse_mapent: parse(sun): gathered options:
> fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> parse_mapent: parse(sun): dequote(""://VMW1013/ADMIN\$"") ->
> ://VMW1013/ADMIN\$
> add_offset_entry: parse(sun): added multi-mount offset /ADMIN$ ->
> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> ://VMW1013/ADMIN\$
> parse_mount: parse(sun): dequote(""/C$"") -> /C$
> parse_mapent: parse(sun): gathered options:
> fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> parse_mapent: parse(sun): dequote(""://VMW1013/C\$"") ->
> ://VMW1013/C\$
> add_offset_entry: parse(sun): added multi-mount offset /C$ ->
> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> ://VMW1013/C\$
> parse_mount: parse(sun): dequote(""/Shared"") -> /Shared
> parse_mapent: parse(sun): gathered options:
> fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> parse_mapent: parse(sun): dequote(""://VMW1013/Shared"") ->
> ://VMW1013/Shared
> add_offset_entry: parse(sun): added multi-mount offset /Shared ->
> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> ://VMW1013/Shared
> mount_multi_triggers: mount offset /cifs/VMW1013/ADMIN$ at
> /cifs/VMW1013
> mount_autofs_offset: calling mount -t autofs -s -o
> fd=21,pgrp=8942,minproto=5,maxproto=5,offset automount
> /cifs/VMW1013/ADMIN$
> mounted offset on /cifs/VMW1013/ADMIN$ with timeout 60, freq 15
> seconds
> mount_autofs_offset: mounted trigger /cifs/VMW1013/ADMIN$ at
> /cifs/VMW1013/ADMIN$
> mount_multi_triggers: mount offset /cifs/VMW1013/C$ at /cifs/VMW1013
> mount_autofs_offset: calling mount -t autofs -s -o
> fd=21,pgrp=8942,minproto=5,maxproto=5,offset automount
> /cifs/VMW1013/C$
> mounted offset on /cifs/VMW1013/C$ with timeout 60, freq 15 seconds
> mount_autofs_offset: mounted trigger /cifs/VMW1013/C$ at
> /cifs/VMW1013/C$
> mount_multi_triggers: mount offset /cifs/VMW1013/My Documents at
> /cifs/VMW1013
> mount_autofs_offset: calling mount -t autofs -s -o
> fd=21,pgrp=8942,minproto=5,maxproto=5,offset automount
> /cifs/VMW1013/My Documents
> mounted offset on /cifs/VMW1013/My Documents with timeout 60, freq 15
> seconds
> mount_autofs_offset: mounted trigger /cifs/VMW1013/My Documents at
> /cifs/VMW1013/My Documents
> mount_multi_triggers: mount offset /cifs/VMW1013/Shared at
> /cifs/VMW1013
> mount_autofs_offset: calling mount -t autofs -s -o
> fd=21,pgrp=8942,minproto=5,maxproto=5,offset automount
> /cifs/VMW1013/Shared
> mounted offset on /cifs/VMW1013/Shared with timeout 60, freq 15
> seconds
> mount_autofs_offset: mounted trigger /cifs/VMW1013/Shared at
> /cifs/VMW1013/Shared
> dev_ioctl_send_ready: token = 117
> mounted /cifs/VMW1013
> handle_packet: type = 5
> handle_packet_missing_direct: token 118, name /cifs/VMW1013/C$,
> request pid 7097
> attempting to mount entry /cifs/VMW1013/C$
> lookup_mount: lookup(program): /cifs/VMW1013/C$ ->
> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> ://VMW1013/C\$
> parse_mount: parse(sun): expanded entry:
> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> ://VMW1013/C\$
> parse_mount: parse(sun): gathered options:
> fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> parse_mount: parse(sun): core of entry:
> options=fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker,
> loc=://VMW1013/C\$
> sun_mount: parse(sun): mounting root /tmp/auto3eU6En, mountpoint
> /cifs/VMW1013/C$, what //VMW1013/C\$, fstype cifs, options
> file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> do_mount: //VMW1013/C\$ /cifs/VMW1013/C$ type cifs options
> file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> using module generic
> mount_mount: mount(generic): calling mkdir_path /tmp/auto3eU6En
> mount_mount: mount(generic): calling mount -t cifs -s -o
> file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> //VMW1013/C\$ /tmp/auto3eU6En
>>> retrying with upper case share name
>>> mount error(6): No such device or address
>>> Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)
> mount(generic): failed to mount //VMW1013/C\$ (type cifs) on
> /tmp/auto3eU6En
> dev_ioctl_send_fail: token = 118
> failed to mount /cifs/VMW1013/C$
> handle_packet: type = 5
> handle_packet_missing_direct: token 119, name /cifs/VMW1013/C$,
> request pid 7097
> attempting to mount entry /cifs/VMW1013/C$
> dev_ioctl_send_fail: token = 119
> failed to mount /cifs/VMW1013/C$
> ^Cdo_notify_state: signal 2
> master_notify_state_change: sig 2 switching /misc from 1 to 5
> st_prepare_shutdown: state 1 path /misc
> expire_proc: exp_proc = 3046108016 path /misc
> master_notify_state_change: sig 2 switching /net from 1 to 5
> expire_cleanup: got thid 3046108016 path /misc stat 0
> expire_cleanup: sigchld: exp 3046108016 finished, switching from 5 to
> 7
> st_shutdown: state 5 path /misc
> master_notify_state_change: sig 2 switching /cifs from 1 to 5
> st_prepare_shutdown: state 1 path /cifs
> expire_proc: exp_proc = 3047160688 path /cifs
> handle_packet: type = 4
> handle_packet_expire_indirect: token 120, name VMW1013
> st_prepare_shutdown: state 1 path /net
> expire_proc: exp_proc = 3045055344 path /net
> expiring path /cifs/VMW1013
> umount_multi: path /cifs/VMW1013 incl 1
> expire_cleanup: got thid 3045055344 path /net stat 0
> expire_cleanup: sigchld: exp 3045055344 finished, switching from 5 to
> 7
> st_shutdown: state 5 path /net
> umount_multi_triggers: umount offset /cifs/VMW1013/ADMIN$
> umounted offset mount /cifs/VMW1013/ADMIN$
> umount_multi_triggers: umount offset /cifs/VMW1013/C$
> umounted offset mount /cifs/VMW1013/C$
> umount_multi_triggers: umount offset /cifs/VMW1013/My Documents
> umounted offset mount /cifs/VMW1013/My Documents
> umount_multi_triggers: umount offset /cifs/VMW1013/Shared
> umounted offset mount /cifs/VMW1013/Shared
> cache_delete_offset_list: deleting offset key /cifs/VMW1013/ADMIN$
> cache_delete_offset_list: deleting offset key /cifs/VMW1013/C$
> cache_delete_offset_list: deleting offset key /cifs/VMW1013/My
> Documents
> cache_delete_offset_list: deleting offset key /cifs/VMW1013/Shared
> rm_unwanted_fn: removing directory /cifs/VMW1013
> expired /cifs/VMW1013
> dev_ioctl_send_ready: token = 120
> expire_cleanup: got thid 3047160688 path /cifs stat 0
> expire_cleanup: sigchld: exp 3047160688 finished, switching from 5 to
> 7
> st_shutdown: state 5 path /cifs
> umount_multi: path /misc incl 0
> umounted indirect mount /misc
> automount_path_to_fifo: fifo name /var/run/autofs.fifo-misc
> shut down path /misc
> umount_multi: path /net incl 0
> umounted indirect mount /net
> automount_path_to_fifo: fifo name /var/run/autofs.fifo-net
> shut down path /net
> umount_multi: path /cifs incl 0
> umounted indirect mount /cifs
> automount_path_to_fifo: fifo name /var/run/autofs.fifo-cifs
> shut down path /cifs
> autofs stopped
> [root@FMI2081 tmp]# mkdir TEST
> [root@FMI2081 tmp]# /usr/sbin/automount -f -d
> Starting automounter version 5.0.4-36, master map auto.master
> using kernel protocol version 5.01
> lookup_nss_read_master: reading master files auto.master
> parse_init: parse(sun): init gathered global options: (null)
> lookup_read_master: lookup(file): read entry /misc
> lookup_read_master: lookup(file): read entry /net
> lookup_read_master: lookup(file): read entry /cifs
> lookup_read_master: lookup(file): read entry +auto.master
> lookup_nss_read_master: reading master files auto.master
> parse_init: parse(sun): init gathered global options: (null)
> lookup_nss_read_master: reading master nisplus auto.master
> parse_init: parse(sun): init gathered global options: (null)
> lookup_read_master: lookup(nisplus): couldn't locate nis+ table
> auto.master
> lookup(file): failed to read included master map auto.master
> master_do_mount: mounting /misc
> automount_path_to_fifo: fifo name /var/run/autofs.fifo-misc
> lookup_nss_read_map: reading map file /etc/auto.misc
> parse_init: parse(sun): init gathered global options: (null)
> mounted indirect on /misc with timeout 300, freq 75 seconds
> st_ready: st_ready(): state = 0 path /misc
> master_do_mount: mounting /net
> automount_path_to_fifo: fifo name /var/run/autofs.fifo-net
> lookup_nss_read_map: reading map hosts (null)
> parse_init: parse(sun): init gathered global options: (null)
> mounted indirect on /net with timeout 300, freq 75 seconds
> st_ready: st_ready(): state = 0 path /net
> master_do_mount: mounting /cifs
> automount_path_to_fifo: fifo name /var/run/autofs.fifo-cifs
> lookup_nss_read_map: reading map file /etc/auto.cifs
> parse_init: parse(sun): init gathered global options: (null)
> mounted indirect on /cifs with timeout 60, freq 15 seconds
> st_ready: st_ready(): state = 0 path /cifs
> handle_packet: type = 3
> handle_packet_missing_indirect: token 121, name VMW1013, request pid
> 7097
> attempting to mount entry /cifs/VMW1013
> lookup_mount: lookup(program): looking up VMW1013
> lookup_mount: lookup(program): VMW1013 ->
> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> "/My Documents" "://VMW1013/My Documents" "/ADMIN$"
> "://VMW1013/ADMIN\$" "/C$" "://VMW1013/C\$" "/Shared"
> "://VMW1013/Shared"
> parse_mount: parse(sun): expanded entry:
> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> "/My Documents" "://VMW1013/My Documents" "/ADMIN$"
> "://VMW1013/ADMIN\$" "/C$" "://VMW1013/C\$" "/Shared"
> "://VMW1013/Shared"
> parse_mount: parse(sun): gathered options:
> fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> parse_mount: parse(sun): dequote(""/My Documents"") -> /My Documents
> parse_mapent: parse(sun): gathered options:
> fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> parse_mapent: parse(sun): dequote(""://VMW1013/My Documents"") ->
> ://VMW1013/My Documents
> add_offset_entry: parse(sun): added multi-mount offset /My Documents
> -> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> ://VMW1013/My Documents
> parse_mount: parse(sun): dequote(""/ADMIN$"") -> /ADMIN$
> parse_mapent: parse(sun): gathered options:
> fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> parse_mapent: parse(sun): dequote(""://VMW1013/ADMIN\$"") ->
> ://VMW1013/ADMIN\$
> add_offset_entry: parse(sun): added multi-mount offset /ADMIN$ ->
> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> ://VMW1013/ADMIN\$
> parse_mount: parse(sun): dequote(""/C$"") -> /C$
> parse_mapent: parse(sun): gathered options:
> fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> parse_mapent: parse(sun): dequote(""://VMW1013/C\$"") ->
> ://VMW1013/C\$
> add_offset_entry: parse(sun): added multi-mount offset /C$ ->
> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> ://VMW1013/C\$
> parse_mount: parse(sun): dequote(""/Shared"") -> /Shared
> parse_mapent: parse(sun): gathered options:
> fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> parse_mapent: parse(sun): dequote(""://VMW1013/Shared"") ->
> ://VMW1013/Shared
> add_offset_entry: parse(sun): added multi-mount offset /Shared ->
> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> ://VMW1013/Shared
> mount_multi_triggers: mount offset /cifs/VMW1013/ADMIN$ at
> /cifs/VMW1013
> mount_autofs_offset: calling mount -t autofs -s -o
> fd=21,pgrp=9009,minproto=5,maxproto=5,offset automount
> /cifs/VMW1013/ADMIN$
> mounted offset on /cifs/VMW1013/ADMIN$ with timeout 60, freq 15
> seconds
> mount_autofs_offset: mounted trigger /cifs/VMW1013/ADMIN$ at
> /cifs/VMW1013/ADMIN$
> mount_multi_triggers: mount offset /cifs/VMW1013/C$ at /cifs/VMW1013
> mount_autofs_offset: calling mount -t autofs -s -o
> fd=21,pgrp=9009,minproto=5,maxproto=5,offset automount
> /cifs/VMW1013/C$
> mounted offset on /cifs/VMW1013/C$ with timeout 60, freq 15 seconds
> mount_autofs_offset: mounted trigger /cifs/VMW1013/C$ at
> /cifs/VMW1013/C$
> mount_multi_triggers: mount offset /cifs/VMW1013/My Documents at
> /cifs/VMW1013
> mount_autofs_offset: calling mount -t autofs -s -o
> fd=21,pgrp=9009,minproto=5,maxproto=5,offset automount
> /cifs/VMW1013/My Documents
> mounted offset on /cifs/VMW1013/My Documents with timeout 60, freq 15
> seconds
> mount_autofs_offset: mounted trigger /cifs/VMW1013/My Documents at
> /cifs/VMW1013/My Documents
> mount_multi_triggers: mount offset /cifs/VMW1013/Shared at
> /cifs/VMW1013
> mount_autofs_offset: calling mount -t autofs -s -o
> fd=21,pgrp=9009,minproto=5,maxproto=5,offset automount
> /cifs/VMW1013/Shared
> mounted offset on /cifs/VMW1013/Shared with timeout 60, freq 15
> seconds
> mount_autofs_offset: mounted trigger /cifs/VMW1013/Shared at
> /cifs/VMW1013/Shared
> dev_ioctl_send_ready: token = 121
> mounted /cifs/VMW1013
> handle_packet: type = 5
> handle_packet_missing_direct: token 122, name /cifs/VMW1013/C$,
> request pid 7097
> attempting to mount entry /cifs/VMW1013/C$
> lookup_mount: lookup(program): /cifs/VMW1013/C$ ->
> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> ://VMW1013/C\$
> parse_mount: parse(sun): expanded entry:
> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> ://VMW1013/C\$
> parse_mount: parse(sun): gathered options:
> fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> parse_mount: parse(sun): core of entry:
> options=fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker,
> loc=://VMW1013/C\$
> sun_mount: parse(sun): mounting root /tmp/autoeCe5fB, mountpoint
> /cifs/VMW1013/C$, what //VMW1013/C\$, fstype cifs, options
> file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> do_mount: //VMW1013/C\$ /cifs/VMW1013/C$ type cifs options
> file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> using module generic
> mount_mount: mount(generic): calling mkdir_path /tmp/autoeCe5fB
> mount_mount: mount(generic): calling mount -t cifs -s -o
> file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> //VMW1013/C\$ /tmp/autoeCe5fB
>>> retrying with upper case share name
>>> mount error(6): No such device or address
>>> Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)
> mount(generic): failed to mount //VMW1013/C\$ (type cifs) on
> /tmp/autoeCe5fB
> dev_ioctl_send_fail: token = 122
> failed to mount /cifs/VMW1013/C$
> handle_packet: type = 5
> handle_packet_missing_direct: token 123, name /cifs/VMW1013/C$,
> request pid 7097
> attempting to mount entry /cifs/VMW1013/C$
> dev_ioctl_send_fail: token = 123
> failed to mount /cifs/VMW1013/C$
> ^Cdo_notify_state: signal 2
> master_notify_state_change: sig 2 switching /misc from 1 to 5
> st_prepare_shutdown: state 1 path /misc
> expire_proc: exp_proc = 3047156592 path /misc
> master_notify_state_change: sig 2 switching /net from 1 to 5
> expire_cleanup: got thid 3047156592 path /misc stat 0
> expire_cleanup: sigchld: exp 3047156592 finished, switching from 5 to
> 7
> st_shutdown: state 5 path /misc
> master_notify_state_change: sig 2 switching /cifs from 1 to 5
> st_prepare_shutdown: state 1 path /cifs
> expire_proc: exp_proc = 3048209264 path /cifs
> handle_packet: type = 4
> handle_packet_expire_indirect: token 124, name VMW1013
> st_prepare_shutdown: state 1 path /net
> expire_proc: exp_proc = 3046103920 path /net
> expiring path /cifs/VMW1013
> umount_multi: path /cifs/VMW1013 incl 1
> expire_cleanup: got thid 3046103920 path /net stat 0
> expire_cleanup: sigchld: exp 3046103920 finished, switching from 5 to
> 7
> st_shutdown: state 5 path /net
> umount_multi_triggers: umount offset /cifs/VMW1013/ADMIN$
> umounted offset mount /cifs/VMW1013/ADMIN$
> umount_multi_triggers: umount offset /cifs/VMW1013/C$
> umounted offset mount /cifs/VMW1013/C$
> umount_multi_triggers: umount offset /cifs/VMW1013/My Documents
> umounted offset mount /cifs/VMW1013/My Documents
> umount_multi_triggers: umount offset /cifs/VMW1013/Shared
> umounted offset mount /cifs/VMW1013/Shared
> cache_delete_offset_list: deleting offset key /cifs/VMW1013/ADMIN$
> cache_delete_offset_list: deleting offset key /cifs/VMW1013/C$
> cache_delete_offset_list: deleting offset key /cifs/VMW1013/My
> Documents
> cache_delete_offset_list: deleting offset key /cifs/VMW1013/Shared
> rm_unwanted_fn: removing directory /cifs/VMW1013
> expired /cifs/VMW1013
> dev_ioctl_send_ready: token = 124
> expire_cleanup: got thid 3048209264 path /cifs stat 0
> expire_cleanup: sigchld: exp 3048209264 finished, switching from 5 to
> 7
> st_shutdown: state 5 path /cifs
> umount_multi: path /misc incl 0
> umounted indirect mount /misc
> automount_path_to_fifo: fifo name /var/run/autofs.fifo-misc
> shut down path /misc
> umount_multi: path /net incl 0
> umounted indirect mount /net
> automount_path_to_fifo: fifo name /var/run/autofs.fifo-net
> shut down path /net
> umount_multi: path /cifs incl 0
> umounted indirect mount /cifs
> automount_path_to_fifo: fifo name /var/run/autofs.fifo-cifs
> shut down path /cifs
> autofs stopped
>
> -------------------------automount debug------------------------
>
>
> Where you see the line:
>
> mount_mount: mount(generic): calling mount -t cifs -s -o
> file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> //VMW1013/C\$ /tmp/autoeCe5fB
>
> I think it is not being truthful. :)
>
> Here is the output when I try the command manually:
>
> [tmp]# mkdir autoeCe5fB
> [tmp]# mount -t cifs -s -o
> file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> //VMW1013/C\$ /tmp/autoeCe5fB
> [tmp]# cd autoeCe5fB/
> [autoeCe5fB]# ls
> 5.5.0.0-TIV-TSMBAC-LinuxX86.tar
> 871-ezvpn-nowork.pcap
> 871-ezvpn-problem-public-nowork.pcap
> 871-ezvpn-problem-public-worked.pcap
> acs-01-cert08.cer
> acs-01-certchain08.p7b
> acs-02-cert08.cer
> acs-02-certchain08.p7b
> acs20070925R01.enc
> acs20070925R02.enc
> acs20080117R01.enc
> ....more files...
>
>
> Thoughts?
>
>
> -Jason
>
> _______________________________________________
> autofs mailing list
> autofs@linux.kernel.org
> http://linux.kernel.org/mailman/listinfo/autofs
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: More CIFS $ Share Woes
2009-08-31 4:32 ` Ian Kent
@ 2009-08-31 12:22 ` Jason T. Masker
2009-08-31 19:55 ` Jason T. Masker
0 siblings, 1 reply; 8+ messages in thread
From: Jason T. Masker @ 2009-08-31 12:22 UTC (permalink / raw)
To: Ian Kent; +Cc: autofs
Ian,
Unfortunately, without the double escape, the $ doesn't survive
parse_mount. Here is a debug with the gsub line removed:
Starting automounter version 5.0.4-36, master map auto.master
using kernel protocol version 5.01
lookup_nss_read_master: reading master files auto.master
parse_init: parse(sun): init gathered global options: (null)
lookup_read_master: lookup(file): read entry /misc
lookup_read_master: lookup(file): read entry /net
lookup_read_master: lookup(file): read entry /cifs
lookup_read_master: lookup(file): read entry +auto.master
lookup_nss_read_master: reading master files auto.master
parse_init: parse(sun): init gathered global options: (null)
lookup_nss_read_master: reading master nisplus auto.master
parse_init: parse(sun): init gathered global options: (null)
lookup_read_master: lookup(nisplus): couldn't locate nis+ table auto.master
lookup(file): failed to read included master map auto.master
master_do_mount: mounting /misc
automount_path_to_fifo: fifo name /var/run/autofs.fifo-misc
lookup_nss_read_map: reading map file /etc/auto.misc
parse_init: parse(sun): init gathered global options: (null)
remount_active_mount: trying to re-connect to mount /misc
mounted indirect on /misc with timeout 300, freq 75 seconds
remount_active_mount: re-connected to mount /misc
st_ready: st_ready(): state = 0 path /misc
master_do_mount: mounting /net
automount_path_to_fifo: fifo name /var/run/autofs.fifo-net
lookup_nss_read_map: reading map hosts (null)
parse_init: parse(sun): init gathered global options: (null)
remount_active_mount: trying to re-connect to mount /net
mounted indirect on /net with timeout 300, freq 75 seconds
remount_active_mount: re-connected to mount /net
st_ready: st_ready(): state = 0 path /net
master_do_mount: mounting /cifs
automount_path_to_fifo: fifo name /var/run/autofs.fifo-cifs
lookup_nss_read_map: reading map file /etc/auto.cifs
parse_init: parse(sun): init gathered global options: (null)
remount_active_mount: trying to re-connect to mount /cifs
mounted indirect on /cifs with timeout 60, freq 15 seconds
remount_active_mount: re-connected to mount /cifs
st_ready: st_ready(): state = 0 path /cifs
handle_packet: type = 3
handle_packet_missing_indirect: token 16, name VMW1013, request pid 14020
attempting to mount entry /cifs/VMW1013
lookup_mount: lookup(program): looking up VMW1013
lookup_mount: lookup(program): VMW1013 ->
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
"/My Documents" "://VMW1013/My Documents" "/ADMIN$"
"://VMW1013/ADMIN$" "/C$" "://VMW1013/C$" "/Shared"
"://VMW1013/Shared"
parse_mount: parse(sun): expanded entry:
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
"/My Documents" "://VMW1013/My Documents" "/ADMIN$"
"://VMW1013/ADMIN$" "/C$" "://VMW1013/C$" "/Shared"
"://VMW1013/Shared"
parse_mount: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mount: parse(sun): dequote(""/My Documents"") -> /My Documents
parse_mapent: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mapent: parse(sun): dequote(""://VMW1013/My Documents"") ->
://VMW1013/My Documents
add_offset_entry: parse(sun): added multi-mount offset /My Documents
-> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/My Documents
parse_mount: parse(sun): dequote(""/ADMIN$"") -> /ADMIN$
parse_mapent: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mapent: parse(sun): dequote(""://VMW1013/ADMIN$"") ->
://VMW1013/ADMIN$
add_offset_entry: parse(sun): added multi-mount offset /ADMIN$ ->
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/ADMIN$
parse_mount: parse(sun): dequote(""/C$"") -> /C$
parse_mapent: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mapent: parse(sun): dequote(""://VMW1013/C$"") -> ://VMW1013/C$
add_offset_entry: parse(sun): added multi-mount offset /C$ ->
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/C$
parse_mount: parse(sun): dequote(""/Shared"") -> /Shared
parse_mapent: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mapent: parse(sun): dequote(""://VMW1013/Shared"") ->
://VMW1013/Shared
add_offset_entry: parse(sun): added multi-mount offset /Shared ->
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/Shared
mount_multi_triggers: mount offset /cifs/VMW1013/ADMIN$ at
/cifs/VMW1013
mount_autofs_offset: calling mount -t autofs -s -o
fd=19,pgrp=14313,minproto=5,maxproto=5,offset automount
/cifs/VMW1013/ADMIN$
mounted offset on /cifs/VMW1013/ADMIN$ with timeout 60, freq 15
seconds
mount_autofs_offset: mounted trigger /cifs/VMW1013/ADMIN$ at
/cifs/VMW1013/ADMIN$
mount_multi_triggers: mount offset /cifs/VMW1013/C$ at /cifs/VMW1013
mount_autofs_offset: calling mount -t autofs -s -o
fd=19,pgrp=14313,minproto=5,maxproto=5,offset automount
/cifs/VMW1013/C$
mounted offset on /cifs/VMW1013/C$ with timeout 60, freq 15 seconds
mount_autofs_offset: mounted trigger /cifs/VMW1013/C$ at
/cifs/VMW1013/C$
mount_multi_triggers: mount offset /cifs/VMW1013/My Documents at
/cifs/VMW1013
mount_autofs_offset: calling mount -t autofs -s -o
fd=19,pgrp=14313,minproto=5,maxproto=5,offset automount
/cifs/VMW1013/My Documents
mounted offset on /cifs/VMW1013/My Documents with timeout 60, freq 15
seconds
mount_autofs_offset: mounted trigger /cifs/VMW1013/My Documents at
/cifs/VMW1013/My Documents
mount_multi_triggers: mount offset /cifs/VMW1013/Shared at
/cifs/VMW1013
mount_autofs_offset: calling mount -t autofs -s -o
fd=19,pgrp=14313,minproto=5,maxproto=5,offset automount
/cifs/VMW1013/Shared
mounted offset on /cifs/VMW1013/Shared with timeout 60, freq 15
seconds
mount_autofs_offset: mounted trigger /cifs/VMW1013/Shared at
/cifs/VMW1013/Shared
dev_ioctl_send_ready: token = 16
handle_packet: type = 5
handle_packet_missing_direct: token 17, name /cifs/VMW1013/C$, request
pid 14020
mounted /cifs/VMW1013
attempting to mount entry /cifs/VMW1013/C$
lookup_mount: lookup(program): /cifs/VMW1013/C$ ->
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/C$
parse_mount: parse(sun): expanded entry:
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
://VMW1013/C
parse_mount: parse(sun): gathered options:
fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
parse_mount: parse(sun): core of entry:
options=fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker,
loc=://VMW1013/C
sun_mount: parse(sun): mounting root /tmp/autokYGbOn, mountpoint
/cifs/VMW1013/C$, what //VMW1013/C, fstype cifs, options
file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
do_mount: //VMW1013/C /cifs/VMW1013/C$ type cifs options
file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
using module generic
mount_mount: mount(generic): calling mkdir_path /tmp/autokYGbOn
mount_mount: mount(generic): calling mount -t cifs -s -o
file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
//VMW1013/C /tmp/autokYGbOn
>> retrying with upper case share name
>> mount error(6): No such device or address
>> Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)
mount(generic): failed to mount //VMW1013/C (type cifs) on
/tmp/autokYGbOn
dev_ioctl_send_fail: token = 17
failed to mount /cifs/VMW1013/C$
handle_packet: type = 5
handle_packet_missing_direct: token 18, name /cifs/VMW1013/C$, request
pid 14020
attempting to mount entry /cifs/VMW1013/C$
dev_ioctl_send_fail: token = 18
failed to mount /cifs/VMW1013/C$
^Cdo_notify_state: signal 2
master_notify_state_change: sig 2 switching /misc from 1 to 5
st_prepare_shutdown: state 1 path /misc
expire_proc: exp_proc = 3049257840 path /misc
master_notify_state_change: sig 2 switching /net from 1 to 5
expire_cleanup: got thid 3049257840 path /misc stat 0
expire_cleanup: sigchld: exp 3049257840 finished, switching from 5 to 7
st_shutdown: state 5 path /misc
master_notify_state_change: sig 2 switching /cifs from 1 to 5
st_prepare_shutdown: state 1 path /cifs
expire_proc: exp_proc = 3048205168 path /cifs
handle_packet: type = 4
handle_packet_expire_indirect: token 19, name VMW1013
st_prepare_shutdown: state 1 path /net
expire_proc: exp_proc = 3047152496 path /net
expire_cleanup: got thid 3047152496 path /net stat 0
expire_cleanup: sigchld: exp 3047152496 finished, switching from 5 to 7
st_shutdown: state 5 path /net
expiring path /cifs/VMW1013
umount_multi: path /cifs/VMW1013 incl 1
umount_multi_triggers: umount offset /cifs/VMW1013/ADMIN$
umounted offset mount /cifs/VMW1013/ADMIN$
umount_multi_triggers: umount offset /cifs/VMW1013/C$
umounted offset mount /cifs/VMW1013/C$
umount_multi_triggers: umount offset /cifs/VMW1013/My Documents
umounted offset mount /cifs/VMW1013/My Documents
umount_multi_triggers: umount offset /cifs/VMW1013/Shared
umounted offset mount /cifs/VMW1013/Shared
cache_delete_offset_list: deleting offset key /cifs/VMW1013/ADMIN$
cache_delete_offset_list: deleting offset key /cifs/VMW1013/C$
cache_delete_offset_list: deleting offset key /cifs/VMW1013/My Documents
cache_delete_offset_list: deleting offset key /cifs/VMW1013/Shared
rm_unwanted_fn: removing directory /cifs/VMW1013
expired /cifs/VMW1013
dev_ioctl_send_ready: token = 19
expire_cleanup: got thid 3048205168 path /cifs stat 0
expire_cleanup: sigchld: exp 3048205168 finished, switching from 5 to 7
st_shutdown: state 5 path /cifs
umount_multi: path /misc incl 0
umounted indirect mount /misc
automount_path_to_fifo: fifo name /var/run/autofs.fifo-misc
shut down path /misc
umount_multi: path /net incl 0
umounted indirect mount /net
automount_path_to_fifo: fifo name /var/run/autofs.fifo-net
shut down path /net
umount_multi: path /cifs incl 0
umounted indirect mount /cifs
automount_path_to_fifo: fifo name /var/run/autofs.fifo-cifs
shut down path /cifs
autofs stopped
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: More CIFS $ Share Woes
2009-08-31 12:22 ` Jason T. Masker
@ 2009-08-31 19:55 ` Jason T. Masker
2009-08-31 20:34 ` Jason T. Masker
2009-09-01 2:46 ` Ian Kent
0 siblings, 2 replies; 8+ messages in thread
From: Jason T. Masker @ 2009-08-31 19:55 UTC (permalink / raw)
To: Ian Kent; +Cc: autofs
I also tried changing the print line to the following:
print " \\\n\t \"/" dir "\"", "://" key "/" lo
so that the output looks like this:
$ sudo /etc/auto.cifs VMW1013
-fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
\
"/My Documents" ://VMW1013/My Documents \
"/ADMIN$" ://VMW1013/ADMIN\$ \
"/C$" ://VMW1013/C\$ \
"/Shared" ://VMW1013/Shared
However, this results in automount dropping the $ as well. The debug
looks identical to what I just posted.
Jason
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: More CIFS $ Share Woes
2009-08-31 19:55 ` Jason T. Masker
@ 2009-08-31 20:34 ` Jason T. Masker
2009-09-01 2:46 ` Ian Kent
1 sibling, 0 replies; 8+ messages in thread
From: Jason T. Masker @ 2009-08-31 20:34 UTC (permalink / raw)
To: Ian Kent; +Cc: autofs
I have confirmed that what automount reports it is passing in the
debug output is not actually being passed to mount.cifs. Observe the
following cifs debug when the process fails:
fs/cifs/cifsfs.c: Devname: //VMW1013/C/$ flags: 64
fs/cifs/connect.c: CIFS VFS: in cifs_mount as Xid: 2513 with uid: 0
fs/cifs/connect.c: prefix path /$
fs/cifs/connect.c: Username: jmasker
fs/cifs/connect.c: UNC: \\VMW1013\C ip: 10.0.33.12
fs/cifs/connect.c: Socket created
fs/cifs/connect.c: sndbuf 16384 rcvbuf 87380 rcvtimeo 0x1b58
fs/cifs/connect.c: Existing smb sess not found
fs/cifs/cifssmb.c: secFlags 0x7
fs/cifs/transport.c: For smb_command 114
fs/cifs/transport.c: Sending smb: total_len 82
fs/cifs/connect.c: Demultiplex PID: 23495
fs/cifs/connect.c: rfc1002 length 0x69
fs/cifs/cifssmb.c: Dialect: 2
fs/cifs/cifssmb.c: negprot rc 0
fs/cifs/connect.c: Security Mode: 0x3 Capabilities: 0xe3fd
TimeAdjust: 14400
fs/cifs/sess.c: sess setup type 2
fs/cifs/transport.c: For smb_command 115
fs/cifs/transport.c: Sending smb: total_len 278
fs/cifs/connect.c: rfc1002 length 0x7f
fs/cifs/misc.c: Null buffer passed to cifs_small_buf_release
fs/cifs/sess.c: ssetup rc from sendrecv2 is 0
fs/cifs/sess.c: UID = 2048
fs/cifs/sess.c: bleft 81
fs/cifs/sess.c: words left: 0
fs/cifs/sess.c: ssetup freeing small buf f4d06700
fs/cifs/connect.c: CIFS Session Established successfully
fs/cifs/connect.c: file mode: 0x1a4 dir mode: 0x1ed
fs/cifs/transport.c: For smb_command 117
fs/cifs/transport.c: Sending smb: total_len 78
fs/cifs/connect.c: rfc1002 length 0x27
Status code returned 0xc00000cc NT_STATUS_BAD_NETWORK_NAME
fs/cifs/netmisc.c: Mapping smb error code 67 to POSIX err -6
fs/cifs/connect.c: CIFS Tcon rc = -6
fs/cifs/connect.c: CIFS VFS: in cifs_put_tcon as Xid: 2514 with uid:
0
fs/cifs/cifssmb.c: In tree disconnect
fs/cifs/transport.c: For smb_command 113
fs/cifs/transport.c: Sending smb: total_len 39
fs/cifs/connect.c: rfc1002 length 0x27
fs/cifs/netmisc.c: Mapping smb error code 5 to POSIX err -6
fs/cifs/cifssmb.c: Tree disconnect failed -6
fs/cifs/connect.c: CIFS VFS: in cifs_put_smb_ses as Xid: 2515 with
uid: 0
fs/cifs/cifssmb.c: In SMBLogoff for session disconnect
fs/cifs/transport.c: For smb_command 116
fs/cifs/transport.c: Sending smb: total_len 43
fs/cifs/connect.c: rfc1002 length 0x2b
fs/cifs/connect.c: CIFS VFS: leaving cifs_mount (xid = 2513) rc = -6
CIFS VFS: cifs_mount failed w/return code = -6
Notice the Devname is mangled to //VMW1013/C/$ .. Here is the output
when I copy the mount command out of the automount debug and paste it
into bash verbatim:
fs/cifs/cifsfs.c: Devname: //VMW1013/C$ flags: 64
fs/cifs/connect.c: CIFS VFS: in cifs_mount as Xid: 2516 with uid: 0
fs/cifs/connect.c: Domain name set
fs/cifs/connect.c: Username: jmasker
fs/cifs/connect.c: UNC: \\VMW1013\C$ ip: 10.0.33.12
fs/cifs/connect.c: Socket created
fs/cifs/connect.c: sndbuf 16384 rcvbuf 87380 rcvtimeo 0x1b58
fs/cifs/connect.c: Existing smb sess not found
fs/cifs/cifssmb.c: secFlags 0x7
fs/cifs/transport.c: For smb_command 114
fs/cifs/connect.c: Demultiplex PID: 23551
fs/cifs/transport.c: Sending smb: total_len 82
fs/cifs/connect.c: rfc1002 length 0x69
fs/cifs/cifssmb.c: Dialect: 2
fs/cifs/cifssmb.c: negprot rc 0
fs/cifs/connect.c: Security Mode: 0x3 Capabilities: 0xe3fd
TimeAdjust: 14400
fs/cifs/sess.c: sess setup type 2
fs/cifs/transport.c: For smb_command 115
fs/cifs/transport.c: Sending smb: total_len 284
fs/cifs/connect.c: rfc1002 length 0x7f
fs/cifs/misc.c: Null buffer passed to cifs_small_buf_release
fs/cifs/sess.c: ssetup rc from sendrecv2 is 0
fs/cifs/sess.c: UID = 2048
fs/cifs/sess.c: bleft 81
fs/cifs/sess.c: words left: 0
fs/cifs/sess.c: ssetup freeing small buf de836700
fs/cifs/connect.c: CIFS Session Established successfully
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: More CIFS $ Share Woes
2009-08-31 19:55 ` Jason T. Masker
2009-08-31 20:34 ` Jason T. Masker
@ 2009-09-01 2:46 ` Ian Kent
2009-09-07 7:33 ` Ian Kent
1 sibling, 1 reply; 8+ messages in thread
From: Ian Kent @ 2009-09-01 2:46 UTC (permalink / raw)
To: Jason T. Masker; +Cc: autofs
Jason T. Masker wrote:
> I also tried changing the print line to the following:
>
> print " \\\n\t \"/" dir "\"", "://" key "/" lo
>
>
>
> so that the output looks like this:
>
> $ sudo /etc/auto.cifs VMW1013
> -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> \
> "/My Documents" ://VMW1013/My Documents \
> "/ADMIN$" ://VMW1013/ADMIN\$ \
> "/C$" ://VMW1013/C\$ \
> "/Shared" ://VMW1013/Shared
>
>
> However, this results in automount dropping the $ as well. The debug
> looks identical to what I just posted.
Yes, the location does need to double escape the dollar in the mount.
The double quotes are meant to preserve any spaces present in the
location but the "$" is also used as a macro introducer so it needs to
be escaped a second time so it doesn't get substituted with NULL when
the entry is expanded. What makes this difficult is the "\" is also a
separator and gets translated to "/" by mount.cifs. When you run the
mount from the command line the shell translates the "\$" to "$" before
it gets to mount.cifs.
I think the problem occurs because, when the entry is initially broken
up into mount triggers for each share and each is mounted, expanding the
map entry needs to preserve the "\$", but when the individual triggers
are walked on expanding the entry needs to substitute the "\$" for "$"
so the mount works. The problem being that the expand subroutine doesn't
know the difference between these two invocations.
I'll have a look and see.
Ian
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: More CIFS $ Share Woes
2009-09-01 2:46 ` Ian Kent
@ 2009-09-07 7:33 ` Ian Kent
0 siblings, 0 replies; 8+ messages in thread
From: Ian Kent @ 2009-09-07 7:33 UTC (permalink / raw)
To: Jason T. Masker; +Cc: autofs
On Tue, Sep 01, 2009 at 10:46:25AM +0800, Ian Kent wrote:
> Jason T. Masker wrote:
> > I also tried changing the print line to the following:
> >
> > print " \\\n\t \"/" dir "\"", "://" key "/" lo
> >
> >
> >
> > so that the output looks like this:
> >
> > $ sudo /etc/auto.cifs VMW1013
> > -fstype=cifs,file_mode=0644,dir_mode=0755,uid=jmasker,gid=users,credentials=/etc/auto.smb.jmasker
> > \
> > "/My Documents" ://VMW1013/My Documents \
> > "/ADMIN$" ://VMW1013/ADMIN\$ \
> > "/C$" ://VMW1013/C\$ \
> > "/Shared" ://VMW1013/Shared
> >
> >
> > However, this results in automount dropping the $ as well. The debug
> > looks identical to what I just posted.
>
> Yes, the location does need to double escape the dollar in the mount.
> The double quotes are meant to preserve any spaces present in the
> location but the "$" is also used as a macro introducer so it needs to
> be escaped a second time so it doesn't get substituted with NULL when
> the entry is expanded. What makes this difficult is the "\" is also a
> separator and gets translated to "/" by mount.cifs. When you run the
> mount from the command line the shell translates the "\$" to "$" before
> it gets to mount.cifs.
>
> I think the problem occurs because, when the entry is initially broken
> up into mount triggers for each share and each is mounted, expanding the
> map entry needs to preserve the "\$", but when the individual triggers
> are walked on expanding the entry needs to substitute the "\$" for "$"
> so the mount works. The problem being that the expand subroutine doesn't
> know the difference between these two invocations.
>
> I'll have a look and see.
Does this patch help at all?
Ian
autofs-5.0.5 - special case cifs escapes
From: Ian Kent <raven@themaw.net>
Since "\" is a valid seperator for cifs shares it can't be used to escape
characters in the share name passed to mount.cifs. So we have no choice
but to require that the seperator we use is "/" and de-quote the string
before sending it to mount.cifs.
---
modules/mount_generic.c | 36 ++++++++++++++++++++++++++++++------
1 files changed, 30 insertions(+), 6 deletions(-)
diff --git a/modules/mount_generic.c b/modules/mount_generic.c
index 8edad8b..baa64dd 100644
--- a/modules/mount_generic.c
+++ b/modules/mount_generic.c
@@ -39,6 +39,7 @@ int mount_mount(struct autofs_point *ap, const char *root, const char *name, int
{
char fullpath[PATH_MAX];
char buf[MAX_ERR_BUF];
+ char *loc
int err;
int len, status, existed = 1;
@@ -74,22 +75,44 @@ int mount_mount(struct autofs_point *ap, const char *root, const char *name, int
if (!status)
existed = 0;
+ /*
+ * Special case quoting for cifs share names.
+ *
+ * Since "\" is a valid seperator for cifs shares it can't be
+ * used to escape characters in the share name passed to
+ * mount.cifs. So we have no choice but to require that the
+ * seperator we use is "/" and de-quote the string before
+ * sending it to mount.cifs.
+ */
+ loc = NULL;
+ if (strcmp(fstype, "cifs"))
+ loc = strdup(what);
+ else
+ loc = dequote(what, strlen(what), ap->logopt);
+ if (!loc) {
+ error(ap->logopt,
+ MODPREFIX "failed to alloc buffer for mount location");
+ return 1;
+ }
+
if (options && options[0]) {
debug(ap->logopt,
MODPREFIX "calling mount -t %s " SLOPPY "-o %s %s %s",
- fstype, options, what, fullpath);
+ fstype, options, loc, fullpath);
err = spawn_mount(ap->logopt, "-t", fstype,
- SLOPPYOPT "-o", options, what, fullpath, NULL);
+ SLOPPYOPT "-o", options, loc, fullpath, NULL);
} else {
debug(ap->logopt, MODPREFIX "calling mount -t %s %s %s",
- fstype, what, fullpath);
- err = spawn_mount(ap->logopt, "-t", fstype, what, fullpath, NULL);
+ fstype, loc, fullpath);
+ err = spawn_mount(ap->logopt, "-t", fstype, loc, fullpath, NULL);
}
if (err) {
info(ap->logopt, MODPREFIX "failed to mount %s (type %s) on %s",
- what, fstype, fullpath);
+ loc, fstype, fullpath);
+
+ free(loc);
if (ap->type != LKP_INDIRECT)
return 1;
@@ -100,7 +123,8 @@ int mount_mount(struct autofs_point *ap, const char *root, const char *name, int
return 1;
} else {
info(ap->logopt, MODPREFIX "mounted %s type %s on %s",
- what, fstype, fullpath);
+ loc, fstype, fullpath);
+ free(loc);
return 0;
}
}
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2009-09-07 7:33 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-28 14:09 More CIFS $ Share Woes Jason T. Masker
2009-08-28 14:58 ` Jason T. Masker
2009-08-31 4:32 ` Ian Kent
2009-08-31 12:22 ` Jason T. Masker
2009-08-31 19:55 ` Jason T. Masker
2009-08-31 20:34 ` Jason T. Masker
2009-09-01 2:46 ` Ian Kent
2009-09-07 7:33 ` Ian Kent
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.