[
https://issues.apache.org/jira/browse/TS-268?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12848483#action_12848483
]
Steve Jiang commented on TS-268:
--------------------------------
ink_bvsprintf calls va_arg without calling va_copy or va_start. It looks like
on 32-bit it doesn't matter, but on 64-bit it is not idempotent.
> Crash when remap plugin tries to send a redirect response.
> ----------------------------------------------------------
>
> Key: TS-268
> URL: https://issues.apache.org/jira/browse/TS-268
> Project: Traffic Server
> Issue Type: Bug
> Reporter: Leif Hedstrom
> Priority: Critical
> Fix For: 2.0.0
>
> Attachments: TS-268.trace
>
>
> This remap API plugin will crash, when it tries to build the response body:
> int
> tsremap_remap(ihandle ih, rhandle rh, REMAP_REQUEST_INFO *rri)
> {
> const char* url = "http://www.google.com/";
> INKHttpTxnSetHttpRetStatus((INKHttpTxn)rh, (INKHttpStatus)302);
> rri->redirect_url_size = strlen(url);
> memcpy(rri->redirect_url, url, rri->redirect_url_size);
> return 1;
> }
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.