forked from filebench/filebench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
procflow.c
838 lines (707 loc) · 22.4 KB
/
procflow.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*
* Portions Copyright 2008 Denis Cheng
*/
#include <signal.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include "filebench.h"
#include "procflow.h"
#include "flowop.h"
#include "ipc.h"
#include "eventgen.h"
/* pid and procflow pointer for this process */
pid_t my_pid;
procflow_t *my_procflow = NULL;
static procflow_t *procflow_define_common(procflow_t **list, char *name,
procflow_t *inherit, int instance);
static void procflow_sleep(procflow_t *procflow, int wait_cnt);
/*
* Procflows are filebench entities which manage processes. Each
* worker procflow spawns a separate filebench process, with attributes
* inherited from a FLOW_MASTER procflow created during f model language
* parsing. This section contains routines to define, create, control,
* and delete procflows.
*
* Each process defined in the f model creates a FLOW_MASTER
* procflow which encapsulates the defined attributes, and threads of
* the f process, including the number of instances to create. At
* runtime, a worker procflow instance with an associated filebench
* process is created, which runs until told to quite by the original
* filebench process or is specifically deleted.
*/
/*
* This routine forks a child process and uses either system() or exec() to
* start up a new instance of filebench, passing it the procflow name, instance
* number and shared memory region address.
*/
static int
procflow_createproc(procflow_t *procflow)
{
pid_t pid = 0;
char instance[128];
char shmaddr[128];
char procname[128];
(void) snprintf(instance, sizeof (instance), "%d",
procflow->pf_instance);
(void) snprintf(procname, sizeof (procname), "%s", procflow->pf_name);
(void) snprintf(shmaddr, sizeof (shmaddr), "%p", filebench_shm);
filebench_log(LOG_DEBUG_IMPL, "creating process %s",
procflow->pf_name);
procflow->pf_running = 0;
#ifdef HAVE_FORK1
if ((pid = fork1()) < 0) {
filebench_log(LOG_ERROR,
"procflow_createproc fork failed: %s",
strerror(errno));
return (-1);
}
#else
if ((pid = fork()) < 0) {
filebench_log(LOG_ERROR,
"procflow_createproc fork failed: %s",
strerror(errno));
return (-1);
}
#endif /* HAVE_FORK1 */
/* if child, start up new copy of filebench */
if (pid == 0) {
#ifdef USE_SYSTEM
char syscmd[1024];
#endif
(void) sigignore(SIGINT);
filebench_log(LOG_DEBUG_SCRIPT,
"Starting %s-%d", procflow->pf_name,
procflow->pf_instance);
/* Child */
#ifdef USE_SYSTEM
(void) snprintf(syscmd, sizeof (syscmd), "%s -a %s -i %s -s %s",
execname,
procname,
instance,
shmaddr);
if (system(syscmd) < 0) {
filebench_log(LOG_ERROR,
"procflow exec proc failed: %s",
strerror(errno));
filebench_shutdown(1);
}
#else
if (execlp(execname, procname, "-a", procname, "-i",
instance, "-s", shmaddr, "-m", shmpath, NULL) < 0) {
filebench_log(LOG_ERROR,
"procflow exec proc failed: %s",
strerror(errno));
filebench_shutdown(1);
}
#endif
exit(1);
} else {
/* if parent, save pid and return */
procflow->pf_pid = pid;
}
filebench_log(LOG_DEBUG_IMPL, "procflow_createproc created pid %d",
pid);
return (0);
}
/*
* Iterates over all defined (MASTER) procflows, allocates procflow instances,
* creates worker monitor processes that correspond to these instances
* and waits until monitors define all threadflows. There is now guarantee
* after this function that all threads are running, but there is a guarantee
* that all threadflow instances are defined and are in corresponding lists.
*/
static int
procflow_create_all_procs(void)
{
procflow_t *procflow;
int ret = 0;
procflow = filebench_shm->shm_procflowlist;
while (procflow) {
int instances;
int i;
instances = (int)avd_get_int(procflow->pf_instances);
filebench_log(LOG_INFO, "Starting %d %s instances",
instances, procflow->pf_name);
/* Create instances of procflow */
for (i = 0; (i < instances) && (ret == 0); i++) {
procflow_t *newproc;
/* Define procflows and add them to the list */
newproc =
procflow_define_common(&filebench_shm->shm_procflowlist,
procflow->pf_name, procflow, i + 1);
/*
* We clear pf_threads_defined_flag in the procflow
* structure before starting a worker monitor
* process. Each worker monitor process will set this flag
* later as soon as it defines _all_ threadflows (and puts them
* into the corresponding list). Than this thread will wait
* on this flag to make sure that all threadflows were defined.
*/
if (!newproc) {
ret = -1;
} else {
clear_flag(&newproc->pf_threads_defined_flag);
ret = procflow_createproc(newproc);
}
}
if (ret)
break;
procflow = procflow->pf_next;
}
/* Wait here for all monitor threads to define threadflows */
procflow = filebench_shm->shm_procflowlist;
while (procflow) {
if (procflow->pf_instance &&
(procflow->pf_instance == FLOW_MASTER)) {
procflow = procflow->pf_next;
continue;
}
wait_flag(&procflow->pf_threads_defined_flag);
procflow = procflow->pf_next;
}
return (ret);
}
/*
* Find a procflow of name "name" and instance "instance" on the
* master procflow list, filebench_shm->shm_procflowlist. Locks the list
* and scans through it searching for a procflow with matching
* name and instance number. If found returns a pointer to the
* procflow, otherwise returns NULL.
*/
static procflow_t *
procflow_find(char *name, int instance)
{
procflow_t *procflow;
(void)ipc_mutex_lock(&filebench_shm->shm_procflow_lock);
procflow = filebench_shm->shm_procflowlist;
while (procflow) {
if ((strcmp(name, procflow->pf_name) == 0) &&
(instance == procflow->pf_instance)) {
(void)ipc_mutex_unlock(&filebench_shm->shm_procflow_lock);
return (procflow);
}
procflow = procflow->pf_next;
}
(void)ipc_mutex_unlock(&filebench_shm->shm_procflow_lock);
return (NULL);
}
/*
* Used to start up threads on a child process, when filebench is
* compiled to support multiple processes. Uses the name string
* and instance number passed to the child to find the previously
* created procflow entity. Then uses nice() to reduce the
* process' priority by at least 10. A call is then made to
* threadflow_init() which creates and runs the process' threads
* and flowops to completion. When threadflow_init() returns,
* a call to exit() terminates the child process.
*/
int
procflow_exec(char *name, int instance)
{
procflow_t *procflow;
int proc_nice;
#ifdef HAVE_SETRLIMIT
struct rlimit rlp;
#endif
int ret;
if ((procflow = procflow_find(name, instance)) == NULL) {
filebench_log(LOG_FATAL,
"procflow_exec could not find %s-%d",
name, instance);
return (-1);
}
/* set the slave process' procflow pointer */
my_procflow = procflow;
/* set its pid from value stored by main() */
procflow->pf_pid = my_pid;
filebench_log(LOG_DEBUG_IMPL,
"Started up %s pid %d", procflow->pf_name, my_pid);
filebench_log(LOG_DEBUG_IMPL,
"nice = %llx", procflow->pf_nice);
proc_nice = avd_get_int(procflow->pf_nice);
if (proc_nice)
filebench_log(LOG_DEBUG_IMPL, "Setting pri of %s-%d to %d",
name, instance, nice(proc_nice));
procflow->pf_running = 1;
#ifdef HAVE_SETRLIMIT
/* Get resource limits */
(void) getrlimit(RLIMIT_NOFILE, &rlp);
filebench_log(LOG_DEBUG_SCRIPT, "%d file descriptors", rlp.rlim_cur);
#endif
if ((ret = threadflow_init(procflow)) != FILEBENCH_OK) {
if (ret < 0) {
filebench_log(LOG_ERROR,
"Failed to start threads for %s pid %d",
procflow->pf_name, my_pid);
}
} else {
filebench_log(LOG_DEBUG_IMPL,
"procflow_createproc exiting...");
}
(void) ipc_mutex_lock(&filebench_shm->shm_procs_running_lock);
filebench_shm->shm_procs_running --;
(void) ipc_mutex_unlock(&filebench_shm->shm_procs_running_lock);
procflow->pf_running = 0;
return (ret);
}
/*
* A special thread from which worker (child) processes are created, and which
* then waits for worker processes to die. If they die unexpectedly,
* then report an error and terminate the run.
*/
static void *
procflow_createnwait(void *unused)
{
/* XXX: do not disregard potential error return!!! */
procflow_create_all_procs();
/*
* After procflow_create_all_procs returns, we can be sure
* that all procflows and threadflows were defined and put into
* the corresponding lists. So, we can allow main thread to
* continue. It will iterate over the procflow/threadflow lists
* to ensure that all processes and threads have been started.
*/
set_flag(&filebench_shm->shm_procflows_defined_flag);
/* CONSTCOND */
while (1) {
/* wait for any child process to exit */
#ifdef HAVE_WAITID
siginfo_t status;
if (waitid(P_ALL, 0, &status, WEXITED) != 0)
#else /* HAVE_WAITID */
int status;
if (waitpid(-1, &status, 0) < 0)
#endif
pthread_exit(0);
(void) ipc_mutex_lock(&filebench_shm->shm_procflow_lock);
/* if normal shutdown in progress, just quit */
if (filebench_shm->shm_f_abort) {
(void) ipc_mutex_unlock(
&filebench_shm->shm_procflow_lock);
pthread_exit(0);
}
/* if nothing running, exit */
if (filebench_shm->shm_procs_running == 0) {
filebench_shm->shm_f_abort = FILEBENCH_ABORT_RSRC;
(void) ipc_mutex_unlock(
&filebench_shm->shm_procflow_lock);
pthread_exit(0);
}
(void) ipc_mutex_unlock(&filebench_shm->shm_procflow_lock);
#ifdef HAVE_WAITID
if (status.si_code == CLD_EXITED) {
/* A process called exit(); check returned status */
if (status.si_status != 0) {
filebench_log(LOG_ERROR,
"Unexpected Process termination; exiting",
status.si_status);
filebench_shutdown(1);
}
} else {
/* A process quit because of some fatal error */
filebench_log(LOG_ERROR,
"Unexpected Process termination Code %d, Errno %d",
status.si_code, status.si_errno);
filebench_shutdown(1);
}
#else /* HAVE_WAITID */
/* child did not exit, but got a signal, so just continue waiting */
if (WIFSTOPPED(status) || WIFCONTINUED(status))
continue;
if (WIFEXITED(status)) {
/* A process called exit(); check returned status */
if (WEXITSTATUS(status) != 0) {
filebench_log(LOG_ERROR,
"Unexpected Process termination; exiting",
WEXITSTATUS(status));
filebench_shutdown(1);
}
} else {
/* A process quit because of some fatal error */
filebench_log(LOG_ERROR,
"Unexpected Process termination Code %d",
WTERMSIG(status));
filebench_shutdown(1);
}
#endif
}
/* NOTREACHED */
return (NULL);
}
/*
* Cancel all threads within a processes, as well as the process itself.
* Called by ^c or by sig_kill
*/
/* ARGSUSED */
static void
procflow_cancel(int arg1)
{
filebench_log(LOG_DEBUG_IMPL, "Process signal handler on pid %",
my_procflow->pf_pid);
procflow_sleep(my_procflow, SHUTDOWN_WAIT_SECONDS);
threadflow_delete_all(&my_procflow->pf_threads);
/* quit the main procflow thread and hence the process */
exit(0);
}
/*
* Creates a process creator thread and waits until
* it defines all the procflows (and threadflows in turn).
*/
static int
procflow_init(void)
{
procflow_t *procflow;
pthread_t tid;
int ret = 0;
procflow = filebench_shm->shm_procflowlist;
if (!procflow) {
filebench_log(LOG_ERROR, "Workload has no processes");
return (FILEBENCH_ERROR);
}
filebench_log(LOG_DEBUG_IMPL,
"procflow_init %s, %llu",
procflow->pf_name,
(u_longlong_t)avd_get_int(procflow->pf_instances));
/*
* This (main) process clears the shm_procflows_defined_flag here.
* Later, procflow creator thread will set this flag only after all procflows
* and threadflows are defined and put into the corresponding lists.
*/
clear_flag(&filebench_shm->shm_procflows_defined_flag);
ret = pthread_create(&tid, NULL, procflow_createnwait, NULL);
if (ret)
return ret;
(void) signal(SIGUSR1, procflow_cancel);
/*
* Wait for the process creator thread to define
* all procflows (and threadflows in turn).
*/
wait_flag(&filebench_shm->shm_procflows_defined_flag);
return (ret);
}
/*
* Waits for child processes to finish and returns their exit status. Used by
* procflow_delete() to wait for a deleted process to exit.
*/
static void
procflow_wait(pid_t pid)
{
pid_t wpid;
int stat;
(void) waitpid(pid, &stat, 0);
while ((wpid = waitpid(getpid() * -1, &stat, WNOHANG)) > 0)
filebench_log(LOG_DEBUG_IMPL, "Waited for pid %d", (int)wpid);
}
/*
* Common routine to sleep for wait_cnt seconds or for pf_running to
* go false. Checks once a second to see if pf_running has gone false.
*/
static void
procflow_sleep(procflow_t *procflow, int wait_cnt)
{
while (procflow->pf_running & wait_cnt) {
(void) sleep(1);
wait_cnt--;
}
}
/*
* Deletes the designated procflow. Finally it frees the
* procflow entity. filebench_shm->shm_procflow_lock must be held on entry.
*
* If the designated procflow is not found on the list it returns -1 and
* the procflow is not deleted. Otherwise it returns 0.
*/
static int
procflow_cleanup(procflow_t *procflow)
{
procflow_t *entry;
filebench_log(LOG_DEBUG_SCRIPT,
"Deleted proc: (%s-%d) pid %d",
procflow->pf_name,
procflow->pf_instance,
procflow->pf_pid);
procflow->pf_running = 0;
/* remove entry from proclist */
entry = filebench_shm->shm_procflowlist;
/* unlink procflow entity from proclist */
if (entry == procflow) {
/* at head of list */
filebench_shm->shm_procflowlist = procflow->pf_next;
} else {
/* search list for procflow */
while (entry && entry->pf_next != procflow)
entry = entry->pf_next;
/* if entity found, unlink it */
if (entry == NULL)
return (-1);
else
entry->pf_next = procflow->pf_next;
}
/* free up the procflow entity */
ipc_free(FILEBENCH_PROCFLOW, (char *)procflow);
return (0);
}
/*
* Waits till all threadflows are started, or a timeout occurs.
* Checks through the list of procflows, waiting up to 30
* seconds for each one to set its pf_running flag to 1. If not
* set after 30 seconds, continues on to the next procflow
* anyway after logging the fact. Once pf_running is set
* to 1 for a given procflow or the timeout is reached,
* threadflow_allstarted() is called to start the threads.
* Returns 0 (OK), unless filebench_shm->shm_f_abort is signaled,
* in which case it returns -1.
*/
static int
procflow_allstarted()
{
procflow_t *procflow = filebench_shm->shm_procflowlist;
int running_procs = 0;
int ret = 0;
(void) ipc_mutex_lock(&filebench_shm->shm_procflow_lock);
(void) sleep(1);
while (procflow) {
int waits;
if (procflow->pf_instance &&
(procflow->pf_instance == FLOW_MASTER)) {
procflow = procflow->pf_next;
continue;
}
waits = 10;
while (waits && procflow->pf_running == 0) {
(void) ipc_mutex_unlock(
&filebench_shm->shm_procflow_lock);
if (filebench_shm->shm_f_abort == 1)
return (-1);
if (waits < 3)
filebench_log(LOG_INFO,
"Waiting for process %s-%d %d",
procflow->pf_name,
procflow->pf_instance,
procflow->pf_pid);
(void) sleep(3);
waits--;
(void) ipc_mutex_lock(
&filebench_shm->shm_procflow_lock);
}
if (waits == 0)
filebench_log(LOG_INFO,
"Failed to start process %s-%d",
procflow->pf_name,
procflow->pf_instance);
running_procs++;
threadflow_allstarted(procflow->pf_pid, procflow->pf_threads);
procflow = procflow->pf_next;
}
(void) ipc_mutex_lock(&filebench_shm->shm_procs_running_lock);
filebench_shm->shm_procs_running = running_procs;
(void) ipc_mutex_unlock(&filebench_shm->shm_procs_running_lock);
(void) ipc_mutex_unlock(&filebench_shm->shm_procflow_lock);
return (ret);
}
/*
* Sets the f_abort flag and clears the running count to stop
* all the flowop execution threads from running. Iterates
* through the procflow list and deletes all procflows except
* for the FLOW_MASTER procflow. Resets the f_abort flag when
* finished.
*
*/
void
procflow_shutdown(void)
{
procflow_t *procflow, *next_procflow;
int wait_cnt = SHUTDOWN_WAIT_SECONDS;
(void) ipc_mutex_lock(&filebench_shm->shm_procs_running_lock);
if (filebench_shm->shm_procs_running <= 0) {
/* No processes running, so no need to do anything */
(void) ipc_mutex_unlock(&filebench_shm->shm_procs_running_lock);
return;
}
(void) ipc_mutex_unlock(&filebench_shm->shm_procs_running_lock);
(void) ipc_mutex_lock(&filebench_shm->shm_procflow_lock);
if (filebench_shm->shm_f_abort == FILEBENCH_ABORT_FINI) {
(void) ipc_mutex_unlock(
&filebench_shm->shm_procflow_lock);
return;
}
procflow = filebench_shm->shm_procflowlist;
if (filebench_shm->shm_f_abort == FILEBENCH_OK)
filebench_shm->shm_f_abort = FILEBENCH_ABORT_DONE;
while (procflow) {
if (procflow->pf_instance &&
(procflow->pf_instance == FLOW_MASTER)) {
procflow = procflow->pf_next;
continue;
}
filebench_log(LOG_DEBUG_IMPL, "Deleting process %s-%d %d",
procflow->pf_name,
procflow->pf_instance,
procflow->pf_pid);
next_procflow = procflow->pf_next;
/*
* Signalling the process with SIGUSR1 will result in it
* gracefully shutting down and exiting
*/
procflow_sleep(procflow, wait_cnt);
if (procflow->pf_running) {
pid_t pid;
pid = procflow->pf_pid;
#ifdef HAVE_SIGSEND
(void) sigsend(P_PID, pid, SIGUSR1);
#else
(void) kill(pid, SIGUSR1);
#endif
procflow_wait(pid);
}
(void) procflow_cleanup(procflow);
procflow = next_procflow;
if (wait_cnt > 0)
wait_cnt--;
}
filebench_shm->shm_f_abort = FILEBENCH_ABORT_FINI;
(void) ipc_mutex_unlock(&filebench_shm->shm_procflow_lock);
/* indicate all processes are stopped, even if some are "stuck" */
(void) ipc_mutex_lock(&filebench_shm->shm_procs_running_lock);
filebench_shm->shm_procs_running = 0;
(void) ipc_mutex_unlock(&filebench_shm->shm_procs_running_lock);
}
/*
* Create an in-memory process object. Allocates a procflow
* entity, initialized from the "inherit" procflow if supplied.
* The name and instance number are set from the supplied name
* and instance number and the procflow is added to the head of
* the master procflow list. Returns pointer to the allocated
* procflow, or NULL if a name isn't supplied or the procflow
* entity cannot be allocated.
*
* The calling routine must hold the filebench_shm->shm_procflow_lock.
*/
static procflow_t *
procflow_define_common(procflow_t **list, char *name,
procflow_t *inherit, int instance)
{
procflow_t *procflow;
if (name == NULL)
return (NULL);
procflow = (procflow_t *)ipc_malloc(FILEBENCH_PROCFLOW);
if (procflow == NULL)
return (NULL);
if (inherit)
(void) memcpy(procflow, inherit, sizeof (procflow_t));
else
(void) memset(procflow, 0, sizeof (procflow_t));
procflow->pf_instance = instance;
(void) strcpy(procflow->pf_name, name);
filebench_log(LOG_DEBUG_IMPL, "defining process %s-%d", name, instance);
/* Add procflow to list, lock is being held already */
if (*list == NULL) {
*list = procflow;
procflow->pf_next = NULL;
} else {
procflow->pf_next = *list;
*list = procflow;
}
filebench_log(LOG_DEBUG_IMPL, "process %s-%d proclist %zx",
name, instance, filebench_shm->shm_procflowlist);
return (procflow);
}
/*
* Create an in-memory process object as described by the syntax.
* Acquires the filebench_shm->shm_procflow_lock and calls
* procflow_define_common() to create and initialize a
* FLOW_MASTER procflow entity from the optional "inherit"
* procflow with the given name and configured for "instances"
* number of worker procflows. Currently only called from
* parser_proc_define().
*/
procflow_t *
procflow_define(char *name, avd_t instances)
{
procflow_t *procflow;
(void) ipc_mutex_lock(&filebench_shm->shm_procflow_lock);
procflow = procflow_define_common(&filebench_shm->shm_procflowlist,
name, NULL, FLOW_MASTER);
procflow->pf_instances = instances;
(void) ipc_mutex_unlock(&filebench_shm->shm_procflow_lock);
return (procflow);
}
/*
* Creates and starts all defined procflow processes. The call to
* procflow_init() results in creation of the requested number of
* process instances for each previously defined procflow. The
* child processes exec() a new instance of filebench, passing it
* the instance number and address of the shared memory region.
* The child processes will then create their threads and flowops.
* The routine then unlocks the run_lock to allow all the processes'
* threads to start and waits for all of them to begin execution.
* Finally, it records the start time and resets the event generation
* system.
*/
void
proc_create()
{
filebench_shm->shm_1st_err = 0;
filebench_shm->shm_f_abort = FILEBENCH_OK;
(void) pthread_rwlock_rdlock(&filebench_shm->shm_run_lock);
if (procflow_init() != 0) {
filebench_log(LOG_ERROR, "Failed to create processes\n");
filebench_shutdown(1);
}
/* Wait for all threads to start */
if (procflow_allstarted() != 0) {
filebench_log(LOG_ERROR, "Could not start run");
return;
}
/*
* Make sure we create the shared memory before we wake up worker
* processes, which will alloc memory from this shm.
*/
if (filebench_shm->shm_required &&
(ipc_ismcreate(filebench_shm->shm_required) < 0)) {
filebench_log(LOG_ERROR, "Could not allocate shared memory");
return;
}
/* Release the read lock, allowing threads to start */
(void) pthread_rwlock_unlock(&filebench_shm->shm_run_lock);
filebench_shm->shm_starttime = gethrtime();
eventgen_reset();
}
/*
* Shuts down all processes and their associated threads. When finished
* it deletes interprocess shared memory and resets the event generator.
* It does not exit the filebench program though.
*/
void
proc_shutdown()
{
filebench_log(LOG_INFO, "Shutting down processes");
procflow_shutdown();
if (filebench_shm->shm_required)
ipc_ismdelete();
eventgen_reset();
}