Definitive switch to internal's xreq
[src/app-framework-binder.git] / src / afb-api-dbus.c
1 /*
2  * Copyright (C) 2015, 2016, 2017 "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
18 #define _GNU_SOURCE
19 #define NO_PLUGIN_VERBOSE_MACRO
20
21 #include <stdlib.h>
22 #include <string.h>
23 #include <assert.h>
24 #include <errno.h>
25
26 #include <systemd/sd-bus.h>
27 #include <json-c/json.h>
28
29 #include <afb/afb-req-itf.h>
30
31 #include "afb-common.h"
32
33 #include "afb-session.h"
34 #include "afb-msg-json.h"
35 #include "afb-apis.h"
36 #include "afb-api-so.h"
37 #include "afb-context.h"
38 #include "afb-evt.h"
39 #include "afb-xreq.h"
40 #include "verbose.h"
41
42 static const char DEFAULT_PATH_PREFIX[] = "/org/agl/afb/api/";
43
44 struct dbus_memo;
45 struct dbus_event;
46 struct destination;
47
48 /*
49  * The path given are of the form
50  *     system:/org/agl/afb/api/...
51  * or
52  *     user:/org/agl/afb/api/...
53  */
54 struct api_dbus
55 {
56         struct sd_bus *sdbus;   /* the bus */
57         char *path;             /* path of the object for the API */
58         char *name;             /* name/interface of the object */
59         char *api;              /* api name of the interface */
60         union {
61                 struct {
62                         struct sd_bus_slot *slot_broadcast;
63                         struct sd_bus_slot *slot_event;
64                         struct dbus_event *events;
65                         struct dbus_memo *memos;
66                 } client;
67                 struct {
68                         struct sd_bus_slot *slot_call;
69                         struct afb_evt_listener *listener; /* listener for broadcasted events */
70                         struct destination *destinations;
71                 } server;
72         };
73 };
74
75 #define RETOK   1
76 #define RETERR  2
77
78 /******************* common part **********************************/
79
80 /*
81  * create a structure api_dbus connected on either the system
82  * bus if 'system' is not null or on the user bus. The connection
83  * is established for either emiting/receiving on 'path' being of length
84  * 'pathlen'.
85  */
86 static struct api_dbus *make_api_dbus_3(int system, const char *path, size_t pathlen)
87 {
88         struct api_dbus *api;
89         struct sd_bus *sdbus;
90         char *ptr;
91
92         /* allocates the structure */
93         api = calloc(1, sizeof *api + 1 + pathlen + pathlen);
94         if (api == NULL) {
95                 errno = ENOMEM;
96                 goto error;
97         }
98
99         /* init the structure's strings */
100
101         /* path is copied after the struct */
102         api->path = (void*)(api+1);
103         strcpy(api->path, path);
104
105         /* api name is at the end of the path */
106         api->api = strrchr(api->path, '/');
107         if (api->api == NULL) {
108                 errno = EINVAL;
109                 goto error2;
110         }
111         api->api++;
112         if (!afb_apis_is_valid_api_name(api->api)) {
113                 errno = EINVAL;
114                 goto error2;
115         }
116
117         /* the name/interface is copied after the path */
118         api->name = &api->path[pathlen + 1];
119         strcpy(api->name, &path[1]);
120         ptr = strchr(api->name, '/');
121         while(ptr != NULL) {
122                 *ptr = '.';
123                 ptr = strchr(ptr, '/');
124         }
125
126         /* choose the bus */
127         sdbus = (system ? afb_common_get_system_bus : afb_common_get_user_bus)();
128         if (sdbus == NULL)
129                 goto error2;
130
131         api->sdbus = sdbus;
132         return api;
133
134 error2:
135         free(api);
136 error:
137         return NULL;
138 }
139
140 /*
141  * create a structure api_dbus connected on either the system
142  * bus if 'system' is not null or on the user bus. The connection
143  * is established for either emiting/receiving on 'path'.
144  * If 'path' is not absolute, it is prefixed with DEFAULT_PATH_PREFIX.
145  */
146 static struct api_dbus *make_api_dbus_2(int system, const char *path)
147 {
148         size_t len;
149         char *ptr;
150
151         /* check the length of the path */
152         len = strlen(path);
153         if (len == 0) {
154                 errno = EINVAL;
155                 return NULL;
156         }
157
158         /* if the path is absolute, creation now */
159         if (path[0] == '/')
160                 return make_api_dbus_3(system, path, len);
161
162         /* compute the path prefixed with DEFAULT_PATH_PREFIX */
163         assert(strlen(DEFAULT_PATH_PREFIX) > 0);
164         assert(DEFAULT_PATH_PREFIX[strlen(DEFAULT_PATH_PREFIX) - 1] == '/');
165         len += strlen(DEFAULT_PATH_PREFIX);
166         ptr = alloca(len + 1);
167         strcpy(stpcpy(ptr, DEFAULT_PATH_PREFIX), path);
168
169         /* creation for prefixed path */
170         return make_api_dbus_3(system, ptr, len);
171 }
172
173 /*
174  * create a structure api_dbus connected either emiting/receiving
175  * on 'path'.
176  * The path can be prefixed with "system:" or "user:" to select
177  * either the user or the system D-Bus. If none is set then user's
178  * bus is selected.
179  * If remaining 'path' is not absolute, it is prefixed with
180  * DEFAULT_PATH_PREFIX.
181  */
182 static struct api_dbus *make_api_dbus(const char *path)
183 {
184         const char *ptr;
185         size_t preflen;
186
187         /* retrieves the prefix "scheme-like" part */
188         ptr = strchr(path, ':');
189         if (ptr == NULL)
190                 return make_api_dbus_2(0, path);
191
192         /* check the prefix part */
193         preflen = (size_t)(ptr - path);
194         if (strncmp(path, "system", preflen) == 0)
195                 return make_api_dbus_2(1, ptr + 1);
196
197         if (strncmp(path, "user", preflen) == 0)
198                 return make_api_dbus_2(0, ptr + 1);
199
200         /* TODO: connect to a foreign D-Bus? */
201         errno = EINVAL;
202         return NULL;
203 }
204
205 static void destroy_api_dbus(struct api_dbus *api)
206 {
207         free(api);
208 }
209
210 /******************* client part **********************************/
211
212 /*
213  * structure for recording query data
214  */
215 struct dbus_memo {
216         struct dbus_memo *next;         /* the next memo */
217         struct api_dbus *api;           /* the dbus api */
218         struct afb_xreq *xreq;          /* the request */
219         uint64_t msgid;                 /* the message identifier */
220 };
221
222 struct dbus_event
223 {
224         struct dbus_event *next;
225         struct afb_event event;
226         int id;
227         int refcount;
228 };
229
230 /* allocates and init the memorizing data */
231 static struct dbus_memo *api_dbus_client_memo_make(struct api_dbus *api, struct afb_xreq *xreq)
232 {
233         struct dbus_memo *memo;
234
235         memo = malloc(sizeof *memo);
236         if (memo != NULL) {
237                 afb_xreq_addref(xreq);
238                 memo->xreq = xreq;
239                 memo->msgid = 0;
240                 memo->api = api;
241                 memo->next = api->client.memos;
242                 api->client.memos = memo;
243         }
244         return memo;
245 }
246
247 /* free and release the memorizing data */
248 static void api_dbus_client_memo_destroy(struct dbus_memo *memo)
249 {
250         struct dbus_memo **prv;
251
252         prv = &memo->api->client.memos;
253         while (*prv != NULL) {
254                 if (*prv == memo) {
255                         *prv = memo->next;
256                         break;
257                 }
258                 prv = &(*prv)->next;
259         }
260
261         afb_xreq_unref(memo->xreq);
262         free(memo);
263 }
264
265 /* search a memorized request */
266 static struct dbus_memo *api_dbus_client_memo_search(struct api_dbus *api, uint64_t msgid)
267 {
268         struct dbus_memo *memo;
269
270         memo = api->client.memos;
271         while (memo != NULL && memo->msgid != msgid)
272                 memo = memo->next;
273
274         return memo;
275 }
276
277 /* callback when received answer */
278 static int api_dbus_client_on_reply(sd_bus_message *message, void *userdata, sd_bus_error *ret_error)
279 {
280         int rc;
281         struct dbus_memo *memo;
282         const char *first, *second;
283         uint8_t type;
284         uint32_t flags;
285
286         /* retrieve the recorded data */
287         memo = userdata;
288
289         /* get the answer */
290         rc = sd_bus_message_read(message, "yssu", &type, &first, &second, &flags);
291         if (rc < 0) {
292                 /* failing to have the answer */
293                 afb_xreq_fail(memo->xreq, "error", "dbus error");
294         } else {
295                 /* report the answer */
296                 memo->xreq->context.flags = (unsigned)flags;
297                 switch(type) {
298                 case RETOK:
299                         afb_xreq_success(memo->xreq, json_tokener_parse(first), *second ? second : NULL);
300                         break;
301                 case RETERR:
302                         afb_xreq_fail(memo->xreq, first, *second ? second : NULL);
303                         break;
304                 default:
305                         afb_xreq_fail(memo->xreq, "error", "dbus link broken");
306                         break;
307                 }
308         }
309         api_dbus_client_memo_destroy(memo);
310         return 1;
311 }
312
313 /* on call, propagate it to the dbus service */
314 static void api_dbus_client_call(void *closure, struct afb_xreq *xreq)
315 {
316         struct api_dbus *api = closure;
317         size_t size;
318         int rc;
319         struct dbus_memo *memo;
320         struct sd_bus_message *msg;
321
322         /* create the recording data */
323         memo = api_dbus_client_memo_make(api, xreq);
324         if (memo == NULL) {
325                 afb_xreq_fail(xreq, "error", "out of memory");
326                 return;
327         }
328
329         /* creates the message */
330         msg = NULL;
331         rc = sd_bus_message_new_method_call(api->sdbus, &msg, api->name, api->path, api->name, xreq->verb);
332         if (rc < 0)
333                 goto error;
334
335         rc = sd_bus_message_append(msg, "ssu",
336                         afb_xreq_raw(xreq, &size),
337                         afb_session_uuid(xreq->context.session),
338                         (uint32_t)xreq->context.flags);
339         if (rc < 0)
340                 goto error;
341
342         /* makes the call */
343         rc = sd_bus_call_async(api->sdbus, NULL, msg, api_dbus_client_on_reply, memo, (uint64_t)-1);
344         if (rc < 0)
345                 goto error;
346
347         rc = sd_bus_message_get_cookie(msg, &memo->msgid);
348         if (rc >= 0)
349                 goto end;
350
351 error:
352         /* if there was an error report it directly */
353         errno = -rc;
354         afb_xreq_fail(xreq, "error", "dbus error");
355         api_dbus_client_memo_destroy(memo);
356 end:
357         sd_bus_message_unref(msg);
358 }
359
360 static int api_dbus_service_start(void *closure, int share_session, int onneed)
361 {
362         struct api_dbus *api = closure;
363
364         /* not an error when onneed */
365         if (onneed != 0)
366                 return 0;
367
368         /* already started: it is an error */
369         ERROR("The Dbus binding %s is not a startable service", api->name);
370         return -1;
371 }
372
373 /* receives broadcasted events */
374 static int api_dbus_client_on_broadcast_event(sd_bus_message *m, void *userdata, sd_bus_error *ret_error)
375 {
376         struct json_object *object;
377         const char *event, *data;
378         int rc = sd_bus_message_read(m, "ss", &event, &data);
379         if (rc < 0)
380                 ERROR("unreadable broadcasted event");
381         else {
382                 object = json_tokener_parse(data);
383                 afb_evt_broadcast(event, object);
384         }
385         return 1;
386 }
387
388 /* search the event */
389 static struct dbus_event *api_dbus_client_event_search(struct api_dbus *api, int id, const char *name)
390 {
391         struct dbus_event *ev;
392
393         ev = api->client.events;
394         while (ev != NULL && (ev->id != id || 0 != strcmp(afb_evt_event_name(ev->event), name)))
395                 ev = ev->next;
396
397         return ev;
398 }
399
400 /* adds an event */
401 static void api_dbus_client_event_create(struct api_dbus *api, int id, const char *name)
402 {
403         struct dbus_event *ev;
404
405         /* check conflicts */
406         ev = api_dbus_client_event_search(api, id, name);
407         if (ev != NULL) {
408                 ev->refcount++;
409                 return;
410         }
411
412         /* no conflict, try to add it */
413         ev = malloc(sizeof *ev);
414         if (ev != NULL) {
415                 ev->event = afb_evt_create_event(name);
416                 if (ev->event.closure == NULL)
417                         free(ev);
418                 else {
419                         ev->refcount = 1;
420                         ev->id = id;
421                         ev->next = api->client.events;
422                         api->client.events = ev;
423                         return;
424                 }
425         }
426         ERROR("can't create event %s, out of memory", name);
427 }
428
429 /* removes an event */
430 static void api_dbus_client_event_drop(struct api_dbus *api, int id, const char *name)
431 {
432         struct dbus_event *ev, **prv;
433
434         /* retrieves the event */
435         ev = api_dbus_client_event_search(api, id, name);
436         if (ev == NULL) {
437                 ERROR("event %s not found", name);
438                 return;
439         }
440
441         /* decrease the reference count */
442         if (--ev->refcount)
443                 return;
444
445         /* unlinks the event */
446         prv = &api->client.events;
447         while (*prv != ev)
448                 prv = &(*prv)->next;
449         *prv = ev->next;
450
451         /* destroys the event */
452         afb_event_drop(ev->event);
453         free(ev);
454 }
455
456 /* pushs an event */
457 static void api_dbus_client_event_push(struct api_dbus *api, int id, const char *name, const char *data)
458 {
459         struct json_object *object;
460         struct dbus_event *ev;
461
462         /* retrieves the event */
463         ev = api_dbus_client_event_search(api, id, name);
464         if (ev == NULL) {
465                 ERROR("event %s not found", name);
466                 return;
467         }
468
469         /* destroys the event */
470         object = json_tokener_parse(data);
471         afb_event_push(ev->event, object);
472 }
473
474 /* subscribes an event */
475 static void api_dbus_client_event_subscribe(struct api_dbus *api, int id, const char *name, uint64_t msgid)
476 {
477         int rc;
478         struct dbus_event *ev;
479         struct dbus_memo *memo;
480
481         /* retrieves the event */
482         ev = api_dbus_client_event_search(api, id, name);
483         if (ev == NULL) {
484                 ERROR("event %s not found", name);
485                 return;
486         }
487
488         /* retrieves the memo */
489         memo = api_dbus_client_memo_search(api, msgid);
490         if (memo == NULL) {
491                 ERROR("message not found");
492                 return;
493         }
494
495         /* subscribe the request to the event */
496         rc = afb_xreq_subscribe(memo->xreq, ev->event);
497         if (rc < 0)
498                 ERROR("can't subscribe: %m");
499 }
500
501 /* unsubscribes an event */
502 static void api_dbus_client_event_unsubscribe(struct api_dbus *api, int id, const char *name, uint64_t msgid)
503 {
504         int rc;
505         struct dbus_event *ev;
506         struct dbus_memo *memo;
507
508         /* retrieves the event */
509         ev = api_dbus_client_event_search(api, id, name);
510         if (ev == NULL) {
511                 ERROR("event %s not found", name);
512                 return;
513         }
514
515         /* retrieves the memo */
516         memo = api_dbus_client_memo_search(api, msgid);
517         if (memo == NULL) {
518                 ERROR("message not found");
519                 return;
520         }
521
522         /* unsubscribe the request from the event */
523         rc = afb_xreq_unsubscribe(memo->xreq, ev->event);
524         if (rc < 0)
525                 ERROR("can't unsubscribe: %m");
526 }
527
528 /* receives calls for event */
529 static int api_dbus_client_on_manage_event(sd_bus_message *m, void *userdata, sd_bus_error *ret_error)
530 {
531         const char *eventname, *data;
532         int rc;
533         int32_t eventid;
534         uint8_t order;
535         struct api_dbus *api;
536         uint64_t msgid;
537
538         /* check if expected message */
539         api = userdata;
540         if (0 != strcmp(api->name, sd_bus_message_get_interface(m)))
541                 return 0; /* not the expected interface */
542         if (0 != strcmp("event", sd_bus_message_get_member(m)))
543                 return 0; /* not the expected member */
544         if (sd_bus_message_get_expect_reply(m))
545                 return 0; /* not the expected type of message */
546
547         /* reads the message */
548         rc = sd_bus_message_read(m, "yisst", &order, &eventid, &eventname, &data, &msgid);
549         if (rc < 0) {
550                 ERROR("unreadable event");
551                 return 1;
552         }
553
554         /* what is the order ? */
555         switch ((char)order) {
556         case '+': /* creates the event */
557                 api_dbus_client_event_create(api, eventid, eventname);
558                 break;
559         case '-': /* drops the event */
560                 api_dbus_client_event_drop(api, eventid, eventname);
561                 break;
562         case '!': /* pushs the event */
563                 api_dbus_client_event_push(api, eventid, eventname, data);
564                 break;
565         case 'S': /* subscribe event for a request */
566                 api_dbus_client_event_subscribe(api, eventid, eventname, msgid);
567                 break;
568         case 'U': /* unsubscribe event for a request */
569                 api_dbus_client_event_unsubscribe(api, eventid, eventname, msgid);
570                 break;
571         default:
572                 /* unexpected order */
573                 ERROR("unexpected order '%c' received", (char)order);
574                 break;
575         }
576         return 1;
577 }
578
579 /* adds a afb-dbus-service client api */
580 int afb_api_dbus_add_client(const char *path)
581 {
582         int rc;
583         struct api_dbus *api;
584         struct afb_api afb_api;
585         char *match;
586
587         /* create the dbus client api */
588         api = make_api_dbus(path);
589         if (api == NULL)
590                 goto error;
591
592         /* connect to broadcasted events */
593         rc = asprintf(&match, "type='signal',path='%s',interface='%s',member='broadcast'", api->path, api->name);
594         if (rc < 0) {
595                 errno = ENOMEM;
596                 ERROR("out of memory");
597                 goto error;
598         }
599         rc = sd_bus_add_match(api->sdbus, &api->client.slot_broadcast, match, api_dbus_client_on_broadcast_event, api);
600         free(match);
601         if (rc < 0) {
602                 errno = -rc;
603                 ERROR("can't add dbus match %s for %s", api->path, api->name);
604                 goto error;
605         }
606
607         /* connect to event management */
608         rc = sd_bus_add_object(api->sdbus, &api->client.slot_event, api->path, api_dbus_client_on_manage_event, api);
609         if (rc < 0) {
610                 errno = -rc;
611                 ERROR("can't add dbus object %s for %s", api->path, api->name);
612                 goto error;
613         }
614
615         /* record it as an API */
616         afb_api.closure = api;
617         afb_api.call = api_dbus_client_call;
618         afb_api.service_start = api_dbus_service_start;
619         if (afb_apis_add(api->api, afb_api) < 0)
620                 goto error2;
621
622         return 0;
623
624 error2:
625         destroy_api_dbus(api);
626 error:
627         return -1;
628 }
629
630 /******************* event structures for server part **********************************/
631
632 static void afb_api_dbus_server_event_add(void *closure, const char *event, int eventid);
633 static void afb_api_dbus_server_event_remove(void *closure, const char *event, int eventid);
634 static void afb_api_dbus_server_event_push(void *closure, const char *event, int eventid, struct json_object *object);
635 static void afb_api_dbus_server_event_broadcast(void *closure, const char *event, int eventid, struct json_object *object);
636
637 /* the interface for events broadcasting */
638 static const struct afb_evt_itf evt_broadcast_itf = {
639         .broadcast = afb_api_dbus_server_event_broadcast,
640 };
641
642 /* the interface for events pushing */
643 static const struct afb_evt_itf evt_push_itf = {
644         .push = afb_api_dbus_server_event_push,
645         .add = afb_api_dbus_server_event_add,
646         .remove = afb_api_dbus_server_event_remove
647 };
648
649 /******************* destination description part for server *****************************/
650
651 struct destination
652 {
653         /* link to next different destination */
654         struct destination *next;
655
656         /* the server dbus-api */
657         struct api_dbus *api;
658
659         /* count of references */
660         int refcount;
661
662         /* the destination */
663         char name[1];
664 };
665
666 static struct destination *afb_api_dbus_server_destination_get(struct api_dbus *api, const char *sender)
667 {
668         struct destination *destination;
669
670         /* searchs for an existing destination */
671         destination = api->server.destinations;
672         while (destination != NULL) {
673                 if (0 == strcmp(destination->name, sender)) {
674                         destination->refcount++;
675                         return destination;
676                 }
677                 destination = destination->next;
678         }
679
680         /* not found, create it */
681         destination = malloc(strlen(sender) + sizeof *destination);
682         if (destination == NULL)
683                 errno = ENOMEM;
684         else {
685                 destination->api = api;
686                 destination->refcount = 1;
687                 strcpy(destination->name, sender);
688                 destination->next = api->server.destinations;
689                 api->server.destinations = destination;
690         }
691         return destination;
692 }
693
694 static void afb_api_dbus_server_destination_unref(struct destination *destination)
695 {
696         if (!--destination->refcount) {
697                 struct destination **prv;
698
699                 prv = &destination->api->server.destinations;
700                 while(*prv != destination)
701                         prv = &(*prv)->next;
702                 *prv = destination->next;
703                 free(destination);
704         }
705 }
706
707 struct listener
708 {
709         /* link to next different destination */
710         struct destination *destination;
711
712         /* the listener of events */
713         struct afb_evt_listener *listener;
714 };
715
716 static void afb_api_dbus_server_listener_free(struct listener *listener)
717 {
718         afb_evt_listener_unref(listener->listener);
719         afb_api_dbus_server_destination_unref(listener->destination);
720         free(listener);
721 }
722
723 static struct listener *afb_api_dbus_server_listerner_get(struct api_dbus *api, const char *sender, struct afb_session *session)
724 {
725         int rc;
726         struct listener *listener;
727         struct destination *destination;
728
729         /* get the destination */
730         destination = afb_api_dbus_server_destination_get(api, sender);
731         if (destination == NULL)
732                 return NULL;
733
734         /* retrieves the stored listener */
735         listener = afb_session_get_cookie(session, destination);
736         if (listener != NULL) {
737                 /* found */
738                 afb_api_dbus_server_destination_unref(destination);
739                 return listener;
740         }
741
742         /* creates the listener */
743         listener = malloc(sizeof *listener);
744         if (listener == NULL)
745                 errno = ENOMEM;
746         else {
747                 listener->destination = destination;
748                 listener->listener = afb_evt_listener_create(&evt_push_itf, destination);
749                 if (listener->listener != NULL) {
750                         rc = afb_session_set_cookie(session, destination, listener, (void*)afb_api_dbus_server_listener_free);
751                         if (rc == 0)
752                                 return listener;
753                         afb_evt_listener_unref(listener->listener);
754                 }
755                 free(listener);
756         }
757         afb_api_dbus_server_destination_unref(destination);
758         return NULL;
759 }
760
761 /******************* dbus request part for server *****************/
762
763 /**
764  * Structure for a dbus request
765  */
766 struct dbus_req {
767         struct afb_xreq xreq;           /**< the xreq of the request */
768         sd_bus_message *message;        /**< the incoming request message */
769         const char *request;            /**< the readen request as string */
770         struct json_object *json;       /**< the readen request as object */
771         struct listener *listener;      /**< the listener for events */
772 };
773
774 /* decrement the reference count of the request and free/release it on falling to null */
775 static void dbus_req_destroy(void *closure)
776 {
777         struct dbus_req *dreq = closure;
778
779         afb_context_disconnect(&dreq->xreq.context);
780         json_object_put(dreq->json);
781         sd_bus_message_unref(dreq->message);
782         free(dreq);
783 }
784
785 /* get the object of the request */
786 static struct json_object *dbus_req_json(void *closure)
787 {
788         struct dbus_req *dreq = closure;
789
790         return dreq->json;
791 }
792
793 /* get the argument of the request of 'name' */
794 static void dbus_req_reply(struct dbus_req *dreq, uint8_t type, const char *first, const char *second)
795 {
796         int rc;
797         rc = sd_bus_reply_method_return(dreq->message,
798                         "yssu", type, first ? : "", second ? : "", (uint32_t)dreq->xreq.context.flags);
799         if (rc < 0)
800                 ERROR("sending the reply failed");
801 }
802
803 static void dbus_req_success(void *closure, struct json_object *obj, const char *info)
804 {
805         struct dbus_req *dreq = closure;
806
807         dbus_req_reply(dreq, RETOK, json_object_to_json_string_ext(obj, JSON_C_TO_STRING_PLAIN), info);
808 }
809
810 static void dbus_req_fail(void *closure, const char *status, const char *info)
811 {
812         struct dbus_req *dreq = closure;
813
814         dbus_req_reply(dreq, RETERR, status, info);
815 }
816
817 static void afb_api_dbus_server_event_send(struct destination *destination, char order, const char *event, int eventid, const char *data, uint64_t msgid);
818
819 static int dbus_req_subscribe(void *closure, struct afb_event event)
820 {
821         struct dbus_req *dreq = closure;
822         uint64_t msgid;
823         int rc;
824
825         rc = afb_evt_add_watch(dreq->listener->listener, event);
826         sd_bus_message_get_cookie(dreq->message, &msgid);
827         afb_api_dbus_server_event_send(dreq->listener->destination, 'S', afb_evt_event_name(event), afb_evt_event_id(event), "", msgid);
828         return rc;
829 }
830
831 static int dbus_req_unsubscribe(void *closure, struct afb_event event)
832 {
833         struct dbus_req *dreq = closure;
834         uint64_t msgid;
835         int rc;
836
837         sd_bus_message_get_cookie(dreq->message, &msgid);
838         afb_api_dbus_server_event_send(dreq->listener->destination, 'U', afb_evt_event_name(event), afb_evt_event_id(event), "", msgid);
839         rc = afb_evt_remove_watch(dreq->listener->listener, event);
840         return rc;
841 }
842
843 const struct afb_xreq_query_itf afb_api_dbus_xreq_itf = {
844         .json = dbus_req_json,
845         .success = dbus_req_success,
846         .fail = dbus_req_fail,
847         .unref = dbus_req_destroy,
848         .subscribe = dbus_req_subscribe,
849         .unsubscribe = dbus_req_unsubscribe
850 };
851
852 /******************* server part **********************************/
853
854 static void afb_api_dbus_server_event_send(struct destination *destination, char order, const char *event, int eventid, const char *data, uint64_t msgid)
855 {
856         int rc;
857         struct api_dbus *api;
858         struct sd_bus_message *msg;
859
860         api = destination->api;
861         msg = NULL;
862
863         rc = sd_bus_message_new_method_call(api->sdbus, &msg, destination->name, api->path, api->name, "event");
864         if (rc < 0)
865                 goto error;
866
867         rc = sd_bus_message_append(msg, "yisst", (uint8_t)order, (int32_t)eventid, event, data, msgid);
868         if (rc < 0)
869                 goto error;
870
871         rc = sd_bus_send(api->sdbus, msg, NULL); /* NULL for cookie implies no expected reply */
872         if (rc >= 0)
873                 goto end;
874
875 error:
876         ERROR("error while send event %c%s(%d) to %s", order, event, eventid, destination->name);
877 end:
878         sd_bus_message_unref(msg);
879 }
880
881 static void afb_api_dbus_server_event_add(void *closure, const char *event, int eventid)
882 {
883         afb_api_dbus_server_event_send(closure, '+', event, eventid, "", 0);
884 }
885
886 static void afb_api_dbus_server_event_remove(void *closure, const char *event, int eventid)
887 {
888         afb_api_dbus_server_event_send(closure, '-', event, eventid, "", 0);
889 }
890
891 static void afb_api_dbus_server_event_push(void *closure, const char *event, int eventid, struct json_object *object)
892 {
893         const char *data = json_object_to_json_string_ext(object, JSON_C_TO_STRING_PLAIN);
894         afb_api_dbus_server_event_send(closure, '!', event, eventid, data, 0);
895         json_object_put(object);
896 }
897
898 static void afb_api_dbus_server_event_broadcast(void *closure, const char *event, int eventid, struct json_object *object)
899 {
900         int rc;
901         struct api_dbus *api;
902
903         api = closure;
904         rc = sd_bus_emit_signal(api->sdbus, api->path, api->name, "broadcast",
905                         "ss", event, json_object_to_json_string_ext(object, JSON_C_TO_STRING_PLAIN));
906         if (rc < 0)
907                 ERROR("error while broadcasting event %s", event);
908         json_object_put(object);
909 }
910
911 /* called when the object for the service is called */
912 static int api_dbus_server_on_object_called(sd_bus_message *message, void *userdata, sd_bus_error *ret_error)
913 {
914         int rc;
915         const char *method;
916         const char *uuid;
917         struct dbus_req *dreq;
918         struct api_dbus *api = userdata;
919         uint32_t flags;
920         struct afb_session *session;
921         struct listener *listener;
922
923         /* check the interface */
924         if (strcmp(sd_bus_message_get_interface(message), api->name) != 0)
925                 return 0;
926
927         /* get the method */
928         method = sd_bus_message_get_member(message);
929
930         /* create the request */
931         dreq = calloc(1 , sizeof *dreq);
932         if (dreq == NULL)
933                 goto out_of_memory;
934
935         /* get the data */
936         rc = sd_bus_message_read(message, "ssu", &dreq->request, &uuid, &flags);
937         if (rc < 0) {
938                 sd_bus_reply_method_errorf(message, SD_BUS_ERROR_INVALID_SIGNATURE, "invalid signature");
939                 goto error;
940         }
941
942         /* connect to the context */
943         if (afb_context_connect(&dreq->xreq.context, uuid, NULL) < 0)
944                 goto out_of_memory;
945         session = dreq->xreq.context.session;
946
947         /* get the listener */
948         listener = afb_api_dbus_server_listerner_get(api, sd_bus_message_get_sender(message), session);
949         if (listener == NULL)
950                 goto out_of_memory;
951
952         /* fulfill the request and emit it */
953         dreq->xreq.context.flags = flags;
954         dreq->message = sd_bus_message_ref(message);
955         dreq->json = json_tokener_parse(dreq->request);
956         if (dreq->json == NULL && strcmp(dreq->request, "null")) {
957                 /* lazy error detection of json request. Is it to improve? */
958                 dreq->json = json_object_new_string(dreq->request);
959         }
960         dreq->listener = listener;
961         dreq->xreq.refcount = 1;
962         dreq->xreq.query = dreq;
963         dreq->xreq.queryitf = &afb_api_dbus_xreq_itf;
964         dreq->xreq.api = api->api;
965         dreq->xreq.verb = method;
966         afb_apis_call(&dreq->xreq);
967         afb_xreq_unref(&dreq->xreq);
968         return 1;
969
970 out_of_memory:
971         sd_bus_reply_method_errorf(message, SD_BUS_ERROR_NO_MEMORY, "out of memory");
972 error:
973         free(dreq);
974         return 1;
975 }
976
977 /* create the service */
978 int afb_api_dbus_add_server(const char *path)
979 {
980         int rc;
981         struct api_dbus *api;
982
983         /* get the dbus api object connected */
984         api = make_api_dbus(path);
985         if (api == NULL)
986                 goto error;
987
988         /* request the service object name */
989         rc = sd_bus_request_name(api->sdbus, api->name, 0);
990         if (rc < 0) {
991                 errno = -rc;
992                 ERROR("can't register name %s", api->name);
993                 goto error2;
994         }
995
996         /* connect the service to the dbus object */
997         rc = sd_bus_add_object(api->sdbus, &api->server.slot_call, api->path, api_dbus_server_on_object_called, api);
998         if (rc < 0) {
999                 errno = -rc;
1000                 ERROR("can't add dbus object %s for %s", api->path, api->name);
1001                 goto error3;
1002         }
1003         INFO("afb service over dbus installed, name %s, path %s", api->name, api->path);
1004
1005         api->server.listener = afb_evt_listener_create(&evt_broadcast_itf, api);
1006         return 0;
1007 error3:
1008         sd_bus_release_name(api->sdbus, api->name);
1009 error2:
1010         destroy_api_dbus(api);
1011 error:
1012         return -1;
1013 }
1014
1015