2 * Copyright (C) 2010-2011 Red Hat Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
41 #include "ignore-value.h"
45 #include "guestfs-internal.h"
46 #include "guestfs-internal-actions.h"
47 #include "guestfs_protocol.h"
49 #if defined(HAVE_PCRE) && defined(HAVE_HIVEX)
52 static struct guestfs_application_list *list_applications_rpm (guestfs_h *g, struct inspect_fs *fs);
54 static struct guestfs_application_list *list_applications_deb (guestfs_h *g, struct inspect_fs *fs);
55 static struct guestfs_application_list *list_applications_windows (guestfs_h *g, struct inspect_fs *fs);
56 static void add_application (guestfs_h *g, struct guestfs_application_list *, const char *name, const char *display_name, int32_t epoch, const char *version, const char *release, const char *install_path, const char *publisher, const char *url, const char *description);
57 static void sort_applications (struct guestfs_application_list *);
59 /* Unlike the simple inspect-get-* calls, this one assumes that the
60 * disks are mounted up, and reads files from the mounted disks.
62 struct guestfs_application_list *
63 guestfs__inspect_list_applications (guestfs_h *g, const char *root)
65 struct inspect_fs *fs = guestfs___search_for_root (g, root);
69 struct guestfs_application_list *ret = NULL;
71 /* Presently we can only list applications for installed disks. It
72 * is possible in future to get lists of packages from installers.
74 if (fs->format == OS_FORMAT_INSTALLED) {
77 switch (fs->package_format) {
78 case OS_PACKAGE_FORMAT_RPM:
80 ret = list_applications_rpm (g, fs);
86 case OS_PACKAGE_FORMAT_DEB:
87 ret = list_applications_deb (g, fs);
92 case OS_PACKAGE_FORMAT_PACMAN:
93 case OS_PACKAGE_FORMAT_EBUILD:
94 case OS_PACKAGE_FORMAT_PISI:
95 case OS_PACKAGE_FORMAT_UNKNOWN:
97 /* nothing - keep GCC happy */;
101 case OS_TYPE_WINDOWS:
102 ret = list_applications_windows (g, fs);
107 case OS_TYPE_FREEBSD:
108 case OS_TYPE_UNKNOWN:
110 /* nothing - keep GCC happy */;
115 /* Don't know how to do inspection. Not an error, return an
118 ret = safe_malloc (g, sizeof *ret);
123 sort_applications (ret);
131 read_rpm_name (guestfs_h *g,
132 const unsigned char *key, size_t keylen,
133 const unsigned char *value, size_t valuelen,
136 struct guestfs_application_list *apps = appsv;
139 /* The name (key) field won't be NUL-terminated, so we must do that. */
140 name = safe_malloc (g, keylen+1);
141 memcpy (name, key, keylen);
144 add_application (g, apps, name, "", 0, "", "", "", "", "", "");
151 static struct guestfs_application_list *
152 list_applications_rpm (guestfs_h *g, struct inspect_fs *fs)
154 const char *basename = "rpm_Name";
155 char tmpdir_basename[strlen (g->tmpdir) + strlen (basename) + 2];
156 snprintf (tmpdir_basename, sizeof tmpdir_basename, "%s/%s",
157 g->tmpdir, basename);
159 if (guestfs___download_to_tmp (g, "/var/lib/rpm/Name", basename,
160 MAX_PKG_DB_SIZE) == -1)
163 /* Allocate 'apps' list. */
164 struct guestfs_application_list *apps;
165 apps = safe_malloc (g, sizeof *apps);
169 if (guestfs___read_db_dump (g, tmpdir_basename, apps, read_rpm_name) == -1) {
170 guestfs_free_application_list (apps);
177 #endif /* defined DB_DUMP */
179 static struct guestfs_application_list *
180 list_applications_deb (guestfs_h *g, struct inspect_fs *fs)
182 const char *basename = "deb_status";
183 char tmpdir_basename[strlen (g->tmpdir) + strlen (basename) + 2];
184 snprintf (tmpdir_basename, sizeof tmpdir_basename, "%s/%s",
185 g->tmpdir, basename);
187 if (guestfs___download_to_tmp (g, "/var/lib/dpkg/status", basename,
188 MAX_PKG_DB_SIZE) == -1)
191 struct guestfs_application_list *apps = NULL, *ret = NULL;
195 char *name = NULL, *version = NULL, *release = NULL;
196 int installed_flag = 0;
198 fp = fopen (tmpdir_basename, "r");
200 perrorf (g, "fopen: %s", tmpdir_basename);
204 /* Allocate 'apps' list. */
205 apps = safe_malloc (g, sizeof *apps);
209 /* Read the temporary file. Each package entry is separated by
211 * XXX Strictly speaking this is in mailbox header format, so it
212 * would be possible for fields to spread across multiple lines,
213 * although for the short fields that we are concerned about this is
214 * unlikely and not seen in practice.
216 while (fgets (line, sizeof line, fp) != NULL) {
218 if (len > 0 && line[len-1] == '\n') {
223 if (STRPREFIX (line, "Package: ")) {
225 name = safe_strdup (g, &line[9]);
227 else if (STRPREFIX (line, "Status: ")) {
228 installed_flag = strstr (&line[8], "installed") != NULL;
230 else if (STRPREFIX (line, "Version: ")) {
233 char *p = strchr (&line[9], '-');
236 version = safe_strdup (g, &line[9]);
237 release = safe_strdup (g, p+1);
239 version = safe_strdup (g, &line[9]);
243 else if (STREQ (line, "")) {
244 if (installed_flag && name && version)
245 add_application (g, apps, name, "", 0, version, release ? : "",
250 name = version = release = NULL;
255 if (fclose (fp) == -1) {
256 perrorf (g, "fclose: %s", tmpdir_basename);
264 if (ret == NULL && apps != NULL)
265 guestfs_free_application_list (apps);
274 static void list_applications_windows_from_path (guestfs_h *g, hive_h *h, struct guestfs_application_list *apps, const char **path, size_t path_len);
276 static struct guestfs_application_list *
277 list_applications_windows (guestfs_h *g, struct inspect_fs *fs)
279 const char *basename = "software";
280 char tmpdir_basename[strlen (g->tmpdir) + strlen (basename) + 2];
281 snprintf (tmpdir_basename, sizeof tmpdir_basename, "%s/%s",
282 g->tmpdir, basename);
284 size_t len = strlen (fs->windows_systemroot) + 64;
286 snprintf (software, len, "%s/system32/config/software",
287 fs->windows_systemroot);
289 char *software_path = guestfs___case_sensitive_path_silently (g, software);
291 /* If the software hive doesn't exist, just accept that we cannot
296 struct guestfs_application_list *ret = NULL;
299 if (guestfs___download_to_tmp (g, software_path, basename,
300 MAX_REGISTRY_SIZE) == -1)
303 free (software_path);
304 software_path = NULL;
306 h = hivex_open (tmpdir_basename, g->verbose ? HIVEX_OPEN_VERBOSE : 0);
308 perrorf (g, "hivex_open");
312 /* Allocate apps list. */
313 ret = safe_malloc (g, sizeof *ret);
317 /* Ordinary native applications. */
318 const char *hivepath[] =
319 { "Microsoft", "Windows", "CurrentVersion", "Uninstall" };
320 list_applications_windows_from_path (g, h, ret, hivepath,
321 sizeof hivepath / sizeof hivepath[0]);
323 /* 32-bit emulated Windows apps running on the WOW64 emulator.
324 * http://support.microsoft.com/kb/896459 (RHBZ#692545).
326 const char *hivepath2[] =
327 { "WOW6432node", "Microsoft", "Windows", "CurrentVersion", "Uninstall" };
328 list_applications_windows_from_path (g, h, ret, hivepath2,
329 sizeof hivepath2 / sizeof hivepath2[0]);
332 if (h) hivex_close (h);
333 free (software_path);
339 list_applications_windows_from_path (guestfs_h *g, hive_h *h,
340 struct guestfs_application_list *apps,
341 const char **path, size_t path_len)
343 hive_node_h *children = NULL;
347 node = hivex_root (h);
349 for (i = 0; node != 0 && i < path_len; ++i)
350 node = hivex_node_get_child (h, node, path[i]);
355 children = hivex_node_children (h, node);
356 if (children == NULL)
359 /* Consider any child node that has a DisplayName key.
361 * http://nsis.sourceforge.net/Add_uninstall_information_to_Add/Remove_Programs#Optional_values
363 for (i = 0; children[i] != 0; ++i) {
366 char *display_name = NULL;
367 char *version = NULL;
368 char *install_path = NULL;
369 char *publisher = NULL;
371 char *comments = NULL;
373 /* Use the node name as a proxy for the package name in Linux. The
374 * display name is not language-independent, so it cannot be used.
376 name = hivex_node_name (h, children[i]);
380 value = hivex_node_get_value (h, children[i], "DisplayName");
382 display_name = hivex_value_string (h, value);
384 value = hivex_node_get_value (h, children[i], "DisplayVersion");
386 version = hivex_value_string (h, value);
387 value = hivex_node_get_value (h, children[i], "InstallLocation");
389 install_path = hivex_value_string (h, value);
390 value = hivex_node_get_value (h, children[i], "Publisher");
392 publisher = hivex_value_string (h, value);
393 value = hivex_node_get_value (h, children[i], "URLInfoAbout");
395 url = hivex_value_string (h, value);
396 value = hivex_node_get_value (h, children[i], "Comments");
398 comments = hivex_value_string (h, value);
400 add_application (g, apps, name, display_name, 0,
423 add_application (guestfs_h *g, struct guestfs_application_list *apps,
424 const char *name, const char *display_name, int32_t epoch,
425 const char *version, const char *release,
426 const char *install_path,
427 const char *publisher, const char *url,
428 const char *description)
431 apps->val = safe_realloc (g, apps->val,
432 apps->len * sizeof (struct guestfs_application));
433 apps->val[apps->len-1].app_name = safe_strdup (g, name);
434 apps->val[apps->len-1].app_display_name = safe_strdup (g, display_name);
435 apps->val[apps->len-1].app_epoch = epoch;
436 apps->val[apps->len-1].app_version = safe_strdup (g, version);
437 apps->val[apps->len-1].app_release = safe_strdup (g, release);
438 apps->val[apps->len-1].app_install_path = safe_strdup (g, install_path);
439 /* XXX Translated path is not implemented yet. */
440 apps->val[apps->len-1].app_trans_path = safe_strdup (g, "");
441 apps->val[apps->len-1].app_publisher = safe_strdup (g, publisher);
442 apps->val[apps->len-1].app_url = safe_strdup (g, url);
443 /* XXX The next two are not yet implemented for any package
444 * format, but we could easily support them for rpm and deb.
446 apps->val[apps->len-1].app_source_package = safe_strdup (g, "");
447 apps->val[apps->len-1].app_summary = safe_strdup (g, "");
448 apps->val[apps->len-1].app_description = safe_strdup (g, description);
451 /* Sort applications by name before returning the list. */
453 compare_applications (const void *vp1, const void *vp2)
455 const struct guestfs_application *v1 = vp1;
456 const struct guestfs_application *v2 = vp2;
458 return strcmp (v1->app_name, v2->app_name);
462 sort_applications (struct guestfs_application_list *apps)
464 if (apps && apps->val)
465 qsort (apps->val, apps->len, sizeof (struct guestfs_application),
466 compare_applications);
469 #else /* no PCRE or hivex at compile time */
471 /* XXX These functions should be in an optgroup. */
473 #define NOT_IMPL(r) \
474 error (g, _("inspection API not available since this version of libguestfs was compiled without PCRE or hivex libraries")); \
477 struct guestfs_application_list *
478 guestfs__inspect_list_applications (guestfs_h *g, const char *root)
483 #endif /* no PCRE or hivex at compile time */