X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4436adf7710dc39c6555fcd87701db50c654bf71..93998c2ed02609cdbf9f8039a0c6f364940df8cb:/src/mc/mc_client_api.cpp diff --git a/src/mc/mc_client_api.cpp b/src/mc/mc_client_api.cpp index 372f3c4082..f75d35a2de 100644 --- a/src/mc/mc_client_api.cpp +++ b/src/mc/mc_client_api.cpp @@ -1,102 +1,84 @@ -/* Copyright (c) 2008-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2008-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include -#include -#include -#include +#include "simgrid/simix.hpp" +#include "src/kernel/actor/ActorImpl.hpp" +#include "src/mc/mc_config.hpp" +#include "src/mc/mc_private.hpp" +#include "src/mc/mc_record.hpp" +#include "src/mc/mc_replay.hpp" +#include "src/mc/remote/AppSide.hpp" +#include "xbt/asserts.h" +#include "xbt/random.hpp" -#include "mc_record.h" -#include "mc_private.h" -#include "mc_mmalloc.h" -#include "mc_ignore.h" -#include "mc_protocol.h" -#include "mc_client.h" -#include "ModelChecker.hpp" +/* Implementation of the user API from the App to the Checker (see modelchecker.h) */ -/** \file mc_client_api.cpp - * - * This is the implementation of the API used by the user simulated program to - * communicate with the MC (declared in modelchecker.h). - */ - -extern "C" { - -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_client_api, mc, - "Public API for the model-checked application"); - -} - -// MC_random() is in mc_base.cpp - -void MC_assert(int prop) +int MC_random(int min, int max) { - if (MC_is_active() && !prop) { - MC_client_send_simple_message(MC_MESSAGE_ASSERTION_FAILED); - MC_client_handle_messages(); +#if SIMGRID_HAVE_MC + xbt_assert(mc_model_checker == nullptr); +#endif + if (not MC_is_active() && not MC_record_replay_is_active()) { // no need to do a simcall in this case + static simgrid::xbt::random::XbtRandom prng; + return prng.uniform_int(min, max); } + simgrid::kernel::actor::RandomSimcall observer{simgrid::kernel::actor::ActorImpl::self(), min, max}; + return simgrid::kernel::actor::simcall_answered([&observer] { return observer.get_value(); }, &observer); } -void *MC_snapshot(void) -{ - return simcall_mc_snapshot(); -} - -int simcall_HANDLER_mc_compare_snapshots(smx_simcall_t simcall, - mc_snapshot_t s1, mc_snapshot_t s2) +void MC_assert(int prop) { - return snapshot_compare(s1, s2); + // Cannot used xbt_assert here, or it would be an infinite recursion. +#if SIMGRID_HAVE_MC + if (mc_model_checker != nullptr) + xbt_die("This should be called from the client side"); + if (not prop) { + if (MC_is_active()) + simgrid::mc::AppSide::get()->report_assertion_failure(); + if (MC_record_replay_is_active()) + xbt_die("MC assertion failed"); + } +#else + if (not prop) + xbt_die("Safety property violation detected without the model-checker"); +#endif } -int MC_compare_snapshots(void *s1, void *s2) +int MC_is_active() { - return simcall_mc_compare_snapshots(s1, s2); + return simgrid::mc::cfg_do_model_check; } -void MC_cut(void) +void MC_automaton_new_propositional_symbol_pointer(const char *name, int* value) { - user_max_depth_reached = 1; +#if SIMGRID_HAVE_MC + xbt_assert(mc_model_checker == nullptr); + simgrid::mc::AppSide::get()->declare_symbol(name, value); +#endif } void MC_ignore(void* addr, size_t size) { - xbt_assert(mc_mode != MC_MODE_SERVER); - if (mc_mode != MC_MODE_CLIENT) - return; - - s_mc_ignore_memory_message_t message; - message.type = MC_MESSAGE_IGNORE_MEMORY; - message.addr = (std::uintptr_t) addr; - message.size = size; - MC_client_send_message(&message, sizeof(message)); +#if SIMGRID_HAVE_MC + xbt_assert(mc_model_checker == nullptr); + simgrid::mc::AppSide::get()->ignore_memory(addr, size); +#endif } -void MC_automaton_new_propositional_symbol(const char *id, int(*fct)(void)) +void MC_ignore_heap(void *address, size_t size) { - xbt_assert(mc_mode != MC_MODE_SERVER); - if (mc_mode != MC_MODE_CLIENT) - return; - - xbt_die("Support for client-side function proposition is not implemented: " - "use MC_automaton_new_propositional_symbol_pointer instead." - ); +#if SIMGRID_HAVE_MC + xbt_assert(mc_model_checker == nullptr); + simgrid::mc::AppSide::get()->ignore_heap(address, size); +#endif } -void MC_automaton_new_propositional_symbol_pointer(const char *name, int* value) +void MC_unignore_heap(void* address, size_t size) { - xbt_assert(mc_mode != MC_MODE_SERVER); - if (mc_mode != MC_MODE_CLIENT) - return; - - s_mc_register_symbol_message_t message; - message.type = MC_MESSAGE_REGISTER_SYMBOL; - if (strlen(name) + 1 > sizeof(message.name)) - xbt_die("Symbol is too long"); - strncpy(message.name, name, sizeof(message.name)); - message.callback = nullptr; - message.data = value; - MC_client_send_message(&message, sizeof(message)); +#if SIMGRID_HAVE_MC + xbt_assert(mc_model_checker == nullptr); + simgrid::mc::AppSide::get()->unignore_heap(address, size); +#endif }