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

Comparing:
ircd-hybrid-7.2/src/s_bsd.c (file contents), Revision 1001 by michael, Sat Aug 29 22:44:44 2009 UTC vs.
ircd-hybrid/trunk/src/s_bsd.c (file contents), Revision 1649 by michael, Sat Nov 10 19:27:13 2012 UTC

# Line 26 | Line 26
26   #include <netinet/in_systm.h>
27   #include <netinet/ip.h>
28   #include <netinet/tcp.h>
29 + #include "list.h"
30   #include "fdlist.h"
31   #include "s_bsd.h"
32   #include "client.h"
32 #include "common.h"
33   #include "dbuf.h"
34   #include "event.h"
35   #include "irc_string.h"
36 #include "irc_getnameinfo.h"
37 #include "irc_getaddrinfo.h"
36   #include "ircd.h"
39 #include "list.h"
37   #include "listener.h"
38   #include "numeric.h"
39   #include "packet.h"
40   #include "irc_res.h"
44 #include "inet_misc.h"
41   #include "restart.h"
42   #include "s_auth.h"
43 < #include "s_conf.h"
44 < #include "s_log.h"
43 > #include "conf.h"
44 > #include "log.h"
45   #include "s_serv.h"
46   #include "send.h"
47   #include "memory.h"
# Line 58 | Line 54 | static const char *comm_err_str[] = { "C
54  
55   struct Callback *setup_socket_cb = NULL;
56  
57 < static void comm_connect_callback(fde_t *fd, int status);
57 > static void comm_connect_callback(fde_t *, int);
58   static PF comm_connect_timeout;
59   static void comm_connect_dns_callback(void *, const struct irc_ssaddr *, const char *);
60   static PF comm_connect_tryconnect;
# Line 133 | Line 129 | report_error(int level, const char* text
129   {
130    who = (who) ? who : "";
131  
132 <  sendto_realops_flags(UMODE_DEBUG, level, text, who, strerror(error));
133 <  log_oper_action(LOG_IOERR_TYPE, NULL, "%s %s %s\n", who, text, strerror(error));
134 <  ilog(L_ERROR, text, who, strerror(error));
132 >  sendto_realops_flags(UMODE_DEBUG, level, SEND_NOTICE,
133 >                       text, who, strerror(error));
134 >  ilog(LOG_TYPE_IRCD, text, who, strerror(error));
135   }
136  
137   /*
# Line 181 | Line 177 | init_comm(void)
177   void
178   close_connection(struct Client *client_p)
179   {
180 <  struct ConfItem *conf;
185 <  struct AccessItem *aconf;
186 <  struct ClassItem *aclass;
180 >  dlink_node *ptr = NULL;
181  
182 <  assert(NULL != client_p);
182 >  assert(client_p);
183  
184    if (!IsDead(client_p))
185    {
# Line 198 | Line 192 | close_connection(struct Client *client_p
192      send_queued_write(client_p);
193    }
194  
195 <  if (IsServer(client_p))
195 >  if (IsClient(client_p))
196 >  {
197 >    ++ServerStats.is_cl;
198 >    ServerStats.is_cbs += client_p->localClient->send.bytes;
199 >    ServerStats.is_cbr += client_p->localClient->recv.bytes;
200 >    ServerStats.is_cti += CurrentTime - client_p->localClient->firsttime;
201 >  }
202 >  else if (IsServer(client_p))
203    {
204      ++ServerStats.is_sv;
205      ServerStats.is_sbs += client_p->localClient->send.bytes;
206      ServerStats.is_sbr += client_p->localClient->recv.bytes;
207 <    ServerStats.is_sti += CurrentTime - client_p->firsttime;
207 >    ServerStats.is_sti += CurrentTime - client_p->localClient->firsttime;
208  
209 <    /* XXX Does this even make any sense at all anymore?
209 <     * scheduling a 'quick' reconnect could cause a pile of
210 <     * nick collides under TSora protocol... -db
211 <     */
212 <    /*
213 <     * If the connection has been up for a long amount of time, schedule
214 <     * a 'quick' reconnect, else reset the next-connect cycle.
215 <     */
216 <    if ((conf = find_conf_exact(SERVER_TYPE,
217 <                                  client_p->name, client_p->username,
218 <                                  client_p->host)))
209 >    DLINK_FOREACH(ptr, server_items.head)
210      {
211 +      struct MaskItem *conf = ptr->data;
212 +
213 +      if (irccmp(conf->name, client_p->name))
214 +        continue;
215 +
216        /*
217 <       * Reschedule a faster reconnect, if this was a automatically
218 <       * connected configuration entry. (Note that if we have had
223 <       * a rehash in between, the status has been changed to
224 <       * CONF_ILLEGAL). But only do this if it was a "good" link.
217 >       * Reset next-connect cycle of all connect{} blocks that match
218 >       * this servername.
219         */
220 <      aconf = (struct AccessItem *)map_to_conf(conf);
227 <      aclass = (struct ClassItem *)map_to_conf(aconf->class_ptr);
228 <      aconf->hold = time(NULL);
229 <      aconf->hold += (aconf->hold - client_p->since > HANGONGOODLINK) ?
230 <        HANGONRETRYDELAY : ConFreq(aclass);
231 <      if (nextconnect > aconf->hold)
232 <        nextconnect = aconf->hold;
220 >      conf->until = CurrentTime + conf->class->con_freq;
221      }
222    }
235  else if (IsClient(client_p))
236  {
237    ++ServerStats.is_cl;
238    ServerStats.is_cbs += client_p->localClient->send.bytes;
239    ServerStats.is_cbr += client_p->localClient->recv.bytes;
240    ServerStats.is_cti += CurrentTime - client_p->firsttime;
241  }
223    else
224      ++ServerStats.is_ni;
225  
# Line 254 | Line 235 | close_connection(struct Client *client_p
235    if (client_p->localClient->fd.flags.open)
236      fd_close(&client_p->localClient->fd);
237  
257  if (HasServlink(client_p))
258  {
259    if (client_p->localClient->ctrlfd.flags.open)
260      fd_close(&client_p->localClient->ctrlfd);
261  }
262
238    dbuf_clear(&client_p->localClient->buf_sendq);
239    dbuf_clear(&client_p->localClient->buf_recvq);
240    
241    MyFree(client_p->localClient->passwd);
242 <  detach_conf(client_p, CONF_TYPE);
242 >  detach_conf(client_p, CONF_CLIENT|CONF_OPER|CONF_SERVER);
243    client_p->from = NULL; /* ...this should catch them! >:) --msa */
244   }
245  
# Line 310 | Line 285 | ssl_handshake(int fd, struct Client *cli
285   void
286   add_connection(struct Listener *listener, struct irc_ssaddr *irn, int fd)
287   {
288 <  struct Client *new_client;
314 <
315 <  assert(NULL != listener);
316 <
317 <  new_client = make_client(NULL);
288 >  struct Client *new_client = make_client(NULL);
289  
290    fd_open(&new_client->localClient->fd, fd, 1,
291            (listener->flags & LISTENER_SSL) ?
292            "Incoming SSL connection" : "Incoming connection");
293  
294 <  /*
294 >  /*
295     * copy address to 'sockhost' as a string, copy it to host too
296     * so we have something valid to put into error messages...
297     */
298    memcpy(&new_client->localClient->ip, irn, sizeof(struct irc_ssaddr));
299  
300 <  irc_getnameinfo((struct sockaddr*)&new_client->localClient->ip,
301 <        new_client->localClient->ip.ss_len,  new_client->sockhost,
302 <        HOSTIPLEN, NULL, 0, NI_NUMERICHOST);
300 >  getnameinfo((struct sockaddr *)&new_client->localClient->ip,
301 >              new_client->localClient->ip.ss_len, new_client->sockhost,
302 >              sizeof(new_client->sockhost), NULL, 0, NI_NUMERICHOST);
303    new_client->localClient->aftype = new_client->localClient->ip.ss.ss_family;
333 #ifdef IPV6
334  if (new_client->sockhost[0] == ':')
335    strlcat(new_client->host, "0", HOSTLEN+1);
304  
305 <  if (new_client->localClient->aftype == AF_INET6 &&
338 <      ConfigFileEntry.dot_in_ip6_addr == 1)
305 >  if (new_client->sockhost[0] == ':' && new_client->sockhost[1] == ':')
306    {
307 <    strlcat(new_client->host, new_client->sockhost,HOSTLEN+1);
308 <    strlcat(new_client->host, ".", HOSTLEN+1);
307 >    strlcpy(new_client->host, "0", sizeof(new_client->host));
308 >    strlcpy(new_client->host+1, new_client->sockhost, sizeof(new_client->host)-1);
309 >    memmove(new_client->sockhost+1, new_client->sockhost, sizeof(new_client->sockhost)-1);
310 >    new_client->sockhost[0] = '0';
311    }
312    else
313 < #endif
345 <    strlcat(new_client->host, new_client->sockhost,HOSTLEN+1);
313 >    strlcpy(new_client->host, new_client->sockhost, sizeof(new_client->host));
314  
315    new_client->localClient->listener = listener;
316    ++listener->ref_count;
# Line 352 | Line 320 | add_connection(struct Listener *listener
320    {
321      if ((new_client->localClient->fd.ssl = SSL_new(ServerInfo.server_ctx)) == NULL)
322      {
323 <      ilog(L_CRIT, "SSL_new() ERROR! -- %s",
323 >      ilog(LOG_TYPE_IRCD, "SSL_new() ERROR! -- %s",
324             ERR_error_string(ERR_get_error(), NULL));
325  
326        SetDead(new_client);
# Line 529 | Line 497 | comm_connect_tcp(fde_t *fd, const char *
497  
498    snprintf(portname, sizeof(portname), "%d", port);
499  
500 <  if (irc_getaddrinfo(host, portname, &hints, &res))
500 >  if (getaddrinfo(host, portname, &hints, &res))
501    {
502      /* Send the DNS request, for the next level */
503      if (aftype == AF_INET6)
# Line 545 | Line 513 | comm_connect_tcp(fde_t *fd, const char *
513      memcpy(&fd->connect.hostaddr, res->ai_addr, res->ai_addrlen);
514      fd->connect.hostaddr.ss_len = res->ai_addrlen;
515      fd->connect.hostaddr.ss.ss_family = res->ai_family;
516 <    irc_freeaddrinfo(res);
516 >    freeaddrinfo(res);
517      comm_settimeout(fd, timeout*1000, comm_connect_timeout, NULL);
518      comm_connect_tryconnect(fd, NULL);
519    }
# Line 737 | Line 705 | comm_accept(struct Listener *lptr, struc
705     * reserved fd limit, but we can deal with that when comm_open()
706     * also does it. XXX -- adrian
707     */
708 <  newfd = accept(lptr->fd.fd, (struct sockaddr *)pn, (socklen_t *)&addrlen);
708 >  newfd = accept(lptr->fd.fd, (struct sockaddr *)pn, &addrlen);
709    if (newfd < 0)
710      return -1;
711  
# Line 755 | Line 723 | comm_accept(struct Listener *lptr, struc
723  
724   /*
725   * remove_ipv6_mapping() - Removes IPv4-In-IPv6 mapping from an address
726 < * This function should really inspect the struct itself rather than relying
759 < * on inet_pton and inet_ntop.  OSes with IPv6 mapping listening on both
726 > * OSes with IPv6 mapping listening on both
727   * AF_INET and AF_INET6 map AF_INET connections inside AF_INET6 structures
728   *
729   */
# Line 766 | Line 733 | remove_ipv6_mapping(struct irc_ssaddr *a
733   {
734    if (addr->ss.ss_family == AF_INET6)
735    {
736 <    struct sockaddr_in6 *v6;
770 <
771 <    v6 = (struct sockaddr_in6*)addr;
772 <    if (IN6_IS_ADDR_V4MAPPED(&v6->sin6_addr))
736 >    if (IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)addr)->sin6_addr))
737      {
738 <      char v4ip[HOSTIPLEN];
739 <      struct sockaddr_in *v4 = (struct sockaddr_in*)addr;
740 <      inetntop(AF_INET6, &v6->sin6_addr, v4ip, HOSTIPLEN);
741 <      inet_pton(AF_INET, v4ip, &v4->sin_addr);
738 >      struct sockaddr_in6 v6;
739 >      struct sockaddr_in *v4 = (struct sockaddr_in *)addr;
740 >
741 >      memcpy(&v6, addr, sizeof(v6));
742 >      memset(v4, 0, sizeof(struct sockaddr_in));
743 >      memcpy(&v4->sin_addr, &v6.sin6_addr.s6_addr[12], sizeof(v4->sin_addr));
744 >
745        addr->ss.ss_family = AF_INET;
746        addr->ss_len = sizeof(struct sockaddr_in);
747      }

Diff Legend

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