@@ -113,7 +113,7 @@ namespace proxy
113
113
});
114
114
}
115
115
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 ())
117
117
{
118
118
if (udp_redirect_->is_new_endpoint (buffer))
119
119
{
@@ -159,7 +159,7 @@ namespace proxy
159
159
});
160
160
}
161
161
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 ())
163
163
{
164
164
if ((tcp_header->th_flags & (TH_SYN | TH_ACK)) == TH_SYN)
165
165
{
@@ -525,7 +525,7 @@ namespace proxy
525
525
526
526
// Associate the given process name to the specified proxy ID.
527
527
// 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;
529
529
530
530
return true ; // Return true to indicate the association was successful
531
531
}
@@ -595,13 +595,41 @@ namespace proxy
595
595
}
596
596
597
597
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
+ }
598
626
/* *
599
627
* 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 .
601
629
* @return An std::optional containing the TCP port number if the process name is found,
602
630
* or an empty std::optional otherwise.
603
631
*/
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 )
605
633
{
606
634
// Locks the proxy servers and process to proxy map for reading.
607
635
std::shared_lock lock (lock_);
@@ -610,7 +638,7 @@ namespace proxy
610
638
for (auto & [name, proxy_id] : name_to_proxy_)
611
639
{
612
640
// 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) )
614
642
// If it does, return the TCP proxy port associated with the proxy ID.
615
643
return proxy_servers_[proxy_id].first ->proxy_port ();
616
644
}
@@ -621,11 +649,11 @@ namespace proxy
621
649
622
650
/* *
623
651
* 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 .
625
653
* @return An std::optional containing the UDP port number if the process name is found,
626
654
* or an empty std::optional otherwise.
627
655
*/
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 )
629
657
{
630
658
// Locks the proxy servers and process to proxy map for reading.
631
659
std::shared_lock lock (lock_);
@@ -634,7 +662,7 @@ namespace proxy
634
662
for (auto & [name, proxy_id] : name_to_proxy_)
635
663
{
636
664
// 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) )
638
666
// If it does, return the UDP proxy port associated with the proxy ID.
639
667
return proxy_servers_[proxy_id].second ->proxy_port ();
640
668
}
0 commit comments