Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into mc-process
[simgrid.git] / examples / smpi / mc / bugged1_liveness.c
1 /* Copyright (c) 2013-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 /***************** Centralized Mutual Exclusion Algorithm *********************/
8 /* This example implements a centralized mutual exclusion algorithm.          */
9 /* Bug : CS requests of process 1 not satisfied                                      */
10 /* LTL property checked : G(r->F(cs)); (r=request of CS, cs=CS ok)            */
11 /******************************************************************************/
12
13 /* Run :
14   /usr/bin/time -f "clock:%e user:%U sys:%S swapped:%W exitval:%x max:%Mk" "$@" ../../../smpi_script/bin/smpirun -hostfile hostfile_bugged1_liveness -platform ../../platforms/cluster.xml --cfg=model-check:1 --cfg=contexts/factory:ucontext --cfg=model-check/reduction:none --cfg=model-check/property:promela_bugged1_liveness --cfg=smpi/send_is_detached_thres:0 --cfg=contexts/stack_size:128 --cfg=model-check/visited:100000 --cfg=model-check/max_depth:100000 ./bugged1_liveness */
15
16 #include <stdio.h>
17 #include <mpi.h>
18 #include <simgrid/modelchecker.h>
19
20 #define GRANT_TAG 0
21 #define REQUEST_TAG 1
22 #define RELEASE_TAG 2
23
24 int r, cs;
25
26 int main(int argc, char **argv){
27
28   int err, size, rank;
29   int recv_buff;
30   MPI_Status status;
31   int CS_used = 0;
32   xbt_dynar_t requests = xbt_dynar_new(sizeof(int), NULL);
33   
34   /* Initialize MPI */
35   err = MPI_Init(&argc, &argv);
36   if(err !=  MPI_SUCCESS){
37     printf("MPI initialization failed !\n");
38     exit(1);
39   }
40
41   MC_automaton_new_propositional_symbol_pointer("r", &r);
42   MC_automaton_new_propositional_symbol_pointer("cs", &cs);
43
44   MC_ignore(&(status.count), sizeof(status.count));
45
46   /* Get number of processes */
47   MPI_Comm_size(MPI_COMM_WORLD, &size);
48   /* Get id of this process */
49   MPI_Comm_rank(MPI_COMM_WORLD, &rank);
50
51   if(rank == 0){ /* Coordinator */
52     while(1){
53       MPI_Recv(&recv_buff, 1, MPI_INT, MPI_ANY_SOURCE, MPI_ANY_TAG, MPI_COMM_WORLD, &status);
54       if(status.MPI_TAG == REQUEST_TAG){
55         if(CS_used){
56           printf("CS already used.\n");
57           xbt_dynar_push(requests, &recv_buff);
58         }else{
59           if(recv_buff != size - 1){
60             printf("CS idle. Grant immediatly.\n");
61             MPI_Send(&rank, 1, MPI_INT, recv_buff, GRANT_TAG, MPI_COMM_WORLD);
62             CS_used = 1;
63           }
64         }
65       }else{
66         if(!xbt_dynar_is_empty(requests)){
67           printf("CS release. Grant to queued requests (queue size: %lu)", xbt_dynar_length(requests));
68           xbt_dynar_shift(requests, &recv_buff);
69           if(recv_buff != size - 1){
70             MPI_Send(&rank, 1, MPI_INT, recv_buff, GRANT_TAG, MPI_COMM_WORLD);
71             CS_used = 1;
72           }else{
73             xbt_dynar_push(requests, &recv_buff);
74             CS_used = 0;
75           }
76         }else{
77           printf("CS release. Resource now idle.\n");
78           CS_used = 0;
79         }
80       }
81     }
82   }else{ /* Client */
83     while(1){
84       printf("%d asks the request.\n", rank);
85       MPI_Send(&rank, 1, MPI_INT, 0, REQUEST_TAG, MPI_COMM_WORLD);
86       if(rank == size - 1){
87         r = 1;
88         cs = 0;
89       }
90       MPI_Recv(&recv_buff, 1, MPI_INT, 0, MPI_ANY_TAG, MPI_COMM_WORLD, &status);
91       if(status.MPI_TAG == GRANT_TAG && rank == size - 1){
92         cs = 1;
93         r = 0;
94       }
95       printf("%d got the answer. Release it.\n", rank);
96       MPI_Send(&rank, 1, MPI_INT, 0, RELEASE_TAG, MPI_COMM_WORLD);
97       if(rank == size - 1){
98         r = 0;
99         cs = 0;
100       }
101     }
102   }
103
104   MPI_Finalize();
105
106   return 0;
107 }