/*
- * 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
static gchar *base_dn;
static gchar *users_ou;
static gchar *groups_ou;
+static gchar *starttls;
static gchar *host;
static gchar *host_ssh;
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
users_ou = NULL;
groups_ou = NULL;
user_field = NULL;
+ starttls = NULL;
#ifdef HAVE_LIBZAKCONFI
/* the first and only parameters must be a ZakConfi object */
users_ou = NULL;
groups_ou = NULL;
user_field = NULL;
+ starttls = NULL;
}
}
}
}
}
}
+
+ 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;
+ }
+ }
}
}
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)