Skip to content

Commit c5c5ffe

Browse files
committed
sftp: fix segfault regression introduced by curl#4747
This fix adds a defensive check for the case where the char *name in struct libssh2_knownhost is NULL Fixes curl#5041
1 parent 7733667 commit c5c5ffe

File tree

1 file changed

+19
-17
lines changed

1 file changed

+19
-17
lines changed

lib/vssh/libssh2.c

+19-17
Original file line numberDiff line numberDiff line change
@@ -694,25 +694,27 @@ static CURLcode ssh_force_knownhost_key_type(struct connectdata *conn)
694694
while(!libssh2_knownhost_get(sshc->kh, &store, store)) {
695695
/* For non-standard ports, the name will be enclosed in */
696696
/* square brackets, followed by a colon and the port */
697-
if(store->name[0] == '[') {
698-
kh_name_end = strstr(store->name, "]:");
699-
if(!kh_name_end) {
700-
infof(data, "Invalid host pattern %s in %s\n",
701-
store->name, data->set.str[STRING_SSH_KNOWNHOSTS]);
702-
continue;
703-
}
704-
port = atoi(kh_name_end + 2);
705-
if(kh_name_end && (port == conn->remote_port)) {
706-
kh_name_size = strlen(store->name) - 1 - strlen(kh_name_end);
707-
if(strncmp(store->name + 1, conn->host.name, kh_name_size) == 0) {
708-
found = true;
709-
break;
697+
if(store->name){
698+
if(store->name[0] == '[') {
699+
kh_name_end = strstr(store->name, "]:");
700+
if(!kh_name_end) {
701+
infof(data, "Invalid host pattern %s in %s\n",
702+
store->name, data->set.str[STRING_SSH_KNOWNHOSTS]);
703+
continue;
704+
}
705+
port = atoi(kh_name_end + 2);
706+
if(kh_name_end && (port == conn->remote_port)) {
707+
kh_name_size = strlen(store->name) - 1 - strlen(kh_name_end);
708+
if(strncmp(store->name + 1, conn->host.name, kh_name_size) == 0) {
709+
found = true;
710+
break;
711+
}
710712
}
711713
}
712-
}
713-
else if(strcmp(store->name, conn->host.name) == 0) {
714-
found = true;
715-
break;
714+
else if(strcmp(store->name, conn->host.name) == 0) {
715+
found = true;
716+
break;
717+
}
716718
}
717719
}
718720

0 commit comments

Comments
 (0)