aboutsummaryrefslogtreecommitdiffstats
path: root/src/session.c
blob: d08ca759b3b130833e444da26fbdb7f7b57ee768 (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
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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
/*
 * Copyright (C) 2015 "IoT.bzh"
 * Author "Fulup Ar Foll"
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#define _GNU_SOURCE
#include <stdio.h>
#include <time.h>
#include <pthread.h>
#include <stdlib.h>
#include <string.h>
#include <uuid/uuid.h>
#include <assert.h>
#include <errno.h>

#include <json-c/json.h>

#include "session.h"
#include "verbose.h"

#define NOW (time(NULL))

struct client_value
{
	void *value;
	void (*free_value)(void*);
};

struct afb_event_listener_list
{
	struct afb_event_listener_list *next;
	struct afb_event_listener listener;
	int refcount;
};

struct AFB_clientCtx
{
	unsigned refcount;
	time_t expiration;    // expiration time of the token
	time_t access;
	char uuid[37];        // long term authentication of remote client
	char token[37];       // short term authentication of remote client
	struct client_value *values;
	struct afb_event_listener_list *listeners;
};

// Session UUID are store in a simple array [for 10 sessions this should be enough]
static struct {
  pthread_mutex_t mutex;          // declare a mutex to protect hash table
  struct AFB_clientCtx **store;          // sessions store
  int count;                      // current number of sessions
  int max;
  int timeout;
  int apicount;
  const char *initok;
} sessions;

// Free context [XXXX Should be protected again memory abort XXXX]
static void ctxUuidFreeCB (struct AFB_clientCtx *client)
{
	int idx;

	// If application add a handle let's free it now
	assert (client->values != NULL);

	// Free client handle with a standard Free function, with app callback or ignore it
	for (idx=0; idx < sessions.apicount; idx ++)
		ctxClientValueSet(client, idx, NULL, NULL);
}

// Create a new store in RAM, not that is too small it will be automatically extended
void ctxStoreInit (int max_session_count, int timeout, const char *initok, int context_count)
{
	// let's create as store as hashtable does not have any
	sessions.store = calloc (1 + (unsigned)max_session_count, sizeof(struct AFB_clientCtx));
	sessions.max = max_session_count;
	sessions.timeout = timeout;
	sessions.apicount = context_count;
	if (strlen(initok) >= sizeof(sessions.store[0]->token)) {
		ERROR("initial token '%s' too long (max length 36)", initok);
		exit(1);
	}
	sessions.initok = initok;
}

static struct AFB_clientCtx *ctxStoreSearch (const char* uuid)
{
    int  idx;
    struct AFB_clientCtx *client;

    assert (uuid != NULL);

    pthread_mutex_lock(&sessions.mutex);

    for (idx=0; idx < sessions.max; idx++) {
	client = sessions.store[idx];
        if (client && (0 == strcmp (uuid, client->uuid)))
		goto found;
    }
    client = NULL;

found:
    pthread_mutex_unlock(&sessions.mutex);
    return client;
}

static int ctxStoreDel (struct AFB_clientCtx *client)
{
    int idx;
    int status;

    assert (client != NULL);

    pthread_mutex_lock(&sessions.mutex);

    for (idx=0; idx < sessions.max; idx++) {
        if (sessions.store[idx] == client) {
	        sessions.store[idx] = NULL;
        	sessions.count--;
	        status = 1;
		goto deleted;
	}
    }
    status = 0;
deleted:
    pthread_mutex_unlock(&sessions.mutex);
    return status;
}

static int ctxStoreAdd (struct AFB_clientCtx *client)
{
    int idx;
    int status;

    assert (client != NULL);

    pthread_mutex_lock(&sessions.mutex);

    for (idx=0; idx < sessions.max; idx++) {
        if (NULL == sessions.store[idx]) {
        	sessions.store[idx] = client;
	        sessions.count++;
        	status = 1;
		goto added;
	}
    }
    status = 0;
added:
    pthread_mutex_unlock(&sessions.mutex);
    return status;
}

// Check if context timeout or not
static int ctxStoreTooOld (struct AFB_clientCtx *ctx, time_t now)
{
    return ctx->expiration <= now;
}

// Loop on every entry and remove old context sessions.hash
static void ctxStoreCleanUp (time_t now)
{
	struct AFB_clientCtx *ctx;
	long idx;

	// Loop on Sessions Table and remove anything that is older than timeout
	for (idx=0; idx < sessions.max; idx++) {
		ctx = sessions.store[idx];
		if (ctx != NULL && ctxStoreTooOld(ctx, now)) {
			ctxClientClose (ctx);
		}
	}
}

// This function will return exiting client context or newly created client context
struct AFB_clientCtx *ctxClientGetSession (const char *uuid, int *created)
{
	uuid_t newuuid;
	struct AFB_clientCtx *clientCtx;
	time_t now;

	/* cleaning */
	now = NOW;
	ctxStoreCleanUp (now);

	/* search for an existing one not too old */
	if (uuid != NULL) {
		if (strlen(uuid) >= sizeof clientCtx->uuid) {
			errno = EINVAL;
			goto error;
		}
		clientCtx = ctxStoreSearch(uuid);
		if (clientCtx != NULL) {
			*created = 0;
			goto found;
		}
	}

	/* returns a new one */
        clientCtx = calloc(1, sizeof(struct AFB_clientCtx) + ((unsigned)sessions.apicount * sizeof(*clientCtx->values)));
	if (clientCtx == NULL) {
		errno = ENOMEM;
		goto error;
	}
        clientCtx->values = (void*)(clientCtx + 1);

	/* generate the uuid */
	if (uuid == NULL) {
		uuid_generate(newuuid);
		uuid_unparse_lower(newuuid, clientCtx->uuid);
	} else {
		strcpy(clientCtx->uuid, uuid);
	}

	/* init the token */
	strcpy(clientCtx->token, sessions.initok);
	clientCtx->expiration = now + sessions.timeout;
	if (!ctxStoreAdd (clientCtx)) {
		errno = ENOMEM;
		goto error2;
	}
	*created = 1;

found:
	clientCtx->access = now;
	clientCtx->refcount++;
	return clientCtx;

error2:
	free(clientCtx);
error:
	return NULL;
}

struct AFB_clientCtx *ctxClientAddRef(struct AFB_clientCtx *clientCtx)
{
	if (clientCtx != NULL)
		clientCtx->refcount++;
	return clientCtx;
}

void ctxClientUnref(struct AFB_clientCtx *clientCtx)
{
	if (clientCtx != NULL) {
		assert(clientCtx->refcount != 0);
		--clientCtx->refcount;
       		if (clientCtx->refcount == 0 && clientCtx->uuid[0] == 0) {
			ctxStoreDel (clientCtx);
		}
	}
}

// Free Client Session Context
void ctxClientClose (struct AFB_clientCtx *clientCtx)
{
	assert(clientCtx != NULL);
        ctxUuidFreeCB (clientCtx);
	clientCtx->uuid[0] = 0;
}

// Sample Generic Ping Debug API
int ctxTokenCheck (struct AFB_clientCtx *clientCtx, const char *token)
{
	assert(clientCtx != NULL);
	assert(token != NULL);

	// compare current token with previous one
	if (ctxStoreTooOld (clientCtx, NOW))
		return 0;

	if (clientCtx->token[0] && strcmp (token, clientCtx->token) != 0)
		return 0;

	return 1;
}

// generate a new token and update client context
void ctxTokenNew (struct AFB_clientCtx *clientCtx)
{
	uuid_t newuuid;

	assert(clientCtx != NULL);

	// Old token was valid let's regenerate a new one
	uuid_generate(newuuid);         // create a new UUID
	uuid_unparse_lower(newuuid, clientCtx->token);

	// keep track of time for session timeout and further clean up
	clientCtx->expiration = NOW + sessions.timeout;
}

int ctxClientEventListenerAdd(struct AFB_clientCtx *clientCtx, struct afb_event_listener listener)
{
	struct afb_event_listener_list *iter, **prv;

	prv = &clientCtx->listeners;
	for (;;) {
		iter = *prv;
		if (iter == NULL) {
			iter = calloc(1, sizeof *iter);
			if (iter == NULL) {
				errno = ENOMEM;
				return -1;
			}
			iter->listener = listener;
			iter->refcount = 1;
			*prv = iter;
			return 0;
		}
		if (iter->listener.itf == listener.itf && iter->listener.closure == listener.closure) {
			iter->refcount++;
			return 0;
		}
		prv = &iter->next;
	}
}

void ctxClientEventListenerRemove(struct AFB_clientCtx *clientCtx, struct afb_event_listener listener)
{
	struct afb_event_listener_list *iter, **prv;

	prv = &clientCtx->listeners;
	for (;;) {
		iter = *prv;
		if (iter == NULL)
			return;
		if (iter->listener.itf == listener.itf && iter->listener.closure == listener.closure) {
			if (!--iter->refcount) {
				*prv = iter->next;
				free(iter);
			}
			return;
		}
		prv = &iter->next;
	}
}

static int send(struct AFB_clientCtx *clientCtx, const char *event, struct json_object *object)
{
	struct afb_event_listener_list *iter;
	int result;

	result = 0;
	iter = clientCtx->listeners;
	while (iter != NULL) {
		iter->listener.itf->send(iter->listener.closure, event, json_object_get(object));
		result++;
		iter = iter->next;
	}

	return result;
}

int ctxClientEventSend(struct AFB_clientCtx *clientCtx, const char *event, struct json_object *object)
{
	long idx;
	time_t now;
	int result;

	if (clientCtx != NULL)
		result = send(clientCtx, event, object);
	else {
		result = 0;
		now = NOW;
		for (idx=0; idx < sessions.max; idx++) {
			clientCtx = sessions.store[idx];
			if (clientCtx != NULL && !ctxStoreTooOld(clientCtx, now)) {
				clientCtx = ctxClientAddRef(clientCtx);
				result += send(clientCtx, event, object);
				ctxClientUnref(clientCtx);
			}
		}
	}
	return result;
}

const char *ctxClientGetUuid (struct AFB_clientCtx *clientCtx)
{
	assert(clientCtx != NULL);
	return clientCtx->uuid;
}

const char *ctxClientGetToken (struct AFB_clientCtx *clientCtx)
{
	assert(clientCtx != NULL);
	return clientCtx->token;
}

void *ctxClientValueGet(struct AFB_clientCtx *clientCtx, int index)
{
	assert(clientCtx != NULL);
	assert(index >= 0);
	assert(index < sessions.apicount);
	return clientCtx->values[index].value;
}

void ctxClientValueSet(struct AFB_clientCtx *clientCtx, int index, void *value, void (*free_value)(void*))
{
	struct client_value prev;
	assert(clientCtx != NULL);
	assert(index >= 0);
	assert(index < sessions.apicount);
	prev = clientCtx->values[index];
	clientCtx->values[index] = (struct client_value){.value = value, .free_value = free_value};
	if (prev.value !=  NULL && prev.free_value != NULL)
		prev.free_value(prev.value);
}