wgtpkg-install: set exec flag for application/vnd.agl.native
authorJosé Bollo <jose.bollo@iot.bzh>
Wed, 14 Dec 2016 09:27:13 +0000 (10:27 +0100)
committerJosé Bollo <jose.bollo@iot.bzh>
Wed, 14 Dec 2016 09:27:13 +0000 (10:27 +0100)
This is needed for executable having a binder.

Also conforming to RFC 2045, mime types are made
case insensitive.

Change-Id: I065c8eada5ec044daca73b3bf994b0d6f3587414
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
TODO
src/afm-launch.c
src/wgtpkg-install.c

diff --git a/TODO b/TODO
index 268feac..c1bcdc2 100644 (file)
--- a/TODO
+++ b/TODO
@@ -6,3 +6,4 @@ List of things to do
 - use key facilities of kernel
 - remove the link to the icon on failure or create it lately
 - improves safety on power failure
+- make application ids (idaver) NOT CASE SENSITIVE
index d31e24b..8391943 100644 (file)
@@ -856,7 +856,7 @@ static struct desc_launcher *search_launcher(const char *type,
        for (dl = launchers ; dl ; dl = dl->next)
                if (dl->mode == mode)
                        for (tl = dl->types ; tl != NULL ; tl = tl->next)
-                               if (!strcmp(tl->type, type))
+                               if (!strcasecmp(tl->type, type))
                                        return dl;
        return NULL;
 }
index 8035a30..71a0ff6 100644 (file)
 static const char permission_required[] = "required";
 static const char permission_optional[] = "optional";
 static const char feature_required_permissions[] = FWK_PREFIX "required-permissions";
-static const char exec_type_string[] = "application/x-executable";
+static const char* exec_type_strings[] = {
+       "application/x-executable",
+       "application/vnd.agl.native"
+};
 
 static int check_defined(const void *data, const char *name)
 {
@@ -185,8 +188,16 @@ static int install_icon(const struct wgt_desc *desc)
 
 static int install_exec_flag(const struct wgt_desc *desc)
 {
-       return desc->content_type != NULL && !strcmp(desc->content_type, exec_type_string)
-               ? fchmodat(workdirfd, desc->content_src, 0755, 0) : 0;
+       int i;
+
+       if (desc->content_type) {
+               i = sizeof exec_type_strings / sizeof *exec_type_strings;
+               while (i) {
+                       if (!strcasecmp(desc->content_type, exec_type_strings[--i]))
+                               return fchmodat(workdirfd, desc->content_src, 0755, 0);
+               }
+       }
+       return 0;
 }
 
 static int install_security(const struct wgt_desc *desc)