Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Bugfix: protect SIMIX_context_self() in the case that SIMIX is not initialized.
[simgrid.git] / src / simix / smx_context_sysv.c
1 /* context_sysv - context switching with ucontextes from System V           */
2
3 /* Copyright (c) 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6  /* This program is free software; you can redistribute it and/or modify it
7   * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "smx_context_sysv_private.h"
10 #include "xbt/threadpool.h"
11 #include "simix/private.h"
12
13 #ifdef HAVE_VALGRIND_VALGRIND_H
14 #  include <valgrind/valgrind.h>
15 #endif                          /* HAVE_VALGRIND_VALGRIND_H */
16
17 #ifdef _XBT_WIN32
18 #include "win32_ucontext.h"
19 #include "win32_ucontext.c"
20 #else
21 #include "ucontext.h"
22 #endif
23
24 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_context);
25
26 static xbt_tpool_t tpool;
27
28 static smx_context_t
29 smx_ctx_sysv_create_context(xbt_main_func_t code, int argc, char **argv,
30     void_pfn_smxprocess_t cleanup_func, void* data);
31
32
33 static void smx_ctx_sysv_wrapper(smx_ctx_sysv_t context);
34
35 void SIMIX_ctx_sysv_factory_init(smx_context_factory_t *factory)
36 {
37   smx_ctx_base_factory_init(factory);
38
39   (*factory)->finalize = smx_ctx_sysv_factory_finalize;
40   (*factory)->create_context = smx_ctx_sysv_create_context;
41   /* Do not overload that method (*factory)->finalize */
42   (*factory)->free = smx_ctx_sysv_free;
43   (*factory)->stop = smx_ctx_sysv_stop;
44   (*factory)->suspend = smx_ctx_sysv_suspend;
45   (*factory)->name = "smx_sysv_context_factory";
46
47   if(_surf_parallel_contexts){
48     tpool = xbt_tpool_new(2, 10);
49     (*factory)->runall = smx_ctx_sysv_runall_parallel;
50   }else{
51     (*factory)->runall = smx_ctx_sysv_runall;
52   }    
53 }
54
55 int smx_ctx_sysv_factory_finalize(smx_context_factory_t *factory)
56
57   if(tpool)
58     xbt_tpool_destroy(tpool);
59   return smx_ctx_base_factory_finalize(factory);
60 }
61
62 smx_context_t
63 smx_ctx_sysv_create_context_sized(size_t size, xbt_main_func_t code,
64                                   int argc, char **argv,
65                                   void_pfn_smxprocess_t cleanup_func,
66                                   void *data)
67 {
68
69   smx_ctx_sysv_t context =
70       (smx_ctx_sysv_t) smx_ctx_base_factory_create_context_sized(size,
71                                                                  code,
72                                                                  argc,
73                                                                  argv,
74                                                                  cleanup_func,
75                                                                  data);
76
77   /* If the user provided a function for the process then use it
78      otherwise is the context for maestro */
79   if (code) {
80
81     xbt_assert2(getcontext(&(context->uc)) == 0,
82                 "Error in context saving: %d (%s)", errno,
83                 strerror(errno));
84
85     context->uc.uc_link = NULL;
86
87     context->uc.uc_stack.ss_sp =
88         pth_skaddr_makecontext(context->stack, CONTEXT_STACK_SIZE);
89
90     context->uc.uc_stack.ss_size =
91         pth_sksize_makecontext(context->stack, CONTEXT_STACK_SIZE);
92
93 #ifdef HAVE_VALGRIND_VALGRIND_H
94     context->valgrind_stack_id =
95         VALGRIND_STACK_REGISTER(context->uc.uc_stack.ss_sp,
96                                 ((char *) context->uc.uc_stack.ss_sp) +
97                                 context->uc.uc_stack.ss_size);
98 #endif                          /* HAVE_VALGRIND_VALGRIND_H */
99
100     makecontext(&((smx_ctx_sysv_t) context)->uc, (void (*)())smx_ctx_sysv_wrapper,
101                 sizeof(void*)/sizeof(int), context);
102   }else{
103     maestro_context = context;
104   }
105
106   return (smx_context_t) context;
107
108 }
109
110 static smx_context_t
111 smx_ctx_sysv_create_context(xbt_main_func_t code, int argc, char **argv,
112     void_pfn_smxprocess_t cleanup_func,
113     void *data)
114 {
115
116   return smx_ctx_sysv_create_context_sized(sizeof(s_smx_ctx_sysv_t),
117                                            code, argc, argv, cleanup_func,
118                                            data);
119
120 }
121
122 void smx_ctx_sysv_free(smx_context_t context)
123 {
124
125   if (context) {
126
127 #ifdef HAVE_VALGRIND_VALGRIND_H
128     VALGRIND_STACK_DEREGISTER(((smx_ctx_sysv_t)
129                                context)->valgrind_stack_id);
130 #endif                          /* HAVE_VALGRIND_VALGRIND_H */
131
132   }
133   smx_ctx_base_free(context);
134 }
135
136 void smx_ctx_sysv_stop(smx_context_t context)
137 {
138   smx_ctx_base_stop(context);
139   smx_ctx_sysv_suspend(context);
140 }
141
142 void smx_ctx_sysv_wrapper(smx_ctx_sysv_t context)
143
144   (context->super.code) (context->super.argc, context->super.argv);
145
146   smx_ctx_sysv_stop((smx_context_t) context);
147 }
148
149 void smx_ctx_sysv_suspend(smx_context_t context)
150 {
151   smx_current_context = (smx_context_t)maestro_context;
152   int rv = swapcontext(&((smx_ctx_sysv_t) context)->uc, &maestro_context->uc);
153
154   xbt_assert0((rv == 0), "Context swapping failure");
155 }
156
157 void smx_ctx_sysv_resume(smx_context_t context)
158 {
159   smx_current_context = context; 
160   int rv = swapcontext(&maestro_context->uc, &((smx_ctx_sysv_t) context)->uc);
161
162   xbt_assert0((rv == 0), "Context swapping failure");
163 }
164
165 void smx_ctx_sysv_runall(xbt_swag_t processes)
166 {
167   smx_process_t process;
168   
169   while ((process = xbt_swag_extract(processes)))
170     smx_ctx_sysv_resume(process->context);
171 }
172
173 void smx_ctx_sysv_runall_parallel(xbt_swag_t processes)
174 {
175   smx_process_t process;
176   while((process = xbt_swag_extract(processes))){
177     xbt_tpool_queue_job(tpool, (void_f_pvoid_t)smx_ctx_sysv_resume, process->context);
178   }
179 }