Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cherry-pick #11006 to 7.x: [Winlogbeat] Prevent Winlogbeat from dropping events with invalid XML #11041

Merged
merged 1 commit into from Mar 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.next.asciidoc
Expand Up @@ -214,6 +214,8 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d

*Winlogbeat*

- Prevent Winlogbeat from dropping events with invalid XML. {pull}11006{11006}

*Functionbeat*

- Ensure that functionbeat is logging at info level not debug. {issue}10262[10262]
Expand Down
6 changes: 5 additions & 1 deletion winlogbeat/eventlog/eventlog.go
Expand Up @@ -138,7 +138,11 @@ func (e Record) ToEvent() beat.Event {
addOptional(m, "message", sys.RemoveWindowsLineEndings(e.Message))
// Errors
addOptional(m, "error.code", e.RenderErrorCode)
addOptional(m, "error.message", e.RenderErr)
if len(e.RenderErr) == 1 {
addOptional(m, "error.message", e.RenderErr[0])
} else {
addOptional(m, "error.message", e.RenderErr)
}

addOptional(m, "event.original", e.XML)

Expand Down
2 changes: 1 addition & 1 deletion winlogbeat/eventlog/eventlogging_test.go
Expand Up @@ -267,7 +267,7 @@ func TestFormatMessageWithLargeMessage(t *testing.T) {
assert.Len(t, records, 1)
for _, record := range records {
t.Log(record)
assert.Equal(t, "The data area passed to a system call is too small.", record.RenderErr)
assert.Equal(t, []string{"The data area passed to a system call is too small."}, record.RenderErr)
}
}

Expand Down
19 changes: 8 additions & 11 deletions winlogbeat/eventlog/wineventlog.go
Expand Up @@ -173,13 +173,7 @@ func (l *winEventLog) Read() ([]Record, error) {
continue
}

r, err := l.buildRecordFromXML(l.outputBuf.Bytes(), err)
if err != nil {
logp.Err("%s Dropping event. %v", l.logPrefix, err)
incrementMetric(dropReasons, err)
continue
}

r, _ := l.buildRecordFromXML(l.outputBuf.Bytes(), err)
r.Offset = checkpoint.EventLogState{
Name: l.channelName,
RecordNumber: r.RecordID,
Expand Down Expand Up @@ -230,9 +224,12 @@ func (l *winEventLog) eventHandles(maxRead int) ([]win.EvtHandle, int, error) {
}

func (l *winEventLog) buildRecordFromXML(x []byte, recoveredErr error) (Record, error) {
includeXML := l.config.IncludeXML
e, err := sys.UnmarshalEventXML(x)
if err != nil {
return Record{}, fmt.Errorf("Failed to unmarshal XML='%s'. %v", x, err)
e.RenderErr = append(e.RenderErr, err.Error())
// Add raw XML to event.original when decoding fails
includeXML = true
}

err = sys.PopulateAccount(&e.User)
Expand All @@ -244,9 +241,9 @@ func (l *winEventLog) buildRecordFromXML(x []byte, recoveredErr error) (Record,
if e.RenderErrorCode != 0 {
// Convert the render error code to an error message that can be
// included in the "error.message" field.
e.RenderErr = syscall.Errno(e.RenderErrorCode).Error()
e.RenderErr = append(e.RenderErr, syscall.Errno(e.RenderErrorCode).Error())
} else if recoveredErr != nil {
e.RenderErr = recoveredErr.Error()
e.RenderErr = append(e.RenderErr, recoveredErr.Error())
}

if e.Level == "" {
Expand All @@ -263,7 +260,7 @@ func (l *winEventLog) buildRecordFromXML(x []byte, recoveredErr error) (Record,
Event: e,
}

if l.config.IncludeXML {
if includeXML {
r.XML = string(x)
}

Expand Down
5 changes: 3 additions & 2 deletions winlogbeat/sys/event.go
Expand Up @@ -26,7 +26,8 @@ import (
// UnmarshalEventXML unmarshals the given XML into a new Event.
func UnmarshalEventXML(rawXML []byte) (Event, error) {
var event Event
err := xml.Unmarshal(rawXML, &event)
decoder := xml.NewDecoder(newXMLSafeReader(rawXML))
err := decoder.Decode(&event)
return event, err
}

Expand Down Expand Up @@ -60,7 +61,7 @@ type Event struct {
// ProcessingErrorData
RenderErrorCode uint32 `xml:"ProcessingErrorData>ErrorCode"`
RenderErrorDataItemName string `xml:"ProcessingErrorData>DataItemName"`
RenderErr string
RenderErr []string
}

// Provider identifies the provider that logged the event. The Name and GUID
Expand Down
17 changes: 17 additions & 0 deletions winlogbeat/sys/event_test.go
Expand Up @@ -168,6 +168,23 @@ func TestXML(t *testing.T) {
}
}

func TestInvalidXML(t *testing.T) {
eventXML := fmt.Sprintf(`
<Event>
<UserData>
<Operation_ClientFailure xmlns='http://manifests.microsoft.com/win/2006/windows/WMI'>
<Id>{00000000-0000-0000-0000-000000000000}</Id>
<Message>じゃあ宇宙カウボーイ。。。%s</Message>
</Operation_ClientFailure>
</UserData>
</Event>
`, "\x1b")
_, err := UnmarshalEventXML([]byte(eventXML))
if !assert.NoError(t, err) {
assert.Equal(t, err.Error(), "XML syntax error on line 6: illegal character code U+001B")
}
}

func BenchmarkXMLUnmarshal(b *testing.B) {
for i := 0; i < b.N; i++ {
_, err := UnmarshalEventXML([]byte(allXML))
Expand Down
4 changes: 2 additions & 2 deletions winlogbeat/sys/eventlogging/eventlogging_windows.go
Expand Up @@ -163,7 +163,7 @@ func RenderEvents(
}
// Parse the UTF-16 message insert strings.
if err = insertStrings.Parse(record, recordBuf); err != nil {
event.RenderErr = err.Error()
event.RenderErr = append(event.RenderErr, err.Error())
events = append(events, event)
continue
}
Expand All @@ -176,7 +176,7 @@ func RenderEvents(
event.Message, err = formatMessage(record.sourceName,
record.eventID, lang, insertStrings.Pointer(), buffer, pubHandleProvider)
if err != nil {
event.RenderErr = err.Error()
event.RenderErr = append(event.RenderErr, err.Error())
if errno, ok := err.(syscall.Errno); ok {
event.RenderErrorCode = uint32(errno)
}
Expand Down
78 changes: 78 additions & 0 deletions winlogbeat/sys/xmlreader.go
@@ -0,0 +1,78 @@
// Licensed to Elasticsearch B.V. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Elasticsearch B.V. licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.

package sys

import (
"bytes"
"fmt"
"io"
"unicode"
"unicode/utf8"
)

// The type xmlSafeReader escapes UTF control characters in the io.Reader
// it wraps, so that it can be fed to Go's xml parser.
// Characters for which `unicode.IsControl` returns true will be output as
// an hexadecimal unicode escape sequence "\\uNNNN".
type xmlSafeReader struct {
inner io.Reader
backing [256]byte
buf []byte
code []byte
}

var _ io.Reader = (*xmlSafeReader)(nil)

func output(n int) (int, error) {
if n == 0 {
return 0, io.EOF
}
return n, nil
}

// Read implements the io.Reader interface.
func (r *xmlSafeReader) Read(d []byte) (n int, err error) {
if len(r.code) > 0 {
n = copy(d, r.code)
r.code = r.code[n:]
return output(n)
}
if len(r.buf) == 0 {
n, _ = r.inner.Read(r.backing[:])
r.buf = r.backing[:n]
}
for i := 0; i < len(r.buf); {
code, size := utf8.DecodeRune(r.buf[i:])
if unicode.IsControl(code) {
n = copy(d, r.buf[:i])
r.buf = r.buf[n+1:]
r.code = []byte(fmt.Sprintf("\\u%04x", code))
m := copy(d[n:], r.code)
r.code = r.code[m:]
return output(n + m)
}
i += size
}
n = copy(d, r.buf)
r.buf = r.buf[n:]
return output(n)
}

func newXMLSafeReader(rawXML []byte) io.Reader {
return &xmlSafeReader{inner: bytes.NewReader(rawXML)}
}