Hack --plugins=path
[src/app-framework-binder.git] / src / rest-api.c
1 /*
2  * Copyright (C) 2015 "IoT.bzh"
3  * Author "Fulup Ar Foll"
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  * 
18  * Contain all generic part to handle REST/API
19  * 
20  *  https://www.gnu.org/software/libmicrohttpd/tutorial.html [search 'largepost.c']
21  */
22
23 #include "../include/local-def.h"
24
25 #include <dirent.h>
26 #include <dlfcn.h>
27 #include <setjmp.h>
28 #include <signal.h>
29
30 #define AFB_MSG_JTYPE "AJB_reply"
31
32
33
34 static json_object     *afbJsonType;
35
36
37 // Because of POST call multiple time requestApi we need to free POST handle here
38 // Note this method is called from http-svc just before closing session
39 PUBLIC void endPostRequest(AFB_PostHandle *postHandle) {
40
41     if (postHandle->type == AFB_POST_JSON) {
42         // if (verbose) fprintf(stderr, "End PostJson Request UID=%d\n", postHandle->uid);
43     }
44
45     if (postHandle->type == AFB_POST_FORM) {
46          if (verbose) fprintf(stderr, "End PostForm Request UID=%d\n", postHandle->uid);
47     }
48     free(postHandle->private);
49     free(postHandle);
50 }
51
52 // Check of apiurl is declare in this plugin and call it
53 STATIC AFB_error callPluginApi(AFB_plugin *plugin, AFB_request *request, void *context) {
54     json_object *jresp, *jcall;
55     int idx, status, sig;
56     int signals[]= {SIGALRM, SIGSEGV, SIGFPE, 0};
57     
58     /*---------------------------------------------------------------
59     | Signal handler defined inside CallPluginApi to access Request
60     +---------------------------------------------------------------- */
61     void pluginError (int signum) {
62       sigset_t sigset;
63       AFB_clientCtx *context;
64               
65       // unlock signal to allow a new signal to come
66       sigemptyset (&sigset);
67       sigaddset   (&sigset, signum);
68       sigprocmask (SIG_UNBLOCK, &sigset, 0);
69
70       fprintf (stderr, "Oops:%s Plugin Api Timeout timeout\n", configTime());
71       longjmp (request->checkPluginCall, signum);
72     }
73
74     
75     // If a plugin hold this urlpath call its callback
76     for (idx = 0; plugin->apis[idx].callback != NULL; idx++) {
77         if (!strcmp(plugin->apis[idx].name, request->api)) {
78             
79             // Request was found and at least partially executed
80             request->jresp  = json_object_new_object();
81             json_object_get (afbJsonType);  // increate jsontype reference count
82             json_object_object_add (request->jresp, "jtype", afbJsonType);
83             
84             // prepare an object to store calling values
85             jcall=json_object_new_object();
86             json_object_object_add(jcall, "prefix", json_object_new_string (plugin->prefix));
87             json_object_object_add(jcall, "api"   , json_object_new_string (plugin->apis[idx].name));
88             
89             // save context before calling the API
90             status = setjmp (request->checkPluginCall);
91             if (status != 0) {    
92                 
93                 // Plugin aborted somewhere during its execution
94                 json_object_object_add(jcall, "status", json_object_new_string ("abort"));
95                 json_object_object_add(jcall, "info" ,  json_object_new_string ("Plugin broke during execution"));
96                 json_object_object_add(request->jresp, "request", jcall);
97                 
98             } else {
99                 
100                 // If timeout protection==0 we are in debug and we do not apply signal protection
101                 if (request->config->apiTimeout > 0) {
102                     for (sig=0; signals[sig] != 0; sig++) {
103                        if (signal (signals[sig], pluginError) == SIG_ERR) {
104                             request->errcode = MHD_HTTP_UNPROCESSABLE_ENTITY;
105                             json_object_object_add(jcall, "status", json_object_new_string ("fail"));
106                             json_object_object_add(jcall, "info", json_object_new_string ("Setting Timeout Handler Failed"));
107                             json_object_object_add(request->jresp, "request", jcall);
108                             return AFB_DONE;
109                        }
110                     }
111                     // Trigger a timer to protect from unacceptable long time execution
112                     alarm (request->config->apiTimeout);
113                 }
114
115                 // Out of SessionNone every call get a client context session
116                 if (AFB_SESSION_NONE != plugin->apis[idx].session) {
117                     
118                     // add client context to request
119                     if (ctxClientGet(request, plugin) != AFB_SUCCESS) {
120                         request->errcode=MHD_HTTP_INSUFFICIENT_STORAGE;
121                         json_object_object_add(jcall, "status", json_object_new_string ("fail"));
122                         json_object_object_add(jcall, "info", json_object_new_string ("Client Session Context Full !!!"));
123                         json_object_object_add(request->jresp, "request", jcall);
124                         return (AFB_DONE);                              
125                     };
126                     
127                     if (verbose) fprintf(stderr, "Plugin=[%s] Api=[%s] Middleware=[%d] Client=[0x%x] Uuid=[%s] Token=[%s]\n"
128                            , request->plugin, request->api, plugin->apis[idx].session, request->client, request->client->uuid, request->client->token);                        
129                     
130                     switch(plugin->apis[idx].session) {
131
132                         case AFB_SESSION_CREATE:
133                             if (request->client->token[0] != '\0') {
134                                 request->errcode=MHD_HTTP_UNAUTHORIZED;
135                                 json_object_object_add(jcall, "status", json_object_new_string ("exist"));
136                                 json_object_object_add(jcall, "info", json_object_new_string ("AFB_SESSION_CREATE Session already exist"));
137                                 json_object_object_add(request->jresp, "request", jcall);
138                                 return (AFB_DONE);                              
139                             }
140                         
141                             if (AFB_SUCCESS != ctxTokenCreate (request)) {
142                                 request->errcode=MHD_HTTP_UNAUTHORIZED;
143                                 json_object_object_add(jcall, "status", json_object_new_string ("fail"));
144                                 json_object_object_add(jcall, "info", json_object_new_string ("AFB_SESSION_CREATE Invalid Initial Token"));
145                                 json_object_object_add(request->jresp, "request", jcall);
146                                 return (AFB_DONE);
147                             } else {
148                                 json_object_object_add(jcall, "uuid", json_object_new_string (request->client->uuid));                                
149                                 json_object_object_add(jcall, "token", json_object_new_string (request->client->token));                                
150                                 json_object_object_add(jcall, "timeout", json_object_new_int (request->config->cntxTimeout));                                
151                             }
152                             break;
153
154
155                         case AFB_SESSION_RENEW:
156                             if (AFB_SUCCESS != ctxTokenRefresh (request)) {
157                                 request->errcode=MHD_HTTP_UNAUTHORIZED;
158                                 json_object_object_add(jcall, "status", json_object_new_string ("fail"));
159                                 json_object_object_add(jcall, "info", json_object_new_string ("AFB_SESSION_REFRESH Broken Exchange Token Chain"));
160                                 json_object_object_add(request->jresp, "request", jcall);
161                                 return (AFB_DONE);
162                             } else {
163                                 json_object_object_add(jcall, "uuid", json_object_new_string (request->client->uuid));                                
164                                 json_object_object_add(jcall, "token", json_object_new_string (request->client->token));                                
165                                 json_object_object_add(jcall, "timeout", json_object_new_int (request->config->cntxTimeout));                                
166                             }
167                             break;
168
169                         case AFB_SESSION_CLOSE:
170                             if (AFB_SUCCESS != ctxTokenCheck (request)) {
171                                 request->errcode=MHD_HTTP_UNAUTHORIZED;
172                                 json_object_object_add(jcall, "status", json_object_new_string ("empty"));
173                                 json_object_object_add(jcall, "info", json_object_new_string ("AFB_SESSION_CLOSE Not a Valid Access Token"));
174                                 json_object_object_add(request->jresp, "request", jcall);
175                                 return (AFB_DONE);
176                             } else {
177                                 json_object_object_add(jcall, "uuid", json_object_new_string (request->client->uuid));                                
178                             }
179                             break;
180                         
181                         case AFB_SESSION_CHECK:
182                         default: 
183                             // default action is check
184                             if (AFB_SUCCESS != ctxTokenCheck (request)) {
185                                 request->errcode=MHD_HTTP_UNAUTHORIZED;
186                                 json_object_object_add(jcall, "status", json_object_new_string ("fail"));
187                                 json_object_object_add(jcall, "info", json_object_new_string ("AFB_SESSION_CHECK Invalid Active Token"));
188                                 json_object_object_add(request->jresp, "request", jcall);
189                                 return (AFB_DONE);
190                             }
191                             break;
192                     }
193                 }
194                 
195                 // Effectively call the API with a subset of the context
196                 jresp = plugin->apis[idx].callback(request, context);
197                 
198                 // handle intemediatry Post Iterates out of band
199                 if ((jresp == NULL) && (request->errcode == MHD_HTTP_OK)) return (AFB_SUCCESS);
200
201                 // Session close is done after the API call so API can still use session in closing API
202                 if (AFB_SESSION_CLOSE == plugin->apis[idx].session) ctxTokenReset (request);                    
203                 
204                 // API should return NULL of a valid Json Object
205                 if (jresp == NULL) {
206                     json_object_object_add(jcall, "status", json_object_new_string ("null"));
207                     json_object_object_add(request->jresp, "request", jcall);
208                     request->errcode = MHD_HTTP_NO_RESPONSE;
209                     
210                 } else {
211                     json_object_object_add(jcall, "status", json_object_new_string ("processed"));
212                     json_object_object_add(request->jresp, "request", jcall);
213                     json_object_object_add(request->jresp, "response", jresp);
214                 }
215                 // cancel timeout and plugin signal handle before next call
216                 if (request->config->apiTimeout > 0) {
217                     alarm (0);
218                     for (sig=0; signals[sig] != 0; sig++) {
219                        signal (signals[sig], SIG_DFL);
220                     }
221                 }              
222             }       
223             return (AFB_DONE);
224         }
225     }   
226     return (AFB_FAIL);
227 }
228
229 STATIC AFB_error findAndCallApi (AFB_request *request, void *context) {
230     int idx;
231     AFB_error status;
232     
233    
234     // Search for a plugin with this urlpath
235     for (idx = 0; request->plugins[idx] != NULL; idx++) {
236         if (!strcmp(request->plugins[idx]->prefix, request->plugin)) {
237             status =callPluginApi(request->plugins[idx], request, context);
238             break;
239         }
240     }
241     // No plugin was found
242     if (request->plugins[idx] == NULL) {
243         request->jresp = jsonNewMessage(AFB_FATAL, "No Plugin=[%s]", request->plugin);
244         goto ExitOnError;
245     }  
246     
247     // plugin callback did not return a valid Json Object
248     if (status == AFB_FAIL) {
249         request->jresp = jsonNewMessage(AFB_FATAL, "No API=[%s] for Plugin=[%s]", request->api, request->plugin);
250         goto ExitOnError;
251     }
252     
253     // Everything look OK
254     return (status);
255     
256 ExitOnError:
257     request->errcode = MHD_HTTP_UNPROCESSABLE_ENTITY;
258     return (AFB_FAIL);
259 }
260
261 // This CB is call for every item with a form post it reformat iterator values
262 // and callback Plugin API for each Item within PostForm.
263 doPostIterate (void *cls, enum MHD_ValueKind kind, const char *key,
264               const char *filename, const char *mimetype,
265               const char *encoding, const char *data, uint64_t offset,
266               size_t size) {
267   
268   AFB_error    status;
269   AFB_PostItem item;
270     
271   // retrieve API request from Post iterator handle  
272   AFB_PostHandle *postHandle  = (AFB_PostHandle*)cls;
273   AFB_request *request = (AFB_request*)postHandle->private;
274   AFB_PostRequest postRequest;
275   
276   fprintf (stderr, "postHandle key=%s filename=%s len=%d mime=%s\n", key, filename, size, mimetype);
277    
278   // Create and Item value for Plugin API
279   item.kind     = kind;
280   item.key      = key;
281   item.filename = filename;
282   item.mimetype = mimetype;
283   item.encoding = encoding;
284   item.len      = size;
285   item.data     = data;
286   item.offset   = offset;
287   
288   // Reformat Request to make it somehow similar to GET/PostJson case
289   postRequest.data= (char*) postHandle;
290   postRequest.len = size;
291   postRequest.type= AFB_POST_FORM;;
292   request->post = &postRequest;
293   
294   // effectively call plugin API                 
295   status = findAndCallApi (request, &item);
296   // when returning no processing of postform stop
297   if (status != AFB_SUCCESS) return MHD_NO;
298   
299   // let's allow iterator to move to next item
300   return (MHD_YES);
301 }
302
303 STATIC void freeRequest (AFB_request *request) {
304
305  free (request->plugin);    
306  free (request->api);    
307  free (request);    
308 }
309
310 STATIC AFB_request *createRequest (struct MHD_Connection *connection, AFB_session *session, const char* url) {
311     
312     AFB_request *request;
313     
314     // Start with a clean request
315     request = calloc (1, sizeof (AFB_request));
316     char *urlcpy1, *urlcpy2;
317     char *baseapi, *baseurl;  
318       
319     // Extract plugin urlpath from request and make two copy because strsep overload copy
320     urlcpy1 = urlcpy2 = strdup(url);
321     baseurl = strsep(&urlcpy2, "/");
322     if (baseurl == NULL) {
323         request->jresp = jsonNewMessage(AFB_FATAL, "Invalid API call url=[%s]", url);
324     }
325
326     // let's compute URL and call API
327     baseapi = strsep(&urlcpy2, "/");
328     if (baseapi == NULL) {
329         request->jresp = jsonNewMessage(AFB_FATAL, "Invalid API call url=[%s]", url);
330     }
331     
332     // build request structure
333     request->connection = connection;
334     request->config = session->config;
335     request->url    = url;
336     request->plugin = strdup (baseurl);
337     request->api    = strdup (baseapi);
338     request->plugins= session->plugins;
339     
340     free(urlcpy1);
341     return (request);
342 }
343
344 // process rest API query
345 PUBLIC int doRestApi(struct MHD_Connection *connection, AFB_session *session, const char* url, const char *method
346     , const char *upload_data, size_t *upload_data_size, void **con_cls) {
347     
348     static int postcount = 0; // static counter to debug POST protocol
349     json_object *errMessage;
350     AFB_error status;
351     struct MHD_Response *webResponse;
352     const char *serialized;
353     AFB_request *request;
354     AFB_PostHandle *postHandle;
355     AFB_PostRequest postRequest;
356     int ret;
357   
358     // if post data may come in multiple calls
359     if (0 == strcmp(method, MHD_HTTP_METHOD_POST)) {
360         const char *encoding, *param;
361         int contentlen = -1;
362         postHandle = *con_cls;
363
364         // This is the initial post event let's create form post structure POST datas come in multiple events
365         if (postHandle == NULL) {
366
367             // allocate application POST processor handle to zero
368             postHandle = calloc(1, sizeof (AFB_PostHandle));
369             postHandle->uid = postcount++; // build a UID for DEBUG
370             
371             // Let make sure we have the right encoding and a valid length
372             encoding = MHD_lookup_connection_value(connection, MHD_HEADER_KIND, MHD_HTTP_HEADER_CONTENT_TYPE);
373             
374             // We are facing an empty post let's process it as a get
375             if (encoding == NULL) {
376                 request= createRequest (connection, session, url);
377                 goto ProcessApiCall;
378             }
379         
380             // Form post is handle through a PostProcessor and call API once per form key
381             if (strcasestr(encoding, FORM_CONTENT) != NULL) {
382                 if (verbose) fprintf(stderr, "Create PostForm[uid=%d]\n", postHandle->uid);
383
384                 request = createRequest (connection, session, url);
385                 if (request->jresp != NULL) {
386                     errMessage = request->jresp;
387                     goto ExitOnError;
388                 }
389                 postHandle = malloc(sizeof (AFB_PostHandle)); // allocate application POST processor handle
390                 postHandle->type   = AFB_POST_FORM;
391                 postHandle->pp     = MHD_create_post_processor (connection, MAX_POST_SIZE, doPostIterate, postHandle);
392                 postHandle->private= (void*)request;
393                 *con_cls = postHandle;  // update context with posthandle
394                 
395                 if (NULL == postHandle->pp) {
396                     fprintf(stderr,"OOPS: Internal error fail to allocate MHD_create_post_processor\n");
397                     free (postHandle);
398                     return MHD_NO;
399                 }
400                 return MHD_YES;
401             }           
402         
403             // POST json is store into a buffer and present in one piece to API
404             if (strcasestr(encoding, JSON_CONTENT) != NULL) {
405
406                 param = MHD_lookup_connection_value(connection, MHD_HEADER_KIND, MHD_HTTP_HEADER_CONTENT_LENGTH);
407                 if (param) sscanf(param, "%i", &contentlen);
408
409                 // Because PostJson are build in RAM size is constrained
410                 if (contentlen > MAX_POST_SIZE) {
411                     errMessage = jsonNewMessage(AFB_FATAL, "Post Date to big %d > %d", contentlen, MAX_POST_SIZE);
412                     goto ExitOnError;
413                 }
414
415                 // Size is OK, let's allocate a buffer to hold post data
416                 postHandle->type = AFB_POST_JSON;
417                 postHandle->private = malloc(contentlen + 1); // allocate memory for full POST data + 1 for '\0' enf of string
418
419                 // if (verbose) fprintf(stderr, "Create PostJson[uid=%d] Size=%d\n", postHandle->uid, contentlen);
420                 return MHD_YES;
421
422             } else {
423                 // We only support Json and Form Post format
424                 errMessage = jsonNewMessage(AFB_FATAL, "Post Date wrong type encoding=%s != %s", encoding, JSON_CONTENT);
425                 goto ExitOnError;                
426             }   
427         }
428
429         // This time we receive partial/all Post data. Note that even if we get all POST data. We should nevertheless
430         // return MHD_YES and not process the request directly. Otherwise Libmicrohttpd is unhappy and fails with
431         // 'Internal application error, closing connection'.            
432         if (*upload_data_size) {
433     
434             if (postHandle->type == AFB_POST_FORM) {
435                 // if (verbose) fprintf(stderr, "Processing PostForm[uid=%d]\n", postHandle->uid);
436                 MHD_post_process (postHandle->pp, upload_data, *upload_data_size);
437             }
438             
439             // Process JsonPost request when buffer is completed let's call API    
440             if (postHandle->type == AFB_POST_JSON) {
441                 // if (verbose) fprintf(stderr, "Updating PostJson[uid=%d]\n", postHandle->uid);
442                 memcpy(&postHandle->private[postHandle->len], upload_data, *upload_data_size);
443                 postHandle->len = postHandle->len + *upload_data_size;
444             }
445             
446             *upload_data_size = 0;
447             return MHD_YES;
448             
449         } else {  // we have finish with Post reception let's finish the work
450             
451             // Create a request structure to finalise the request
452             request= createRequest (connection, session, url);
453             if (request->jresp != NULL) {
454                 errMessage = request->jresp;
455                 goto ExitOnError;
456             }
457             
458             // Postform add application context handle to request
459             if (postHandle->type == AFB_POST_FORM) {
460                postRequest.data = (char*) postHandle;
461                postRequest.type = postHandle->type;
462                request->post = &postRequest;
463             }
464             
465             if (postHandle->type == AFB_POST_JSON) {
466                 // if (verbose) fprintf(stderr, "Processing PostJson[uid=%d]\n", postHandle->uid);
467
468                 param = MHD_lookup_connection_value(connection, MHD_HEADER_KIND, MHD_HTTP_HEADER_CONTENT_LENGTH);
469                 if (param) sscanf(param, "%i", &contentlen);
470
471                 // At this level we're may verify that we got everything and process DATA
472                 if (postHandle->len != contentlen) {
473                     errMessage = jsonNewMessage(AFB_FATAL, "Post Data Incomplete UID=%d Len %d != %d", postHandle->uid, contentlen, postHandle->len);
474                     goto ExitOnError;
475                 }
476
477                 // Before processing data, make sure buffer string is properly ended
478                 postHandle->private[postHandle->len] = '\0';
479                 postRequest.data = postHandle->private;
480                 postRequest.type = postHandle->type;
481                 request->post = &postRequest;
482
483                 // if (verbose) fprintf(stderr, "Close Post[%d] Buffer=%s\n", postHandle->uid, request->post->data);
484             }
485         }
486     } else {
487         // this is a get we only need a request
488         request= createRequest (connection, session, url);
489     };
490
491 ProcessApiCall:    
492     // Request is ready let's call API without any extra handle
493     status = findAndCallApi (request, NULL);
494
495     serialized = json_object_to_json_string(request->jresp);
496     webResponse = MHD_create_response_from_buffer(strlen(serialized), (void*) serialized, MHD_RESPMEM_MUST_COPY);
497     
498     // client did not pass token on URI let's use cookies 
499     if ((!request->restfull) && (request->client != NULL)) {
500        char cookie[64]; 
501        snprintf (cookie, sizeof (cookie), "%s=%s", COOKIE_NAME,  request->client->uuid); 
502        MHD_add_response_header (webResponse, MHD_HTTP_HEADER_SET_COOKIE, cookie);
503     }
504     
505     // if requested add an error status
506     if (request->errcode != 0)  ret=MHD_queue_response (connection, request->errcode, webResponse);
507     else MHD_queue_response(connection, MHD_HTTP_OK, webResponse);
508     
509     MHD_destroy_response(webResponse);
510     json_object_put(request->jresp); // decrease reference rqtcount to free the json object
511     freeRequest (request);
512     return MHD_YES;
513
514 ExitOnError:
515     freeRequest (request);
516     serialized = json_object_to_json_string(errMessage);
517     webResponse = MHD_create_response_from_buffer(strlen(serialized), (void*) serialized, MHD_RESPMEM_MUST_COPY);
518     MHD_queue_response(connection, MHD_HTTP_BAD_REQUEST, webResponse);
519     MHD_destroy_response(webResponse);
520     json_object_put(errMessage); // decrease reference rqtcount to free the json object
521     return MHD_YES;
522 }
523
524
525 // Loop on plugins. Check that they have the right type, prepare a JSON object with prefix
526 STATIC AFB_plugin ** RegisterJsonPlugins(AFB_plugin **plugins) {
527     int idx, jdx;
528
529     for (idx = 0; plugins[idx] != NULL; idx++) {
530         if (plugins[idx]->type != AFB_PLUGIN_JSON) {
531             fprintf(stderr, "ERROR: AFSV plugin[%d] invalid type=%d != %d\n", idx, AFB_PLUGIN_JSON, plugins[idx]->type);
532         } else {
533             // some sanity controls
534             if ((plugins[idx]->prefix == NULL) || (plugins[idx]->info == NULL) || (plugins[idx]->apis == NULL)) {
535                 if (plugins[idx]->prefix == NULL) plugins[idx]->prefix = "No URL prefix for APIs";
536                 if (plugins[idx]->info == NULL) plugins[idx]->info = "No Info describing plugin APIs";
537                 fprintf(stderr, "ERROR: plugin[%d] invalid prefix=%s info=%s", idx, plugins[idx]->prefix, plugins[idx]->info);
538                 return NULL;
539             }
540
541             if (verbose) fprintf(stderr, "Loading plugin[%d] prefix=[%s] info=%s\n", idx, plugins[idx]->prefix, plugins[idx]->info);
542             
543             // Prebuild plugin jtype to boost API response
544             plugins[idx]->jtype = json_object_new_string(plugins[idx]->prefix);
545             json_object_get(plugins[idx]->jtype); // increase reference count to make it permanent
546             plugins[idx]->prefixlen = strlen(plugins[idx]->prefix);
547             
548               
549             // Prebuild each API jtype to boost API json response
550             for (jdx = 0; plugins[idx]->apis[jdx].name != NULL; jdx++) {
551                 AFB_privateApi *private = malloc (sizeof (AFB_privateApi));
552                 if (plugins[idx]->apis[jdx].private != NULL) {
553                     fprintf (stderr, "WARNING: plugin=%s api=%s private handle should be NULL=0x%x\n"
554                             ,plugins[idx]->prefix,plugins[idx]->apis[jdx].name, plugins[idx]->apis[jdx].private);
555                 }
556                 private->len = strlen (plugins[idx]->apis[jdx].name);
557                 private->jtype=json_object_new_string(plugins[idx]->apis[jdx].name);
558                 json_object_get(private->jtype); // increase reference count to make it permanent
559                 plugins[idx]->apis[jdx].private = private;
560             }
561         }
562     }
563     return (plugins);
564 }
565
566 void initPlugins(AFB_session *session) {
567     static AFB_plugin **plugins;
568     AFB_plugin* (*pluginRegisterFct)(void);
569     void *plugin;
570     char *pluginPath;
571     struct dirent *pluginDir;
572     DIR *dir;
573     afbJsonType = json_object_new_string (AFB_MSG_JTYPE);
574     int i = 0;
575
576     if ((dir = opendir(session->config->plugins)) == NULL) {
577         fprintf(stderr, "Could not open plugin directory=%s\n", session->config->plugins);
578         return;
579     }
580
581     while ((pluginDir = readdir(dir)) != NULL) {
582
583         if (!strstr (pluginDir->d_name, ".so"))
584             continue;
585
586         asprintf (&pluginPath, "%s/%s", session->config->plugins, pluginDir->d_name);
587         plugin = dlopen (pluginPath, RTLD_NOW | RTLD_LOCAL);
588         pluginRegisterFct = dlsym (plugin, "pluginRegister");
589         free (pluginPath);
590         if (!plugin) {
591             if (verbose) fprintf(stderr, "[%s] is not a binary plugin, continuing...\n", pluginDir->d_name);
592             continue;
593         } else if (!pluginRegisterFct) {
594             if (verbose) fprintf(stderr, "[%s] is not an AFB plugin, continuing...\n", pluginDir->d_name);
595             continue;
596         }
597
598         if (verbose) fprintf(stderr, "[%s] is a valid AFB plugin, loading it\n", pluginDir->d_name);
599         plugins = (AFB_plugin **) realloc (plugins, (i+1)*sizeof(AFB_plugin));
600         plugins[i] = (AFB_plugin *) malloc (sizeof(AFB_plugin));
601         plugins[i] = (**pluginRegisterFct)();
602         i++;
603     }
604     plugins[i++] = NULL;
605
606     closedir (dir);
607     
608     // complete plugins and save them within current sessions    
609     session->plugins = RegisterJsonPlugins(plugins);
610 }