1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# The client kills syslogd.
# The client writes a message with sendsyslog2 LOG_CONS flag.
# Find the message in console log.
# Create a ktrace dump of the client and check for sendsyslog2.
# Check that no syslog priority or dropped message is logged to console.
use strict;
use warnings;
use Errno ':POSIX';
use Sys::Syslog 'LOG_CONS';
my $errno = ENOTCONN;
our %args = (
client => {
func => sub {
my $self = shift;
${$self->{syslogd}}->kill_syslogd('TERM');
${$self->{syslogd}}->down();
sendsyslog2("<123>".get_testlog(), LOG_CONS)
and die ref($self), " sendsyslog2 succeeded";
sendsyslog2(get_testlog(), LOG_CONS)
and die ref($self), " sendsyslog2 succeeded";
foreach (qw(< <1 <12 <123 <1234)) {
sendsyslog2($_, LOG_CONS)
and die ref($self), " sendsyslog2 succeeded";
sendsyslog2("$_>", LOG_CONS)
and die ref($self), " sendsyslog2 succeeded";
sendsyslog2("$_>foo", LOG_CONS)
and die ref($self), " sendsyslog2 succeeded";
}
write_shutdown($self);
},
ktrace => {
qr/CALL sendsyslog2\(/ => 18,
qr/GIO fd -1 wrote /.length(get_testlog()).qr/ bytes/ => 2,
qr/RET sendsyslog2 -1 errno $errno / => 18,
},
loggrep => {},
},
syslogd => {
conffile => "/dev/null",
loggrep => {},
},
server => { noserver => 1 },
file => { nocheck => 1 },
pipe => { nocheck => 1 },
user => { nocheck => 1 },
console => {
loggrep => {
get_testgrep() => 2,
qr/<\d+>/ => 0,
qr/dropped \d+ message/ => 0,
},
},
);
1;
|