To do so, a few dependencies have been imported: * external/bsd/lutok * external/mit/lua * external/public-domain/sqlite * external/public-domain/xz The Kyua framework is the new generation of ATF (Automated Test Framework), it is composed of: * external/bsd/atf * external/bsd/kyua-atf-compat * external/bsd/kyua-cli * external/bsd/kyua-tester * tests Kyua/ATF being written in C++, it depends on libstdc++ which is provided by GCC. As this is not part of the sources, Kyua is only compiled when the native GCC utils are installed. To install Kyua do the following: * In a cross-build enviromnent, add the following to the build.sh commandline: -V MKBINUTILS=yes -V MKGCCCMDS=yes WARNING: At this point the import is still experimental, and not supported on native builds (a.k.a make build). Change-Id: I26aee23c5bbd2d64adcb7c1beb98fe0d479d7ada
		
			
				
	
	
		
			342 lines
		
	
	
		
			7.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			342 lines
		
	
	
		
			7.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* $NetBSD: t_msgrcv.c,v 1.2 2011/11/11 05:06:01 jruoho Exp $ */
 | 
						|
 | 
						|
/*-
 | 
						|
 * Copyright (c) 2011 The NetBSD Foundation, Inc.
 | 
						|
 * All rights reserved.
 | 
						|
 *
 | 
						|
 * This code is derived from software contributed to The NetBSD Foundation
 | 
						|
 * by Jukka Ruohonen.
 | 
						|
 *
 | 
						|
 * Redistribution and use in source and binary forms, with or without
 | 
						|
 * modification, are permitted provided that the following conditions
 | 
						|
 * are met:
 | 
						|
 * 1. Redistributions of source code must retain the above copyright
 | 
						|
 *    notice, this list of conditions and the following disclaimer.
 | 
						|
 * 2. Redistributions in binary form must reproduce the above copyright
 | 
						|
 *    notice, this list of conditions and the following disclaimer in the
 | 
						|
 *    documentation and/or other materials provided with the distribution.
 | 
						|
 *
 | 
						|
 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
 | 
						|
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 | 
						|
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 | 
						|
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
 | 
						|
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 | 
						|
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 | 
						|
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 | 
						|
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 | 
						|
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 | 
						|
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 | 
						|
 * POSSIBILITY OF SUCH DAMAGE.
 | 
						|
 */
 | 
						|
#include <sys/cdefs.h>
 | 
						|
__RCSID("$NetBSD: t_msgrcv.c,v 1.2 2011/11/11 05:06:01 jruoho Exp $");
 | 
						|
 | 
						|
#include <sys/msg.h>
 | 
						|
#include <sys/stat.h>
 | 
						|
#include <sys/sysctl.h>
 | 
						|
#include <sys/wait.h>
 | 
						|
 | 
						|
#include <atf-c.h>
 | 
						|
#include <errno.h>
 | 
						|
#include <pwd.h>
 | 
						|
#include <signal.h>
 | 
						|
#include <stdio.h>
 | 
						|
#include <stdlib.h>
 | 
						|
#include <string.h>
 | 
						|
#include <sysexits.h>
 | 
						|
#include <time.h>
 | 
						|
#include <unistd.h>
 | 
						|
 | 
						|
#define MSG_KEY		1234
 | 
						|
#define MSG_MTYPE_1	0x41
 | 
						|
#define	MSG_MTYPE_2	0x42
 | 
						|
#define MSG_MTYPE_3	0x43
 | 
						|
 | 
						|
struct msg {
 | 
						|
	long		 mtype;
 | 
						|
	char		 buf[3];
 | 
						|
};
 | 
						|
 | 
						|
static void		clean(void);
 | 
						|
 | 
						|
static void
 | 
						|
clean(void)
 | 
						|
{
 | 
						|
	int id;
 | 
						|
 | 
						|
	if ((id = msgget(MSG_KEY, 0)) != -1)
 | 
						|
		(void)msgctl(id, IPC_RMID, 0);
 | 
						|
}
 | 
						|
 | 
						|
ATF_TC_WITH_CLEANUP(msgrcv_basic);
 | 
						|
ATF_TC_HEAD(msgrcv_basic, tc)
 | 
						|
{
 | 
						|
	atf_tc_set_md_var(tc, "descr", "A basic test of msgrcv(2)");
 | 
						|
}
 | 
						|
 | 
						|
ATF_TC_BODY(msgrcv_basic, tc)
 | 
						|
{
 | 
						|
	struct msg msg1 = { MSG_MTYPE_1, { 'a', 'b', 'c' } };
 | 
						|
	struct msg msg2 = { MSG_MTYPE_1, { 'x', 'y', 'z' } };
 | 
						|
	int id;
 | 
						|
 | 
						|
	id = msgget(MSG_KEY, IPC_CREAT | 0600);
 | 
						|
	ATF_REQUIRE(id != -1);
 | 
						|
 | 
						|
	(void)msgsnd(id, &msg1, sizeof(struct msg), IPC_NOWAIT);
 | 
						|
	(void)msgrcv(id, &msg2, sizeof(struct msg), MSG_MTYPE_1, IPC_NOWAIT);
 | 
						|
 | 
						|
	ATF_CHECK(msg1.buf[0] == msg2.buf[0]);
 | 
						|
	ATF_CHECK(msg1.buf[1] == msg2.buf[1]);
 | 
						|
	ATF_CHECK(msg1.buf[2] == msg2.buf[2]);
 | 
						|
 | 
						|
	ATF_REQUIRE(msgctl(id, IPC_RMID, 0) == 0);
 | 
						|
}
 | 
						|
 | 
						|
ATF_TC_CLEANUP(msgrcv_basic, tc)
 | 
						|
{
 | 
						|
	clean();
 | 
						|
}
 | 
						|
 | 
						|
ATF_TC_WITH_CLEANUP(msgrcv_block);
 | 
						|
ATF_TC_HEAD(msgrcv_block, tc)
 | 
						|
{
 | 
						|
	atf_tc_set_md_var(tc, "descr", "Test that msgrcv(2) blocks");
 | 
						|
}
 | 
						|
 | 
						|
ATF_TC_BODY(msgrcv_block, tc)
 | 
						|
{
 | 
						|
	struct msg msg = { MSG_MTYPE_1, { 'a', 'b', 'c' } };
 | 
						|
	int id, sta;
 | 
						|
	pid_t pid;
 | 
						|
 | 
						|
	id = msgget(MSG_KEY, IPC_CREAT | 0600);
 | 
						|
	ATF_REQUIRE(id != -1);
 | 
						|
 | 
						|
	pid = fork();
 | 
						|
	ATF_REQUIRE(pid >= 0);
 | 
						|
 | 
						|
	if (pid == 0) {
 | 
						|
 | 
						|
		if (msgrcv(id, &msg, sizeof(struct msg), MSG_MTYPE_1, 0) < 0)
 | 
						|
			_exit(EXIT_FAILURE);
 | 
						|
 | 
						|
		_exit(EXIT_SUCCESS);
 | 
						|
	}
 | 
						|
 | 
						|
	/*
 | 
						|
	 * Below msgsnd(2) should unblock the child,
 | 
						|
	 * and hence kill(2) should fail with ESRCH.
 | 
						|
	 */
 | 
						|
	(void)sleep(1);
 | 
						|
	(void)msgsnd(id, &msg, sizeof(struct msg), IPC_NOWAIT);
 | 
						|
	(void)sleep(1);
 | 
						|
	(void)kill(pid, SIGKILL);
 | 
						|
	(void)wait(&sta);
 | 
						|
 | 
						|
	if (WIFEXITED(sta) == 0 || WIFSIGNALED(sta) != 0)
 | 
						|
		atf_tc_fail("msgrcv(2) did not block");
 | 
						|
 | 
						|
	ATF_REQUIRE(msgctl(id, IPC_RMID, 0) == 0);
 | 
						|
}
 | 
						|
 | 
						|
ATF_TC_CLEANUP(msgrcv_block, tc)
 | 
						|
{
 | 
						|
	clean();
 | 
						|
}
 | 
						|
 | 
						|
ATF_TC_WITH_CLEANUP(msgrcv_err);
 | 
						|
ATF_TC_HEAD(msgrcv_err, tc)
 | 
						|
{
 | 
						|
	atf_tc_set_md_var(tc, "descr", "Test errors from msgrcv(2)");
 | 
						|
}
 | 
						|
 | 
						|
ATF_TC_BODY(msgrcv_err, tc)
 | 
						|
{
 | 
						|
	struct msg msg = { MSG_MTYPE_1, { 'a', 'b', 'c' } };
 | 
						|
	int id, r = 0;
 | 
						|
 | 
						|
	id = msgget(MSG_KEY, IPC_CREAT | 0600);
 | 
						|
	ATF_REQUIRE(id != -1);
 | 
						|
 | 
						|
	errno = 0;
 | 
						|
 | 
						|
	ATF_REQUIRE_ERRNO(ENOMSG, msgrcv(id, &msg,
 | 
						|
		sizeof(struct msg), MSG_MTYPE_1, IPC_NOWAIT) == -1);
 | 
						|
 | 
						|
	ATF_REQUIRE(msgsnd(id, &msg, sizeof(struct msg), IPC_NOWAIT) == 0);
 | 
						|
 | 
						|
	errno = 0;
 | 
						|
 | 
						|
	ATF_REQUIRE_ERRNO(EFAULT, msgrcv(id, (void *)-1,
 | 
						|
		sizeof(struct msg), MSG_MTYPE_1, IPC_NOWAIT) == -1);
 | 
						|
 | 
						|
	errno = 0;
 | 
						|
 | 
						|
	ATF_REQUIRE_ERRNO(EINVAL, msgrcv(-1, &msg,
 | 
						|
		sizeof(struct msg), MSG_MTYPE_1, IPC_NOWAIT) == -1);
 | 
						|
 | 
						|
	errno = 0;
 | 
						|
 | 
						|
	ATF_REQUIRE_ERRNO(EINVAL, msgrcv(-1, &msg,
 | 
						|
		SSIZE_MAX, MSG_MTYPE_1, IPC_NOWAIT) == -1);
 | 
						|
 | 
						|
	ATF_REQUIRE(msgsnd(id, &msg, sizeof(struct msg), IPC_NOWAIT) == 0);
 | 
						|
 | 
						|
	errno = 0;
 | 
						|
 | 
						|
	ATF_REQUIRE_ERRNO(E2BIG, msgrcv(id, &r,
 | 
						|
		sizeof(int), MSG_MTYPE_1, IPC_NOWAIT) == -1);
 | 
						|
 | 
						|
	ATF_REQUIRE(msgctl(id, IPC_RMID, 0) == 0);
 | 
						|
}
 | 
						|
 | 
						|
ATF_TC_CLEANUP(msgrcv_err, tc)
 | 
						|
{
 | 
						|
	clean();
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
ATF_TC_WITH_CLEANUP(msgrcv_mtype);
 | 
						|
ATF_TC_HEAD(msgrcv_mtype, tc)
 | 
						|
{
 | 
						|
	atf_tc_set_md_var(tc, "descr", "Test message types with msgrcv(2)");
 | 
						|
}
 | 
						|
 | 
						|
ATF_TC_BODY(msgrcv_mtype, tc)
 | 
						|
{
 | 
						|
	struct msg msg1 = { MSG_MTYPE_1, { 'a', 'b', 'c' } };
 | 
						|
	struct msg msg2 = { MSG_MTYPE_3, { 'x', 'y', 'z' } };
 | 
						|
	int id;
 | 
						|
 | 
						|
	id = msgget(MSG_KEY, IPC_CREAT | 0600);
 | 
						|
	ATF_REQUIRE(id != -1);
 | 
						|
 | 
						|
	(void)msgsnd(id, &msg1, sizeof(struct msg), IPC_NOWAIT);
 | 
						|
	(void)msgrcv(id, &msg2, sizeof(struct msg), MSG_MTYPE_2, IPC_NOWAIT);
 | 
						|
 | 
						|
	ATF_CHECK(msg1.buf[0] != msg2.buf[0]);	/* Different mtype. */
 | 
						|
	ATF_CHECK(msg1.buf[1] != msg2.buf[1]);
 | 
						|
	ATF_CHECK(msg1.buf[2] != msg2.buf[2]);
 | 
						|
 | 
						|
	(void)msgrcv(id, &msg2, sizeof(struct msg), MSG_MTYPE_1, IPC_NOWAIT);
 | 
						|
 | 
						|
	ATF_CHECK(msg1.buf[0] == msg2.buf[0]);	/* Same mtype. */
 | 
						|
	ATF_CHECK(msg1.buf[1] == msg2.buf[1]);
 | 
						|
	ATF_CHECK(msg1.buf[2] == msg2.buf[2]);
 | 
						|
 | 
						|
	ATF_REQUIRE(msgctl(id, IPC_RMID, 0) == 0);
 | 
						|
}
 | 
						|
 | 
						|
ATF_TC_CLEANUP(msgrcv_mtype, tc)
 | 
						|
{
 | 
						|
	clean();
 | 
						|
}
 | 
						|
 | 
						|
ATF_TC_WITH_CLEANUP(msgrcv_nonblock);
 | 
						|
ATF_TC_HEAD(msgrcv_nonblock, tc)
 | 
						|
{
 | 
						|
	atf_tc_set_md_var(tc, "descr", "Test msgrcv(2) with IPC_NOWAIT");
 | 
						|
	atf_tc_set_md_var(tc, "timeout", "10");
 | 
						|
}
 | 
						|
 | 
						|
ATF_TC_BODY(msgrcv_nonblock, tc)
 | 
						|
{
 | 
						|
	struct msg msg = { MSG_MTYPE_1, { 'a', 'b', 'c' } };
 | 
						|
	const ssize_t n = 10;
 | 
						|
	int id, sta;
 | 
						|
	ssize_t i;
 | 
						|
	pid_t pid;
 | 
						|
 | 
						|
	id = msgget(MSG_KEY, IPC_CREAT | 0600);
 | 
						|
	ATF_REQUIRE(id != -1);
 | 
						|
 | 
						|
	for (i = 0; i < n; i++) {
 | 
						|
 | 
						|
		ATF_REQUIRE(msgsnd(id, &msg,
 | 
						|
			sizeof(struct msg), IPC_NOWAIT) == 0);
 | 
						|
	}
 | 
						|
 | 
						|
	pid = fork();
 | 
						|
	ATF_REQUIRE(pid >= 0);
 | 
						|
 | 
						|
	if (pid == 0) {
 | 
						|
 | 
						|
		while (i != 0) {
 | 
						|
 | 
						|
			if (msgrcv(id, &msg, sizeof(struct msg),
 | 
						|
				MSG_MTYPE_1, IPC_NOWAIT) == -1)
 | 
						|
				_exit(EXIT_FAILURE);
 | 
						|
 | 
						|
			i--;
 | 
						|
		}
 | 
						|
 | 
						|
		_exit(EXIT_SUCCESS);
 | 
						|
	}
 | 
						|
 | 
						|
	(void)sleep(2);
 | 
						|
	(void)kill(pid, SIGKILL);
 | 
						|
	(void)wait(&sta);
 | 
						|
 | 
						|
	if (WIFSIGNALED(sta) != 0 || WTERMSIG(sta) == SIGKILL)
 | 
						|
		atf_tc_fail("msgrcv(2) blocked with IPC_NOWAIT");
 | 
						|
 | 
						|
	if (WIFEXITED(sta) == 0 && WEXITSTATUS(sta) != EXIT_SUCCESS)
 | 
						|
		atf_tc_fail("msgrcv(2) failed");
 | 
						|
 | 
						|
	ATF_REQUIRE(msgctl(id, IPC_RMID, 0) == 0);
 | 
						|
}
 | 
						|
 | 
						|
ATF_TC_CLEANUP(msgrcv_nonblock, tc)
 | 
						|
{
 | 
						|
	clean();
 | 
						|
}
 | 
						|
 | 
						|
ATF_TC_WITH_CLEANUP(msgrcv_truncate);
 | 
						|
ATF_TC_HEAD(msgrcv_truncate, tc)
 | 
						|
{
 | 
						|
	atf_tc_set_md_var(tc, "descr", "Test msgrcv(2) with MSG_NOERROR");
 | 
						|
}
 | 
						|
 | 
						|
ATF_TC_BODY(msgrcv_truncate, tc)
 | 
						|
{
 | 
						|
	struct msgsmall {
 | 
						|
		long		 mtype;
 | 
						|
		char		 buf[2];
 | 
						|
	};
 | 
						|
 | 
						|
	struct msg msg1 = { MSG_MTYPE_1, { 'a', 'b', 'c' } };
 | 
						|
	struct msgsmall msg2 = { MSG_MTYPE_1, { 'x', 'y' } };
 | 
						|
	int id;
 | 
						|
 | 
						|
	id = msgget(MSG_KEY, IPC_CREAT | 0600);
 | 
						|
	ATF_REQUIRE(id != -1);
 | 
						|
 | 
						|
	(void)msgsnd(id, &msg1, sizeof(struct msg), IPC_NOWAIT);
 | 
						|
	(void)msgrcv(id, &msg2, sizeof(struct msgsmall),
 | 
						|
	    MSG_MTYPE_1, IPC_NOWAIT | MSG_NOERROR);
 | 
						|
 | 
						|
	ATF_CHECK(msg1.buf[0] == msg2.buf[0]);
 | 
						|
	ATF_CHECK(msg1.buf[1] == msg2.buf[1]);
 | 
						|
 | 
						|
	ATF_REQUIRE(msgctl(id, IPC_RMID, 0) == 0);
 | 
						|
}
 | 
						|
 | 
						|
ATF_TC_CLEANUP(msgrcv_truncate, tc)
 | 
						|
{
 | 
						|
	clean();
 | 
						|
}
 | 
						|
 | 
						|
ATF_TP_ADD_TCS(tp)
 | 
						|
{
 | 
						|
 | 
						|
	ATF_TP_ADD_TC(tp, msgrcv_basic);
 | 
						|
	ATF_TP_ADD_TC(tp, msgrcv_block);
 | 
						|
	ATF_TP_ADD_TC(tp, msgrcv_err);
 | 
						|
	ATF_TP_ADD_TC(tp, msgrcv_mtype);
 | 
						|
	ATF_TP_ADD_TC(tp, msgrcv_nonblock);
 | 
						|
	ATF_TP_ADD_TC(tp, msgrcv_truncate);
 | 
						|
 | 
						|
	return atf_no_error();
 | 
						|
}
 |