]> saetta.ns0.it Git - zakauthe/plugins/smbldap/commitdiff
Added parameter starttls.
authorAndrea Zagli <azagli@libero.it>
Sat, 20 Oct 2018 08:55:35 +0000 (10:55 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 20 Oct 2018 08:55:35 +0000 (10:55 +0200)
src/aute_smbldap.c
tests/Makefile.am
tests/test_confi_tls.conf [new file with mode: 0644]

index 12fa4f9f73c3ad5da66d27d033f1a63970bf058a..98552c0b4262ad4f776ad9671caa0f44ef4da016 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010-2017 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2018 Andrea Zagli <azagli@libero.it>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -52,6 +52,7 @@ static LDAP *ldap;
 static gchar *base_dn;
 static gchar *users_ou;
 static gchar *groups_ou;
+static gchar *starttls;
 
 static gchar *host;
 static gchar *host_ssh;
@@ -186,6 +187,7 @@ get_connection_parameters_from_confi (ZakConfi *confi, gchar **user_field)
        users_ou = zak_confi_path_get_value (confi, "libzakauthe/libzakauthesmbldap/ldap/users_ou");
        groups_ou = zak_confi_path_get_value (confi, "libzakauthe/libzakauthesmbldap/ldap/groups_ou");
        *user_field = zak_confi_path_get_value (confi, "libzakauthe/libzakauthesmbldap/ldap/user_field");
+       starttls = zak_confi_path_get_value (confi, "libzakauthe/libzakauthesmbldap/ldap/starttls");
 
        if (host == NULL
            || strcmp (g_strstrip (host), "") == 0
@@ -379,6 +381,7 @@ static gchar
        users_ou = NULL;
        groups_ou = NULL;
        user_field = NULL;
+       starttls = NULL;
 
 #ifdef HAVE_LIBZAKCONFI
        /* the first and only parameters must be a ZakConfi object */
@@ -393,6 +396,7 @@ static gchar
                                                        users_ou = NULL;
                                                        groups_ou = NULL;
                                                        user_field = NULL;
+                                                       starttls = NULL;
                                                }
                                }
                }
@@ -463,6 +467,17 @@ static gchar
                                                                                }
                                                                }
                                                }
+
+                                       param = g_slist_next (param);
+                                       if (param != NULL && param->data != NULL)
+                                               {
+                                                       starttls = g_strdup ((gchar *)param->data);
+                                                       starttls = g_strstrip (starttls);
+                                                       if (g_strcmp0 (starttls, "") == 0)
+                                                               {
+                                                                       starttls = NULL;
+                                                               }
+                                               }
                                }
                }
 
@@ -520,6 +535,16 @@ static gchar
                        return NULL;
                }
 
+       if (starttls != NULL)
+               {
+                       retldap = ldap_start_tls_s (ldap, NULL, NULL);
+                       if (retldap != LDAP_SUCCESS)
+                               {
+                                       g_warning ("Error on LDAP TLS initialization: %s", ldap_err2string (retldap));
+                                       return NULL;
+                               }
+               }
+
        user_dn = g_strdup_printf ("%s=%s,%s,%s", user_field, username, users_ou, base_dn);
        retldap = ldap_simple_bind_s (ldap, user_dn, password);
        if (retldap != LDAP_SUCCESS)
index eb77b0847c00db4403bed464629d65f111e3e075..4666acc1bc331b1183161a2dbfa7abc84f8a4cd4 100644 (file)
@@ -12,4 +12,5 @@ noinst_PROGRAMS = test \
                   test_confi \
                   test_get_password
 
-EXTRA_DIST = test_confi.conf
+EXTRA_DIST = test_confi.conf \
+             test_confi_tls.conf
diff --git a/tests/test_confi_tls.conf b/tests/test_confi_tls.conf
new file mode 100644 (file)
index 0000000..7f56705
--- /dev/null
@@ -0,0 +1,10 @@
+[libzakauthe]
+plugin=zakauthesmbldap
+
+[libzakauthe/libzakauthesmbldap/ldap]
+host=ldap://localhost:389/
+base_dn=dc=nonatsamba4,dc=it
+users_ou=cn=Users
+groups_ou=ou=Groups
+user_field=cn
+starttls=1