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.2/src/s_user.c (file contents), Revision 510 by michael, Sat Mar 4 08:37:51 2006 UTC vs.
ircd-hybrid-8/src/s_user.c (file contents), Revision 1176 by michael, Sun Aug 14 11:24:24 2011 UTC

# Line 23 | Line 23
23   */
24  
25   #include "stdinc.h"
26 < #include "tools.h"
26 > #include "list.h"
27   #include "s_user.h"
28   #include "s_misc.h"
29   #include "channel.h"
# Line 35 | Line 35
35   #include "irc_string.h"
36   #include "sprintf_irc.h"
37   #include "s_bsd.h"
38 #include "irc_getnameinfo.h"
38   #include "ircd.h"
40 #include "list.h"
39   #include "listener.h"
40   #include "motd.h"
41   #include "numeric.h"
42   #include "s_conf.h"
43   #include "s_log.h"
44   #include "s_serv.h"
47 #include "s_stats.h"
45   #include "send.h"
46   #include "supported.h"
47   #include "whowas.h"
48   #include "memory.h"
49   #include "packet.h"
50 + #include "rng_mt.h"
51   #include "userhost.h"
52   #include "hook.h"
53   #include "s_misc.h"
54   #include "msg.h"
55 < #include "pcre.h"
55 > #include "watch.h"
56 >
57  
59 int MaxClientCount     = 1;
60 int MaxConnectionCount = 1;
58   struct Callback *entering_umode_cb = NULL;
59   struct Callback *umode_cb = NULL;
63 struct Callback *uid_get_cb = NULL;
60  
61   static char umode_buffer[IRCD_BUFSIZE];
62  
63   static void user_welcome(struct Client *);
64   static void report_and_set_user_flags(struct Client *, const struct AccessItem *);
65   static int check_xline(struct Client *);
66 < static int check_regexp_xline(struct Client *);
67 < static void introduce_client(struct Client *, struct Client *);
72 < static void *uid_get(va_list);
66 > static void introduce_client(struct Client *);
67 > static const char *uid_get(void);
68  
69   /* Used for building up the isupport string,
70   * used with init_isupport, add_isupport, delete_isupport
# Line 96 | Line 91 | unsigned int user_modes[256] =
91    0,                  /* @ */
92    0,                  /* A */
93    0,                  /* B */
94 <  0,                  /* C */
94 >  UMODE_CCONN_FULL,   /* C */
95    UMODE_DEAF,         /* D */
96    0,                  /* E */
97    0,                  /* F */
# Line 111 | Line 106 | unsigned int user_modes[256] =
106    0,                  /* O */
107    0,                  /* P */
108    0,                  /* Q */
109 <  0,                  /* R */
109 >  UMODE_REGONLY,      /* R */
110    0,                  /* S */
111    0,                  /* T */
112    0,                  /* U */
# Line 131 | 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 139 | 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 166 | Line 161 | assemble_umode_buffer(void)
161    unsigned int idx = 0;
162    char *umode_buffer_ptr = umode_buffer;
163  
164 <  for (; idx < (sizeof(user_modes) / sizeof(int)); ++idx)
164 >  for (; idx < (sizeof(user_modes) / sizeof(user_modes[0])); ++idx)
165      if (user_modes[idx])
166        *umode_buffer_ptr++ = idx;
167  
# Line 238 | 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 283 | Line 278 | show_isupport(struct Client *source_p)
278   **         nick from local user or kill him/her...
279   */
280   void
281 < register_local_user(struct Client *client_p, struct Client *source_p,
287 <                    const char *nick, const char *username)
281 > register_local_user(struct Client *source_p)
282   {
283 +  const char *id = NULL;
284    const struct AccessItem *aconf = NULL;
290  char ipaddr[HOSTIPLEN];
285    dlink_node *ptr = NULL;
292  dlink_node *m = NULL;
286  
287    assert(source_p != NULL);
288 +  assert(source_p == source_p->from);
289    assert(MyConnect(source_p));
296  assert(source_p->username != username);
290    assert(!source_p->localClient->registration);
291  
292 +  ClearCap(source_p, CAP_TS6);
293 +
294    if (ConfigFileEntry.ping_cookie)
295    {
296 <    if (!IsPingSent(source_p) &&
302 <       source_p->localClient->random_ping == 0)
296 >    if (!IsPingSent(source_p) && source_p->localClient->random_ping == 0)
297      {
298 <      source_p->localClient->random_ping = (unsigned long)rand();
299 <      sendto_one(source_p, "PING :%lu",
298 >      do
299 >        source_p->localClient->random_ping = genrand_int32();
300 >      while (!source_p->localClient->random_ping);
301 >
302 >      sendto_one(source_p, "PING :%u",
303                   source_p->localClient->random_ping);
304        SetPingSent(source_p);
305        return;
# Line 312 | Line 309 | register_local_user(struct Client *clien
309        return;
310    }
311  
312 <  source_p->localClient->last = CurrentTime;
312 >  source_p->localClient->last_privmsg = CurrentTime;
313    /* Straight up the maximum rate of flooding... */
314    source_p->localClient->allow_read = MAX_FLOOD_BURST;
315  
316 <  if (!execute_callback(client_check_cb, source_p, username))
316 >  if (!execute_callback(client_check_cb, source_p, source_p->username))
317      return;
318  
319    if (valid_hostname(source_p->host) == 0)
# Line 332 | Line 329 | register_local_user(struct Client *clien
329  
330    if (!IsGotId(source_p))
331    {
332 <    const char *p = NULL;
332 >    char username[USERLEN + 1];
333 >    const char *p = username;
334      unsigned int i = 0;
335  
336      if (IsNeedIdentd(aconf))
337      {
338 <      ServerStats->is_ref++;
338 >      ++ServerStats.is_ref;
339        sendto_one(source_p, ":%s NOTICE %s :*** Notice -- You need to install "
340                   "identd to use this server", me.name, source_p->name);
341        exit_client(source_p, &me, "Install identd");
342        return;
343      }
344  
345 <    p = username;
345 >    strlcpy(username, source_p->username, sizeof(username));
346  
347      if (!IsNoTilde(aconf))
348        source_p->username[i++] = '~';
349  
350 <    while (*p && i < USERLEN)
353 <    {
350 >    for (; *p && i < USERLEN; ++p)
351        if (*p != '[')
352          source_p->username[i++] = *p;
356      p++;
357    }
353  
354      source_p->username[i] = '\0';
355    }
# Line 366 | Line 361 | register_local_user(struct Client *clien
361  
362      if (!match_conf_password(pass, aconf))
363      {
364 <      ServerStats->is_ref++;
364 >      ++ServerStats.is_ref;
365        sendto_one(source_p, form_str(ERR_PASSWDMISMATCH),
366                   me.name, source_p->name);
367        exit_client(source_p, &me, "Bad Password");
# Line 382 | Line 377 | register_local_user(struct Client *clien
377    /* report if user has &^>= etc. and set flags as needed in source_p */
378    report_and_set_user_flags(source_p, aconf);
379  
380 +  if (IsDead(source_p))
381 +    return;
382 +
383    /* Limit clients -
384     * We want to be able to have servers and F-line clients
385     * connect, so save room for "buffer" connections.
# Line 395 | Line 393 | register_local_user(struct Client *clien
393    {
394      sendto_realops_flags(UMODE_FULL, L_ALL,
395                           "Too many clients, rejecting %s[%s].",
396 <                         nick, source_p->host);
397 <    ServerStats->is_ref++;
396 >                         source_p->name, source_p->host);
397 >    ++ServerStats.is_ref;
398      exit_client(source_p, &me, "Sorry, server is full - try later");
399      return;
400    }
# Line 407 | Line 405 | register_local_user(struct Client *clien
405      char tmpstr2[IRCD_BUFSIZE];
406  
407      sendto_realops_flags(UMODE_REJ, L_ALL, "Invalid username: %s (%s@%s)",
408 <                         nick, source_p->username, source_p->host);
409 <    ServerStats->is_ref++;
410 <    ircsprintf(tmpstr2, "Invalid username [%s]", source_p->username);
408 >                         source_p->name, source_p->username, source_p->host);
409 >    ++ServerStats.is_ref;
410 >    snprintf(tmpstr2, sizeof(tmpstr2), "Invalid username [%s]",
411 >             source_p->username);
412      exit_client(source_p, &me, tmpstr2);
413      return;
414    }
415  
416 <  assert(source_p == client_p);
418 <
419 <  /* end of valid user name check */
420 <  if (check_xline(source_p) || check_regexp_xline(source_p))
421 <    return;
422 <
423 <  if (IsDead(client_p))
416 >  if (check_xline(source_p))
417      return;
418  
419 <  if (source_p->id[0] == '\0' && me.id[0])
420 <  {
428 <    char *id = (char *)execute_callback(uid_get_cb, source_p);
429 <    while (hash_find_id(id) != NULL)
430 <      id = uid_get(NULL);
431 <
432 <    strlcpy(source_p->id, id, sizeof(source_p->id));
433 <    hash_add_id(source_p);
434 <  }
419 >  while (hash_find_id((id = uid_get())) != NULL)
420 >    ;
421  
422 <  irc_getnameinfo((struct sockaddr *)&source_p->localClient->ip,
423 <                  source_p->localClient->ip.ss_len, ipaddr,
438 <                  HOSTIPLEN, NULL, 0, NI_NUMERICHOST);
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]",
427 <                       nick, source_p->username, source_p->host,
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, source_p->id);
432 >
433 >  sendto_realops_flags(UMODE_CCONN_FULL, L_ALL,
434 >                       "CLICONN %s %s %s %s %s %s %s 0 %s",
435 >                       source_p->name, source_p->username, source_p->host,
436                         ConfigFileEntry.hide_spoof_ips && IsIPSpoof(source_p) ?
437 <                       "255.255.255.255" : ipaddr, get_client_class(source_p),
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->localClient->client_host,
441 >                       ConfigFileEntry.hide_spoof_ips && IsIPSpoof(source_p) ?
442 >                           "<hidden>" : source_p->localClient->client_server,
443                         source_p->info);
444  
447  /* If they have died in send_* don't do anything. */
448  if (IsDead(source_p))
449    return;
445  
446    if (ConfigFileEntry.invisible_on_connect)
447    {
448      source_p->umodes |= UMODE_INVISIBLE;
449 <    Count.invisi++;
449 >    ++Count.invisi;
450    }
451  
452    if ((++Count.local) > Count.max_loc)
# Line 463 | Line 458 | register_local_user(struct Client *clien
458                             Count.max_loc);
459    }
460  
466  SetClient(source_p);
467
468  source_p->servptr = &me;
469  dlinkAdd(source_p, &source_p->lnode, &source_p->servptr->serv->users);
470
461    /* Increment our total user count here */
462    if (++Count.total > Count.max_tot)
463      Count.max_tot = Count.total;
464 <  Count.totalrestartcount++;
464 >  ++Count.totalrestartcount;
465 >
466 >  assert(source_p->servptr == &me);
467 >  SetClient(source_p);
468 >  dlinkAdd(source_p, &source_p->lnode, &source_p->servptr->serv->client_list);
469  
470    source_p->localClient->allow_read = MAX_FLOOD_BURST;
471  
472 <  if ((m = dlinkFindDelete(&unknown_list, source_p)) != NULL)
473 <  {
474 <    free_dlink_node(m);
475 <    dlinkAdd(source_p, &source_p->localClient->lclient_node, &local_client_list);
482 <  }
483 <  else assert(0);
472 >  assert(dlinkFind(&unknown_list, source_p));
473 >
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);
479    SetUserHost(source_p);
480  
481 <  introduce_client(client_p, source_p);
481 >  introduce_client(source_p);
482   }
483  
484   /* register_remote_user()
485   *
486 < * inputs       - client_p directly connected client
495 < *              - source_p remote or directly connected client
486 > * inputs       - source_p remote or directly connected client
487   *              - username to register as
488   *              - host name to register as
489   *              - server name
# Line 502 | Line 493 | register_local_user(struct Client *clien
493   *                is introduced by a server.
494   */
495   void
496 < register_remote_user(struct Client *client_p, struct Client *source_p,
496 > register_remote_user(struct Client *source_p,
497                       const char *username, const char *host, const char *server,
498                       const char *realname)
499   {
# Line 512 | Line 503 | register_remote_user(struct Client *clie
503    assert(source_p->username != username);
504  
505    strlcpy(source_p->host, host, sizeof(source_p->host));
515  strlcpy(source_p->info, realname, sizeof(source_p->info));
506    strlcpy(source_p->username, username, sizeof(source_p->username));
507  
508    /*
509     * coming from another server, take the servers word for it
510     */
511 <  source_p->servptr = find_server(server);
511 >  source_p->servptr = hash_find_server(server);
512  
513    /* Super GhostDetect:
514     * If we can't find the server the user is supposed to be on,
# Line 530 | Line 520 | register_remote_user(struct Client *clie
520                           "No server %s for user %s[%s@%s] from %s",
521                           server, source_p->name, source_p->username,
522                           source_p->host, source_p->from->name);
523 <    kill_client(client_p, source_p, "%s (Server doesn't exist)", me.name);
523 >    kill_client(source_p->from, source_p, "%s (Server doesn't exist)", me.name);
524  
525      SetKilled(source_p);
526      exit_client(source_p, &me, "Ghosted Client");
# Line 541 | Line 531 | register_remote_user(struct Client *clie
531    {
532      sendto_realops_flags(UMODE_DEBUG, L_ALL,
533                           "Bad User [%s] :%s USER %s@%s %s, != %s[%s]",
534 <                         client_p->name, source_p->name, source_p->username,
534 >                         source_p->from->name, source_p->name, source_p->username,
535                           source_p->host, source_p->servptr->name,
536                           target_p->name, target_p->from->name);
537 <    kill_client(client_p, source_p,
537 >    kill_client(source_p->from, source_p,
538                  "%s (NICK from wrong direction (%s != %s))",
539                  me.name, source_p->servptr->name, target_p->from->name);
540      SetKilled(source_p);
# Line 552 | Line 542 | register_remote_user(struct Client *clie
542      return;
543    }
544  
545 +  /*
546 +   * If the nick has been introduced by a services server,
547 +   * make it a service as well.
548 +   */
549 +  if (IsService(source_p->servptr))
550 +    SetService(source_p);
551 +
552    /* Increment our total user count here */
553    if (++Count.total > Count.max_tot)
554      Count.max_tot = Count.total;
555  
559  ++source_p->from->serv->dep_users;
560
556    SetClient(source_p);
557 <  dlinkAdd(source_p, &source_p->lnode, &source_p->servptr->serv->users);
557 >  dlinkAdd(source_p, &source_p->lnode, &source_p->servptr->serv->client_list);
558    add_user_host(source_p->username, source_p->host, 1);
559    SetUserHost(source_p);
560  
561 <  introduce_client(client_p, source_p);
561 >  introduce_client(source_p);
562   }
563  
564   /* introduce_client()
565   *
566 < * inputs       - client_p
572 < *              - source_p
566 > * inputs       - source_p
567   * output       - NONE
568   * side effects - This common function introduces a client to the rest
569   *                of the net, either from a local client connect or
570   *                from a remote connect.
571   */
572   static void
573 < introduce_client(struct Client *client_p, struct Client *source_p)
573 > introduce_client(struct Client *source_p)
574   {
575    dlink_node *server_node = NULL;
576    static char ubuf[12];
# Line 586 | Line 580 | introduce_client(struct Client *client_p
580    else
581      send_umode(NULL, source_p, 0, SEND_UMODES, ubuf);
582  
583 +  watch_check_hash(source_p, RPL_LOGON);
584 +
585    if (*ubuf == '\0')
586    {
587      ubuf[0] = '+';
588      ubuf[1] = '\0';
589    }
590  
591 <  /* arghhh one could try not introducing new nicks to ll leafs
596 <   * but then you have to introduce them "on the fly" in SJOIN
597 <   * not fun.
598 <   * Its not going to cost much more bandwidth to simply let new
599 <   * nicks just ride on through.
600 <   */
601 <
602 <  /* We now introduce nicks "on the fly" in SJOIN anyway --
603 <   * you _need_ to if you aren't going to burst everyone initially.
604 <   *
605 <   * Only send to non CAP_LL servers, unless we're a lazylink leaf,
606 <   * in that case just send it to the uplink.
607 <   * -davidt
608 <   * rewritten to cope with SIDs .. eww eww eww --is
609 <   */
610 <  if (!ServerInfo.hub && uplink && IsCapable(uplink, CAP_LL) &&
611 <      client_p != uplink)
591 >  DLINK_FOREACH(server_node, serv_list.head)
592    {
593 <    if (IsCapable(uplink, CAP_TS6) && HasID(source_p))
594 <    {
595 <      sendto_one(uplink, ":%s UID %s %d %lu %s %s %s %s %s :%s",
593 >    struct Client *server = server_node->data;
594 >
595 >    if (server == source_p->from)
596 >        continue;
597 >
598 >    if (IsCapable(server, CAP_TS6) && HasID(source_p))
599 >      sendto_one(server, ":%s UID %s %d %lu %s %s %s %s %s :%s",
600                   source_p->servptr->id,
601                   source_p->name, source_p->hopcount+1,
602                   (unsigned long)source_p->tsinfo,
603                   ubuf, source_p->username, source_p->host,
604                   (MyClient(source_p) && IsIPSpoof(source_p)) ?
605                   "0" : source_p->sockhost, source_p->id, source_p->info);
622    }
606      else
607 <    {
625 <      sendto_one(uplink, "NICK %s %d %lu %s %s %s %s :%s",
607 >      sendto_one(server, "NICK %s %d %lu %s %s %s %s :%s",
608                   source_p->name, source_p->hopcount+1,
609                   (unsigned long)source_p->tsinfo,
610                   ubuf, source_p->username, source_p->host,
611                   source_p->servptr->name, source_p->info);
630    }
631  }
632  else
633  {
634    DLINK_FOREACH(server_node, serv_list.head)
635    {
636      struct Client *server = server_node->data;
637
638      if (IsCapable(server, CAP_LL) || server == client_p)
639        continue;
640
641      if (IsCapable(server, CAP_TS6) && HasID(source_p))
642        sendto_one(server, ":%s UID %s %d %lu %s %s %s %s %s :%s",
643                   source_p->servptr->id,
644                   source_p->name, source_p->hopcount+1,
645                   (unsigned long)source_p->tsinfo,
646                   ubuf, source_p->username, source_p->host,
647                   (MyClient(source_p) && IsIPSpoof(source_p)) ?
648                   "0" : source_p->sockhost, source_p->id, source_p->info);
649      else
650        sendto_one(server, "NICK %s %d %lu %s %s %s %s :%s",
651                   source_p->name, source_p->hopcount+1,
652                   (unsigned long)source_p->tsinfo,
653                   ubuf, source_p->username, source_p->host,
654                   source_p->servptr->name, source_p->info);
655    }
612    }
613   }
614  
# Line 672 | Line 628 | valid_hostname(const char *hostname)
628  
629    assert(p != NULL);
630  
631 <  if ('.' == *p || ':' == *p)
631 >  if (*p == '.' || *p == ':')
632      return 0;
633  
634 <  while (*p)
679 <  {
634 >  for (; *p; ++p)
635      if (!IsHostChar(*p))
636        return 0;
682    p++;
683  }
637  
638    return 1;
639   }
# Line 704 | Line 657 | valid_username(const char *username)
657  
658    assert(p != NULL);
659  
660 <  if ('~' == *p)
660 >  if (*p == '~')
661      ++p;
662  
663    /* reject usernames that don't start with an alphanum
# Line 718 | Line 671 | valid_username(const char *username)
671    {
672      if ((*p == '.') && ConfigFileEntry.dots_in_ident)
673      {
674 <      dots++;
722 <
723 <      if (dots > ConfigFileEntry.dots_in_ident)
674 >      if (++dots > ConfigFileEntry.dots_in_ident)
675          return 0;
676 <      if (!IsUserChar(p[1]))
676 >      if (!IsUserChar(*(p + 1)))
677          return 0;
678      }
679      else if (!IsUserChar(*p))
# Line 732 | Line 683 | valid_username(const char *username)
683    return 1;
684   }
685  
686 + /* clean_nick_name()
687 + *
688 + * input        - nickname
689 + *              - whether it's a local nick (1) or remote (0)
690 + * output       - none
691 + * side effects - walks through the nickname, returning 0 if erroneous
692 + */
693 + int
694 + valid_nickname(const char *nickname, const int local)
695 + {
696 +  const char *p = nickname;
697 +  assert(nickname && *nickname);
698 +
699 +  /* nicks can't start with a digit or - or be 0 length */
700 +  /* This closer duplicates behaviour of hybrid-6 */
701 +  if (*p == '-' || (IsDigit(*p) && local) || *p == '\0')
702 +    return 0;
703 +
704 +  for (; *p; ++p)
705 +    if (!IsNickChar(*p))
706 +      return 0;
707 +
708 +  return p - nickname <= (NICKLEN - 1);
709 + }
710 +
711   /* report_and_set_user_flags()
712   *
713   * inputs       - pointer to source_p
# Line 786 | Line 762 | report_and_set_user_flags(struct Client
762                 me.name,source_p->name);
763    }
764  
789  /* If this user is exempt from idle time outs */
790  if (IsConfIdlelined(aconf))
791  {
792    SetIdlelined(source_p);
793    sendto_one(source_p,
794               ":%s NOTICE %s :*** You are exempt from idle limits. congrats.",
795               me.name, source_p->name);
796  }
797
765    if (IsConfCanFlood(aconf))
766    {
767      SetCanFlood(source_p);
# Line 804 | Line 771 | report_and_set_user_flags(struct Client
771    }
772   }
773  
807 /* do_local_user()
808 *
809 * inputs       -
810 * output       - NONE
811 * side effects -
812 */
813 void
814 do_local_user(const char *nick, struct Client *client_p, struct Client *source_p,
815              const char *username, const char *host, const char *server,
816              const char *realname)
817 {
818  assert(source_p != NULL);
819  assert(source_p->username != username);
820
821  if (source_p == NULL)
822    return;
823
824  if (!IsUnknown(source_p))
825  {
826    sendto_one(source_p, form_str(ERR_ALREADYREGISTRED),
827               me.name, nick);
828    return;
829  }
830
831  source_p->localClient->registration &= ~REG_NEED_USER;
832
833  /*
834   * don't take the clients word for it, ever
835   */
836  source_p->servptr = &me;
837
838  strlcpy(source_p->info, realname, sizeof(source_p->info));
839
840  if (!IsGotId(source_p))
841  {
842    /* save the username in the client
843     * If you move this you'll break ping cookies..you've been warned
844     */
845    strlcpy(source_p->username, username, sizeof(source_p->username));
846  }
847
848  if (!source_p->localClient->registration)
849    /* NICK already received, now I have USER... */
850    register_local_user(client_p, source_p, source_p->name, username);
851 }
852
774   /* change_simple_umode()
775   *
776   * this callback can be hooked to allow special handling of
# Line 858 | Line 779 | do_local_user(const char *nick, struct C
779   static void *
780   change_simple_umode(va_list args)
781   {
782 +  struct Client *client_p;
783    struct Client *source_p;
784    int what;
785    unsigned int flag;
786  
787 <  va_arg(args, struct Client *);
787 >  client_p = va_arg(args, struct Client *);
788    source_p = va_arg(args, struct Client *);
789    what = va_arg(args, int);
790    flag = va_arg(args, unsigned int);
# Line 908 | Line 830 | set_user_mode(struct Client *client_p, s
830       return;
831    }
832  
833 <  if (source_p != target_p || target_p->from != source_p->from)
833 >  if (source_p != target_p)
834    {
835       sendto_one(source_p, form_str(ERR_USERSDONTMATCH),
836                  me.name, source_p->name);
# Line 966 | Line 888 | set_user_mode(struct Client *client_p, s
888                break;
889  
890              ClearOper(source_p);
969            source_p->umodes &= ~ConfigFileEntry.oper_only_umodes;
891              Count.oper--;
892  
893              if (MyConnect(source_p))
# Line 975 | Line 896 | set_user_mode(struct Client *client_p, s
896  
897                detach_conf(source_p, OPER_TYPE);
898                ClearOperFlags(source_p);
899 +              source_p->umodes &= ~ConfigFileEntry.oper_only_umodes;
900  
901                if ((dm = dlinkFindDelete(&oper_list, source_p)) != NULL)
902                  free_dlink_node(dm);
# Line 986 | Line 908 | set_user_mode(struct Client *client_p, s
908          /* we may not get these,
909           * but they shouldnt be in default
910           */
911 +        case 'r':
912          case ' ' :
913          case '\n':
914          case '\r':
# Line 1018 | Line 941 | set_user_mode(struct Client *client_p, s
941      sendto_one(source_p, form_str(ERR_UMODEUNKNOWNFLAG),
942                 me.name, source_p->name);
943  
944 <  if ((source_p->umodes & UMODE_NCHANGE) && !IsOperN(source_p))
944 >  if (HasUMode(source_p, UMODE_NCHANGE) && !IsOperN(source_p))
945    {
946      sendto_one(source_p, ":%s NOTICE %s :*** You have no admin flag;",
947                 me.name, source_p->name);
948 <    source_p->umodes &= ~UMODE_NCHANGE; /* only tcm's really need this */
948 >    DelUMode(source_p, UMODE_NCHANGE); /* only tcm's really need this */
949    }
950  
951    if (MyConnect(source_p) && (source_p->umodes & UMODE_ADMIN) &&
# Line 1048 | Line 971 | set_user_mode(struct Client *client_p, s
971   /* send_umode()
972   * send the MODE string for user (user) to connection client_p
973   * -avalon
974 + *
975 + * inputs       - client_p
976 + *              - source_p
977 + *              - int old
978 + *              - sendmask mask of modes to send
979 + *              - suplied umode_buf
980 + * output       - NONE
981   */
982   void
983   send_umode(struct Client *client_p, struct Client *source_p,
984             unsigned int old, unsigned int sendmask, char *umode_buf)
985   {
986 +  char *m = umode_buf;
987    int what = 0;
988    unsigned int i;
989    unsigned int flag;
1059  char *m = umode_buf;
990  
991    /*
992     * build a string in umode_buf to represent the change in the user's
# Line 1098 | Line 1028 | send_umode(struct Client *client_p, stru
1028    *m = '\0';
1029  
1030    if (*umode_buf && client_p)
1031 <    sendto_one(client_p, ":%s MODE %s :%s",
1032 <               source_p->name, source_p->name, umode_buf);
1031 >    sendto_one(client_p, ":%s!%s@%s MODE %s :%s",
1032 >               source_p->name, source_p->username,
1033 >               source_p->host, source_p->name, umode_buf);
1034   }
1035  
1036   /* send_umode_out()
# Line 1112 | Line 1043 | void
1043   send_umode_out(struct Client *client_p, struct Client *source_p,
1044                 unsigned int old)
1045   {
1046 <  char buf[IRCD_BUFSIZE];
1046 >  char buf[IRCD_BUFSIZE] = { '\0' };
1047    dlink_node *ptr = NULL;
1048  
1049    send_umode(NULL, source_p, old, IsOperHiddenAdmin(source_p) ?
1050               SEND_UMODES & ~UMODE_ADMIN : SEND_UMODES, buf);
1051  
1052 <  if (*buf)
1052 >  if (buf[0])
1053    {
1054      DLINK_FOREACH(ptr, serv_list.head)
1055      {
1056        struct Client *target_p = ptr->data;
1057  
1058        if ((target_p != client_p) && (target_p != source_p))
1059 <      {
1060 <        if ((!(ServerInfo.hub && IsCapable(target_p, CAP_LL))) ||
1061 <            (target_p->localClient->serverMask &
1131 <             source_p->lazyLinkClientExists))
1132 <          sendto_one(target_p, ":%s MODE %s :%s",
1133 <                     ID_or_name(source_p, target_p),
1134 <                     ID_or_name(source_p, target_p), buf);
1135 <      }
1059 >        sendto_one(target_p, ":%s MODE %s :%s",
1060 >                   ID_or_name(source_p, target_p),
1061 >                   ID_or_name(source_p, target_p), buf);
1062      }
1063    }
1064  
# Line 1180 | Line 1106 | user_welcome(struct Client *source_p)
1106  
1107    if (ConfigFileEntry.short_motd)
1108    {
1109 <    sendto_one(source_p, "NOTICE %s :*** Notice -- motd was last changed at %s",
1110 <               source_p->name, ConfigFileEntry.motd.lastChangedDate);
1109 >    sendto_one(source_p, ":%s NOTICE %s :*** Notice -- motd was last changed at %s",
1110 >               me.name, source_p->name, ConfigFileEntry.motd.lastChangedDate);
1111      sendto_one(source_p,
1112 <               "NOTICE %s :*** Notice -- Please read the motd if you haven't "
1113 <               "read it", source_p->name);
1112 >               ":%s NOTICE %s :*** Notice -- Please read the motd if you haven't "
1113 >               "read it", me.name, source_p->name);
1114      sendto_one(source_p, form_str(RPL_MOTDSTART),
1115                 me.name, source_p->name, me.name);
1116      sendto_one(source_p, form_str(RPL_MOTD),
# Line 1206 | Line 1132 | user_welcome(struct Client *source_p)
1132   static int
1133   check_xline(struct Client *source_p)
1134   {
1135 <  struct ConfItem *conf;
1136 <  struct MatchItem *xconf;
1211 <  const char *reason;
1135 >  struct ConfItem *conf = NULL;
1136 >  const char *reason = NULL;
1137  
1138 <  if ((conf = find_matching_name_conf(XLINE_TYPE, source_p->info,
1139 <                                      NULL, NULL, 0)) != NULL)
1138 >  if ((conf = find_matching_name_conf(XLINE_TYPE, source_p->info, NULL, NULL, 0)) ||
1139 >      (conf = find_matching_name_conf(RXLINE_TYPE, source_p->info, NULL, NULL, 0)))
1140    {
1141 <    xconf = map_to_conf(conf);
1142 <    xconf->count++;
1141 >    struct MatchItem *reg = map_to_conf(conf);
1142 >
1143 >    ++reg->count;
1144  
1145 <    if (xconf->reason != NULL)
1146 <      reason = xconf->reason;
1145 >    if (reg->reason != NULL)
1146 >      reason = reg->reason;
1147      else
1148        reason = "No Reason";
1149  
# Line 1227 | Line 1153 | check_xline(struct Client *source_p)
1153                           get_client_name(source_p, HIDE_IP),
1154                           source_p->sockhost);
1155  
1156 <    ServerStats->is_ref++;      
1156 >    ++ServerStats.is_ref;
1157      if (REJECT_HOLD_TIME > 0)
1158      {
1159        sendto_one(source_p, ":%s NOTICE %s :Bad user info",
# Line 1243 | Line 1169 | check_xline(struct Client *source_p)
1169    return 0;
1170   }
1171  
1246 static int
1247 check_regexp_xline(struct Client *source_p)
1248 {
1249  struct ConfItem *conf = NULL;
1250  const char *reason = NULL;
1251
1252  if ((conf = find_matching_name_conf(RXLINE_TYPE, source_p->info, NULL, NULL, 0)))
1253  {
1254    struct MatchItem *reg = map_to_conf(conf);
1255
1256    ++reg->count;
1257
1258    if (reg->reason != NULL)
1259      reason = reg->reason;
1260    else
1261      reason = "No Reason";
1262
1263    sendto_realops_flags(UMODE_REJ, L_ALL,
1264                         "X-line (REGEX) Rejecting [%s] [%s], user %s [%s]",
1265                         source_p->info, reason,
1266                         get_client_name(source_p, HIDE_IP),
1267                         source_p->sockhost);
1268
1269    ServerStats->is_ref++;
1270    exit_client(source_p, &me, "Bad user info");
1271    return 1;
1272  }
1273
1274  return 0;
1275 }
1276
1172   /* oper_up()
1173   *
1174   * inputs       - pointer to given client to oper
# Line 1303 | Line 1198 | oper_up(struct Client *source_p)
1198      source_p->umodes |= (UMODE_SERVNOTICE|UMODE_OPERWALL|
1199                           UMODE_WALLOP|UMODE_LOCOPS);
1200  
1201 +  if (!(old & UMODE_INVISIBLE) && IsInvisible(source_p))
1202 +    ++Count.invisi;
1203 +  if ((old & UMODE_INVISIBLE) && !IsInvisible(source_p))
1204 +    --Count.invisi;
1205 +
1206    assert(dlinkFind(&oper_list, source_p) == NULL);
1207    dlinkAdd(source_p, make_dlink_node(), &oper_list);
1208  
# Line 1311 | Line 1211 | oper_up(struct Client *source_p)
1211    SetOFlag(source_p, oconf->port);
1212  
1213    if (IsOperAdmin(source_p) || IsOperHiddenAdmin(source_p))
1214 <    source_p->umodes |= UMODE_ADMIN;
1214 >    AddUMode(source_p, UMODE_ADMIN);
1215    if (!IsOperN(source_p))
1216 <    source_p->umodes &= ~UMODE_NCHANGE;
1216 >    DelUMode(source_p, UMODE_NCHANGE);
1217  
1218    sendto_realops_flags(UMODE_ALL, L_ALL, "%s (%s@%s) is now an operator",
1219                         source_p->name, source_p->username, source_p->host);
# Line 1324 | Line 1224 | oper_up(struct Client *source_p)
1224    send_message_file(source_p, &ConfigFileEntry.opermotd);
1225   }
1226  
1227 < /*
1228 < * Quick and dirty UID code for new proposed SID on EFnet
1229 < *
1230 < */
1227 > static char new_uid[TOTALSIDUID + 1];     /* allow for \0 */
1228 >
1229 > int
1230 > valid_sid(const char *sid)
1231 > {
1232 >  if (strlen(sid) == IRC_MAXSID)
1233 >    if (IsDigit(*sid))
1234 >      if (IsAlNum(*(sid + 1)) && IsAlNum(*(sid + 2)))
1235 >        return 1;
1236  
1237 < static char new_uid[TOTALSIDUID+1];     /* allow for \0 */
1238 < static void add_one_to_uid(int i);
1237 >  return 0;
1238 > }
1239  
1240   /*
1241   * init_uid()
# Line 1348 | Line 1253 | init_uid(void)
1253  
1254    memset(new_uid, 0, sizeof(new_uid));
1255  
1256 <  if (ServerInfo.sid != NULL)
1257 <  {
1353 <    memcpy(new_uid, ServerInfo.sid, IRCD_MIN(strlen(ServerInfo.sid),
1354 <                                             IRC_MAXSID));
1355 <    memcpy(&me.id, ServerInfo.sid, IRCD_MIN(strlen(ServerInfo.sid),
1356 <                                            IRC_MAXSID));
1357 <    hash_add_id(&me);
1358 <  }
1256 >  if (!EmptyString(ServerInfo.sid))
1257 >    strlcpy(new_uid, ServerInfo.sid, sizeof(new_uid));
1258  
1259 <  for (i = 0; i < IRC_MAXSID; i++)
1259 >  for (i = 0; i < IRC_MAXSID; ++i)
1260      if (new_uid[i] == '\0')
1261        new_uid[i] = 'A';
1262  
1263 <  /* XXX if IRC_MAXUID != 6, this will have to be rewritten */
1263 >  /* NOTE: if IRC_MAXUID != 6, this will have to be rewritten */
1264    /* Yes nenolod, I have known it was off by one ever since I wrote it
1265     * But *JUST* for you, though, it really doesn't look as *pretty*
1266     * -Dianora
1267     */
1268 <  memcpy(new_uid+IRC_MAXSID, "AAAAA@", IRC_MAXUID);
1268 >  memcpy(new_uid + IRC_MAXSID, "AAAAA@", IRC_MAXUID);
1269  
1270    entering_umode_cb = register_callback("entering_umode", NULL);
1271    umode_cb = register_callback("changing_umode", change_simple_umode);
1373  uid_get_cb = register_callback("uid_get", uid_get);
1374 }
1375
1376 /*
1377 * uid_get
1378 *
1379 * inputs       - struct Client *
1380 * output       - new UID is returned to caller
1381 * side effects - new_uid is incremented by one.
1382 */
1383 static void *
1384 uid_get(va_list args)
1385 {
1386  add_one_to_uid(TOTALSIDUID-1);    /* index from 0 */
1387  return ((void *) new_uid);
1272   }
1273  
1274   /*
# Line 1407 | Line 1291 | add_one_to_uid(int i)
1291        new_uid[i] = 'A';
1292        add_one_to_uid(i-1);
1293      }
1294 <    else new_uid[i] = new_uid[i] + 1;
1294 >    else
1295 >      ++new_uid[i];
1296    }
1297    else
1298    {
1299 <    /* XXX if IRC_MAXUID != 6, this will have to be rewritten */
1299 >    /* NOTE: if IRC_MAXUID != 6, this will have to be rewritten */
1300      if (new_uid[i] == 'Z')
1301 <      memcpy(new_uid+IRC_MAXSID, "AAAAAA", IRC_MAXUID);
1301 >      memcpy(new_uid + IRC_MAXSID, "AAAAAA", IRC_MAXUID);
1302      else
1303 <      new_uid[i] = new_uid[i] + 1;
1303 >      ++new_uid[i];
1304    }
1305   }
1306  
1307   /*
1308 + * uid_get
1309 + *
1310 + * inputs       - struct Client *
1311 + * output       - new UID is returned to caller
1312 + * side effects - new_uid is incremented by one.
1313 + */
1314 + static const char *
1315 + uid_get(void)
1316 + {
1317 +  add_one_to_uid(TOTALSIDUID - 1);    /* index from 0 */
1318 +  return new_uid;
1319 + }
1320 +
1321 + /*
1322   * init_isupport()
1323   *
1324   * input        - NONE
# Line 1433 | Line 1332 | init_isupport(void)
1332  
1333    add_isupport("CALLERID", NULL, -1);
1334    add_isupport("CASEMAPPING", CASEMAP, -1);
1335 +  add_isupport("DEAF", "D", -1);
1336    add_isupport("KICKLEN", NULL, KICKLEN);
1337    add_isupport("MODES", NULL, MAXMODEPARAMS);
1338    add_isupport("NICKLEN", NULL, NICKLEN-1);

Diff Legend

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