2022-06-28 22:45:53 +02:00
|
|
|
src/tool_doswin.c | 49 ++++++++++++++++++++++++++++++++++---------------
|
|
|
|
1 file changed, 34 insertions(+), 15 deletions(-)
|
|
|
|
|
2022-06-21 21:42:40 +02:00
|
|
|
diff --git a/src/tool_doswin.c b/src/tool_doswin.c
|
2023-04-04 20:15:38 +02:00
|
|
|
index e9347d2..558d15d 100644
|
2022-06-21 21:42:40 +02:00
|
|
|
--- a/src/tool_doswin.c
|
|
|
|
+++ b/src/tool_doswin.c
|
2022-06-28 22:45:53 +02:00
|
|
|
@@ -614,6 +614,37 @@ char **__crt0_glob_function(char *arg)
|
2021-06-09 19:47:18 +02:00
|
|
|
* HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\SafeProcessSearchMode
|
|
|
|
*/
|
|
|
|
|
2021-06-10 01:45:25 +02:00
|
|
|
+static BOOL check_file_exists(const TCHAR *filename)
|
2021-06-09 19:47:18 +02:00
|
|
|
+{
|
2021-06-10 01:45:25 +02:00
|
|
|
+ const DWORD attr = GetFileAttributes(filename);
|
|
|
|
+ return (attr != INVALID_FILE_ATTRIBUTES) && (!(attr & FILE_ATTRIBUTE_DIRECTORY));
|
2021-06-09 19:47:18 +02:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static char *execpath(const TCHAR *filename)
|
|
|
|
+{
|
|
|
|
+ static const size_t BUFFSIZE = 512;
|
|
|
|
+ TCHAR filebuffer[BUFFSIZE];
|
|
|
|
+ unsigned long len = GetModuleFileName(0, filebuffer, BUFFSIZE);
|
2021-06-10 01:45:25 +02:00
|
|
|
+ if((len > 0) && (len < BUFFSIZE)) {
|
|
|
|
+ TCHAR *lastdirchar = _tcsrchr(filebuffer, TEXT('\\'));
|
2021-06-09 19:47:18 +02:00
|
|
|
+ if(lastdirchar) {
|
2021-06-10 01:45:25 +02:00
|
|
|
+ *lastdirchar = TEXT('\0');
|
2021-06-09 19:47:18 +02:00
|
|
|
+ }
|
2021-06-10 01:45:25 +02:00
|
|
|
+ if (_tcslen(filebuffer) + _tcslen(filename) + 2U < BUFFSIZE) {
|
|
|
|
+ _tcscat(filebuffer, TEXT("\\"));
|
|
|
|
+ _tcscat(filebuffer, filename);
|
|
|
|
+ if (check_file_exists(filebuffer)) {
|
|
|
|
+#ifdef UNICODE
|
|
|
|
+ return curlx_convert_wchar_to_UTF8(filebuffer);
|
|
|
|
+#else
|
|
|
|
+ return strdup(filebuffer);
|
2021-06-09 19:47:18 +02:00
|
|
|
+#endif
|
2021-06-10 01:45:25 +02:00
|
|
|
+ }
|
|
|
|
+ }
|
2021-06-09 19:47:18 +02:00
|
|
|
+ }
|
2021-06-10 01:45:25 +02:00
|
|
|
+ return NULL;
|
2021-06-09 19:47:18 +02:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
CURLcode FindWin32CACert(struct OperationConfig *config,
|
|
|
|
curl_sslbackend backend,
|
|
|
|
const TCHAR *bundle_file)
|
2023-04-04 20:15:38 +02:00
|
|
|
@@ -628,21 +659,9 @@ CURLcode FindWin32CACert(struct OperationConfig *config,
|
|
|
|
*/
|
|
|
|
if(feature_ssl && backend != CURLSSLBACKEND_SCHANNEL) {
|
2021-06-09 19:47:18 +02:00
|
|
|
|
|
|
|
- DWORD res_len;
|
|
|
|
- TCHAR buf[PATH_MAX];
|
|
|
|
- TCHAR *ptr = NULL;
|
|
|
|
-
|
|
|
|
- buf[0] = TEXT('\0');
|
|
|
|
-
|
|
|
|
- res_len = SearchPath(NULL, bundle_file, NULL, PATH_MAX, buf, &ptr);
|
|
|
|
- if(res_len > 0) {
|
2022-06-21 21:42:40 +02:00
|
|
|
- char *mstr = curlx_convert_tchar_to_UTF8(buf);
|
|
|
|
- Curl_safefree(config->cacert);
|
|
|
|
- if(mstr)
|
|
|
|
- config->cacert = strdup(mstr);
|
|
|
|
- curlx_unicodefree(mstr);
|
2021-06-09 19:47:18 +02:00
|
|
|
- if(!config->cacert)
|
|
|
|
- result = CURLE_OUT_OF_MEMORY;
|
2022-06-21 21:42:40 +02:00
|
|
|
+ char *cacert = execpath(bundle_file);
|
|
|
|
+ if (cacert) {
|
2021-06-10 01:45:25 +02:00
|
|
|
+ config->cacert = cacert;
|
2021-06-09 19:47:18 +02:00
|
|
|
}
|
|
|
|
}
|
2023-04-04 20:15:38 +02:00
|
|
|
|