1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-05 09:13:14 +02:00

irc: check that the first nick char is not a prefix char or chantype in function irc_nick_is_nick

This commit is contained in:
Sébastien Helleu
2020-06-21 10:22:37 +02:00
parent 4a42cda3a5
commit 5b151d1639
4 changed files with 49 additions and 8 deletions
+12 -3
View File
@@ -72,13 +72,17 @@ irc_nick_valid (struct t_irc_channel *channel, struct t_irc_nick *nick)
int
irc_nick_is_nick (struct t_irc_server *server, const char *string)
{
const char *ptr_string;
const char *ptr_string, *ptr_prefix_chars, *ptr_chantypes;
int utf8mapping;
if (!string || !string[0])
return 0;
utf8mapping = (server) ? server->utf8mapping : IRC_SERVER_UTF8MAPPING_NONE;
ptr_prefix_chars = (server && server->prefix_chars) ?
server->prefix_chars : irc_server_prefix_chars_default;
ptr_chantypes = (server && server->chantypes) ?
server->chantypes : irc_channel_default_chantypes;
/* check length of nick in bytes (if we have a limit in the server) */
if (server && (server->nick_max_length > 0)
@@ -103,18 +107,23 @@ irc_nick_is_nick (struct t_irc_server *server, const char *string)
/* first char is invalid */
return 0;
}
if (strchr (ptr_prefix_chars, string[0])
|| strchr (ptr_chantypes, string[0]))
{
return 0;
}
/* check if there are forbidden chars in nick */
ptr_string = string;
while (ptr_string && ptr_string[0])
{
if ((utf8mapping == IRC_SERVER_UTF8MAPPING_NONE)
&& !strchr (IRC_NICK_VALID_CHARS, ptr_string[0]))
&& !strchr (IRC_NICK_VALID_CHARS_RFC1459, ptr_string[0]))
{
return 0;
}
if ((utf8mapping == IRC_SERVER_UTF8MAPPING_RFC8265)
&& strchr (IRC_NICK_INVALID_CHARS, ptr_string[0]))
&& strchr (IRC_NICK_INVALID_CHARS_RFC8265, ptr_string[0]))
{
return 0;
}
+2 -2
View File
@@ -20,9 +20,9 @@
#ifndef WEECHAT_PLUGIN_IRC_NICK_H
#define WEECHAT_PLUGIN_IRC_NICK_H
#define IRC_NICK_VALID_CHARS "abcdefghijklmnopqrstuvwxyzABCDEFGHI" \
#define IRC_NICK_VALID_CHARS_RFC1459 "abcdefghijklmnopqrstuvwxyzABCDEFGHI" \
"JKLMNOPQRSTUVWXYZ0123456789-[]\\`_^{|}"
#define IRC_NICK_INVALID_CHARS " ,:\n\r*?.!@"
#define IRC_NICK_INVALID_CHARS_RFC8265 " ,:\n\r*?.!@"
/* nicklist group for nicks without prefix is "999|..." */
#define IRC_NICK_GROUP_OTHER_NUMBER 999
+3
View File
@@ -282,6 +282,9 @@ enum t_irc_fingerprint_digest_algo
IRC_FINGERPRINT_NUM_ALGOS,
};
extern char *irc_server_prefix_modes_default;
extern char *irc_server_prefix_chars_default;
extern char *irc_server_chanmodes_default;
extern struct t_irc_server *irc_servers;
extern const int gnutls_cert_type_prio[];
extern const int gnutls_prot_prio[];