forked from Sectoid/libnss-sqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpasswd.c
171 lines (143 loc) · 4.52 KB
/
passwd.c
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
/*
* Copyright (C) 2007, Sébastien Le Ray
*
* 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
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
* passwd.c : Functions handling passwd entries retrieval.
*/
#include "nss-sqlite.h"
#include "utils.h"
#include <errno.h>
#include <grp.h>
#include <malloc.h>
#include <pwd.h>
#include <string.h>
#include <unistd.h>
/**
* Setup everything needed to retrieve passwd entries.
*/
enum nss_status _nss_sqlite_setpwent(void) {
NSS_DEBUG("Initializing pw functions\n");
return NSS_STATUS_SUCCESS;
}
/*
* Free getpwent resources.
*/
enum nss_status _nss_sqlite_endpwent(void) {
NSS_DEBUG("Finishing pw functions\n");
return NSS_STATUS_SUCCESS;
}
/*
* Return next passwd entry.
* Not implemeted yet.
*/
enum nss_status
_nss_sqlite_getpwent_r(struct passwd *pwbuf, char *buf,
size_t buflen, int *errnop) {
NSS_DEBUG("Getting next pw entry\n");
return NSS_STATUS_UNAVAIL;
}
/**
* Get user info by username.
* Open database connection, fetch the user by name, close the connection.
*/
enum nss_status _nss_sqlite_getpwnam_r(const char* name, struct passwd *pwbuf,
char *buf, size_t buflen, int *errnop) {
sqlite3 *pDb;
struct sqlite3_stmt* pSt;
int res;
uid_t uid;
gid_t gid;
const char* sql = "SELECT uid, gid, shell, homedir FROM passwd WHERE username = ?";
const char* shell;
const char* homedir;
NSS_DEBUG("getpwnam_r: Looking for user %s\n", name);
if(!open_and_prepare(&pDb, &pSt, sql)) {
return NSS_STATUS_UNAVAIL;
}
if(sqlite3_bind_text(pSt, 1, name, -1, SQLITE_STATIC) != SQLITE_OK) {
NSS_DEBUG(sqlite3_errmsg(pDb));
sqlite3_finalize(pSt);
sqlite3_close(pDb);
return NSS_STATUS_UNAVAIL;
}
res = fetch_first(pDb, pSt);
if(res != NSS_STATUS_SUCCESS) {
return res;
}
/* SQLITE_ROW was returned, fetch data */
uid = sqlite3_column_int(pSt, 0);
gid = sqlite3_column_int(pSt, 1);
shell = sqlite3_column_text(pSt, 2);
homedir = sqlite3_column_text(pSt, 3);
res = fill_passwd(pwbuf, buf, buflen, name, "x", uid, gid, "", shell, homedir, errnop);
sqlite3_finalize(pSt);
sqlite3_close(pDb);
NSS_DEBUG("Look successfull !\n");
return res;
}
/*
* Get user by UID.
*/
enum nss_status _nss_sqlite_getpwuid_r(uid_t uid, struct passwd *pwbuf,
char *buf, size_t buflen, int *errnop) {
sqlite3 *pDb;
struct sqlite3_stmt* pSt;
int res;
gid_t gid;
const unsigned char *name;
const unsigned char *shell;
const unsigned char *homedir;
const char *sql = "SELECT username, gid, shell, homedir FROM passwd WHERE uid = ?";
NSS_DEBUG("getpwuid_r: looking for user #%d\n", uid);
if(!open_and_prepare(&pDb, &pSt, sql)) {
return NSS_STATUS_UNAVAIL;
}
if(sqlite3_bind_int(pSt, 1, uid) != SQLITE_OK) {
NSS_DEBUG(sqlite3_errmsg(pDb));
sqlite3_finalize(pSt);
sqlite3_close(pDb);
return NSS_STATUS_UNAVAIL;
}
res = sqlite3_step(pSt);
switch(res) {
/* Something was wrong with locks, try again later. */
case SQLITE_BUSY:
sqlite3_finalize(pSt);
sqlite3_close(pDb);
return NSS_STATUS_TRYAGAIN;
/* No row returned (?) */
case SQLITE_DONE:
sqlite3_finalize(pSt);
sqlite3_close(pDb);
return NSS_STATUS_NOTFOUND;
case SQLITE_ROW:
break;
default:
sqlite3_finalize(pSt);
sqlite3_close(pDb);
return NSS_STATUS_UNAVAIL;
}
name = sqlite3_column_text(pSt, 0);
gid = sqlite3_column_int(pSt, 1);
shell = sqlite3_column_text(pSt, 2);
homedir = sqlite3_column_text(pSt, 3);
fill_passwd(pwbuf, buf, buflen, name, "*", uid, gid, "",
shell, homedir, errnop);
sqlite3_finalize(pSt);
sqlite3_close(pDb);
return NSS_STATUS_SUCCESS;
}