Пример #1
0
struct sprite *
sprite_test(struct sprite *s, struct srt *srt, int x, int y) {
	struct sprite *tmp = NULL;
	int testin = test_child(s, srt, NULL, x, y, &tmp);
	if (testin) {
		return tmp;
	}
	if (tmp) {
		return s;
	}
	return NULL;
}
Пример #2
0
static int test_clone(int (*child_func) (void))
{
    pid_t pid;
    int r;

    pid = b1_sys_clone(SIGCHLD | CLONE_NEWNS, NULL);
    assert(pid >= 0);

    if (pid == 0) {
        r = test_child(child_func);
        _exit(r);
    }

    pid = waitpid(pid, &r, 0);
    assert(pid > 0);
    assert(WIFEXITED(r));
    assert(WEXITSTATUS(r) == B1_TEST_OK || WEXITSTATUS(r) == B1_TEST_SKIP);

    return WEXITSTATUS(r);
}
Пример #3
0
static int
check_child(struct sprite *s, struct srt *srt, struct matrix * t, struct pack_frame * pf, int i, int x, int y, struct sprite ** touch) {
	struct pack_part *pp = &pf->part[i];
	int index = pp->component_id;
	struct sprite * child = s->data.children[index];
	if (child == NULL || !child->visible) {
		return 0;
	}
	struct matrix temp2;
	struct matrix *ct = mat_mul(pp->t.mat, t, &temp2);
	struct sprite *tmp = NULL;
	int testin = test_child(child, srt, ct, x, y, &tmp);
	if (testin) {
		// if child capture message, return it
		*touch = tmp;
		return 1;
	}
	if (tmp) {
		// if child not capture message, but grandson (tmp) capture it, mark it
		*touch = tmp;
	}
	return 0;
}
Пример #4
0
static int
do_test (int argc, char *argv[])
{
#ifdef SA_SIGINFO
    struct sigaction sa;
    sa.sa_flags = SA_SIGINFO|SA_RESTART;
    sa.sa_sigaction = &sigchld;
    if (sigemptyset (&sa.sa_mask) < 0 || sigaction (SIGCHLD, &sa, NULL) < 0)
    {
        printf ("setting SIGCHLD handler: %m\n");
        return EXIT_FAILURE;
    }
#endif

    expecting_sigchld = 1;

    pid_t pid = fork ();
    if (pid < 0)
    {
        printf ("fork: %m\n");
        return EXIT_FAILURE;
    }
    else if (pid == 0)
    {
        test_child ();
        _exit (127);
    }

    int status = EXIT_SUCCESS;
#define RETURN(ok) \
    do { if (status == EXIT_SUCCESS) status = (ok); goto out; } while (0)

    /* Give the child a chance to stop.  */
    sleep (3);

    CHECK_SIGCHLD ("stopped", CLD_STOPPED, SIGSTOP);

    /* Now try a wait that should not succeed.  */
    siginfo_t info;
    info.si_signo = 0;		/* A successful call sets it to SIGCHLD.  */
    int fail = waitid (P_PID, pid, &info, WEXITED|WCONTINUED|WNOHANG);
    switch (fail)
    {
    default:
        printf ("waitid returned bogus value %d\n", fail);
        RETURN (EXIT_FAILURE);
    case -1:
        printf ("waitid WNOHANG on stopped: %m\n");
        RETURN (errno == ENOTSUP ? EXIT_SUCCESS : EXIT_FAILURE);
    case 0:
        if (info.si_signo == 0)
            break;
        if (info.si_signo == SIGCHLD)
            printf ("waitid WNOHANG on stopped status %d\n", info.si_status);
        else
            printf ("waitid WNOHANG on stopped signal %d\n", info.si_signo);
        RETURN (EXIT_FAILURE);
    }

    /* Next the wait that should succeed right away.  */
    info.si_signo = 0;		/* A successful call sets it to SIGCHLD.  */
    info.si_pid = -1;
    info.si_status = -1;
    fail = waitid (P_PID, pid, &info, WSTOPPED|WNOHANG);
    switch (fail)
    {
    default:
        printf ("waitid WSTOPPED|WNOHANG returned bogus value %d\n", fail);
        RETURN (EXIT_FAILURE);
    case -1:
        printf ("waitid WSTOPPED|WNOHANG on stopped: %m\n");
        RETURN (errno == ENOTSUP ? EXIT_SUCCESS : EXIT_FAILURE);
    case 0:
        if (info.si_signo != SIGCHLD)
        {
            printf ("waitid WSTOPPED|WNOHANG on stopped signal %d\n",
                    info.si_signo);
            RETURN (EXIT_FAILURE);
        }
        if (info.si_code != CLD_STOPPED)
        {
            printf ("waitid WSTOPPED|WNOHANG on stopped code %d\n",
                    info.si_code);
            RETURN (EXIT_FAILURE);
        }
        if (info.si_status != SIGSTOP)
        {
            printf ("waitid WSTOPPED|WNOHANG on stopped status %d\n",
                    info.si_status);
            RETURN (EXIT_FAILURE);
        }
        if (info.si_pid != pid)
        {
            printf ("waitid WSTOPPED|WNOHANG on stopped pid %d != %d\n",
                    info.si_pid, pid);
            RETURN (EXIT_FAILURE);
        }
    }

    expecting_sigchld = WCONTINUED != 0;

    if (kill (pid, SIGCONT) != 0)
    {
        printf ("kill (%d, SIGCONT): %m\n", pid);
        RETURN (EXIT_FAILURE);
    }

    /* Wait for the child to have continued.  */
    sleep (2);

#if WCONTINUED != 0
    if (expecting_sigchld)
    {
        printf ("no SIGCHLD seen for SIGCONT (optional)\n");
        expecting_sigchld = 0;
    }
    else
        CHECK_SIGCHLD ("continued", CLD_CONTINUED, SIGCONT);

    info.si_signo = 0;		/* A successful call sets it to SIGCHLD.  */
    info.si_pid = -1;
    info.si_status = -1;
    fail = waitid (P_PID, pid, &info, WCONTINUED|WNOWAIT);
    switch (fail)
    {
    default:
        printf ("waitid WCONTINUED|WNOWAIT returned bogus value %d\n", fail);
        RETURN (EXIT_FAILURE);
    case -1:
        printf ("waitid WCONTINUED|WNOWAIT on continued: %m\n");
        RETURN (errno == ENOTSUP ? EXIT_SUCCESS : EXIT_FAILURE);
    case 0:
        if (info.si_signo != SIGCHLD)
        {
            printf ("waitid WCONTINUED|WNOWAIT on continued signal %d\n",
                    info.si_signo);
            RETURN (EXIT_FAILURE);
        }
        if (info.si_code != CLD_CONTINUED)
        {
            printf ("waitid WCONTINUED|WNOWAIT on continued code %d\n",
                    info.si_code);
            RETURN (EXIT_FAILURE);
        }
        if (info.si_status != SIGCONT)
        {
            printf ("waitid WCONTINUED|WNOWAIT on continued status %d\n",
                    info.si_status);
            RETURN (EXIT_FAILURE);
        }
        if (info.si_pid != pid)
        {
            printf ("waitid WCONTINUED|WNOWAIT on continued pid %d != %d\n",
                    info.si_pid, pid);
            RETURN (EXIT_FAILURE);
        }
    }

    /* That should leave the CLD_CONTINUED state waiting to be seen again.  */
    info.si_signo = 0;		/* A successful call sets it to SIGCHLD.  */
    info.si_pid = -1;
    info.si_status = -1;
    fail = waitid (P_PID, pid, &info, WCONTINUED);
    switch (fail)
    {
    default:
        printf ("waitid WCONTINUED returned bogus value %d\n", fail);
        RETURN (EXIT_FAILURE);
    case -1:
        printf ("waitid WCONTINUED on continued: %m\n");
        RETURN (errno == ENOTSUP ? EXIT_SUCCESS : EXIT_FAILURE);
    case 0:
        if (info.si_signo != SIGCHLD)
        {
            printf ("waitid WCONTINUED on continued signal %d\n", info.si_signo);
            RETURN (EXIT_FAILURE);
        }
        if (info.si_code != CLD_CONTINUED)
        {
            printf ("waitid WCONTINUED on continued code %d\n", info.si_code);
            RETURN (EXIT_FAILURE);
        }
        if (info.si_status != SIGCONT)
        {
            printf ("waitid WCONTINUED on continued status %d\n",
                    info.si_status);
            RETURN (EXIT_FAILURE);
        }
        if (info.si_pid != pid)
        {
            printf ("waitid WCONTINUED on continued pid %d != %d\n",
                    info.si_pid, pid);
            RETURN (EXIT_FAILURE);
        }
    }

    /* Now try a wait that should not succeed.  */
    info.si_signo = 0;		/* A successful call sets it to SIGCHLD.  */
    fail = waitid (P_PID, pid, &info, WCONTINUED|WNOHANG);
    switch (fail)
    {
    default:
        printf ("waitid returned bogus value %d\n", fail);
        RETURN (EXIT_FAILURE);
    case -1:
        printf ("waitid WCONTINUED|WNOHANG on waited continued: %m\n");
        RETURN (errno == ENOTSUP ? EXIT_SUCCESS : EXIT_FAILURE);
    case 0:
        if (info.si_signo == 0)
            break;
        if (info.si_signo == SIGCHLD)
            printf ("waitid WCONTINUED|WNOHANG on waited continued status %d\n",
                    info.si_status);
        else
            printf ("waitid WCONTINUED|WNOHANG on waited continued signal %d\n",
                    info.si_signo);
        RETURN (EXIT_FAILURE);
    }

    /* Now stop him again and test waitpid with WCONTINUED.  */
    expecting_sigchld = 1;
    if (kill (pid, SIGSTOP) != 0)
    {
        printf ("kill (%d, SIGSTOP): %m\n", pid);
        RETURN (EXIT_FAILURE);
    }
    pid_t wpid = waitpid (pid, &fail, WUNTRACED);
    if (wpid < 0)
    {
        printf ("waitpid WUNTRACED on stopped: %m\n");
        RETURN (EXIT_FAILURE);
    }
    else if (wpid != pid)
    {
        printf ("waitpid WUNTRACED on stopped returned %d != %d (status %x)\n",
                wpid, pid, fail);
        RETURN (EXIT_FAILURE);
    }
    else if (!WIFSTOPPED (fail) || WIFSIGNALED (fail) || WIFEXITED (fail)
             || WIFCONTINUED (fail) || WSTOPSIG (fail) != SIGSTOP)
    {
        printf ("waitpid WUNTRACED on stopped: status %x\n", fail);
        RETURN (EXIT_FAILURE);
    }
    CHECK_SIGCHLD ("stopped", CLD_STOPPED, SIGSTOP);

    expecting_sigchld = 1;
    if (kill (pid, SIGCONT) != 0)
    {
        printf ("kill (%d, SIGCONT): %m\n", pid);
        RETURN (EXIT_FAILURE);
    }

    /* Wait for the child to have continued.  */
    sleep (2);

    if (expecting_sigchld)
    {
        printf ("no SIGCHLD seen for SIGCONT (optional)\n");
        expecting_sigchld = 0;
    }
    else
        CHECK_SIGCHLD ("continued", CLD_CONTINUED, SIGCONT);

    wpid = waitpid (pid, &fail, WCONTINUED);
    if (wpid < 0)
    {
        if (errno == EINVAL)
            printf ("waitpid does not support WCONTINUED\n");
        else
        {
            printf ("waitpid WCONTINUED on continued: %m\n");
            RETURN (EXIT_FAILURE);
        }
    }
    else if (wpid != pid)
    {
        printf ("\
waitpid WCONTINUED on continued returned %d != %d (status %x)\n",
                wpid, pid, fail);
        RETURN (EXIT_FAILURE);
    }