Fedora 30 packaging fix issu
[src/app-framework-binder.git] / src / afb-context.c
1 /*
2  * Copyright (C) 2015-2018 "IoT.bzh"
3  * Author "Fulup Ar Foll"
4  * Author José Bollo <jose.bollo@iot.bzh>
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *   http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #define _GNU_SOURCE
20
21 #include <assert.h>
22 #include <stdlib.h>
23 #include <stdint.h>
24 #include <errno.h>
25
26 #include "afb-session.h"
27 #include "afb-context.h"
28
29 static void init_context(struct afb_context *context, struct afb_session *session, const char *token)
30 {
31         assert(session != NULL);
32
33         /* reset the context for the session */
34         context->session = session;
35         context->flags = 0;
36         context->super = NULL;
37         context->api_key = NULL;
38
39         /* check the token */
40         if (token != NULL) {
41                 if (afb_session_check_token(session, token))
42                         context->validated = 1;
43                 else
44                         context->invalidated = 1;
45         }
46 }
47
48 void afb_context_init(struct afb_context *context, struct afb_session *session, const char *token)
49 {
50         init_context(context, afb_session_addref(session), token);
51 }
52
53 void afb_context_subinit(struct afb_context *context, struct afb_context *super)
54 {
55         context->session = super->session;
56         context->flags = 0;
57         context->super = super;
58         context->api_key = NULL;
59         context->validated = super->validated;
60 }
61
62 int afb_context_connect(struct afb_context *context, const char *uuid, const char *token)
63 {
64         int created;
65         struct afb_session *session;
66
67         session = afb_session_get (uuid, AFB_SESSION_TIMEOUT_DEFAULT, &created);
68         if (session == NULL)
69                 return -1;
70         init_context(context, session, token);
71         if (created) {
72                 context->created = 1;
73                 /* context->refreshing = 1; */
74         }
75         return 0;
76 }
77
78 void afb_context_disconnect(struct afb_context *context)
79 {
80         if (context->session && !context->super) {
81                 if (context->refreshing && !context->refreshed) {
82                         afb_session_new_token (context->session);
83                         context->refreshed = 1;
84                 }
85                 if (context->closing && !context->closed) {
86                         afb_context_change_loa(context, 0);
87                         afb_context_set(context, NULL, NULL);
88                         context->closed = 1;
89                 }
90                 afb_session_unref(context->session);
91                 context->session = NULL;
92         }
93 }
94
95 const char *afb_context_sent_token(struct afb_context *context)
96 {
97         if (context->session == NULL || context->closing || context->super)
98                 return NULL;
99         if (!context->refreshing)
100                 return NULL;
101         if (!context->refreshed) {
102                 afb_session_new_token (context->session);
103                 context->refreshed = 1;
104         }
105         return afb_session_token(context->session);
106 }
107
108 const char *afb_context_uuid(struct afb_context *context)
109 {
110         return context->session ? afb_session_uuid(context->session) : "";
111 }
112
113 const char *afb_context_sent_uuid(struct afb_context *context)
114 {
115         if (context->session == NULL || context->closing || context->super)
116                 return NULL;
117         if (!context->created)
118                 return NULL;
119         return afb_session_uuid(context->session);
120 }
121
122 void *afb_context_make(struct afb_context *context, int replace, void *(*make_value)(void *closure), void (*free_value)(void *item), void *closure)
123 {
124         assert(context->session != NULL);
125         return afb_session_cookie(context->session, context->api_key, make_value, free_value, closure, replace);
126 }
127
128 void *afb_context_get(struct afb_context *context)
129 {
130         assert(context->session != NULL);
131         return afb_session_get_cookie(context->session, context->api_key);
132 }
133
134 int afb_context_set(struct afb_context *context, void *value, void (*free_value)(void*))
135 {
136         assert(context->session != NULL);
137         return afb_session_set_cookie(context->session, context->api_key, value, free_value);
138 }
139
140 void afb_context_close(struct afb_context *context)
141 {
142         context->closing = 1;
143 }
144
145 void afb_context_refresh(struct afb_context *context)
146 {
147         if (context->super)
148                 afb_context_refresh(context->super);
149         else {
150                 assert(context->validated);
151                 context->refreshing = 1;
152                 if (!context->refreshed) {
153                         afb_session_new_token (context->session);
154                         context->refreshed = 1;
155                 }
156         }
157 }
158
159 int afb_context_check(struct afb_context *context)
160 {
161         if (context->super)
162                 return afb_context_check(context);
163         return context->validated;
164 }
165
166 int afb_context_check_loa(struct afb_context *context, unsigned loa)
167 {
168         return afb_context_get_loa(context) >= loa;
169 }
170
171 static inline const void *loa_key(struct afb_context *context)
172 {
173         return (const void*)(1+(intptr_t)(context->api_key));
174 }
175
176 static inline void *loa2ptr(unsigned loa)
177 {
178         return (void*)(intptr_t)loa;
179 }
180
181 static inline unsigned ptr2loa(void *ptr)
182 {
183         return (unsigned)(intptr_t)ptr;
184 }
185
186 int afb_context_change_loa(struct afb_context *context, unsigned loa)
187 {
188         if (!context->validated || loa > 7) {
189                 errno = EINVAL;
190                 return -1;
191         }
192
193         return afb_session_set_cookie(context->session, loa_key(context), loa2ptr(loa), NULL);
194 }
195
196 unsigned afb_context_get_loa(struct afb_context *context)
197 {
198         assert(context->session != NULL);
199         return ptr2loa(afb_session_get_cookie(context->session, loa_key(context)));
200 }