]> andersk Git - nss_nonlocal.git/blame - nonlocal-shadow.c
Organize #includes
[nss_nonlocal.git] / nonlocal-shadow.c
CommitLineData
f6903667
AK
1/*
2 * nonlocal-shadow.c
3 * shadow database for nss_nonlocal proxy.
4 *
96a1ee0f 5 * Copyright © 2007–2010 Anders Kaseorg <andersk@mit.edu>
f6903667 6 *
96a1ee0f 7 * This file is part of nss_nonlocal.
f6903667 8 *
96a1ee0f
AK
9 * nss_nonlocal is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public License
11 * as published by the Free Software Foundation; either version 2.1 of
12 * the License, or (at your option) any later version.
f6903667 13 *
96a1ee0f
AK
14 * nss_nonlocal is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with nss_nonlocal; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22 * 02110-1301 USA
f6903667
AK
23 */
24
25#define _GNU_SOURCE
dc397f8f 26
f6903667 27#include <sys/types.h>
f6903667 28#include <dlfcn.h>
f6903667 29#include <errno.h>
f6903667 30#include <nss.h>
dc397f8f
AK
31#include <shadow.h>
32#include <stdbool.h>
33#include <stddef.h>
34#include <stdlib.h>
35#include <string.h>
36#include <syslog.h>
f6903667
AK
37
38#include "nsswitch-internal.h"
39#include "nonlocal.h"
40
41
cbb0e3ea
AK
42static service_user *__nss_shadow_nonlocal_database;
43
44static int
45internal_function
46__nss_shadow_nonlocal_lookup(service_user **ni, const char *fct_name,
47 void **fctp)
f6903667 48{
cbb0e3ea
AK
49 if (__nss_shadow_nonlocal_database == NULL
50 && __nss_database_lookup("shadow_nonlocal", NULL, NULL,
51 &__nss_shadow_nonlocal_database) < 0)
52 return -1;
53
54 *ni = __nss_shadow_nonlocal_database;
f6903667 55
cbb0e3ea
AK
56 *fctp = __nss_lookup_function(*ni, fct_name);
57 return 0;
f6903667
AK
58}
59
60
cbb0e3ea 61static service_user *spent_startp, *spent_nip;
f6903667
AK
62static void *spent_fct_start;
63static union {
64 enum nss_status (*l)(struct spwd *pwd, char *buffer, size_t buflen,
65 int *errnop);
66 void *ptr;
67} spent_fct;
68static const char *spent_fct_name = "getspent_r";
69
70enum nss_status
71_nss_nonlocal_setspent(int stayopen)
72{
f6903667 73 enum nss_status status;
cbb0e3ea
AK
74 const struct walk_nss w = {
75 .lookup = &__nss_shadow_nonlocal_lookup, .fct_name = "setspent",
76 .status = &status
77 };
78 const __typeof__(&_nss_nonlocal_setspent) self = NULL;
79#define args (stayopen)
80#include "walk_nss.h"
81#undef args
f6903667
AK
82 if (status != NSS_STATUS_SUCCESS)
83 return status;
84
f6903667 85 if (spent_fct_start == NULL)
cbb0e3ea
AK
86 __nss_shadow_nonlocal_lookup(&spent_startp, spent_fct_name,
87 &spent_fct_start);
88 spent_nip = spent_startp;
f6903667
AK
89 spent_fct.ptr = spent_fct_start;
90 return NSS_STATUS_SUCCESS;
91}
92
93enum nss_status
94_nss_nonlocal_endspent(void)
95{
f6903667 96 enum nss_status status;
cbb0e3ea
AK
97 const struct walk_nss w = {
98 .lookup = &__nss_shadow_nonlocal_lookup, .fct_name = "endspent",
99 .status = &status
100 };
101 const __typeof__(&_nss_nonlocal_endspent) self = NULL;
f6903667
AK
102
103 spent_nip = NULL;
104
cbb0e3ea
AK
105#define args ()
106#include "walk_nss.h"
107#undef args
f6903667
AK
108 return status;
109}
110
111enum nss_status
112_nss_nonlocal_getspent_r(struct spwd *pwd, char *buffer, size_t buflen,
113 int *errnop)
114{
115 enum nss_status status;
9cd080be
AK
116
117 char *nonlocal_ignore = getenv(NONLOCAL_IGNORE_ENV);
118 if (nonlocal_ignore != NULL && nonlocal_ignore[0] != '\0')
119 return NSS_STATUS_UNAVAIL;
120
f6903667
AK
121 if (spent_nip == NULL) {
122 status = _nss_nonlocal_setspent(0);
123 if (status != NSS_STATUS_SUCCESS)
124 return status;
125 }
126 do {
127 if (spent_fct.ptr == NULL)
128 status = NSS_STATUS_UNAVAIL;
129 else
130 status = DL_CALL_FCT(spent_fct.l, (pwd, buffer, buflen, errnop));
131 if (status == NSS_STATUS_TRYAGAIN && *errnop == ERANGE)
132 return status;
133
134 if (status == NSS_STATUS_SUCCESS)
135 return NSS_STATUS_SUCCESS;
136 } while (__nss_next(&spent_nip, spent_fct_name, &spent_fct.ptr, status, 0) == 0);
137
138 spent_nip = NULL;
139 return NSS_STATUS_NOTFOUND;
140}
141
142
143enum nss_status
144_nss_nonlocal_getspnam_r(const char *name, struct spwd *pwd,
145 char *buffer, size_t buflen, int *errnop)
146{
f6903667 147 enum nss_status status;
cbb0e3ea
AK
148 const struct walk_nss w = {
149 .lookup = __nss_shadow_nonlocal_lookup, .fct_name = "getspnam_r",
150 .status = &status, .errnop = errnop
151 };
152 const __typeof__(&_nss_nonlocal_getspnam_r) self = NULL;
153#define args (name, pwd, buffer, buflen, errnop)
154#include "walk_nss.h"
155#undef args
22562df0
AK
156 if (status != NSS_STATUS_SUCCESS)
157 return status;
158
159 if (strcmp(name, pwd->sp_namp) != 0) {
160 syslog(LOG_ERR, "nss_nonlocal: discarding shadow %s from lookup for shadow %s\n", pwd->sp_namp, name);
161 return NSS_STATUS_NOTFOUND;
162 }
163
164 return NSS_STATUS_SUCCESS;
f6903667 165}
This page took 0.129076 seconds and 5 git commands to generate.