mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Try to capture some more potential buffer overflows caused by localization
A couple of these could clearly cause a crash just like the one fixed by commit 00865f5a1e1a ("equipment.c: Fix potential buffer overflow in size_data_funct()"). One would append user input to fixed length buffer without checking. We were hardcoding the (correct) max path length in macos.c - replaced by the actual OS constant. But the vast majority are just extremely generous guesses how long localized strings could possibly be. Yes, this commit is likely leaning towards overkill. But we have now been bitten by buffer overflow crashes twice that were caused by localization, so I tried to go through all of the code and identify every possible buffer that could be affected by this. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
93eeb03d67
commit
0129192958
13 changed files with 31 additions and 30 deletions
|
@ -49,11 +49,11 @@ gboolean webservice_request_user_xml(const gchar *user_id,
|
|||
SoupMessage *msg;
|
||||
SoupSession *session;
|
||||
gboolean ret = FALSE;
|
||||
gchar url[80] = {0};
|
||||
gchar url[256] = {0};
|
||||
|
||||
session = soup_session_async_new();
|
||||
strcat(url, "http://api.hohndel.org/api/dive/get/?login=");
|
||||
strcat(url, user_id);
|
||||
strncat(url, user_id, sizeof(url) - strlen(url) - 1);
|
||||
msg = soup_message_new("GET", url);
|
||||
soup_message_headers_append(msg->request_headers, "Accept", "text/xml");
|
||||
soup_session_send_message(session, msg);
|
||||
|
@ -115,7 +115,7 @@ static void download_dialog_connect_cb(GtkWidget *w, gpointer data)
|
|||
guint len, status_connect, status_xml;
|
||||
gchar *xmldata;
|
||||
gboolean ret;
|
||||
gchar err[128] = {0};
|
||||
gchar err[256] = {0};
|
||||
|
||||
gtk_label_set_text(GTK_LABEL(state->status), _("Connecting..."));
|
||||
gtk_widget_set_sensitive(state->apply, FALSE);
|
||||
|
@ -126,7 +126,7 @@ static void download_dialog_connect_cb(GtkWidget *w, gpointer data)
|
|||
if (status_xml != DD_STATUS_OK)
|
||||
ret = FALSE;
|
||||
} else {
|
||||
sprintf(err, "%s %u!", download_dialog_status_text(DD_STATUS_ERROR_CONNECT), status_connect);
|
||||
snprintf(err, sizeof(err), "%s %u!", download_dialog_status_text(DD_STATUS_ERROR_CONNECT), status_connect);
|
||||
gtk_label_set_text(GTK_LABEL(state->status), err);
|
||||
}
|
||||
state->xmldata = xmldata;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue