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

           Branch data     Line data    Source code
       1                 :            : /* SPDX-License-Identifier: LGPL-2.1+ */
       2                 :            : 
       3                 :            : #include <errno.h>
       4                 :            : #include <mntent.h>
       5                 :            : #include <string.h>
       6                 :            : #include <sys/prctl.h>
       7                 :            : #include <sys/stat.h>
       8                 :            : #include <sys/wait.h>
       9                 :            : #include <unistd.h>
      10                 :            : 
      11                 :            : #include "env-util.h"
      12                 :            : #include "exit-status.h"
      13                 :            : #include "log.h"
      14                 :            : #include "main-func.h"
      15                 :            : #include "mount-setup.h"
      16                 :            : #include "mount-util.h"
      17                 :            : #include "path-util.h"
      18                 :            : #include "process-util.h"
      19                 :            : #include "signal-util.h"
      20                 :            : #include "strv.h"
      21                 :            : #include "util.h"
      22                 :            : 
      23                 :            : /* Goes through /etc/fstab and remounts all API file systems, applying options that are in /etc/fstab that systemd
      24                 :            :  * might not have respected */
      25                 :            : 
      26                 :          0 : static int track_pid(Hashmap **h, const char *path, pid_t pid) {
      27                 :          0 :         _cleanup_free_ char *c = NULL;
      28                 :            :         int r;
      29                 :            : 
      30         [ #  # ]:          0 :         assert(h);
      31         [ #  # ]:          0 :         assert(path);
      32         [ #  # ]:          0 :         assert(pid_is_valid(pid));
      33                 :            : 
      34                 :          0 :         r = hashmap_ensure_allocated(h, NULL);
      35         [ #  # ]:          0 :         if (r < 0)
      36                 :          0 :                 return log_oom();
      37                 :            : 
      38                 :          0 :         c = strdup(path);
      39         [ #  # ]:          0 :         if (!c)
      40                 :          0 :                 return log_oom();
      41                 :            : 
      42                 :          0 :         r = hashmap_put(*h, PID_TO_PTR(pid), c);
      43         [ #  # ]:          0 :         if (r < 0)
      44                 :          0 :                 return log_oom();
      45                 :            : 
      46                 :          0 :         TAKE_PTR(c);
      47                 :          0 :         return 0;
      48                 :            : }
      49                 :            : 
      50                 :          0 : static int do_remount(const char *path, bool force_rw, Hashmap **pids) {
      51                 :            :         pid_t pid;
      52                 :            :         int r;
      53                 :            : 
      54         [ #  # ]:          0 :         log_debug("Remounting %s...", path);
      55                 :            : 
      56         [ #  # ]:          0 :         r = safe_fork(force_rw ? "(remount-rw)" : "(remount)",
      57                 :            :                       FORK_RESET_SIGNALS|FORK_DEATHSIG|FORK_RLIMIT_NOFILE_SAFE|FORK_LOG, &pid);
      58         [ #  # ]:          0 :         if (r < 0)
      59                 :          0 :                 return r;
      60         [ #  # ]:          0 :         if (r == 0) {
      61                 :            :                 /* Child */
      62                 :          0 :                 execv(MOUNT_PATH,
      63         [ #  # ]:          0 :                       STRV_MAKE(MOUNT_PATH,
      64                 :            :                                 path,
      65                 :            :                                 "-o",
      66                 :            :                                 force_rw ? "remount,rw" : "remount"));
      67         [ #  # ]:          0 :                 log_error_errno(errno, "Failed to execute " MOUNT_PATH ": %m");
      68                 :          0 :                 _exit(EXIT_FAILURE);
      69                 :            :         }
      70                 :            : 
      71                 :            :         /* Parent */
      72                 :          0 :         return track_pid(pids, path, pid);
      73                 :            : }
      74                 :            : 
      75                 :          0 : static int run(int argc, char *argv[]) {
      76                 :          0 :         _cleanup_hashmap_free_free_ Hashmap *pids = NULL;
      77                 :          0 :         _cleanup_endmntent_ FILE *f = NULL;
      78                 :          0 :         bool has_root = false;
      79                 :            :         struct mntent* me;
      80                 :            :         int r;
      81                 :            : 
      82                 :          0 :         log_setup_service();
      83                 :            : 
      84         [ #  # ]:          0 :         if (argc > 1)
      85         [ #  # ]:          0 :                 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
      86                 :            :                                        "This program takes no arguments.");
      87                 :            : 
      88                 :          0 :         umask(0022);
      89                 :            : 
      90                 :          0 :         f = setmntent("/etc/fstab", "re");
      91         [ #  # ]:          0 :         if (!f) {
      92         [ #  # ]:          0 :                 if (errno != ENOENT)
      93         [ #  # ]:          0 :                         return log_error_errno(errno, "Failed to open /etc/fstab: %m");
      94                 :            :         } else
      95         [ #  # ]:          0 :                 while ((me = getmntent(f))) {
      96                 :            :                         /* Remount the root fs, /usr, and all API VFSs */
      97         [ #  # ]:          0 :                         if (!mount_point_is_api(me->mnt_dir) &&
      98   [ #  #  #  #  :          0 :                             !PATH_IN_SET(me->mnt_dir, "/", "/usr"))
             #  #  #  # ]
      99                 :          0 :                                 continue;
     100                 :            : 
     101         [ #  # ]:          0 :                         if (path_equal(me->mnt_dir, "/"))
     102                 :          0 :                                 has_root = true;
     103                 :            : 
     104                 :          0 :                         r = do_remount(me->mnt_dir, false, &pids);
     105         [ #  # ]:          0 :                         if (r < 0)
     106                 :          0 :                                 return r;
     107                 :            :                 }
     108                 :            : 
     109         [ #  # ]:          0 :         if (!has_root) {
     110                 :            :                 /* The $SYSTEMD_REMOUNT_ROOT_RW environment variable is set by systemd-gpt-auto-generator to tell us
     111                 :            :                  * whether to remount things. We honour it only if there's no explicit line in /etc/fstab configured
     112                 :            :                  * which takes precedence. */
     113                 :            : 
     114                 :          0 :                 r = getenv_bool("SYSTEMD_REMOUNT_ROOT_RW");
     115   [ #  #  #  # ]:          0 :                 if (r < 0 && r != -ENXIO)
     116         [ #  # ]:          0 :                         log_warning_errno(r, "Failed to parse $SYSTEMD_REMOUNT_ROOT_RW, ignoring: %m");
     117                 :            : 
     118         [ #  # ]:          0 :                 if (r > 0) {
     119                 :          0 :                         r = do_remount("/", true, &pids);
     120         [ #  # ]:          0 :                         if (r < 0)
     121                 :          0 :                                 return r;
     122                 :            :                 }
     123                 :            :         }
     124                 :            : 
     125                 :          0 :         r = 0;
     126         [ #  # ]:          0 :         while (!hashmap_isempty(pids)) {
     127      [ #  #  # ]:          0 :                 _cleanup_free_ char *s = NULL;
     128                 :          0 :                 siginfo_t si = {};
     129                 :            : 
     130         [ #  # ]:          0 :                 if (waitid(P_ALL, 0, &si, WEXITED) < 0) {
     131         [ #  # ]:          0 :                         if (errno == EINTR)
     132                 :          0 :                                 continue;
     133                 :            : 
     134         [ #  # ]:          0 :                         return log_error_errno(errno, "waitid() failed: %m");
     135                 :            :                 }
     136                 :            : 
     137                 :          0 :                 s = hashmap_remove(pids, PID_TO_PTR(si.si_pid));
     138         [ #  # ]:          0 :                 if (s &&
     139         [ #  # ]:          0 :                     !is_clean_exit(si.si_code, si.si_status, EXIT_CLEAN_COMMAND, NULL)) {
     140         [ #  # ]:          0 :                         if (si.si_code == CLD_EXITED)
     141         [ #  # ]:          0 :                                 log_error(MOUNT_PATH " for %s exited with exit status %i.", s, si.si_status);
     142                 :            :                         else
     143         [ #  # ]:          0 :                                 log_error(MOUNT_PATH " for %s terminated by signal %s.", s, signal_to_string(si.si_status));
     144                 :            : 
     145                 :          0 :                         r = -ENOEXEC;
     146                 :            :                 }
     147                 :            :         }
     148                 :            : 
     149                 :          0 :         return r;
     150                 :            : }
     151                 :            : 
     152                 :          0 : DEFINE_MAIN_FUNCTION(run);

Generated by: LCOV version 1.14