summaryrefslogtreecommitdiff
path: root/source3/torture/nsstest.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-12-06 22:42:27 +0000
committerAndrew Tridgell <tridge@samba.org>2001-12-06 22:42:27 +0000
commit92dc8017338ae18538bdd014361b858818789e35 (patch)
treef788b1dd002dcf390762bd04705a25b63fa21e6b /source3/torture/nsstest.c
parentff925a5afb915265c953069ab7453cd921044525 (diff)
downloadsamba-92dc8017338ae18538bdd014361b858818789e35.tar.gz
samba-92dc8017338ae18538bdd014361b858818789e35.tar.bz2
samba-92dc8017338ae18538bdd014361b858818789e35.zip
allow nsstest to test any nss module
(This used to be commit c531f4773e33cce4b4eb97c8f9147eed02edc2d5)
Diffstat (limited to 'source3/torture/nsstest.c')
-rw-r--r--source3/torture/nsstest.c32
1 files changed, 19 insertions, 13 deletions
diff --git a/source3/torture/nsstest.c b/source3/torture/nsstest.c
index 8b40eaa163..e534f8c70a 100644
--- a/source3/torture/nsstest.c
+++ b/source3/torture/nsstest.c
@@ -22,12 +22,17 @@
#include "includes.h"
static char *so_path = "/lib/libnss_winbind.so";
+static char *nss_name = "winbind";
static int nss_errno;
static void *find_fn(const char *name)
{
+ char s[1024];
static void *h;
void *res;
+
+ snprintf(s,sizeof(s), "_nss_%s_%s", nss_name, name);
+
if (!h) {
h = dlopen(so_path, RTLD_LAZY);
}
@@ -35,9 +40,9 @@ static void *find_fn(const char *name)
printf("Can't open shared library %s\n", so_path);
exit(1);
}
- res = dlsym(h, name);
+ res = dlsym(h, s);
if (!res) {
- printf("Can't find function %s\n", name);
+ printf("Can't find function %s\n", s);
exit(1);
}
return res;
@@ -52,7 +57,7 @@ static void report_nss_error(NSS_STATUS status)
static struct passwd *nss_getpwent(void)
{
NSS_STATUS (*_nss_getpwent_r)(struct passwd *, char *,
- size_t , int *) = find_fn("_nss_winbind_getpwent_r");
+ size_t , int *) = find_fn("getpwent_r");
static struct passwd pwd;
static char buf[1000];
NSS_STATUS status;
@@ -71,7 +76,7 @@ static struct passwd *nss_getpwent(void)
static struct passwd *nss_getpwnam(const char *name)
{
NSS_STATUS (*_nss_getpwnam_r)(const char *, struct passwd *, char *,
- size_t , int *) = find_fn("_nss_winbind_getpwnam_r");
+ size_t , int *) = find_fn("getpwnam_r");
static struct passwd pwd;
static char buf[1000];
NSS_STATUS status;
@@ -90,7 +95,7 @@ static struct passwd *nss_getpwnam(const char *name)
static struct passwd *nss_getpwuid(uid_t uid)
{
NSS_STATUS (*_nss_getpwuid_r)(uid_t , struct passwd *, char *,
- size_t , int *) = find_fn("_nss_winbind_getpwuid_r");
+ size_t , int *) = find_fn("getpwuid_r");
static struct passwd pwd;
static char buf[1000];
NSS_STATUS status;
@@ -108,14 +113,14 @@ static struct passwd *nss_getpwuid(uid_t uid)
static void nss_setpwent(void)
{
- NSS_STATUS (*_nss_setpwent)(void) = find_fn("_nss_winbind_setpwent");
+ NSS_STATUS (*_nss_setpwent)(void) = find_fn("setpwent");
report_nss_error(_nss_setpwent());
}
static void nss_endpwent(void)
{
- NSS_STATUS (*_nss_endpwent)(void) = find_fn("_nss_winbind_endpwent");
+ NSS_STATUS (*_nss_endpwent)(void) = find_fn("endpwent");
report_nss_error(_nss_endpwent());
}
@@ -124,7 +129,7 @@ static void nss_endpwent(void)
static struct group *nss_getgrent(void)
{
NSS_STATUS (*_nss_getgrent_r)(struct group *, char *,
- size_t , int *) = find_fn("_nss_winbind_getgrent_r");
+ size_t , int *) = find_fn("getgrent_r");
static struct group grp;
static char buf[1000];
NSS_STATUS status;
@@ -143,7 +148,7 @@ static struct group *nss_getgrent(void)
static struct group *nss_getgrnam(const char *name)
{
NSS_STATUS (*_nss_getgrnam_r)(const char *, struct group *, char *,
- size_t , int *) = find_fn("_nss_winbind_getgrnam_r");
+ size_t , int *) = find_fn("getgrnam_r");
static struct group grp;
static char buf[1000];
NSS_STATUS status;
@@ -162,7 +167,7 @@ static struct group *nss_getgrnam(const char *name)
static struct group *nss_getgrgid(gid_t gid)
{
NSS_STATUS (*_nss_getgrgid_r)(gid_t , struct group *, char *,
- size_t , int *) = find_fn("_nss_winbind_getgrgid_r");
+ size_t , int *) = find_fn("getgrgid_r");
static struct group grp;
static char buf[1000];
NSS_STATUS status;
@@ -180,14 +185,14 @@ static struct group *nss_getgrgid(gid_t gid)
static void nss_setgrent(void)
{
- NSS_STATUS (*_nss_setgrent)(void) = find_fn("_nss_winbind_setgrent");
+ NSS_STATUS (*_nss_setgrent)(void) = find_fn("setgrent");
report_nss_error(_nss_setgrent());
}
static void nss_endgrent(void)
{
- NSS_STATUS (*_nss_endgrent)(void) = find_fn("_nss_winbind_endgrent");
+ NSS_STATUS (*_nss_endgrent)(void) = find_fn("endgrent");
report_nss_error(_nss_endgrent());
}
@@ -196,7 +201,7 @@ static int nss_initgroups(char *user, gid_t group, gid_t **groups, long int *sta
{
NSS_STATUS (*_nss_initgroups)(char *, gid_t , long int *,
long int *, gid_t **, long int , int *) =
- find_fn("_nss_winbind_initgroups_dyn");
+ find_fn("initgroups_dyn");
NSS_STATUS status;
status = _nss_initgroups(user, group, start, size, groups, 0, &nss_errno);
@@ -294,6 +299,7 @@ static void nss_test_groups(void)
int main(int argc, char *argv[])
{
if (argc > 1) so_path = argv[1];
+ if (argc > 2) nss_name = argv[2];
nss_test_users();
nss_test_groups();