From 0f0dabdcf46d6650addfc854a39eecfb49189c7f Mon Sep 17 00:00:00 2001 From: TingPing Date: Sun, 12 Jan 2014 07:10:26 -0500 Subject: Support numeric 908 --- src/common/inbound.c | 49 +++++++++++++++++++++++++++++-------------------- src/common/proto-irc.c | 3 +++ 2 files changed, 32 insertions(+), 20 deletions(-) (limited to 'src/common') diff --git a/src/common/inbound.c b/src/common/inbound.c index a157a347..d1c5b51a 100644 --- a/src/common/inbound.c +++ b/src/common/inbound.c @@ -1829,34 +1829,44 @@ static const char *sasl_mechanisms[] = "EXTERNAL" }; +void +inbound_sasl_supportedmechs (server *serv, char *list) +{ + int i; + + if (serv->sasl_mech != MECH_EXTERNAL) + { + /* Use most secure one supported */ + for (i = MECH_AES; i >= MECH_PLAIN; i--) + { + if (strstr (list, sasl_mechanisms[i]) != NULL) + { + serv->sasl_mech = i; + serv->retry_sasl = TRUE; + tcp_sendf (serv, "AUTHENTICATE %s\r\n", sasl_mechanisms[i]); + return; + } + } + } + + /* Abort, none supported */ + serv->sent_saslauth = TRUE; + tcp_sendf (serv, "AUTHENTICATE *\r\n"); + return; +} + void inbound_sasl_authenticate (server *serv, char *data) { ircnet *net = (ircnet*)serv->network; char *user, *pass = NULL; const char *mech = sasl_mechanisms[serv->sasl_mech]; - int i; - /* Got a list of supported mechanisms */ + /* Got a list of supported mechanisms from inspircd */ if (strchr (data, ',') != NULL) { - if (serv->sasl_mech == MECH_EXTERNAL) - goto sasl_abort; - - /* Use most secure one supported */ - for (i = MECH_AES; i >= MECH_PLAIN; i--) - { - if (strstr (data, sasl_mechanisms[i]) != NULL) - { - serv->sasl_mech = i; - serv->retry_sasl = TRUE; - tcp_sendf (serv, "AUTHENTICATE %s\r\n", sasl_mechanisms[i]); - return; - } - } - - /* Nothing we support */ - goto sasl_abort; + inbound_sasl_supportedmechs (serv, data); + return; } if (net->user && !(net->flags & FLAG_USE_GLOBAL)) @@ -1882,7 +1892,6 @@ inbound_sasl_authenticate (server *serv, char *data) #endif } -sasl_abort: if (pass == NULL) { /* something went wrong abort */ diff --git a/src/common/proto-irc.c b/src/common/proto-irc.c index 6d7c7fc1..2a4b3361 100644 --- a/src/common/proto-irc.c +++ b/src/common/proto-irc.c @@ -968,6 +968,9 @@ process_numeric (session * sess, int n, tcp_send_len (serv, "CAP END\r\n", 9); } break; + case 908: /* Supported SASL Mechs */ + inbound_sasl_supportedmechs (serv, word_eol[3]+1); + break; default: -- cgit 1.4.1