Gary Gregory created LOG4J2-1260:
------------------------------------

             Summary: TlsSyslogFrame calculates message length incorrectly
                 Key: LOG4J2-1260
                 URL: https://issues.apache.org/jira/browse/LOG4J2-1260
             Project: Log4j 2
          Issue Type: Bug
          Components: Layouts
    Affects Versions: 2.5
            Reporter: Gary Gregory


TlsSyslogFrame calculates message length incorrectly.

>From the ML 
>https://www.mail-archive.com/[email protected]/msg15386.html:

{quote}
---------- Forwarded message ----------
From: Blake Day <[email protected]>
Date: Wed, Jan 20, 2016 at 4:58 PM
Subject: TlsSyslogFrame calculates message length incorrectly
To: Log4J Users List <[email protected]>


TlsSyslogFrame appears to be miscalculating the message length.  According to 
RFC5425, the message length must be the octet count of the SYSLOG-MSG in the 
frame.  Though the variable below is aptly named messageLengthInBytes, it is 
assigned the value from message.length() (where message is a String) rather 
than the bytes.

See below for relevant portions of code:

private String message;
private int messageLengthInBytes;

private void setLengthInBytes() {
    messageLengthInBytes = message.length();
}

@Override
public String toString() {
    final String length = Integer.toString(messageLengthInBytes);
    return length + Chars.SPACE + message;
}
{quote}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to