]> jfr.im git - irc/quakenet/snircd-patchqueue.git/blobdiff - welcome.patch
welcome: check WELCOME_LOCAL flag instead of message number
[irc/quakenet/snircd-patchqueue.git] / welcome.patch
index e1bafc39ffe7b2b7f50bc1665a4cd528a46893b6..5a7e33288c422c5777047879eceeaf83153c5118 100644 (file)
@@ -77,9 +77,9 @@ ircd/ircd_lexer.l
 ircd/ircd_parser.y
 add PRIV_LOCAL_WELCOME PRIV_WELCOME
 
-diff -r 47d03ce52e8e include/client.h
---- a/include/client.h Tue Mar 23 20:10:46 2010 +0100
-+++ b/include/client.h Tue Mar 23 20:11:20 2010 +0100
+diff -r 211f48754a7f include/client.h
+--- a/include/client.h
++++ b/include/client.h
 @@ -142,6 +142,8 @@
      PRIV_USER_PRIVACY,  /* oper can bypass user privacy +x etc gives i.e. see real ip's */
      PRIV_CHANNEL_PRIVACY, /* oper can bypass channel privacy i.e. can see modes on channels they are not on and channel keys */ 
@@ -89,9 +89,9 @@ diff -r 47d03ce52e8e include/client.h
      PRIV_LAST_PRIV /**< number of privileges */
    };
  
-diff -r 47d03ce52e8e include/handlers.h
---- a/include/handlers.h       Tue Mar 23 20:10:46 2010 +0100
-+++ b/include/handlers.h       Tue Mar 23 20:11:20 2010 +0100
+diff -r 211f48754a7f include/handlers.h
+--- a/include/handlers.h
++++ b/include/handlers.h
 @@ -138,6 +138,7 @@
  extern int m_version(struct Client*, struct Client*, int, char*[]);
  extern int m_wallchops(struct Client*, struct Client*, int, char*[]);
@@ -116,9 +116,9 @@ diff -r 47d03ce52e8e include/handlers.h
  extern int ms_whois(struct Client*, struct Client*, int, char*[]);
  extern int ms_xquery(struct Client*, struct Client*, int, char*[]);
  extern int ms_xreply(struct Client*, struct Client*, int, char*[]);
-diff -r 47d03ce52e8e include/ircd_features.h
---- a/include/ircd_features.h  Tue Mar 23 20:10:46 2010 +0100
-+++ b/include/ircd_features.h  Tue Mar 23 20:11:20 2010 +0100
+diff -r 211f48754a7f include/ircd_features.h
+--- a/include/ircd_features.h
++++ b/include/ircd_features.h
 @@ -101,6 +101,7 @@
    FEAT_IRCD_RES_TIMEOUT,
    FEAT_AUTH_TIMEOUT,
@@ -135,9 +135,9 @@ diff -r 47d03ce52e8e include/ircd_features.h
    FEAT_HIS_STATS_w,
    FEAT_HIS_STATS_x,
    FEAT_HIS_STATS_y,
-diff -r 47d03ce52e8e include/msg.h
---- a/include/msg.h    Tue Mar 23 20:10:46 2010 +0100
-+++ b/include/msg.h    Tue Mar 23 20:11:20 2010 +0100
+diff -r 211f48754a7f include/msg.h
+--- a/include/msg.h
++++ b/include/msg.h
 @@ -196,6 +196,10 @@
  #define TOK_NOTICE              "O"
  #define CMD_NOTICE            MSG_NOTICE, TOK_NOTICE
@@ -149,9 +149,9 @@ diff -r 47d03ce52e8e include/msg.h
  #define MSG_WALLCHOPS           "WALLCHOPS"     /* WC */
  #define TOK_WALLCHOPS           "WC"
  #define CMD_WALLCHOPS         MSG_WALLCHOPS, TOK_WALLCHOPS
-diff -r 47d03ce52e8e include/numeric.h
---- a/include/numeric.h        Tue Mar 23 20:10:46 2010 +0100
-+++ b/include/numeric.h        Tue Mar 23 20:11:20 2010 +0100
+diff -r 211f48754a7f include/numeric.h
+--- a/include/numeric.h
++++ b/include/numeric.h
 @@ -116,6 +116,7 @@
        RPL_STATSGLINE       227           Dalnet 
        RPL_STATSVLINE       227           unreal */
@@ -169,9 +169,9 @@ diff -r 47d03ce52e8e include/numeric.h
  #define ERR_SILELISTFULL     511        /* Undernet extension */
  /*      ERR_NOTIFYFULL       512           aircd */
  /*    ERR_TOOMANYWATCH     512           Numeric List: Dalnet */
-diff -r 47d03ce52e8e include/welcome.h
---- /dev/null  Thu Jan 01 00:00:00 1970 +0000
-+++ b/include/welcome.h        Tue Mar 23 20:11:20 2010 +0100
+diff -r 211f48754a7f include/welcome.h
+--- /dev/null
++++ b/include/welcome.h
 @@ -0,0 +1,60 @@
 +#ifndef INCLUDED_welcome_h
 +#define INCLUDED_welcome_h
@@ -233,9 +233,9 @@ diff -r 47d03ce52e8e include/welcome.h
 +extern void welcome_stats(struct Client *sptr, const struct StatDesc *sd, char *param);
 +
 +#endif /* INCLUDED_welcome_h */
-diff -r 47d03ce52e8e ircd/Makefile.in
---- a/ircd/Makefile.in Tue Mar 23 20:10:46 2010 +0100
-+++ b/ircd/Makefile.in Tue Mar 23 20:11:20 2010 +0100
+diff -r 211f48754a7f ircd/Makefile.in
+--- a/ircd/Makefile.in
++++ b/ircd/Makefile.in
 @@ -186,6 +186,7 @@
        m_wallops.c \
        m_wallusers.c \
@@ -278,9 +278,9 @@ diff -r 47d03ce52e8e ircd/Makefile.in
  whocmds.o: whocmds.c ../config.h ../include/whocmds.h \
    ../include/channel.h ../include/ircd_defs.h ../include/res.h \
    ../config.h ../include/client.h ../include/dbuf.h ../include/msgq.h \
-diff -r 47d03ce52e8e ircd/client.c
---- a/ircd/client.c    Tue Mar 23 20:10:46 2010 +0100
-+++ b/ircd/client.c    Tue Mar 23 20:11:20 2010 +0100
+diff -r 211f48754a7f ircd/client.c
+--- a/ircd/client.c
++++ b/ircd/client.c
 @@ -177,6 +177,7 @@
      FlagSet(&privs_local, PRIV_WHOX);
      FlagSet(&privs_local, PRIV_DISPLAY);
@@ -306,9 +306,9 @@ diff -r 47d03ce52e8e ircd/client.c
  #undef P
    { 0, 0 }
  };
-diff -r 47d03ce52e8e ircd/ircd_features.c
---- a/ircd/ircd_features.c     Tue Mar 23 20:10:46 2010 +0100
-+++ b/ircd/ircd_features.c     Tue Mar 23 20:11:20 2010 +0100
+diff -r 211f48754a7f ircd/ircd_features.c
+--- a/ircd/ircd_features.c
++++ b/ircd/ircd_features.c
 @@ -366,6 +366,7 @@
    F_I(IRCD_RES_TIMEOUT, 0, 4, 0),
    F_I(AUTH_TIMEOUT, 0, 9, 0),
@@ -325,9 +325,9 @@ diff -r 47d03ce52e8e ircd/ircd_features.c
    F_B(HIS_STATS_w, 0, 1, 0),
    F_B(HIS_STATS_x, 0, 1, 0),
    F_B(HIS_STATS_y, 0, 1, 0),
-diff -r 47d03ce52e8e ircd/ircd_lexer.l
---- a/ircd/ircd_lexer.l        Tue Mar 23 20:10:46 2010 +0100
-+++ b/ircd/ircd_lexer.l        Tue Mar 23 20:11:20 2010 +0100
+diff -r 211f48754a7f ircd/ircd_lexer.l
+--- a/ircd/ircd_lexer.l
++++ b/ircd/ircd_lexer.l
 @@ -166,6 +166,8 @@
    { "serverinfo", TPRIV_SERVERINFO },
    { "user_privacy", TPRIV_USER_PRIVACY },
@@ -337,9 +337,9 @@ diff -r 47d03ce52e8e ircd/ircd_lexer.l
    { NULL, 0 }
  };
  static int ntokens;
-diff -r 47d03ce52e8e ircd/ircd_parser.y
---- a/ircd/ircd_parser.y       Tue Mar 23 20:10:46 2010 +0100
-+++ b/ircd/ircd_parser.y       Tue Mar 23 20:11:20 2010 +0100
+diff -r 211f48754a7f ircd/ircd_parser.y
+--- a/ircd/ircd_parser.y
++++ b/ircd/ircd_parser.y
 @@ -189,6 +189,7 @@
  %token TPRIV_CHANSERV TPRIV_XTRA_OPER TPRIV_NOIDLE TPRIV_FREEFORM TPRIV_PARANOID
  %token TPRIV_CHECK TPRIV_WALL TPRIV_CLOSE TPRIV_ROUTE TPRIV_ROUTEINFO TPRIV_SERVERINFO
@@ -357,10 +357,10 @@ diff -r 47d03ce52e8e ircd/ircd_parser.y
            TPRIV_PARANOID { $$ = PRIV_PARANOID; } ;
  yesorno: YES { $$ = 1; } | NO { $$ = 0; };
  
-diff -r 47d03ce52e8e ircd/m_welcome.c
---- /dev/null  Thu Jan 01 00:00:00 1970 +0000
-+++ b/ircd/m_welcome.c Tue Mar 23 20:11:20 2010 +0100
-@@ -0,0 +1,288 @@
+diff -r 211f48754a7f ircd/m_welcome.c
+--- /dev/null
++++ b/ircd/m_welcome.c
+@@ -0,0 +1,284 @@
 +/*
 + * IRC - Internet Relay Chat, ircd/m_welcome.c
 + * Copyright (C) 1990 Jarkko Oikarinen and
@@ -480,14 +480,11 @@ diff -r 47d03ce52e8e ircd/m_welcome.c
 +  /* remote listing request, see if it is for me or a remote server
 +   *  check FEAT_HIS_REMOTE to decide if an ordinary user can do this
 +   */
-+  if (parc == 2) {
-+    if (hunt_server_cmd(sptr, CMD_WELCOME, cptr, feature_int(FEAT_HIS_REMOTE),
-+      "%C", 1, parc, parv) != HUNTED_ISME)
-+      return 0;
-+    return welcome_list(sptr, 0);
-+  }
++  if ((parc > 1) && (hunt_server_cmd(sptr, CMD_WELCOME, cptr, feature_int(FEAT_HIS_REMOTE),
++        "%C", 1, parc, parv) != HUNTED_ISME))
++    return 0;
 +
-+  /* just local listing */
++  /* local listing */
 +  return welcome_list(sptr, 0);
 +}
 +
@@ -519,17 +516,14 @@ diff -r 47d03ce52e8e ircd/m_welcome.c
 +  if (!feature_bool(FEAT_WELCOME))
 +    return send_reply(sptr, ERR_DISABLED, "WELCOME");
 +
-+  /* listing */
-+  if (parc < 2)
-+    return welcome_list(sptr, 0);
-+
 +  /* TODO: move feature check here? */
 +  /* remote listing request, see if it is for me or a remote server */
-+  if (parc == 2) {
-+    if (hunt_server_cmd(sptr, CMD_WELCOME, cptr, 0, "%C", 1, parc, parv) != HUNTED_ISME)
-+      return 0;
++  if ((parc == 2) && (hunt_server_cmd(sptr, CMD_WELCOME, cptr, 0, "%C", 1, parc, parv) != HUNTED_ISME))
++    return 0;
++
++  /* local listing */
++  if (parc <= 2)
 +    return welcome_list(sptr, 0);
-+  }
 +
 +  /* check PRIVS */
 +  /* local - need PRIV LOCAL_WELCOME or WELCOME */
@@ -611,6 +605,8 @@ diff -r 47d03ce52e8e ircd/m_welcome.c
 +
 +  /* remote listing request, see if it is for me or a remote server */
 +  if (parc == 2) {
++    if (IsServer(sptr))
++      return protocol_violation(cptr, "WELCOME listing request from server %C", sptr);
 +    if (hunt_server_cmd(sptr, CMD_WELCOME, cptr, 0, "%C", 1, parc, parv) != HUNTED_ISME)
 +      return 0;
 +    return welcome_list(sptr, 0);
@@ -649,9 +645,9 @@ diff -r 47d03ce52e8e ircd/m_welcome.c
 +  /* and do it */
 +  return welcome_do(cptr, sptr, name, text, who, timestamp, flags);
 +}
-diff -r 47d03ce52e8e ircd/parse.c
---- a/ircd/parse.c     Tue Mar 23 20:10:46 2010 +0100
-+++ b/ircd/parse.c     Tue Mar 23 20:11:20 2010 +0100
+diff -r 211f48754a7f ircd/parse.c
+--- a/ircd/parse.c
++++ b/ircd/parse.c
 @@ -661,6 +661,15 @@
      /* UNREG, CLIENT, SERVER, OPER, SERVICE */
      { m_unregistered, m_not_oper, ms_check, mo_check, m_ignore }
@@ -668,9 +664,9 @@ diff -r 47d03ce52e8e ircd/parse.c
  
    /* This command is an alias for QUIT during the unregistered part of
     * of the server.  This is because someone jumping via a broken web
-diff -r 47d03ce52e8e ircd/s_err.c
---- a/ircd/s_err.c     Tue Mar 23 20:10:46 2010 +0100
-+++ b/ircd/s_err.c     Tue Mar 23 20:11:20 2010 +0100
+diff -r 211f48754a7f ircd/s_err.c
+--- a/ircd/s_err.c
++++ b/ircd/s_err.c
 @@ -486,7 +486,7 @@
  /* 226 */
    { RPL_STATSALINE, "%s", "226" },
@@ -689,9 +685,9 @@ diff -r 47d03ce52e8e ircd/s_err.c
  /* 510 */
    { 0 },
  /* 511 */
-diff -r 47d03ce52e8e ircd/s_serv.c
---- a/ircd/s_serv.c    Tue Mar 23 20:10:46 2010 +0100
-+++ b/ircd/s_serv.c    Tue Mar 23 20:11:20 2010 +0100
+diff -r 211f48754a7f ircd/s_serv.c
+--- a/ircd/s_serv.c
++++ b/ircd/s_serv.c
 @@ -57,6 +57,7 @@
  #include "struct.h"
  #include "sys.h"
@@ -708,9 +704,9 @@ diff -r 47d03ce52e8e ircd/s_serv.c
  
    /*
     * Pass on my client information to the new server
-diff -r 47d03ce52e8e ircd/s_stats.c
---- a/ircd/s_stats.c   Tue Mar 23 20:10:46 2010 +0100
-+++ b/ircd/s_stats.c   Tue Mar 23 20:11:20 2010 +0100
+diff -r 211f48754a7f ircd/s_stats.c
+--- a/ircd/s_stats.c
++++ b/ircd/s_stats.c
 @@ -54,6 +54,7 @@
  #include "send.h"
  #include "struct.h"
@@ -733,9 +729,9 @@ diff -r 47d03ce52e8e ircd/s_stats.c
    { 'x', "memusage", STAT_FLAG_OPERFEAT, FEAT_HIS_STATS_x,
      stats_meminfo, 0,
      "List usage information." },
-diff -r 47d03ce52e8e ircd/s_user.c
---- a/ircd/s_user.c    Tue Mar 23 20:10:46 2010 +0100
-+++ b/ircd/s_user.c    Tue Mar 23 20:11:20 2010 +0100
+diff -r 211f48754a7f ircd/s_user.c
+--- a/ircd/s_user.c
++++ b/ircd/s_user.c
 @@ -63,6 +63,7 @@
  #include "userload.h"
  #include "version.h"
@@ -754,10 +750,10 @@ diff -r 47d03ce52e8e ircd/s_user.c
    }
    else {
      struct Client *acptr = user->server;
-diff -r 47d03ce52e8e ircd/welcome.c
---- /dev/null  Thu Jan 01 00:00:00 1970 +0000
-+++ b/ircd/welcome.c   Tue Mar 23 20:11:20 2010 +0100
-@@ -0,0 +1,369 @@
+diff -r 211f48754a7f ircd/welcome.c
+--- /dev/null
++++ b/ircd/welcome.c
+@@ -0,0 +1,371 @@
 +/*
 + * IRC - Internet Relay Chat, ircd/welcome.c
 + * Copyright (C) 1990 Jarkko Oikarinen and
@@ -866,7 +862,9 @@ diff -r 47d03ce52e8e ircd/welcome.c
 +    if (IsUser(sptr))
 +      sendcmdto_one(&me, CMD_NOTICE, sptr,
 +        "%C :WELCOME: Invalid message number %s - should between 1 and %d",
-+        sptr, name, WELCOME_MAX_ENTRIES); 
++        sptr, name, WELCOME_MAX_ENTRIES);
++    else 
++      protocol_violation(cptr, "WELCOME: Invalid message number %s from %C", name, sptr);
 +    return 0;
 +  }
 +
@@ -893,7 +891,7 @@ diff -r 47d03ce52e8e ircd/welcome.c
 +  if (WelcomeArray[namearray].timestamp != 0) {
 +
 +    /* global */
-+    if (namearray < WELCOME_MAX_ENTRIES) {
++    if (!(flags & WELCOME_LOCAL)) {
 +
 +      /* netburst and we got the same or a newer one
 +       *
@@ -913,8 +911,8 @@ diff -r 47d03ce52e8e ircd/welcome.c
 +    if (ircd_strcmp(text, WelcomeArray[namearray].text) == 0) {
 +      if (IsUser(sptr))
 +        sendcmdto_one(&me, CMD_NOTICE, sptr,
-+          "%C :WELCOME: Cannot change %smessage for %s - nothing to change.",
-+          sptr, (flags & WELCOME_LOCAL) ? "local " : "", name); 
++          "%C :WELCOME: Cannot change %s message for %s - nothing to change.",
++          sptr, (flags & WELCOME_LOCAL) ? "local" : "global", name); 
 +      return 0;
 +    }
 +  }
@@ -943,22 +941,22 @@ diff -r 47d03ce52e8e ircd/welcome.c
 +  welcome_make(namearray, text, who, timestamp);
 +
 +  /* inform ops */
-+  sendto_opmask_butone(0, SNO_OLDSNO, "%s %s%s%sWELCOME %d \"%s\" [%Tu]",
++  sendto_opmask_butone(0, SNO_OLDSNO, "%s %s%s%s WELCOME %d \"%s\" [%Tu]",
 +    (feature_bool(FEAT_HIS_SNOTICES) || IsServer(sptr)) ?
 +    get_client_name_and_opername(sptr) : cli_name((cli_user(sptr))->server),
 +    EmptyString(text) ? "unsetting" : "changing",
 +    (flags & WELCOME_ANNOUNCE) ? " and announcing " : " ",
-+    (flags & WELCOME_LOCAL) ? "local " : "",
++    (flags & WELCOME_LOCAL) ? "local" : "global",
 +    nameint,
 +    EmptyString(text) ? oldtext : WelcomeArray[namearray].text,
 +    WelcomeArray[namearray].timestamp);
 +
 +  /* log it */
-+  log_write(LS_NETWORK, L_INFO, LOG_NOSNOTICE, "%#C (%s) %s%s%sWELCOME %d \"%s\" [%Tu]",
++  log_write(LS_NETWORK, L_INFO, LOG_NOSNOTICE, "%#C (%s) %s%s%s WELCOME %d \"%s\" [%Tu]",
 +    sptr, WelcomeArray[namearray].who,
 +    EmptyString(text) ? "unsetting" : "changing",
 +    (flags & WELCOME_ANNOUNCE) ? " and announcing " : " ",
-+    (flags & WELCOME_LOCAL) ? "local " : "",
++    (flags & WELCOME_LOCAL) ? "local" : "global",
 +    nameint,
 +    EmptyString(text) ? oldtext : WelcomeArray[namearray].text,
 +    WelcomeArray[namearray].timestamp);