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

Comparing:
ircd-hybrid-8/src/client.c (file contents), Revision 1328 by michael, Sat Mar 31 17:43:32 2012 UTC vs.
ircd-hybrid/trunk/src/client.c (file contents), Revision 1785 by michael, Sat Jan 26 22:40:55 2013 UTC

# Line 45 | Line 45
45   #include "s_user.h"
46   #include "dbuf.h"
47   #include "memory.h"
48 + #include "mempool.h"
49   #include "hostmask.h"
49 #include "balloc.h"
50   #include "listener.h"
51   #include "irc_res.h"
52   #include "userhost.h"
53   #include "watch.h"
54 + #include "rng_mt.h"
55  
56   dlink_list listing_client_list = { NULL, NULL, 0 };
57   /* Pointer to beginning of Client list */
# Line 64 | Line 65 | dlink_list oper_list = {NULL, NULL, 0};
65  
66   static EVH check_pings;
67  
68 < static BlockHeap *client_heap  = NULL;
69 < static BlockHeap *lclient_heap = NULL;
68 > static mp_pool_t *client_pool  = NULL;
69 > static mp_pool_t *lclient_pool = NULL;
70  
71   static dlink_list dead_list  = { NULL, NULL, 0};
72   static dlink_list abort_list = { NULL, NULL, 0};
# Line 74 | Line 75 | static dlink_node *eac_next;  /* next ab
75  
76   static void check_pings_list(dlink_list *);
77   static void check_unknowns_list(void);
78 < static void ban_them(struct Client *, struct ConfItem *);
78 > static void ban_them(struct Client *, struct MaskItem *);
79  
80  
81   /* init_client()
# Line 89 | Line 90 | init_client(void)
90    /* start off the check ping event ..  -- adrian
91     * Every 30 seconds is plenty -- db
92     */
93 <  client_heap = BlockHeapCreate("client", sizeof(struct Client), CLIENT_HEAP_SIZE);
94 <  lclient_heap = BlockHeapCreate("local client", sizeof(struct LocalUser), LCLIENT_HEAP_SIZE);
93 >  client_pool = mp_pool_new(sizeof(struct Client), MP_CHUNK_SIZE_CLIENT);
94 >  lclient_pool = mp_pool_new(sizeof(struct LocalUser), MP_CHUNK_SIZE_LCLIENT);
95    eventAdd("check_pings", check_pings, NULL, 5);
96   }
97  
# Line 112 | Line 113 | init_client(void)
113   struct Client *
114   make_client(struct Client *from)
115   {
116 <  struct Client *client_p = BlockHeapAlloc(client_heap);
116 >  struct Client *client_p = mp_pool_get(client_pool);
117 >
118 >  memset(client_p, 0, sizeof(*client_p));
119  
120    if (from == NULL)
121    {
122      client_p->from                      = client_p; /* 'from' of local client is self! */
123 <    client_p->localClient               = BlockHeapAlloc(lclient_heap);
123 >    client_p->localClient               = mp_pool_get(lclient_pool);
124 >
125 >    memset(client_p->localClient, 0, sizeof(*client_p->localClient));
126 >
127      client_p->localClient->since        = CurrentTime;
128      client_p->localClient->lasttime     = CurrentTime;
129      client_p->localClient->firsttime    = CurrentTime;
# Line 129 | Line 135 | make_client(struct Client *from)
135    else
136      client_p->from = from; /* 'from' of local client is self! */
137  
138 +  client_p->idhnext = client_p;
139    client_p->hnext  = client_p;
140    client_p->status = STAT_UNKNOWN;
141    strcpy(client_p->username, "unknown");
142 +  strcpy(client_p->svid, "0");
143  
144    return client_p;
145   }
# Line 149 | Line 157 | free_client(struct Client *client_p)
157    assert(client_p != NULL);
158    assert(client_p != &me);
159    assert(client_p->hnext == client_p);
160 +  assert(client_p->idhnext == client_p);
161    assert(client_p->channel.head == NULL);
162    assert(dlink_list_length(&client_p->channel) == 0);
163 +  assert(dlink_list_length(&client_p->whowas) == 0);
164 +  assert(!IsServer(client_p) || (IsServer(client_p) && client_p->serv));
165  
155  MyFree(client_p->away);
166    MyFree(client_p->serv);
167  
168    if (MyConnect(client_p))
169    {
170      assert(client_p->localClient->invited.head == NULL);
171      assert(dlink_list_length(&client_p->localClient->invited) == 0);
172 +    assert(dlink_list_length(&client_p->localClient->watches) == 0);
173      assert(IsClosing(client_p) && IsDead(client_p));
174  
175      MyFree(client_p->localClient->response);
# Line 178 | Line 189 | free_client(struct Client *client_p)
189      dbuf_clear(&client_p->localClient->buf_recvq);
190      dbuf_clear(&client_p->localClient->buf_sendq);
191  
192 <    BlockHeapFree(lclient_heap, client_p->localClient);
192 >    mp_pool_release(client_p->localClient);
193    }
194  
195 <  BlockHeapFree(client_heap, client_p);
195 >  mp_pool_release(client_p);
196   }
197  
198   /*
# Line 228 | Line 239 | static void
239   check_pings_list(dlink_list *list)
240   {
241    char scratch[32];        /* way too generous but... */
242 <  struct Client *client_p; /* current local client_p being examined */
243 <  int ping, pingwarn;      /* ping time value from client */
233 <  dlink_node *ptr, *next_ptr;
242 >  int ping = 0;      /* ping time value from client */
243 >  dlink_node *ptr = NULL, *next_ptr = NULL;
244  
245    DLINK_FOREACH_SAFE(ptr, next_ptr, list->head)
246    {
247 <    client_p = ptr->data;
247 >    struct Client *client_p = ptr->data;
248  
249      /*
250      ** Note: No need to notify opers here. It's
# Line 246 | Line 256 | check_pings_list(dlink_list *list)
256        continue;
257      }
258  
249    if (client_p->localClient->reject_delay > 0)
250    {
251      if (client_p->localClient->reject_delay <= CurrentTime)
252        exit_client(client_p, &me, "Rejected");
253      continue;
254    }
255
259      if (!IsRegistered(client_p))
260 <      ping = CONNECTTIMEOUT, pingwarn = 0;
260 >      ping = CONNECTTIMEOUT;
261      else
262 <      ping = get_client_ping(client_p, &pingwarn);
262 >      ping = get_client_ping(&client_p->localClient->confs);
263  
264      if (ping < CurrentTime - client_p->localClient->lasttime)
265      {
# Line 268 | Line 271 | check_pings_list(dlink_list *list)
271           * it is still alive.
272           */
273          SetPingSent(client_p);
271        ClearPingWarning(client_p);
274          client_p->localClient->lasttime = CurrentTime - ping;
275          sendto_one(client_p, "PING :%s", ID_or_name(&me, client_p));
276        }
# Line 282 | Line 284 | check_pings_list(dlink_list *list)
284             */
285            if (IsServer(client_p) || IsHandshake(client_p))
286            {
287 <            sendto_realops_flags(UMODE_ALL, L_ADMIN,
287 >            sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
288                                   "No response from %s, closing link",
289                                   get_client_name(client_p, HIDE_IP));
290 <            sendto_realops_flags(UMODE_ALL, L_OPER,
290 >            sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
291                                   "No response from %s, closing link",
292                                   get_client_name(client_p, MASK_IP));
293              ilog(LOG_TYPE_IRCD, "No response from %s, closing link",
# Line 296 | Line 298 | check_pings_list(dlink_list *list)
298                     (int)(CurrentTime - client_p->localClient->lasttime));
299            exit_client(client_p, &me, scratch);
300          }
299        else if (!IsPingWarning(client_p) && pingwarn > 0 &&
300                 (IsServer(client_p) || IsHandshake(client_p)) &&
301                 CurrentTime - client_p->localClient->lasttime >= ping + pingwarn)
302        {
303          /*
304           * If the server hasn't replied in pingwarn seconds after sending
305           * the PING, notify the opers so that they are aware of the problem.
306           */
307          SetPingWarning(client_p);
308          sendto_realops_flags(UMODE_ALL, L_ADMIN,
309                               "Warning, no response from %s in %d seconds",
310                               get_client_name(client_p, HIDE_IP), pingwarn);
311          sendto_realops_flags(UMODE_ALL, L_OPER,
312                               "Warning, no response from %s in %d seconds",
313                               get_client_name(client_p, MASK_IP), pingwarn);
314          ilog(LOG_TYPE_IRCD, "No response from %s in %d seconds",
315               get_client_name(client_p, HIDE_IP), pingwarn);
316        }
301        }
302      }
303    }
# Line 334 | Line 318 | check_unknowns_list(void)
318    {
319      struct Client *client_p = ptr->data;
320  
337    if (client_p->localClient->reject_delay > 0)
338    {
339      if (client_p->localClient->reject_delay <= CurrentTime)
340        exit_client(client_p, &me, "Rejected");
341      continue;
342    }
343
321      /*
322       * Check UNKNOWN connections - if they have been in this state
323       * for > 30s, close them.
# Line 361 | Line 338 | void
338   check_conf_klines(void)
339   {              
340    struct Client *client_p = NULL;       /* current local client_p being examined */
341 <  struct AccessItem *aconf = NULL;
365 <  struct ConfItem *conf = NULL;
341 >  struct MaskItem *conf = NULL;
342    dlink_node *ptr, *next_ptr;
343  
344    DLINK_FOREACH_SAFE(ptr, next_ptr, local_client_list.head)
# Line 374 | Line 350 | check_conf_klines(void)
350      if (IsDead(client_p) || !IsClient(client_p))
351        continue;
352  
353 <    /* if there is a returned struct ConfItem then kill it */
378 <    if ((aconf = find_dline_conf(&client_p->localClient->ip,
353 >    if ((conf = find_dline_conf(&client_p->localClient->ip,
354                                    client_p->localClient->aftype)) != NULL)
355      {
356 <      if (aconf->status & CONF_EXEMPTDLINE)
356 >      if (conf->type == CONF_EXEMPT)
357          continue;
358  
384      conf = unmap_conf_item(aconf);
359        ban_them(client_p, conf);
360        continue; /* and go examine next fd/client_p */
361      }
362  
363 <    if (ConfigFileEntry.glines && (aconf = find_gline(client_p)))
363 >    if (ConfigFileEntry.glines && (conf = find_gline(client_p)))
364      {
365        if (IsExemptKline(client_p) ||
366            IsExemptGline(client_p))
367        {
368 <        sendto_realops_flags(UMODE_ALL, L_ALL,
368 >        sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
369                               "GLINE over-ruled for %s, client is %sline_exempt",
370                               get_client_name(client_p, HIDE_IP), IsExemptKline(client_p) ? "k" : "g");
371          continue;
372        }
373  
400      conf = unmap_conf_item(aconf);
374        ban_them(client_p, conf);
375        /* and go examine next fd/client_p */    
376        continue;
377      }
378  
379 <    if ((aconf = find_kill(client_p)) != NULL)
379 >    if ((conf = find_kill(client_p)) != NULL)
380      {
408
409      /* if there is a returned struct AccessItem.. then kill it */
381        if (IsExemptKline(client_p))
382        {
383 <        sendto_realops_flags(UMODE_ALL, L_ALL,
383 >        sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
384                               "KLINE over-ruled for %s, client is kline_exempt",
385                               get_client_name(client_p, HIDE_IP));
386          continue;
387        }
388  
418      conf = unmap_conf_item(aconf);
389        ban_them(client_p, conf);
390        continue;
391      }
392  
393 <    /* if there is a returned struct MatchItem then kill it */
424 <    if ((conf = find_matching_name_conf(XLINE_TYPE,  client_p->info,
393 >    if ((conf = find_matching_name_conf(CONF_XLINE,  client_p->info,
394                                          NULL, NULL, 0)) != NULL ||
395 <        (conf = find_matching_name_conf(RXLINE_TYPE, client_p->info,
395 >        (conf = find_matching_name_conf(CONF_RXLINE, client_p->info,
396                                          NULL, NULL, 0)) != NULL)
397      {
398        ban_them(client_p, conf);
# Line 436 | Line 405 | check_conf_klines(void)
405    {
406      client_p = ptr->data;
407  
408 <    if ((aconf = find_dline_conf(&client_p->localClient->ip,
409 <                                  client_p->localClient->aftype)))
408 >    if ((conf = find_dline_conf(&client_p->localClient->ip,
409 >                                 client_p->localClient->aftype)))
410      {
411 <      if (aconf->status & CONF_EXEMPTDLINE)
411 >      if (conf->type == CONF_EXEMPT)
412          continue;
413  
414        exit_client(client_p, &me, "D-lined");
# Line 451 | Line 420 | check_conf_klines(void)
420   * ban_them
421   *
422   * inputs       - pointer to client to ban
423 < *              - pointer to ConfItem
423 > *              - pointer to MaskItem
424   * output       - NONE
425   * side effects - given client_p is banned
426   */
427   static void
428 < ban_them(struct Client *client_p, struct ConfItem *conf)
428 > ban_them(struct Client *client_p, struct MaskItem *conf)
429   {
430    const char *user_reason = NULL;       /* What is sent to user */
462  const char *channel_reason = NULL;    /* What is sent to channel */
463  struct AccessItem *aconf = NULL;
464  struct MatchItem *xconf = NULL;
431    const char *type_string = NULL;
432    const char dline_string[] = "D-line";
433    const char kline_string[] = "K-line";
# Line 470 | Line 436 | ban_them(struct Client *client_p, struct
436  
437    switch (conf->type)
438    {
439 <    case RKLINE_TYPE:
440 <    case KLINE_TYPE:
439 >    case CONF_RKLINE:
440 >    case CONF_KLINE:
441        type_string = kline_string;
476      aconf = map_to_conf(conf);
442        break;
443 <    case DLINE_TYPE:
443 >    case CONF_DLINE:
444        type_string = dline_string;
480      aconf = map_to_conf(conf);
445        break;
446 <    case GLINE_TYPE:
446 >    case CONF_GLINE:
447        type_string = gline_string;
484      aconf = map_to_conf(conf);
448        break;
449 <    case RXLINE_TYPE:
450 <    case XLINE_TYPE:
449 >    case CONF_RXLINE:
450 >    case CONF_XLINE:
451        type_string = xline_string;
452 <      xconf = map_to_conf(conf);
490 <      ++xconf->count;
452 >      ++conf->count;
453        break;
454      default:
455        assert(0);
456        break;
457    }
458  
459 <  if (ConfigFileEntry.kline_with_reason)
498 <  {
499 <    if (aconf != NULL)
500 <      user_reason = aconf->reason ? aconf->reason : type_string;
501 <    if (xconf != NULL)
502 <      user_reason = xconf->reason ? xconf->reason : type_string;
503 <  }
504 <  else
505 <    user_reason = type_string;
459 >  user_reason = conf->reason ? conf->reason : type_string;
460  
461 <  if (ConfigFileEntry.kline_reason != NULL)
508 <    channel_reason = ConfigFileEntry.kline_reason;
509 <  else
510 <    channel_reason = user_reason;
511 <
512 <  sendto_realops_flags(UMODE_ALL, L_ALL, "%s active for %s",
461 >  sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE, "%s active for %s",
462                         type_string, get_client_name(client_p, HIDE_IP));
463  
464    if (IsClient(client_p))
465      sendto_one(client_p, form_str(ERR_YOUREBANNEDCREEP),
466                 me.name, client_p->name, user_reason);
467  
468 <  exit_client(client_p, &me, channel_reason);
468 >  exit_client(client_p, &me, user_reason);
469   }
470  
471   /* update_client_exit_stats()
# Line 538 | Line 487 | update_client_exit_stats(struct Client *
487        --Count.invisi;
488    }
489    else if (IsServer(client_p))
490 <    sendto_realops_flags(UMODE_EXTERNAL, L_ALL, "Server %s split from %s",
490 >    sendto_realops_flags(UMODE_EXTERNAL, L_ALL, SEND_NOTICE,
491 >                         "Server %s split from %s",
492                           client_p->name, client_p->servptr->name);
493  
494    if (splitchecking && !splitmode)
# Line 551 | Line 501 | update_client_exit_stats(struct Client *
501   * output       - return client pointer
502   * side effects - find person by (nick)name
503   */
554 /* XXX - ugly wrapper */
504   struct Client *
505   find_person(const struct Client *client_p, const char *name)
506   {
507 <  struct Client *c2ptr;
507 >  struct Client *c2ptr = NULL;
508  
509    if (IsDigit(*name))
510    {
511      if ((c2ptr = hash_find_id(name)) != NULL)
512      {
513        /* invisible users shall not be found by UID guessing */
514 <      if (HasUMode(c2ptr, UMODE_INVISIBLE) && !IsServer(client_p))
515 <        c2ptr = NULL;
514 >      if (HasUMode(c2ptr, UMODE_INVISIBLE))
515 >        if (!IsServer(client_p) && !HasFlag(client_p, FLAGS_SERVICE))
516 >          c2ptr = NULL;
517      }
518    }
519    else
# Line 632 | Line 582 | get_client_name(const struct Client *cli
582  
583    assert(client != NULL);
584  
585 <  if (!irccmp(client->name, client->host))
585 >  if (!MyConnect(client))
586      return client->name;
587  
588 <  if (ConfigServerHide.hide_server_ips)
589 <    if (IsServer(client) || IsConnecting(client) || IsHandshake(client))
588 >  if (IsServer(client) || IsConnecting(client) || IsHandshake(client))
589 >  {
590 >    if (!irccmp(client->name, client->host))
591 >      return client->name;
592 >    else if (ConfigServerHide.hide_server_ips)
593        type = MASK_IP;
594 +  }
595  
596    if (ConfigFileEntry.hide_spoof_ips)
597      if (type == SHOW_IP && IsIPSpoof(client))
# Line 647 | Line 601 | get_client_name(const struct Client *cli
601    switch (type)
602    {
603      case SHOW_IP:
604 <      if (MyConnect(client))
605 <      {
606 <        snprintf(nbuf, sizeof(nbuf), "%s[%s@%s]",
607 <                 client->name,
654 <                 client->username, client->sockhost);
655 <        break;
656 <      }
604 >      snprintf(nbuf, sizeof(nbuf), "%s[%s@%s]",
605 >               client->name,
606 >               client->username, client->sockhost);
607 >      break;
608      case MASK_IP:
609 <      snprintf(nbuf, sizeof(nbuf), "%s[%s@255.255.255.255]",
610 <               client->name, client->username);
609 >      if (client->localClient->aftype == AF_INET)
610 >        snprintf(nbuf, sizeof(nbuf), "%s[%s@255.255.255.255]",
611 >                 client->name, client->username);
612 >      else
613 >        snprintf(nbuf, sizeof(nbuf), "%s[%s@ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff]",
614 >                 client->name, client->username);
615        break;
616      default:
617        snprintf(nbuf, sizeof(nbuf), "%s[%s@%s]",
# Line 704 | Line 659 | exit_one_client(struct Client *source_p,
659       * that the client can show the "**signoff" message).
660       * (Note: The notice is to the local clients *only*)
661       */
662 <    sendto_common_channels_local(source_p, 0, ":%s!%s@%s QUIT :%s",
662 >    sendto_common_channels_local(source_p, 0, 0, ":%s!%s@%s QUIT :%s",
663                                   source_p->name, source_p->username,
664                                   source_p->host, quitmsg);
665      DLINK_FOREACH_SAFE(lp, next_lp, source_p->channel.head)
# Line 774 | Line 729 | recurse_send_quits(struct Client *origin
729   {
730    dlink_node *ptr, *next;
731    struct Client *target_p;
777  int hidden = match(me.name, source_p->name); /* XXX */
732  
733    assert(to != source_p);  /* should be already removed from serv_list */
734  
735    /* If this server can handle quit storm (QS) removal
736     * of dependents, just send the SQUIT
783   *
784   * Always check *all* dependent servers if some of them are
785   * hidden behind fakename. If so, send out the QUITs -adx
737     */
738 <  if (hidden || !IsCapable(to, CAP_QS))
738 >  if (!IsCapable(to, CAP_QS))
739      DLINK_FOREACH_SAFE(ptr, next, source_p->serv->client_list.head)
740      {
741        target_p = ptr->data;
# Line 795 | Line 746 | recurse_send_quits(struct Client *origin
746      recurse_send_quits(original_source_p, ptr->data, from, to,
747                         comment, splitstr);
748  
749 <  if (!hidden && ((source_p == original_source_p && to != from) ||
750 <                  !IsCapable(to, CAP_QS)))
749 >  if ((source_p == original_source_p && to != from) ||
750 >                  !IsCapable(to, CAP_QS))
751    {
752      /* don't use a prefix here - we have to be 100% sure the message
753       * will be accepted without Unknown prefix etc.. */
# Line 885 | Line 836 | exit_client(struct Client *source_p, str
836        source_p->localClient->auth = NULL;
837      }
838  
839 <    /* This source_p could have status of one of STAT_UNKNOWN, STAT_CONNECTING
839 >    /*
840 >     * This source_p could have status of one of STAT_UNKNOWN, STAT_CONNECTING
841       * STAT_HANDSHAKE or STAT_UNKNOWN
842       * all of which are lumped together into unknown_list
843       *
# Line 904 | Line 856 | exit_client(struct Client *source_p, str
856        Count.local--;
857  
858        if (HasUMode(source_p, UMODE_OPER))
907      {
859          if ((m = dlinkFindDelete(&oper_list, source_p)) != NULL)
860            free_dlink_node(m);
910      }
861  
862        assert(dlinkFind(&local_client_list, source_p));
863        dlinkDelete(&source_p->localClient->lclient_node, &local_client_list);
# Line 916 | Line 866 | exit_client(struct Client *source_p, str
866          free_list_task(source_p->localClient->list_task, source_p);
867  
868        watch_del_watch_list(source_p);
869 <      sendto_realops_flags(UMODE_CCONN, L_ALL, "Client exiting: %s (%s@%s) [%s] [%s]",
869 >      sendto_realops_flags(UMODE_CCONN, L_ALL, SEND_NOTICE,
870 >                           "Client exiting: %s (%s@%s) [%s] [%s]",
871                             source_p->name, source_p->username, source_p->host, comment,
872                             ConfigFileEntry.hide_spoof_ips && IsIPSpoof(source_p) ?
873                             "255.255.255.255" : source_p->sockhost);
874 <      sendto_realops_flags(UMODE_CCONN_FULL, L_ALL, "CLIEXIT: %s %s %s %s 0 %s",
874 >      sendto_realops_flags(UMODE_CCONN_FULL, L_ALL, SEND_NOTICE,
875 >                           "CLIEXIT: %s %s %s %s 0 %s",
876                             source_p->name,
877                             source_p->username,
878                             source_p->host,
# Line 934 | Line 886 | exit_client(struct Client *source_p, str
886             source_p->localClient->send.bytes>>10,
887             source_p->localClient->recv.bytes>>10);
888      }
889 <
938 <    /* As soon as a client is known to be a server of some sort
939 <     * it has to be put on the serv_list, or SJOIN's to this new server
940 <     * from the connect burst will not be seen.
941 <     * XXX - TBV.  This is not true. The only place where we put a server on
942 <     * serv_list is in server_estab right now after registration process.
943 <     * And only after this, a burst is sent to the remote server, i.e. we never
944 <     * send a burst to STAT_CONNECTING, or STAT_HANDSHAKE. This will need
945 <     * more investigation later on, but for now, it's not a problem after all.
946 <     */
947 <    if (IsServer(source_p) || IsConnecting(source_p) ||
948 <        IsHandshake(source_p))
889 >    else if (IsServer(source_p))
890      {
891 <      if (dlinkFind(&serv_list, source_p))
892 <      {
952 <        dlinkDelete(&source_p->localClient->lclient_node, &serv_list);
953 <        unset_chcap_usage_counts(source_p);
954 <      }
891 >      assert(Count.myserver > 0);
892 >      --Count.myserver;
893  
894 <      if (IsServer(source_p))
895 <        Count.myserver--;
894 >      assert(dlinkFind(&serv_list, source_p));
895 >      dlinkDelete(&source_p->localClient->lclient_node, &serv_list);
896 >      unset_chcap_usage_counts(source_p);
897      }
898  
899      if (!IsDead(source_p))
# Line 1005 | Line 944 | exit_client(struct Client *source_p, str
944  
945      if (source_p->servptr == &me)
946      {
947 <      sendto_realops_flags(UMODE_ALL, L_ALL,
947 >      sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
948                             "%s was connected for %d seconds.  %llu/%llu sendK/recvK.",
949                             source_p->name, (int)(CurrentTime - source_p->localClient->firsttime),
950                             source_p->localClient->send.bytes >> 10,
# Line 1018 | Line 957 | exit_client(struct Client *source_p, str
957    }
958    else if (IsClient(source_p) && !HasFlag(source_p, FLAGS_KILLED))
959    {
960 <    sendto_server(from->from, NULL, CAP_TS6, NOCAPS,
960 >    sendto_server(from->from, CAP_TS6, NOCAPS,
961                    ":%s QUIT :%s", ID(source_p), comment);
962 <    sendto_server(from->from, NULL, NOCAPS, CAP_TS6,
962 >    sendto_server(from->from, NOCAPS, CAP_TS6,
963                    ":%s QUIT :%s", source_p->name, comment);
964    }
965  
# Line 1084 | Line 1023 | dead_link_on_read(struct Client *client_
1023      if (error == 0)
1024      {
1025        /* Admins get the real IP */
1026 <      sendto_realops_flags(UMODE_ALL, L_ADMIN,
1026 >      sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
1027                             "Server %s closed the connection",
1028                             get_client_name(client_p, SHOW_IP));
1029  
1030        /* Opers get a masked IP */
1031 <      sendto_realops_flags(UMODE_ALL, L_OPER,
1031 >      sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
1032                             "Server %s closed the connection",
1033                             get_client_name(client_p, MASK_IP));
1034  
# Line 1104 | Line 1043 | dead_link_on_read(struct Client *client_
1043                     get_client_name(client_p, MASK_IP), current_error);
1044      }
1045  
1046 <    sendto_realops_flags(UMODE_ALL, L_ALL,
1046 >    sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
1047                           "%s had been connected for %d day%s, %2d:%02d:%02d",
1048                           client_p->name, connected/86400,
1049                           (connected/86400 == 1) ? "" : "s",
# Line 1136 | Line 1075 | exit_aborted_clients(void)
1075  
1076      if (target_p == NULL)
1077      {
1078 <      sendto_realops_flags(UMODE_ALL, L_ALL,
1078 >      sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
1079                             "Warning: null client on abort_list!");
1080        dlinkDelete(ptr, &abort_list);
1081        free_dlink_node(ptr);
# Line 1188 | Line 1127 | find_accept(const char *nick, const char
1127    {
1128      struct split_nuh_item *accept_p = ptr->data;
1129  
1130 <    if (cmpfunc(accept_p->nickptr, nick) == do_match &&
1131 <        cmpfunc(accept_p->userptr, user) == do_match &&
1132 <        cmpfunc(accept_p->hostptr, host) == do_match)
1130 >    if (!cmpfunc(accept_p->nickptr, nick) &&
1131 >        !cmpfunc(accept_p->userptr, user) &&
1132 >        !cmpfunc(accept_p->hostptr, host))
1133        return accept_p;
1134    }
1135  
# Line 1236 | Line 1175 | del_all_accepts(struct Client *client_p)
1175    DLINK_FOREACH_SAFE(ptr, next_ptr, client_p->localClient->acceptlist.head)
1176      del_accept(ptr->data, client_p);
1177   }
1178 +
1179 + unsigned int
1180 + idle_time_get(const struct Client *source_p, const struct Client *target_p)
1181 + {
1182 +  unsigned int idle = 0;
1183 +  unsigned int min_idle = 0;
1184 +  unsigned int max_idle = 0;
1185 +  struct ClassItem *class = get_class_ptr(&target_p->localClient->confs);
1186 +
1187 +  if (!(class->flags & CLASS_FLAGS_FAKE_IDLE) || target_p == source_p)
1188 +    return CurrentTime - target_p->localClient->last_privmsg;
1189 +  if (HasUMode(source_p, UMODE_OPER) &&
1190 +      !(class->flags & CLASS_FLAGS_HIDE_IDLE_FROM_OPERS))
1191 +    return CurrentTime - target_p->localClient->last_privmsg;
1192 +
1193 +  min_idle = class->min_idle;
1194 +  max_idle = class->max_idle;
1195 +
1196 +  if (min_idle == max_idle)
1197 +    return min_idle;
1198 +
1199 +  if (class->flags & CLASS_FLAGS_RANDOM_IDLE)
1200 +    idle = genrand_int32();
1201 +  else
1202 +    idle = CurrentTime - target_p->localClient->last_privmsg;
1203 +
1204 +  if (max_idle == 0)
1205 +    idle = 0;
1206 +  else
1207 +    idle %= max_idle;
1208 +
1209 +  if (idle < min_idle)
1210 +    idle = min_idle + (idle % (max_idle - min_idle));
1211 +
1212 +  return idle;
1213 + }

Diff Legend

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