ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/user.c
(Generate patch)

Comparing:
ircd-hybrid-7.3/src/s_user.c (file contents), Revision 1080 by michael, Wed Mar 10 23:09:36 2010 UTC vs.
ircd-hybrid-8/src/s_user.c (file contents), Revision 1165 by michael, Thu Aug 11 18:56:53 2011 UTC

# Line 54 | Line 54
54   #include "msg.h"
55   #include "watch.h"
56  
57 < unsigned int MaxClientCount     = 1;
58 < unsigned int MaxConnectionCount = 1;
57 >
58   struct Callback *entering_umode_cb = NULL;
59   struct Callback *umode_cb = NULL;
60  
# Line 127 | Line 126 | unsigned int user_modes[256] =
126    UMODE_CALLERID,     /* g */
127    0,                  /* h */
128    UMODE_INVISIBLE,    /* i */
129 <  0,                  /* j */
129 >  UMODE_REJ,          /* j */
130    UMODE_SKILL,        /* k */
131    UMODE_LOCOPS,       /* l */
132    0,                  /* m */
# Line 135 | Line 134 | unsigned int user_modes[256] =
134    UMODE_OPER,         /* o */
135    0,                  /* p */
136    0,                  /* q */
137 <  UMODE_REJ,          /* r */
137 >  UMODE_REGISTERED,   /* r */
138    UMODE_SERVNOTICE,   /* s */
139    0,                  /* t */
140    UMODE_UNAUTH,       /* u */
# Line 234 | Line 233 | show_lusers(struct Client *source_p)
233  
234    if (!ConfigServerHide.hide_servers || IsOper(source_p))
235      sendto_one(source_p, form_str(RPL_STATSCONN), from, to,
236 <               MaxConnectionCount, MaxClientCount, Count.totalrestartcount);
236 >               Count.max_loc_con, Count.max_loc_cli, Count.totalrestartcount);
237  
238 <  if (Count.local > MaxClientCount)
239 <    MaxClientCount = Count.local;
238 >  if (Count.local > Count.max_loc_cli)
239 >    Count.max_loc_cli = Count.local;
240  
241 <  if ((Count.local + Count.myserver) > MaxConnectionCount)
242 <    MaxConnectionCount = Count.local + Count.myserver;
241 >  if ((Count.local + Count.myserver) > Count.max_loc_con)
242 >    Count.max_loc_con = Count.local + Count.myserver;
243   }
244  
245   /* show_isupport()
# Line 281 | Line 280 | show_isupport(struct Client *source_p)
280   void
281   register_local_user(struct Client *source_p)
282   {
283 +  const char *id = NULL;
284    const struct AccessItem *aconf = NULL;
285    dlink_node *ptr = NULL;
286  dlink_node *m = NULL;
286  
287    assert(source_p != NULL);
288    assert(source_p == source_p->from);
# Line 408 | Line 407 | register_local_user(struct Client *sourc
407      sendto_realops_flags(UMODE_REJ, L_ALL, "Invalid username: %s (%s@%s)",
408                           source_p->name, source_p->username, source_p->host);
409      ++ServerStats.is_ref;
410 <    ircsprintf(tmpstr2, "Invalid username [%s]", source_p->username);
410 >    snprintf(tmpstr2, sizeof(tmpstr2), "Invalid username [%s]",
411 >             source_p->username);
412      exit_client(source_p, &me, tmpstr2);
413      return;
414    }
# Line 416 | Line 416 | register_local_user(struct Client *sourc
416    if (check_xline(source_p))
417      return;
418  
419 <  if (me.id[0])
420 <  {
421 <    const char *id = NULL;
422 <
423 <    while (hash_find_id((id = uid_get())) != NULL)
424 <      ;
419 >  while (hash_find_id((id = uid_get())) != NULL)
420 >    ;
421  
422 <    strlcpy(source_p->id, id, sizeof(source_p->id));
423 <    hash_add_id(source_p);
428 <  }
422 >  strlcpy(source_p->id, id, sizeof(source_p->id));
423 >  hash_add_id(source_p);
424  
425    sendto_realops_flags(UMODE_CCONN, L_ALL,
426 <                       "Client connecting: %s (%s@%s) [%s] {%s} [%s]",
426 >                       "Client connecting: %s (%s@%s) [%s] {%s} [%s] <%s>",
427                         source_p->name, source_p->username, source_p->host,
428                         ConfigFileEntry.hide_spoof_ips && IsIPSpoof(source_p) ?
429                         "255.255.255.255" : source_p->sockhost,
430                         get_client_class(source_p),
431 <                       source_p->info);
431 >                       source_p->info, source_p->id);
432  
433    sendto_realops_flags(UMODE_CCONN_FULL, L_ALL,
434                         "CLICONN %s %s %s %s %s %s %s 0 %s",
# Line 442 | Line 437 | register_local_user(struct Client *sourc
437                         "255.255.255.255" : source_p->sockhost,
438                         get_client_class(source_p),
439                         ConfigFileEntry.hide_spoof_ips && IsIPSpoof(source_p) ?
440 <                           "<hidden>" : source_p->client_host,
440 >                           "<hidden>" : source_p->localClient->client_host,
441                         ConfigFileEntry.hide_spoof_ips && IsIPSpoof(source_p) ?
442 <                           "<hidden>" : source_p->client_server,
442 >                           "<hidden>" : source_p->localClient->client_server,
443                         source_p->info);
444  
445  
# Line 474 | Line 469 | register_local_user(struct Client *sourc
469  
470    source_p->localClient->allow_read = MAX_FLOOD_BURST;
471  
472 <  assert(dlinkFindDelete(&unknown_list, source_p));
472 >  assert(dlinkFind(&unknown_list, source_p));
473  
474 <  if ((m = dlinkFindDelete(&unknown_list, source_p)) != NULL)
475 <  {
481 <    free_dlink_node(m);
482 <    dlinkAdd(source_p, &source_p->localClient->lclient_node, &local_client_list);
483 <  }
474 >  dlink_move_node(&source_p->localClient->lclient_node,
475 >                  &unknown_list, &local_client_list);
476  
477    user_welcome(source_p);
478    add_user_host(source_p->username, source_p->host, 0);
# Line 684 | Line 676 | valid_username(const char *username)
676    return 1;
677   }
678  
679 + /* clean_nick_name()
680 + *
681 + * input        - nickname
682 + *              - whether it's a local nick (1) or remote (0)
683 + * output       - none
684 + * side effects - walks through the nickname, returning 0 if erroneous
685 + */
686 + int
687 + valid_nickname(const char *nickname, const int local)
688 + {
689 +  const char *p = nickname;
690 +  assert(nickname && *nickname);
691 +
692 +  /* nicks can't start with a digit or - or be 0 length */
693 +  /* This closer duplicates behaviour of hybrid-6 */
694 +  if (*p == '-' || (IsDigit(*p) && local) || *p == '\0')
695 +    return 0;
696 +
697 +  for (; *p; ++p)
698 +    if (!IsNickChar(*p))
699 +      return 0;
700 +
701 +  return p - nickname <= (NICKLEN - 1);
702 + }
703 +
704   /* report_and_set_user_flags()
705   *
706   * inputs       - pointer to source_p
# Line 756 | Line 773 | report_and_set_user_flags(struct Client
773    }
774   }
775  
759 /* do_local_user()
760 *
761 * inputs       -
762 * output       - NONE
763 * side effects -
764 */
765 void
766 do_local_user(struct Client *source_p,
767              const char *username, const char *host, const char *server,
768              const char *realname)
769 {
770  assert(source_p != NULL);
771  assert(source_p->username != username);
772  assert(IsUnknown(source_p));
773
774  source_p->localClient->registration &= ~REG_NEED_USER;
775
776  /*
777   * don't take the clients word for it, ever
778   */
779  source_p->servptr = &me;
780
781  strlcpy(source_p->info, realname, sizeof(source_p->info));
782
783  /* stash for later */
784  strlcpy(source_p->client_host, host, sizeof(source_p->client_host));
785  strlcpy(source_p->client_server, server, sizeof(source_p->client_server));
786
787  if (!IsGotId(source_p))
788    strlcpy(source_p->username, username, sizeof(source_p->username));
789
790  if (!source_p->localClient->registration)
791    register_local_user(source_p);
792 }
793
776   /* change_simple_umode()
777   *
778   * this callback can be hooked to allow special handling of
# Line 850 | Line 832 | set_user_mode(struct Client *client_p, s
832       return;
833    }
834  
835 <  if (source_p != target_p || target_p->from != source_p->from)
835 >  if (source_p != target_p)
836    {
837       sendto_one(source_p, form_str(ERR_USERSDONTMATCH),
838                  me.name, source_p->name);
# Line 908 | Line 890 | set_user_mode(struct Client *client_p, s
890                break;
891  
892              ClearOper(source_p);
911            source_p->umodes &= ~ConfigFileEntry.oper_only_umodes;
893              Count.oper--;
894  
895              if (MyConnect(source_p))
# Line 917 | Line 898 | set_user_mode(struct Client *client_p, s
898  
899                detach_conf(source_p, OPER_TYPE);
900                ClearOperFlags(source_p);
901 +              source_p->umodes &= ~ConfigFileEntry.oper_only_umodes;
902  
903                if ((dm = dlinkFindDelete(&oper_list, source_p)) != NULL)
904                  free_dlink_node(dm);
# Line 928 | Line 910 | set_user_mode(struct Client *client_p, s
910          /* we may not get these,
911           * but they shouldnt be in default
912           */
913 +        case 'r':
914          case ' ' :
915          case '\n':
916          case '\r':
# Line 960 | Line 943 | set_user_mode(struct Client *client_p, s
943      sendto_one(source_p, form_str(ERR_UMODEUNKNOWNFLAG),
944                 me.name, source_p->name);
945  
946 <  if ((source_p->umodes & UMODE_NCHANGE) && !IsOperN(source_p))
946 >  if (HasUMode(source_p, UMODE_NCHANGE) && !IsOperN(source_p))
947    {
948      sendto_one(source_p, ":%s NOTICE %s :*** You have no admin flag;",
949                 me.name, source_p->name);
950 <    source_p->umodes &= ~UMODE_NCHANGE; /* only tcm's really need this */
950 >    DelUMode(source_p, UMODE_NCHANGE); /* only tcm's really need this */
951    }
952  
953    if (MyConnect(source_p) && (source_p->umodes & UMODE_ADMIN) &&
# Line 1125 | Line 1108 | user_welcome(struct Client *source_p)
1108  
1109    if (ConfigFileEntry.short_motd)
1110    {
1111 <    sendto_one(source_p, "NOTICE %s :*** Notice -- motd was last changed at %s",
1112 <               source_p->name, ConfigFileEntry.motd.lastChangedDate);
1111 >    sendto_one(source_p, ":%s NOTICE %s :*** Notice -- motd was last changed at %s",
1112 >               me.name, source_p->name, ConfigFileEntry.motd.lastChangedDate);
1113      sendto_one(source_p,
1114 <               "NOTICE %s :*** Notice -- Please read the motd if you haven't "
1115 <               "read it", source_p->name);
1114 >               ":%s NOTICE %s :*** Notice -- Please read the motd if you haven't "
1115 >               "read it", me.name, source_p->name);
1116      sendto_one(source_p, form_str(RPL_MOTDSTART),
1117                 me.name, source_p->name, me.name);
1118      sendto_one(source_p, form_str(RPL_MOTD),
# Line 1230 | Line 1213 | oper_up(struct Client *source_p)
1213    SetOFlag(source_p, oconf->port);
1214  
1215    if (IsOperAdmin(source_p) || IsOperHiddenAdmin(source_p))
1216 <    source_p->umodes |= UMODE_ADMIN;
1216 >    AddUMode(source_p, UMODE_ADMIN);
1217    if (!IsOperN(source_p))
1218 <    source_p->umodes &= ~UMODE_NCHANGE;
1218 >    DelUMode(source_p, UMODE_NCHANGE);
1219  
1220    sendto_realops_flags(UMODE_ALL, L_ALL, "%s (%s@%s) is now an operator",
1221                         source_p->name, source_p->username, source_p->host);
# Line 1248 | Line 1231 | static char new_uid[TOTALSIDUID + 1];
1231   int
1232   valid_sid(const char *sid)
1233   {
1251
1234    if (strlen(sid) == IRC_MAXSID)
1235      if (IsDigit(*sid))
1236        if (IsAlNum(*(sid + 1)) && IsAlNum(*(sid + 2)))
# Line 1273 | Line 1255 | init_uid(void)
1255  
1256    memset(new_uid, 0, sizeof(new_uid));
1257  
1258 <  if (ServerInfo.sid != NULL)
1277 <  {
1258 >  if (!EmptyString(ServerInfo.sid))
1259      strlcpy(new_uid, ServerInfo.sid, sizeof(new_uid));
1279    strlcpy(me.id, ServerInfo.sid, sizeof(me.id));
1280
1281    hash_add_id(&me);
1282  }
1260  
1261 <  for (i = 0; i < IRC_MAXSID; i++)
1261 >  for (i = 0; i < IRC_MAXSID; ++i)
1262      if (new_uid[i] == '\0')
1263        new_uid[i] = 'A';
1264  

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)