Skip to content

Multiline string bodies for multipart form data produce errors on some servers due to unix line ending between body parts #3806

Open
@GGoetzelmann

Description

@GGoetzelmann

What is the current bug behavior?

Hurl file with multiline string payload is causing errors due to newline

Depending on the OS hurl creates a curl command such as this:

curl --header 'Content-Type: multipart/form-data; boundary=boundary' --data $'--boundary\nContent-Disposition: form-data; name="record"; filename="blob"\nContent-Type: application/json\n\n{"id":"0"}\n--boundary\nContent-Disposition: form-data; name="document"; filename="blob"\nContent-Type: application/json\n\n{"some":"json"}\n--boundary--\n' 'http://localhost:8888'

This, however, seems to be rejected with an error (such as MalformedStreamException: Stream ended unexpectedly) by some servers (such as applications based on SpringBoot and Tomcat) due to unexpected line endings.

To me it looks like the produced curl command may not be compliant to RFC 9110:

8.3.3. Multipart Types
MIME provides for a number of "multipart" types -- encapsulations of one or more representations within a single message body. All multipart types share a common syntax, as defined in Section 5.1.1 of [RFC2046], and include a boundary parameter as part of the media type value.
The message body is itself a protocol element; a sender MUST generate only CRLF to represent line breaks between body parts.

Steps to reproduce

  • use hurl on an OS with Unix line endings
  • use a hurl file like this sample file
  • use it against a SpringBoot/Tomcat based server such as this example (I have not ties to this project, it just popped up as an easy to use dockerized minimal example of a spring boot app. I know it is quite old, but the problem occurs for me on modern spring boot systems as well, I just don't have one handy for you.)

By the way the exact same thing can be reproduced with the documentation example about multiline string body (once you remove the "" around boundary from the sample, otherwise it will fail anyway on the mentioned systems).

What is the expected correct behavior?

Produce a curl with crlf line endings to make sure that libs such as those in tomcat core can split the parts correctly - I guess? Maybe I am misunderstanding something here completely, because this would be the first time for me that using CRLF would solve, not cause problems.

Execution context

The problem does NOT occur with hurl on windows (due to obvious reasons)

The problem does NOT occur if you convert the hurl file with "unix2dos" command first on unix based systems before executing it.

  • Hurl Version (hurl --version): 6.0.0

Possible fixes

I was not able to manually adapt the hurl file so that I may include correct line endings in the string myself - pointers would be appreciated. Maybe it can simply be solved with correct input - if so, this may be a topic for documentation.

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions