Fix uninstall of widgets without icons
[src/app-framework-main.git] / src / wgtpkg-uninstall.c
1 /*
2  Copyright (C) 2015-2020 IoT.bzh
3  Copyright (C) 2020 Konsulko Group
4
5  author: José Bollo <jose.bollo@iot.bzh>
6
7  Licensed under the Apache License, Version 2.0 (the "License");
8  you may not use this file except in compliance with the License.
9  You may obtain a copy of the License at
10
11      http://www.apache.org/licenses/LICENSE-2.0
12
13  Unless required by applicable law or agreed to in writing, software
14  distributed under the License is distributed on an "AS IS" BASIS,
15  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  See the License for the specific language governing permissions and
17  limitations under the License.
18 */
19
20 #define _GNU_SOURCE
21
22 #include <limits.h>
23 #include <errno.h>
24 #include <string.h>
25 #include <stdio.h>
26 #include <assert.h>
27 #include <unistd.h>
28 #include <fcntl.h>
29
30 #include "verbose.h"
31 #include "utils-dir.h"
32 #include "secmgr-wrap.h"
33 #include "wgtpkg-unit.h"
34 #include "wgt.h"
35 #include "wgt-info.h"
36
37 /* uninstall the widget of idaver */
38 int uninstall_widget(const char *idaver, const char *root)
39 {
40         char *id;
41         char *ver;
42         char path[PATH_MAX];
43         const char *at;
44         int rc;
45         struct unitconf uconf;
46         struct wgt_info *ifo;
47
48         NOTICE("-- UNINSTALLING widget of id %s from %s --", idaver, root);
49
50         /* find the last '@' of the id */
51         at = strrchr(idaver, '@');
52         if (at == NULL) {
53                 ERROR("bad widget id '%s', no @", idaver);
54                 errno = EINVAL;
55                 return -1;
56         }
57         id = strndupa(idaver, (size_t)(at - idaver));
58         ver = strdupa(at + 1);
59
60         /* compute the path */
61         rc = snprintf(path, sizeof path, "%s/%s/%s", root, id, ver);
62         if (rc >= (int)sizeof path) {
63                 ERROR("bad widget id '%s', too long", idaver);
64                 errno = EINVAL;
65                 return -1;
66         }
67
68         /* removes the units */
69         ifo = wgt_info_createat(AT_FDCWD, path, 1, 1, 1);
70         if (!ifo) {
71                 ERROR("can't read widget config in directory '%s': %m", path);
72                 return -1;
73         }
74         uconf.installdir = path;
75         uconf.icondir = FWK_ICON_DIR;
76         uconf.new_afid = 0;
77         uconf.base_http_ports = 0;
78         unit_uninstall(ifo, &uconf);
79         wgt_info_unref(ifo);
80
81         /* removes the directory of the application */
82         rc = remove_directory(path, 1);
83         if (rc < 0) {
84                 ERROR("while removing directory '%s': %m", path);
85                 return -1;
86         }
87
88         /* removes the icon of the application */
89         rc = snprintf(path, sizeof path, "%s/%s", FWK_ICON_DIR, idaver);
90         assert(rc < (int)sizeof path);
91         rc = unlink(path);
92         if (rc < 0 && errno != ENOENT) {
93                 ERROR("can't remove '%s': %m", path);
94                 return -1;
95         }
96
97         /* removes the parent directory if empty */
98         rc = snprintf(path, sizeof path, "%s/%s", root, id);
99         assert(rc < (int)sizeof path);
100         rc = rmdir(path);
101         if (rc < 0 && errno == ENOTEMPTY)
102                 return rc;
103         if (rc < 0) {
104                 ERROR("while removing directory '%s': %m", path);
105                 return -1;
106         }
107
108         /*
109          * parent directory removed: last occurrence of the application
110          * uninstall it for the security-manager
111          */
112         rc = secmgr_init(id);
113         if (rc) {
114                 ERROR("can't init security manager context");
115                 return -1;
116         }
117         rc = secmgr_uninstall();
118         if (rc) {
119                 ERROR("can't uninstall security manager context");
120                 return -1;
121         }
122         return 0;
123 }
124