LCOV - code coverage report
Current view: top level - portable - portable.c (source / functions) Hit Total Coverage
Test: systemd_full.info Lines: 0 737 0.0 %
Date: 2019-08-23 13:36:53 Functions: 0 34 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 804 0.0 %

           Branch data     Line data    Source code
       1                 :            : /* SPDX-License-Identifier: LGPL-2.1+ */
       2                 :            : 
       3                 :            : #include "bus-common-errors.h"
       4                 :            : #include "bus-error.h"
       5                 :            : #include "conf-files.h"
       6                 :            : #include "copy.h"
       7                 :            : #include "def.h"
       8                 :            : #include "dirent-util.h"
       9                 :            : #include "dissect-image.h"
      10                 :            : #include "fd-util.h"
      11                 :            : #include "fileio.h"
      12                 :            : #include "fs-util.h"
      13                 :            : #include "install.h"
      14                 :            : #include "io-util.h"
      15                 :            : #include "locale-util.h"
      16                 :            : #include "loop-util.h"
      17                 :            : #include "machine-image.h"
      18                 :            : #include "mkdir.h"
      19                 :            : #include "nulstr-util.h"
      20                 :            : #include "os-util.h"
      21                 :            : #include "path-lookup.h"
      22                 :            : #include "portable.h"
      23                 :            : #include "process-util.h"
      24                 :            : #include "set.h"
      25                 :            : #include "signal-util.h"
      26                 :            : #include "socket-util.h"
      27                 :            : #include "sort-util.h"
      28                 :            : #include "string-table.h"
      29                 :            : #include "strv.h"
      30                 :            : #include "tmpfile-util.h"
      31                 :            : #include "user-util.h"
      32                 :            : 
      33                 :            : static const char profile_dirs[] = CONF_PATHS_NULSTR("systemd/portable/profile");
      34                 :            : 
      35                 :            : /* Markers used in the first line of our 20-portable.conf unit file drop-in to determine, that a) the unit file was
      36                 :            :  * dropped there by the portable service logic and b) for which image it was dropped there. */
      37                 :            : #define PORTABLE_DROPIN_MARKER_BEGIN "# Drop-in created for image '"
      38                 :            : #define PORTABLE_DROPIN_MARKER_END "', do not edit."
      39                 :            : 
      40                 :          0 : static bool prefix_match(const char *unit, const char *prefix) {
      41                 :            :         const char *p;
      42                 :            : 
      43                 :          0 :         p = startswith(unit, prefix);
      44         [ #  # ]:          0 :         if (!p)
      45                 :          0 :                 return false;
      46                 :            : 
      47                 :            :         /* Only respect prefixes followed by dash or dot or when there's a complete match */
      48         [ #  # ]:          0 :         return IN_SET(*p, '-', '.', '@', 0);
      49                 :            : }
      50                 :            : 
      51                 :          0 : static bool unit_match(const char *unit, char **matches) {
      52                 :            :         const char *dot;
      53                 :            :         char **i;
      54                 :            : 
      55                 :          0 :         dot = strrchr(unit, '.');
      56         [ #  # ]:          0 :         if (!dot)
      57                 :          0 :                 return false;
      58                 :            : 
      59         [ #  # ]:          0 :         if (!STR_IN_SET(dot, ".service", ".socket", ".target", ".timer", ".path"))
      60                 :          0 :                 return false;
      61                 :            : 
      62                 :            :         /* Empty match expression means: everything */
      63         [ #  # ]:          0 :         if (strv_isempty(matches))
      64                 :          0 :                 return true;
      65                 :            : 
      66                 :            :         /* Otherwise, at least one needs to match */
      67   [ #  #  #  # ]:          0 :         STRV_FOREACH(i, matches)
      68         [ #  # ]:          0 :                 if (prefix_match(unit, *i))
      69                 :          0 :                         return true;
      70                 :            : 
      71                 :          0 :         return false;
      72                 :            : }
      73                 :            : 
      74                 :          0 : static PortableMetadata *portable_metadata_new(const char *name, int fd) {
      75                 :            :         PortableMetadata *m;
      76                 :            : 
      77                 :          0 :         m = malloc0(offsetof(PortableMetadata, name) + strlen(name) + 1);
      78         [ #  # ]:          0 :         if (!m)
      79                 :          0 :                 return NULL;
      80                 :            : 
      81                 :          0 :         strcpy(m->name, name);
      82                 :          0 :         m->fd = fd;
      83                 :            : 
      84                 :          0 :         return m;
      85                 :            : }
      86                 :            : 
      87                 :          0 : PortableMetadata *portable_metadata_unref(PortableMetadata *i) {
      88         [ #  # ]:          0 :         if (!i)
      89                 :          0 :                 return NULL;
      90                 :            : 
      91                 :          0 :         safe_close(i->fd);
      92                 :          0 :         free(i->source);
      93                 :            : 
      94                 :          0 :         return mfree(i);
      95                 :            : }
      96                 :            : 
      97                 :          0 : static int compare_metadata(PortableMetadata *const *x, PortableMetadata *const *y) {
      98                 :          0 :         return strcmp((*x)->name, (*y)->name);
      99                 :            : }
     100                 :            : 
     101                 :          0 : int portable_metadata_hashmap_to_sorted_array(Hashmap *unit_files, PortableMetadata ***ret) {
     102                 :            : 
     103                 :          0 :         _cleanup_free_ PortableMetadata **sorted = NULL;
     104                 :            :         Iterator iterator;
     105                 :            :         PortableMetadata *item;
     106                 :          0 :         size_t k = 0;
     107                 :            : 
     108                 :          0 :         sorted = new(PortableMetadata*, hashmap_size(unit_files));
     109         [ #  # ]:          0 :         if (!sorted)
     110                 :          0 :                 return -ENOMEM;
     111                 :            : 
     112         [ #  # ]:          0 :         HASHMAP_FOREACH(item, unit_files, iterator)
     113                 :          0 :                 sorted[k++] = item;
     114                 :            : 
     115         [ #  # ]:          0 :         assert(k == hashmap_size(unit_files));
     116                 :            : 
     117                 :          0 :         typesafe_qsort(sorted, k, compare_metadata);
     118                 :            : 
     119                 :          0 :         *ret = TAKE_PTR(sorted);
     120                 :          0 :         return 0;
     121                 :            : }
     122                 :            : 
     123                 :          0 : static int send_item(
     124                 :            :                 int socket_fd,
     125                 :            :                 const char *name,
     126                 :            :                 int fd) {
     127                 :            : 
     128                 :            :         union {
     129                 :            :                 struct cmsghdr cmsghdr;
     130                 :            :                 uint8_t buf[CMSG_SPACE(sizeof(int))];
     131                 :          0 :         } control = {};
     132                 :            :         struct iovec iovec;
     133                 :          0 :         struct msghdr mh = {
     134                 :            :                 .msg_control = &control,
     135                 :            :                 .msg_controllen = sizeof(control),
     136                 :            :                 .msg_iov = &iovec,
     137                 :            :                 .msg_iovlen = 1,
     138                 :            :         };
     139                 :            :         struct cmsghdr *cmsg;
     140                 :          0 :         _cleanup_close_ int data_fd = -1;
     141                 :            : 
     142         [ #  # ]:          0 :         assert(socket_fd >= 0);
     143         [ #  # ]:          0 :         assert(name);
     144         [ #  # ]:          0 :         assert(fd >= 0);
     145                 :            : 
     146                 :          0 :         data_fd = fd_duplicate_data_fd(fd);
     147         [ #  # ]:          0 :         if (data_fd < 0)
     148                 :          0 :                 return data_fd;
     149                 :            : 
     150         [ #  # ]:          0 :         cmsg = CMSG_FIRSTHDR(&mh);
     151                 :          0 :         cmsg->cmsg_level = SOL_SOCKET;
     152                 :          0 :         cmsg->cmsg_type = SCM_RIGHTS;
     153                 :          0 :         cmsg->cmsg_len = CMSG_LEN(sizeof(int));
     154                 :          0 :         memcpy(CMSG_DATA(cmsg), &data_fd, sizeof(int));
     155                 :            : 
     156                 :          0 :         mh.msg_controllen = CMSG_SPACE(sizeof(int));
     157                 :          0 :         iovec = IOVEC_MAKE_STRING(name);
     158                 :            : 
     159         [ #  # ]:          0 :         if (sendmsg(socket_fd, &mh, MSG_NOSIGNAL) < 0)
     160                 :          0 :                 return -errno;
     161                 :            : 
     162                 :          0 :         return 0;
     163                 :            : }
     164                 :            : 
     165                 :          0 : static int recv_item(
     166                 :            :                 int socket_fd,
     167                 :            :                 char **ret_name,
     168                 :            :                 int *ret_fd) {
     169                 :            : 
     170                 :            :         union {
     171                 :            :                 struct cmsghdr cmsghdr;
     172                 :            :                 uint8_t buf[CMSG_SPACE(sizeof(int))];
     173                 :          0 :         } control = {};
     174                 :            :         char buffer[PATH_MAX+2];
     175                 :          0 :         struct iovec iov = IOVEC_INIT(buffer, sizeof(buffer)-1);
     176                 :          0 :         struct msghdr mh = {
     177                 :            :                 .msg_control = &control,
     178                 :            :                 .msg_controllen = sizeof(control),
     179                 :            :                 .msg_iov = &iov,
     180                 :            :                 .msg_iovlen = 1,
     181                 :            :         };
     182                 :            :         struct cmsghdr *cmsg;
     183                 :          0 :         _cleanup_close_ int found_fd = -1;
     184                 :            :         char *copy;
     185                 :            :         ssize_t n;
     186                 :            : 
     187         [ #  # ]:          0 :         assert(socket_fd >= 0);
     188         [ #  # ]:          0 :         assert(ret_name);
     189         [ #  # ]:          0 :         assert(ret_fd);
     190                 :            : 
     191                 :          0 :         n = recvmsg(socket_fd, &mh, MSG_CMSG_CLOEXEC);
     192         [ #  # ]:          0 :         if (n < 0)
     193                 :          0 :                 return -errno;
     194                 :            : 
     195   [ #  #  #  # ]:          0 :         CMSG_FOREACH(cmsg, &mh) {
     196         [ #  # ]:          0 :                 if (cmsg->cmsg_level == SOL_SOCKET &&
     197         [ #  # ]:          0 :                     cmsg->cmsg_type == SCM_RIGHTS) {
     198                 :            : 
     199         [ #  # ]:          0 :                         if (cmsg->cmsg_len == CMSG_LEN(sizeof(int))) {
     200         [ #  # ]:          0 :                                 assert(found_fd < 0);
     201                 :          0 :                                 found_fd = *(int*) CMSG_DATA(cmsg);
     202                 :          0 :                                 break;
     203                 :            :                         }
     204                 :            : 
     205                 :          0 :                         cmsg_close_all(&mh);
     206                 :          0 :                         return -EIO;
     207                 :            :                 }
     208                 :            :         }
     209                 :            : 
     210                 :          0 :         buffer[n] = 0;
     211                 :            : 
     212                 :          0 :         copy = strdup(buffer);
     213         [ #  # ]:          0 :         if (!copy)
     214                 :          0 :                 return -ENOMEM;
     215                 :            : 
     216                 :          0 :         *ret_name = copy;
     217                 :          0 :         *ret_fd = TAKE_FD(found_fd);
     218                 :            : 
     219                 :          0 :         return 0;
     220                 :            : }
     221                 :            : 
     222                 :          0 : DEFINE_PRIVATE_HASH_OPS_WITH_VALUE_DESTRUCTOR(portable_metadata_hash_ops, char, string_hash_func, string_compare_func,
     223                 :            :                                               PortableMetadata, portable_metadata_unref);
     224                 :            : 
     225                 :          0 : static int extract_now(
     226                 :            :                 const char *where,
     227                 :            :                 char **matches,
     228                 :            :                 int socket_fd,
     229                 :            :                 PortableMetadata **ret_os_release,
     230                 :            :                 Hashmap **ret_unit_files) {
     231                 :            : 
     232                 :          0 :         _cleanup_hashmap_free_ Hashmap *unit_files = NULL;
     233                 :          0 :         _cleanup_(portable_metadata_unrefp) PortableMetadata *os_release = NULL;
     234                 :          0 :         _cleanup_(lookup_paths_free) LookupPaths paths = {};
     235                 :          0 :         _cleanup_close_ int os_release_fd = -1;
     236                 :          0 :         _cleanup_free_ char *os_release_path = NULL;
     237                 :            :         char **i;
     238                 :            :         int r;
     239                 :            : 
     240                 :            :         /* Extracts the metadata from a directory tree 'where'. Extracts two kinds of information: the /etc/os-release
     241                 :            :          * data, and all unit files matching the specified expression. Note that this function is called in two very
     242                 :            :          * different but also similar contexts. When the tool gets invoked on a directory tree, we'll process it
     243                 :            :          * directly, and in-process, and thus can return the requested data directly, via 'ret_os_release' and
     244                 :            :          * 'ret_unit_files'. However, if the tool is invoked on a raw disk image — which needs to be mounted first — we
     245                 :            :          * are invoked in a child process with private mounts and then need to send the collected data to our
     246                 :            :          * parent. To handle both cases in one call this function also gets a 'socket_fd' parameter, which when >= 0 is
     247                 :            :          * used to send the data to the parent. */
     248                 :            : 
     249         [ #  # ]:          0 :         assert(where);
     250                 :            : 
     251                 :            :         /* First, find /etc/os-release and send it upstream (or just save it). */
     252                 :          0 :         r = open_os_release(where, &os_release_path, &os_release_fd);
     253         [ #  # ]:          0 :         if (r < 0)
     254         [ #  # ]:          0 :                 log_debug_errno(r, "Couldn't acquire os-release file, ignoring: %m");
     255                 :            :         else {
     256         [ #  # ]:          0 :                 if (socket_fd >= 0) {
     257                 :          0 :                         r = send_item(socket_fd, "/etc/os-release", os_release_fd);
     258         [ #  # ]:          0 :                         if (r < 0)
     259         [ #  # ]:          0 :                                 return log_debug_errno(r, "Failed to send os-release file: %m");
     260                 :            :                 }
     261                 :            : 
     262         [ #  # ]:          0 :                 if (ret_os_release) {
     263                 :          0 :                         os_release = portable_metadata_new("/etc/os-release", os_release_fd);
     264         [ #  # ]:          0 :                         if (!os_release)
     265                 :          0 :                                 return -ENOMEM;
     266                 :            : 
     267                 :          0 :                         os_release_fd = -1;
     268                 :          0 :                         os_release->source = TAKE_PTR(os_release_path);
     269                 :            :                 }
     270                 :            :         }
     271                 :            : 
     272                 :            :         /* Then, send unit file data to the parent (or/and add it to the hashmap). For that we use our usual unit
     273                 :            :          * discovery logic. Note that we force looking inside of /lib/systemd/system/ for units too, as we mightbe
     274                 :            :          * compiled for a split-usr system but the image might be a legacy-usr one. */
     275                 :          0 :         r = lookup_paths_init(&paths, UNIT_FILE_SYSTEM, LOOKUP_PATHS_SPLIT_USR, where);
     276         [ #  # ]:          0 :         if (r < 0)
     277         [ #  # ]:          0 :                 return log_debug_errno(r, "Failed to acquire lookup paths: %m");
     278                 :            : 
     279                 :          0 :         unit_files = hashmap_new(&portable_metadata_hash_ops);
     280         [ #  # ]:          0 :         if (!unit_files)
     281                 :          0 :                 return -ENOMEM;
     282                 :            : 
     283   [ #  #  #  # ]:          0 :         STRV_FOREACH(i, paths.search_path) {
     284      [ #  #  # ]:          0 :                 _cleanup_free_ char *resolved = NULL;
     285      [ #  #  # ]:          0 :                 _cleanup_closedir_ DIR *d = NULL;
     286                 :            :                 struct dirent *de;
     287                 :            : 
     288                 :          0 :                 r = chase_symlinks_and_opendir(*i, where, 0, &resolved, &d);
     289         [ #  # ]:          0 :                 if (r < 0) {
     290         [ #  # ]:          0 :                         log_debug_errno(r, "Failed to open unit path '%s', ignoring: %m", *i);
     291                 :          0 :                         continue;
     292                 :            :                 }
     293                 :            : 
     294   [ #  #  #  #  :          0 :                 FOREACH_DIRENT(de, d, return log_debug_errno(errno, "Failed to read directory: %m")) {
             #  #  #  # ]
     295      [ #  #  # ]:          0 :                         _cleanup_(portable_metadata_unrefp) PortableMetadata *m = NULL;
     296      [ #  #  # ]:          0 :                         _cleanup_close_ int fd = -1;
     297                 :            : 
     298         [ #  # ]:          0 :                         if (!unit_name_is_valid(de->d_name, UNIT_NAME_ANY))
     299                 :          0 :                                 continue;
     300                 :            : 
     301         [ #  # ]:          0 :                         if (!unit_match(de->d_name, matches))
     302                 :          0 :                                 continue;
     303                 :            : 
     304                 :            :                         /* Filter out duplicates */
     305         [ #  # ]:          0 :                         if (hashmap_get(unit_files, de->d_name))
     306                 :          0 :                                 continue;
     307                 :            : 
     308                 :          0 :                         dirent_ensure_type(d, de);
     309   [ #  #  #  # ]:          0 :                         if (!IN_SET(de->d_type, DT_LNK, DT_REG))
     310                 :          0 :                                 continue;
     311                 :            : 
     312                 :          0 :                         fd = openat(dirfd(d), de->d_name, O_CLOEXEC|O_RDONLY);
     313         [ #  # ]:          0 :                         if (fd < 0) {
     314         [ #  # ]:          0 :                                 log_debug_errno(errno, "Failed to open unit file '%s', ignoring: %m", de->d_name);
     315                 :          0 :                                 continue;
     316                 :            :                         }
     317                 :            : 
     318         [ #  # ]:          0 :                         if (socket_fd >= 0) {
     319                 :          0 :                                 r = send_item(socket_fd, de->d_name, fd);
     320         [ #  # ]:          0 :                                 if (r < 0)
     321         [ #  # ]:          0 :                                         return log_debug_errno(r, "Failed to send unit metadata to parent: %m");
     322                 :            :                         }
     323                 :            : 
     324                 :          0 :                         m = portable_metadata_new(de->d_name, fd);
     325         [ #  # ]:          0 :                         if (!m)
     326                 :          0 :                                 return -ENOMEM;
     327                 :          0 :                         fd = -1;
     328                 :            : 
     329                 :          0 :                         m->source = path_join(resolved, de->d_name);
     330         [ #  # ]:          0 :                         if (!m->source)
     331                 :          0 :                                 return -ENOMEM;
     332                 :            : 
     333                 :          0 :                         r = hashmap_put(unit_files, m->name, m);
     334         [ #  # ]:          0 :                         if (r < 0)
     335         [ #  # ]:          0 :                                 return log_debug_errno(r, "Failed to add unit to hashmap: %m");
     336                 :          0 :                         m = NULL;
     337                 :            :                 }
     338                 :            :         }
     339                 :            : 
     340         [ #  # ]:          0 :         if (ret_os_release)
     341                 :          0 :                 *ret_os_release = TAKE_PTR(os_release);
     342         [ #  # ]:          0 :         if (ret_unit_files)
     343                 :          0 :                 *ret_unit_files = TAKE_PTR(unit_files);
     344                 :            : 
     345                 :          0 :         return 0;
     346                 :            : }
     347                 :            : 
     348                 :          0 : static int portable_extract_by_path(
     349                 :            :                 const char *path,
     350                 :            :                 char **matches,
     351                 :            :                 PortableMetadata **ret_os_release,
     352                 :            :                 Hashmap **ret_unit_files,
     353                 :            :                 sd_bus_error *error) {
     354                 :            : 
     355                 :          0 :         _cleanup_hashmap_free_ Hashmap *unit_files = NULL;
     356                 :          0 :         _cleanup_(portable_metadata_unrefp) PortableMetadata* os_release = NULL;
     357                 :          0 :         _cleanup_(loop_device_unrefp) LoopDevice *d = NULL;
     358                 :            :         int r;
     359                 :            : 
     360         [ #  # ]:          0 :         assert(path);
     361                 :            : 
     362                 :          0 :         r = loop_device_make_by_path(path, O_RDONLY, &d);
     363         [ #  # ]:          0 :         if (r == -EISDIR) {
     364                 :            :                 /* We can't turn this into a loop-back block device, and this returns EISDIR? Then this is a directory
     365                 :            :                  * tree and not a raw device. It's easy then. */
     366                 :            : 
     367                 :          0 :                 r = extract_now(path, matches, -1, &os_release, &unit_files);
     368         [ #  # ]:          0 :                 if (r < 0)
     369                 :          0 :                         return r;
     370                 :            : 
     371         [ #  # ]:          0 :         } else if (r < 0)
     372         [ #  # ]:          0 :                 return log_debug_errno(r, "Failed to set up loopback device: %m");
     373                 :            :         else {
     374         [ #  # ]:          0 :                 _cleanup_(dissected_image_unrefp) DissectedImage *m = NULL;
     375         [ #  # ]:          0 :                 _cleanup_(rmdir_and_freep) char *tmpdir = NULL;
     376         [ #  # ]:          0 :                 _cleanup_(close_pairp) int seq[2] = { -1, -1 };
     377         [ #  # ]:          0 :                 _cleanup_(sigkill_waitp) pid_t child = 0;
     378                 :            : 
     379                 :            :                 /* We now have a loopback block device, let's fork off a child in its own mount namespace, mount it
     380                 :            :                  * there, and extract the metadata we need. The metadata is sent from the child back to us. */
     381                 :            : 
     382   [ #  #  #  # ]:          0 :                 BLOCK_SIGNALS(SIGCHLD);
     383                 :            : 
     384                 :          0 :                 r = mkdtemp_malloc("/tmp/inspect-XXXXXX", &tmpdir);
     385         [ #  # ]:          0 :                 if (r < 0)
     386         [ #  # ]:          0 :                         return log_debug_errno(r, "Failed to create temporary directory: %m");
     387                 :            : 
     388                 :          0 :                 r = dissect_image(d->fd, NULL, 0, DISSECT_IMAGE_READ_ONLY|DISSECT_IMAGE_REQUIRE_ROOT|DISSECT_IMAGE_DISCARD_ON_LOOP, &m);
     389         [ #  # ]:          0 :                 if (r == -ENOPKG)
     390                 :          0 :                         sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Couldn't identify a suitable partition table or file system in '%s'.", path);
     391         [ #  # ]:          0 :                 else if (r == -EADDRNOTAVAIL)
     392                 :          0 :                         sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "No root partition for specified root hash found in '%s'.", path);
     393         [ #  # ]:          0 :                 else if (r == -ENOTUNIQ)
     394                 :          0 :                         sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Multiple suitable root partitions found in image '%s'.", path);
     395         [ #  # ]:          0 :                 else if (r == -ENXIO)
     396                 :          0 :                         sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "No suitable root partition found in image '%s'.", path);
     397         [ #  # ]:          0 :                 else if (r == -EPROTONOSUPPORT)
     398                 :          0 :                         sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Device '%s' is loopback block device with partition scanning turned off, please turn it on.", path);
     399         [ #  # ]:          0 :                 if (r < 0)
     400                 :          0 :                         return r;
     401                 :            : 
     402         [ #  # ]:          0 :                 if (socketpair(AF_UNIX, SOCK_SEQPACKET|SOCK_CLOEXEC, 0, seq) < 0)
     403         [ #  # ]:          0 :                         return log_debug_errno(errno, "Failed to allocated SOCK_SEQPACKET socket: %m");
     404                 :            : 
     405                 :          0 :                 r = safe_fork("(sd-dissect)", FORK_RESET_SIGNALS|FORK_DEATHSIG|FORK_NEW_MOUNTNS|FORK_MOUNTNS_SLAVE|FORK_LOG, &child);
     406         [ #  # ]:          0 :                 if (r < 0)
     407                 :          0 :                         return r;
     408         [ #  # ]:          0 :                 if (r == 0) {
     409                 :          0 :                         seq[0] = safe_close(seq[0]);
     410                 :            : 
     411                 :          0 :                         r = dissected_image_mount(m, tmpdir, UID_INVALID, DISSECT_IMAGE_READ_ONLY|DISSECT_IMAGE_VALIDATE_OS);
     412         [ #  # ]:          0 :                         if (r < 0) {
     413         [ #  # ]:          0 :                                 log_debug_errno(r, "Failed to mount dissected image: %m");
     414                 :          0 :                                 goto child_finish;
     415                 :            :                         }
     416                 :            : 
     417                 :          0 :                         r = extract_now(tmpdir, matches, seq[1], NULL, NULL);
     418                 :            : 
     419                 :          0 :                 child_finish:
     420                 :          0 :                         _exit(r < 0 ? EXIT_FAILURE : EXIT_SUCCESS);
     421                 :            :                 }
     422                 :            : 
     423                 :          0 :                 seq[1] = safe_close(seq[1]);
     424                 :            : 
     425                 :          0 :                 unit_files = hashmap_new(&portable_metadata_hash_ops);
     426         [ #  # ]:          0 :                 if (!unit_files)
     427                 :          0 :                         return -ENOMEM;
     428                 :            : 
     429                 :          0 :                 for (;;) {
     430      [ #  #  # ]:          0 :                         _cleanup_(portable_metadata_unrefp) PortableMetadata *add = NULL;
     431      [ #  #  # ]:          0 :                         _cleanup_free_ char *name = NULL;
     432      [ #  #  # ]:          0 :                         _cleanup_close_ int fd = -1;
     433                 :            : 
     434                 :          0 :                         r = recv_item(seq[0], &name, &fd);
     435         [ #  # ]:          0 :                         if (r < 0)
     436         [ #  # ]:          0 :                                 return log_debug_errno(r, "Failed to receive item: %m");
     437                 :            : 
     438                 :            :                         /* We can't really distinguish a zero-length datagram without any fds from EOF (both are signalled the
     439                 :            :                          * same way by recvmsg()). Hence, accept either as end notification. */
     440   [ #  #  #  # ]:          0 :                         if (isempty(name) && fd < 0)
     441                 :          0 :                                 break;
     442                 :            : 
     443   [ #  #  #  # ]:          0 :                         if (isempty(name) || fd < 0) {
     444         [ #  # ]:          0 :                                 log_debug("Invalid item sent from child.");
     445                 :          0 :                                 return -EINVAL;
     446                 :            :                         }
     447                 :            : 
     448                 :          0 :                         add = portable_metadata_new(name, fd);
     449         [ #  # ]:          0 :                         if (!add)
     450                 :          0 :                                 return -ENOMEM;
     451                 :          0 :                         fd = -1;
     452                 :            : 
     453                 :            :                         /* Note that we do not initialize 'add->source' here, as the source path is not usable here as
     454                 :            :                          * it refers to a path only valid in the short-living namespaced child process we forked
     455                 :            :                          * here. */
     456                 :            : 
     457   [ #  #  #  # ]:          0 :                         if (PORTABLE_METADATA_IS_UNIT(add)) {
     458                 :          0 :                                 r = hashmap_put(unit_files, add->name, add);
     459         [ #  # ]:          0 :                                 if (r < 0)
     460         [ #  # ]:          0 :                                         return log_debug_errno(r, "Failed to add item to unit file list: %m");
     461                 :            : 
     462                 :          0 :                                 add = NULL;
     463                 :            : 
     464         [ #  # ]:          0 :                         } else if (PORTABLE_METADATA_IS_OS_RELEASE(add)) {
     465                 :            : 
     466         [ #  # ]:          0 :                                 assert(!os_release);
     467                 :          0 :                                 os_release = TAKE_PTR(add);
     468                 :            :                         } else
     469                 :          0 :                                 assert_not_reached("Unexpected metadata item from child.");
     470                 :            :                 }
     471                 :            : 
     472                 :          0 :                 r = wait_for_terminate_and_check("(sd-dissect)", child, 0);
     473         [ #  # ]:          0 :                 if (r < 0)
     474                 :          0 :                         return r;
     475                 :          0 :                 child = 0;
     476                 :            :         }
     477                 :            : 
     478         [ #  # ]:          0 :         if (!os_release)
     479                 :          0 :                 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Image '%s' lacks os-release data, refusing.", path);
     480                 :            : 
     481         [ #  # ]:          0 :         if (hashmap_isempty(unit_files))
     482                 :          0 :                 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Couldn't find any matching unit files in image '%s', refusing.", path);
     483                 :            : 
     484         [ #  # ]:          0 :         if (ret_unit_files)
     485                 :          0 :                 *ret_unit_files = TAKE_PTR(unit_files);
     486                 :            : 
     487         [ #  # ]:          0 :         if (ret_os_release)
     488                 :          0 :                 *ret_os_release = TAKE_PTR(os_release);
     489                 :            : 
     490                 :          0 :         return 0;
     491                 :            : }
     492                 :            : 
     493                 :          0 : int portable_extract(
     494                 :            :                 const char *name_or_path,
     495                 :            :                 char **matches,
     496                 :            :                 PortableMetadata **ret_os_release,
     497                 :            :                 Hashmap **ret_unit_files,
     498                 :            :                 sd_bus_error *error) {
     499                 :            : 
     500                 :          0 :         _cleanup_(image_unrefp) Image *image = NULL;
     501                 :            :         int r;
     502                 :            : 
     503         [ #  # ]:          0 :         assert(name_or_path);
     504                 :            : 
     505                 :          0 :         r = image_find_harder(IMAGE_PORTABLE, name_or_path, &image);
     506         [ #  # ]:          0 :         if (r < 0)
     507                 :          0 :                 return r;
     508                 :            : 
     509                 :          0 :         return portable_extract_by_path(image->path, matches, ret_os_release, ret_unit_files, error);
     510                 :            : }
     511                 :            : 
     512                 :          0 : static int unit_file_is_active(
     513                 :            :                 sd_bus *bus,
     514                 :            :                 const char *name,
     515                 :            :                 sd_bus_error *error) {
     516                 :            : 
     517                 :            :         static const char *const active_states[] = {
     518                 :            :                 "activating",
     519                 :            :                 "active",
     520                 :            :                 "reloading",
     521                 :            :                 "deactivating",
     522                 :            :                 NULL,
     523                 :            :         };
     524                 :            :         int r;
     525                 :            : 
     526         [ #  # ]:          0 :         if (!bus)
     527                 :          0 :                 return false;
     528                 :            : 
     529                 :            :         /* If we are looking at a plain or instance things are easy, we can just query the state */
     530         [ #  # ]:          0 :         if (unit_name_is_valid(name, UNIT_NAME_PLAIN|UNIT_NAME_INSTANCE)) {
     531                 :          0 :                 _cleanup_free_ char *path = NULL, *buf = NULL;
     532                 :            : 
     533                 :          0 :                 path = unit_dbus_path_from_name(name);
     534         [ #  # ]:          0 :                 if (!path)
     535                 :          0 :                         return -ENOMEM;
     536                 :            : 
     537                 :          0 :                 r = sd_bus_get_property_string(
     538                 :            :                                 bus,
     539                 :            :                                 "org.freedesktop.systemd1",
     540                 :            :                                 path,
     541                 :            :                                 "org.freedesktop.systemd1.Unit",
     542                 :            :                                 "ActiveState",
     543                 :            :                                 error,
     544                 :            :                                 &buf);
     545         [ #  # ]:          0 :                 if (r < 0)
     546         [ #  # ]:          0 :                         return log_debug_errno(r, "Failed to retrieve unit state: %s", bus_error_message(error, r));
     547                 :            : 
     548                 :          0 :                 return strv_contains((char**) active_states, buf);
     549                 :            :         }
     550                 :            : 
     551                 :            :         /* Otherwise we need to enumerate. But let's build the most restricted query we can */
     552         [ #  # ]:          0 :         if (unit_name_is_valid(name, UNIT_NAME_TEMPLATE)) {
     553                 :          0 :                 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL, *reply = NULL;
     554                 :            :                 const char *at, *prefix, *joined;
     555                 :            : 
     556                 :          0 :                 r = sd_bus_message_new_method_call(
     557                 :            :                                 bus,
     558                 :            :                                 &m,
     559                 :            :                                 "org.freedesktop.systemd1",
     560                 :            :                                 "/org/freedesktop/systemd1",
     561                 :            :                                 "org.freedesktop.systemd1.Manager",
     562                 :            :                                 "ListUnitsByPatterns");
     563         [ #  # ]:          0 :                 if (r < 0)
     564                 :          0 :                         return r;
     565                 :            : 
     566                 :          0 :                 r = sd_bus_message_append_strv(m, (char**) active_states);
     567         [ #  # ]:          0 :                 if (r < 0)
     568                 :          0 :                         return r;
     569                 :            : 
     570                 :          0 :                 at = strchr(name, '@');
     571         [ #  # ]:          0 :                 assert(at);
     572                 :            : 
     573                 :          0 :                 prefix = strndupa(name, at + 1 - name);
     574   [ #  #  #  #  :          0 :                 joined = strjoina(prefix, "*", at + 1);
          #  #  #  #  #  
                #  #  # ]
     575                 :            : 
     576                 :          0 :                 r = sd_bus_message_append_strv(m, STRV_MAKE(joined));
     577         [ #  # ]:          0 :                 if (r < 0)
     578                 :          0 :                         return r;
     579                 :            : 
     580                 :          0 :                 r = sd_bus_call(bus, m, 0, error, &reply);
     581         [ #  # ]:          0 :                 if (r < 0)
     582         [ #  # ]:          0 :                         return log_debug_errno(r, "Failed to list units: %s", bus_error_message(error, r));
     583                 :            : 
     584                 :          0 :                 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "(ssssssouso)");
     585         [ #  # ]:          0 :                 if (r < 0)
     586                 :          0 :                         return r;
     587                 :            : 
     588                 :          0 :                 r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_STRUCT, "ssssssouso");
     589         [ #  # ]:          0 :                 if (r < 0)
     590                 :          0 :                         return r;
     591                 :            : 
     592                 :          0 :                 return r > 0;
     593                 :            :         }
     594                 :            : 
     595                 :          0 :         return -EINVAL;
     596                 :            : }
     597                 :            : 
     598                 :          0 : static int portable_changes_add(
     599                 :            :                 PortableChange **changes,
     600                 :            :                 size_t *n_changes,
     601                 :            :                 PortableChangeType type,
     602                 :            :                 const char *path,
     603                 :            :                 const char *source) {
     604                 :            : 
     605                 :          0 :         _cleanup_free_ char *p = NULL, *s = NULL;
     606                 :            :         PortableChange *c;
     607                 :            : 
     608         [ #  # ]:          0 :         assert(path);
     609         [ #  # ]:          0 :         assert(!changes == !n_changes);
     610                 :            : 
     611         [ #  # ]:          0 :         if (!changes)
     612                 :          0 :                 return 0;
     613                 :            : 
     614                 :          0 :         c = reallocarray(*changes, *n_changes + 1, sizeof(PortableChange));
     615         [ #  # ]:          0 :         if (!c)
     616                 :          0 :                 return -ENOMEM;
     617                 :          0 :         *changes = c;
     618                 :            : 
     619                 :          0 :         p = strdup(path);
     620         [ #  # ]:          0 :         if (!p)
     621                 :          0 :                 return -ENOMEM;
     622                 :            : 
     623                 :          0 :         path_simplify(p, false);
     624                 :            : 
     625         [ #  # ]:          0 :         if (source) {
     626                 :          0 :                 s = strdup(source);
     627         [ #  # ]:          0 :                 if (!s)
     628                 :          0 :                         return -ENOMEM;
     629                 :            : 
     630                 :          0 :                 path_simplify(s, false);
     631                 :            :         }
     632                 :            : 
     633                 :          0 :         c[(*n_changes)++] = (PortableChange) {
     634                 :            :                 .type = type,
     635                 :          0 :                 .path = TAKE_PTR(p),
     636                 :          0 :                 .source = TAKE_PTR(s),
     637                 :            :         };
     638                 :            : 
     639                 :          0 :         return 0;
     640                 :            : }
     641                 :            : 
     642                 :          0 : static int portable_changes_add_with_prefix(
     643                 :            :                 PortableChange **changes,
     644                 :            :                 size_t *n_changes,
     645                 :            :                 PortableChangeType type,
     646                 :            :                 const char *prefix,
     647                 :            :                 const char *path,
     648                 :            :                 const char *source) {
     649                 :            : 
     650         [ #  # ]:          0 :         assert(path);
     651         [ #  # ]:          0 :         assert(!changes == !n_changes);
     652                 :            : 
     653         [ #  # ]:          0 :         if (!changes)
     654                 :          0 :                 return 0;
     655                 :            : 
     656         [ #  # ]:          0 :         if (prefix) {
     657   [ #  #  #  #  :          0 :                 path = prefix_roota(prefix, path);
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
     658                 :            : 
     659         [ #  # ]:          0 :                 if (source)
     660   [ #  #  #  #  :          0 :                         source = prefix_roota(prefix, source);
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
     661                 :            :         }
     662                 :            : 
     663                 :          0 :         return portable_changes_add(changes, n_changes, type, path, source);
     664                 :            : }
     665                 :            : 
     666                 :          0 : void portable_changes_free(PortableChange *changes, size_t n_changes) {
     667                 :            :         size_t i;
     668                 :            : 
     669   [ #  #  #  # ]:          0 :         assert(changes || n_changes == 0);
     670                 :            : 
     671         [ #  # ]:          0 :         for (i = 0; i < n_changes; i++) {
     672                 :          0 :                 free(changes[i].path);
     673                 :          0 :                 free(changes[i].source);
     674                 :            :         }
     675                 :            : 
     676                 :          0 :         free(changes);
     677                 :          0 : }
     678                 :            : 
     679                 :          0 : static int install_chroot_dropin(
     680                 :            :                 const char *image_path,
     681                 :            :                 ImageType type,
     682                 :            :                 const PortableMetadata *m,
     683                 :            :                 const char *dropin_dir,
     684                 :            :                 char **ret_dropin,
     685                 :            :                 PortableChange **changes,
     686                 :            :                 size_t *n_changes) {
     687                 :            : 
     688                 :          0 :         _cleanup_free_ char *text = NULL, *dropin = NULL;
     689                 :            :         int r;
     690                 :            : 
     691         [ #  # ]:          0 :         assert(image_path);
     692         [ #  # ]:          0 :         assert(m);
     693         [ #  # ]:          0 :         assert(dropin_dir);
     694                 :            : 
     695                 :          0 :         dropin = path_join(dropin_dir, "20-portable.conf");
     696         [ #  # ]:          0 :         if (!dropin)
     697                 :          0 :                 return -ENOMEM;
     698                 :            : 
     699                 :          0 :         text = strjoin(PORTABLE_DROPIN_MARKER_BEGIN, image_path, PORTABLE_DROPIN_MARKER_END "\n");
     700         [ #  # ]:          0 :         if (!text)
     701                 :          0 :                 return -ENOMEM;
     702                 :            : 
     703         [ #  # ]:          0 :         if (endswith(m->name, ".service"))
     704   [ #  #  #  #  :          0 :                 if (!strextend(&text,
                   #  # ]
     705                 :            :                                "\n"
     706                 :            :                                "[Service]\n",
     707                 :            :                                IN_SET(type, IMAGE_DIRECTORY, IMAGE_SUBVOLUME) ? "RootDirectory=" : "RootImage=", image_path, "\n"
     708                 :            :                                "Environment=PORTABLE=", basename(image_path), "\n"
     709                 :            :                                "LogExtraFields=PORTABLE=", basename(image_path), "\n",
     710                 :            :                                NULL))
     711                 :            : 
     712                 :          0 :                         return -ENOMEM;
     713                 :            : 
     714                 :          0 :         r = write_string_file(dropin, text, WRITE_STRING_FILE_CREATE|WRITE_STRING_FILE_ATOMIC);
     715         [ #  # ]:          0 :         if (r < 0)
     716         [ #  # ]:          0 :                 return log_debug_errno(r, "Failed to write '%s': %m", dropin);
     717                 :            : 
     718                 :          0 :         (void) portable_changes_add(changes, n_changes, PORTABLE_WRITE, dropin, NULL);
     719                 :            : 
     720         [ #  # ]:          0 :         if (ret_dropin)
     721                 :          0 :                 *ret_dropin = TAKE_PTR(dropin);
     722                 :            : 
     723                 :          0 :         return 0;
     724                 :            : }
     725                 :            : 
     726                 :          0 : static int find_profile(const char *name, const char *unit, char **ret) {
     727                 :            :         const char *p, *dot;
     728                 :            : 
     729         [ #  # ]:          0 :         assert(name);
     730         [ #  # ]:          0 :         assert(ret);
     731                 :            : 
     732         [ #  # ]:          0 :         assert_se(dot = strrchr(unit, '.'));
     733                 :            : 
     734   [ #  #  #  # ]:          0 :         NULSTR_FOREACH(p, profile_dirs) {
     735         [ #  # ]:          0 :                 _cleanup_free_ char *joined;
     736                 :            : 
     737                 :          0 :                 joined = strjoin(p, "/", name, "/", dot + 1, ".conf");
     738         [ #  # ]:          0 :                 if (!joined)
     739                 :          0 :                         return -ENOMEM;
     740                 :            : 
     741         [ #  # ]:          0 :                 if (laccess(joined, F_OK) >= 0) {
     742                 :          0 :                         *ret = TAKE_PTR(joined);
     743                 :          0 :                         return 0;
     744                 :            :                 }
     745                 :            : 
     746         [ #  # ]:          0 :                 if (errno != ENOENT)
     747                 :          0 :                         return -errno;
     748                 :            :         }
     749                 :            : 
     750                 :          0 :         return -ENOENT;
     751                 :            : }
     752                 :            : 
     753                 :          0 : static int install_profile_dropin(
     754                 :            :                 const char *image_path,
     755                 :            :                 const PortableMetadata *m,
     756                 :            :                 const char *dropin_dir,
     757                 :            :                 const char *profile,
     758                 :            :                 PortableFlags flags,
     759                 :            :                 char **ret_dropin,
     760                 :            :                 PortableChange **changes,
     761                 :            :                 size_t *n_changes) {
     762                 :            : 
     763                 :          0 :         _cleanup_free_ char *dropin = NULL, *from = NULL;
     764                 :            :         int r;
     765                 :            : 
     766         [ #  # ]:          0 :         assert(image_path);
     767         [ #  # ]:          0 :         assert(m);
     768         [ #  # ]:          0 :         assert(dropin_dir);
     769                 :            : 
     770         [ #  # ]:          0 :         if (!profile)
     771                 :          0 :                 return 0;
     772                 :            : 
     773                 :          0 :         r = find_profile(profile, m->name, &from);
     774         [ #  # ]:          0 :         if (r < 0) {
     775         [ #  # ]:          0 :                 if (r != -ENOENT)
     776         [ #  # ]:          0 :                         return log_debug_errno(errno, "Profile '%s' is not accessible: %m", profile);
     777                 :            : 
     778         [ #  # ]:          0 :                 log_debug_errno(errno, "Skipping link to profile '%s', as it does not exist: %m", profile);
     779                 :          0 :                 return 0;
     780                 :            :         }
     781                 :            : 
     782                 :          0 :         dropin = path_join(dropin_dir, "10-profile.conf");
     783         [ #  # ]:          0 :         if (!dropin)
     784                 :          0 :                 return -ENOMEM;
     785                 :            : 
     786         [ #  # ]:          0 :         if (flags & PORTABLE_PREFER_COPY) {
     787                 :            : 
     788                 :          0 :                 r = copy_file_atomic(from, dropin, 0644, 0, 0, COPY_REFLINK);
     789         [ #  # ]:          0 :                 if (r < 0)
     790         [ #  # ]:          0 :                         return log_debug_errno(r, "Failed to copy %s %s %s: %m", from, special_glyph(SPECIAL_GLYPH_ARROW), dropin);
     791                 :            : 
     792                 :          0 :                 (void) portable_changes_add(changes, n_changes, PORTABLE_COPY, dropin, from);
     793                 :            : 
     794                 :            :         } else {
     795                 :            : 
     796         [ #  # ]:          0 :                 if (symlink(from, dropin) < 0)
     797         [ #  # ]:          0 :                         return log_debug_errno(errno, "Failed to link %s %s %s: %m", from, special_glyph(SPECIAL_GLYPH_ARROW), dropin);
     798                 :            : 
     799                 :          0 :                 (void) portable_changes_add(changes, n_changes, PORTABLE_SYMLINK, dropin, from);
     800                 :            :         }
     801                 :            : 
     802         [ #  # ]:          0 :         if (ret_dropin)
     803                 :          0 :                 *ret_dropin = TAKE_PTR(dropin);
     804                 :            : 
     805                 :          0 :         return 0;
     806                 :            : }
     807                 :            : 
     808                 :          0 : static const char *attached_path(const LookupPaths *paths, PortableFlags flags) {
     809                 :            :         const char *where;
     810                 :            : 
     811         [ #  # ]:          0 :         assert(paths);
     812                 :            : 
     813         [ #  # ]:          0 :         if (flags & PORTABLE_RUNTIME)
     814                 :          0 :                 where = paths->runtime_attached;
     815                 :            :         else
     816                 :          0 :                 where = paths->persistent_attached;
     817                 :            : 
     818         [ #  # ]:          0 :         assert(where);
     819                 :          0 :         return where;
     820                 :            : }
     821                 :            : 
     822                 :          0 : static int attach_unit_file(
     823                 :            :                 const LookupPaths *paths,
     824                 :            :                 const char *image_path,
     825                 :            :                 ImageType type,
     826                 :            :                 const PortableMetadata *m,
     827                 :            :                 const char *profile,
     828                 :            :                 PortableFlags flags,
     829                 :            :                 PortableChange **changes,
     830                 :            :                 size_t *n_changes) {
     831                 :            : 
     832                 :          0 :         _cleanup_(unlink_and_freep) char *chroot_dropin = NULL, *profile_dropin = NULL;
     833                 :          0 :         _cleanup_(rmdir_and_freep) char *dropin_dir = NULL;
     834                 :            :         const char *where, *path;
     835                 :            :         int r;
     836                 :            : 
     837         [ #  # ]:          0 :         assert(paths);
     838         [ #  # ]:          0 :         assert(image_path);
     839         [ #  # ]:          0 :         assert(m);
     840   [ #  #  #  # ]:          0 :         assert(PORTABLE_METADATA_IS_UNIT(m));
     841                 :            : 
     842                 :          0 :         where = attached_path(paths, flags);
     843                 :            : 
     844                 :          0 :         (void) mkdir_parents(where, 0755);
     845         [ #  # ]:          0 :         if (mkdir(where, 0755) < 0) {
     846         [ #  # ]:          0 :                 if (errno != EEXIST)
     847                 :          0 :                         return -errno;
     848                 :            :         } else
     849                 :          0 :                 (void) portable_changes_add(changes, n_changes, PORTABLE_MKDIR, where, NULL);
     850                 :            : 
     851   [ #  #  #  #  :          0 :         path = prefix_roota(where, m->name);
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
     852                 :          0 :         dropin_dir = strjoin(path, ".d");
     853         [ #  # ]:          0 :         if (!dropin_dir)
     854                 :          0 :                 return -ENOMEM;
     855                 :            : 
     856         [ #  # ]:          0 :         if (mkdir(dropin_dir, 0755) < 0) {
     857         [ #  # ]:          0 :                 if (errno != EEXIST)
     858                 :          0 :                         return -errno;
     859                 :            :         } else
     860                 :          0 :                 (void) portable_changes_add(changes, n_changes, PORTABLE_MKDIR, dropin_dir, NULL);
     861                 :            : 
     862                 :            :         /* We install the drop-ins first, and the actual unit file last to achieve somewhat atomic behaviour if PID 1
     863                 :            :          * is reloaded while we are creating things here: as long as only the drop-ins exist the unit doesn't exist at
     864                 :            :          * all for PID 1. */
     865                 :            : 
     866                 :          0 :         r = install_chroot_dropin(image_path, type, m, dropin_dir, &chroot_dropin, changes, n_changes);
     867         [ #  # ]:          0 :         if (r < 0)
     868                 :          0 :                 return r;
     869                 :            : 
     870                 :          0 :         r = install_profile_dropin(image_path, m, dropin_dir, profile, flags, &profile_dropin, changes, n_changes);
     871         [ #  # ]:          0 :         if (r < 0)
     872                 :          0 :                 return r;
     873                 :            : 
     874   [ #  #  #  # ]:          0 :         if ((flags & PORTABLE_PREFER_SYMLINK) && m->source) {
     875                 :            : 
     876         [ #  # ]:          0 :                 if (symlink(m->source, path) < 0)
     877         [ #  # ]:          0 :                         return log_debug_errno(errno, "Failed to symlink unit file '%s': %m", path);
     878                 :            : 
     879                 :          0 :                 (void) portable_changes_add(changes, n_changes, PORTABLE_SYMLINK, path, m->source);
     880                 :            : 
     881                 :            :         } else {
     882         [ #  # ]:          0 :                 _cleanup_(unlink_and_freep) char *tmp = NULL;
     883         [ #  # ]:          0 :                 _cleanup_close_ int fd = -1;
     884                 :            : 
     885                 :          0 :                 fd = open_tmpfile_linkable(where, O_WRONLY|O_CLOEXEC, &tmp);
     886         [ #  # ]:          0 :                 if (fd < 0)
     887         [ #  # ]:          0 :                         return log_debug_errno(fd, "Failed to create unit file '%s': %m", path);
     888                 :            : 
     889                 :          0 :                 r = copy_bytes(m->fd, fd, UINT64_MAX, COPY_REFLINK);
     890         [ #  # ]:          0 :                 if (r < 0)
     891         [ #  # ]:          0 :                         return log_debug_errno(r, "Failed to copy unit file '%s': %m", path);
     892                 :            : 
     893         [ #  # ]:          0 :                 if (fchmod(fd, 0644) < 0)
     894         [ #  # ]:          0 :                         return log_debug_errno(errno, "Failed to change unit file access mode for '%s': %m", path);
     895                 :            : 
     896                 :          0 :                 r = link_tmpfile(fd, tmp, path);
     897         [ #  # ]:          0 :                 if (r < 0)
     898         [ #  # ]:          0 :                         return log_debug_errno(r, "Failed to install unit file '%s': %m", path);
     899                 :            : 
     900                 :          0 :                 tmp = mfree(tmp);
     901                 :            : 
     902                 :          0 :                 (void) portable_changes_add(changes, n_changes, PORTABLE_COPY, path, m->source);
     903                 :            :         }
     904                 :            : 
     905                 :            :         /* All is established now, now let's disable any rollbacks */
     906                 :          0 :         chroot_dropin = mfree(chroot_dropin);
     907                 :          0 :         profile_dropin = mfree(profile_dropin);
     908                 :          0 :         dropin_dir = mfree(dropin_dir);
     909                 :            : 
     910                 :          0 :         return 0;
     911                 :            : }
     912                 :            : 
     913                 :          0 : static int image_symlink(
     914                 :            :                 const char *image_path,
     915                 :            :                 PortableFlags flags,
     916                 :            :                 char **ret) {
     917                 :            : 
     918                 :            :         const char *fn, *where;
     919                 :          0 :         char *joined = NULL;
     920                 :            : 
     921         [ #  # ]:          0 :         assert(image_path);
     922         [ #  # ]:          0 :         assert(ret);
     923                 :            : 
     924                 :          0 :         fn = last_path_component(image_path);
     925                 :            : 
     926         [ #  # ]:          0 :         if (flags & PORTABLE_RUNTIME)
     927                 :          0 :                 where = "/run/portables/";
     928                 :            :         else
     929                 :          0 :                 where = "/etc/portables/";
     930                 :            : 
     931                 :          0 :         joined = strjoin(where, fn);
     932         [ #  # ]:          0 :         if (!joined)
     933                 :          0 :                 return -ENOMEM;
     934                 :            : 
     935                 :          0 :         *ret = joined;
     936                 :          0 :         return 0;
     937                 :            : }
     938                 :            : 
     939                 :          0 : static int install_image_symlink(
     940                 :            :                 const char *image_path,
     941                 :            :                 PortableFlags flags,
     942                 :            :                 PortableChange **changes,
     943                 :            :                 size_t *n_changes) {
     944                 :            : 
     945                 :          0 :         _cleanup_free_ char *sl = NULL;
     946                 :            :         int r;
     947                 :            : 
     948         [ #  # ]:          0 :         assert(image_path);
     949                 :            : 
     950                 :            :         /* If the image is outside of the image search also link it into it, so that it can be found with short image
     951                 :            :          * names and is listed among the images. */
     952                 :            : 
     953         [ #  # ]:          0 :         if (image_in_search_path(IMAGE_PORTABLE, image_path))
     954                 :          0 :                 return 0;
     955                 :            : 
     956                 :          0 :         r = image_symlink(image_path, flags, &sl);
     957         [ #  # ]:          0 :         if (r < 0)
     958         [ #  # ]:          0 :                 return log_debug_errno(r, "Failed to generate image symlink path: %m");
     959                 :            : 
     960                 :          0 :         (void) mkdir_parents(sl, 0755);
     961                 :            : 
     962         [ #  # ]:          0 :         if (symlink(image_path, sl) < 0)
     963         [ #  # ]:          0 :                 return log_debug_errno(errno, "Failed to link %s %s %s: %m", image_path, special_glyph(SPECIAL_GLYPH_ARROW), sl);
     964                 :            : 
     965                 :          0 :         (void) portable_changes_add(changes, n_changes, PORTABLE_SYMLINK, sl, image_path);
     966                 :          0 :         return 0;
     967                 :            : }
     968                 :            : 
     969                 :          0 : int portable_attach(
     970                 :            :                 sd_bus *bus,
     971                 :            :                 const char *name_or_path,
     972                 :            :                 char **matches,
     973                 :            :                 const char *profile,
     974                 :            :                 PortableFlags flags,
     975                 :            :                 PortableChange **changes,
     976                 :            :                 size_t *n_changes,
     977                 :            :                 sd_bus_error *error) {
     978                 :            : 
     979                 :          0 :         _cleanup_hashmap_free_ Hashmap *unit_files = NULL;
     980                 :          0 :         _cleanup_(lookup_paths_free) LookupPaths paths = {};
     981                 :          0 :         _cleanup_(image_unrefp) Image *image = NULL;
     982                 :            :         PortableMetadata *item;
     983                 :            :         Iterator iterator;
     984                 :            :         int r;
     985                 :            : 
     986         [ #  # ]:          0 :         assert(name_or_path);
     987                 :            : 
     988                 :          0 :         r = image_find_harder(IMAGE_PORTABLE, name_or_path, &image);
     989         [ #  # ]:          0 :         if (r < 0)
     990                 :          0 :                 return r;
     991                 :            : 
     992                 :          0 :         r = portable_extract_by_path(image->path, matches, NULL, &unit_files, error);
     993         [ #  # ]:          0 :         if (r < 0)
     994                 :          0 :                 return r;
     995                 :            : 
     996                 :          0 :         r = lookup_paths_init(&paths, UNIT_FILE_SYSTEM, LOOKUP_PATHS_SPLIT_USR, NULL);
     997         [ #  # ]:          0 :         if (r < 0)
     998                 :          0 :                 return r;
     999                 :            : 
    1000         [ #  # ]:          0 :         HASHMAP_FOREACH(item, unit_files, iterator) {
    1001                 :          0 :                 r = unit_file_exists(UNIT_FILE_SYSTEM, &paths, item->name);
    1002         [ #  # ]:          0 :                 if (r < 0)
    1003                 :          0 :                         return sd_bus_error_set_errnof(error, r, "Failed to determine whether unit '%s' exists on the host: %m", item->name);
    1004         [ #  # ]:          0 :                 if (r > 0)
    1005                 :          0 :                         return sd_bus_error_setf(error, BUS_ERROR_UNIT_EXISTS, "Unit file '%s' exists on the host already, refusing.", item->name);
    1006                 :            : 
    1007                 :          0 :                 r = unit_file_is_active(bus, item->name, error);
    1008         [ #  # ]:          0 :                 if (r < 0)
    1009                 :          0 :                         return r;
    1010         [ #  # ]:          0 :                 if (r > 0)
    1011                 :          0 :                         return sd_bus_error_setf(error, BUS_ERROR_UNIT_EXISTS, "Unit file '%s' is active already, refusing.", item->name);
    1012                 :            :         }
    1013                 :            : 
    1014         [ #  # ]:          0 :         HASHMAP_FOREACH(item, unit_files, iterator) {
    1015                 :          0 :                 r = attach_unit_file(&paths, image->path, image->type, item, profile, flags, changes, n_changes);
    1016         [ #  # ]:          0 :                 if (r < 0)
    1017                 :          0 :                         return r;
    1018                 :            :         }
    1019                 :            : 
    1020                 :            :         /* We don't care too much for the image symlink, it's just a convenience thing, it's not necessary for proper
    1021                 :            :          * operation otherwise. */
    1022                 :          0 :         (void) install_image_symlink(image->path, flags, changes, n_changes);
    1023                 :            : 
    1024                 :          0 :         return 0;
    1025                 :            : }
    1026                 :            : 
    1027                 :          0 : static bool marker_matches_image(const char *marker, const char *name_or_path) {
    1028                 :            :         const char *a;
    1029                 :            : 
    1030         [ #  # ]:          0 :         assert(marker);
    1031         [ #  # ]:          0 :         assert(name_or_path);
    1032                 :            : 
    1033                 :          0 :         a = last_path_component(marker);
    1034                 :            : 
    1035         [ #  # ]:          0 :         if (image_name_is_valid(name_or_path)) {
    1036                 :            :                 const char *e;
    1037                 :            : 
    1038                 :            :                 /* We shall match against an image name. In that case let's compare the last component, and optionally
    1039                 :            :                  * allow either a suffix of ".raw" or a series of "/". */
    1040                 :            : 
    1041                 :          0 :                 e = startswith(a, name_or_path);
    1042         [ #  # ]:          0 :                 if (!e)
    1043                 :          0 :                         return false;
    1044                 :            : 
    1045                 :            :                 return
    1046         [ #  # ]:          0 :                         e[strspn(e, "/")] == 0 ||
    1047         [ #  # ]:          0 :                         streq(e, ".raw");
    1048                 :            :         } else {
    1049                 :            :                 const char *b;
    1050                 :            :                 size_t l;
    1051                 :            : 
    1052                 :            :                 /* We shall match against a path. Let's ignore any prefix here though, as often there are many ways to
    1053                 :            :                  * reach the same file. However, in this mode, let's validate any file suffix. */
    1054                 :            : 
    1055                 :          0 :                 l = strcspn(a, "/");
    1056                 :          0 :                 b = last_path_component(name_or_path);
    1057                 :            : 
    1058         [ #  # ]:          0 :                 if (strcspn(b, "/") != l)
    1059                 :          0 :                         return false;
    1060                 :            : 
    1061                 :          0 :                 return memcmp(a, b, l) == 0;
    1062                 :            :         }
    1063                 :            : }
    1064                 :            : 
    1065                 :          0 : static int test_chroot_dropin(
    1066                 :            :                 DIR *d,
    1067                 :            :                 const char *where,
    1068                 :            :                 const char *fname,
    1069                 :            :                 const char *name_or_path,
    1070                 :            :                 char **ret_marker) {
    1071                 :            : 
    1072                 :          0 :         _cleanup_free_ char *line = NULL, *marker = NULL;
    1073                 :          0 :         _cleanup_fclose_ FILE *f = NULL;
    1074                 :          0 :         _cleanup_close_ int fd = -1;
    1075                 :            :         const char *p, *e, *k;
    1076                 :            :         int r;
    1077                 :            : 
    1078         [ #  # ]:          0 :         assert(d);
    1079         [ #  # ]:          0 :         assert(where);
    1080         [ #  # ]:          0 :         assert(fname);
    1081                 :            : 
    1082                 :            :         /* We recognize unis created from portable images via the drop-in we created for them */
    1083                 :            : 
    1084   [ #  #  #  #  :          0 :         p = strjoina(fname, ".d/20-portable.conf");
          #  #  #  #  #  
                #  #  # ]
    1085                 :          0 :         fd = openat(dirfd(d), p, O_RDONLY|O_CLOEXEC);
    1086         [ #  # ]:          0 :         if (fd < 0) {
    1087         [ #  # ]:          0 :                 if (errno == ENOENT)
    1088                 :          0 :                         return 0;
    1089                 :            : 
    1090         [ #  # ]:          0 :                 return log_debug_errno(errno, "Failed to open %s/%s: %m", where, p);
    1091                 :            :         }
    1092                 :            : 
    1093                 :          0 :         r = fdopen_unlocked(fd, "r", &f);
    1094         [ #  # ]:          0 :         if (r < 0)
    1095         [ #  # ]:          0 :                 return log_debug_errno(r, "Failed to convert file handle: %m");
    1096                 :          0 :         TAKE_FD(fd);
    1097                 :            : 
    1098                 :          0 :         r = read_line(f, LONG_LINE_MAX, &line);
    1099         [ #  # ]:          0 :         if (r < 0)
    1100         [ #  # ]:          0 :                 return log_debug_errno(r, "Failed to read from %s/%s: %m", where, p);
    1101                 :            : 
    1102                 :          0 :         e = startswith(line, PORTABLE_DROPIN_MARKER_BEGIN);
    1103         [ #  # ]:          0 :         if (!e)
    1104                 :          0 :                 return 0;
    1105                 :            : 
    1106                 :          0 :         k = endswith(e, PORTABLE_DROPIN_MARKER_END);
    1107         [ #  # ]:          0 :         if (!k)
    1108                 :          0 :                 return 0;
    1109                 :            : 
    1110                 :          0 :         marker = strndup(e, k - e);
    1111         [ #  # ]:          0 :         if (!marker)
    1112                 :          0 :                 return -ENOMEM;
    1113                 :            : 
    1114         [ #  # ]:          0 :         if (!name_or_path)
    1115                 :          0 :                 r = true;
    1116                 :            :         else
    1117                 :          0 :                 r = marker_matches_image(marker, name_or_path);
    1118                 :            : 
    1119         [ #  # ]:          0 :         if (ret_marker)
    1120                 :          0 :                 *ret_marker = TAKE_PTR(marker);
    1121                 :            : 
    1122                 :          0 :         return r;
    1123                 :            : }
    1124                 :            : 
    1125                 :          0 : int portable_detach(
    1126                 :            :                 sd_bus *bus,
    1127                 :            :                 const char *name_or_path,
    1128                 :            :                 PortableFlags flags,
    1129                 :            :                 PortableChange **changes,
    1130                 :            :                 size_t *n_changes,
    1131                 :            :                 sd_bus_error *error) {
    1132                 :            : 
    1133                 :          0 :         _cleanup_(lookup_paths_free) LookupPaths paths = {};
    1134                 :          0 :         _cleanup_set_free_free_ Set *unit_files = NULL, *markers = NULL;
    1135                 :          0 :         _cleanup_closedir_ DIR *d = NULL;
    1136                 :            :         const char *where, *item;
    1137                 :            :         Iterator iterator;
    1138                 :            :         struct dirent *de;
    1139                 :          0 :         int ret = 0;
    1140                 :            :         int r;
    1141                 :            : 
    1142         [ #  # ]:          0 :         assert(name_or_path);
    1143                 :            : 
    1144                 :          0 :         r = lookup_paths_init(&paths, UNIT_FILE_SYSTEM, LOOKUP_PATHS_SPLIT_USR, NULL);
    1145         [ #  # ]:          0 :         if (r < 0)
    1146                 :          0 :                 return r;
    1147                 :            : 
    1148                 :          0 :         where = attached_path(&paths, flags);
    1149                 :            : 
    1150                 :          0 :         d = opendir(where);
    1151         [ #  # ]:          0 :         if (!d) {
    1152         [ #  # ]:          0 :                 if (errno == ENOENT)
    1153                 :          0 :                         goto not_found;
    1154                 :            : 
    1155         [ #  # ]:          0 :                 return log_debug_errno(errno, "Failed to open '%s' directory: %m", where);
    1156                 :            :         }
    1157                 :            : 
    1158                 :          0 :         unit_files = set_new(&string_hash_ops);
    1159         [ #  # ]:          0 :         if (!unit_files)
    1160                 :          0 :                 return -ENOMEM;
    1161                 :            : 
    1162                 :          0 :         markers = set_new(&path_hash_ops);
    1163         [ #  # ]:          0 :         if (!markers)
    1164                 :          0 :                 return -ENOMEM;
    1165                 :            : 
    1166   [ #  #  #  #  :          0 :         FOREACH_DIRENT(de, d, return log_debug_errno(errno, "Failed to enumerate '%s' directory: %m", where)) {
             #  #  #  # ]
    1167      [ #  #  # ]:          0 :                 _cleanup_free_ char *marker = NULL;
    1168                 :            :                 UnitFileState state;
    1169                 :            : 
    1170         [ #  # ]:          0 :                 if (!unit_name_is_valid(de->d_name, UNIT_NAME_ANY))
    1171                 :          0 :                         continue;
    1172                 :            : 
    1173                 :            :                 /* Filter out duplicates */
    1174         [ #  # ]:          0 :                 if (set_get(unit_files, de->d_name))
    1175                 :          0 :                         continue;
    1176                 :            : 
    1177                 :          0 :                 dirent_ensure_type(d, de);
    1178   [ #  #  #  # ]:          0 :                 if (!IN_SET(de->d_type, DT_LNK, DT_REG))
    1179                 :          0 :                         continue;
    1180                 :            : 
    1181                 :          0 :                 r = test_chroot_dropin(d, where, de->d_name, name_or_path, &marker);
    1182         [ #  # ]:          0 :                 if (r < 0)
    1183                 :          0 :                         return r;
    1184         [ #  # ]:          0 :                 if (r == 0)
    1185                 :          0 :                         continue;
    1186                 :            : 
    1187                 :          0 :                 r = unit_file_lookup_state(UNIT_FILE_SYSTEM, &paths, de->d_name, &state);
    1188         [ #  # ]:          0 :                 if (r < 0)
    1189         [ #  # ]:          0 :                         return log_debug_errno(r, "Failed to determine unit file state of '%s': %m", de->d_name);
    1190   [ #  #  #  # ]:          0 :                 if (!IN_SET(state, UNIT_FILE_STATIC, UNIT_FILE_DISABLED, UNIT_FILE_LINKED, UNIT_FILE_RUNTIME))
    1191                 :          0 :                         return sd_bus_error_setf(error, BUS_ERROR_UNIT_EXISTS, "Unit file '%s' is in state '%s', can't detach.", de->d_name, unit_file_state_to_string(state));
    1192                 :            : 
    1193                 :          0 :                 r = unit_file_is_active(bus, de->d_name, error);
    1194         [ #  # ]:          0 :                 if (r < 0)
    1195                 :          0 :                         return r;
    1196         [ #  # ]:          0 :                 if (r > 0)
    1197                 :          0 :                         return sd_bus_error_setf(error, BUS_ERROR_UNIT_EXISTS, "Unit file '%s' is active, can't detach.", de->d_name);
    1198                 :            : 
    1199                 :          0 :                 r = set_put_strdup(unit_files, de->d_name);
    1200         [ #  # ]:          0 :                 if (r < 0)
    1201         [ #  # ]:          0 :                         return log_debug_errno(r, "Failed to add unit name '%s' to set: %m", de->d_name);
    1202                 :            : 
    1203         [ #  # ]:          0 :                 if (path_is_absolute(marker) &&
    1204         [ #  # ]:          0 :                     !image_in_search_path(IMAGE_PORTABLE, marker)) {
    1205                 :            : 
    1206                 :          0 :                         r = set_ensure_allocated(&markers, &path_hash_ops);
    1207         [ #  # ]:          0 :                         if (r < 0)
    1208                 :          0 :                                 return r;
    1209                 :            : 
    1210                 :          0 :                         r = set_put(markers, marker);
    1211         [ #  # ]:          0 :                         if (r >= 0)
    1212                 :          0 :                                 marker = NULL;
    1213         [ #  # ]:          0 :                         else if (r != -EEXIST)
    1214                 :          0 :                                 return r;
    1215                 :            :                 }
    1216                 :            :         }
    1217                 :            : 
    1218         [ #  # ]:          0 :         if (set_isempty(unit_files))
    1219                 :          0 :                 goto not_found;
    1220                 :            : 
    1221         [ #  # ]:          0 :         SET_FOREACH(item, unit_files, iterator) {
    1222         [ #  # ]:          0 :                 _cleanup_free_ char *md = NULL;
    1223                 :            :                 const char *suffix;
    1224                 :            : 
    1225         [ #  # ]:          0 :                 if (unlinkat(dirfd(d), item, 0) < 0) {
    1226         [ #  # ]:          0 :                         log_debug_errno(errno, "Can't remove unit file %s/%s: %m", where, item);
    1227                 :            : 
    1228   [ #  #  #  # ]:          0 :                         if (errno != ENOENT && ret >= 0)
    1229                 :          0 :                                 ret = -errno;
    1230                 :            :                 } else
    1231                 :          0 :                         portable_changes_add_with_prefix(changes, n_changes, PORTABLE_UNLINK, where, item, NULL);
    1232                 :            : 
    1233         [ #  # ]:          0 :                 FOREACH_STRING(suffix, ".d/10-profile.conf", ".d/20-portable.conf") {
    1234         [ #  # ]:          0 :                         _cleanup_free_ char *dropin = NULL;
    1235                 :            : 
    1236                 :          0 :                         dropin = strjoin(item, suffix);
    1237         [ #  # ]:          0 :                         if (!dropin)
    1238                 :          0 :                                 return -ENOMEM;
    1239                 :            : 
    1240         [ #  # ]:          0 :                         if (unlinkat(dirfd(d), dropin, 0) < 0) {
    1241         [ #  # ]:          0 :                                 log_debug_errno(errno, "Can't remove drop-in %s/%s: %m", where, dropin);
    1242                 :            : 
    1243   [ #  #  #  # ]:          0 :                                 if (errno != ENOENT && ret >= 0)
    1244                 :          0 :                                         ret = -errno;
    1245                 :            :                         } else
    1246                 :          0 :                                 portable_changes_add_with_prefix(changes, n_changes, PORTABLE_UNLINK, where, dropin, NULL);
    1247                 :            :                 }
    1248                 :            : 
    1249                 :          0 :                 md = strjoin(item, ".d");
    1250         [ #  # ]:          0 :                 if (!md)
    1251                 :          0 :                         return -ENOMEM;
    1252                 :            : 
    1253         [ #  # ]:          0 :                 if (unlinkat(dirfd(d), md, AT_REMOVEDIR) < 0) {
    1254         [ #  # ]:          0 :                         log_debug_errno(errno, "Can't remove drop-in directory %s/%s: %m", where, md);
    1255                 :            : 
    1256   [ #  #  #  # ]:          0 :                         if (errno != ENOENT && ret >= 0)
    1257                 :          0 :                                 ret = -errno;
    1258                 :            :                 } else
    1259                 :          0 :                         portable_changes_add_with_prefix(changes, n_changes, PORTABLE_UNLINK, where, md, NULL);
    1260                 :            :         }
    1261                 :            : 
    1262                 :            :         /* Now, also drop any image symlink, for images outside of the sarch path */
    1263         [ #  # ]:          0 :         SET_FOREACH(item, markers, iterator) {
    1264         [ #  # ]:          0 :                 _cleanup_free_ char *sl = NULL;
    1265                 :            :                 struct stat st;
    1266                 :            : 
    1267                 :          0 :                 r = image_symlink(item, flags, &sl);
    1268         [ #  # ]:          0 :                 if (r < 0) {
    1269         [ #  # ]:          0 :                         log_debug_errno(r, "Failed to determine image symlink for '%s', ignoring: %m", item);
    1270                 :          0 :                         continue;
    1271                 :            :                 }
    1272                 :            : 
    1273         [ #  # ]:          0 :                 if (lstat(sl, &st) < 0) {
    1274         [ #  # ]:          0 :                         log_debug_errno(errno, "Failed to stat '%s', ignoring: %m", sl);
    1275                 :          0 :                         continue;
    1276                 :            :                 }
    1277                 :            : 
    1278         [ #  # ]:          0 :                 if (!S_ISLNK(st.st_mode)) {
    1279         [ #  # ]:          0 :                         log_debug("Image '%s' is not a symlink, ignoring.", sl);
    1280                 :          0 :                         continue;
    1281                 :            :                 }
    1282                 :            : 
    1283         [ #  # ]:          0 :                 if (unlink(sl) < 0) {
    1284         [ #  # ]:          0 :                         log_debug_errno(errno, "Can't remove image symlink '%s': %m", sl);
    1285                 :            : 
    1286   [ #  #  #  # ]:          0 :                         if (errno != ENOENT && ret >= 0)
    1287                 :          0 :                                 ret = -errno;
    1288                 :            :                 } else
    1289                 :          0 :                         portable_changes_add(changes, n_changes, PORTABLE_UNLINK, sl, NULL);
    1290                 :            :         }
    1291                 :            : 
    1292                 :            :         /* Try to remove the unit file directory, if we can */
    1293         [ #  # ]:          0 :         if (rmdir(where) >= 0)
    1294                 :          0 :                 portable_changes_add(changes, n_changes, PORTABLE_UNLINK, where, NULL);
    1295                 :            : 
    1296                 :          0 :         return ret;
    1297                 :            : 
    1298                 :          0 : not_found:
    1299         [ #  # ]:          0 :         log_debug("No unit files associated with '%s' found. Image not attached?", name_or_path);
    1300                 :          0 :         return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_UNIT, "No unit files associated with '%s' found. Image not attached?", name_or_path);
    1301                 :            : }
    1302                 :            : 
    1303                 :          0 : static int portable_get_state_internal(
    1304                 :            :                 sd_bus *bus,
    1305                 :            :                 const char *name_or_path,
    1306                 :            :                 PortableFlags flags,
    1307                 :            :                 PortableState *ret,
    1308                 :            :                 sd_bus_error *error) {
    1309                 :            : 
    1310                 :          0 :         _cleanup_(lookup_paths_free) LookupPaths paths = {};
    1311                 :          0 :         bool found_enabled = false, found_running = false;
    1312                 :          0 :         _cleanup_set_free_free_ Set *unit_files = NULL;
    1313                 :          0 :         _cleanup_closedir_ DIR *d = NULL;
    1314                 :            :         const char *where;
    1315                 :            :         struct dirent *de;
    1316                 :            :         int r;
    1317                 :            : 
    1318         [ #  # ]:          0 :         assert(name_or_path);
    1319         [ #  # ]:          0 :         assert(ret);
    1320                 :            : 
    1321                 :          0 :         r = lookup_paths_init(&paths, UNIT_FILE_SYSTEM, LOOKUP_PATHS_SPLIT_USR, NULL);
    1322         [ #  # ]:          0 :         if (r < 0)
    1323                 :          0 :                 return r;
    1324                 :            : 
    1325                 :          0 :         where = attached_path(&paths, flags);
    1326                 :            : 
    1327                 :          0 :         d = opendir(where);
    1328         [ #  # ]:          0 :         if (!d) {
    1329         [ #  # ]:          0 :                 if (errno == ENOENT) {
    1330                 :            :                         /* If the 'attached' directory doesn't exist at all, then we know for sure this image isn't attached. */
    1331                 :          0 :                         *ret = PORTABLE_DETACHED;
    1332                 :          0 :                         return 0;
    1333                 :            :                 }
    1334                 :            : 
    1335         [ #  # ]:          0 :                 return log_debug_errno(errno, "Failed to open '%s' directory: %m", where);
    1336                 :            :         }
    1337                 :            : 
    1338                 :          0 :         unit_files = set_new(&string_hash_ops);
    1339         [ #  # ]:          0 :         if (!unit_files)
    1340                 :          0 :                 return -ENOMEM;
    1341                 :            : 
    1342   [ #  #  #  #  :          0 :         FOREACH_DIRENT(de, d, return log_debug_errno(errno, "Failed to enumerate '%s' directory: %m", where)) {
             #  #  #  # ]
    1343                 :            :                 UnitFileState state;
    1344                 :            : 
    1345         [ #  # ]:          0 :                 if (!unit_name_is_valid(de->d_name, UNIT_NAME_ANY))
    1346                 :          0 :                         continue;
    1347                 :            : 
    1348                 :            :                 /* Filter out duplicates */
    1349         [ #  # ]:          0 :                 if (set_get(unit_files, de->d_name))
    1350                 :          0 :                         continue;
    1351                 :            : 
    1352                 :          0 :                 dirent_ensure_type(d, de);
    1353   [ #  #  #  # ]:          0 :                 if (!IN_SET(de->d_type, DT_LNK, DT_REG))
    1354                 :          0 :                         continue;
    1355                 :            : 
    1356                 :          0 :                 r = test_chroot_dropin(d, where, de->d_name, name_or_path, NULL);
    1357         [ #  # ]:          0 :                 if (r < 0)
    1358                 :          0 :                         return r;
    1359         [ #  # ]:          0 :                 if (r == 0)
    1360                 :          0 :                         continue;
    1361                 :            : 
    1362                 :          0 :                 r = unit_file_lookup_state(UNIT_FILE_SYSTEM, &paths, de->d_name, &state);
    1363         [ #  # ]:          0 :                 if (r < 0)
    1364         [ #  # ]:          0 :                         return log_debug_errno(r, "Failed to determine unit file state of '%s': %m", de->d_name);
    1365   [ #  #  #  # ]:          0 :                 if (!IN_SET(state, UNIT_FILE_STATIC, UNIT_FILE_DISABLED, UNIT_FILE_LINKED, UNIT_FILE_LINKED_RUNTIME))
    1366                 :          0 :                         found_enabled = true;
    1367                 :            : 
    1368                 :          0 :                 r = unit_file_is_active(bus, de->d_name, error);
    1369         [ #  # ]:          0 :                 if (r < 0)
    1370                 :          0 :                         return r;
    1371         [ #  # ]:          0 :                 if (r > 0)
    1372                 :          0 :                         found_running = true;
    1373                 :            : 
    1374                 :          0 :                 r = set_put_strdup(unit_files, de->d_name);
    1375         [ #  # ]:          0 :                 if (r < 0)
    1376         [ #  # ]:          0 :                         return log_debug_errno(r, "Failed to add unit name '%s' to set: %m", de->d_name);
    1377                 :            :         }
    1378                 :            : 
    1379   [ #  #  #  #  :          0 :         *ret = found_running ? (!set_isempty(unit_files) && (flags & PORTABLE_RUNTIME) ? PORTABLE_RUNNING_RUNTIME : PORTABLE_RUNNING) :
             #  #  #  # ]
    1380         [ #  # ]:          0 :                 found_enabled ?            (flags & PORTABLE_RUNTIME ? PORTABLE_ENABLED_RUNTIME : PORTABLE_ENABLED) :
    1381   [ #  #  #  # ]:          0 :                 !set_isempty(unit_files) ? (flags & PORTABLE_RUNTIME ? PORTABLE_ATTACHED_RUNTIME : PORTABLE_ATTACHED) : PORTABLE_DETACHED;
    1382                 :            : 
    1383                 :          0 :         return 0;
    1384                 :            : }
    1385                 :            : 
    1386                 :          0 : int portable_get_state(
    1387                 :            :                 sd_bus *bus,
    1388                 :            :                 const char *name_or_path,
    1389                 :            :                 PortableFlags flags,
    1390                 :            :                 PortableState *ret,
    1391                 :            :                 sd_bus_error *error) {
    1392                 :            : 
    1393                 :            :         PortableState state;
    1394                 :            :         int r;
    1395                 :            : 
    1396         [ #  # ]:          0 :         assert(name_or_path);
    1397         [ #  # ]:          0 :         assert(ret);
    1398                 :            : 
    1399                 :            :         /* We look for matching units twice: once in the regular directories, and once in the runtime directories — but
    1400                 :            :          * the latter only if we didn't find anything in the former. */
    1401                 :            : 
    1402                 :          0 :         r = portable_get_state_internal(bus, name_or_path, flags & ~PORTABLE_RUNTIME, &state, error);
    1403         [ #  # ]:          0 :         if (r < 0)
    1404                 :          0 :                 return r;
    1405                 :            : 
    1406         [ #  # ]:          0 :         if (state == PORTABLE_DETACHED) {
    1407                 :          0 :                 r = portable_get_state_internal(bus, name_or_path, flags | PORTABLE_RUNTIME, &state, error);
    1408         [ #  # ]:          0 :                 if (r < 0)
    1409                 :          0 :                         return r;
    1410                 :            :         }
    1411                 :            : 
    1412                 :          0 :         *ret = state;
    1413                 :          0 :         return 0;
    1414                 :            : }
    1415                 :            : 
    1416                 :          0 : int portable_get_profiles(char ***ret) {
    1417         [ #  # ]:          0 :         assert(ret);
    1418                 :            : 
    1419                 :          0 :         return conf_files_list_nulstr(ret, NULL, NULL, CONF_FILES_DIRECTORY|CONF_FILES_BASENAME|CONF_FILES_FILTER_MASKED, profile_dirs);
    1420                 :            : }
    1421                 :            : 
    1422                 :            : static const char* const portable_change_type_table[_PORTABLE_CHANGE_TYPE_MAX] = {
    1423                 :            :         [PORTABLE_COPY] = "copy",
    1424                 :            :         [PORTABLE_MKDIR] = "mkdir",
    1425                 :            :         [PORTABLE_SYMLINK] = "symlink",
    1426                 :            :         [PORTABLE_UNLINK] = "unlink",
    1427                 :            :         [PORTABLE_WRITE] = "write",
    1428                 :            : };
    1429                 :            : 
    1430   [ #  #  #  # ]:          0 : DEFINE_STRING_TABLE_LOOKUP(portable_change_type, PortableChangeType);
    1431                 :            : 
    1432                 :            : static const char* const portable_state_table[_PORTABLE_STATE_MAX] = {
    1433                 :            :         [PORTABLE_DETACHED] = "detached",
    1434                 :            :         [PORTABLE_ATTACHED] = "attached",
    1435                 :            :         [PORTABLE_ATTACHED_RUNTIME] = "attached-runtime",
    1436                 :            :         [PORTABLE_ENABLED] = "enabled",
    1437                 :            :         [PORTABLE_ENABLED_RUNTIME] = "enabled-runtime",
    1438                 :            :         [PORTABLE_RUNNING] = "running",
    1439                 :            :         [PORTABLE_RUNNING_RUNTIME] = "running-runtime",
    1440                 :            : };
    1441                 :            : 
    1442   [ #  #  #  # ]:          0 : DEFINE_STRING_TABLE_LOOKUP(portable_state, PortableState);

Generated by: LCOV version 1.14