summaryrefslogtreecommitdiff
path: root/ext/curl/tests/bug54798-unix.phpt
blob: 5f07b64c6fecc0c350682cf7c617301d074d7b22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
--TEST--
Bug #54798 (Segfault when CURLOPT_STDERR file pointer is closed before calling curl_exec)
--SKIPIF--
<?php
include 'skipif.inc';
if(substr(PHP_OS, 0, 3) == 'WIN' ) {
    die('skip not for Windows');
}
?>
--FILE--
<?php

function checkForClosedFilePointer($host, $curl_option, $description) {
    $fp = fopen(__DIR__ . '/bug54798.tmp', 'w+');

    $ch = curl_init();

    // we also need CURLOPT_VERBOSE to be set to test CURLOPT_STDERR properly
    if (CURLOPT_STDERR == $curl_option) {
        curl_setopt($ch, CURLOPT_VERBOSE, 1);
    }

    if (CURLOPT_INFILE == $curl_option) {
        curl_setopt($ch, CURLOPT_UPLOAD, 1);
    }

    curl_setopt($ch, $curl_option, $fp);

    curl_setopt($ch, CURLOPT_URL, $host);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

    fclose($fp); // <-- premature close of $fp caused a crash!

    curl_exec($ch);

    curl_close($ch);

    echo "Ok for $description\n";
}

$options_to_check = array(
    "CURLOPT_STDERR",
    "CURLOPT_WRITEHEADER",
    "CURLOPT_FILE",
    "CURLOPT_INFILE"
);

include 'server.inc';
$host = curl_cli_server_start();
foreach($options_to_check as $option) {
    checkForClosedFilePointer($host, constant($option), $option);
}

?>
--CLEAN--
<?php @unlink(__DIR__ . '/bug54798.tmp'); ?>
--EXPECTF--
%a
%aOk for CURLOPT_STDERR
%aOk for CURLOPT_WRITEHEADER
%aOk for CURLOPT_FILE
%aOk for CURLOPT_INFILE