Skip to content

Commit 40d1730

Browse files
committed
Support complete pathname patterns in config file.
1 parent d7ada98 commit 40d1730

File tree

1 file changed

+37
-9
lines changed

1 file changed

+37
-9
lines changed

netlib/proxy/socks_local_router.h

+37-9
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ namespace proxy
113113
});
114114
}
115115

116-
if (const auto port = get_proxy_port_udp(process->name); port.has_value())
116+
if (const auto port = get_proxy_port_udp(process); port.has_value())
117117
{
118118
if (udp_redirect_->is_new_endpoint(buffer))
119119
{
@@ -159,7 +159,7 @@ namespace proxy
159159
});
160160
}
161161

162-
if (const auto port = get_proxy_port_tcp(process->name); port.has_value())
162+
if (const auto port = get_proxy_port_tcp(process); port.has_value())
163163
{
164164
if ((tcp_header->th_flags & (TH_SYN | TH_ACK)) == TH_SYN)
165165
{
@@ -525,7 +525,7 @@ namespace proxy
525525

526526
// Associate the given process name to the specified proxy ID.
527527
// If the process_name already exists in the map, its associated proxy ID is updated.
528-
name_to_proxy_[process_name] = proxy_id;
528+
name_to_proxy_[to_upper(process_name)] = proxy_id;
529529

530530
return true; // Return true to indicate the association was successful
531531
}
@@ -595,13 +595,41 @@ namespace proxy
595595
}
596596

597597
private:
598+
/// <summary>
599+
/// Converts std::wstring to upper case
600+
/// </summary>
601+
/// <param name="str">wide char string to convert</param>
602+
/// <returns>resulted wide char string</returns>
603+
static std::wstring to_upper(const std::wstring& str)
604+
{
605+
std::wstring upper_case;
606+
std::ranges::transform(str, std::back_inserter(upper_case), toupper);
607+
return upper_case;
608+
}
609+
/**
610+
* @brief Matches an application name pattern against the process details.
611+
*
612+
* The function checks if the application name pattern includes a path (by looking for "/" or "\\").
613+
* If a path is included in the pattern, the function matches against the process's path_name,
614+
* otherwise it matches against the process's name. The matching is done case-insensitively.
615+
*
616+
* @param app The application name or pattern to check against the process details.
617+
* @param process The process details to check against the application pattern.
618+
* @return true if the process details match the application pattern, false otherwise.
619+
*/
620+
static bool match_app_name(const std::wstring& app, const std::shared_ptr<iphelper::network_process>& process)
621+
{
622+
return (app.find(L'\\') != std::wstring::npos || app.find(L'/') != std::wstring::npos)
623+
? (to_upper(process->path_name).find(app) != std::wstring::npos)
624+
: (to_upper(process->name).find(app) != std::wstring::npos);
625+
}
598626
/**
599627
* Retrieves the TCP proxy port number associated with a given process name.
600-
* @param process_name The name of the process.
628+
* @param process The pointer to network_process.
601629
* @return An std::optional containing the TCP port number if the process name is found,
602630
* or an empty std::optional otherwise.
603631
*/
604-
std::optional<uint16_t> get_proxy_port_tcp(const std::wstring& process_name)
632+
std::optional<uint16_t> get_proxy_port_tcp(const std::shared_ptr<iphelper::network_process>& process)
605633
{
606634
// Locks the proxy servers and process to proxy map for reading.
607635
std::shared_lock lock(lock_);
@@ -610,7 +638,7 @@ namespace proxy
610638
for (auto& [name, proxy_id] : name_to_proxy_)
611639
{
612640
// Check if the current process name contains the given process name.
613-
if (process_name.find(name) != std::wstring::npos)
641+
if (match_app_name(name, process))
614642
// If it does, return the TCP proxy port associated with the proxy ID.
615643
return proxy_servers_[proxy_id].first->proxy_port();
616644
}
@@ -621,11 +649,11 @@ namespace proxy
621649

622650
/**
623651
* Retrieves the UDP proxy port number associated with a given process name.
624-
* @param process_name The name of the process.
652+
* @param process The pointer to network_process.
625653
* @return An std::optional containing the UDP port number if the process name is found,
626654
* or an empty std::optional otherwise.
627655
*/
628-
std::optional<uint16_t> get_proxy_port_udp(const std::wstring& process_name)
656+
std::optional<uint16_t> get_proxy_port_udp(const std::shared_ptr<iphelper::network_process>& process)
629657
{
630658
// Locks the proxy servers and process to proxy map for reading.
631659
std::shared_lock lock(lock_);
@@ -634,7 +662,7 @@ namespace proxy
634662
for (auto& [name, proxy_id] : name_to_proxy_)
635663
{
636664
// Check if the current process name contains the given process name.
637-
if (process_name.find(name) != std::wstring::npos)
665+
if (match_app_name(name, process))
638666
// If it does, return the UDP proxy port associated with the proxy ID.
639667
return proxy_servers_[proxy_id].second->proxy_port();
640668
}

0 commit comments

Comments
 (0)