aboutsummaryrefslogtreecommitdiffstats
path: root/ll-auth-binding/src/ll-auth-binding.c
blob: 78e9733188b7dad1c467022b7cc2c935dcc5756a (plain)
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
#define _GNU_SOURCE
#include <stdio.h>
#include <string.h>
#include <json-c/json.h>
#include <security/pam_appl.h>
#include <security/pam_misc.h>

#define AFB_BINDING_VERSION 2
#include <afb/afb-binding.h>

static struct pam_conv conv = { misc_conv, NULL };

static char* current_device = NULL;
static char* current_user = NULL;

afb_event evt_login, evt_logout, evt_failed;

/// @brief API's verb 'login'. Try to login a user using a device
/// @param[in] req The request object. Should contains a json with a "device" key.
static void verb_login(struct afb_req req)
{
	struct json_object* args = NULL;
	struct json_object* device_object = NULL;
	pam_handle_t* pamh;
	int r;

	if (current_user)
	{
		AFB_ERROR("[login] the current user must be logged out first!");
		afb_req_fail(req, "current user must be logged out first!", NULL);
		afb_event_broadcast(evt_failed, json_tokener_parse("{\"message\":\"A user is already logged in!\"}"));
		return;
	}

	args = afb_req_json(req);
	if (args == NULL || !json_object_object_get_ex(args, "device", &device_object))
	{
		AFB_ERROR("[login] device must be provided!");
		afb_req_fail(req, "device must be provided!", NULL);
		afb_event_broadcast(evt_failed, json_tokener_parse("{\"message\":\"device must be provided!\"}"));
		return;
	}

	const char* device = json_object_get_string(device_object);

	if ((r = pam_start("agl", NULL, &conv, &pamh)) != PAM_SUCCESS)
	{
		AFB_ERROR("PAM start failed!");
		afb_req_fail(req, "PAM start failed!", NULL);
		afb_event_broadcast(evt_failed, json_tokener_parse("{\"message\":\"PAM start failed!\"}"));
		return;
	}

	char pam_variable[4096] = "DEVICE=";
	strcat(pam_variable, device);
	
	if ((r = pam_putenv(pamh, pam_variable)) != PAM_SUCCESS)
	{
		AFB_ERROR("PAM putenv failed!");
		afb_req_fail(req, "PAM putenv failed!", NULL);
		pam_end(pamh, r);
		afb_event_broadcast(evt_failed, json_tokener_parse("{\"message\":\"PAM putenv failed!\"}"));
		return;
	}

	if ((r = pam_authenticate(pamh, 0)) != PAM_SUCCESS)
	{
		AFB_ERROR("PAM authenticate failed!");
		afb_req_fail(req, "PAM authenticate failed!", NULL);
		pam_end(pamh, r);
		afb_event_broadcast(evt_failed, json_tokener_parse("{\"message\":\"PAM authenticate failed!\"}"));
		return;
	}

	if ((r = pam_acct_mgmt(pamh, 0)) != PAM_SUCCESS)
	{
		AFB_ERROR("PAM acct_mgmt failed!");
		afb_req_fail(req, "PAM acct_mgmt failed!", NULL);
		pam_end(pamh, r);
		afb_event_broadcast(evt_failed, json_tokener_parse("{\"message\":\"PAM acct_mgmt failed!\"}"));
		return;
	}

	const char* pam_user;
	pam_get_item(pamh, PAM_USER, (const void**)&pam_user);
	if (!pam_user)
	{
		AFB_ERROR("[login] No user provided by the PAM module!");
		afb_req_fail(req, "No user provided by the PAM module!", NULL);
		afb_event_broadcast(evt_failed, json_tokener_parse("{\"message\":\"No user provided by the PAM module!\"}"));
		return;
	}

	current_device = strdup(device);
	current_user = strdup(pam_user);

	if ((r = pam_end(pamh, r)) != PAM_SUCCESS)
	{
		AFB_ERROR("PAM end failed!");
		afb_req_fail(req, "PAM end failed!", NULL);
		afb_event_broadcast(evt_failed, json_tokener_parse("{\"message\":\"PAM end failed!\"}"));
		return;
	}

	AFB_INFO("[login] device: %s, user: %s", current_device, current_user);
	json_object* result = json_object_new_object();
	json_object_object_add(result, "device", json_object_new_string(current_device));
	json_object_object_add(result, "user", json_object_new_string(current_user));
	afb_req_success(req, NULL, current_device);
	afb_event_broadcast(evt_login, result);
}

/// @brief API's verb 'lgout'. Try to logout a user using a device
/// @param[in] req The request object. Should contains a json with a "device" key.
static void verb_logout(struct afb_req req)
{
	struct json_object* args = NULL;
	struct json_object* device_object = NULL;

	args = afb_req_json(req);
	if (args == NULL || !json_object_object_get_ex(args, "device", &device_object))
	{
		AFB_INFO("[logout] device must be provided!");
		afb_req_fail(req, "device must be provided!", NULL);
		afb_event_broadcast(evt_failed, json_tokener_parse("{\"message\":\"Device must be provided!\"}"));
		return;
	}

	const char* device = json_object_get_string(device_object);
	if (current_device && !strcmp(device, current_device))
	{
		free(current_device);
		current_device = NULL;
		if (current_user)
		{
			free(current_user);
			current_user = NULL;
			AFB_INFO("[logout] device: %s", device);
			afb_req_success(req, NULL, device);
			afb_event_broadcast(evt_logout, NULL);
			return;
		}
		else
		{
			AFB_INFO("No user was linked to this device!");
			afb_req_fail(req, "No user was linked to this device!", NULL);
			afb_event_broadcast(evt_failed, json_tokener_parse("{\"message\":\"No user was linked to this device!\"}"));
			return;
		}
	}

	AFB_INFO("The unplugged device wasn't the user key!");
	afb_req_fail(req, "The unplugged device wasn't the user key!", NULL);
	afb_event_broadcast(evt_failed, json_tokener_parse("{\"message\":\"The unplugged device wasn't the user key!\"}"));
}

static void verb_getuser(struct afb_req req)
{
	if (!current_device || !current_user)
	{
		afb_req_fail(req, "there is no logged user!", NULL);
		return;
	}

	json_object* result = json_object_new_object();
	json_object_object_add(result, "user", json_object_new_string(current_user));
	json_object_object_add(result, "device", json_object_new_string(current_device));

	afb_req_success(req, result, NULL);
}

int ll_auth_init()
{
	current_user = NULL;
	current_device = NULL;
	evt_login = afb_daemon_make_event("login");
	evt_logout = afb_daemon_make_event("logout");
	evt_failed = afb_daemon_make_event("failed");

	if (afb_event_is_valid(evt_login) && afb_event_is_valid(evt_logout))
		return 0;

	AFB_ERROR("Can't create events");
		return -1;
}

static const afb_verb_v2 _ll_auth_binding_verbs[]= {
	{
		.verb = "login",
		.callback = verb_login,
		.auth = NULL,
		.info = NULL,
		.session = AFB_SESSION_NONE_V2
	},
	{
		.verb = "logout",
		.callback = verb_logout,
		.auth = NULL,
		.info = NULL,
		.session = AFB_SESSION_NONE_V2
	},
	{
		.verb = "getuser",
		.callback = verb_getuser,
		.auth = NULL,
		.info = NULL,
		.session = AFB_SESSION_NONE_V2
	},
	{ .verb=NULL}
};

const struct afb_binding_v2 afbBindingV2 = {
		.api = "ll-auth",
		.specification = NULL,
		.verbs = _ll_auth_binding_verbs,
		.preinit = ll_auth_init,
		.init = NULL,
		.onevent = NULL,
		.noconcurrency = 0
};