check integrity of pool code file
This commit is contained in:
@@ -644,6 +644,12 @@ int main(int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
exit(SS_RC_LIBSTRONGSWAN_INTEGRITY);
|
exit(SS_RC_LIBSTRONGSWAN_INTEGRITY);
|
||||||
}
|
}
|
||||||
|
if (lib->integrity &&
|
||||||
|
!lib->integrity->check_file(lib->integrity, "pool", argv[0]))
|
||||||
|
{
|
||||||
|
fprintf(stderr, "integrity check of pool failed\n");
|
||||||
|
exit(SS_RC_DAEMON_INTEGRITY);
|
||||||
|
}
|
||||||
lib->plugins->load(lib->plugins, IPSEC_PLUGINDIR,
|
lib->plugins->load(lib->plugins, IPSEC_PLUGINDIR,
|
||||||
lib->settings->get_str(lib->settings, "pool.load", PLUGINS));
|
lib->settings->get_str(lib->settings, "pool.load", PLUGINS));
|
||||||
|
|
||||||
|
|||||||
@@ -28,5 +28,9 @@ if USE_TOOLS
|
|||||||
libs += $(top_builddir)/src/scepclient/.libs/scepclient
|
libs += $(top_builddir)/src/scepclient/.libs/scepclient
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if USE_SQL
|
||||||
|
libs += $(top_builddir)/src/charon/plugins/sql/.libs/pool
|
||||||
|
endif
|
||||||
|
|
||||||
checksum.c : checksum_builder $(libs)
|
checksum.c : checksum_builder $(libs)
|
||||||
./checksum_builder $(libs) > checksum.c
|
./checksum_builder $(libs) > checksum.c
|
||||||
|
|||||||
@@ -69,6 +69,10 @@ int main(int argc, char* argv[])
|
|||||||
name = strdup("libstrongswan\",");
|
name = strdup("libstrongswan\",");
|
||||||
sname = "library_init";
|
sname = "library_init";
|
||||||
}
|
}
|
||||||
|
else if (strstr(path, "pool"))
|
||||||
|
{
|
||||||
|
name = strdup("pool\",");
|
||||||
|
}
|
||||||
else if (strstr(path, "charon"))
|
else if (strstr(path, "charon"))
|
||||||
{
|
{
|
||||||
name = strdup("charon\",");
|
name = strdup("charon\",");
|
||||||
|
|||||||
Reference in New Issue
Block a user