]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUG/MINOR: ssl: prevent multiple entries for the same certificate
authorThierry FOURNIER / OZON.IO <thierry.fournier@ozon.io>
Thu, 6 Oct 2016 08:56:48 +0000 (10:56 +0200)
committerWilly Tarreau <w@1wt.eu>
Mon, 24 Oct 2016 17:13:12 +0000 (19:13 +0200)
Today, the certificate are indexed int he SNI tree using their CN and the
list of thier AltNames. So, Some certificates have the same names in the
CN and one of the AltNames entries.

Typically Let's Encrypt duplicate the the DNS name in the CN and the
AltName.

This patch prevents the creation of identical entries in the trees. It
checks the same DNS name and the same SSL context.

If the same certificate is registered two time it will be duplicated.

This patch should be backported in the 1.6 and 1.5 version.

src/ssl_sock.c

index 8a0961a5f4da1fc45f4bced0710652594421c333..3eee173ae2fc3474347f1aeaa744189ff42711f7 100644 (file)
@@ -1688,6 +1688,7 @@ static int ssl_sock_add_cert_sni(SSL_CTX *ctx, struct bind_conf *s, char *name,
 {
        struct sni_ctx *sc;
        int wild = 0, neg = 0;
+       struct ebmb_node *node;
 
        if (*name == '!') {
                neg = 1;
@@ -1703,12 +1704,27 @@ static int ssl_sock_add_cert_sni(SSL_CTX *ctx, struct bind_conf *s, char *name,
        if (*name) {
                int j, len;
                len = strlen(name);
+               for (j = 0; j < len && j < trash.size; j++)
+                       trash.str[j] = tolower(name[j]);
+               if (j >= trash.size)
+                       return order;
+               trash.str[j] = 0;
+
+               /* Check for duplicates. */
+               if (wild)
+                       node = ebst_lookup(&s->sni_w_ctx, trash.str);
+               else
+                       node = ebst_lookup(&s->sni_ctx, trash.str);
+               for (; node; node = ebmb_next_dup(node)) {
+                       sc = ebmb_entry(node, struct sni_ctx, name);
+                       if (sc->ctx == ctx && sc->neg == neg)
+                               return order;
+               }
+
                sc = malloc(sizeof(struct sni_ctx) + len + 1);
                if (!sc)
                        return order;
-               for (j = 0; j < len; j++)
-                       sc->name.key[j] = tolower(name[j]);
-               sc->name.key[len] = 0;
+               memcpy(sc->name.key, trash.str, len + 1);
                sc->ctx = ctx;
                sc->order = order++;
                sc->neg = neg;