--- /dev/null
+#include <stdbool.h>
+#include "tests.h"
+#include "dso.h"
+#include "debug.h"
+
+static int test(const char *path, bool alloc_name, bool alloc_ext,
+               bool kmod, bool comp, const char *name, const char *ext)
+{
+       struct kmod_path m;
+
+       memset(&m, 0x0, sizeof(m));
+
+       TEST_ASSERT_VAL("kmod_path__parse",
+                       !__kmod_path__parse(&m, path, alloc_name, alloc_ext));
+
+       pr_debug("%s - alloc name %d, alloc ext %d, kmod %d, comp %d, name '%s', ext '%s'\n",
+                path, alloc_name, alloc_ext, m.kmod, m.comp, m.name, m.ext);
+
+       TEST_ASSERT_VAL("wrong kmod", m.kmod == kmod);
+       TEST_ASSERT_VAL("wrong comp", m.comp == comp);
+
+       if (ext)
+               TEST_ASSERT_VAL("wrong ext", m.ext && !strcmp(ext, m.ext));
+       else
+               TEST_ASSERT_VAL("wrong ext", !m.ext);
+
+       if (name)
+               TEST_ASSERT_VAL("wrong name", m.name && !strcmp(name, m.name));
+       else
+               TEST_ASSERT_VAL("wrong name", !m.name);
+
+       free(m.name);
+       free(m.ext);
+       return 0;
+}
+
+#define T(path, an, ae, k, c, n, e) \
+       TEST_ASSERT_VAL("failed", !test(path, an, ae, k, c, n, e))
+
+int test__kmod_path__parse(void)
+{
+       /* path                alloc_name  alloc_ext   kmod  comp   name     ext */
+       T("/xxxx/xxxx/x-x.ko", true      , true      , true, false, "[x_x]", NULL);
+       T("/xxxx/xxxx/x-x.ko", false     , true      , true, false, NULL   , NULL);
+       T("/xxxx/xxxx/x-x.ko", true      , false     , true, false, "[x_x]", NULL);
+       T("/xxxx/xxxx/x-x.ko", false     , false     , true, false, NULL   , NULL);
+
+       /* path                alloc_name  alloc_ext   kmod  comp  name   ext */
+       T("/xxxx/xxxx/x.ko.gz", true     , true      , true, true, "[x]", "gz");
+       T("/xxxx/xxxx/x.ko.gz", false    , true      , true, true, NULL , "gz");
+       T("/xxxx/xxxx/x.ko.gz", true     , false     , true, true, "[x]", NULL);
+       T("/xxxx/xxxx/x.ko.gz", false    , false     , true, true, NULL , NULL);
+
+       /* path              alloc_name  alloc_ext  kmod   comp  name    ext */
+       T("/xxxx/xxxx/x.gz", true      , true     , false, true, "x.gz" ,"gz");
+       T("/xxxx/xxxx/x.gz", false     , true     , false, true, NULL   ,"gz");
+       T("/xxxx/xxxx/x.gz", true      , false    , false, true, "x.gz" , NULL);
+       T("/xxxx/xxxx/x.gz", false     , false    , false, true, NULL   , NULL);
+
+       /* path   alloc_name  alloc_ext  kmod   comp  name     ext */
+       T("x.gz", true      , true     , false, true, "x.gz", "gz");
+       T("x.gz", false     , true     , false, true, NULL  , "gz");
+       T("x.gz", true      , false    , false, true, "x.gz", NULL);
+       T("x.gz", false     , false    , false, true, NULL  , NULL);
+
+       /* path      alloc_name  alloc_ext  kmod  comp  name  ext */
+       T("x.ko.gz", true      , true     , true, true, "[x]", "gz");
+       T("x.ko.gz", false     , true     , true, true, NULL , "gz");
+       T("x.ko.gz", true      , false    , true, true, "[x]", NULL);
+       T("x.ko.gz", false     , false    , true, true, NULL , NULL);
+
+       return 0;
+}
 
                dso->symtab_type == DSO_BINARY_TYPE__GUEST_KMODULE_COMP;
 }
 
+/*
+ * Parses kernel module specified in @path and updates
+ * @m argument like:
+ *
+ *    @comp - true if @path contains supported compression suffix,
+ *            false otherwise
+ *    @kmod - true if @path contains '.ko' suffix in right position,
+ *            false otherwise
+ *    @name - if (@alloc_name && @kmod) is true, it contains strdup-ed base name
+ *            of the kernel module without suffixes, otherwise strudup-ed
+ *            base name of @path
+ *    @ext  - if (@alloc_ext && @comp) is true, it contains strdup-ed string
+ *            the compression suffix
+ *
+ * Returns 0 if there's no strdup error, -ENOMEM otherwise.
+ */
+int __kmod_path__parse(struct kmod_path *m, const char *path,
+                      bool alloc_name, bool alloc_ext)
+{
+       const char *name = strrchr(path, '/');
+       const char *ext  = strrchr(path, '.');
+
+       memset(m, 0x0, sizeof(*m));
+       name = name ? name + 1 : path;
+
+       /* No extension, just return name. */
+       if (ext == NULL) {
+               if (alloc_name) {
+                       m->name = strdup(name);
+                       return m->name ? 0 : -ENOMEM;
+               }
+               return 0;
+       }
+
+       if (is_supported_compression(ext + 1)) {
+               m->comp = true;
+               ext -= 3;
+       }
+
+       /* Check .ko extension only if there's enough name left. */
+       if (ext > name)
+               m->kmod = !strncmp(ext, ".ko", 3);
+
+       if (alloc_name) {
+               if (m->kmod) {
+                       if (asprintf(&m->name, "[%.*s]", (int) (ext - name), name) == -1)
+                               return -ENOMEM;
+               } else {
+                       if (asprintf(&m->name, "%s", name) == -1)
+                               return -ENOMEM;
+               }
+
+               strxfrchar(m->name, '-', '_');
+       }
+
+       if (alloc_ext && m->comp) {
+               m->ext = strdup(ext + 4);
+               if (!m->ext) {
+                       free((void *) m->name);
+                       return -ENOMEM;
+               }
+       }
+
+       return 0;
+}
+
 /*
  * Global list of open DSOs and the counter.
  */