refactor: optimize hash table iterations and fix security issues #58
Some checks failed
CI Code / Check coding style (pull_request) Successful in 38s
CI API Docs / Test Python API Documentation Generation (pull_request) Has been cancelled
CI API Docs / Test C API Documentation Generation (pull_request) Has been cancelled
CI Code / Check spelling (pull_request) Successful in 49s
CI Code / Linux (ubuntu) (pull_request) Successful in 6m22s
CI Code / Linux (debian) (pull_request) Successful in 9m3s
CI Code / Code Coverage (pull_request) Successful in 9m16s
CI Code / Linux (arch) (pull_request) Successful in 11m20s
Some checks failed
CI Code / Check coding style (pull_request) Successful in 38s
CI API Docs / Test Python API Documentation Generation (pull_request) Has been cancelled
CI API Docs / Test C API Documentation Generation (pull_request) Has been cancelled
CI Code / Check spelling (pull_request) Successful in 49s
CI Code / Linux (ubuntu) (pull_request) Successful in 6m22s
CI Code / Linux (debian) (pull_request) Successful in 9m3s
CI Code / Code Coverage (pull_request) Successful in 9m16s
CI Code / Linux (arch) (pull_request) Successful in 11m20s
- refactor(core): replace g_hash_table_get_keys with g_hash_table_iter_init
* Eliminates temporary GList allocations
* Improves iteration performance
* Affected: connection.c, cmd_defs.c, cmd_funcs.c, omemo.c, gpg.c,
disco.c, form.c, autocompleters.c, capabilities.c, callbacks.c
- fix(xmpp): correct queued_messages loop in connection.c:1031
* Remove incorrect NULL check that prevented message storage
* calloc zeros array, causing loop to skip immediately
* Fixes dropped messages during reconnection with SM enabled
- fix(ui): prevent format string vulnerabilities in cons_show calls
* Replace cons_show(variable) with cons_show("%s", variable)
* Protects against format string attacks if variables contain %
* Updated instances across cmd_funcs.c, connection.c, ox.c,
console.c, core.c
This commit is contained in:
@@ -2825,16 +2825,15 @@ cmd_search_index_any(char* term)
|
||||
int terms_len = g_strv_length(processed_terms);
|
||||
|
||||
for (int i = 0; i < terms_len; i++) {
|
||||
GList* index_keys = g_hash_table_get_keys(search_index);
|
||||
GList* curr = index_keys;
|
||||
while (curr) {
|
||||
char* index_entry = g_hash_table_lookup(search_index, curr->data);
|
||||
GHashTableIter iter;
|
||||
gpointer key, value;
|
||||
g_hash_table_iter_init(&iter, search_index);
|
||||
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
||||
char* index_entry = (char*)value;
|
||||
if (g_str_match_string(processed_terms[i], index_entry, FALSE)) {
|
||||
results = g_list_append(results, curr->data);
|
||||
results = g_list_append(results, key);
|
||||
}
|
||||
curr = g_list_next(curr);
|
||||
}
|
||||
g_list_free(index_keys);
|
||||
}
|
||||
|
||||
return results;
|
||||
@@ -2848,13 +2847,14 @@ cmd_search_index_all(char* term)
|
||||
auto_gcharv gchar** terms = g_str_tokenize_and_fold(term, NULL, NULL);
|
||||
int terms_len = g_strv_length(terms);
|
||||
|
||||
GList* commands = g_hash_table_get_keys(search_index);
|
||||
GList* curr = commands;
|
||||
while (curr) {
|
||||
char* command = curr->data;
|
||||
GHashTableIter iter;
|
||||
gpointer key, value;
|
||||
g_hash_table_iter_init(&iter, search_index);
|
||||
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
||||
char* command = (char*)key;
|
||||
char* command_index = (char*)value;
|
||||
int matches = 0;
|
||||
for (int i = 0; i < terms_len; i++) {
|
||||
char* command_index = g_hash_table_lookup(search_index, command);
|
||||
if (g_str_match_string(terms[i], command_index, FALSE)) {
|
||||
matches++;
|
||||
}
|
||||
@@ -2862,11 +2862,8 @@ cmd_search_index_all(char* term)
|
||||
if (matches == terms_len) {
|
||||
results = g_list_append(results, command);
|
||||
}
|
||||
curr = g_list_next(curr);
|
||||
}
|
||||
|
||||
g_list_free(commands);
|
||||
|
||||
return results;
|
||||
}
|
||||
|
||||
|
||||
@@ -184,7 +184,7 @@ _string_matches_one_of(const char* what, const char* is, bool is_can_be_null, co
|
||||
}
|
||||
va_end(ap);
|
||||
if (s > 0)
|
||||
cons_show(errmsg);
|
||||
cons_show("%s", errmsg);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
@@ -418,7 +418,7 @@ cmd_connect(ProfWin* window, const char* const command, gchar** args)
|
||||
auto_char char* err_msg = NULL;
|
||||
gboolean res = strtoi_range(port_str, &port, 1, 65535, &err_msg);
|
||||
if (!res) {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
cons_show("");
|
||||
port = 0;
|
||||
options_destroy(options);
|
||||
@@ -711,7 +711,7 @@ _account_set_port(char* account_name, char* port)
|
||||
auto_char char* err_msg = NULL;
|
||||
gboolean res = strtoi_range(port, &porti, 1, 65535, &err_msg);
|
||||
if (!res) {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
cons_show("");
|
||||
} else {
|
||||
accounts_set_port(account_name, porti);
|
||||
@@ -903,7 +903,7 @@ _account_set_max_sessions(char* account_name, char* max_sessions_raw)
|
||||
auto_char char* err_msg = NULL;
|
||||
gboolean res = strtoi_range(max_sessions_raw, &max_sessions, 0, INT_MAX, &err_msg);
|
||||
if (!res) {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
cons_show("");
|
||||
return TRUE;
|
||||
}
|
||||
@@ -924,7 +924,7 @@ _account_set_presence_priority(char* account_name, char* presence, char* priorit
|
||||
auto_char char* err_msg = NULL;
|
||||
gboolean res = strtoi_range(priority, &intval, -128, 127, &err_msg);
|
||||
if (!res) {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@@ -1580,7 +1580,7 @@ _cmd_list_commands(GList* commands)
|
||||
while (curr) {
|
||||
gchar* cmd = curr->data;
|
||||
if (count == 5) {
|
||||
cons_show(cmds->str);
|
||||
cons_show("%s", cmds->str);
|
||||
g_string_free(cmds, TRUE);
|
||||
cmds = g_string_new("");
|
||||
count = 0;
|
||||
@@ -1589,7 +1589,7 @@ _cmd_list_commands(GList* commands)
|
||||
curr = g_list_next(curr);
|
||||
count++;
|
||||
}
|
||||
cons_show(cmds->str);
|
||||
cons_show("%s", cmds->str);
|
||||
g_string_free(cmds, TRUE);
|
||||
g_list_free(curr);
|
||||
|
||||
@@ -2407,7 +2407,7 @@ cmd_roster(ProfWin* window, const char* const command, gchar** args)
|
||||
}
|
||||
return TRUE;
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@@ -2467,7 +2467,7 @@ cmd_roster(ProfWin* window, const char* const command, gchar** args)
|
||||
cons_show("Roster contact indent set to: %d", intval);
|
||||
rosterwin_roster();
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
@@ -2501,7 +2501,7 @@ cmd_roster(ProfWin* window, const char* const command, gchar** args)
|
||||
cons_show("Roster resource indent set to: %d", intval);
|
||||
rosterwin_roster();
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
}
|
||||
}
|
||||
} else if (g_strcmp0(args[1], "join") == 0) {
|
||||
@@ -2527,7 +2527,7 @@ cmd_roster(ProfWin* window, const char* const command, gchar** args)
|
||||
cons_show("Roster presence indent set to: %d", intval);
|
||||
rosterwin_roster();
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
@@ -4371,7 +4371,7 @@ cmd_occupants(ProfWin* window, const char* const command, gchar** args)
|
||||
wins_resize_all();
|
||||
return TRUE;
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
@@ -4391,7 +4391,7 @@ cmd_occupants(ProfWin* window, const char* const command, gchar** args)
|
||||
|
||||
occupantswin_occupants_all();
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
@@ -5836,7 +5836,7 @@ cmd_inpblock(ProfWin* window, const char* const command, gchar** args)
|
||||
prefs_set_inpblock(intval);
|
||||
inp_nonblocking(FALSE);
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
@@ -6063,7 +6063,7 @@ cmd_statusbar(ProfWin* window, const char* const command, gchar** args)
|
||||
ui_resize();
|
||||
return TRUE;
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
cons_bad_cmd_usage(command);
|
||||
return TRUE;
|
||||
}
|
||||
@@ -6094,7 +6094,7 @@ cmd_statusbar(ProfWin* window, const char* const command, gchar** args)
|
||||
ui_resize();
|
||||
return TRUE;
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
cons_bad_cmd_usage(command);
|
||||
return TRUE;
|
||||
}
|
||||
@@ -6254,7 +6254,7 @@ cmd_log(ProfWin* window, const char* const command, gchar** args)
|
||||
prefs_set_max_log_size(intval);
|
||||
cons_show("Log maximum size set to %d bytes", intval);
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
@@ -6304,7 +6304,7 @@ cmd_reconnect(ProfWin* window, const char* const command, gchar** args)
|
||||
cons_show("Reconnect interval set to %d seconds.", intval);
|
||||
}
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
cons_bad_cmd_usage(command);
|
||||
}
|
||||
|
||||
@@ -6330,7 +6330,7 @@ cmd_autoping(ProfWin* window, const char* const command, gchar** args)
|
||||
cons_show("Autoping interval set to %d seconds.", intval);
|
||||
}
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
cons_bad_cmd_usage(command);
|
||||
}
|
||||
|
||||
@@ -6346,7 +6346,7 @@ cmd_autoping(ProfWin* window, const char* const command, gchar** args)
|
||||
cons_show("Autoping timeout set to %d seconds.", intval);
|
||||
}
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
cons_bad_cmd_usage(command);
|
||||
}
|
||||
|
||||
@@ -6416,7 +6416,7 @@ cmd_autoaway(ProfWin* window, const char* const command, gchar** args)
|
||||
cons_show("Auto away time set to: %d minutes.", minutesval);
|
||||
}
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
@@ -6439,7 +6439,7 @@ cmd_autoaway(ProfWin* window, const char* const command, gchar** args)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
@@ -6506,7 +6506,7 @@ cmd_priority(ProfWin* window, const char* const command, gchar** args)
|
||||
cl_ev_presence_send(last_presence, 0);
|
||||
cons_show("Priority set to %d.", intval);
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
@@ -6576,7 +6576,7 @@ cmd_tray(ProfWin* window, const char* const command, gchar** args)
|
||||
tray_set_timer(intval);
|
||||
}
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
@@ -7181,22 +7181,21 @@ cmd_pgp(ProfWin* window, const char* const command, gchar** args)
|
||||
}
|
||||
|
||||
cons_show("PGP keys:");
|
||||
GList* keylist = g_hash_table_get_keys(keys);
|
||||
GList* curr = keylist;
|
||||
while (curr) {
|
||||
ProfPGPKey* key = g_hash_table_lookup(keys, curr->data);
|
||||
cons_show(" %s", key->name);
|
||||
cons_show(" ID : %s", key->id);
|
||||
auto_char char* format_fp = p_gpg_format_fp_str(key->fp);
|
||||
GHashTableIter iter;
|
||||
gpointer key, value;
|
||||
g_hash_table_iter_init(&iter, keys);
|
||||
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
||||
ProfPGPKey* pgp_key = (ProfPGPKey*)value;
|
||||
cons_show(" %s", pgp_key->name);
|
||||
cons_show(" ID : %s", pgp_key->id);
|
||||
auto_char char* format_fp = p_gpg_format_fp_str(pgp_key->fp);
|
||||
cons_show(" Fingerprint : %s", format_fp);
|
||||
if (key->secret) {
|
||||
if (pgp_key->secret) {
|
||||
cons_show(" Type : PUBLIC, PRIVATE");
|
||||
} else {
|
||||
cons_show(" Type : PUBLIC");
|
||||
}
|
||||
curr = g_list_next(curr);
|
||||
}
|
||||
g_list_free(keylist);
|
||||
p_gpg_free_keys(keys);
|
||||
return TRUE;
|
||||
}
|
||||
@@ -7237,25 +7236,24 @@ cmd_pgp(ProfWin* window, const char* const command, gchar** args)
|
||||
return TRUE;
|
||||
}
|
||||
GHashTable* pubkeys = p_gpg_pubkeys();
|
||||
GList* jids = g_hash_table_get_keys(pubkeys);
|
||||
if (!jids) {
|
||||
if (!pubkeys || g_hash_table_size(pubkeys) == 0) {
|
||||
cons_show("No contacts found with PGP public keys assigned.");
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
cons_show("Assigned PGP public keys:");
|
||||
GList* curr = jids;
|
||||
while (curr) {
|
||||
char* jid = curr->data;
|
||||
ProfPGPPubKeyId* pubkeyid = g_hash_table_lookup(pubkeys, jid);
|
||||
GHashTableIter iter;
|
||||
gpointer key, value;
|
||||
g_hash_table_iter_init(&iter, pubkeys);
|
||||
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
||||
char* jid = (char*)key;
|
||||
ProfPGPPubKeyId* pubkeyid = (ProfPGPPubKeyId*)value;
|
||||
if (pubkeyid->received) {
|
||||
cons_show(" %s: %s (received)", jid, pubkeyid->id);
|
||||
} else {
|
||||
cons_show(" %s: %s (stored)", jid, pubkeyid->id);
|
||||
}
|
||||
curr = g_list_next(curr);
|
||||
}
|
||||
g_list_free(jids);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@@ -7468,22 +7466,21 @@ cmd_ox(ProfWin* window, const char* const command, gchar** args)
|
||||
}
|
||||
|
||||
cons_show("OpenPGP keys:");
|
||||
GList* keylist = g_hash_table_get_keys(keys);
|
||||
GList* curr = keylist;
|
||||
while (curr) {
|
||||
ProfPGPKey* key = g_hash_table_lookup(keys, curr->data);
|
||||
cons_show(" %s", key->name);
|
||||
cons_show(" ID : %s", key->id);
|
||||
auto_char char* format_fp = p_gpg_format_fp_str(key->fp);
|
||||
GHashTableIter iter;
|
||||
gpointer key, value;
|
||||
g_hash_table_iter_init(&iter, keys);
|
||||
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
||||
ProfPGPKey* pgp_key = (ProfPGPKey*)value;
|
||||
cons_show(" %s", pgp_key->name);
|
||||
cons_show(" ID : %s", pgp_key->id);
|
||||
auto_char char* format_fp = p_gpg_format_fp_str(pgp_key->fp);
|
||||
cons_show(" Fingerprint : %s", format_fp);
|
||||
if (key->secret) {
|
||||
if (pgp_key->secret) {
|
||||
cons_show(" Type : PUBLIC, PRIVATE");
|
||||
} else {
|
||||
cons_show(" Type : PUBLIC");
|
||||
}
|
||||
curr = g_list_next(curr);
|
||||
}
|
||||
g_list_free(keylist);
|
||||
p_gpg_free_keys(keys);
|
||||
return TRUE;
|
||||
}
|
||||
@@ -7491,8 +7488,8 @@ cmd_ox(ProfWin* window, const char* const command, gchar** args)
|
||||
else if (g_strcmp0(args[0], "contacts") == 0) {
|
||||
GHashTable* keys = ox_gpg_public_keys();
|
||||
cons_show("OpenPGP keys:");
|
||||
GList* keylist = g_hash_table_get_keys(keys);
|
||||
GList* curr = keylist;
|
||||
GHashTableIter iter;
|
||||
gpointer key, value;
|
||||
|
||||
GSList* roster_list = NULL;
|
||||
jabber_conn_status_t conn_status = connection_get_status();
|
||||
@@ -7502,15 +7499,16 @@ cmd_ox(ProfWin* window, const char* const command, gchar** args)
|
||||
roster_list = roster_get_contacts(ROSTER_ORD_NAME);
|
||||
}
|
||||
|
||||
while (curr) {
|
||||
ProfPGPKey* key = g_hash_table_lookup(keys, curr->data);
|
||||
g_hash_table_iter_init(&iter, keys);
|
||||
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
||||
ProfPGPKey* pgp_key = (ProfPGPKey*)value;
|
||||
PContact contact = NULL;
|
||||
if (roster_list) {
|
||||
GSList* curr_c = roster_list;
|
||||
while (!contact && curr_c) {
|
||||
contact = curr_c->data;
|
||||
auto_gchar gchar* xmppuri = g_strdup_printf("xmpp:%s", p_contact_barejid(contact));
|
||||
if (g_strcmp0(key->name, xmppuri)) {
|
||||
if (g_strcmp0(pgp_key->name, xmppuri)) {
|
||||
contact = NULL;
|
||||
}
|
||||
curr_c = g_slist_next(curr_c);
|
||||
@@ -7518,11 +7516,10 @@ cmd_ox(ProfWin* window, const char* const command, gchar** args)
|
||||
}
|
||||
|
||||
if (contact) {
|
||||
cons_show("%s - %s", key->fp, key->name);
|
||||
cons_show("%s - %s", pgp_key->fp, pgp_key->name);
|
||||
} else {
|
||||
cons_show("%s - %s (not in roster)", key->fp, key->name);
|
||||
cons_show("%s - %s (not in roster)", pgp_key->fp, pgp_key->name);
|
||||
}
|
||||
curr = g_list_next(curr);
|
||||
}
|
||||
|
||||
} else if (g_strcmp0(args[0], "start") == 0) {
|
||||
@@ -9612,7 +9609,7 @@ cmd_register(ProfWin* window, const char* const command, gchar** args)
|
||||
auto_char char* err_msg = NULL;
|
||||
gboolean res = strtoi_range(port_str, &port, 1, 65535, &err_msg);
|
||||
if (!res) {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
cons_show("");
|
||||
port = 0;
|
||||
options_destroy(options);
|
||||
@@ -9682,7 +9679,7 @@ cmd_strophe(ProfWin* window, const char* const command, gchar** args)
|
||||
prefs_set_string(PREF_STROPHE_VERBOSITY, args[1]);
|
||||
return TRUE;
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
}
|
||||
} else if (g_strcmp0(args[0], "sm") == 0) {
|
||||
if (g_strcmp0(args[1], "no-resend") == 0) {
|
||||
|
||||
@@ -532,11 +532,13 @@ omemo_set_device_list(const char* const from, GList* device_list)
|
||||
for (device_id = device_list; device_id != NULL; device_id = device_id->next) {
|
||||
GHashTable* known_identities = g_hash_table_lookup(omemo_ctx.known_devices, jid->barejid);
|
||||
if (known_identities) {
|
||||
GList* fp = NULL;
|
||||
for (fp = g_hash_table_get_keys(known_identities); fp != NULL; fp = fp->next) {
|
||||
if (device_id->data == g_hash_table_lookup(known_identities, fp->data)) {
|
||||
cons_show("OMEMO: Adding firstusage trust for %s device %d - Fingerprint %s", jid->barejid, device_id->data, omemo_format_fingerprint(fp->data));
|
||||
omemo_trust(jid->barejid, omemo_format_fingerprint(fp->data));
|
||||
GHashTableIter iter;
|
||||
gpointer key, value;
|
||||
g_hash_table_iter_init(&iter, known_identities);
|
||||
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
||||
if (device_id->data == value) {
|
||||
cons_show("OMEMO: Adding firstusage trust for %s device %d - Fingerprint %s", jid->barejid, device_id->data, omemo_format_fingerprint(key));
|
||||
omemo_trust(jid->barejid, omemo_format_fingerprint(key));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -345,14 +345,13 @@ p_gpg_list_keys(void)
|
||||
|
||||
// TODO: move autocomplete in other place
|
||||
autocomplete_clear(key_ac);
|
||||
GList* ids = g_hash_table_get_keys(result);
|
||||
GList* curr = ids;
|
||||
while (curr) {
|
||||
ProfPGPKey* key = g_hash_table_lookup(result, curr->data);
|
||||
autocomplete_add(key_ac, key->id);
|
||||
curr = curr->next;
|
||||
GHashTableIter iter;
|
||||
gpointer key, value;
|
||||
g_hash_table_iter_init(&iter, result);
|
||||
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
||||
ProfPGPKey* pgp_key = (ProfPGPKey*)value;
|
||||
autocomplete_add(key_ac, pgp_key->id);
|
||||
}
|
||||
g_list_free(ids);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -141,18 +141,16 @@ autocompleters_complete(const char* const input, gboolean previous)
|
||||
while (curr_hash) {
|
||||
GHashTable* key_to_ac = curr_hash->data;
|
||||
|
||||
GList* keys = g_hash_table_get_keys(key_to_ac);
|
||||
GList* curr = keys;
|
||||
while (curr) {
|
||||
result = autocomplete_param_with_ac(input, curr->data, g_hash_table_lookup(key_to_ac, curr->data), TRUE, previous);
|
||||
GHashTableIter iter;
|
||||
gpointer key, value;
|
||||
g_hash_table_iter_init(&iter, key_to_ac);
|
||||
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
||||
result = autocomplete_param_with_ac(input, key, value, TRUE, previous);
|
||||
if (result) {
|
||||
g_list_free(ac_hashes);
|
||||
g_list_free(keys);
|
||||
return result;
|
||||
}
|
||||
curr = g_list_next(curr);
|
||||
}
|
||||
g_list_free(keys);
|
||||
|
||||
curr_hash = g_list_next(curr_hash);
|
||||
}
|
||||
@@ -162,22 +160,19 @@ autocompleters_complete(const char* const input, gboolean previous)
|
||||
curr_hash = filepath_hashes;
|
||||
while (curr_hash) {
|
||||
GHashTable* prefixes_hash = curr_hash->data;
|
||||
GList* prefixes = g_hash_table_get_keys(prefixes_hash);
|
||||
GList* curr_prefix = prefixes;
|
||||
while (curr_prefix) {
|
||||
char* prefix = curr_prefix->data;
|
||||
GHashTableIter iter;
|
||||
gpointer key, value;
|
||||
g_hash_table_iter_init(&iter, prefixes_hash);
|
||||
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
||||
char* prefix = (char*)key;
|
||||
if (g_str_has_prefix(input, prefix)) {
|
||||
result = cmd_ac_complete_filepath(input, prefix, previous);
|
||||
if (result) {
|
||||
g_list_free(filepath_hashes);
|
||||
g_list_free(prefixes);
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
curr_prefix = g_list_next(curr_prefix);
|
||||
}
|
||||
g_list_free(prefixes);
|
||||
|
||||
curr_hash = g_list_next(curr_hash);
|
||||
}
|
||||
|
||||
@@ -149,15 +149,14 @@ callbacks_remove(const char* const plugin_name)
|
||||
{
|
||||
GHashTable* command_hash = g_hash_table_lookup(p_commands, plugin_name);
|
||||
if (command_hash) {
|
||||
GList* commands = g_hash_table_get_keys(command_hash);
|
||||
GList* curr = commands;
|
||||
while (curr) {
|
||||
char* command = curr->data;
|
||||
GHashTableIter iter;
|
||||
gpointer key, value;
|
||||
g_hash_table_iter_init(&iter, command_hash);
|
||||
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
||||
char* command = (char*)key;
|
||||
cmd_ac_remove(command);
|
||||
cmd_ac_remove_help(&command[1]);
|
||||
curr = g_list_next(curr);
|
||||
}
|
||||
g_list_free(commands);
|
||||
}
|
||||
|
||||
g_hash_table_remove(p_commands, plugin_name);
|
||||
@@ -165,13 +164,12 @@ callbacks_remove(const char* const plugin_name)
|
||||
|
||||
GHashTable* tag_to_win_cb_hash = g_hash_table_lookup(p_window_callbacks, plugin_name);
|
||||
if (tag_to_win_cb_hash) {
|
||||
GList* tags = g_hash_table_get_keys(tag_to_win_cb_hash);
|
||||
GList* curr = tags;
|
||||
while (curr) {
|
||||
wins_close_plugin(curr->data);
|
||||
curr = g_list_next(curr);
|
||||
GHashTableIter iter;
|
||||
gpointer key, value;
|
||||
g_hash_table_iter_init(&iter, tag_to_win_cb_hash);
|
||||
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
||||
wins_close_plugin(key);
|
||||
}
|
||||
g_list_free(tags);
|
||||
}
|
||||
|
||||
g_hash_table_remove(p_window_callbacks, plugin_name);
|
||||
|
||||
@@ -107,10 +107,11 @@ disco_remove_features(const char* plugin_name)
|
||||
return;
|
||||
}
|
||||
|
||||
GList* plugin_feature_list = g_hash_table_get_keys(plugin_features_set);
|
||||
GList* curr = plugin_feature_list;
|
||||
while (curr) {
|
||||
char* feature = curr->data;
|
||||
GHashTableIter iter;
|
||||
gpointer key, value;
|
||||
g_hash_table_iter_init(&iter, plugin_features_set);
|
||||
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
||||
char* feature = (char*)key;
|
||||
if (g_hash_table_contains(features, feature)) {
|
||||
void* refcountp = g_hash_table_lookup(features, feature);
|
||||
int refcount = GPOINTER_TO_INT(refcountp);
|
||||
@@ -121,10 +122,7 @@ disco_remove_features(const char* plugin_name)
|
||||
g_hash_table_replace(features, strdup(feature), GINT_TO_POINTER(refcount));
|
||||
}
|
||||
}
|
||||
|
||||
curr = g_list_next(curr);
|
||||
}
|
||||
g_list_free(plugin_feature_list);
|
||||
}
|
||||
|
||||
GList*
|
||||
|
||||
@@ -152,7 +152,7 @@ cons_bad_cmd_usage(const char* const cmd)
|
||||
g_string_printf(msg, "Invalid usage, see '/help %s' for details.", &cmd[1]);
|
||||
|
||||
cons_show("");
|
||||
cons_show(msg->str);
|
||||
cons_show("%s", msg->str);
|
||||
|
||||
g_string_free(msg, TRUE);
|
||||
}
|
||||
@@ -773,7 +773,7 @@ cons_show_disco_info(const char* jid, GSList* identities, GSList* features)
|
||||
if (identity->category) {
|
||||
identity_str = g_string_append(identity_str, identity->category);
|
||||
}
|
||||
cons_show(identity_str->str);
|
||||
cons_show("%s", identity_str->str);
|
||||
g_string_free(identity_str, TRUE);
|
||||
identities = g_slist_next(identities);
|
||||
}
|
||||
@@ -1019,7 +1019,7 @@ cons_show_account(ProfAccount* account)
|
||||
}
|
||||
curr = curr->next;
|
||||
}
|
||||
cons_show(manual->str);
|
||||
cons_show("%s", manual->str);
|
||||
g_string_free(manual, TRUE);
|
||||
}
|
||||
if (g_list_length(account->otr_opportunistic) > 0) {
|
||||
@@ -1032,7 +1032,7 @@ cons_show_account(ProfAccount* account)
|
||||
}
|
||||
curr = curr->next;
|
||||
}
|
||||
cons_show(opportunistic->str);
|
||||
cons_show("%s", opportunistic->str);
|
||||
g_string_free(opportunistic, TRUE);
|
||||
}
|
||||
if (g_list_length(account->otr_always) > 0) {
|
||||
@@ -1045,7 +1045,7 @@ cons_show_account(ProfAccount* account)
|
||||
}
|
||||
curr = curr->next;
|
||||
}
|
||||
cons_show(always->str);
|
||||
cons_show("%s", always->str);
|
||||
g_string_free(always, TRUE);
|
||||
}
|
||||
|
||||
@@ -2297,7 +2297,7 @@ cons_show_themes(GSList* themes)
|
||||
} else {
|
||||
cons_show("Available themes:");
|
||||
while (themes) {
|
||||
cons_show(themes->data);
|
||||
cons_show("%s", themes->data);
|
||||
themes = g_slist_next(themes);
|
||||
}
|
||||
}
|
||||
@@ -2315,7 +2315,7 @@ cons_show_scripts(GSList* scripts)
|
||||
} else {
|
||||
cons_show("Scripts:");
|
||||
while (scripts) {
|
||||
cons_show(scripts->data);
|
||||
cons_show("%s", scripts->data);
|
||||
scripts = g_slist_next(scripts);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -461,7 +461,7 @@ ui_invalid_command_usage(const char* const cmd, void (*setting_func)(void))
|
||||
(*setting_func)();
|
||||
} else {
|
||||
cons_show("");
|
||||
cons_show(msg->str);
|
||||
cons_show("%s", msg->str);
|
||||
ProfWin* current = wins_get_current();
|
||||
if (current->type == WIN_CHAT) {
|
||||
win_println(current, THEME_DEFAULT, "-", "%s", msg->str);
|
||||
|
||||
@@ -171,16 +171,15 @@ caps_get_features(void)
|
||||
{
|
||||
GList* result = NULL;
|
||||
|
||||
GList* features_as_list = g_hash_table_get_keys(prof_features);
|
||||
GList* curr = features_as_list;
|
||||
while (curr) {
|
||||
result = g_list_append(result, strdup(curr->data));
|
||||
curr = g_list_next(curr);
|
||||
GHashTableIter iter;
|
||||
gpointer key, value;
|
||||
g_hash_table_iter_init(&iter, prof_features);
|
||||
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
||||
result = g_list_append(result, strdup((char*)key));
|
||||
}
|
||||
g_list_free(features_as_list);
|
||||
|
||||
GList* plugin_features = plugins_get_disco_features();
|
||||
curr = plugin_features;
|
||||
GList* curr = plugin_features;
|
||||
while (curr) {
|
||||
result = g_list_append(result, strdup(curr->data));
|
||||
curr = g_list_next(curr);
|
||||
|
||||
@@ -148,7 +148,7 @@ connection_init(void)
|
||||
if (string_to_verbosity(v, &verbosity, &err_msg)) {
|
||||
xmpp_ctx_set_verbosity(conn.xmpp_ctx, verbosity);
|
||||
} else {
|
||||
cons_show(err_msg);
|
||||
cons_show("%s", err_msg);
|
||||
}
|
||||
conn.xmpp_conn = xmpp_conn_new(conn.xmpp_ctx);
|
||||
|
||||
@@ -638,22 +638,18 @@ gboolean
|
||||
connection_supports(const char* const feature)
|
||||
{
|
||||
gboolean ret = FALSE;
|
||||
GList* jids = g_hash_table_get_keys(conn.features_by_jid);
|
||||
GHashTableIter iter;
|
||||
gpointer key, value;
|
||||
|
||||
GList* curr = jids;
|
||||
while (curr) {
|
||||
char* jid = curr->data;
|
||||
GHashTable* features = g_hash_table_lookup(conn.features_by_jid, jid);
|
||||
g_hash_table_iter_init(&iter, conn.features_by_jid);
|
||||
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
||||
GHashTable* features = (GHashTable*)value;
|
||||
if (features && g_hash_table_lookup(features, feature)) {
|
||||
ret = TRUE;
|
||||
break;
|
||||
}
|
||||
|
||||
curr = g_list_next(curr);
|
||||
}
|
||||
|
||||
g_list_free(jids);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
@@ -664,22 +660,17 @@ connection_jid_for_feature(const char* const feature)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
GList* jids = g_hash_table_get_keys(conn.features_by_jid);
|
||||
GHashTableIter iter;
|
||||
gpointer key, value;
|
||||
|
||||
GList* curr = jids;
|
||||
while (curr) {
|
||||
char* jid = curr->data;
|
||||
GHashTable* features = g_hash_table_lookup(conn.features_by_jid, jid);
|
||||
g_hash_table_iter_init(&iter, conn.features_by_jid);
|
||||
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
||||
GHashTable* features = (GHashTable*)value;
|
||||
if (features && g_hash_table_lookup(features, feature)) {
|
||||
g_list_free(jids);
|
||||
return jid;
|
||||
return (const char*)key;
|
||||
}
|
||||
|
||||
curr = g_list_next(curr);
|
||||
}
|
||||
|
||||
g_list_free(jids);
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -1034,7 +1025,7 @@ _connection_handler(xmpp_conn_t* const xmpp_conn, const xmpp_conn_event_t status
|
||||
conn.sm_state = xmpp_conn_get_sm_state(conn.xmpp_conn);
|
||||
if (send_queue_len > 0 && prefs_get_boolean(PREF_STROPHE_SM_RESEND)) {
|
||||
conn.queued_messages = calloc(send_queue_len + 1, sizeof(*conn.queued_messages));
|
||||
for (int n = 0; n < send_queue_len && conn.queued_messages[n]; ++n) {
|
||||
for (int n = 0; n < send_queue_len; ++n) {
|
||||
conn.queued_messages[n] = xmpp_conn_send_queue_drop_element(conn.xmpp_conn, XMPP_QUEUE_OLDEST);
|
||||
}
|
||||
} else if (send_queue_len > 0) {
|
||||
@@ -1189,12 +1180,13 @@ connection_debug_print_features()
|
||||
continue;
|
||||
}
|
||||
|
||||
GList* feature_keys = g_hash_table_get_keys(features);
|
||||
for (GList* l = feature_keys; l != NULL; l = l->next) {
|
||||
const char* feature = (const char*)l->data;
|
||||
GHashTableIter feature_iter;
|
||||
gpointer feature_key, feature_value;
|
||||
g_hash_table_iter_init(&feature_iter, features);
|
||||
while (g_hash_table_iter_next(&feature_iter, &feature_key, &feature_value)) {
|
||||
const char* feature = (const char*)feature_key;
|
||||
log_debug("%s:\t%s", jid, feature);
|
||||
}
|
||||
g_list_free(feature_keys);
|
||||
}
|
||||
|
||||
log_debug("=== End of Features ===");
|
||||
|
||||
@@ -437,18 +437,7 @@ form_get_form_type_field(DataForm* form)
|
||||
gboolean
|
||||
form_tag_exists(DataForm* form, const char* const tag)
|
||||
{
|
||||
GList* tags = g_hash_table_get_keys(form->tag_to_var);
|
||||
GList* curr = tags;
|
||||
while (curr) {
|
||||
if (g_strcmp0(curr->data, tag) == 0) {
|
||||
g_list_free(tags);
|
||||
return TRUE;
|
||||
}
|
||||
curr = g_list_next(curr);
|
||||
}
|
||||
|
||||
g_list_free(tags);
|
||||
return FALSE;
|
||||
return g_hash_table_contains(form->tag_to_var, tag);
|
||||
}
|
||||
|
||||
form_field_type_t
|
||||
|
||||
@@ -326,7 +326,7 @@ _ox_metadata_result(xmpp_stanza_t* const stanza, void* const userdata)
|
||||
|
||||
if (fingerprint) {
|
||||
if (strlen(fingerprint) == KEYID_LENGTH) {
|
||||
cons_show(fingerprint);
|
||||
cons_show("%s", fingerprint);
|
||||
} else {
|
||||
cons_show("OX: Wrong char size of public key");
|
||||
log_error("[OX] Wrong chat size of public key %s", fingerprint);
|
||||
|
||||
Reference in New Issue
Block a user