|
1 | 1 | Changes |
2 | 2 | ======= |
| 3 | +v3.5.6 |
| 4 | +- routing_manager_client |
| 5 | + - Forcing the ON_AVAILABLE log and send subscription of requested services even if availability was |
| 6 | + previously known. |
| 7 | + - Remove pending subscription entry right after calling on_subscription from application impl - race |
| 8 | + condition |
| 9 | + - Add missing mutex on request_debounce_timeout_ck and reset request_debounce_timer_running_ if |
| 10 | + requests_to_debounce_ is empty - race condition (issue: missing request) |
| 11 | + - lock registration_state_mutex_ before sending subscribes and unsubscribes - race condition |
| 12 | + - re-request service availability triggers from the routing host when a client loses the connection |
| 13 | + to a service provider |
| 14 | + |
| 15 | +- routing_manager_impl |
| 16 | + - Convert pending_sd_offers_ from vector to set to avoid repeated service entries. |
| 17 | + |
| 18 | +- routing_manager_stub |
| 19 | + - Send a `config_command` to share the _client hostname with the _target application. the |
| 20 | + config_command message is only sent after the routing_info is sent, thereby guaranteeing |
| 21 | + that the routing_info is processed first. |
| 22 | + - Send ADD_CLIENT command to all the client registered, without considering if they are |
| 23 | + requesting services from this client. |
| 24 | + |
| 25 | +- routing_manager_base |
| 26 | + - Added a change to add_known_client so that the order of calling config_command and |
| 27 | + routing_info_command would not matter. This change only has impact when the clients adds itself |
| 28 | + as a known_client and was made to safeguard its hostname. |
| 29 | + |
| 30 | +- endpoints |
| 31 | + - local comunication |
| 32 | + - Force endpoint to perform port assignment when local network interface becomes unavailable. |
| 33 | + - Check on local_tcp_client and local_uds_client if socket is open before sending. |
| 34 | + - Do not call shutdown_and_close_socket if socket state is connecting - race condition |
| 35 | + - A condition variable was implemented on local-tcp_client endpoint to notify the stop process |
| 36 | + to exit the 10ms wait if an EOF is received in receive_cbk, since the queue is cleared in this case. |
| 37 | + - Ensuring the lifetime of message_buffer_ptr on uds. |
| 38 | + - external communication |
| 39 | + - A state machine was created to cascade the stop -> init + start The goal was to ensure that |
| 40 | + the udp_server endpoint waits on both unicast and multicast stop, and after they are both stopped, |
| 41 | + and the flag restarting is set, the init and start can be called. (issue: Bad File Descriptor) |
| 42 | + - Syncronize the join and leave process of udp server multicast sockets. also (issue: in some situations |
| 43 | + after STR, vsomeip will not join the multicast group used by service discovery). |
| 44 | + - leave and join multicast address only starts when network is ready. (issue: join/leave multicast was |
| 45 | + causing CPU load, because this process starts when network is not ready). |
| 46 | + - Remove use of linger-with-timeout in tse, which fixes blocking socket operations |
| 47 | + - Ensure "shutdown_and_close" is called on "stop". |
| 48 | + - local and external communication |
| 49 | + - Endpoints would start every time find_or_create_local would execute, even if endpoint already existed. |
| 50 | + - Fix is_sending_ status |
| 51 | + - Increase mutex_ scope to include was_not_connected flag on connect (issue: REMOTE_ERROR on response) |
| 52 | + - cancel_and_connect_cbk was updated to only report the connection as successfully terminated when |
| 53 | + cancel_and_connect_cbk is called without error. Previously, it was reporting the connection as successfully |
| 54 | + terminated even when there was a connection error, preventing the endpoint from being. |
| 55 | +restarted. |
| 56 | + |
| 57 | +- netlink |
| 58 | + - Removes the interface index when we get a RTM_DELLINK. |
| 59 | + - Added an option to consider the reset of sd_route_set_ when interface goes down. This is enabled by default. |
| 60 | + |
| 61 | +- security |
| 62 | + - For each received response/notification, call is_client_allowed_to_offer to check whether the sending client |
| 63 | + is allowed to offer the service. This is done only for internal TCP communication; for UDS the check is done |
| 64 | + with the bound client. |
| 65 | + |
| 66 | +- service discovery |
| 67 | + - Fix multicast threshold for initial events. |
| 68 | + - Stop find/offer debounce timers when the service discovery is stopped. |
| 69 | + - Added a mecaism on start of SD, to try rejooin the multicast address if any message was received by 1.1s |
| 70 | + (default timer) (issue: in some situations after STR, vsomeip will not join the multicast group used by |
| 71 | + service discovery). |
| 72 | + |
| 73 | +- IO threads |
| 74 | + - To mitigate IO threads exit and stalled threads, a solution in which the io_context object processing is |
| 75 | + ran for determined duration was developed. This feature is disable by default and can be enable by |
| 76 | + configurations. |
| 77 | + |
| 78 | +- configurations |
| 79 | + - Added configuration to enable io thread mitigation. |
| 80 | + - Enable configuration of client-specific debouncing. |
| 81 | + - Allow global configuration of maximum (additional) dispatchers and dispatch time. |
| 82 | + - Unspecify catch exception for boost exceptions. |
| 83 | + - Added configuration to consider the reset of sd_route_set_ when interface goes down. This is enabled by |
| 84 | + default. |
| 85 | + - Enable global configuration of request debounce time. |
| 86 | + - Support multiple IPsec activation files per connection. |
| 87 | + |
| 88 | +- application_impl |
| 89 | + - Fix host assignment with non-local routing: add SO_REUSEADDR to the non-local routing host check |
| 90 | + |
| 91 | +- runtime |
| 92 | + - Remove the get_mutex_ from runtime_impl - This mutex is not needed, as the static initialization of the |
| 93 | + shared_ptr is atomic. (issue: tombstone in application shutdown) |
| 94 | + |
3 | 95 | v3.5.5 |
4 | 96 | - Fix build issue on Ubuntu 24.04 |
5 | 97 | - Fixing change that was introduced on Fix for Find messages commit |
|
0 commit comments