2016-11-25 17:18:40 +01:00
|
|
|
/*
|
|
|
|
* This file is part of Jehanne.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 Giacomo Tesio <giacomo@tesio.it>
|
|
|
|
*
|
|
|
|
* Jehanne is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, version 2 of the License.
|
|
|
|
*
|
|
|
|
* Jehanne is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Jehanne. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include <u.h>
|
2017-04-19 23:33:14 +02:00
|
|
|
#include <lib9.h>
|
2016-11-25 17:18:40 +01:00
|
|
|
|
|
|
|
/* verify that lockt returns 1 if the lock is released and
|
|
|
|
* it can take it
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define NPROC 50
|
|
|
|
QLock afterAWhile; /* held for a while by main, then waiters will take it */
|
|
|
|
|
|
|
|
int killerProc; /* pid, will kill the other processes if starved */
|
|
|
|
|
|
|
|
int elapsed[NPROC];
|
|
|
|
int32_t completed;
|
|
|
|
QLock rl;
|
|
|
|
Rendez rStart;
|
|
|
|
Rendez rCompleted;
|
|
|
|
|
|
|
|
int verbose = 0;
|
|
|
|
|
|
|
|
void
|
|
|
|
killKiller(void)
|
|
|
|
{
|
|
|
|
postnote(PNPROC, killerProc, "interrupt");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
stopAllAfter(int seconds)
|
|
|
|
{
|
|
|
|
int pid;
|
|
|
|
|
2019-11-28 02:35:52 +01:00
|
|
|
switch((pid = sys_rfork(RFMEM|RFPROC|RFNOWAIT)))
|
2016-11-25 17:18:40 +01:00
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
if(verbose)
|
|
|
|
print("killer proc started: pid %d\n", getpid());
|
|
|
|
sleep(seconds * 1000);
|
|
|
|
postnote(PNGROUP, killerProc, "timedout");
|
|
|
|
if(verbose)
|
|
|
|
print("killer proc timedout: pid %d\n", getpid());
|
|
|
|
exits("FAIL");
|
|
|
|
case -1:
|
|
|
|
fprint(2, "%r\n");
|
2019-11-28 02:35:52 +01:00
|
|
|
exits("sys_rfork fails");
|
2016-11-25 17:18:40 +01:00
|
|
|
default:
|
|
|
|
killerProc = pid;
|
|
|
|
atexit(killKiller);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
handletimeout(void *v, char *s)
|
|
|
|
{
|
|
|
|
/* just not exit, please */
|
|
|
|
if(strcmp(s, "timedout") == 0){
|
|
|
|
if(verbose)
|
|
|
|
print("%d: noted: %s\n", getpid(), s);
|
|
|
|
exits("FAIL");
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
handlefail(void *v, char *s)
|
|
|
|
{
|
|
|
|
/* just not exit, please */
|
|
|
|
if(strncmp(s, "fail", 4) == 0){
|
|
|
|
if(verbose)
|
|
|
|
print("%d: noted: %s\n", getpid(), s);
|
|
|
|
print("FAIL");
|
|
|
|
exits("FAIL");
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
waiter(int index)
|
|
|
|
{
|
|
|
|
int64_t start, end;
|
|
|
|
|
|
|
|
/* wait for the afterAWhile to be locked by the main process */
|
|
|
|
qlock(&rl);
|
|
|
|
while(afterAWhile.locked == 0)
|
|
|
|
rsleep(&rStart);
|
|
|
|
qunlock(&rl);
|
|
|
|
|
|
|
|
/* try to lock for ~10 s, but it will be available after ~1s */
|
|
|
|
start = nsec();
|
|
|
|
end = start;
|
|
|
|
if(verbose)
|
|
|
|
print("waiter %d: started\n", getpid());
|
|
|
|
if(qlockt(&afterAWhile, 10000)){
|
|
|
|
end = nsec();
|
|
|
|
if(verbose)
|
|
|
|
print("waiter %d: got the qlock in %lld ms\n", getpid(), (end - start) / (1000*1000));
|
|
|
|
qunlock(&afterAWhile);
|
2020-02-17 01:07:15 +01:00
|
|
|
if((end - start) / (1000*1000) > 3000)
|
2016-11-25 17:18:40 +01:00
|
|
|
postnote(PNGROUP, getpid(), smprint("fail: waiter %d got the qlock after %lld ms", getpid(), (end - start) / (1000*1000)));
|
|
|
|
} else {
|
|
|
|
if(verbose)
|
|
|
|
print("waiter %d failed: qlockt timedout in %lld ms\n", getpid(), (end - start) / (1000*1000));
|
|
|
|
postnote(PNGROUP, getpid(), smprint("fail: waiter %d got the qlock", getpid()));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* notify the main process that we have completed */
|
|
|
|
qlock(&rl);
|
|
|
|
elapsed[index] = end - start;
|
|
|
|
++completed;
|
|
|
|
rwakeup(&rCompleted);
|
|
|
|
qunlock(&rl);
|
|
|
|
|
|
|
|
return (end - start) / (1000*1000) < 1300 ? nil : "FAIL";
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
spawnWaiter(int index)
|
|
|
|
{
|
|
|
|
int pid;
|
|
|
|
char * res;
|
|
|
|
|
2019-11-28 02:35:52 +01:00
|
|
|
switch((pid = sys_rfork(RFMEM|RFPROC|RFNOWAIT)))
|
2016-11-25 17:18:40 +01:00
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
res = waiter(index);
|
|
|
|
exits(res);
|
|
|
|
break;
|
|
|
|
case -1:
|
|
|
|
print("spawnWaiter: %r\n");
|
2019-11-28 02:35:52 +01:00
|
|
|
exits("sys_rfork fails");
|
2016-11-25 17:18:40 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if(verbose)
|
|
|
|
print("spawn waiter %d\n", pid);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int64_t average, end;
|
|
|
|
|
2019-11-28 02:35:52 +01:00
|
|
|
sys_rfork(RFNOTEG|RFREND);
|
2016-11-25 17:18:40 +01:00
|
|
|
rStart.l = &rl;
|
|
|
|
rCompleted.l = &rl;
|
|
|
|
|
|
|
|
if(verbose)
|
|
|
|
print("main: started with pid %d\n", getpid());
|
|
|
|
|
|
|
|
for(i = 0; i < NPROC; ++i){
|
|
|
|
spawnWaiter(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
stopAllAfter(30);
|
|
|
|
|
|
|
|
if (!atnotify(handletimeout, 1)){
|
|
|
|
fprint(2, "%r\n");
|
|
|
|
exits("atnotify fails");
|
|
|
|
}
|
|
|
|
if (!atnotify(handlefail, 1)){
|
|
|
|
fprint(2, "%r\n");
|
|
|
|
exits("atnotify fails");
|
|
|
|
}
|
|
|
|
|
|
|
|
qlock(&rl);
|
|
|
|
qlock(&afterAWhile);
|
|
|
|
if(verbose)
|
|
|
|
print("main: got the afterAWhile: wakeup all waiters...\n");
|
|
|
|
rwakeupall(&rStart);
|
|
|
|
if(verbose)
|
|
|
|
print("main: got the afterAWhile: wakeup all waiters... done\n");
|
|
|
|
end = nsec() + 1000*1000*1000;
|
|
|
|
qunlock(&rl);
|
|
|
|
|
|
|
|
/* wait for ~1 sec */
|
|
|
|
do { sleep(100); } while(nsec() < end);
|
|
|
|
|
|
|
|
qunlock(&afterAWhile);
|
|
|
|
if(verbose)
|
|
|
|
print("main: released the afterAWhile\n");
|
|
|
|
|
|
|
|
qlock(&rl);
|
|
|
|
if(verbose)
|
|
|
|
print("main: waiting all waiters to timeout...\n");
|
|
|
|
while(completed < NPROC){
|
|
|
|
rsleep(&rCompleted);
|
|
|
|
if(verbose && completed < NPROC)
|
|
|
|
print("main: awaked, but %d waiters are still pending\n", NPROC - completed);
|
|
|
|
}
|
|
|
|
qunlock(&rl);
|
|
|
|
if(verbose)
|
|
|
|
print("main: waiting all waiters to timeout... done\n");
|
|
|
|
|
|
|
|
average = 0;
|
|
|
|
for(i = 0; i < NPROC; ++i){
|
|
|
|
average += elapsed[i];
|
|
|
|
}
|
|
|
|
average = average / NPROC / (1000 * 1000);
|
|
|
|
|
|
|
|
if(average > 900 && average < 5000)
|
|
|
|
{
|
|
|
|
print("PASS\n");
|
|
|
|
exits("PASS");
|
|
|
|
}
|
2017-08-11 02:01:55 +02:00
|
|
|
print("FAIL: %s: average timeout too long %lld ms\n", argv0, average);
|
2016-11-25 17:18:40 +01:00
|
|
|
exits("FAIL");
|
|
|
|
}
|