[lustre-devel] [PATCH 31/40] lnet: remove crash with UDSP
James Simmons <[email protected]> Sun, 9 Apr 2023 08:13:11 -0400
| Newsgroups | org.lustre.lists.lustre-devel |
|---|---|
| Message-ID | <[email protected]> |
From: Cyril Bordage <[email protected]> The following sequence of commands caused a crash: # lnetctl udsp add --dst tcp --prio 1 # lnetctl discover 192.168.122.60@tcp Pointer to lnet_peer_net in udsp_info is checked before used. WC-bug-id: https://jira.whamcloud.com/browse/LU-15944 Lustre-commit: c56b9455f05f760ae ("LU-15944 lnet: remove crash with UDSP") Signed-off-by: Cyril Bordage <[email protected]> Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/48801 Reviewed-by: Chris Horn <[email protected]> Reviewed-by: Serguei Smirnov <[email protected]> Reviewed-by: Frank Sehr <[email protected]> Reviewed-by: Oleg Drokin <[email protected]> Signed-off-by: James Simmons <[email protected]> --- net/lnet/lnet/udsp.c | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/net/lnet/lnet/udsp.c b/net/lnet/lnet/udsp.c index deaca51..eb9a614 100644 --- a/net/lnet/lnet/udsp.c +++ b/net/lnet/lnet/udsp.c @@ -74,13 +74,17 @@ * from the policy list. * * Generally, the syntax is as follows - * lnetctl policy <add | del | show> - * --src: ip2nets syntax specifying the local NID to match - * --dst: ip2nets syntax specifying the remote NID to match - * --rte: ip2nets syntax specifying the router NID to match - * --priority: Priority to apply to rule matches - * --idx: Index of where to insert or delete the rule - * By default add appends to the end of the rule list + * lnetctl udsp add: add a udsp + * --src: ip2nets syntax specifying the local NID to match + * --dst: ip2nets syntax specifying the remote NID to match + * --rte: ip2nets syntax specifying the router NID to match + * --priority: priority value (0 - highest priority) + * --idx: index of where to insert the rule. + * By default, appends to the end of the rule list. + * lnetctl udsp del: delete a udsp + * --idx: index of the Policy. + * lnetctl udsp show: show udsps + * --idx: index of the policy to show. * * Author: Amir Shehata */ @@ -536,7 +540,8 @@ enum udsp_apply { /* check if looking for a net match */ if (!rc && - (lnet_get_list_len(&lp_match->ud_addr_range) || + (!udi->udi_lpn || + lnet_get_list_len(&lp_match->ud_addr_range) || !cfs_match_net(udi->udi_lpn->lpn_net_id, lp_match->ud_net_id.udn_net_type, &lp_match->ud_net_id.udn_net_num_range))) { -- 1.8.3.1 _______________________________________________ lustre-devel mailing list [email protected] http://lists.lustre.org/listinfo.cgi/lustre-devel-lustre.org