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

Comparing ircd-hybrid/trunk/src/s_bsd.c (file contents):
Revision 1632 by michael, Sun Nov 4 15:37:10 2012 UTC vs.
Revision 2235 by michael, Sat Jun 15 18:14:12 2013 UTC

# Line 217 | Line 217 | close_connection(struct Client *client_p
217         * Reset next-connect cycle of all connect{} blocks that match
218         * this servername.
219         */
220 <      conf->hold = CurrentTime + conf->class->con_freq;
220 >      conf->until = CurrentTime + conf->class->con_freq;
221      }
222    }
223    else
# Line 251 | Line 251 | close_connection(struct Client *client_p
251   static void
252   ssl_handshake(int fd, struct Client *client_p)
253   {
254 +  X509 *cert = NULL;
255    int ret = SSL_accept(client_p->localClient->fd.ssl);
256 +  int err = SSL_get_error(client_p->localClient->fd.ssl, ret);
257 +
258 +  ilog(LOG_TYPE_IRCD, "SSL Error %d %s", err, ERR_error_string(err, NULL));
259 +
260 +  if ((cert = SSL_get_peer_certificate(client_p->localClient->fd.ssl)))
261 +  {
262 +    int res = SSL_get_verify_result(client_p->localClient->fd.ssl);
263 +    char buf[EVP_MAX_MD_SIZE * 2 + 1] = { '\0' };
264 +    unsigned char md[EVP_MAX_MD_SIZE * 2 + 1] = { '\0' };
265 +
266 +    if (res == X509_V_OK || res == X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN ||
267 +        res == X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE ||
268 +        res == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT)
269 +    {
270 +      unsigned int i = 0, n = 0;
271 +
272 +      if (X509_digest(cert, EVP_sha256(), md, &n))
273 +      {
274 +        for (; i < n; ++i)
275 +          snprintf(buf + 2 * i, 3, "%02X", md[i]);
276 +        client_p->certfp = xstrdup(buf);
277 +      }
278 +    }
279 +    else
280 +      ilog(LOG_TYPE_IRCD, "Client %s!%s@%s gave bad SSL client certificate: %d",
281 +           client_p->name, client_p->username, client_p->host, res);
282 +    X509_free(cert);
283 +  }
284  
285    if (ret <= 0)
286 +  {
287      switch (SSL_get_error(client_p->localClient->fd.ssl, ret))
288      {
289        case SSL_ERROR_WANT_WRITE:
# Line 270 | Line 300 | ssl_handshake(int fd, struct Client *cli
300          exit_client(client_p, client_p, "Error during SSL handshake");
301          return;
302      }
303 +  }
304  
305 <  execute_callback(auth_cb, client_p);
305 >  start_auth(client_p);
306   }
307   #endif
308  
# Line 302 | Line 333 | add_connection(struct Listener *listener
333                sizeof(new_client->sockhost), NULL, 0, NI_NUMERICHOST);
334    new_client->localClient->aftype = new_client->localClient->ip.ss.ss_family;
335  
336 + #ifdef HAVE_LIBGEOIP
337 +  /* XXX IPV6 SUPPORT XXX */
338 +  if (irn->ss.ss_family == AF_INET && geoip_ctx)
339 +  {
340 +    const struct sockaddr_in *v4 = (const struct sockaddr_in *)&new_client->localClient->ip;
341 +    new_client->localClient->country_id = GeoIP_id_by_ipnum(geoip_ctx, (unsigned long)ntohl(v4->sin_addr.s_addr));
342 +  }
343 + #endif
344 +
345    if (new_client->sockhost[0] == ':' && new_client->sockhost[1] == ':')
346    {
347      strlcpy(new_client->host, "0", sizeof(new_client->host));
# Line 333 | Line 373 | add_connection(struct Listener *listener
373    }
374    else
375   #endif
376 <    execute_callback(auth_cb, new_client);
376 >    start_auth(new_client);
377   }
378  
379   /*

Diff Legend

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