line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Protocol::DBus::Authn::Mechanism::EXTERNAL; |
2
|
|
|
|
|
|
|
|
3
|
5
|
|
|
5
|
|
92583
|
use strict; |
|
5
|
|
|
|
|
11
|
|
|
5
|
|
|
|
|
141
|
|
4
|
5
|
|
|
5
|
|
25
|
use warnings; |
|
5
|
|
|
|
|
14
|
|
|
5
|
|
|
|
|
126
|
|
5
|
|
|
|
|
|
|
|
6
|
5
|
|
|
5
|
|
26
|
use parent 'Protocol::DBus::Authn::Mechanism'; |
|
5
|
|
|
|
|
10
|
|
|
5
|
|
|
|
|
25
|
|
7
|
|
|
|
|
|
|
|
8
|
5
|
|
|
5
|
|
582
|
use Protocol::DBus::Socket (); |
|
5
|
|
|
|
|
15
|
|
|
5
|
|
|
|
|
2034
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
# The methods of user credential retrieval that the reference D-Bus |
11
|
|
|
|
|
|
|
# server relies on prefer “out-of-band” methods like SO_PEERCRED |
12
|
|
|
|
|
|
|
# on Linux rather than SCM_CREDS. (See See dbus/dbus-sysdeps-unix.c.) |
13
|
|
|
|
|
|
|
# So for some OSes it’s just not necessary to do anything special to |
14
|
|
|
|
|
|
|
# send credentials. |
15
|
|
|
|
|
|
|
# |
16
|
|
|
|
|
|
|
# This list is exposed for the sake of tests. |
17
|
|
|
|
|
|
|
# |
18
|
|
|
|
|
|
|
our @_OS_NO_MSGHDR_LIST = ( |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
# Reference server doesn’t need our help: |
21
|
|
|
|
|
|
|
'linux', |
22
|
|
|
|
|
|
|
'netbsd', # via LOCAL_PEEREID, which dbus calls |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
# MacOS works, though … ?? |
25
|
|
|
|
|
|
|
'darwin', |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
# 'openbsd', ??? Still trying to test. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
# No way to pass credentials via UNIX socket, |
30
|
|
|
|
|
|
|
# so let’s just send EXTERNAL and see what happens. |
31
|
|
|
|
|
|
|
# It’ll likely just fail over to DBUS_COOKIE_SHA1. |
32
|
|
|
|
|
|
|
'cygwin', |
33
|
|
|
|
|
|
|
'mswin32', |
34
|
|
|
|
|
|
|
); |
35
|
|
|
|
|
|
|
|
36
|
1
|
|
|
1
|
0
|
66
|
sub INITIAL_RESPONSE { unpack 'H*', $> } |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
# The reference server implementation does a number of things to try to |
39
|
|
|
|
|
|
|
# fetch the peer credentials. . |
40
|
|
|
|
|
|
|
sub must_send_initial { |
41
|
6
|
|
|
6
|
0
|
27
|
my ($self) = @_; |
42
|
|
|
|
|
|
|
|
43
|
6
|
100
|
|
|
|
50
|
if (!defined $self->{'_must_send_initial'}) { |
44
|
|
|
|
|
|
|
|
45
|
5
|
|
|
|
|
19
|
my $can_skip_msghdr = grep { $_ eq $^O } @_OS_NO_MSGHDR_LIST; |
|
25
|
|
|
|
|
70
|
|
46
|
|
|
|
|
|
|
|
47
|
5
|
|
33
|
|
|
19
|
$can_skip_msghdr ||= eval { my $v = Socket::SO_PEERCRED(); 1 }; |
|
0
|
|
|
|
|
0
|
|
|
0
|
|
|
|
|
0
|
|
48
|
5
|
|
33
|
|
|
23
|
$can_skip_msghdr ||= eval { my $v = Socket::LOCAL_PEEREID(); 1 }; |
|
0
|
|
|
|
|
0
|
|
|
0
|
|
|
|
|
0
|
|
49
|
|
|
|
|
|
|
|
50
|
5
|
50
|
|
|
|
18
|
if (!$can_skip_msghdr) { |
51
|
0
|
|
|
|
|
0
|
my $ok = eval { |
52
|
0
|
|
|
|
|
0
|
require Socket::MsgHdr; |
53
|
0
|
|
|
|
|
0
|
Socket::MsgHdr->VERSION(0.05); |
54
|
|
|
|
|
|
|
}; |
55
|
|
|
|
|
|
|
|
56
|
0
|
0
|
|
|
|
0
|
if (!$ok) { |
57
|
0
|
|
|
|
|
0
|
$self->{'_failed_socket_msghdr'} = $@; |
58
|
0
|
|
|
|
|
0
|
$can_skip_msghdr = 1; |
59
|
|
|
|
|
|
|
} |
60
|
|
|
|
|
|
|
} |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
# As of this writing it seems FreeBSD and DragonflyBSD do require |
63
|
|
|
|
|
|
|
# Socket::MsgHdr, even though they both have LOCAL_PEERCRED which |
64
|
|
|
|
|
|
|
# should take care of that. |
65
|
5
|
|
|
|
|
19
|
$self->{'_must_send_initial'} = !$can_skip_msghdr; |
66
|
|
|
|
|
|
|
} |
67
|
|
|
|
|
|
|
|
68
|
6
|
|
|
|
|
31
|
return $self->{'_must_send_initial'}; |
69
|
|
|
|
|
|
|
} |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
sub on_rejected { |
72
|
0
|
|
|
0
|
0
|
|
my ($self) = @_; |
73
|
|
|
|
|
|
|
|
74
|
0
|
0
|
|
|
|
|
if ($self->{'_failed_socket_msghdr'}) { |
75
|
0
|
|
|
|
|
|
warn "EXTERNAL authentication failed. Socket::MsgHdr failed to load earlier; maybe making it available would fix this? (Load failure was: $self->{'_failed_socket_msghdr'})"; |
76
|
|
|
|
|
|
|
} |
77
|
|
|
|
|
|
|
|
78
|
0
|
|
|
|
|
|
return; |
79
|
|
|
|
|
|
|
} |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
sub send_initial { |
82
|
0
|
|
|
0
|
0
|
|
my ($self, $s) = @_; |
83
|
|
|
|
|
|
|
|
84
|
0
|
|
|
|
|
|
my $msg = Socket::MsgHdr->new( buf => "\0" ); |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
# The kernel should fill in the payload. |
87
|
0
|
|
|
|
|
|
$msg->cmsghdr( Socket::SOL_SOCKET(), Socket::SCM_CREDS(), "\0" x 64 ); |
88
|
|
|
|
|
|
|
|
89
|
0
|
|
|
|
|
|
local $!; |
90
|
0
|
|
|
|
|
|
my $ok = Protocol::DBus::Socket::sendmsg_nosignal($s, $msg, 0); |
91
|
|
|
|
|
|
|
|
92
|
0
|
0
|
0
|
|
|
|
if (!$ok && !$!{'EAGAIN'}) { |
93
|
0
|
|
|
|
|
|
die "sendmsg($s): $!"; |
94
|
|
|
|
|
|
|
} |
95
|
|
|
|
|
|
|
|
96
|
0
|
|
|
|
|
|
return $ok; |
97
|
|
|
|
|
|
|
} |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
1; |