2 * Copyright (C) 2015, 2016, 2017 IoT.bzh
3 * Author "Fulup Ar Foll"
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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 #define _GNU_SOURCE /* See feature_test_macros(7) */
23 #include <json-c/json.h>
25 #define AFB_BINDING_VERSION 2
26 #include <afb/afb-binding.h>
29 #include "utils-systemd.h"
33 #include "wgtpkg-install.h"
34 #include "wgtpkg-uninstall.h"
35 #include "wrap-json.h"
37 static const char _added_[] = "added";
38 static const char _a_l_c_[] = "application-list-changed";
39 static const char _detail_[] = "detail";
40 static const char _id_[] = "id";
41 static const char _install_[] = "install";
42 static const char _not_found_[] = "not-found";
43 static const char _once_[] = "once";
44 static const char _pause_[] = "pause";
45 static const char _resume_[] = "resume";
46 static const char _runid_[] = "runid";
47 static const char _runnables_[] = "runnables";
48 static const char _runners_[] = "runners";
49 static const char _start_[] = "start";
50 static const char _state_[] = "state";
51 static const char _terminate_[] = "terminate";
52 static const char _uninstall_[] = "uninstall";
54 static const char *rootdir = FWK_APP_DIR;
55 static struct afb_event applist_changed_event;
56 static struct afm_udb *afudb;
57 static struct json_object *json_true;
59 static void do_reloads()
61 /* enforce daemon reload */
62 systemd_daemon_reload(0);
63 systemd_unit_restart_name(0, "sockets.target");
66 static void bad_request(struct afb_req req)
68 afb_req_fail(req, "bad-request", NULL);
71 static void not_found(struct afb_req req)
73 afb_req_fail(req, _not_found_, NULL);
76 static void cant_start(struct afb_req req)
78 afb_req_fail(req, "cannot-start", NULL);
82 * Broadcast the event "application-list-changed".
83 * This event is sent was the event "changed" is received from dbus.
85 static void application_list_changed(const char *operation, const char *data)
87 struct json_object *e = NULL;
88 wrap_json_pack(&e, "{ss ss}", "operation", operation, "data", data);
89 afb_event_broadcast(applist_changed_event, e);
93 * retrieves the 'runid' in parameters received with the
94 * request 'req' for the 'method'.
96 * Returns 1 in case of success.
97 * Otherwise, if the 'runid' can't be retrived, an error stating
98 * the bad request is replied for 'req' and 0 is returned.
100 static int onrunid(struct afb_req req, const char *method, int *runid)
102 struct json_object *json;
104 json = afb_req_json(req);
105 if (wrap_json_unpack(json, "i", runid)
106 && wrap_json_unpack(json, "{si}", _runid_, runid)) {
107 INFO("bad request method %s: %s", method,
108 json_object_to_json_string(json));
113 INFO("method %s called for %d", method, *runid);
118 * Sends the reply 'resp' to the request 'req' if 'resp' is not NULLzero.
119 * Otherwise, when 'resp' is NULL replies the error string 'errstr'.
121 static void reply(struct afb_req req, struct json_object *resp, const char *errstr)
124 afb_req_fail(req, errstr, NULL);
126 afb_req_success(req, resp, NULL);
130 * Sends the reply "true" to the request 'req' if 'status' is zero.
131 * Otherwise, when 'status' is not zero replies the error string 'errstr'.
133 static void reply_status(struct afb_req req, int status, const char *errstr)
135 reply(req, status ? NULL : json_object_get(json_true), errstr);
139 * On query "runnables"
141 static void runnables(struct afb_req req)
143 struct json_object *resp;
144 INFO("method runnables called");
145 resp = afm_udb_applications_public(afudb, afb_req_get_uid(req));
146 afb_req_success(req, resp, NULL);
152 static void detail(struct afb_req req)
155 struct json_object *resp, *json;
157 /* scan the request */
158 json = afb_req_json(req);
159 if (wrap_json_unpack(json, "s", &appid)
160 && wrap_json_unpack(json, "{ss}", _id_, &appid)) {
165 /* wants details for appid */
166 INFO("method detail called for %s", appid);
167 resp = afm_udb_get_application_public(afudb, appid, afb_req_get_uid(req));
169 afb_req_success(req, resp, NULL);
177 static void start(struct afb_req req)
180 struct json_object *appli, *resp, *json;
183 /* scan the request */
184 json = afb_req_json(req);
185 if (wrap_json_unpack(json, "s", &appid)
186 && wrap_json_unpack(json, "{ss}", _id_, &appid)) {
191 /* get the application */
192 INFO("method start called for %s", appid);
193 appli = afm_udb_get_application_private(afudb, appid, afb_req_get_uid(req));
199 /* launch the application */
200 runid = afm_urun_start(appli, afb_req_get_uid(req));
209 wrap_json_pack(&resp, "{si}", _runid_, runid);
211 wrap_json_pack(&resp, "i", runid);
213 afb_req_success(req, resp, NULL);
219 static void once(struct afb_req req)
222 struct json_object *appli, *resp, *json;
225 /* scan the request */
226 json = afb_req_json(req);
227 if (wrap_json_unpack(json, "s", &appid)
228 && wrap_json_unpack(json, "{ss}", _id_, &appid)) {
233 /* get the application */
234 INFO("method once called for %s", appid);
235 appli = afm_udb_get_application_private(afudb, appid, afb_req_get_uid(req));
241 /* launch the application */
242 runid = afm_urun_once(appli, afb_req_get_uid(req));
248 /* returns the state */
249 resp = afm_urun_state(afudb, runid, afb_req_get_uid(req));
250 afb_req_success(req, resp, NULL);
256 static void pause(struct afb_req req)
259 if (onrunid(req, "pause", &runid)) {
260 status = afm_urun_pause(runid, afb_req_get_uid(req));
261 reply_status(req, status, _not_found_);
266 * On query "resume" from 'smsg' with parameters of 'obj'.
268 static void resume(struct afb_req req)
271 if (onrunid(req, "resume", &runid)) {
272 status = afm_urun_resume(runid, afb_req_get_uid(req));
273 reply_status(req, status, _not_found_);
278 * On query "terminate"
280 static void terminate(struct afb_req req)
283 if (onrunid(req, "terminate", &runid)) {
284 status = afm_urun_terminate(runid, afb_req_get_uid(req));
285 reply_status(req, status, _not_found_);
292 static void runners(struct afb_req req)
294 struct json_object *resp;
295 INFO("method runners called");
296 resp = afm_urun_list(afudb, afb_req_get_uid(req));
297 afb_req_success(req, resp, NULL);
303 static void state(struct afb_req req)
306 struct json_object *resp;
307 if (onrunid(req, "state", &runid)) {
308 resp = afm_urun_state(afudb, runid, afb_req_get_uid(req));
309 reply(req, resp, _not_found_);
313 static void install(struct afb_req req)
319 struct wgt_info *ifo;
320 struct json_object *json;
321 struct json_object *resp;
323 /* default settings */
328 /* scan the request */
329 json = afb_req_json(req);
330 if (wrap_json_unpack(json, "s", &wgtfile)
331 && wrap_json_unpack(json, "{ss s?s s?b s?b}",
335 "reload", &reload)) {
336 return bad_request(req);
339 /* install the widget */
340 ifo = install_widget(wgtfile, root, force);
342 afb_req_fail_f(req, "failed", "installation failed: %m");
344 afm_udb_update(afudb);
345 /* reload if needed */
349 /* build the response */
350 wrap_json_pack(&resp, "{ss}", _added_, wgt_info_desc(ifo)->idaver);
351 afb_req_success(req, resp, NULL);
352 application_list_changed(_install_, wgt_info_desc(ifo)->idaver);
359 static void uninstall(struct afb_req req)
363 struct json_object *json;
366 /* default settings */
369 /* scan the request */
370 json = afb_req_json(req);
371 if (wrap_json_unpack(json, "s", &idaver)
372 && wrap_json_unpack(json, "{ss s?s}",
375 return bad_request(req);
378 /* install the widget */
379 rc = uninstall_widget(idaver, root);
381 afb_req_fail_f(req, "failed", "uninstallation failed: %m");
383 afm_udb_update(afudb);
384 afb_req_success(req, NULL, NULL);
385 application_list_changed(_uninstall_, idaver);
392 afudb = afm_udb_create(1, 0, "afm-appli-");
394 ERROR("afm_udb_create failed");
399 json_true = json_object_new_boolean(1);
401 /* create the event */
402 applist_changed_event = afb_daemon_make_event(_a_l_c_);
403 return -!afb_event_is_valid(applist_changed_event);
406 static const struct afb_auth
408 .type = afb_auth_Permission,
409 .text = "urn:AGL:permission:afm:system:widget:install"
412 .type = afb_auth_Permission,
413 .text = "urn:AGL:permission:afm:system:widget:uninstall"
417 static const struct afb_verb_v2 verbs[] =
419 {_runnables_, runnables, NULL, "Get list of runnable applications", AFB_SESSION_CHECK_V2 },
420 {_detail_ , detail, NULL, "Get the details for one application", AFB_SESSION_CHECK_V2 },
421 {_start_ , start, NULL, "Start an application", AFB_SESSION_CHECK_V2 },
422 {_once_ , once, NULL, "Start once an application", AFB_SESSION_CHECK_V2 },
423 {_terminate_, terminate, NULL, "Terminate a running application", AFB_SESSION_CHECK_V2 },
424 {_pause_ , pause, NULL, "Pause a running application", AFB_SESSION_CHECK_V2 },
425 {_resume_ , resume, NULL, "Resume a paused application", AFB_SESSION_CHECK_V2 },
426 {_runners_ , runners, NULL, "Get the list of running applications", AFB_SESSION_CHECK_V2 },
427 {_state_ , state, NULL, "Get the state of a running application", AFB_SESSION_CHECK_V2 },
428 {_install_ , install, NULL, "Install an application using a widget file", AFB_SESSION_CHECK_V2 },
429 {_uninstall_, uninstall, NULL, "Uninstall an application", AFB_SESSION_CHECK_V2 },
430 { NULL, NULL, NULL, NULL, 0 }
433 const struct afb_binding_v2 afbBindingV2 = {
435 .specification = NULL,
436 .info = "Application Framework Master Service",
441 .noconcurrency = 1 /* relies on binder for serialisation of requests */