-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorgjson.c
More file actions
269 lines (230 loc) · 9.17 KB
/
orgjson.c
File metadata and controls
269 lines (230 loc) · 9.17 KB
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
/* puavoadmins
* Copyright (C) 2014, 2015 Opinsys
*
* 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, see <http://www.gnu.org/licenses/>.
*/
/* Standard library includes. */
#include <sys/file.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
/* Third-party includes. */
#include <json/json.h>
/* Local includes. */
#include "orgjson.h"
static const char ORGJSON_PATH[] = "/etc/puavo/org.json";
struct orgjson {
struct json_object *root;
struct json_object *owners;
};
struct orgjson *orgjson_load2(const char *const filepath,
struct orgjson_error *const error)
{
struct orgjson *orgjson;
orgjson = malloc(sizeof(struct orgjson));
if (!orgjson) {
if (error) {
error->code = ORGJSON_ERROR_CODE_SYS;
snprintf(error->text, ORGJSON_ERROR_TEXT_SIZE,
"malloc failed: %m");
}
return NULL;
}
orgjson->root = json_object_from_file(filepath);
if (!orgjson->root) {
free(orgjson);
if (error) {
error->code = ORGJSON_ERROR_CODE_JSON;
snprintf(error->text, ORGJSON_ERROR_TEXT_SIZE,
"failed to load %s", filepath);
}
return NULL;
}
if (!json_object_is_type(orgjson->root, json_type_object)) {
json_object_put(orgjson->root);
free(orgjson);
if (error) {
error->code = ORGJSON_ERROR_CODE_JSON;
snprintf(error->text, ORGJSON_ERROR_TEXT_SIZE,
"root object is not an object");
}
return NULL;
}
orgjson->owners = json_object_object_get(orgjson->root, "owners");
if (!orgjson->owners) {
json_object_put(orgjson->root);
free(orgjson);
if (error) {
error->code = ORGJSON_ERROR_CODE_JSON;
snprintf(error->text, ORGJSON_ERROR_TEXT_SIZE,
"owners field is missing");
}
return NULL;
}
if (!json_object_is_type(orgjson->owners, json_type_array)) {
json_object_put(orgjson->root);
free(orgjson);
if (error) {
error->code = ORGJSON_ERROR_CODE_JSON;
snprintf(error->text, ORGJSON_ERROR_TEXT_SIZE,
"owners field is not an array");
}
return NULL;
}
return orgjson;
}
struct orgjson *orgjson_load(struct orgjson_error *const error)
{
struct orgjson *retval;
int lockfd;
lockfd = open("/var/lib/puavoadmins/org.json.lock", O_RDONLY);
if (lockfd < 0) {
if (error) {
error->code = ORGJSON_ERROR_CODE_SYS;
snprintf(error->text, ORGJSON_ERROR_TEXT_SIZE,
"failed to open the lock file: %m");
}
return NULL;
}
if (flock(lockfd, LOCK_SH)) {
if (error) {
error->code = ORGJSON_ERROR_CODE_SYS;
snprintf(error->text, ORGJSON_ERROR_TEXT_SIZE,
"failed to obtain a read-lock: %m");
}
close(lockfd);
return NULL;
}
retval = orgjson_load2(ORGJSON_PATH, error);
if (close(lockfd)) {
if (retval) {
orgjson_free(retval);
}
if (error) {
error->code = ORGJSON_ERROR_CODE_SYS;
snprintf(error->text, ORGJSON_ERROR_TEXT_SIZE,
"failed to close the lock file: %m");
}
return NULL;
}
return retval;
}
void orgjson_free(struct orgjson *const orgjson)
{
if (!orgjson)
return;
if (orgjson->root) {
json_object_put(orgjson->root);
orgjson->root = NULL;
}
free(orgjson);
}
static int orgjson_get_owner_field(struct json_object *const owner,
const char *const key,
const enum json_type type,
struct json_object **resultp,
struct orgjson_error *const error)
{
struct json_object *result;
result = json_object_object_get(owner, key);
if (!result) {
if (error) {
error->code = ORGJSON_ERROR_CODE_JSON;
snprintf(error->text, ORGJSON_ERROR_TEXT_SIZE,
"owner is missing %s field", key);
}
return 0;
}
if (!json_object_is_type(result, type)) {
if (error) {
error->code = ORGJSON_ERROR_CODE_JSON;
snprintf(error->text, ORGJSON_ERROR_TEXT_SIZE,
"owner.%s has invalid type", key);
}
return 0;
}
*resultp = result;
return 1;
}
struct orgjson_owner *orgjson_get_owner(const struct orgjson *const orgjson,
const size_t i,
struct orgjson_owner *const owner,
struct orgjson_error *const error)
{
struct json_object *user;
struct json_object *username;
struct json_object *uid_number;
struct json_object *gid_number;
struct json_object *first_name;
struct json_object *last_name;
struct json_object *ssh_public_key;
user = json_object_array_get_idx(orgjson->owners, i);
if (!user) {
if (error) {
error->code = ORGJSON_ERROR_CODE_JSON;
snprintf(error->text, ORGJSON_ERROR_TEXT_SIZE,
"owners array does not have item at i=%zd", i);
}
return NULL;
}
if (!json_object_is_type(user, json_type_object)) {
if (error) {
error->code = ORGJSON_ERROR_CODE_JSON;
snprintf(error->text, ORGJSON_ERROR_TEXT_SIZE,
"owner (i=%zd) is not not an object", i);
}
return NULL;
}
if (!orgjson_get_owner_field(user, "username", json_type_string,
&username, error))
return NULL;
if (!orgjson_get_owner_field(user, "uid_number", json_type_int,
&uid_number, error))
return NULL;
if (!orgjson_get_owner_field(user, "gid_number", json_type_int,
&gid_number, error))
return NULL;
if (!orgjson_get_owner_field(user, "first_name", json_type_string,
&first_name, error))
return NULL;
if (!orgjson_get_owner_field(user, "last_name", json_type_string,
&last_name, error))
return NULL;
/* ssh_public_key is not mandatory field, it is allowed to be
* missing, null or a string */
ssh_public_key = json_object_object_get(user, "ssh_public_key");
if (ssh_public_key && !json_object_is_type(ssh_public_key, json_type_string)) {
if (error) {
error->code = ORGJSON_ERROR_CODE_JSON;
snprintf(error->text, ORGJSON_ERROR_TEXT_SIZE,
"owner (i=%zd) has invalid ssh_public_key", i);
}
return NULL;
}
owner->username = json_object_get_string(username);
owner->uid_number = json_object_get_int(uid_number);
owner->gid_number = json_object_get_int(gid_number);
owner->first_name = json_object_get_string(first_name);
owner->last_name = json_object_get_string(last_name);
owner->ssh_public_key = ssh_public_key ? json_object_get_string(ssh_public_key) : NULL;
return owner;
}
size_t orgjson_get_owner_count(const struct orgjson *const orgjson)
{
return json_object_array_length(orgjson->owners);
}
int orgjson_exists()
{
return access(ORGJSON_PATH, F_OK) == 0;
}