[ 
https://issues.jenkins-ci.org/browse/JENKINS-13378?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=163636#comment-163636
 ] 

dogfood commented on JENKINS-13378:
-----------------------------------

Integrated in !http://ci.jenkins-ci.org/images/16x16/blue.png! 
[jenkins_ui-changes_branch 
#30|http://ci.jenkins-ci.org/job/jenkins_ui-changes_branch/30/]
     [FIXED JENKINS-13378] Remove XML string writer from IOException2 when 
XPath error occurs. (Revision 668a0cc4dc786dc1b6a726b17db74e9974afa82a)
[JENKINS-13378] Add FINER logging of XML when XPath handling fails. (Revision 
e1a1d3f098d938fb9c4690cd283653a91a496ae6)
[JENKINS-13378] Update changelog.html with fix. (Revision 
752a7c7b8bd357f2962c0b361eef465b1fd1c83f)

     Result = SUCCESS
thomas.vandoren : 
[668a0cc4dc786dc1b6a726b17db74e9974afa82a|https://github.com/jenkinsci/jenkins/commit/668a0cc4dc786dc1b6a726b17db74e9974afa82a]
Files : 
* core/src/main/java/hudson/model/Api.java

thomas.vandoren : 
[e1a1d3f098d938fb9c4690cd283653a91a496ae6|https://github.com/jenkinsci/jenkins/commit/e1a1d3f098d938fb9c4690cd283653a91a496ae6]
Files : 
* core/src/main/java/hudson/model/Api.java

thomas.vandoren : 
[752a7c7b8bd357f2962c0b361eef465b1fd1c83f|https://github.com/jenkinsci/jenkins/commit/752a7c7b8bd357f2962c0b361eef465b1fd1c83f]
Files : 
* changelog.html

                
> XML API Logs Too Much Information When Invalid Char is Present
> --------------------------------------------------------------
>
>                 Key: JENKINS-13378
>                 URL: https://issues.jenkins-ci.org/browse/JENKINS-13378
>             Project: Jenkins
>          Issue Type: Bug
>          Components: core
>    Affects Versions: current
>            Reporter: Thomas Van Doren
>            Assignee: Thomas Van Doren
>              Labels: api, exception, jenkins
>
> When an XPath error occurs when calling the /api/xml API, the entire xml 
> string writer object is included as part of the exception. While this could 
> be useful in some circumstances, it poses a problem when there is a 
> significant amount of xml (i.e. tens or hundreds of megabytes).
> Recently I saw this in my jenkins installation. One of the chrome extensions 
> calls "/api/xml?depth=2&xpath=/*/job/lastBuild&wrapper=hudson" to get 
> information every minute or two. I was seeing 150MB of log data every time 
> that call was made because there was a stack trace followed by:
> Caused by: hudson.util.IOException2: Failed to do XPath/wrapper handling. XML 
> is as 
> follows:<hudson><assignedLabel><busyExecutors>0</busyExecutors><description>...
>  [150MB of xml]</hudson>
>         at hudson.model.Api.doXml(Api.java:142)
>         ... 63 more
> Caused by: org.dom4j.DocumentException: Error on line 2170 of document  : An 
> invalid XML character (Unicode: 0x10) was found in the element content of the 
> document. Nested exception: An invalid XML character (Unicode: 0x10) was 
> found in the element content of the document.
>         at org.dom4j.io.SAXReader.read(SAXReader.java:482)
>         at org.dom4j.io.SAXReader.read(SAXReader.java:365)
>         at hudson.model.Api.doXml(Api.java:100)
>         ... 63 more
> Caused by: org.xml.sax.SAXParseException: An invalid XML character (Unicode: 
> 0x10) was found in the element content of the document.
>         at 
> com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(ErrorHandlerWrapper.java:195)
>         at 
> com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.fatalError(ErrorHandlerWrapper.java:174)
>         at 
> com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:388)
>         at 
> com.sun.org.apache.xerces.internal.impl.XMLScanner.reportFatalError(XMLScanner.java:1414)
>         at 
> com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(XMLDocumentFragmentScannerImpl.java:2894)
>         at 
> com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(XMLDocumentScannerImpl.java:648)
>         at 
> com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(XMLNSDocumentScannerImpl.java:140)
>         at 
> com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:511)
>         at 
> com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:808)
>         at 
> com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:737)
>         at 
> com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:119)
>         at 
> com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1205)
>         at 
> com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(SAXParserImpl.java:522)
>         at org.dom4j.io.SAXReader.read(SAXReader.java:465)
>         ... 65 more
> It didn't take very long for the log file to consume all of the available 
> disk space on the server and thereby halt the jenkins service.
> Clearly there is something wrong with the XML document or XPath requests, but 
> the log file shouldn't cripple my system as a result.
> I marked this as Major because it can halt the jenkins service.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to