Libcurl 挂在 curl_easy_perform 或 curl_multi_perform 从不减少第二个参数
Posted
技术标签:
【中文标题】Libcurl 挂在 curl_easy_perform 或 curl_multi_perform 从不减少第二个参数【英文标题】:Libcurl hangs on curl_easy_perform or curl_multi_perform never decrease second parameter 【发布时间】:2021-09-26 06:18:15 【问题描述】:我有一个问题 - 有一个应用程序 (P) 创建了一个 com 组件 (F) 的实例,它从单独的 dll (U) 进行调用。
P(app)—CoCreateInstance()--->F(com .dll)-----(调用)--->U(MFC extension.dll)------(调用libcurl. dll) 我创建小型测试控制台应用程序
#include "stdafx.h"
#include <iostream>
#include "curl/curl.h"
static std::string readBuffer;
static size_t WriteCallback(void *contents, size_t size, size_t nmemb, void *userp)
size_t realsize = size * nmemb;
readBuffer.append((const char*)contents, realsize);
return realsize;
int blocking_curl()
const std::string endPointUrl = "https://somecoolserver.com/resource";
const std::string urlparam = "param1=pValue1¶m2=pValue2& param3=pValue3 ";
const std::string cookie = "";
const std::string httpHeadAccept = "application/xml";
const std::string httpContentType = "Content-Type: application/x-www-form-urlencoded";
const std::string AuthCertficate = "";
const std::string OAuthToken = "";
CURL *curl = NULL;
CURLcode res = CURLE_FAILED_INIT;
struct curl_slist *headers = NULL;
curl = curl_easy_init();
if(!curl)
return res;
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(curl, CURLOPT_URL, endPointUrl.c_str());
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, urlparam.c_str());
curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "https");
headers = curl_slist_append(headers, httpHeadAccept.c_str());
headers = curl_slist_append(headers, httpContentType.c_str());
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, errbuf);
headers = curl_slist_append(headers, OAuthToken.c_str());
readBuffer.clear();
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, WriteCallback);
if (!cookie.empty())
headers = curl_slist_append(headers, AuthCertficate.c_str());
std::string pCookie = "somestring=";
pCookie += cookie;
curl_easy_setopt(curl, CURLOPT_COOKIE, pCookie.c_str());
else
headers = curl_slist_append(headers, OAuthToken.c_str());
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
std::cout << "Response: " << readBuffer.c_str() << std::endl;
return res;
int _tmain(int argc, _TCHAR* argv[])
blocking_curl();
return 0;
这段代码运行良好,我在 readBuffer 中得到了我期望的确切结果。 但是,如果我直接将此代码复制到我的 U dll 中(更准确地说,在被调用函数中替换这样的代码),则此代码会挂在 curl_easy_perform 上。 libcurl 7.54.0 版本。我在调试器中看到所有正确的流程和调用堆栈——但在 U dll 中它挂在 curl_easy_perform 上。我什至不知道这怎么可能!在调试器中,我看到 libcurl.dll 已加载并且版本(7.54.0)是正确的。所有参数都是硬编码的(url、url 参数等),但在一种情况下它可以工作,而在另一种情况下则不行!此外,我创建了另一个具有多接口的功能,但它也不起作用。 我有两个想法:
-
com 组件加载 U dll 和 U dll 尝试从系统某处加载 libcurl.dll。我通过文件系统搜索显示系统中有多个版本的 libcurl.dll。一个用于 MacAfee 防病毒软件,一个用于 Microsoft Office。但是,如果我在 curl_easy_perform 之前调用 curl_version(),我会看到正确的版本。我不能 100% 确定它是正确的,因为这个字符串可能会在编译时得到,但实际上它会加载其他版本的 libcurl。
Com 组件可能有不同的地址空间,U dll 实际上找不到库。我也认为这是正确的,因为所有其他调用都是正确的,包括 curl_init..
但还有什么?!如果有人有任何想法,请分享。
【问题讨论】:
什么是errbuf
?
请忽略 - 我只是忘记删除这一行。
【参考方案1】:
该问题是在 dll F(COM 组件)的 InitInstance 方法中使用 libcurl 代码调用 dll (U) 函数的结果。将所有 libcurl 例程移至其他工作方法后,一切正常。
【讨论】:
以上是关于Libcurl 挂在 curl_easy_perform 或 curl_multi_perform 从不减少第二个参数的主要内容,如果未能解决你的问题,请参考以下文章