1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
|
/* Template generic NSS service provider. See nss_test.h for usage.
Copyright (C) 2017-2020 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <nss.h>
#include <pthread.h>
#include <string.h>
#include <stdio.h>
#include <alloc_buffer.h>
/* We need to be able to handle NULLs "properly" within the testsuite,
to test known bad data. */
#define alloc_buffer_maybe_copy_string(b,s) s ? alloc_buffer_copy_string (b, s) : NULL;
/* This file is the master template. Other instances of this test
module should define NAME(x) to have their name instead of "test1",
then include this file.
*/
#define NAME_(x,n) _nss_##n##_##x
#ifndef NAME
#define NAME(x) NAME_(x,test1)
#endif
#define NAMESTR__(x) #x
#define NAMESTR_(x) NAMESTR__(x)
#define NAMESTR(x) NAMESTR_(NAME(x))
#include "nss_test.h"
/* -------------------------------------------------- */
/* Default Data. */
static struct passwd default_pwd_data[] =
{
#define PWD(u) \
{ .pw_name = (char *) "name" #u, .pw_passwd = (char *) "*", .pw_uid = u, \
.pw_gid = 100, .pw_gecos = (char *) "*", .pw_dir = (char *) "*", \
.pw_shell = (char *) "*" }
PWD (30),
PWD (100),
PWD (200),
PWD (60),
PWD (20000)
};
#define default_npwd_data \
(sizeof (default_pwd_data) / sizeof (default_pwd_data[0]))
static struct passwd *pwd_data = default_pwd_data;
static int npwd_data = default_npwd_data;
static struct group *grp_data = NULL;
static int ngrp_data = 0;
/* This function will get called, and once per session, look back into
the test case's executable for an init hook function, and call
it. */
static int initted = 0;
static void
init(void)
{
test_tables t;
int i;
if (initted)
return;
if (NAME(init_hook))
{
memset (&t, 0, sizeof (t));
NAME(init_hook)(&t);
if (t.pwd_table)
{
pwd_data = t.pwd_table;
for (i=0; ! PWD_ISLAST(& pwd_data[i]); i++)
;
npwd_data = i;
}
if (t.grp_table)
{
grp_data = t.grp_table;
for (i=0; ! GRP_ISLAST(& grp_data[i]); i++)
;
ngrp_data = i;
}
}
initted = 1;
}
/* -------------------------------------------------- */
/* Password handling. */
static size_t pwd_iter;
#define CURPWD pwd_data[pwd_iter]
static pthread_mutex_t pwd_lock = PTHREAD_MUTEX_INITIALIZER;
enum nss_status
NAME(setpwent) (int stayopen)
{
init();
pwd_iter = 0;
return NSS_STATUS_SUCCESS;
}
enum nss_status
NAME(endpwent) (void)
{
init();
return NSS_STATUS_SUCCESS;
}
static enum nss_status
copy_passwd (struct passwd *result, struct passwd *local,
char *buffer, size_t buflen, int *errnop)
{
struct alloc_buffer buf = alloc_buffer_create (buffer, buflen);
result->pw_name = alloc_buffer_maybe_copy_string (&buf, local->pw_name);
result->pw_passwd = alloc_buffer_maybe_copy_string (&buf, local->pw_passwd);
result->pw_uid = local->pw_uid;
result->pw_gid = local->pw_gid;
result->pw_gecos = alloc_buffer_maybe_copy_string (&buf, local->pw_gecos);
result->pw_dir = alloc_buffer_maybe_copy_string (&buf, local->pw_dir);
result->pw_shell = alloc_buffer_maybe_copy_string (&buf, local->pw_shell);
if (alloc_buffer_has_failed (&buf))
{
*errnop = ERANGE;
return NSS_STATUS_TRYAGAIN;
}
return NSS_STATUS_SUCCESS;
}
enum nss_status
NAME(getpwent_r) (struct passwd *result, char *buffer, size_t buflen,
int *errnop)
{
int res = NSS_STATUS_SUCCESS;
init();
pthread_mutex_lock (&pwd_lock);
if (pwd_iter >= npwd_data)
res = NSS_STATUS_NOTFOUND;
else
{
res = copy_passwd (result, &CURPWD, buffer, buflen, errnop);
++pwd_iter;
}
pthread_mutex_unlock (&pwd_lock);
return res;
}
enum nss_status
NAME(getpwuid_r) (uid_t uid, struct passwd *result, char *buffer,
size_t buflen, int *errnop)
{
init();
for (size_t idx = 0; idx < npwd_data; ++idx)
if (pwd_data[idx].pw_uid == uid)
return copy_passwd (result, &pwd_data[idx], buffer, buflen, errnop);
return NSS_STATUS_NOTFOUND;
}
enum nss_status
NAME(getpwnam_r) (const char *name, struct passwd *result, char *buffer,
size_t buflen, int *errnop)
{
init();
for (size_t idx = 0; idx < npwd_data; ++idx)
if (strcmp (pwd_data[idx].pw_name, name) == 0)
return copy_passwd (result, &pwd_data[idx], buffer, buflen, errnop);
return NSS_STATUS_NOTFOUND;
}
/* -------------------------------------------------- */
/* Group handling. */
static size_t grp_iter;
#define CURGRP grp_data[grp_iter]
static pthread_mutex_t grp_lock = PTHREAD_MUTEX_INITIALIZER;
enum nss_status
NAME(setgrent) (int stayopen)
{
init();
grp_iter = 0;
return NSS_STATUS_SUCCESS;
}
enum nss_status
NAME(endgrent) (void)
{
init();
return NSS_STATUS_SUCCESS;
}
static enum nss_status
copy_group (struct group *result, struct group *local,
char *buffer, size_t buflen, int *errnop)
{
struct alloc_buffer buf = alloc_buffer_create (buffer, buflen);
char **memlist;
int i;
if (local->gr_mem)
{
i = 0;
while (local->gr_mem[i])
++i;
memlist = alloc_buffer_alloc_array (&buf, char *, i + 1);
if (memlist) {
for (i = 0; local->gr_mem[i]; ++i)
memlist[i] = alloc_buffer_maybe_copy_string (&buf, local->gr_mem[i]);
memlist[i] = NULL;
}
result->gr_mem = memlist;
}
else
result->gr_mem = NULL;
result->gr_name = alloc_buffer_maybe_copy_string (&buf, local->gr_name);
result->gr_passwd = alloc_buffer_maybe_copy_string (&buf, local->gr_passwd);
result->gr_gid = local->gr_gid;
if (alloc_buffer_has_failed (&buf))
{
*errnop = ERANGE;
return NSS_STATUS_TRYAGAIN;
}
return NSS_STATUS_SUCCESS;
}
enum nss_status
NAME(getgrent_r) (struct group *result, char *buffer, size_t buflen,
int *errnop)
{
int res = NSS_STATUS_SUCCESS;
init();
pthread_mutex_lock (&grp_lock);
if (grp_iter >= ngrp_data)
res = NSS_STATUS_NOTFOUND;
else
{
res = copy_group (result, &CURGRP, buffer, buflen, errnop);
++grp_iter;
}
pthread_mutex_unlock (&pwd_lock);
return res;
}
enum nss_status
NAME(getgrgid_r) (gid_t gid, struct group *result, char *buffer,
size_t buflen, int *errnop)
{
init();
for (size_t idx = 0; idx < ngrp_data; ++idx)
if (grp_data[idx].gr_gid == gid)
return copy_group (result, &grp_data[idx], buffer, buflen, errnop);
return NSS_STATUS_NOTFOUND;
}
enum nss_status
NAME(getgrnam_r) (const char *name, struct group *result, char *buffer,
size_t buflen, int *errnop)
{
init();
for (size_t idx = 0; idx < ngrp_data; ++idx)
if (strcmp (pwd_data[idx].pw_name, name) == 0)
{
return copy_group (result, &grp_data[idx], buffer, buflen, errnop);
}
return NSS_STATUS_NOTFOUND;
}
|