]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - modules/m_links.c
Add some ircd-seven love to CREDITS.
[irc/rqf/shadowircd.git] / modules / m_links.c
index 75598a75478065ff625ce6577300923ec56669ee..bc28ad8bc17b22f60be453a76ed757a942091ac9 100644 (file)
@@ -26,7 +26,7 @@
 
 #include "stdinc.h"
 #include "client.h"
-#include "irc_string.h"
+#include "match.h"
 #include "ircd.h"
 #include "numeric.h"
 #include "s_serv.h"
@@ -59,10 +59,8 @@ DECLARE_MODULE_AV1(links, NULL, NULL, links_clist, links_hlist, NULL, "$Revision
 
 /*
  * m_links - LINKS message handler
- *      parv[0] = sender prefix
  *      parv[1] = servername mask
  * or
- *      parv[0] = sender prefix
  *      parv[1] = server to query 
  *      parv[2] = servername mask
  */
@@ -89,6 +87,8 @@ mo_links(struct Client *client_p, struct Client *source_p, int parc, const char
 
        if(parc > 2)
        {
+               if(strlen(parv[2]) > HOSTLEN)
+                       return 0;
                if(hunt_server(client_p, source_p, ":%s LINKS %s :%s", 1, parc, parv)
                   != HUNTED_ISME)
                        return 0;
@@ -140,19 +140,21 @@ clean_string(char *dest, const unsigned char *src, size_t len)
        if(dest == NULL || src == NULL)
                return NULL;
 
-       len -= 3;               /* allow for worst case, '^A\0' */
-
-       while (*src && (len > 0))
+       while (*src && (len > 1))
        {
                if(*src & 0x80) /* if high bit is set */
                {
                        *d++ = '.';
                        --len;
+                       if(len <= 1)
+                               break;
                }
                else if(!IsPrint(*src)) /* if NOT printable */
                {
                        *d++ = '^';
                        --len;
+                       if(len <= 1)
+                               break;
                        *d++ = 0x40 + *src;     /* turn it into a printable */
                }
                else