#include "constants.h"
#include "copy.h"
#include "coredump-util.h"
+#include "cryptsetup-util.h"
#include "dissect-image.h"
#include "dynamic-user.h"
#include "env-util.h"
#include "io-util.h"
#include "iovec-util.h"
#include "journal-send.h"
+#include "libmount-util.h"
#include "manager.h"
#include "memfd-util.h"
#include "mkdir-label.h"
}
}
+ /* Load a bunch of libraries we'll possibly need later, before we turn off dlopen() */
+ (void) dlopen_bpf();
+ (void) dlopen_cryptsetup();
+ (void) dlopen_libmount();
+ (void) dlopen_libseccomp();
+
/* Let's now disable further dlopen()ing of libraries, since we are about to do namespace
* shenanigans, and do not want to mix resources from host and namespace */
block_dlopen();