569af654a13bc9e3443e6949ee3b3814ea5b8a35
[src/app-framework-binder.git] / src / session.h
1 /*
2  * Copyright 2016 IoT.bzh
3  * Author: José Bollo <jose.bollo@iot.bzh>
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *   http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 // User Client Session Context
18
19 #pragma once
20
21 struct afb_context
22 {
23         void *context;
24         void (*free_context)(void*);
25 };
26
27 extern void *afb_context_get(struct afb_context *actx);
28 extern void afb_context_set(struct afb_context *actx, void *context, void (*free_context)(void*));
29
30 struct AFB_clientCtx
31 {
32         time_t expiration;    // expiration time of the token
33         int created;
34         unsigned refcount;
35         struct afb_context *contexts;
36         char uuid[37];        // long term authentication of remote client
37         char token[37];       // short term authentication of remote client
38 };
39
40 extern void ctxStoreInit (int max_session_count, int timeout, const char *initok, int context_count);
41
42 extern struct AFB_clientCtx *ctxClientGetForUuid (const char *uuid);
43 extern struct AFB_clientCtx *ctxClientGet(struct AFB_clientCtx *clientCtx);
44 extern void ctxClientPut(struct AFB_clientCtx *clientCtx);
45 extern void ctxClientClose (struct AFB_clientCtx *clientCtx);
46 extern int ctxTokenCheck (struct AFB_clientCtx *clientCtx, const char *token);
47 extern int ctxTokenCheckLen (struct AFB_clientCtx *clientCtx, const char *token, size_t length);
48 extern void ctxTokenNew (struct AFB_clientCtx *clientCtx);
49