Compare commits
38 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
14d819eff4 | ||
|
|
1cbe389879 | ||
|
|
0758f6254e | ||
|
|
db732a245c | ||
|
|
08f2840f7d | ||
|
|
521bdc6181 | ||
|
|
e7b6a3472b | ||
|
|
11756d96ef | ||
|
|
f185be06eb | ||
|
|
854bc85602 | ||
|
|
ab8fe0bbbf | ||
|
|
b87c06cbcb | ||
|
|
b939ca9370 | ||
|
|
ec202a1ca9 | ||
|
|
d4471df94e | ||
|
|
a6ac4acf40 | ||
|
|
8ff754c466 | ||
|
|
90dba00742 | ||
|
|
86ae1380e4 | ||
|
|
9bb48186e6 | ||
|
|
139123dc12 | ||
|
|
6602cf442c | ||
|
|
f148863586 | ||
|
|
ec375da27a | ||
|
|
c50e7c1029 | ||
|
|
5f4dbb2c71 | ||
|
|
328609269b | ||
|
|
056fdb2633 | ||
|
|
09d0a59e22 | ||
|
|
511555c8cb | ||
|
|
81699345cc | ||
|
|
130751ff66 | ||
|
|
f3d18eb9de | ||
|
|
249bda4aef | ||
|
|
aaa246f86f | ||
|
|
c52f7a5b49 | ||
|
|
90a34f54c9 | ||
|
|
bfb5080b71 |
@@ -1801,8 +1801,9 @@ SYSCALL_DECLARE(mmap)
|
|||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((flags & MAP_FIXED) && ((addr < region->user_start)
|
if (addr < region->user_start
|
||||||
|| (region->user_end <= addr))) {
|
|| region->user_end <= addr
|
||||||
|
|| len > (region->user_end - region->user_start)) {
|
||||||
ekprintf("sys_mmap(%lx,%lx,%x,%x,%x,%lx):ENOMEM\n",
|
ekprintf("sys_mmap(%lx,%lx,%x,%x,%x,%lx):ENOMEM\n",
|
||||||
addr0, len0, prot, flags0, fd, off0);
|
addr0, len0, prot, flags0, fd, off0);
|
||||||
error = -ENOMEM;
|
error = -ENOMEM;
|
||||||
|
|||||||
@@ -134,6 +134,8 @@ typedef struct mcs_lock_node {
|
|||||||
unsigned long irqsave;
|
unsigned long irqsave;
|
||||||
} __attribute__((aligned(64))) mcs_lock_node_t;
|
} __attribute__((aligned(64))) mcs_lock_node_t;
|
||||||
|
|
||||||
|
typedef mcs_lock_node_t mcs_lock_t;
|
||||||
|
|
||||||
static void mcs_lock_init(struct mcs_lock_node *node)
|
static void mcs_lock_init(struct mcs_lock_node *node)
|
||||||
{
|
{
|
||||||
node->locked = 0;
|
node->locked = 0;
|
||||||
|
|||||||
@@ -1570,8 +1570,9 @@ SYSCALL_DECLARE(mmap)
|
|||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((flags & MAP_FIXED) && ((addr < region->user_start)
|
if (addr < region->user_start
|
||||||
|| (region->user_end <= addr))) {
|
|| region->user_end <= addr
|
||||||
|
|| len > (region->user_end - region->user_start)) {
|
||||||
ekprintf("sys_mmap(%lx,%lx,%x,%x,%x,%lx):ENOMEM\n",
|
ekprintf("sys_mmap(%lx,%lx,%x,%x,%x,%lx):ENOMEM\n",
|
||||||
addr0, len0, prot, flags0, fd, off0);
|
addr0, len0, prot, flags0, fd, off0);
|
||||||
error = -ENOMEM;
|
error = -ENOMEM;
|
||||||
|
|||||||
@@ -43,7 +43,8 @@ error_exit() {
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
exit 1
|
# Retun -EINVAL
|
||||||
|
exit -22
|
||||||
}
|
}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -144,3 +145,5 @@ for cpuid in `find /sys/bus/cpu/devices/* -maxdepth 0 -name "cpu[0123456789]*" -
|
|||||||
rm -rf /tmp/mcos/mcos0_sys/bus/cpu/devices/$cpuid
|
rm -rf /tmp/mcos/mcos0_sys/bus/cpu/devices/$cpuid
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
|||||||
@@ -8,6 +8,9 @@ if grep mcoverlay /proc/modules &>/dev/null; then
|
|||||||
if [ -e /tmp/mcos ]; then rm -rf /tmp/mcos; fi
|
if [ -e /tmp/mcos ]; then rm -rf /tmp/mcos; fi
|
||||||
if ! rmmod mcoverlay 2>/dev/null; then
|
if ! rmmod mcoverlay 2>/dev/null; then
|
||||||
echo "error: removing mcoverlay" >&2
|
echo "error: removing mcoverlay" >&2
|
||||||
exit 1
|
# Return -EINVAL
|
||||||
|
exit -22
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
# the same set of resources as it used previously.
|
# the same set of resources as it used previously.
|
||||||
# Note that the script does not output anything unless an error occurs.
|
# Note that the script does not output anything unless an error occurs.
|
||||||
|
|
||||||
|
ret=1
|
||||||
prefix="@prefix@"
|
prefix="@prefix@"
|
||||||
BINDIR="${prefix}/bin"
|
BINDIR="${prefix}/bin"
|
||||||
SBINDIR="${prefix}/sbin"
|
SBINDIR="${prefix}/sbin"
|
||||||
@@ -90,6 +91,16 @@ fi
|
|||||||
if [ "${redirect_kmsg}" != "0" -o "${mon_interval}" != "-1" ]; then
|
if [ "${redirect_kmsg}" != "0" -o "${mon_interval}" != "-1" ]; then
|
||||||
${SBINDIR}/ihkmond -f ${facility} -k ${redirect_kmsg} -i ${mon_interval}
|
${SBINDIR}/ihkmond -f ${facility} -k ${redirect_kmsg} -i ${mon_interval}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
disable_irqbalance_mck() {
|
||||||
|
if [ -f /etc/systemd/system/irqbalance_mck.service ]; then
|
||||||
|
systemctl disable irqbalance_mck.service >/dev/null 2>/dev/null
|
||||||
|
|
||||||
|
# Invalid .service file persists so remove it
|
||||||
|
rm -f /etc/systemd/system/irqbalance_mck.service
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
# Revert any state that has been initialized before the error occured.
|
# Revert any state that has been initialized before the error occured.
|
||||||
#
|
#
|
||||||
@@ -103,9 +114,7 @@ error_exit() {
|
|||||||
if ! systemctl stop irqbalance_mck.service 2>/dev/null; then
|
if ! systemctl stop irqbalance_mck.service 2>/dev/null; then
|
||||||
echo "warning: failed to stop irqbalance_mck" >&2
|
echo "warning: failed to stop irqbalance_mck" >&2
|
||||||
fi
|
fi
|
||||||
if ! systemctl disable irqbalance_mck.service >/dev/null 2>/dev/null; then
|
disable_irqbalance_mck
|
||||||
echo "warning: failed to disable irqbalance_mck" >&2
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
;&
|
;&
|
||||||
@@ -196,7 +205,8 @@ error_exit() {
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
exit 1
|
# Propagate exit status if any
|
||||||
|
exit $ret
|
||||||
}
|
}
|
||||||
|
|
||||||
ihk_ikc_irq_core=0
|
ihk_ikc_irq_core=0
|
||||||
@@ -247,7 +257,11 @@ fi
|
|||||||
|
|
||||||
# Remove mcoverlay if loaded
|
# Remove mcoverlay if loaded
|
||||||
if [ "$enable_mcoverlay" == "yes" ]; then
|
if [ "$enable_mcoverlay" == "yes" ]; then
|
||||||
. ${SBINDIR}/mcoverlay-destroy.sh
|
${SBINDIR}/mcoverlay-destroy.sh
|
||||||
|
ret=$?
|
||||||
|
if [ $ret -ne 0 ]; then
|
||||||
|
error_exit "initial"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Stop irqbalance
|
# Stop irqbalance
|
||||||
@@ -450,7 +464,11 @@ fi
|
|||||||
|
|
||||||
# Overlay /proc, /sys with McKernel specific contents
|
# Overlay /proc, /sys with McKernel specific contents
|
||||||
if [ "$enable_mcoverlay" == "yes" ]; then
|
if [ "$enable_mcoverlay" == "yes" ]; then
|
||||||
. ${SBINDIR}/mcoverlay-create.sh
|
${SBINDIR}/mcoverlay-create.sh
|
||||||
|
ret=$?
|
||||||
|
if [ $ret -ne 0 ]; then
|
||||||
|
error_exit "os_created"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Start irqbalance with CPUs and IRQ for McKernel banned
|
# Start irqbalance with CPUs and IRQ for McKernel banned
|
||||||
@@ -458,7 +476,9 @@ if [ "${irqbalance_used}" == "yes" ]; then
|
|||||||
banirq=`cat /proc/interrupts| perl -e 'while(<>) { if(/^\s*(\d+).*IHK\-SMP\s*$/) {print $1;}}'`
|
banirq=`cat /proc/interrupts| perl -e 'while(<>) { if(/^\s*(\d+).*IHK\-SMP\s*$/) {print $1;}}'`
|
||||||
|
|
||||||
sed "s/%mask%/$smp_affinity_mask/g" $ETCDIR/irqbalance_mck.in | sed "s/%banirq%/$banirq/g" > /tmp/irqbalance_mck
|
sed "s/%mask%/$smp_affinity_mask/g" $ETCDIR/irqbalance_mck.in | sed "s/%banirq%/$banirq/g" > /tmp/irqbalance_mck
|
||||||
systemctl disable irqbalance_mck.service >/dev/null 2>/dev/null
|
|
||||||
|
disable_irqbalance_mck
|
||||||
|
|
||||||
if ! systemctl link $ETCDIR/irqbalance_mck.service >/dev/null 2>/dev/null; then
|
if ! systemctl link $ETCDIR/irqbalance_mck.service >/dev/null 2>/dev/null; then
|
||||||
echo "error: linking irqbalance_mck" >&2
|
echo "error: linking irqbalance_mck" >&2
|
||||||
error_exit "mcos_sys_mounted"
|
error_exit "mcos_sys_mounted"
|
||||||
|
|||||||
@@ -18,6 +18,15 @@ mem=""
|
|||||||
cpus=""
|
cpus=""
|
||||||
irqbalance_used=""
|
irqbalance_used=""
|
||||||
|
|
||||||
|
disable_irqbalance_mck() {
|
||||||
|
if [ -f /etc/systemd/system/irqbalance_mck.service ]; then
|
||||||
|
systemctl disable irqbalance_mck.service >/dev/null 2>/dev/null
|
||||||
|
|
||||||
|
# Invalid .service file persists so remove it
|
||||||
|
rm -f /etc/systemd/system/irqbalance_mck.service
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
# No SMP module? Exit.
|
# No SMP module? Exit.
|
||||||
if ! grep ihk_smp_@ARCH@ /proc/modules &>/dev/null; then exit 0; fi
|
if ! grep ihk_smp_@ARCH@ /proc/modules &>/dev/null; then exit 0; fi
|
||||||
|
|
||||||
@@ -26,9 +35,7 @@ if [ "`systemctl status irqbalance_mck.service 2> /dev/null |grep -E 'Active: ac
|
|||||||
if ! systemctl stop irqbalance_mck.service 2>/dev/null; then
|
if ! systemctl stop irqbalance_mck.service 2>/dev/null; then
|
||||||
echo "warning: failed to stop irqbalance_mck" >&2
|
echo "warning: failed to stop irqbalance_mck" >&2
|
||||||
fi
|
fi
|
||||||
if ! systemctl disable irqbalance_mck.service >/dev/null 2>/dev/null; then
|
disable_irqbalance_mck
|
||||||
echo "warning: failed to disable irqbalance_mck" >&2
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Destroy all LWK instances
|
# Destroy all LWK instances
|
||||||
@@ -93,7 +100,13 @@ if grep mcctrl /proc/modules &>/dev/null; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Remove mcoverlay if loaded
|
# Remove mcoverlay if loaded
|
||||||
. ${SBINDIR}/mcoverlay-destroy.sh
|
${SBINDIR}/mcoverlay-destroy.sh
|
||||||
|
ret=$?
|
||||||
|
if [ $ret -ne 0 ]; then
|
||||||
|
echo "error: mcoverlay-destroy.sh" >&2
|
||||||
|
exit $ret
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Remove SMP module
|
# Remove SMP module
|
||||||
if grep ihk_smp_@ARCH@ /proc/modules &>/dev/null; then
|
if grep ihk_smp_@ARCH@ /proc/modules &>/dev/null; then
|
||||||
|
|||||||
36
configure
vendored
36
configure
vendored
@@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.69 for mckernel 1.5.0.
|
# Generated by GNU Autoconf 2.69 for mckernel 1.5.1.
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
|
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
|
||||||
@@ -577,8 +577,8 @@ MAKEFLAGS=
|
|||||||
# Identity of this package.
|
# Identity of this package.
|
||||||
PACKAGE_NAME='mckernel'
|
PACKAGE_NAME='mckernel'
|
||||||
PACKAGE_TARNAME='mckernel'
|
PACKAGE_TARNAME='mckernel'
|
||||||
PACKAGE_VERSION='1.5.0'
|
PACKAGE_VERSION='1.5.1'
|
||||||
PACKAGE_STRING='mckernel 1.5.0'
|
PACKAGE_STRING='mckernel 1.5.1'
|
||||||
PACKAGE_BUGREPORT=''
|
PACKAGE_BUGREPORT=''
|
||||||
PACKAGE_URL=''
|
PACKAGE_URL=''
|
||||||
|
|
||||||
@@ -1262,7 +1262,7 @@ if test "$ac_init_help" = "long"; then
|
|||||||
# Omit some internal or obsolete options to make the list less imposing.
|
# Omit some internal or obsolete options to make the list less imposing.
|
||||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||||
cat <<_ACEOF
|
cat <<_ACEOF
|
||||||
\`configure' configures mckernel 1.5.0 to adapt to many kinds of systems.
|
\`configure' configures mckernel 1.5.1 to adapt to many kinds of systems.
|
||||||
|
|
||||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||||
|
|
||||||
@@ -1323,7 +1323,7 @@ fi
|
|||||||
|
|
||||||
if test -n "$ac_init_help"; then
|
if test -n "$ac_init_help"; then
|
||||||
case $ac_init_help in
|
case $ac_init_help in
|
||||||
short | recursive ) echo "Configuration of mckernel 1.5.0:";;
|
short | recursive ) echo "Configuration of mckernel 1.5.1:";;
|
||||||
esac
|
esac
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
|
|
||||||
@@ -1431,7 +1431,7 @@ fi
|
|||||||
test -n "$ac_init_help" && exit $ac_status
|
test -n "$ac_init_help" && exit $ac_status
|
||||||
if $ac_init_version; then
|
if $ac_init_version; then
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
mckernel configure 1.5.0
|
mckernel configure 1.5.1
|
||||||
generated by GNU Autoconf 2.69
|
generated by GNU Autoconf 2.69
|
||||||
|
|
||||||
Copyright (C) 2012 Free Software Foundation, Inc.
|
Copyright (C) 2012 Free Software Foundation, Inc.
|
||||||
@@ -1729,7 +1729,7 @@ cat >config.log <<_ACEOF
|
|||||||
This file contains any messages produced by compilers while
|
This file contains any messages produced by compilers while
|
||||||
running configure, to aid debugging if configure makes a mistake.
|
running configure, to aid debugging if configure makes a mistake.
|
||||||
|
|
||||||
It was created by mckernel $as_me 1.5.0, which was
|
It was created by mckernel $as_me 1.5.1, which was
|
||||||
generated by GNU Autoconf 2.69. Invocation command line was
|
generated by GNU Autoconf 2.69. Invocation command line was
|
||||||
|
|
||||||
$ $0 $@
|
$ $0 $@
|
||||||
@@ -2082,11 +2082,11 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
IHK_VERSION=1.5.0
|
IHK_VERSION=1.5.1
|
||||||
MCKERNEL_VERSION=1.5.0
|
MCKERNEL_VERSION=1.5.1
|
||||||
DCFA_VERSION=DCFA_VERSION_m4
|
DCFA_VERSION=DCFA_VERSION_m4
|
||||||
IHK_RELEASE_DATE=2018-04-05
|
IHK_RELEASE_DATE=2018-07-09
|
||||||
MCKERNEL_RELEASE_DATE=2018-04-05
|
MCKERNEL_RELEASE_DATE=2018-07-09
|
||||||
DCFA_RELEASE_DATE=DCFA_RELEASE_DATE_m4
|
DCFA_RELEASE_DATE=DCFA_RELEASE_DATE_m4
|
||||||
|
|
||||||
|
|
||||||
@@ -4286,7 +4286,7 @@ case $WITH_TARGET in
|
|||||||
KMODDIR="$prefix/kmod"
|
KMODDIR="$prefix/kmod"
|
||||||
fi
|
fi
|
||||||
if test "X$MANDIR" = X; then
|
if test "X$MANDIR" = X; then
|
||||||
MANDIR="$prefix/man"
|
MANDIR="$prefix/share/man"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
builtin-mic)
|
builtin-mic)
|
||||||
@@ -4303,7 +4303,7 @@ case $WITH_TARGET in
|
|||||||
KMODDIR="$prefix/attached/kmod"
|
KMODDIR="$prefix/attached/kmod"
|
||||||
fi
|
fi
|
||||||
if test "X$MANDIR" = X; then
|
if test "X$MANDIR" = X; then
|
||||||
MANDIR="$prefix/attached/man"
|
MANDIR="$prefix/share/man"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
builtin-x86)
|
builtin-x86)
|
||||||
@@ -4320,7 +4320,7 @@ case $WITH_TARGET in
|
|||||||
KMODDIR="$prefix/kmod"
|
KMODDIR="$prefix/kmod"
|
||||||
fi
|
fi
|
||||||
if test "X$MANDIR" = X; then
|
if test "X$MANDIR" = X; then
|
||||||
MANDIR="$prefix/attached/man"
|
MANDIR="$prefix/share/man"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
smp-x86)
|
smp-x86)
|
||||||
@@ -4352,7 +4352,7 @@ case $WITH_TARGET in
|
|||||||
KMODDIR="$prefix/kmod"
|
KMODDIR="$prefix/kmod"
|
||||||
fi
|
fi
|
||||||
if test "X$MANDIR" = X; then
|
if test "X$MANDIR" = X; then
|
||||||
MANDIR="$prefix/smp-x86/man"
|
MANDIR="$prefix/share/man"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
smp-arm64)
|
smp-arm64)
|
||||||
@@ -4384,7 +4384,7 @@ case $WITH_TARGET in
|
|||||||
KMODDIR="$prefix/kmod"
|
KMODDIR="$prefix/kmod"
|
||||||
fi
|
fi
|
||||||
if test "X$MANDIR" = X; then
|
if test "X$MANDIR" = X; then
|
||||||
MANDIR="$prefix/smp-arm64/man"
|
MANDIR="$prefix/share/man"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
@@ -5585,7 +5585,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|||||||
# report actual input values of CONFIG_FILES etc. instead of their
|
# report actual input values of CONFIG_FILES etc. instead of their
|
||||||
# values after options handling.
|
# values after options handling.
|
||||||
ac_log="
|
ac_log="
|
||||||
This file was extended by mckernel $as_me 1.5.0, which was
|
This file was extended by mckernel $as_me 1.5.1, which was
|
||||||
generated by GNU Autoconf 2.69. Invocation command line was
|
generated by GNU Autoconf 2.69. Invocation command line was
|
||||||
|
|
||||||
CONFIG_FILES = $CONFIG_FILES
|
CONFIG_FILES = $CONFIG_FILES
|
||||||
@@ -5647,7 +5647,7 @@ _ACEOF
|
|||||||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||||
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
|
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
|
||||||
ac_cs_version="\\
|
ac_cs_version="\\
|
||||||
mckernel config.status 1.5.0
|
mckernel config.status 1.5.1
|
||||||
configured by $0, generated by GNU Autoconf 2.69,
|
configured by $0, generated by GNU Autoconf 2.69,
|
||||||
with options \\"\$ac_cs_config\\"
|
with options \\"\$ac_cs_config\\"
|
||||||
|
|
||||||
|
|||||||
18
configure.ac
18
configure.ac
@@ -1,9 +1,9 @@
|
|||||||
# configure.ac COPYRIGHT FUJITSU LIMITED 2015-2016
|
# configure.ac COPYRIGHT FUJITSU LIMITED 2015-2016
|
||||||
AC_PREREQ(2.63)
|
AC_PREREQ(2.63)
|
||||||
m4_define([IHK_VERSION_m4],[1.5.0])dnl
|
m4_define([IHK_VERSION_m4],[1.5.1])dnl
|
||||||
m4_define([MCKERNEL_VERSION_m4],[1.5.0])dnl
|
m4_define([MCKERNEL_VERSION_m4],[1.5.1])dnl
|
||||||
m4_define([IHK_RELEASE_DATE_m4],[2018-04-05])dnl
|
m4_define([IHK_RELEASE_DATE_m4],[2018-07-09])dnl
|
||||||
m4_define([MCKERNEL_RELEASE_DATE_m4],[2018-04-05])dnl
|
m4_define([MCKERNEL_RELEASE_DATE_m4],[2018-07-09])dnl
|
||||||
|
|
||||||
AC_INIT([mckernel], MCKERNEL_VERSION_m4)
|
AC_INIT([mckernel], MCKERNEL_VERSION_m4)
|
||||||
|
|
||||||
@@ -229,7 +229,7 @@ case $WITH_TARGET in
|
|||||||
KMODDIR="$prefix/kmod"
|
KMODDIR="$prefix/kmod"
|
||||||
fi
|
fi
|
||||||
if test "X$MANDIR" = X; then
|
if test "X$MANDIR" = X; then
|
||||||
MANDIR="$prefix/man"
|
MANDIR="$prefix/share/man"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
builtin-mic)
|
builtin-mic)
|
||||||
@@ -246,7 +246,7 @@ case $WITH_TARGET in
|
|||||||
KMODDIR="$prefix/attached/kmod"
|
KMODDIR="$prefix/attached/kmod"
|
||||||
fi
|
fi
|
||||||
if test "X$MANDIR" = X; then
|
if test "X$MANDIR" = X; then
|
||||||
MANDIR="$prefix/attached/man"
|
MANDIR="$prefix/share/man"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
builtin-x86)
|
builtin-x86)
|
||||||
@@ -263,7 +263,7 @@ case $WITH_TARGET in
|
|||||||
KMODDIR="$prefix/kmod"
|
KMODDIR="$prefix/kmod"
|
||||||
fi
|
fi
|
||||||
if test "X$MANDIR" = X; then
|
if test "X$MANDIR" = X; then
|
||||||
MANDIR="$prefix/attached/man"
|
MANDIR="$prefix/share/man"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
smp-x86)
|
smp-x86)
|
||||||
@@ -295,7 +295,7 @@ case $WITH_TARGET in
|
|||||||
KMODDIR="$prefix/kmod"
|
KMODDIR="$prefix/kmod"
|
||||||
fi
|
fi
|
||||||
if test "X$MANDIR" = X; then
|
if test "X$MANDIR" = X; then
|
||||||
MANDIR="$prefix/smp-x86/man"
|
MANDIR="$prefix/share/man"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
smp-arm64)
|
smp-arm64)
|
||||||
@@ -327,7 +327,7 @@ case $WITH_TARGET in
|
|||||||
KMODDIR="$prefix/kmod"
|
KMODDIR="$prefix/kmod"
|
||||||
fi
|
fi
|
||||||
if test "X$MANDIR" = X; then
|
if test "X$MANDIR" = X; then
|
||||||
MANDIR="$prefix/smp-arm64/man"
|
MANDIR="$prefix/share/man"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
|||||||
@@ -111,10 +111,8 @@ typedef unsigned long __cpu_set_unit;
|
|||||||
|
|
||||||
struct program_load_desc {
|
struct program_load_desc {
|
||||||
int num_sections;
|
int num_sections;
|
||||||
int status;
|
|
||||||
int cpu;
|
int cpu;
|
||||||
int pid;
|
int pid;
|
||||||
int err;
|
|
||||||
int stack_prot;
|
int stack_prot;
|
||||||
int pgid;
|
int pgid;
|
||||||
int cred[8];
|
int cred[8];
|
||||||
@@ -253,7 +251,6 @@ enum perf_ctrl_type {
|
|||||||
|
|
||||||
struct perf_ctrl_desc {
|
struct perf_ctrl_desc {
|
||||||
enum perf_ctrl_type ctrl_type;
|
enum perf_ctrl_type ctrl_type;
|
||||||
int status;
|
|
||||||
union {
|
union {
|
||||||
/* for SET, GET */
|
/* for SET, GET */
|
||||||
struct {
|
struct {
|
||||||
|
|||||||
@@ -107,6 +107,7 @@ static long mcexec_prepare_image(ihk_os_t os,
|
|||||||
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
||||||
struct mcctrl_per_proc_data *ppd = NULL;
|
struct mcctrl_per_proc_data *ppd = NULL;
|
||||||
int num_sections;
|
int num_sections;
|
||||||
|
int free_ikc_pointers = 1;
|
||||||
|
|
||||||
desc = kmalloc(sizeof(*desc), GFP_KERNEL);
|
desc = kmalloc(sizeof(*desc), GFP_KERNEL);
|
||||||
if (!desc) {
|
if (!desc) {
|
||||||
@@ -140,9 +141,9 @@ static long mcexec_prepare_image(ihk_os_t os,
|
|||||||
goto put_and_free_out;
|
goto put_and_free_out;
|
||||||
}
|
}
|
||||||
|
|
||||||
pdesc = kmalloc(sizeof(struct program_load_desc) +
|
pdesc = kmalloc(sizeof(struct program_load_desc) +
|
||||||
sizeof(struct program_image_section)
|
sizeof(struct program_image_section) * num_sections,
|
||||||
* num_sections, GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
memcpy(pdesc, desc, sizeof(struct program_load_desc));
|
memcpy(pdesc, desc, sizeof(struct program_load_desc));
|
||||||
|
|
||||||
if (copy_from_user(pdesc->sections, udesc->sections,
|
if (copy_from_user(pdesc->sections, udesc->sections,
|
||||||
@@ -167,10 +168,10 @@ static long mcexec_prepare_image(ihk_os_t os,
|
|||||||
ret = -EFAULT;
|
ret = -EFAULT;
|
||||||
goto put_and_free_out;
|
goto put_and_free_out;
|
||||||
}
|
}
|
||||||
|
|
||||||
envs = kmalloc(pdesc->envs_len, GFP_KERNEL);
|
envs = kmalloc(pdesc->envs_len, GFP_KERNEL);
|
||||||
if (copy_from_user(envs, pdesc->envs, pdesc->envs_len)) {
|
if (copy_from_user(envs, pdesc->envs, pdesc->envs_len)) {
|
||||||
ret = -EFAULT;
|
ret = -EFAULT;
|
||||||
goto put_and_free_out;
|
goto put_and_free_out;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -187,36 +188,24 @@ static long mcexec_prepare_image(ihk_os_t os,
|
|||||||
|
|
||||||
dprintk("# of sections: %d\n", pdesc->num_sections);
|
dprintk("# of sections: %d\n", pdesc->num_sections);
|
||||||
dprintk("%p (%lx)\n", pdesc, isp.arg);
|
dprintk("%p (%lx)\n", pdesc, isp.arg);
|
||||||
|
|
||||||
pdesc->status = 0;
|
|
||||||
mb();
|
|
||||||
ret = mcctrl_ikc_send(os, pdesc->cpu, &isp);
|
|
||||||
if(ret < 0) {
|
|
||||||
printk("%s: ERROR mcctrl_ikc_send: %d\n", __FUNCTION__, ret);
|
|
||||||
goto put_and_free_out;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = wait_event_interruptible(ppd->wq_prepare, pdesc->status);
|
ret = mcctrl_ikc_send_wait(os, pdesc->cpu, &isp, 0, NULL,
|
||||||
|
&free_ikc_pointers, 3, pdesc, args, envs);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
printk("%s: ERROR after wait: %d\n", __FUNCTION__, ret);
|
/* either send or remote prepare_process failed */
|
||||||
goto put_and_free_out;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (pdesc->err < 0) {
|
|
||||||
ret = pdesc->err;
|
|
||||||
goto put_and_free_out;
|
goto put_and_free_out;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Update rpgtable */
|
/* Update rpgtable */
|
||||||
ppd->rpgtable = pdesc->rpgtable;
|
ppd->rpgtable = pdesc->rpgtable;
|
||||||
|
|
||||||
if (copy_to_user(udesc, pdesc, sizeof(struct program_load_desc) +
|
if (copy_to_user(udesc, pdesc, sizeof(struct program_load_desc) +
|
||||||
sizeof(struct program_image_section) * num_sections)) {
|
sizeof(struct program_image_section) * num_sections)) {
|
||||||
ret = -EFAULT;
|
ret = -EFAULT;
|
||||||
goto put_and_free_out;
|
goto put_and_free_out;
|
||||||
}
|
}
|
||||||
|
|
||||||
dprintk("%s: pid %d, rpgtable: 0x%lx added\n",
|
dprintk("%s: pid %d, rpgtable: 0x%lx added\n",
|
||||||
__FUNCTION__, ppd->pid, ppd->rpgtable);
|
__FUNCTION__, ppd->pid, ppd->rpgtable);
|
||||||
|
|
||||||
ret = 0;
|
ret = 0;
|
||||||
@@ -224,10 +213,12 @@ static long mcexec_prepare_image(ihk_os_t os,
|
|||||||
put_and_free_out:
|
put_and_free_out:
|
||||||
mcctrl_put_per_proc_data(ppd);
|
mcctrl_put_per_proc_data(ppd);
|
||||||
free_out:
|
free_out:
|
||||||
kfree(args);
|
if (free_ikc_pointers) {
|
||||||
kfree(pdesc);
|
kfree(args);
|
||||||
kfree(envs);
|
kfree(pdesc);
|
||||||
kfree(desc);
|
kfree(envs);
|
||||||
|
kfree(desc);
|
||||||
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
@@ -485,25 +476,33 @@ out:
|
|||||||
|
|
||||||
static DECLARE_WAIT_QUEUE_HEAD(signalq);
|
static DECLARE_WAIT_QUEUE_HEAD(signalq);
|
||||||
|
|
||||||
|
struct mcctrl_signal_desc {
|
||||||
|
struct mcctrl_signal msig;
|
||||||
|
struct mcctrl_wakeup_desc wakeup;
|
||||||
|
void *addrs[1];
|
||||||
|
};
|
||||||
|
|
||||||
static long mcexec_send_signal(ihk_os_t os, struct signal_desc *sigparam)
|
static long mcexec_send_signal(ihk_os_t os, struct signal_desc *sigparam)
|
||||||
{
|
{
|
||||||
struct ikc_scd_packet isp;
|
struct ikc_scd_packet isp;
|
||||||
struct mcctrl_channel *c;
|
struct mcctrl_channel *c;
|
||||||
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
||||||
struct signal_desc sig;
|
struct signal_desc sig;
|
||||||
struct mcctrl_signal msig[2];
|
struct mcctrl_signal_desc *desc;
|
||||||
struct mcctrl_signal *msigp;
|
struct mcctrl_signal *msigp;
|
||||||
int rc;
|
int rc, do_free;
|
||||||
|
|
||||||
if (copy_from_user(&sig, sigparam, sizeof(struct signal_desc))) {
|
if (copy_from_user(&sig, sigparam, sizeof(struct signal_desc))) {
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
}
|
}
|
||||||
|
|
||||||
msigp = msig;
|
desc = kmalloc(sizeof(*desc), GFP_KERNEL);
|
||||||
if(((unsigned long)msig & 0xfffffffffffff000L) !=
|
if (!desc) {
|
||||||
((unsigned long)(msig + 1) & 0xfffffffffffff000L))
|
return -ENOMEM;
|
||||||
msigp++;
|
}
|
||||||
memset(msigp, '\0', sizeof msig);
|
|
||||||
|
msigp = &desc->msig;
|
||||||
|
memset(msigp, '\0', sizeof(*msigp));
|
||||||
msigp->sig = sig.sig;
|
msigp->sig = sig.sig;
|
||||||
msigp->pid = sig.pid;
|
msigp->pid = sig.pid;
|
||||||
msigp->tid = sig.tid;
|
msigp->tid = sig.tid;
|
||||||
@@ -515,25 +514,19 @@ static long mcexec_send_signal(ihk_os_t os, struct signal_desc *sigparam)
|
|||||||
isp.pid = sig.pid;
|
isp.pid = sig.pid;
|
||||||
isp.arg = virt_to_phys(msigp);
|
isp.arg = virt_to_phys(msigp);
|
||||||
|
|
||||||
if ((rc = mcctrl_ikc_send(os, sig.cpu, &isp)) < 0) {
|
rc = mcctrl_ikc_send_wait(os, sig.cpu, &isp, 0, &desc->wakeup,
|
||||||
|
&do_free, 1, desc);
|
||||||
|
if (rc < 0) {
|
||||||
printk("mcexec_send_signal: mcctrl_ikc_send ret=%d\n", rc);
|
printk("mcexec_send_signal: mcctrl_ikc_send ret=%d\n", rc);
|
||||||
|
if (do_free)
|
||||||
|
kfree(desc);
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
wait_event_interruptible(signalq, msigp->cond != 0);
|
|
||||||
|
|
||||||
|
kfree(desc);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
sig_done(unsigned long arg, int err)
|
|
||||||
{
|
|
||||||
struct mcctrl_signal *msigp;
|
|
||||||
|
|
||||||
msigp = phys_to_virt(arg);
|
|
||||||
msigp->cond = 1;
|
|
||||||
wake_up_interruptible(&signalq);
|
|
||||||
}
|
|
||||||
|
|
||||||
static long mcexec_get_cpu(ihk_os_t os)
|
static long mcexec_get_cpu(ihk_os_t os)
|
||||||
{
|
{
|
||||||
struct ihk_cpu_info *info;
|
struct ihk_cpu_info *info;
|
||||||
@@ -1691,7 +1684,6 @@ int mcexec_create_per_process_data(ihk_os_t os)
|
|||||||
INIT_LIST_HEAD(&ppd->wq_list);
|
INIT_LIST_HEAD(&ppd->wq_list);
|
||||||
INIT_LIST_HEAD(&ppd->wq_req_list);
|
INIT_LIST_HEAD(&ppd->wq_req_list);
|
||||||
INIT_LIST_HEAD(&ppd->wq_list_exact);
|
INIT_LIST_HEAD(&ppd->wq_list_exact);
|
||||||
init_waitqueue_head(&ppd->wq_prepare);
|
|
||||||
init_waitqueue_head(&ppd->wq_procfs);
|
init_waitqueue_head(&ppd->wq_procfs);
|
||||||
spin_lock_init(&ppd->wq_list_lock);
|
spin_lock_init(&ppd->wq_list_lock);
|
||||||
memset(&ppd->cpu_set, 0, sizeof(cpumask_t));
|
memset(&ppd->cpu_set, 0, sizeof(cpumask_t));
|
||||||
@@ -2019,58 +2011,65 @@ long mcctrl_perf_num(ihk_os_t os, unsigned long arg)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct mcctrl_perf_ctrl_desc {
|
||||||
|
struct perf_ctrl_desc desc;
|
||||||
|
struct mcctrl_wakeup_desc wakeup;
|
||||||
|
void *addrs[1];
|
||||||
|
};
|
||||||
|
#define wakeup_desc_of_perf_desc(_desc) \
|
||||||
|
(&container_of((_desc), struct mcctrl_perf_ctrl_desc, desc)->wakeup)
|
||||||
|
|
||||||
long mcctrl_perf_set(ihk_os_t os, struct ihk_perf_event_attr *__user arg)
|
long mcctrl_perf_set(ihk_os_t os, struct ihk_perf_event_attr *__user arg)
|
||||||
{
|
{
|
||||||
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
||||||
struct ikc_scd_packet isp;
|
struct ikc_scd_packet isp;
|
||||||
struct perf_ctrl_desc *perf_desc = NULL;
|
struct perf_ctrl_desc *perf_desc;
|
||||||
struct ihk_perf_event_attr attr;
|
struct ihk_perf_event_attr attr;
|
||||||
struct ihk_cpu_info *info = ihk_os_get_cpu_info(os);
|
struct ihk_cpu_info *info = ihk_os_get_cpu_info(os);
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
int i = 0, j = 0;
|
int i = 0, j = 0;
|
||||||
|
int need_free;
|
||||||
|
|
||||||
for (i = 0; i < usrdata->perf_event_num; i++) {
|
for (i = 0; i < usrdata->perf_event_num; i++) {
|
||||||
if (copy_from_user(&attr, &arg[i], sizeof(struct ihk_perf_event_attr))) {
|
ret = copy_from_user(&attr, &arg[i],
|
||||||
printk("%s: error: copying ihk_perf_event_attr from user\n",
|
sizeof(struct ihk_perf_event_attr));
|
||||||
__FUNCTION__);
|
if (ret) {
|
||||||
|
pr_err("%s: error: copying ihk_perf_event_attr from user\n",
|
||||||
|
__func__);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (j = 0; j < info->n_cpus; j++) {
|
perf_desc = kmalloc(sizeof(struct mcctrl_perf_ctrl_desc),
|
||||||
perf_desc = kmalloc(sizeof(struct perf_ctrl_desc), GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
if (!perf_desc) {
|
if (!perf_desc) {
|
||||||
printk("%s: error: allocating perf_ctrl_desc\n",
|
return -ENOMEM;
|
||||||
__FUNCTION__);
|
|
||||||
return -ENOMEM;
|
|
||||||
}
|
|
||||||
memset(perf_desc, '\0', sizeof(struct perf_ctrl_desc));
|
|
||||||
|
|
||||||
perf_desc->ctrl_type = PERF_CTRL_SET;
|
|
||||||
perf_desc->status = 0;
|
|
||||||
perf_desc->target_cntr = i;
|
|
||||||
perf_desc->config = attr.config;
|
|
||||||
perf_desc->exclude_kernel = attr.exclude_kernel;
|
|
||||||
perf_desc->exclude_user = attr.exclude_user;
|
|
||||||
|
|
||||||
memset(&isp, '\0', sizeof(struct ikc_scd_packet));
|
|
||||||
isp.msg = SCD_MSG_PERF_CTRL;
|
|
||||||
isp.arg = virt_to_phys(perf_desc);
|
|
||||||
|
|
||||||
if ((ret = mcctrl_ikc_send(os, j, &isp)) < 0) {
|
|
||||||
printk("%s: mcctrl_ikc_send ret=%d\n", __FUNCTION__, ret);
|
|
||||||
kfree(perf_desc);
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = wait_event_interruptible(perfctrlq, perf_desc->status);
|
|
||||||
if (ret < 0) {
|
|
||||||
printk("%s: ERROR after wait: %d\n", __FUNCTION__, ret);
|
|
||||||
kfree(perf_desc);
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
kfree(perf_desc);
|
|
||||||
}
|
}
|
||||||
|
memset(perf_desc, '\0', sizeof(struct perf_ctrl_desc));
|
||||||
|
|
||||||
|
perf_desc->ctrl_type = PERF_CTRL_SET;
|
||||||
|
perf_desc->target_cntr = i;
|
||||||
|
perf_desc->config = attr.config;
|
||||||
|
perf_desc->exclude_kernel = attr.exclude_kernel;
|
||||||
|
perf_desc->exclude_user = attr.exclude_user;
|
||||||
|
|
||||||
|
memset(&isp, '\0', sizeof(struct ikc_scd_packet));
|
||||||
|
isp.msg = SCD_MSG_PERF_CTRL;
|
||||||
|
isp.arg = virt_to_phys(perf_desc);
|
||||||
|
|
||||||
|
for (j = 0; j < info->n_cpus; j++) {
|
||||||
|
ret = mcctrl_ikc_send_wait(os, j, &isp, 0,
|
||||||
|
wakeup_desc_of_perf_desc(perf_desc),
|
||||||
|
&need_free, 1, perf_desc);
|
||||||
|
if (ret < 0) {
|
||||||
|
pr_warn("%s: mcctrl_ikc_send_wait ret=%d\n",
|
||||||
|
__func__, ret);
|
||||||
|
if (need_free)
|
||||||
|
kfree(perf_desc);
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
kfree(perf_desc);
|
||||||
}
|
}
|
||||||
|
|
||||||
return usrdata->perf_event_num;
|
return usrdata->perf_event_num;
|
||||||
@@ -2080,48 +2079,46 @@ long mcctrl_perf_get(ihk_os_t os, unsigned long *__user arg)
|
|||||||
{
|
{
|
||||||
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
||||||
struct ikc_scd_packet isp;
|
struct ikc_scd_packet isp;
|
||||||
struct perf_ctrl_desc *perf_desc = NULL;
|
struct perf_ctrl_desc *perf_desc;
|
||||||
struct ihk_cpu_info *info = ihk_os_get_cpu_info(os);
|
struct ihk_cpu_info *info = ihk_os_get_cpu_info(os);
|
||||||
unsigned long value_sum = 0;
|
unsigned long value_sum = 0;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
int i = 0, j = 0;
|
int i = 0, j = 0;
|
||||||
|
int need_free;
|
||||||
|
|
||||||
for (i = 0; i < usrdata->perf_event_num; i++) {
|
for (i = 0; i < usrdata->perf_event_num; i++) {
|
||||||
for (j = 0; j < info->n_cpus; j++) {
|
perf_desc = kmalloc(sizeof(struct mcctrl_perf_ctrl_desc),
|
||||||
perf_desc = kmalloc(sizeof(struct perf_ctrl_desc), GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
if (!perf_desc) {
|
if (!perf_desc) {
|
||||||
printk("%s: error: allocating perf_ctrl_desc\n",
|
return -ENOMEM;
|
||||||
__FUNCTION__);
|
|
||||||
return -ENOMEM;
|
|
||||||
}
|
|
||||||
memset(perf_desc, '\0', sizeof(struct perf_ctrl_desc));
|
|
||||||
|
|
||||||
perf_desc->ctrl_type = PERF_CTRL_GET;
|
|
||||||
perf_desc->status = 0;
|
|
||||||
perf_desc->target_cntr = i;
|
|
||||||
|
|
||||||
memset(&isp, '\0', sizeof(struct ikc_scd_packet));
|
|
||||||
isp.msg = SCD_MSG_PERF_CTRL;
|
|
||||||
isp.arg = virt_to_phys(perf_desc);
|
|
||||||
|
|
||||||
if ((ret = mcctrl_ikc_send(os, j, &isp)) < 0) {
|
|
||||||
printk("%s: mcctrl_ikc_send ret=%d\n", __FUNCTION__, ret);
|
|
||||||
kfree(perf_desc);
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = wait_event_interruptible(perfctrlq, perf_desc->status);
|
|
||||||
if (ret < 0) {
|
|
||||||
printk("%s: ERROR after wait: %d\n", __FUNCTION__, ret);
|
|
||||||
kfree(perf_desc);
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
value_sum += perf_desc->read_value;
|
|
||||||
kfree(perf_desc);
|
|
||||||
}
|
}
|
||||||
|
memset(perf_desc, '\0', sizeof(struct perf_ctrl_desc));
|
||||||
|
|
||||||
|
perf_desc->ctrl_type = PERF_CTRL_GET;
|
||||||
|
perf_desc->target_cntr = i;
|
||||||
|
|
||||||
|
memset(&isp, '\0', sizeof(struct ikc_scd_packet));
|
||||||
|
isp.msg = SCD_MSG_PERF_CTRL;
|
||||||
|
isp.arg = virt_to_phys(perf_desc);
|
||||||
|
|
||||||
|
for (j = 0; j < info->n_cpus; j++) {
|
||||||
|
ret = mcctrl_ikc_send_wait(os, j, &isp, 0,
|
||||||
|
wakeup_desc_of_perf_desc(perf_desc),
|
||||||
|
&need_free, 1, perf_desc);
|
||||||
|
if (ret < 0) {
|
||||||
|
pr_warn("%s: mcctrl_ikc_send_wait ret=%d\n",
|
||||||
|
__func__, ret);
|
||||||
|
if (need_free)
|
||||||
|
kfree(perf_desc);
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
|
value_sum += perf_desc->read_value;
|
||||||
|
}
|
||||||
|
kfree(perf_desc);
|
||||||
if (copy_to_user(&arg[i], &value_sum, sizeof(unsigned long))) {
|
if (copy_to_user(&arg[i], &value_sum, sizeof(unsigned long))) {
|
||||||
printk("%s: error: copying read_value to user\n",
|
printk("%s: error: copying read_value to user\n",
|
||||||
__FUNCTION__);
|
__func__);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
value_sum = 0;
|
value_sum = 0;
|
||||||
@@ -2134,46 +2131,44 @@ long mcctrl_perf_enable(ihk_os_t os)
|
|||||||
{
|
{
|
||||||
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
||||||
struct ikc_scd_packet isp;
|
struct ikc_scd_packet isp;
|
||||||
struct perf_ctrl_desc *perf_desc = NULL;
|
struct perf_ctrl_desc *perf_desc;
|
||||||
struct ihk_cpu_info *info = ihk_os_get_cpu_info(os);
|
struct ihk_cpu_info *info = ihk_os_get_cpu_info(os);
|
||||||
unsigned int cntr_mask = 0;
|
unsigned int cntr_mask = 0;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
int i = 0, j = 0;
|
int i = 0, j = 0;
|
||||||
|
int need_free;
|
||||||
|
|
||||||
for (i = 0; i < usrdata->perf_event_num; i++) {
|
for (i = 0; i < usrdata->perf_event_num; i++) {
|
||||||
cntr_mask |= 1 << i;
|
cntr_mask |= 1 << i;
|
||||||
}
|
}
|
||||||
for (j = 0; j < info->n_cpus; j++) {
|
perf_desc = kmalloc(sizeof(struct mcctrl_perf_ctrl_desc), GFP_KERNEL);
|
||||||
perf_desc = kmalloc(sizeof(struct perf_ctrl_desc), GFP_KERNEL);
|
if (!perf_desc) {
|
||||||
if (!perf_desc) {
|
return -ENOMEM;
|
||||||
printk("%s: error: allocating perf_ctrl_desc\n",
|
|
||||||
__FUNCTION__);
|
|
||||||
return -ENOMEM;
|
|
||||||
}
|
|
||||||
memset(perf_desc, '\0', sizeof(struct perf_ctrl_desc));
|
|
||||||
|
|
||||||
perf_desc->ctrl_type = PERF_CTRL_ENABLE;
|
|
||||||
perf_desc->status = 0;
|
|
||||||
perf_desc->target_cntr_mask = cntr_mask;
|
|
||||||
|
|
||||||
memset(&isp, '\0', sizeof(struct ikc_scd_packet));
|
|
||||||
isp.msg = SCD_MSG_PERF_CTRL;
|
|
||||||
isp.arg = virt_to_phys(perf_desc);
|
|
||||||
|
|
||||||
if ((ret = mcctrl_ikc_send(os, j, &isp)) < 0) {
|
|
||||||
printk("%s: mcctrl_ikc_send ret=%d\n", __FUNCTION__, ret);
|
|
||||||
kfree(perf_desc);
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = wait_event_interruptible(perfctrlq, perf_desc->status);
|
|
||||||
if (ret < 0) {
|
|
||||||
printk("%s: ERROR after wait: %d\n", __FUNCTION__, ret);
|
|
||||||
kfree(perf_desc);
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
kfree(perf_desc);
|
|
||||||
}
|
}
|
||||||
|
memset(perf_desc, '\0', sizeof(struct perf_ctrl_desc));
|
||||||
|
|
||||||
|
perf_desc->ctrl_type = PERF_CTRL_ENABLE;
|
||||||
|
perf_desc->target_cntr_mask = cntr_mask;
|
||||||
|
|
||||||
|
memset(&isp, '\0', sizeof(struct ikc_scd_packet));
|
||||||
|
isp.msg = SCD_MSG_PERF_CTRL;
|
||||||
|
isp.arg = virt_to_phys(perf_desc);
|
||||||
|
|
||||||
|
for (j = 0; j < info->n_cpus; j++) {
|
||||||
|
ret = mcctrl_ikc_send_wait(os, j, &isp, 0,
|
||||||
|
wakeup_desc_of_perf_desc(perf_desc),
|
||||||
|
&need_free, 1, perf_desc);
|
||||||
|
|
||||||
|
if (ret < 0) {
|
||||||
|
pr_warn("%s: mcctrl_ikc_send_wait ret=%d\n",
|
||||||
|
__func__, ret);
|
||||||
|
if (need_free)
|
||||||
|
kfree(perf_desc);
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
kfree(perf_desc);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -2182,46 +2177,43 @@ long mcctrl_perf_disable(ihk_os_t os)
|
|||||||
{
|
{
|
||||||
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
||||||
struct ikc_scd_packet isp;
|
struct ikc_scd_packet isp;
|
||||||
struct perf_ctrl_desc *perf_desc = NULL;
|
struct perf_ctrl_desc *perf_desc;
|
||||||
struct ihk_cpu_info *info = ihk_os_get_cpu_info(os);
|
struct ihk_cpu_info *info = ihk_os_get_cpu_info(os);
|
||||||
unsigned int cntr_mask = 0;
|
unsigned int cntr_mask = 0;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
int i = 0, j = 0;
|
int i = 0, j = 0;
|
||||||
|
int need_free;
|
||||||
|
|
||||||
for (i = 0; i < usrdata->perf_event_num; i++) {
|
for (i = 0; i < usrdata->perf_event_num; i++) {
|
||||||
cntr_mask |= 1 << i;
|
cntr_mask |= 1 << i;
|
||||||
}
|
}
|
||||||
for (j = 0; j < info->n_cpus; j++) {
|
perf_desc = kmalloc(sizeof(struct mcctrl_perf_ctrl_desc), GFP_KERNEL);
|
||||||
perf_desc = kmalloc(sizeof(struct perf_ctrl_desc), GFP_KERNEL);
|
if (!perf_desc) {
|
||||||
if (!perf_desc) {
|
return -ENOMEM;
|
||||||
printk("%s: error: allocating perf_ctrl_desc\n",
|
|
||||||
__FUNCTION__);
|
|
||||||
return -ENOMEM;
|
|
||||||
}
|
|
||||||
memset(perf_desc, '\0', sizeof(struct perf_ctrl_desc));
|
|
||||||
|
|
||||||
perf_desc->ctrl_type = PERF_CTRL_DISABLE;
|
|
||||||
perf_desc->status = 0;
|
|
||||||
perf_desc->target_cntr_mask = cntr_mask;
|
|
||||||
|
|
||||||
memset(&isp, '\0', sizeof(struct ikc_scd_packet));
|
|
||||||
isp.msg = SCD_MSG_PERF_CTRL;
|
|
||||||
isp.arg = virt_to_phys(perf_desc);
|
|
||||||
|
|
||||||
if ((ret = mcctrl_ikc_send(os, j, &isp)) < 0) {
|
|
||||||
printk("%s: mcctrl_ikc_send ret=%d\n", __FUNCTION__, ret);
|
|
||||||
kfree(perf_desc);
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = wait_event_interruptible(perfctrlq, perf_desc->status);
|
|
||||||
if (ret < 0) {
|
|
||||||
printk("%s: ERROR after wait: %d\n", __FUNCTION__, ret);
|
|
||||||
kfree(perf_desc);
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
kfree(perf_desc);
|
|
||||||
}
|
}
|
||||||
|
memset(perf_desc, '\0', sizeof(struct perf_ctrl_desc));
|
||||||
|
|
||||||
|
perf_desc->ctrl_type = PERF_CTRL_DISABLE;
|
||||||
|
perf_desc->target_cntr_mask = cntr_mask;
|
||||||
|
|
||||||
|
memset(&isp, '\0', sizeof(struct ikc_scd_packet));
|
||||||
|
isp.msg = SCD_MSG_PERF_CTRL;
|
||||||
|
isp.arg = virt_to_phys(perf_desc);
|
||||||
|
|
||||||
|
for (j = 0; j < info->n_cpus; j++) {
|
||||||
|
ret = mcctrl_ikc_send_wait(os, j, &isp, 0,
|
||||||
|
wakeup_desc_of_perf_desc(perf_desc),
|
||||||
|
&need_free, 1, perf_desc);
|
||||||
|
if (ret < 0) {
|
||||||
|
pr_warn("%s: mcctrl_ikc_send_wait ret=%d\n",
|
||||||
|
__func__, ret);
|
||||||
|
if (need_free)
|
||||||
|
kfree(perf_desc);
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
kfree(perf_desc);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -2233,15 +2225,6 @@ long mcctrl_perf_destroy(ihk_os_t os)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void mcctrl_perf_ack(ihk_os_t os, struct ikc_scd_packet *packet)
|
|
||||||
{
|
|
||||||
struct perf_ctrl_desc *perf_desc = phys_to_virt(packet->arg);
|
|
||||||
|
|
||||||
perf_desc->status = 1;
|
|
||||||
wake_up_interruptible(&perfctrlq);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Compose LWK-specific rusage structure */
|
/* Compose LWK-specific rusage structure */
|
||||||
long mcctrl_getrusage(ihk_os_t ihk_os, struct mcctrl_ioctl_getrusage_desc *__user _desc)
|
long mcctrl_getrusage(ihk_os_t ihk_os, struct mcctrl_ioctl_getrusage_desc *__user _desc)
|
||||||
{
|
{
|
||||||
@@ -2925,28 +2908,6 @@ long __mcctrl_control(ihk_os_t os, unsigned int req, unsigned long arg,
|
|||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
void mcexec_prepare_ack(ihk_os_t os, unsigned long arg, int err)
|
|
||||||
{
|
|
||||||
struct program_load_desc *desc = phys_to_virt(arg);
|
|
||||||
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
|
||||||
struct mcctrl_per_proc_data *ppd = NULL;
|
|
||||||
|
|
||||||
ppd = mcctrl_get_per_proc_data(usrdata, desc->pid);
|
|
||||||
if (!ppd) {
|
|
||||||
printk("%s: ERROR: no per process data for PID %d\n",
|
|
||||||
__FUNCTION__, desc->pid);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
desc->err = err;
|
|
||||||
desc->status = 1;
|
|
||||||
mb();
|
|
||||||
|
|
||||||
wake_up_all(&ppd->wq_prepare);
|
|
||||||
mcctrl_put_per_proc_data(ppd);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Per-CPU register manipulation functions */
|
/* Per-CPU register manipulation functions */
|
||||||
struct mcctrl_os_cpu_response {
|
struct mcctrl_os_cpu_response {
|
||||||
int done;
|
int done;
|
||||||
|
|||||||
@@ -49,15 +49,123 @@
|
|||||||
|
|
||||||
//struct mcctrl_channel *channels;
|
//struct mcctrl_channel *channels;
|
||||||
|
|
||||||
void mcexec_prepare_ack(ihk_os_t os, unsigned long arg, int err);
|
|
||||||
static void mcctrl_ikc_init(ihk_os_t os, int cpu, unsigned long rphys, struct ihk_ikc_channel_desc *c);
|
static void mcctrl_ikc_init(ihk_os_t os, int cpu, unsigned long rphys, struct ihk_ikc_channel_desc *c);
|
||||||
int mcexec_syscall(struct mcctrl_usrdata *ud, struct ikc_scd_packet *packet);
|
int mcexec_syscall(struct mcctrl_usrdata *ud, struct ikc_scd_packet *packet);
|
||||||
void sig_done(unsigned long arg, int err);
|
void sig_done(unsigned long arg, int err);
|
||||||
void mcctrl_perf_ack(ihk_os_t os, struct ikc_scd_packet *packet);
|
|
||||||
void mcctrl_os_read_write_cpu_response(ihk_os_t os,
|
void mcctrl_os_read_write_cpu_response(ihk_os_t os,
|
||||||
struct ikc_scd_packet *pisp);
|
struct ikc_scd_packet *pisp);
|
||||||
void mcctrl_eventfd(ihk_os_t os, struct ikc_scd_packet *pisp);
|
void mcctrl_eventfd(ihk_os_t os, struct ikc_scd_packet *pisp);
|
||||||
|
|
||||||
|
/* Assumes usrdata->wakeup_descs_lock taken */
|
||||||
|
static void mcctrl_wakeup_desc_cleanup(ihk_os_t os,
|
||||||
|
struct mcctrl_wakeup_desc *desc)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
|
list_del(&desc->chain);
|
||||||
|
|
||||||
|
for (i = 0; i < desc->free_addrs_count; i++) {
|
||||||
|
kfree(desc->free_addrs[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void mcctrl_wakeup_cb(ihk_os_t os, struct ikc_scd_packet *packet)
|
||||||
|
{
|
||||||
|
struct mcctrl_wakeup_desc *desc = packet->reply;
|
||||||
|
|
||||||
|
|
||||||
|
WRITE_ONCE(desc->err, packet->err);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Check if the other side is still waiting, and signal it we're done.
|
||||||
|
*
|
||||||
|
* Setting status needs to be done last because the other side could
|
||||||
|
* wake up opportunistically between this set and the wake_up call.
|
||||||
|
*
|
||||||
|
* If the other side is no longer waiting, free the memory that was
|
||||||
|
* left for us.
|
||||||
|
*/
|
||||||
|
if (cmpxchg(&desc->status, 0, 1)) {
|
||||||
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
||||||
|
unsigned long flags;
|
||||||
|
|
||||||
|
spin_lock_irqsave(&usrdata->wakeup_descs_lock, flags);
|
||||||
|
mcctrl_wakeup_desc_cleanup(os, desc);
|
||||||
|
spin_unlock_irqrestore(&usrdata->wakeup_descs_lock, flags);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
wake_up_interruptible(&desc->wq);
|
||||||
|
}
|
||||||
|
|
||||||
|
int mcctrl_ikc_send_wait(ihk_os_t os, int cpu, struct ikc_scd_packet *pisp,
|
||||||
|
long int timeout, struct mcctrl_wakeup_desc *desc,
|
||||||
|
int *do_frees, int free_addrs_count, ...)
|
||||||
|
{
|
||||||
|
int ret, i;
|
||||||
|
int alloc_desc = (desc == NULL);
|
||||||
|
va_list ap;
|
||||||
|
|
||||||
|
if (free_addrs_count)
|
||||||
|
*do_frees = 1;
|
||||||
|
if (alloc_desc)
|
||||||
|
desc = kmalloc(sizeof(struct mcctrl_wakeup_desc) +
|
||||||
|
(free_addrs_count + 1) * sizeof(void *),
|
||||||
|
GFP_KERNEL);
|
||||||
|
if (!desc) {
|
||||||
|
pr_warn("%s: Could not allocate wakeup descriptor", __func__);
|
||||||
|
return -ENOMEM;
|
||||||
|
}
|
||||||
|
pisp->reply = desc;
|
||||||
|
va_start(ap, free_addrs_count);
|
||||||
|
for (i = 0; i < free_addrs_count; i++) {
|
||||||
|
desc->free_addrs[i] = va_arg(ap, void*);
|
||||||
|
}
|
||||||
|
va_end(ap);
|
||||||
|
if (alloc_desc)
|
||||||
|
desc->free_addrs[free_addrs_count++] = desc;
|
||||||
|
desc->free_addrs_count = free_addrs_count;
|
||||||
|
init_waitqueue_head(&desc->wq);
|
||||||
|
WRITE_ONCE(desc->err, 0);
|
||||||
|
WRITE_ONCE(desc->status, 0);
|
||||||
|
|
||||||
|
ret = mcctrl_ikc_send(os, cpu, pisp);
|
||||||
|
if (ret < 0) {
|
||||||
|
pr_warn("%s: mcctrl_ikc_send failed: %d\n", __func__, ret);
|
||||||
|
kfree(desc);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (timeout) {
|
||||||
|
ret = wait_event_interruptible_timeout(desc->wq,
|
||||||
|
desc->status, timeout);
|
||||||
|
} else {
|
||||||
|
ret = wait_event_interruptible(desc->wq, desc->status);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Check if wait aborted (signal..) or timed out, and notify
|
||||||
|
* the callback it will need to free things for us
|
||||||
|
*/
|
||||||
|
if (!cmpxchg(&desc->status, 0, 1)) {
|
||||||
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
||||||
|
unsigned long flags;
|
||||||
|
|
||||||
|
spin_lock_irqsave(&usrdata->wakeup_descs_lock, flags);
|
||||||
|
list_add(&desc->chain, &usrdata->wakeup_descs_list);
|
||||||
|
spin_unlock_irqrestore(&usrdata->wakeup_descs_lock, flags);
|
||||||
|
if (free_addrs_count)
|
||||||
|
*do_frees = 0;
|
||||||
|
return ret < 0 ? ret : -ETIME;
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = READ_ONCE(desc->err);
|
||||||
|
if (alloc_desc)
|
||||||
|
kfree(desc);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* XXX: this runs in atomic context! */
|
/* XXX: this runs in atomic context! */
|
||||||
static int syscall_packet_handler(struct ihk_ikc_channel_desc *c,
|
static int syscall_packet_handler(struct ihk_ikc_channel_desc *c,
|
||||||
void *__packet, void *__os)
|
void *__packet, void *__os)
|
||||||
@@ -72,11 +180,9 @@ static int syscall_packet_handler(struct ihk_ikc_channel_desc *c,
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case SCD_MSG_PREPARE_PROCESS_ACKED:
|
case SCD_MSG_PREPARE_PROCESS_ACKED:
|
||||||
mcexec_prepare_ack(__os, pisp->arg, 0);
|
case SCD_MSG_PERF_ACK:
|
||||||
break;
|
case SCD_MSG_SEND_SIGNAL_ACK:
|
||||||
|
mcctrl_wakeup_cb(__os, pisp);
|
||||||
case SCD_MSG_PREPARE_PROCESS_NACKED:
|
|
||||||
mcexec_prepare_ack(__os, pisp->arg, pisp->err);
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SCD_MSG_SYSCALL_ONESIDE:
|
case SCD_MSG_SYSCALL_ONESIDE:
|
||||||
@@ -87,9 +193,6 @@ static int syscall_packet_handler(struct ihk_ikc_channel_desc *c,
|
|||||||
procfs_answer(usrdata, pisp->pid);
|
procfs_answer(usrdata, pisp->pid);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SCD_MSG_SEND_SIGNAL:
|
|
||||||
sig_done(pisp->arg, pisp->err);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case SCD_MSG_SYSFS_REQ_CREATE:
|
case SCD_MSG_SYSFS_REQ_CREATE:
|
||||||
case SCD_MSG_SYSFS_REQ_MKDIR:
|
case SCD_MSG_SYSFS_REQ_MKDIR:
|
||||||
@@ -113,10 +216,6 @@ static int syscall_packet_handler(struct ihk_ikc_channel_desc *c,
|
|||||||
get_vdso_info(__os, pisp->arg);
|
get_vdso_info(__os, pisp->arg);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SCD_MSG_PERF_ACK:
|
|
||||||
mcctrl_perf_ack(__os, pisp);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case SCD_MSG_CPU_RW_REG_RESP:
|
case SCD_MSG_CPU_RW_REG_RESP:
|
||||||
mcctrl_os_read_write_cpu_response(__os, pisp);
|
mcctrl_os_read_write_cpu_response(__os, pisp);
|
||||||
break;
|
break;
|
||||||
@@ -157,10 +256,15 @@ static int dummy_packet_handler(struct ihk_ikc_channel_desc *c,
|
|||||||
|
|
||||||
int mcctrl_ikc_send(ihk_os_t os, int cpu, struct ikc_scd_packet *pisp)
|
int mcctrl_ikc_send(ihk_os_t os, int cpu, struct ikc_scd_packet *pisp)
|
||||||
{
|
{
|
||||||
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
struct mcctrl_usrdata *usrdata;
|
||||||
|
|
||||||
if (cpu < 0 || os == NULL || usrdata == NULL ||
|
if (cpu < 0 || os == NULL) {
|
||||||
cpu >= usrdata->num_channels || !usrdata->channels[cpu].c) {
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
|
usrdata = ihk_host_os_get_usrdata(os);
|
||||||
|
if (usrdata == NULL || cpu >= usrdata->num_channels ||
|
||||||
|
!usrdata->channels[cpu].c) {
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
return ihk_ikc_send(usrdata->channels[cpu].c, pisp, 0);
|
return ihk_ikc_send(usrdata->channels[cpu].c, pisp, 0);
|
||||||
@@ -354,6 +458,8 @@ int prepare_ikc_channels(ihk_os_t os)
|
|||||||
mutex_init(&usrdata->part_exec.lock);
|
mutex_init(&usrdata->part_exec.lock);
|
||||||
INIT_LIST_HEAD(&usrdata->part_exec.pli_list);
|
INIT_LIST_HEAD(&usrdata->part_exec.pli_list);
|
||||||
usrdata->part_exec.nr_processes = -1;
|
usrdata->part_exec.nr_processes = -1;
|
||||||
|
INIT_LIST_HEAD(&usrdata->wakeup_descs_list);
|
||||||
|
spin_lock_init(&usrdata->wakeup_descs_lock);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
@@ -375,7 +481,9 @@ void __destroy_ikc_channel(ihk_os_t os, struct mcctrl_channel *pmc)
|
|||||||
void destroy_ikc_channels(ihk_os_t os)
|
void destroy_ikc_channels(ihk_os_t os)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
unsigned long flags;
|
||||||
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
struct mcctrl_usrdata *usrdata = ihk_host_os_get_usrdata(os);
|
||||||
|
struct mcctrl_wakeup_desc *mwd_entry, *mwd_next;
|
||||||
|
|
||||||
if (!usrdata) {
|
if (!usrdata) {
|
||||||
printk("%s: WARNING: no mcctrl_usrdata found\n", __FUNCTION__);
|
printk("%s: WARNING: no mcctrl_usrdata found\n", __FUNCTION__);
|
||||||
@@ -395,6 +503,12 @@ void destroy_ikc_channels(ihk_os_t os)
|
|||||||
ihk_ikc_destroy_channel(usrdata->ikc2linux[i]);
|
ihk_ikc_destroy_channel(usrdata->ikc2linux[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
spin_lock_irqsave(&usrdata->wakeup_descs_lock, flags);
|
||||||
|
list_for_each_entry_safe(mwd_entry, mwd_next,
|
||||||
|
&usrdata->wakeup_descs_list, chain) {
|
||||||
|
mcctrl_wakeup_desc_cleanup(os, mwd_entry);
|
||||||
|
}
|
||||||
|
spin_unlock_irqrestore(&usrdata->wakeup_descs_lock, flags);
|
||||||
|
|
||||||
kfree(usrdata->channels);
|
kfree(usrdata->channels);
|
||||||
kfree(usrdata->ikc2linux);
|
kfree(usrdata->ikc2linux);
|
||||||
|
|||||||
@@ -48,7 +48,6 @@
|
|||||||
|
|
||||||
#define SCD_MSG_PREPARE_PROCESS 0x1
|
#define SCD_MSG_PREPARE_PROCESS 0x1
|
||||||
#define SCD_MSG_PREPARE_PROCESS_ACKED 0x2
|
#define SCD_MSG_PREPARE_PROCESS_ACKED 0x2
|
||||||
#define SCD_MSG_PREPARE_PROCESS_NACKED 0x7
|
|
||||||
#define SCD_MSG_SCHEDULE_PROCESS 0x3
|
#define SCD_MSG_SCHEDULE_PROCESS 0x3
|
||||||
#define SCD_MSG_WAKE_UP_SYSCALL_THREAD 0x14
|
#define SCD_MSG_WAKE_UP_SYSCALL_THREAD 0x14
|
||||||
|
|
||||||
@@ -56,7 +55,8 @@
|
|||||||
#define SCD_MSG_INIT_CHANNEL_ACKED 0x6
|
#define SCD_MSG_INIT_CHANNEL_ACKED 0x6
|
||||||
|
|
||||||
#define SCD_MSG_SYSCALL_ONESIDE 0x4
|
#define SCD_MSG_SYSCALL_ONESIDE 0x4
|
||||||
#define SCD_MSG_SEND_SIGNAL 0x8
|
#define SCD_MSG_SEND_SIGNAL 0x7
|
||||||
|
#define SCD_MSG_SEND_SIGNAL_ACK 0x8
|
||||||
#define SCD_MSG_CLEANUP_PROCESS 0x9
|
#define SCD_MSG_CLEANUP_PROCESS 0x9
|
||||||
#define SCD_MSG_GET_VDSO_INFO 0xa
|
#define SCD_MSG_GET_VDSO_INFO 0xa
|
||||||
|
|
||||||
@@ -128,6 +128,7 @@ enum mcctrl_os_cpu_operation {
|
|||||||
struct ikc_scd_packet {
|
struct ikc_scd_packet {
|
||||||
int msg;
|
int msg;
|
||||||
int err;
|
int err;
|
||||||
|
void *reply;
|
||||||
union {
|
union {
|
||||||
/* for traditional SCD_MSG_* */
|
/* for traditional SCD_MSG_* */
|
||||||
struct {
|
struct {
|
||||||
@@ -163,9 +164,10 @@ struct ikc_scd_packet {
|
|||||||
int eventfd_type;
|
int eventfd_type;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
char padding[12];
|
char padding[8];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
struct mcctrl_priv {
|
struct mcctrl_priv {
|
||||||
ihk_os_t os;
|
ihk_os_t os;
|
||||||
struct program_load_desc *desc;
|
struct program_load_desc *desc;
|
||||||
@@ -231,7 +233,6 @@ struct mcctrl_per_proc_data {
|
|||||||
struct list_head wq_list_exact; /* These requests come from IKC IRQ handler targeting a particular thread */
|
struct list_head wq_list_exact; /* These requests come from IKC IRQ handler targeting a particular thread */
|
||||||
|
|
||||||
ihk_spinlock_t wq_list_lock;
|
ihk_spinlock_t wq_list_lock;
|
||||||
wait_queue_head_t wq_prepare;
|
|
||||||
wait_queue_head_t wq_procfs;
|
wait_queue_head_t wq_procfs;
|
||||||
|
|
||||||
struct list_head per_thread_data_hash[MCCTRL_PER_THREAD_DATA_HASH_SIZE];
|
struct list_head per_thread_data_hash[MCCTRL_PER_THREAD_DATA_HASH_SIZE];
|
||||||
@@ -342,6 +343,8 @@ struct mcctrl_usrdata {
|
|||||||
wait_queue_head_t wq_procfs;
|
wait_queue_head_t wq_procfs;
|
||||||
struct list_head per_proc_data_hash[MCCTRL_PER_PROC_DATA_HASH_SIZE];
|
struct list_head per_proc_data_hash[MCCTRL_PER_PROC_DATA_HASH_SIZE];
|
||||||
rwlock_t per_proc_data_hash_lock[MCCTRL_PER_PROC_DATA_HASH_SIZE];
|
rwlock_t per_proc_data_hash_lock[MCCTRL_PER_PROC_DATA_HASH_SIZE];
|
||||||
|
struct list_head wakeup_descs_list;
|
||||||
|
spinlock_t wakeup_descs_lock;
|
||||||
|
|
||||||
void **keys;
|
void **keys;
|
||||||
struct sysfsm_data sysfsm_data;
|
struct sysfsm_data sysfsm_data;
|
||||||
@@ -367,6 +370,34 @@ int mcctrl_ikc_send(ihk_os_t os, int cpu, struct ikc_scd_packet *pisp);
|
|||||||
int mcctrl_ikc_send_msg(ihk_os_t os, int cpu, int msg, int ref, unsigned long arg);
|
int mcctrl_ikc_send_msg(ihk_os_t os, int cpu, int msg, int ref, unsigned long arg);
|
||||||
int mcctrl_ikc_is_valid_thread(ihk_os_t os, int cpu);
|
int mcctrl_ikc_is_valid_thread(ihk_os_t os, int cpu);
|
||||||
|
|
||||||
|
struct mcctrl_wakeup_desc {
|
||||||
|
int status;
|
||||||
|
int err;
|
||||||
|
wait_queue_head_t wq;
|
||||||
|
struct list_head chain;
|
||||||
|
int free_addrs_count;
|
||||||
|
void *free_addrs[];
|
||||||
|
};
|
||||||
|
|
||||||
|
/* ikc query-and-wait helper
|
||||||
|
*
|
||||||
|
* Arguments:
|
||||||
|
* - os, cpu and pisp as per mcctl_ikc_send()
|
||||||
|
* - timeout: time to wait for reply in ms
|
||||||
|
* - desc: if set, memory area to be used for desc.
|
||||||
|
* Care must be taken to leave room for variable-length array.
|
||||||
|
* - do_free: returns bool that specify if the caller should free
|
||||||
|
* its memory on error (e.g. if ikc_send failed in the first place,
|
||||||
|
* the reply has no chance of coming and memory should be free)
|
||||||
|
* Always true on success.
|
||||||
|
* - free_addrs_count & ...: addresses to kmalloc'd pointers that
|
||||||
|
* are referenced in the message and must be left intact if we
|
||||||
|
* abort to timeout/signal.
|
||||||
|
*/
|
||||||
|
int mcctrl_ikc_send_wait(ihk_os_t os, int cpu, struct ikc_scd_packet *pisp,
|
||||||
|
long int timeout, struct mcctrl_wakeup_desc *desc,
|
||||||
|
int *do_frees, int free_addrs_count, ...);
|
||||||
|
|
||||||
ihk_os_t osnum_to_os(int n);
|
ihk_os_t osnum_to_os(int n);
|
||||||
|
|
||||||
/* syscall.c */
|
/* syscall.c */
|
||||||
|
|||||||
@@ -1182,6 +1182,7 @@ struct pager_create_result {
|
|||||||
int maxprot;
|
int maxprot;
|
||||||
uint32_t flags;
|
uint32_t flags;
|
||||||
size_t size;
|
size_t size;
|
||||||
|
char path[PATH_MAX];
|
||||||
};
|
};
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
@@ -1200,6 +1201,33 @@ enum {
|
|||||||
MF_END
|
MF_END
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static int pager_get_path(struct file *file, char *path) {
|
||||||
|
int error = 0;
|
||||||
|
char *pathbuf, *fullpath;
|
||||||
|
|
||||||
|
pathbuf = kmalloc(PATH_MAX, GFP_TEMPORARY);
|
||||||
|
if (!pathbuf) {
|
||||||
|
printk("%s: ERROR: allocating path\n", __FUNCTION__);
|
||||||
|
error = -ENOMEM;
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
fullpath = d_path(&file->f_path, pathbuf, PATH_MAX);
|
||||||
|
if (!IS_ERR(fullpath)) {
|
||||||
|
memcpy(path, fullpath, strlen(fullpath));
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
path[0] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
out:
|
||||||
|
if (pathbuf) {
|
||||||
|
kfree(pathbuf);
|
||||||
|
}
|
||||||
|
return error;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static int pager_req_create(ihk_os_t os, int fd, uintptr_t result_pa)
|
static int pager_req_create(ihk_os_t os, int fd, uintptr_t result_pa)
|
||||||
{
|
{
|
||||||
ihk_device_t dev = ihk_os_to_dev(os);
|
ihk_device_t dev = ihk_os_to_dev(os);
|
||||||
@@ -1294,7 +1322,10 @@ static int pager_req_create(ihk_os_t os, int fd, uintptr_t result_pa)
|
|||||||
dprintk("%s: filename: %s, premap & zerofill\n",
|
dprintk("%s: filename: %s, premap & zerofill\n",
|
||||||
__FUNCTION__, fullpath);
|
__FUNCTION__, fullpath);
|
||||||
}
|
}
|
||||||
else if (strstr(fullpath, "libmpi") != NULL) {
|
else if (strstr(fullpath, "libmpi") ||
|
||||||
|
strstr(fullpath, "libiomp") ||
|
||||||
|
strstr(fullpath, "libpthread") ||
|
||||||
|
strstr(fullpath, "libc.so")) {
|
||||||
mf_flags = MF_PREFETCH;
|
mf_flags = MF_PREFETCH;
|
||||||
dprintk("%s: filename: %s, prefetch\n",
|
dprintk("%s: filename: %s, prefetch\n",
|
||||||
__FUNCTION__, fullpath);
|
__FUNCTION__, fullpath);
|
||||||
@@ -1333,6 +1364,7 @@ found:
|
|||||||
phys = ihk_device_map_memory(dev, result_pa, sizeof(*resp));
|
phys = ihk_device_map_memory(dev, result_pa, sizeof(*resp));
|
||||||
resp = ihk_device_map_virtual(dev, phys, sizeof(*resp), NULL, 0);
|
resp = ihk_device_map_virtual(dev, phys, sizeof(*resp), NULL, 0);
|
||||||
if (!resp) {
|
if (!resp) {
|
||||||
|
ihk_device_unmap_memory(dev, phys, sizeof(*resp));
|
||||||
printk("%s: ERROR: invalid response structure address\n",
|
printk("%s: ERROR: invalid response structure address\n",
|
||||||
__FUNCTION__);
|
__FUNCTION__);
|
||||||
error = -EINVAL;
|
error = -EINVAL;
|
||||||
@@ -1343,10 +1375,18 @@ found:
|
|||||||
resp->maxprot = maxprot;
|
resp->maxprot = maxprot;
|
||||||
resp->flags = mf_flags;
|
resp->flags = mf_flags;
|
||||||
resp->size = st.size;
|
resp->size = st.size;
|
||||||
|
|
||||||
|
error = pager_get_path(file, resp->path);
|
||||||
|
if (error) {
|
||||||
|
goto out_unmap;
|
||||||
|
}
|
||||||
|
|
||||||
|
error = 0;
|
||||||
|
|
||||||
|
out_unmap:
|
||||||
ihk_device_unmap_virtual(dev, resp, sizeof(*resp));
|
ihk_device_unmap_virtual(dev, resp, sizeof(*resp));
|
||||||
ihk_device_unmap_memory(dev, phys, sizeof(*resp));
|
ihk_device_unmap_memory(dev, phys, sizeof(*resp));
|
||||||
|
|
||||||
error = 0;
|
|
||||||
out:
|
out:
|
||||||
if (newpager) {
|
if (newpager) {
|
||||||
kfree(newpager);
|
kfree(newpager);
|
||||||
@@ -1578,6 +1618,7 @@ struct pager_map_result {
|
|||||||
uintptr_t handle;
|
uintptr_t handle;
|
||||||
int maxprot;
|
int maxprot;
|
||||||
int8_t padding[4];
|
int8_t padding[4];
|
||||||
|
char path[PATH_MAX];
|
||||||
};
|
};
|
||||||
|
|
||||||
static int pager_req_map(ihk_os_t os, int fd, size_t len, off_t off,
|
static int pager_req_map(ihk_os_t os, int fd, size_t len, off_t off,
|
||||||
@@ -1632,20 +1673,22 @@ static int pager_req_map(ihk_os_t os, int fd, size_t len, off_t off,
|
|||||||
maxprot |= PROT_EXEC;
|
maxprot |= PROT_EXEC;
|
||||||
}
|
}
|
||||||
|
|
||||||
down_write(¤t->mm->mmap_sem);
|
prot_and_flags = MAP_SHARED |
|
||||||
|
(prot_and_flags & (MAP_POPULATE | MAP_LOCKED));
|
||||||
|
|
||||||
#define ANY_WHERE 0
|
#define ANY_WHERE 0
|
||||||
if (prot_and_flags & MAP_LOCKED) prot_and_flags |= MAP_POPULATE;
|
if (prot_and_flags & MAP_LOCKED) prot_and_flags |= MAP_POPULATE;
|
||||||
|
|
||||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(3,5,0)
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(3,5,0)
|
||||||
|
down_write(¤t->mm->mmap_sem);
|
||||||
|
|
||||||
va = do_mmap_pgoff(file, ANY_WHERE, len, maxprot,
|
va = do_mmap_pgoff(file, ANY_WHERE, len, maxprot,
|
||||||
MAP_SHARED | (prot_and_flags & (MAP_POPULATE | MAP_LOCKED)), pgoff);
|
prot_and_flags, pgoff);
|
||||||
#endif
|
|
||||||
|
|
||||||
up_write(¤t->mm->mmap_sem);
|
up_write(¤t->mm->mmap_sem);
|
||||||
|
#else
|
||||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,5,0)
|
va = vm_mmap(file, ANY_WHERE, len, maxprot,
|
||||||
va = vm_mmap(file, ANY_WHERE, len, maxprot, MAP_SHARED |
|
prot_and_flags, pgoff << PAGE_SHIFT);
|
||||||
(prot_and_flags & (MAP_POPULATE | MAP_LOCKED)), pgoff << PAGE_SHIFT);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (IS_ERR_VALUE(va)) {
|
if (IS_ERR_VALUE(va)) {
|
||||||
@@ -1665,6 +1708,7 @@ static int pager_req_map(ihk_os_t os, int fd, size_t len, off_t off,
|
|||||||
phys = ihk_device_map_memory(dev, result_rpa, sizeof(*resp));
|
phys = ihk_device_map_memory(dev, result_rpa, sizeof(*resp));
|
||||||
resp = ihk_device_map_virtual(dev, phys, sizeof(*resp), NULL, 0);
|
resp = ihk_device_map_virtual(dev, phys, sizeof(*resp), NULL, 0);
|
||||||
if (!resp) {
|
if (!resp) {
|
||||||
|
ihk_device_unmap_memory(dev, phys, sizeof(*resp));
|
||||||
printk("%s: ERROR: invalid response structure address\n",
|
printk("%s: ERROR: invalid response structure address\n",
|
||||||
__FUNCTION__);
|
__FUNCTION__);
|
||||||
error = -EINVAL;
|
error = -EINVAL;
|
||||||
@@ -1673,13 +1717,16 @@ static int pager_req_map(ihk_os_t os, int fd, size_t len, off_t off,
|
|||||||
|
|
||||||
resp->handle = (uintptr_t)pager;
|
resp->handle = (uintptr_t)pager;
|
||||||
resp->maxprot = maxprot;
|
resp->maxprot = maxprot;
|
||||||
ihk_device_unmap_virtual(dev, resp, sizeof(*resp));
|
|
||||||
ihk_device_unmap_memory(dev, phys, sizeof(*resp));
|
error = pager_get_path(file, resp->path);
|
||||||
|
if (error) {
|
||||||
|
goto out_unmap;
|
||||||
|
}
|
||||||
|
|
||||||
error = down_interruptible(&ppd->devobj_pager_lock);
|
error = down_interruptible(&ppd->devobj_pager_lock);
|
||||||
if (error) {
|
if (error) {
|
||||||
error = -EINTR;
|
error = -EINTR;
|
||||||
goto out;
|
goto out_unmap;
|
||||||
}
|
}
|
||||||
|
|
||||||
list_add_tail(&pager->list, &ppd->devobj_pager_list);
|
list_add_tail(&pager->list, &ppd->devobj_pager_list);
|
||||||
@@ -1688,6 +1735,10 @@ static int pager_req_map(ihk_os_t os, int fd, size_t len, off_t off,
|
|||||||
pager = 0;
|
pager = 0;
|
||||||
error = 0;
|
error = 0;
|
||||||
|
|
||||||
|
out_unmap:
|
||||||
|
ihk_device_unmap_virtual(dev, resp, sizeof(*resp));
|
||||||
|
ihk_device_unmap_memory(dev, phys, sizeof(*resp));
|
||||||
|
|
||||||
out:
|
out:
|
||||||
if (file) {
|
if (file) {
|
||||||
fput(file);
|
fput(file);
|
||||||
@@ -1862,6 +1913,7 @@ static int pager_req_unmap(ihk_os_t os, uintptr_t handle)
|
|||||||
kfree(pager);
|
kfree(pager);
|
||||||
|
|
||||||
out:
|
out:
|
||||||
|
mcctrl_put_per_proc_data(ppd);
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ MCKERNEL_INCDIR=@MCKERNEL_INCDIR@
|
|||||||
MCKERNEL_LIBDIR=@MCKERNEL_LIBDIR@
|
MCKERNEL_LIBDIR=@MCKERNEL_LIBDIR@
|
||||||
KDIR ?= @KDIR@
|
KDIR ?= @KDIR@
|
||||||
ARCH=@ARCH@
|
ARCH=@ARCH@
|
||||||
CFLAGS=-Wall -O -I. -I$(VPATH)/arch/${ARCH} -I${IHKDIR}
|
CFLAGS=-Wall -O -I. -I$(VPATH)/arch/${ARCH} -I${IHKDIR} -I@abs_builddir@/../../../ihk/linux/include
|
||||||
LDFLAGS=@LDFLAGS@
|
LDFLAGS=@LDFLAGS@
|
||||||
RPATH=$(shell echo $(LDFLAGS)|awk '{for(i=1;i<=NF;i++){if($$i~/^-L/){w=$$i;sub(/^-L/,"-Wl,-rpath,",w);print w}}}')
|
RPATH=$(shell echo $(LDFLAGS)|awk '{for(i=1;i<=NF;i++){if($$i~/^-L/){w=$$i;sub(/^-L/,"-Wl,-rpath,",w);print w}}}')
|
||||||
VPATH=@abs_srcdir@
|
VPATH=@abs_srcdir@
|
||||||
@@ -19,7 +19,7 @@ TARGET=mcexec libsched_yield ldump2mcdump.so
|
|||||||
@uncomment_if_ENABLE_MEMDUMP@TARGET+=eclair
|
@uncomment_if_ENABLE_MEMDUMP@TARGET+=eclair
|
||||||
LIBS=@LIBS@
|
LIBS=@LIBS@
|
||||||
IHKDIR ?= $(VPATH)/../../../ihk/linux/include/
|
IHKDIR ?= $(VPATH)/../../../ihk/linux/include/
|
||||||
MCEXEC_LIBS=-lmcexec -lrt -lnuma -pthread
|
MCEXEC_LIBS=-lmcexec -lrt -lnuma -pthread -L@abs_builddir@/../../../ihk/linux/user -lihk -Wl,-rpath,$(MCKERNEL_LIBDIR)
|
||||||
ENABLE_QLMPI=@ENABLE_QLMPI@
|
ENABLE_QLMPI=@ENABLE_QLMPI@
|
||||||
|
|
||||||
ifeq ($(ENABLE_QLMPI),yes)
|
ifeq ($(ENABLE_QLMPI),yes)
|
||||||
@@ -89,6 +89,7 @@ install::
|
|||||||
mkdir -p -m 755 $(MCKERNEL_LIBDIR)
|
mkdir -p -m 755 $(MCKERNEL_LIBDIR)
|
||||||
install -m 755 ldump2mcdump.so $(MCKERNEL_LIBDIR)
|
install -m 755 ldump2mcdump.so $(MCKERNEL_LIBDIR)
|
||||||
install -m 755 libsched_yield.so.1.0.0 $(MCKERNEL_LIBDIR)
|
install -m 755 libsched_yield.so.1.0.0 $(MCKERNEL_LIBDIR)
|
||||||
|
mkdir -p -m 755 $(MANDIR)/man1
|
||||||
install -m 644 mcexec.1 $(MANDIR)/man1/mcexec.1
|
install -m 644 mcexec.1 $(MANDIR)/man1/mcexec.1
|
||||||
ifeq ($(ENABLE_QLMPI),yes)
|
ifeq ($(ENABLE_QLMPI),yes)
|
||||||
install -m 644 ../include/qlmpilib.h $(MCKERNEL_INCDIR)
|
install -m 644 ../include/qlmpilib.h $(MCKERNEL_INCDIR)
|
||||||
|
|||||||
@@ -89,22 +89,24 @@
|
|||||||
#include <sys/un.h>
|
#include <sys/un.h>
|
||||||
#include "../include/pmi.h"
|
#include "../include/pmi.h"
|
||||||
#include "../include/qlmpi.h"
|
#include "../include/qlmpi.h"
|
||||||
|
#include <ihk/ihklib.h>
|
||||||
|
#include <sys/epoll.h>
|
||||||
|
|
||||||
//#define DEBUG
|
//#define DEBUG
|
||||||
#define ADD_ENVS_OPTION
|
#define ADD_ENVS_OPTION
|
||||||
|
|
||||||
#ifndef DEBUG
|
#ifndef DEBUG
|
||||||
#define __dprint(msg, ...)
|
#define __dprint(msg)
|
||||||
#define __dprintf(arg, ...)
|
#define __dprintf(arg, ...)
|
||||||
#define __eprint(msg, ...)
|
#define __eprint(msg)
|
||||||
#define __eprintf(format, ...)
|
#define __eprintf(format, ...)
|
||||||
#else
|
#else
|
||||||
#define __dprint(msg, ...) {printf("%s: " msg, __FUNCTION__);fflush(stdout);}
|
#define __dprint(msg) {printf("%s: " msg, __FUNCTION__);fflush(stdout);}
|
||||||
#define __dprintf(format, ...) {printf("%s: " format, __FUNCTION__, \
|
#define __dprintf(format, args...) {printf("%s: " format, __FUNCTION__, \
|
||||||
__VA_ARGS__);fflush(stdout);}
|
##args);fflush(stdout);}
|
||||||
#define __eprint(msg, ...) {fprintf(stderr, "%s: " msg, __FUNCTION__);fflush(stderr);}
|
#define __eprint(msg) {fprintf(stderr, "%s: " msg, __FUNCTION__);fflush(stderr);}
|
||||||
#define __eprintf(format, ...) {fprintf(stderr, "%s: " format, __FUNCTION__, \
|
#define __eprintf(format, args...) {fprintf(stderr, "%s: " format, __FUNCTION__, \
|
||||||
__VA_ARGS__);fflush(stderr);}
|
##args);fflush(stderr);}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define CHKANDJUMPF(cond, err, format, ...) \
|
#define CHKANDJUMPF(cond, err, format, ...) \
|
||||||
@@ -1021,6 +1023,89 @@ pid_t master_tid;
|
|||||||
pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
|
pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
|
||||||
pthread_barrier_t init_ready;
|
pthread_barrier_t init_ready;
|
||||||
|
|
||||||
|
pthread_attr_t watchdog_thread_attr;
|
||||||
|
pthread_t watchdog_thread;
|
||||||
|
|
||||||
|
/* Detects hang of McKernel */
|
||||||
|
static void *watchdog_thread_func(void *arg) {
|
||||||
|
int ret = 0;
|
||||||
|
int evfd = -1;
|
||||||
|
int epfd = -1;
|
||||||
|
struct epoll_event event_in;
|
||||||
|
struct epoll_event event_out;
|
||||||
|
|
||||||
|
if ((evfd = ihk_os_get_eventfd(0, IHK_OS_EVENTFD_TYPE_STATUS)) < 0) {
|
||||||
|
fprintf(stderr, "%s: Error: geteventfd failed (%d)\n", __FUNCTION__, evfd);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((epfd = epoll_create(1)) == -1) {
|
||||||
|
fprintf(stderr, "%s: Error: epoll_create failed (%d)\n", __FUNCTION__, epfd);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
memset(&event_in, 0, sizeof(struct epoll_event));
|
||||||
|
event_in.events = EPOLLIN;
|
||||||
|
event_in.data.fd = evfd;
|
||||||
|
if ((ret = epoll_ctl(epfd, EPOLL_CTL_ADD, evfd, &event_in)) != 0) {
|
||||||
|
fprintf(stderr, "%s: Error: epoll_ctl failed (%d)\n", __FUNCTION__, ret);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
do {
|
||||||
|
int nfd;
|
||||||
|
uint64_t counter;
|
||||||
|
ssize_t nread;
|
||||||
|
|
||||||
|
nfd = epoll_wait(epfd, &event_out, 1, -1);
|
||||||
|
if (nfd == -1) {
|
||||||
|
if (errno == EINTR) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
fprintf(stderr, "%s: Error: epoll_wait failed (%s)\n", __FUNCTION__, strerror(errno));
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (nfd == 0) {
|
||||||
|
fprintf(stderr, "%s: Error: epoll_wait timed out unexpectedly\n", __FUNCTION__);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (nfd > 1) {
|
||||||
|
fprintf(stderr, "%s: Error: Too many (%d) events\n", __FUNCTION__, nfd);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (event_out.data.fd != evfd) {
|
||||||
|
fprintf(stderr, "%s: Error: Unknown event (fd:%d)\n", __FUNCTION__, event_out.data.fd);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
nread = read(evfd, &counter, sizeof(counter));
|
||||||
|
if (nread == 0) {
|
||||||
|
fprintf(stderr, "%s: Error: read got EOF\n", __FUNCTION__);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (nread == -1) {
|
||||||
|
fprintf(stderr, "%s: Error: read failed (%s)\n", __FUNCTION__, strerror(errno));
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
fprintf(stderr, "mcexec detected hang of McKernel\n");
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
} while (1);
|
||||||
|
|
||||||
|
out:
|
||||||
|
if (evfd != -1) {
|
||||||
|
close(evfd);
|
||||||
|
}
|
||||||
|
if (epfd != -1) {
|
||||||
|
close(epfd);
|
||||||
|
}
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
static void *main_loop_thread_func(void *arg)
|
static void *main_loop_thread_func(void *arg)
|
||||||
{
|
{
|
||||||
struct thread_data_s *td = (struct thread_data_s *)arg;
|
struct thread_data_s *td = (struct thread_data_s *)arg;
|
||||||
@@ -2479,6 +2564,26 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
init_sigaction();
|
init_sigaction();
|
||||||
|
|
||||||
|
/* Initialize watchdog thread which detects hang of McKernel */
|
||||||
|
|
||||||
|
if ((error = pthread_attr_init(&watchdog_thread_attr))) {
|
||||||
|
fprintf(stderr, "Error: pthread_attr_init failed (%d)\n", error);
|
||||||
|
close(fd);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((error = pthread_attr_setdetachstate(&watchdog_thread_attr, PTHREAD_CREATE_DETACHED))) {
|
||||||
|
fprintf(stderr, "Error: pthread_attr_getdetachstate failed (%d)\n", error);
|
||||||
|
close(fd);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((error = pthread_create(&watchdog_thread, &watchdog_thread_attr, watchdog_thread_func, NULL))) {
|
||||||
|
fprintf(stderr, "Error: pthread_create failed (%d)\n", error);
|
||||||
|
close(fd);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
if (init_worker_threads(fd) < 0) {
|
if (init_worker_threads(fd) < 0) {
|
||||||
perror("worker threads: ");
|
perror("worker threads: ");
|
||||||
close(fd);
|
close(fd);
|
||||||
|
|||||||
@@ -136,6 +136,18 @@ int devobj_create(int fd, size_t len, off_t off, struct memobj **objp, int *maxp
|
|||||||
obj->memobj.flags = MF_HAS_PAGER | MF_DEV_FILE;
|
obj->memobj.flags = MF_HAS_PAGER | MF_DEV_FILE;
|
||||||
obj->memobj.size = len;
|
obj->memobj.size = len;
|
||||||
obj->handle = result.handle;
|
obj->handle = result.handle;
|
||||||
|
|
||||||
|
dkprintf("%s: path=%s\n", __FUNCTION__, result.path);
|
||||||
|
if (result.path[0]) {
|
||||||
|
obj->memobj.path = kmalloc(PATH_MAX, IHK_MC_AP_NOWAIT);
|
||||||
|
if (!obj->memobj.path) {
|
||||||
|
error = -ENOMEM;
|
||||||
|
kprintf("%s: ERROR: Out of memory\n", __FUNCTION__);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
strncpy(obj->memobj.path, result.path, PATH_MAX);
|
||||||
|
}
|
||||||
|
|
||||||
obj->ref = 1;
|
obj->ref = 1;
|
||||||
obj->pfn_pgoff = off / PAGE_SIZE;
|
obj->pfn_pgoff = off / PAGE_SIZE;
|
||||||
obj->npages = npages;
|
obj->npages = npages;
|
||||||
@@ -217,6 +229,11 @@ static void devobj_release(struct memobj *memobj)
|
|||||||
ihk_mc_free_pages(obj->pfn_table, pfn_npages);
|
ihk_mc_free_pages(obj->pfn_table, pfn_npages);
|
||||||
#endif /*POSTK_DEBUG_TEMP_FIX_36*/
|
#endif /*POSTK_DEBUG_TEMP_FIX_36*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (to_memobj(free_obj)->path) {
|
||||||
|
kfree(to_memobj(free_obj)->path);
|
||||||
|
}
|
||||||
|
|
||||||
kfree(free_obj);
|
kfree(free_obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
#define ekprintf(...) kprintf(__VA_ARGS__)
|
#define ekprintf(...) kprintf(__VA_ARGS__)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
mcs_rwlock_lock_t fileobj_list_lock;
|
mcs_lock_t fileobj_list_lock;
|
||||||
static LIST_HEAD(fileobj_list);
|
static LIST_HEAD(fileobj_list);
|
||||||
|
|
||||||
#define FILEOBJ_PAGE_HASH_SHIFT 9
|
#define FILEOBJ_PAGE_HASH_SHIFT 9
|
||||||
@@ -52,7 +52,7 @@ struct fileobj {
|
|||||||
uintptr_t handle;
|
uintptr_t handle;
|
||||||
struct list_head list;
|
struct list_head list;
|
||||||
struct list_head page_hash[FILEOBJ_PAGE_HASH_SIZE];
|
struct list_head page_hash[FILEOBJ_PAGE_HASH_SIZE];
|
||||||
mcs_rwlock_lock_t page_hash_locks[FILEOBJ_PAGE_HASH_SIZE];
|
mcs_lock_t page_hash_locks[FILEOBJ_PAGE_HASH_SIZE];
|
||||||
};
|
};
|
||||||
|
|
||||||
static memobj_release_func_t fileobj_release;
|
static memobj_release_func_t fileobj_release;
|
||||||
@@ -89,7 +89,7 @@ static void fileobj_page_hash_init(struct fileobj *obj)
|
|||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < FILEOBJ_PAGE_HASH_SIZE; ++i) {
|
for (i = 0; i < FILEOBJ_PAGE_HASH_SIZE; ++i) {
|
||||||
mcs_rwlock_init(&obj->page_hash_locks[i]);
|
mcs_lock_init(&obj->page_hash_locks[i]);
|
||||||
INIT_LIST_HEAD(&obj->page_hash[i]);
|
INIT_LIST_HEAD(&obj->page_hash[i]);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
@@ -198,7 +198,7 @@ int fileobj_create(int fd, struct memobj **objp, int *maxprotp, uintptr_t virt_a
|
|||||||
int error;
|
int error;
|
||||||
struct fileobj *newobj = NULL;
|
struct fileobj *newobj = NULL;
|
||||||
struct fileobj *obj;
|
struct fileobj *obj;
|
||||||
struct mcs_rwlock_node node;
|
struct mcs_lock_node node;
|
||||||
|
|
||||||
dkprintf("fileobj_create(%d)\n", fd);
|
dkprintf("fileobj_create(%d)\n", fd);
|
||||||
newobj = kmalloc(sizeof(*newobj), IHK_MC_AP_NOWAIT);
|
newobj = kmalloc(sizeof(*newobj), IHK_MC_AP_NOWAIT);
|
||||||
@@ -223,12 +223,13 @@ int fileobj_create(int fd, struct memobj **objp, int *maxprotp, uintptr_t virt_a
|
|||||||
newobj->memobj.ops = &fileobj_ops;
|
newobj->memobj.ops = &fileobj_ops;
|
||||||
newobj->memobj.flags = MF_HAS_PAGER | MF_REG_FILE;
|
newobj->memobj.flags = MF_HAS_PAGER | MF_REG_FILE;
|
||||||
newobj->handle = result.handle;
|
newobj->handle = result.handle;
|
||||||
|
|
||||||
newobj->sref = 1;
|
newobj->sref = 1;
|
||||||
newobj->cref = 1;
|
newobj->cref = 1;
|
||||||
fileobj_page_hash_init(newobj);
|
fileobj_page_hash_init(newobj);
|
||||||
ihk_mc_spinlock_init(&newobj->memobj.lock);
|
ihk_mc_spinlock_init(&newobj->memobj.lock);
|
||||||
|
|
||||||
mcs_rwlock_writer_lock_noirq(&fileobj_list_lock, &node);
|
mcs_lock_lock_noirq(&fileobj_list_lock, &node);
|
||||||
obj = obj_list_lookup(result.handle);
|
obj = obj_list_lookup(result.handle);
|
||||||
if (!obj) {
|
if (!obj) {
|
||||||
obj_list_insert(newobj);
|
obj_list_insert(newobj);
|
||||||
@@ -240,6 +241,19 @@ int fileobj_create(int fd, struct memobj **objp, int *maxprotp, uintptr_t virt_a
|
|||||||
to_memobj(obj)->status = MEMOBJ_TO_BE_PREFETCHED;
|
to_memobj(obj)->status = MEMOBJ_TO_BE_PREFETCHED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (result.path[0]) {
|
||||||
|
newobj->memobj.path = kmalloc(PATH_MAX, IHK_MC_AP_NOWAIT);
|
||||||
|
if (!newobj->memobj.path) {
|
||||||
|
error = -ENOMEM;
|
||||||
|
kprintf("%s: error: allocating path\n", __FUNCTION__);
|
||||||
|
mcs_lock_unlock_noirq(&fileobj_list_lock, &node);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
strncpy(newobj->memobj.path, result.path, PATH_MAX);
|
||||||
|
}
|
||||||
|
|
||||||
|
dkprintf("%s: %s\n", __FUNCTION__, obj->memobj.path);
|
||||||
|
|
||||||
/* XXX: KNL specific optimization for OFP runs */
|
/* XXX: KNL specific optimization for OFP runs */
|
||||||
if ((to_memobj(obj)->flags & MF_PREMAP) &&
|
if ((to_memobj(obj)->flags & MF_PREMAP) &&
|
||||||
(to_memobj(obj)->flags & MF_ZEROFILL)) {
|
(to_memobj(obj)->flags & MF_ZEROFILL)) {
|
||||||
@@ -308,7 +322,7 @@ error_cleanup:
|
|||||||
to_memobj(obj)->flags & MF_ZEROFILL ? "zerofill" : "");
|
to_memobj(obj)->flags & MF_ZEROFILL ? "zerofill" : "");
|
||||||
}
|
}
|
||||||
|
|
||||||
mcs_rwlock_writer_unlock_noirq(&fileobj_list_lock, &node);
|
mcs_lock_unlock_noirq(&fileobj_list_lock, &node);
|
||||||
|
|
||||||
error = 0;
|
error = 0;
|
||||||
*objp = to_memobj(obj);
|
*objp = to_memobj(obj);
|
||||||
@@ -339,7 +353,7 @@ static void fileobj_release(struct memobj *memobj)
|
|||||||
long free_sref = 0;
|
long free_sref = 0;
|
||||||
uintptr_t free_handle;
|
uintptr_t free_handle;
|
||||||
struct fileobj *free_obj = NULL;
|
struct fileobj *free_obj = NULL;
|
||||||
struct mcs_rwlock_node node;
|
struct mcs_lock_node node;
|
||||||
|
|
||||||
dkprintf("fileobj_release(%p %lx)\n", obj, obj->handle);
|
dkprintf("fileobj_release(%p %lx)\n", obj, obj->handle);
|
||||||
|
|
||||||
@@ -364,7 +378,7 @@ static void fileobj_release(struct memobj *memobj)
|
|||||||
obj->cref,
|
obj->cref,
|
||||||
free_obj,
|
free_obj,
|
||||||
to_memobj(obj)->flags & MF_ZEROFILL ? "zerofill" : "");
|
to_memobj(obj)->flags & MF_ZEROFILL ? "zerofill" : "");
|
||||||
mcs_rwlock_writer_lock_noirq(&fileobj_list_lock, &node);
|
mcs_lock_lock_noirq(&fileobj_list_lock, &node);
|
||||||
/* zap page_list */
|
/* zap page_list */
|
||||||
for (;;) {
|
for (;;) {
|
||||||
struct page *page;
|
struct page *page;
|
||||||
@@ -434,8 +448,13 @@ static void fileobj_release(struct memobj *memobj)
|
|||||||
kfree(to_memobj(free_obj)->pages);
|
kfree(to_memobj(free_obj)->pages);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (to_memobj(free_obj)->path) {
|
||||||
|
dkprintf("%s: %s\n", __FUNCTION__, to_memobj(free_obj)->path);
|
||||||
|
kfree(to_memobj(free_obj)->path);
|
||||||
|
}
|
||||||
|
|
||||||
obj_list_remove(free_obj);
|
obj_list_remove(free_obj);
|
||||||
mcs_rwlock_writer_unlock_noirq(&fileobj_list_lock, &node);
|
mcs_lock_unlock_noirq(&fileobj_list_lock, &node);
|
||||||
kfree(free_obj);
|
kfree(free_obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -481,10 +500,10 @@ static void fileobj_do_pageio(void *args0)
|
|||||||
struct page *page;
|
struct page *page;
|
||||||
ihk_mc_user_context_t ctx;
|
ihk_mc_user_context_t ctx;
|
||||||
ssize_t ss;
|
ssize_t ss;
|
||||||
struct mcs_rwlock_node mcs_node;
|
struct mcs_lock_node mcs_node;
|
||||||
int hash = (off >> PAGE_SHIFT) & FILEOBJ_PAGE_HASH_MASK;
|
int hash = (off >> PAGE_SHIFT) & FILEOBJ_PAGE_HASH_MASK;
|
||||||
|
|
||||||
mcs_rwlock_writer_lock_noirq(&obj->page_hash_locks[hash],
|
mcs_lock_lock_noirq(&obj->page_hash_locks[hash],
|
||||||
&mcs_node);
|
&mcs_node);
|
||||||
page = __fileobj_page_hash_lookup(obj, hash, off);
|
page = __fileobj_page_hash_lookup(obj, hash, off);
|
||||||
if (!page) {
|
if (!page) {
|
||||||
@@ -492,10 +511,10 @@ static void fileobj_do_pageio(void *args0)
|
|||||||
}
|
}
|
||||||
|
|
||||||
while (page->mode == PM_PAGEIO) {
|
while (page->mode == PM_PAGEIO) {
|
||||||
mcs_rwlock_writer_unlock_noirq(&obj->page_hash_locks[hash],
|
mcs_lock_unlock_noirq(&obj->page_hash_locks[hash],
|
||||||
&mcs_node);
|
&mcs_node);
|
||||||
cpu_pause();
|
cpu_pause();
|
||||||
mcs_rwlock_writer_lock_noirq(&obj->page_hash_locks[hash],
|
mcs_lock_lock_noirq(&obj->page_hash_locks[hash],
|
||||||
&mcs_node);
|
&mcs_node);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -509,7 +528,7 @@ static void fileobj_do_pageio(void *args0)
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
page->mode = PM_PAGEIO;
|
page->mode = PM_PAGEIO;
|
||||||
mcs_rwlock_writer_unlock_noirq(&obj->page_hash_locks[hash],
|
mcs_lock_unlock_noirq(&obj->page_hash_locks[hash],
|
||||||
&mcs_node);
|
&mcs_node);
|
||||||
|
|
||||||
ihk_mc_syscall_arg0(&ctx) = PAGER_REQ_READ;
|
ihk_mc_syscall_arg0(&ctx) = PAGER_REQ_READ;
|
||||||
@@ -522,7 +541,7 @@ static void fileobj_do_pageio(void *args0)
|
|||||||
__FUNCTION__, obj->handle);
|
__FUNCTION__, obj->handle);
|
||||||
ss = syscall_generic_forwarding(__NR_mmap, &ctx);
|
ss = syscall_generic_forwarding(__NR_mmap, &ctx);
|
||||||
|
|
||||||
mcs_rwlock_writer_lock_noirq(&obj->page_hash_locks[hash],
|
mcs_lock_lock_noirq(&obj->page_hash_locks[hash],
|
||||||
&mcs_node);
|
&mcs_node);
|
||||||
if (page->mode != PM_PAGEIO) {
|
if (page->mode != PM_PAGEIO) {
|
||||||
kprintf("fileobj_do_pageio(%p,%lx,%lx):"
|
kprintf("fileobj_do_pageio(%p,%lx,%lx):"
|
||||||
@@ -549,7 +568,7 @@ static void fileobj_do_pageio(void *args0)
|
|||||||
page->mode = PM_DONE_PAGEIO;
|
page->mode = PM_DONE_PAGEIO;
|
||||||
}
|
}
|
||||||
out:
|
out:
|
||||||
mcs_rwlock_writer_unlock_noirq(&obj->page_hash_locks[hash],
|
mcs_lock_unlock_noirq(&obj->page_hash_locks[hash],
|
||||||
&mcs_node);
|
&mcs_node);
|
||||||
fileobj_release(&obj->memobj); /* got fileobj_get_page() */
|
fileobj_release(&obj->memobj); /* got fileobj_get_page() */
|
||||||
kfree(args0);
|
kfree(args0);
|
||||||
@@ -568,7 +587,7 @@ static int fileobj_get_page(struct memobj *memobj, off_t off,
|
|||||||
uintptr_t phys = -1;
|
uintptr_t phys = -1;
|
||||||
struct page *page;
|
struct page *page;
|
||||||
struct pageio_args *args = NULL;
|
struct pageio_args *args = NULL;
|
||||||
struct mcs_rwlock_node mcs_node;
|
struct mcs_lock_node mcs_node;
|
||||||
int hash = (off >> PAGE_SHIFT) & FILEOBJ_PAGE_HASH_MASK;
|
int hash = (off >> PAGE_SHIFT) & FILEOBJ_PAGE_HASH_MASK;
|
||||||
|
|
||||||
dkprintf("fileobj_get_page(%p,%lx,%x,%x,%p)\n", obj, off, p2align, virt_addr, physp);
|
dkprintf("fileobj_get_page(%p,%lx,%x,%x,%p)\n", obj, off, p2align, virt_addr, physp);
|
||||||
@@ -619,7 +638,7 @@ static int fileobj_get_page(struct memobj *memobj, off_t off,
|
|||||||
goto out_nolock;
|
goto out_nolock;
|
||||||
}
|
}
|
||||||
|
|
||||||
mcs_rwlock_writer_lock_noirq(&obj->page_hash_locks[hash],
|
mcs_lock_lock_noirq(&obj->page_hash_locks[hash],
|
||||||
&mcs_node);
|
&mcs_node);
|
||||||
page = __fileobj_page_hash_lookup(obj, hash, off);
|
page = __fileobj_page_hash_lookup(obj, hash, off);
|
||||||
if (!page || (page->mode == PM_WILL_PAGEIO)
|
if (!page || (page->mode == PM_WILL_PAGEIO)
|
||||||
@@ -698,7 +717,7 @@ static int fileobj_get_page(struct memobj *memobj, off_t off,
|
|||||||
*physp = page_to_phys(page);
|
*physp = page_to_phys(page);
|
||||||
virt = NULL;
|
virt = NULL;
|
||||||
out:
|
out:
|
||||||
mcs_rwlock_writer_unlock_noirq(&obj->page_hash_locks[hash],
|
mcs_lock_unlock_noirq(&obj->page_hash_locks[hash],
|
||||||
&mcs_node);
|
&mcs_node);
|
||||||
out_nolock:
|
out_nolock:
|
||||||
if (virt) {
|
if (virt) {
|
||||||
@@ -775,7 +794,7 @@ static int fileobj_lookup_page(struct memobj *memobj, off_t off,
|
|||||||
struct fileobj *obj = to_fileobj(memobj);
|
struct fileobj *obj = to_fileobj(memobj);
|
||||||
int error = -1;
|
int error = -1;
|
||||||
struct page *page;
|
struct page *page;
|
||||||
struct mcs_rwlock_node mcs_node;
|
struct mcs_lock_node mcs_node;
|
||||||
int hash = (off >> PAGE_SHIFT) & FILEOBJ_PAGE_HASH_MASK;
|
int hash = (off >> PAGE_SHIFT) & FILEOBJ_PAGE_HASH_MASK;
|
||||||
|
|
||||||
dkprintf("fileobj_lookup_page(%p,%lx,%x,%p)\n", obj, off, p2align, physp);
|
dkprintf("fileobj_lookup_page(%p,%lx,%x,%p)\n", obj, off, p2align, physp);
|
||||||
@@ -784,7 +803,7 @@ static int fileobj_lookup_page(struct memobj *memobj, off_t off,
|
|||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
mcs_rwlock_reader_lock_noirq(&obj->page_hash_locks[hash],
|
mcs_lock_lock_noirq(&obj->page_hash_locks[hash],
|
||||||
&mcs_node);
|
&mcs_node);
|
||||||
|
|
||||||
page = __fileobj_page_hash_lookup(obj, hash, off);
|
page = __fileobj_page_hash_lookup(obj, hash, off);
|
||||||
@@ -796,7 +815,7 @@ static int fileobj_lookup_page(struct memobj *memobj, off_t off,
|
|||||||
error = 0;
|
error = 0;
|
||||||
|
|
||||||
out:
|
out:
|
||||||
mcs_rwlock_reader_unlock_noirq(&obj->page_hash_locks[hash],
|
mcs_lock_unlock_noirq(&obj->page_hash_locks[hash],
|
||||||
&mcs_node);
|
&mcs_node);
|
||||||
|
|
||||||
dkprintf("fileobj_lookup_page(%p,%lx,%x,%p): %d \n",
|
dkprintf("fileobj_lookup_page(%p,%lx,%x,%p): %d \n",
|
||||||
|
|||||||
@@ -362,10 +362,13 @@ int prepare_process_ranges_args_envs(struct thread *thread,
|
|||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
|
||||||
proc->saved_cmdline_len = p->args_len - ((argc + 1) * sizeof(char **));
|
proc->saved_cmdline_len = p->args_len - ((argc + 2) * sizeof(char **));
|
||||||
memcpy(proc->saved_cmdline,
|
memcpy(proc->saved_cmdline,
|
||||||
(char *)args_envs + ((argc + 1) * sizeof(char **)),
|
(char *)args_envs + ((argc + 2) * sizeof(char **)),
|
||||||
proc->saved_cmdline_len);
|
proc->saved_cmdline_len);
|
||||||
|
dkprintf("%s: saved_cmdline: %s\n",
|
||||||
|
__FUNCTION__,
|
||||||
|
proc->saved_cmdline);
|
||||||
|
|
||||||
for (a = argv; *a; a++) {
|
for (a = argv; *a; a++) {
|
||||||
*a = (char *)addr + (unsigned long)*a; // Process' address space!
|
*a = (char *)addr + (unsigned long)*a; // Process' address space!
|
||||||
@@ -594,14 +597,9 @@ static int syscall_packet_handler(struct ihk_ikc_channel_desc *c,
|
|||||||
|
|
||||||
case SCD_MSG_PREPARE_PROCESS:
|
case SCD_MSG_PREPARE_PROCESS:
|
||||||
|
|
||||||
if((rc = process_msg_prepare_process(packet->arg)) == 0){
|
pckt.err = process_msg_prepare_process(packet->arg);
|
||||||
pckt.msg = SCD_MSG_PREPARE_PROCESS_ACKED;
|
pckt.msg = SCD_MSG_PREPARE_PROCESS_ACKED;
|
||||||
pckt.err = 0;
|
pckt.reply = packet->reply;
|
||||||
}
|
|
||||||
else{
|
|
||||||
pckt.msg = SCD_MSG_PREPARE_PROCESS_NACKED;
|
|
||||||
pckt.err = rc;
|
|
||||||
}
|
|
||||||
pckt.ref = packet->ref;
|
pckt.ref = packet->ref;
|
||||||
pckt.arg = packet->arg;
|
pckt.arg = packet->arg;
|
||||||
syscall_channel_send(resp_channel, &pckt);
|
syscall_channel_send(resp_channel, &pckt);
|
||||||
@@ -657,10 +655,11 @@ static int syscall_packet_handler(struct ihk_ikc_channel_desc *c,
|
|||||||
memcpy(&info, sp, sizeof(struct mcctrl_signal));
|
memcpy(&info, sp, sizeof(struct mcctrl_signal));
|
||||||
ihk_mc_unmap_virtual(sp, 1, 0);
|
ihk_mc_unmap_virtual(sp, 1, 0);
|
||||||
ihk_mc_unmap_memory(NULL, pp, sizeof(struct mcctrl_signal));
|
ihk_mc_unmap_memory(NULL, pp, sizeof(struct mcctrl_signal));
|
||||||
pckt.msg = SCD_MSG_SEND_SIGNAL;
|
pckt.msg = SCD_MSG_SEND_SIGNAL_ACK;
|
||||||
pckt.err = 0;
|
pckt.err = 0;
|
||||||
pckt.ref = packet->ref;
|
pckt.ref = packet->ref;
|
||||||
pckt.arg = packet->arg;
|
pckt.arg = packet->arg;
|
||||||
|
pckt.reply = packet->reply;
|
||||||
syscall_channel_send(resp_channel, &pckt);
|
syscall_channel_send(resp_channel, &pckt);
|
||||||
|
|
||||||
rc = do_kill(NULL, info.pid, info.tid, info.sig, &info.info, 0);
|
rc = do_kill(NULL, info.pid, info.tid, info.sig, &info.info, 0);
|
||||||
@@ -733,6 +732,7 @@ static int syscall_packet_handler(struct ihk_ikc_channel_desc *c,
|
|||||||
pckt.msg = SCD_MSG_PERF_ACK;
|
pckt.msg = SCD_MSG_PERF_ACK;
|
||||||
pckt.err = 0;
|
pckt.err = 0;
|
||||||
pckt.arg = packet->arg;
|
pckt.arg = packet->arg;
|
||||||
|
pckt.reply = packet->reply;
|
||||||
ihk_ikc_send(resp_channel, &pckt, 0);
|
ihk_ikc_send(resp_channel, &pckt, 0);
|
||||||
|
|
||||||
ret = 0;
|
ret = 0;
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ void *__kmalloc(int size, ihk_mc_ap_flag flag);
|
|||||||
void __kfree(void *ptr);
|
void __kfree(void *ptr);
|
||||||
|
|
||||||
int _memcheck(void *ptr, char *msg, char *file, int line, int free);
|
int _memcheck(void *ptr, char *msg, char *file, int line, int free);
|
||||||
int memcheckall();
|
int memcheckall(void);
|
||||||
int freecheck(int runcount);
|
int freecheck(int runcount);
|
||||||
void kmalloc_consolidate_free_list(void);
|
void kmalloc_consolidate_free_list(void);
|
||||||
|
|
||||||
|
|||||||
@@ -61,6 +61,7 @@ struct memobj {
|
|||||||
/* For pre-mapped memobjects */
|
/* For pre-mapped memobjects */
|
||||||
void **pages;
|
void **pages;
|
||||||
int nr_pages;
|
int nr_pages;
|
||||||
|
char *path;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef void memobj_release_func_t(struct memobj *obj);
|
typedef void memobj_release_func_t(struct memobj *obj);
|
||||||
|
|||||||
@@ -13,6 +13,7 @@
|
|||||||
#define HEADER_PAGER_H
|
#define HEADER_PAGER_H
|
||||||
|
|
||||||
#include <ihk/types.h>
|
#include <ihk/types.h>
|
||||||
|
#include <limits.h>
|
||||||
|
|
||||||
enum pager_op {
|
enum pager_op {
|
||||||
PAGER_REQ_CREATE = 0x0001,
|
PAGER_REQ_CREATE = 0x0001,
|
||||||
@@ -32,6 +33,7 @@ struct pager_create_result {
|
|||||||
int maxprot;
|
int maxprot;
|
||||||
uint32_t flags;
|
uint32_t flags;
|
||||||
size_t size;
|
size_t size;
|
||||||
|
char path[PATH_MAX];
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -46,6 +48,7 @@ struct pager_map_result {
|
|||||||
uintptr_t handle;
|
uintptr_t handle;
|
||||||
int maxprot;
|
int maxprot;
|
||||||
int8_t padding[4];
|
int8_t padding[4];
|
||||||
|
char path[PATH_MAX];
|
||||||
};
|
};
|
||||||
|
|
||||||
/* for pager_req_pfn() */
|
/* for pager_req_pfn() */
|
||||||
|
|||||||
@@ -142,9 +142,7 @@
|
|||||||
#define WCONTINUED 0x00000008
|
#define WCONTINUED 0x00000008
|
||||||
#define WNOWAIT 0x01000000 /* Don't reap, just poll status. */
|
#define WNOWAIT 0x01000000 /* Don't reap, just poll status. */
|
||||||
|
|
||||||
#ifdef POSTK_DEBUG_ARCH_DEP_44 /* wait() add support __WALL */
|
|
||||||
#define __WALL 0x40000000 /* Wait on all children, regardless of type */
|
#define __WALL 0x40000000 /* Wait on all children, regardless of type */
|
||||||
#endif /* POSTK_DEBUG_ARCH_DEP_44 */
|
|
||||||
#define __WCLONE 0x80000000
|
#define __WCLONE 0x80000000
|
||||||
|
|
||||||
/* idtype */
|
/* idtype */
|
||||||
@@ -827,8 +825,8 @@ struct process *find_process(int pid, struct mcs_rwlock_node_irqsave *lock);
|
|||||||
void process_unlock(struct process *proc, struct mcs_rwlock_node_irqsave *lock);
|
void process_unlock(struct process *proc, struct mcs_rwlock_node_irqsave *lock);
|
||||||
void chain_process(struct process *);
|
void chain_process(struct process *);
|
||||||
void chain_thread(struct thread *);
|
void chain_thread(struct thread *);
|
||||||
void proc_init();
|
void proc_init(void);
|
||||||
void set_timer();
|
void set_timer(void);
|
||||||
struct sig_pending *hassigpending(struct thread *thread);
|
struct sig_pending *hassigpending(struct thread *thread);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -30,7 +30,6 @@
|
|||||||
|
|
||||||
#define SCD_MSG_PREPARE_PROCESS 0x1
|
#define SCD_MSG_PREPARE_PROCESS 0x1
|
||||||
#define SCD_MSG_PREPARE_PROCESS_ACKED 0x2
|
#define SCD_MSG_PREPARE_PROCESS_ACKED 0x2
|
||||||
#define SCD_MSG_PREPARE_PROCESS_NACKED 0x7
|
|
||||||
#define SCD_MSG_SCHEDULE_PROCESS 0x3
|
#define SCD_MSG_SCHEDULE_PROCESS 0x3
|
||||||
#define SCD_MSG_WAKE_UP_SYSCALL_THREAD 0x14
|
#define SCD_MSG_WAKE_UP_SYSCALL_THREAD 0x14
|
||||||
|
|
||||||
@@ -38,8 +37,9 @@
|
|||||||
#define SCD_MSG_INIT_CHANNEL_ACKED 0x6
|
#define SCD_MSG_INIT_CHANNEL_ACKED 0x6
|
||||||
|
|
||||||
#define SCD_MSG_SYSCALL_ONESIDE 0x4
|
#define SCD_MSG_SYSCALL_ONESIDE 0x4
|
||||||
#define SCD_MSG_SEND_SIGNAL 0x8
|
#define SCD_MSG_SEND_SIGNAL 0x7
|
||||||
#define SCD_MSG_CLEANUP_PROCESS 0x9
|
#define SCD_MSG_SEND_SIGNAL_ACK 0x8
|
||||||
|
#define SCD_MSG_CLEANUP_PROCESS 0x9
|
||||||
#define SCD_MSG_GET_VDSO_INFO 0xa
|
#define SCD_MSG_GET_VDSO_INFO 0xa
|
||||||
|
|
||||||
#define SCD_MSG_GET_CPU_MAPPING 0xc
|
#define SCD_MSG_GET_CPU_MAPPING 0xc
|
||||||
@@ -168,10 +168,8 @@ typedef unsigned long __cpu_set_unit;
|
|||||||
|
|
||||||
struct program_load_desc {
|
struct program_load_desc {
|
||||||
int num_sections;
|
int num_sections;
|
||||||
int status;
|
|
||||||
int cpu;
|
int cpu;
|
||||||
int pid;
|
int pid;
|
||||||
int err;
|
|
||||||
int stack_prot;
|
int stack_prot;
|
||||||
int pgid;
|
int pgid;
|
||||||
int cred[8];
|
int cred[8];
|
||||||
@@ -241,6 +239,7 @@ enum mcctrl_os_cpu_operation {
|
|||||||
struct ikc_scd_packet {
|
struct ikc_scd_packet {
|
||||||
int msg;
|
int msg;
|
||||||
int err;
|
int err;
|
||||||
|
void *reply;
|
||||||
union {
|
union {
|
||||||
/* for traditional SCD_MSG_* */
|
/* for traditional SCD_MSG_* */
|
||||||
struct {
|
struct {
|
||||||
@@ -276,7 +275,7 @@ struct ikc_scd_packet {
|
|||||||
int eventfd_type;
|
int eventfd_type;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
char padding[12];
|
char padding[8];
|
||||||
};
|
};
|
||||||
|
|
||||||
#define IHK_SCD_REQ_THREAD_SPINNING 0
|
#define IHK_SCD_REQ_THREAD_SPINNING 0
|
||||||
@@ -340,7 +339,7 @@ struct syscall_post {
|
|||||||
#define SYSCALL_FOOTER return do_syscall(&request, ihk_mc_get_processor_id(), 0)
|
#define SYSCALL_FOOTER return do_syscall(&request, ihk_mc_get_processor_id(), 0)
|
||||||
|
|
||||||
extern long do_syscall(struct syscall_request *req, int cpu, int pid);
|
extern long do_syscall(struct syscall_request *req, int cpu, int pid);
|
||||||
extern int obtain_clone_cpuid();
|
int obtain_clone_cpuid(cpu_set_t *cpu_set);
|
||||||
extern long syscall_generic_forwarding(int n, ihk_mc_user_context_t *ctx);
|
extern long syscall_generic_forwarding(int n, ihk_mc_user_context_t *ctx);
|
||||||
|
|
||||||
#define DECLARATOR(number,name) __NR_##name = number,
|
#define DECLARATOR(number,name) __NR_##name = number,
|
||||||
@@ -458,7 +457,7 @@ static inline unsigned long timespec_to_jiffy(const struct timespec *ats)
|
|||||||
return ats->tv_sec * 100 + ats->tv_nsec / 10000000;
|
return ats->tv_sec * 100 + ats->tv_nsec / 10000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
void reset_cputime();
|
void reset_cputime(void);
|
||||||
void set_cputime(int mode);
|
void set_cputime(int mode);
|
||||||
int do_munmap(void *addr, size_t len);
|
int do_munmap(void *addr, size_t len);
|
||||||
intptr_t do_mmap(intptr_t addr0, size_t len0, int prot, int flags, int fd,
|
intptr_t do_mmap(intptr_t addr0, size_t len0, int prot, int flags, int fd,
|
||||||
@@ -520,7 +519,6 @@ enum perf_ctrl_type {
|
|||||||
|
|
||||||
struct perf_ctrl_desc {
|
struct perf_ctrl_desc {
|
||||||
enum perf_ctrl_type ctrl_type;
|
enum perf_ctrl_type ctrl_type;
|
||||||
int status;
|
|
||||||
union {
|
union {
|
||||||
/* for SET, GET */
|
/* for SET, GET */
|
||||||
struct {
|
struct {
|
||||||
|
|||||||
@@ -1746,11 +1746,16 @@ static void rusage_init()
|
|||||||
{
|
{
|
||||||
int npages;
|
int npages;
|
||||||
unsigned long phys;
|
unsigned long phys;
|
||||||
|
const struct ihk_mc_cpu_info *cpu_info = ihk_mc_get_cpu_info();
|
||||||
|
|
||||||
|
if (!cpu_info) {
|
||||||
|
panic("rusage_init: PANIC: ihk_mc_get_cpu_info returned NULL");
|
||||||
|
}
|
||||||
|
|
||||||
npages = (sizeof(struct rusage_global) + PAGE_SIZE -1) >> PAGE_SHIFT;
|
npages = (sizeof(struct rusage_global) + PAGE_SIZE -1) >> PAGE_SHIFT;
|
||||||
rusage = ihk_mc_alloc_pages(npages, IHK_MC_AP_CRITICAL);
|
rusage = ihk_mc_alloc_pages(npages, IHK_MC_AP_CRITICAL);
|
||||||
memset(rusage, 0, npages * PAGE_SIZE);
|
memset(rusage, 0, npages * PAGE_SIZE);
|
||||||
rusage->num_processors = num_processors;
|
rusage->num_processors = cpu_info->ncpus;
|
||||||
rusage->num_numa_nodes = ihk_mc_get_nr_numa_nodes();
|
rusage->num_numa_nodes = ihk_mc_get_nr_numa_nodes();
|
||||||
rusage->ns_per_tsc = ihk_mc_get_ns_per_tsc();
|
rusage->ns_per_tsc = ihk_mc_get_ns_per_tsc();
|
||||||
phys = virt_to_phys(rusage);
|
phys = virt_to_phys(rusage);
|
||||||
|
|||||||
@@ -1438,6 +1438,20 @@ int change_prot_process_memory_range(struct process_vm *vm,
|
|||||||
clrattr = oldattr & ~newattr;
|
clrattr = oldattr & ~newattr;
|
||||||
setattr = newattr & ~oldattr;
|
setattr = newattr & ~oldattr;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* If this is a file mapping don't set any new prot write.
|
||||||
|
* We need to keep the page table read-only to trigger a page
|
||||||
|
* fault for copy-on-write later on
|
||||||
|
*/
|
||||||
|
if (range->memobj && (range->flag & VR_PRIVATE)) {
|
||||||
|
setattr &= ~PTATTR_WRITABLE;
|
||||||
|
if (!clrattr && !setattr) {
|
||||||
|
range->flag = newflag;
|
||||||
|
error = 0;
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ihk_mc_spinlock_lock_noirq(&vm->page_table_lock);
|
ihk_mc_spinlock_lock_noirq(&vm->page_table_lock);
|
||||||
error = ihk_mc_pt_change_attr_range(vm->address_space->page_table,
|
error = ihk_mc_pt_change_attr_range(vm->address_space->page_table,
|
||||||
(void *)range->start, (void *)range->end,
|
(void *)range->start, (void *)range->end,
|
||||||
|
|||||||
@@ -369,6 +369,7 @@ void process_procfs_request(struct ikc_scd_packet *rpacket)
|
|||||||
0UL,
|
0UL,
|
||||||
0UL,
|
0UL,
|
||||||
0,
|
0,
|
||||||
|
range->memobj && range->memobj->path ? range->memobj->path :
|
||||||
range->start ==
|
range->start ==
|
||||||
(unsigned long)vm->vdso_addr ? "[vdso]" :
|
(unsigned long)vm->vdso_addr ? "[vdso]" :
|
||||||
range->start ==
|
range->start ==
|
||||||
@@ -418,7 +419,7 @@ void process_procfs_request(struct ikc_scd_packet *rpacket)
|
|||||||
}
|
}
|
||||||
kfree(tmp);
|
kfree(tmp);
|
||||||
#else /* POSTK_DEBUG_TEMP_FIX_47 */
|
#else /* POSTK_DEBUG_TEMP_FIX_47 */
|
||||||
ans = written + 1;
|
ans = written;
|
||||||
eof = 1;
|
eof = 1;
|
||||||
#endif /* POSTK_DEBUG_TEMP_FIX_47 */
|
#endif /* POSTK_DEBUG_TEMP_FIX_47 */
|
||||||
goto end;
|
goto end;
|
||||||
|
|||||||
103
kernel/syscall.c
103
kernel/syscall.c
@@ -669,21 +669,12 @@ do_wait(int pid, int *status, int options, void *rusage)
|
|||||||
|
|
||||||
mcs_rwlock_writer_lock_noirq(&thread->proc->children_lock, &lock);
|
mcs_rwlock_writer_lock_noirq(&thread->proc->children_lock, &lock);
|
||||||
list_for_each_entry_safe(child, next, &proc->children_list, siblings_list) {
|
list_for_each_entry_safe(child, next, &proc->children_list, siblings_list) {
|
||||||
#ifdef POSTK_DEBUG_ARCH_DEP_44 /* wait() add support __WALL */
|
|
||||||
/*
|
/*
|
||||||
if (!(options & __WALL)) {
|
if (!(options & __WALL) &&
|
||||||
if (!(!!(options & __WCLONE) ^ (child->termsig == SIGCHLD))) {
|
!(!!(options & __WCLONE) ^ (child->termsig == SIGCHLD))) {
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
#else /* POSTK_DEBUG_ARCH_DEP_44 */
|
|
||||||
/*
|
|
||||||
if (!(!!(options & __WCLONE) ^ (child->termsig == SIGCHLD))) {
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
#endif /* POSTK_DEBUG_ARCH_DEP_44 */
|
|
||||||
|
|
||||||
/* Find thread with pid == tid, this will be either the main thread
|
/* Find thread with pid == tid, this will be either the main thread
|
||||||
* or the one we are looking for specifically when __WCLONE is passed */
|
* or the one we are looking for specifically when __WCLONE is passed */
|
||||||
@@ -882,11 +873,7 @@ SYSCALL_DECLARE(wait4)
|
|||||||
int rc;
|
int rc;
|
||||||
struct rusage usage;
|
struct rusage usage;
|
||||||
|
|
||||||
#ifdef POSTK_DEBUG_ARCH_DEP_44 /* wait() add support __WALL */
|
|
||||||
if(options & ~(WNOHANG | WUNTRACED | WCONTINUED | __WCLONE | __WALL)){
|
if(options & ~(WNOHANG | WUNTRACED | WCONTINUED | __WCLONE | __WALL)){
|
||||||
#else /* POSTK_DEBUG_ARCH_DEP_44 */
|
|
||||||
if(options & ~(WNOHANG | WUNTRACED | WCONTINUED | __WCLONE)){
|
|
||||||
#endif /* POSTK_DEBUG_ARCH_DEP_44 */
|
|
||||||
dkprintf("wait4: unexpected options(%x).\n", options);
|
dkprintf("wait4: unexpected options(%x).\n", options);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
@@ -918,11 +905,7 @@ SYSCALL_DECLARE(waitid)
|
|||||||
pid = -1;
|
pid = -1;
|
||||||
else
|
else
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
#ifdef POSTK_DEBUG_ARCH_DEP_44 /* wait() add support __WALL */
|
|
||||||
if(options & ~(WEXITED | WSTOPPED | WCONTINUED | WNOHANG | WNOWAIT | __WCLONE | __WALL)){
|
if(options & ~(WEXITED | WSTOPPED | WCONTINUED | WNOHANG | WNOWAIT | __WCLONE | __WALL)){
|
||||||
#else /* POSTK_DEBUG_ARCH_DEP_44 */
|
|
||||||
if(options & ~(WEXITED | WSTOPPED | WCONTINUED | WNOHANG | WNOWAIT | __WCLONE)){
|
|
||||||
#endif /* POSTK_DEBUG_ARCH_DEP_44 */
|
|
||||||
dkprintf("wait4: unexpected options(%x).\n", options);
|
dkprintf("wait4: unexpected options(%x).\n", options);
|
||||||
dkprintf("waitid: unexpected options(%x).\n", options);
|
dkprintf("waitid: unexpected options(%x).\n", options);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
@@ -2152,6 +2135,9 @@ static void munmap_all(void)
|
|||||||
/* free vm_ranges which do_munmap() failed to remove. */
|
/* free vm_ranges which do_munmap() failed to remove. */
|
||||||
free_process_memory_ranges(thread->vm);
|
free_process_memory_ranges(thread->vm);
|
||||||
|
|
||||||
|
/* reset vm_region's map area */
|
||||||
|
thread->vm->region.map_end = thread->vm->region.map_start;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
} /* munmap_all() */
|
} /* munmap_all() */
|
||||||
|
|
||||||
@@ -2254,21 +2240,22 @@ SYSCALL_DECLARE(execve)
|
|||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cpu_local_var(current)->proc->ptrace) {
|
if (thread->proc->ptrace) {
|
||||||
ihk_mc_syscall_ret(ctx) = 0;
|
ihk_mc_syscall_ret(ctx) = 0;
|
||||||
ptrace_syscall_event(cpu_local_var(current));
|
ptrace_syscall_event(thread);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Unmap all memory areas of the process, userspace will be gone */
|
/* Unmap all memory areas of the process, userspace will be gone */
|
||||||
munmap_all();
|
munmap_all();
|
||||||
|
|
||||||
ihk_mc_init_user_process(&cpu_local_var(current)->ctx,
|
/* Code assumes no process switch from here on */
|
||||||
&cpu_local_var(current)->uctx,
|
preempt_disable();
|
||||||
((char *)cpu_local_var(current)) +
|
ihk_mc_init_user_process(&thread->ctx, &thread->uctx,
|
||||||
|
((char *)thread) +
|
||||||
KERNEL_STACK_NR_PAGES * PAGE_SIZE, desc->entry, 0);
|
KERNEL_STACK_NR_PAGES * PAGE_SIZE, desc->entry, 0);
|
||||||
|
|
||||||
/* Create virtual memory ranges and update args/envs */
|
/* Create virtual memory ranges and update args/envs */
|
||||||
if (prepare_process_ranges_args_envs(cpu_local_var(current), desc, desc,
|
if (prepare_process_ranges_args_envs(thread, desc, desc,
|
||||||
PTATTR_NO_EXECUTE | PTATTR_WRITABLE | PTATTR_FOR_USER,
|
PTATTR_NO_EXECUTE | PTATTR_WRITABLE | PTATTR_FOR_USER,
|
||||||
argv_flat, argv_flat_len, envp_flat, envp_flat_len) != 0) {
|
argv_flat, argv_flat_len, envp_flat, envp_flat_len) != 0) {
|
||||||
kprintf("execve(): PANIC: preparing ranges, args, envs, stack\n");
|
kprintf("execve(): PANIC: preparing ranges, args, envs, stack\n");
|
||||||
@@ -2303,7 +2290,7 @@ SYSCALL_DECLARE(execve)
|
|||||||
clear_fp_regs(thread);
|
clear_fp_regs(thread);
|
||||||
#endif /* POSTK_DEBUG_TEMP_FIX_19 */
|
#endif /* POSTK_DEBUG_TEMP_FIX_19 */
|
||||||
|
|
||||||
error = ptrace_report_exec(cpu_local_var(current));
|
error = ptrace_report_exec(thread);
|
||||||
if(error) {
|
if(error) {
|
||||||
kprintf("execve(): ERROR: ptrace_report_exec()\n");
|
kprintf("execve(): ERROR: ptrace_report_exec()\n");
|
||||||
}
|
}
|
||||||
@@ -2326,10 +2313,16 @@ end:
|
|||||||
/* Lock run queue because enter_user_mode expects to release it */
|
/* Lock run queue because enter_user_mode expects to release it */
|
||||||
cpu_local_var(runq_irqstate) =
|
cpu_local_var(runq_irqstate) =
|
||||||
ihk_mc_spinlock_lock(&(get_this_cpu_local_var()->runq_lock));
|
ihk_mc_spinlock_lock(&(get_this_cpu_local_var()->runq_lock));
|
||||||
|
preempt_enable();
|
||||||
|
|
||||||
ihk_mc_switch_context(NULL, &cpu_local_var(current)->ctx,
|
ihk_mc_switch_context(NULL, &thread->ctx, thread);
|
||||||
cpu_local_var(current));
|
|
||||||
|
/* not reached */
|
||||||
|
return -EFAULT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* no preempt_enable, errors can only happen before we disabled it */
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2484,7 +2477,7 @@ retry_tid:
|
|||||||
|
|
||||||
/* TODO: clean-up new */
|
/* TODO: clean-up new */
|
||||||
release_cpuid(cpuid);
|
release_cpuid(cpuid);
|
||||||
return -EFAULT;
|
return newproc->pid;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* In a single threaded process TID equals to PID */
|
/* In a single threaded process TID equals to PID */
|
||||||
@@ -6803,22 +6796,14 @@ SYSCALL_DECLARE(sched_getaffinity)
|
|||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
dkprintf("%s() len: %d, mask: %p\n", __FUNCTION__, len, u_cpu_set);
|
dkprintf("%s() len: %d, mask: %p\n", __FUNCTION__, len, u_cpu_set);
|
||||||
#ifdef POSTK_DEBUG_TEMP_FIX_5 /* sched_getaffinity arguments check add (S64FX_10) */
|
|
||||||
if (len * 8 < num_processors) {
|
if (len * 8 < num_processors) {
|
||||||
kprintf("%s:%d Too small buffer.\n", __FILE__, __LINE__);
|
dkprintf("%s: Too small buffer.\n", __func__);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
if (len & (sizeof(unsigned long)-1)) {
|
if (len & (sizeof(unsigned long)-1)) {
|
||||||
kprintf("%s:%d Size not align to unsigned long.\n", __FILE__, __LINE__);
|
dkprintf("%s: Size not align to unsigned long.\n", __func__);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
#else /* POSTK_DEBUG_TEMP_FIX_5 */
|
|
||||||
if (!len || u_cpu_set == (cpu_set_t *)-1)
|
|
||||||
return -EINVAL;
|
|
||||||
|
|
||||||
if ((len * BITS_PER_BYTE) < __CPU_SETSIZE)
|
|
||||||
return -EINVAL;
|
|
||||||
#endif /* POSTK_DEBUG_TEMP_FIX_5 */
|
|
||||||
|
|
||||||
len = MIN2(len, sizeof(k_cpu_set));
|
len = MIN2(len, sizeof(k_cpu_set));
|
||||||
|
|
||||||
@@ -6853,11 +6838,8 @@ SYSCALL_DECLARE(sched_getaffinity)
|
|||||||
}
|
}
|
||||||
|
|
||||||
dkprintf("%s() len: %d, ret: %d\n", __FUNCTION__, len, ret);
|
dkprintf("%s() len: %d, ret: %d\n", __FUNCTION__, len, ret);
|
||||||
#ifdef POSTK_DEBUG_TEMP_FIX_58 /* sched_getafifnity return value fix */
|
|
||||||
return ret;
|
return ret;
|
||||||
#else /* POSTK_DEBUG_TEMP_FIX_58 */
|
|
||||||
return len;
|
|
||||||
#endif /* POSTK_DEBUG_TEMP_FIX_58 */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SYSCALL_DECLARE(get_cpu_id)
|
SYSCALL_DECLARE(get_cpu_id)
|
||||||
@@ -7722,8 +7704,8 @@ SYSCALL_DECLARE(mremap)
|
|||||||
const size_t newsize0 = ihk_mc_syscall_arg2(ctx);
|
const size_t newsize0 = ihk_mc_syscall_arg2(ctx);
|
||||||
const int flags = ihk_mc_syscall_arg3(ctx);
|
const int flags = ihk_mc_syscall_arg3(ctx);
|
||||||
const uintptr_t newaddr = ihk_mc_syscall_arg4(ctx);
|
const uintptr_t newaddr = ihk_mc_syscall_arg4(ctx);
|
||||||
const ssize_t oldsize = (oldsize0 + PAGE_SIZE - 1) & PAGE_MASK;
|
const size_t oldsize = (oldsize0 + PAGE_SIZE - 1) & PAGE_MASK;
|
||||||
const ssize_t newsize = (newsize0 + PAGE_SIZE - 1) & PAGE_MASK;
|
const size_t newsize = (newsize0 + PAGE_SIZE - 1) & PAGE_MASK;
|
||||||
const uintptr_t oldstart = oldaddr;
|
const uintptr_t oldstart = oldaddr;
|
||||||
const uintptr_t oldend = oldstart + oldsize;
|
const uintptr_t oldend = oldstart + oldsize;
|
||||||
struct thread *thread = cpu_local_var(current);
|
struct thread *thread = cpu_local_var(current);
|
||||||
@@ -7742,9 +7724,9 @@ SYSCALL_DECLARE(mremap)
|
|||||||
oldaddr, oldsize0, newsize0, flags, newaddr);
|
oldaddr, oldsize0, newsize0, flags, newaddr);
|
||||||
ihk_mc_spinlock_lock_noirq(&vm->memory_range_lock);
|
ihk_mc_spinlock_lock_noirq(&vm->memory_range_lock);
|
||||||
|
|
||||||
|
/* check arguments */
|
||||||
if ((oldaddr & ~PAGE_MASK)
|
if ((oldaddr & ~PAGE_MASK)
|
||||||
|| (oldsize < 0)
|
|| (newsize == 0)
|
||||||
|| (newsize <= 0)
|
|
||||||
|| (flags & ~(MREMAP_MAYMOVE | MREMAP_FIXED))
|
|| (flags & ~(MREMAP_MAYMOVE | MREMAP_FIXED))
|
||||||
|| ((flags & MREMAP_FIXED)
|
|| ((flags & MREMAP_FIXED)
|
||||||
&& !(flags & MREMAP_MAYMOVE))
|
&& !(flags & MREMAP_MAYMOVE))
|
||||||
@@ -7757,6 +7739,24 @@ SYSCALL_DECLARE(mremap)
|
|||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (oldend < oldstart) {
|
||||||
|
error = -EINVAL;
|
||||||
|
ekprintf("sys_mremap(%#lx,%#lx,%#lx,%#x,%#lx):"
|
||||||
|
"old range overflow. %d\n",
|
||||||
|
oldaddr, oldsize0, newsize0,
|
||||||
|
flags, newaddr, error);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (newsize > (vm->region.user_end - vm->region.user_start)) {
|
||||||
|
error = -ENOMEM;
|
||||||
|
ekprintf("sys_mremap(%#lx,%#lx,%#lx,%#x,%#lx):"
|
||||||
|
"cannot allocate. %d\n",
|
||||||
|
oldaddr, oldsize0, newsize0,
|
||||||
|
flags, newaddr, error);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
/* check original mapping */
|
/* check original mapping */
|
||||||
range = lookup_process_memory_range(vm, oldstart, oldstart+PAGE_SIZE);
|
range = lookup_process_memory_range(vm, oldstart, oldstart+PAGE_SIZE);
|
||||||
if (!range || (oldstart < range->start) || (range->end < oldend)
|
if (!range || (oldstart < range->start) || (range->end < oldend)
|
||||||
@@ -7771,15 +7771,6 @@ SYSCALL_DECLARE(mremap)
|
|||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (oldend < oldstart) {
|
|
||||||
error = -EINVAL;
|
|
||||||
ekprintf("sys_mremap(%#lx,%#lx,%#lx,%#x,%#lx):"
|
|
||||||
"old range overflow. %d\n",
|
|
||||||
oldaddr, oldsize0, newsize0, flags, newaddr,
|
|
||||||
error);
|
|
||||||
goto out;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* determine new mapping range */
|
/* determine new mapping range */
|
||||||
need_relocate = 0;
|
need_relocate = 0;
|
||||||
if (flags & MREMAP_FIXED) {
|
if (flags & MREMAP_FIXED) {
|
||||||
|
|||||||
@@ -60,9 +60,9 @@ void ihk_mc_boot_cpu(int cpuid, unsigned long pc);
|
|||||||
int ihk_mc_get_processor_id(void);
|
int ihk_mc_get_processor_id(void);
|
||||||
int ihk_mc_get_hardware_processor_id(void);
|
int ihk_mc_get_hardware_processor_id(void);
|
||||||
int ihk_mc_get_numa_id(void);
|
int ihk_mc_get_numa_id(void);
|
||||||
int ihk_mc_get_nr_cores();
|
int ihk_mc_get_nr_cores(void);
|
||||||
int ihk_mc_get_nr_linux_cores();
|
int ihk_mc_get_nr_linux_cores(void);
|
||||||
int ihk_mc_get_osnum();
|
int ihk_mc_get_osnum(void);
|
||||||
int ihk_mc_get_core(int id, unsigned long *linux_core_id, unsigned long *apic_id,
|
int ihk_mc_get_core(int id, unsigned long *linux_core_id, unsigned long *apic_id,
|
||||||
int *numa_id);
|
int *numa_id);
|
||||||
int ihk_mc_get_ikc_cpu(int id);
|
int ihk_mc_get_ikc_cpu(int id);
|
||||||
@@ -78,7 +78,7 @@ void ihk_mc_init_context(ihk_mc_kernel_context_t *new_ctx,
|
|||||||
void (*next_function)(void));
|
void (*next_function)(void));
|
||||||
|
|
||||||
int ihk_mc_get_extra_reg_id(unsigned long hw_config, unsigned long hw_config_ext);
|
int ihk_mc_get_extra_reg_id(unsigned long hw_config, unsigned long hw_config_ext);
|
||||||
unsigned int ihk_mc_get_nr_extra_regs();
|
unsigned int ihk_mc_get_nr_extra_regs(void);
|
||||||
int ihk_mc_get_extra_reg_idx(int id);
|
int ihk_mc_get_extra_reg_idx(int id);
|
||||||
unsigned int ihk_mc_get_extra_reg_msr(int id);
|
unsigned int ihk_mc_get_extra_reg_msr(int id);
|
||||||
unsigned long ihk_mc_get_extra_reg_event(int id);
|
unsigned long ihk_mc_get_extra_reg_event(int id);
|
||||||
|
|||||||
@@ -224,7 +224,7 @@ void remote_flush_tlb_array_cpumask(struct process_vm *vm,
|
|||||||
int cpu_id);
|
int cpu_id);
|
||||||
|
|
||||||
int ihk_get_kmsg_buf(unsigned long *addr, unsigned long *size);
|
int ihk_get_kmsg_buf(unsigned long *addr, unsigned long *size);
|
||||||
char *ihk_get_kargs();
|
char *ihk_get_kargs(void);
|
||||||
|
|
||||||
int ihk_set_monitor(unsigned long addr, unsigned long size);
|
int ihk_set_monitor(unsigned long addr, unsigned long size);
|
||||||
int ihk_set_rusage(unsigned long addr, unsigned long size);
|
int ihk_set_rusage(unsigned long addr, unsigned long size);
|
||||||
|
|||||||
38
test/issues/1065/CT_001.sh
Executable file
38
test/issues/1065/CT_001.sh
Executable file
@@ -0,0 +1,38 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_001
|
||||||
|
arg_path=`realpath ./dummy_file`
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start *******************"
|
||||||
|
real_path=`realpath ${arg_path}`
|
||||||
|
|
||||||
|
echo "file map: ${arg_path}"
|
||||||
|
|
||||||
|
${MCEXEC} ./file_map ${arg_path} | tee ./${TESTNAME}.log
|
||||||
|
if [ X$? != X0 ]; then
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "** grep ${real_path} from maps"
|
||||||
|
grep -a -e "${real_path}$" ./${TESTNAME}.log
|
||||||
|
|
||||||
|
if [ X$? = X0 ]; then
|
||||||
|
echo "[OK] ${real_path} is found"
|
||||||
|
else
|
||||||
|
echo "[NG] ${real_path} is not found"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ X$fail = X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
rm ./${TESTNAME}.log
|
||||||
38
test/issues/1065/CT_002.sh
Executable file
38
test/issues/1065/CT_002.sh
Executable file
@@ -0,0 +1,38 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_002
|
||||||
|
arg_path=./dummy_file
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start *******************"
|
||||||
|
real_path=`realpath ${arg_path}`
|
||||||
|
|
||||||
|
echo "file map: ${arg_path}"
|
||||||
|
|
||||||
|
${MCEXEC} ./file_map ${arg_path} | tee ./${TESTNAME}.log
|
||||||
|
if [ X$? != X0 ]; then
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "** grep ${real_path} from maps"
|
||||||
|
grep -a -e "${real_path}$" ./${TESTNAME}.log
|
||||||
|
|
||||||
|
if [ X$? = X0 ]; then
|
||||||
|
echo "[OK] ${real_path} is found"
|
||||||
|
else
|
||||||
|
echo "[NG] ${real_path} is not found"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ X$fail = X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
rm ./${TESTNAME}.log
|
||||||
38
test/issues/1065/CT_003.sh
Executable file
38
test/issues/1065/CT_003.sh
Executable file
@@ -0,0 +1,38 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_003
|
||||||
|
arg_path=./lnk_to_dummy
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start *******************"
|
||||||
|
real_path=`realpath ${arg_path}`
|
||||||
|
|
||||||
|
echo "file map: ${arg_path}"
|
||||||
|
|
||||||
|
${MCEXEC} ./file_map ${arg_path} | tee ./${TESTNAME}.log
|
||||||
|
if [ X$? != X0 ]; then
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "** grep ${real_path} from maps"
|
||||||
|
grep -a -e "${real_path}$" ./${TESTNAME}.log
|
||||||
|
|
||||||
|
if [ X$? = X0 ]; then
|
||||||
|
echo "[OK] ${real_path} is found"
|
||||||
|
else
|
||||||
|
echo "[NG] ${real_path} is not found"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ X$fail = X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
rm ./${TESTNAME}.log
|
||||||
52
test/issues/1065/CT_004.sh
Executable file
52
test/issues/1065/CT_004.sh
Executable file
@@ -0,0 +1,52 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_004
|
||||||
|
test_program=./print_maps
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start *******************"
|
||||||
|
real_path=`realpath ${test_program}`
|
||||||
|
interp_path=`readelf -l ${test_program} | grep "interpreter:" | sed -r 's/.*\[.*interpreter:\s(.*)\].*/\1/'`
|
||||||
|
interp_real_path=`realpath ${interp_path}`
|
||||||
|
|
||||||
|
echo "exec : ${test_program}"
|
||||||
|
|
||||||
|
${MCEXEC} ${test_program} | tee ./${TESTNAME}.log
|
||||||
|
if [ X$? != X0 ]; then
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "** grep ${real_path} from maps"
|
||||||
|
grep -a -e "${real_path}$" ./${TESTNAME}.log
|
||||||
|
|
||||||
|
if [ X$? = X0 ]; then
|
||||||
|
echo "[OK] ${real_path} is found"
|
||||||
|
else
|
||||||
|
echo "[NG] ${real_path} is not found"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "** grep ${interp_real_path} from maps"
|
||||||
|
grep -a -e "${interp_real_path}$" ./${TESTNAME}.log
|
||||||
|
|
||||||
|
if [ X$? = X0 ]; then
|
||||||
|
echo "[OK] ${interp_real_path} is found"
|
||||||
|
else
|
||||||
|
echo "[NG] ${interp_real_path} is not found"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
if [ X$fail = X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
rm ./${TESTNAME}.log
|
||||||
53
test/issues/1065/CT_005.sh
Executable file
53
test/issues/1065/CT_005.sh
Executable file
@@ -0,0 +1,53 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_005
|
||||||
|
test_program=./static_print_maps
|
||||||
|
ref_program=./print_maps
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start *******************"
|
||||||
|
real_path=`realpath ${test_program}`
|
||||||
|
interp_path=`readelf -l ${ref_program} | grep "interpreter:" | sed -r 's/.*\[.*interpreter:\s(.*)\].*/\1/'`
|
||||||
|
interp_real_path=`realpath ${interp_path}`
|
||||||
|
|
||||||
|
echo "exec : ${test_program}"
|
||||||
|
|
||||||
|
${MCEXEC} ${test_program} | tee ./${TESTNAME}.log
|
||||||
|
if [ X$? != X0 ]; then
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "** grep ${real_path} from maps"
|
||||||
|
grep -a -e "${real_path}$" ./${TESTNAME}.log
|
||||||
|
|
||||||
|
if [ X$? = X0 ]; then
|
||||||
|
echo "[OK] ${real_path} is found"
|
||||||
|
else
|
||||||
|
echo "[NG] ${real_path} is not found"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "** grep ${interp_real_path} from maps"
|
||||||
|
grep -a -e "${interp_real_path}$" ./${TESTNAME}.log
|
||||||
|
|
||||||
|
if [ X$? != X0 ]; then
|
||||||
|
echo "[OK] ${interp_real_path} is not found"
|
||||||
|
else
|
||||||
|
echo "[NG] ${interp_real_path} is found"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
if [ X$fail = X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
rm ./${TESTNAME}.log
|
||||||
23
test/issues/1065/CT_006.sh
Executable file
23
test/issues/1065/CT_006.sh
Executable file
@@ -0,0 +1,23 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_006
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start *******************"
|
||||||
|
${MCEXEC} cat /proc/self/maps
|
||||||
|
|
||||||
|
if [ $? = 0 ]; then
|
||||||
|
echo "[OK] shell script is running normaly"
|
||||||
|
else
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ X$fail = X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
67
test/issues/1065/CT_007.sh
Executable file
67
test/issues/1065/CT_007.sh
Executable file
@@ -0,0 +1,67 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_007
|
||||||
|
exec_program="./print_maps_and_cmdline"
|
||||||
|
test_program="./call_execve ${exec_program}"
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start *******************"
|
||||||
|
real_path=`realpath ${exec_program}`
|
||||||
|
interp_path=`readelf -l ${exec_program} | grep "interpreter:" | sed -r 's/.*\[.*interpreter:\s(.*)\].*/\1/'`
|
||||||
|
interp_real_path=`realpath ${interp_path}`
|
||||||
|
|
||||||
|
echo "exec : ${test_program}"
|
||||||
|
|
||||||
|
#${test_program} | tee ./${TESTNAME}.log
|
||||||
|
${MCEXEC} ${test_program} 1> ./${TESTNAME}_maps.log 2> ./${TESTNAME}_cmdline.log
|
||||||
|
if [ X$? != X0 ]; then
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
cat ./${TESTNAME}_maps.log
|
||||||
|
echo ""
|
||||||
|
echo "** grep ${real_path} from maps"
|
||||||
|
grep -a -e "${real_path}$" ./${TESTNAME}_maps.log
|
||||||
|
|
||||||
|
if [ X$? = X0 ]; then
|
||||||
|
echo "[OK] ${real_path} is found"
|
||||||
|
else
|
||||||
|
echo "[NG] ${real_path} is not found"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "** grep ${interp_real_path} from maps"
|
||||||
|
grep -a -e "${interp_real_path}$" ./${TESTNAME}_maps.log
|
||||||
|
|
||||||
|
if [ X$? = X0 ]; then
|
||||||
|
echo "[OK] ${interp_real_path} is found"
|
||||||
|
else
|
||||||
|
echo "[NG] ${interp_real_path} is not found"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
cat ./${TESTNAME}_cmdline.log
|
||||||
|
echo ""
|
||||||
|
echo "** grep ${exec_program} from cmdline"
|
||||||
|
grep -a -e "${exec_program}" ./${TESTNAME}_cmdline.log
|
||||||
|
|
||||||
|
if [ X$? = X0 ]; then
|
||||||
|
echo "[OK] ${exec_program} is found"
|
||||||
|
else
|
||||||
|
echo "[NG] ${exec_program} is not found"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ X$fail = X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
rm ./${TESTNAME}_maps.log
|
||||||
|
rm ./${TESTNAME}_cmdline.log
|
||||||
66
test/issues/1065/CT_008.sh
Executable file
66
test/issues/1065/CT_008.sh
Executable file
@@ -0,0 +1,66 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_008
|
||||||
|
exec_program="./print_maps_and_cmdline"
|
||||||
|
test_program="./call_execve.sh ${exec_program}"
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start *******************"
|
||||||
|
real_path=`realpath ${exec_program}`
|
||||||
|
interp_path=`readelf -l ${exec_program} | grep "interpreter:" | sed -r 's/.*\[.*interpreter:\s(.*)\].*/\1/'`
|
||||||
|
interp_real_path=`realpath ${interp_path}`
|
||||||
|
|
||||||
|
echo "exec : ${test_program}"
|
||||||
|
|
||||||
|
${MCEXEC} ${test_program} 1> ./${TESTNAME}_maps.log 2> ./${TESTNAME}_cmdline.log
|
||||||
|
if [ X$? != X0 ]; then
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
cat ./${TESTNAME}_maps.log
|
||||||
|
echo ""
|
||||||
|
echo "** grep ${real_path} from maps"
|
||||||
|
grep -a -e "${real_path}$" ./${TESTNAME}_maps.log
|
||||||
|
|
||||||
|
if [ X$? = X0 ]; then
|
||||||
|
echo "[OK] ${real_path} is found"
|
||||||
|
else
|
||||||
|
echo "[NG] ${real_path} is not found"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "** grep ${interp_real_path} from maps"
|
||||||
|
grep -a -e "${interp_real_path}$" ./${TESTNAME}_maps.log
|
||||||
|
|
||||||
|
if [ X$? = X0 ]; then
|
||||||
|
echo "[OK] ${interp_real_path} is found"
|
||||||
|
else
|
||||||
|
echo "[NG] ${interp_real_path} is not found"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
cat ./${TESTNAME}_cmdline.log
|
||||||
|
echo ""
|
||||||
|
echo "** grep ${exec_program} from cmdline"
|
||||||
|
grep -a -e "${exec_program}" ./${TESTNAME}_cmdline.log
|
||||||
|
|
||||||
|
if [ X$? = X0 ]; then
|
||||||
|
echo "[OK] ${exec_program} is found"
|
||||||
|
else
|
||||||
|
echo "[NG] ${exec_program} is not found"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ X$fail = X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
#rm ./${TESTNAME}_maps.log
|
||||||
|
#rm ./${TESTNAME}_cmdline.log
|
||||||
0
test/issues/1065/CT_008_cmdline.log
Normal file
0
test/issues/1065/CT_008_cmdline.log
Normal file
3
test/issues/1065/CT_008_maps.log
Normal file
3
test/issues/1065/CT_008_maps.log
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
STKN:[main] This is shell script
|
||||||
|
STKN:[main_loop] filename:./call_execve shell:0x(nil)
|
||||||
|
STKN:[main_loop] filename:./print_maps_and_cmdline shell:0x(nil)
|
||||||
45
test/issues/1065/Makefile
Normal file
45
test/issues/1065/Makefile
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
CC = gcc
|
||||||
|
MCK_DIR=/home/satoken/ppos
|
||||||
|
|
||||||
|
MCEXEC=$(MCK_DIR)/bin/mcexec
|
||||||
|
TARGET= file_map print_maps static_print_maps call_execve print_maps_and_cmdline config
|
||||||
|
|
||||||
|
CPPFLAGS =
|
||||||
|
LDFLAGS =
|
||||||
|
|
||||||
|
all: $(TARGET)
|
||||||
|
|
||||||
|
file_map: file_map.c
|
||||||
|
$(CC) -o $@ $^ $(LDFLAGS)
|
||||||
|
|
||||||
|
print_maps: print_maps.c
|
||||||
|
$(CC) -o $@ $^ $(LDFLAGS)
|
||||||
|
|
||||||
|
print_maps_and_cmdline: print_maps_and_cmdline.c
|
||||||
|
$(CC) -o $@ $^ $(LDFLAGS)
|
||||||
|
|
||||||
|
static_print_maps: print_maps.c
|
||||||
|
$(CC) -o $@ $^ $(LDFLAGS) -static
|
||||||
|
|
||||||
|
call_execve: call_execve.c
|
||||||
|
$(CC) -o $@ $^ $(LDFLAGS)
|
||||||
|
|
||||||
|
config:
|
||||||
|
@echo "MCEXEC=$(MCEXEC)" > ./config
|
||||||
|
|
||||||
|
init:
|
||||||
|
ln -nfs ./dummy_file ./lnk_to_dummy
|
||||||
|
|
||||||
|
test: init all
|
||||||
|
./CT_001.sh
|
||||||
|
./CT_002.sh
|
||||||
|
./CT_003.sh
|
||||||
|
./CT_004.sh
|
||||||
|
./CT_005.sh
|
||||||
|
./CT_006.sh
|
||||||
|
./CT_007.sh
|
||||||
|
./CT_008.sh
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f $(TARGET) *.o ./lnk_to_dummy
|
||||||
|
|
||||||
32
test/issues/1065/README
Normal file
32
test/issues/1065/README
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
|
||||||
|
CT_001:
|
||||||
|
ファイル実体を指す絶対パスを指定したファイルマップを実行する
|
||||||
|
-> /proc/<PID>/maps にファイル実体の絶対パスで表示される
|
||||||
|
|
||||||
|
CT_002:
|
||||||
|
ファイル実体を指す相対パスを指定したファイルマップを実行する
|
||||||
|
-> /proc/<PID>/maps にファイル実体の絶対パスで表示される
|
||||||
|
|
||||||
|
CT_003:
|
||||||
|
ファイル実体を指すシンボリックリンクを指定したファイルマップを実行する
|
||||||
|
-> /proc/<PID>/maps にファイル実体の絶対パスで表示される
|
||||||
|
|
||||||
|
CT_004:
|
||||||
|
ELF形式のプログラムを実行する
|
||||||
|
-> /proc/<PID>/maps に実行したプログラムと、そのinterpの絶対パスが表示される
|
||||||
|
|
||||||
|
CT_005:
|
||||||
|
static linkでビルドされたELF形式のプログラムを実行する
|
||||||
|
-> /proc/<PID>/maps に実行したプログラムと、そのinterpの絶対パスが表示される
|
||||||
|
|
||||||
|
CT_006:
|
||||||
|
シェルスクリプトを実行する
|
||||||
|
-> シェルスクリプトが正しく実行される
|
||||||
|
|
||||||
|
CT_007:
|
||||||
|
execveを行うプログラムを実行する
|
||||||
|
-> execveされたプログラムが正常に実行され、/proc下のmaps, cmdline から新しい情報が取得できる
|
||||||
|
|
||||||
|
CT_008:
|
||||||
|
execveを行うプログラムをシェルスクリプトから実行する
|
||||||
|
-> execveされたプログラムが正常に実行され、/proc下のmaps, cmdline から新しい情報が取得できる
|
||||||
28
test/issues/1065/call_execve.c
Normal file
28
test/issues/1065/call_execve.c
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
int main(int argc, char* argv[])
|
||||||
|
{
|
||||||
|
char* command;
|
||||||
|
char* exargv[] = {NULL, NULL};
|
||||||
|
char* exenvp[] = {NULL};
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
if (argc < 2) {
|
||||||
|
printf("Error: too few arguments\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
exargv[0] = argv[1];
|
||||||
|
|
||||||
|
rc = execve(argv[1], exargv, exenvp);
|
||||||
|
|
||||||
|
/* Don't reach here */
|
||||||
|
if (rc == -1) {
|
||||||
|
perror("Error: failed to execve");
|
||||||
|
}
|
||||||
|
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
4
test/issues/1065/call_execve.sh
Executable file
4
test/issues/1065/call_execve.sh
Executable file
@@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
./call_execve $*
|
||||||
|
|
||||||
1
test/issues/1065/dummy_file
Normal file
1
test/issues/1065/dummy_file
Normal file
@@ -0,0 +1 @@
|
|||||||
|
This is Test file for mmap.
|
||||||
46
test/issues/1065/file_map.c
Normal file
46
test/issues/1065/file_map.c
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <sys/mman.h>
|
||||||
|
|
||||||
|
#define FILE_SIZE 1024
|
||||||
|
#define CMD_SIZE 128
|
||||||
|
|
||||||
|
int main(int argc, char* argv[])
|
||||||
|
{
|
||||||
|
int fd;
|
||||||
|
void *file_map;
|
||||||
|
long page_size, file_map_size;
|
||||||
|
char command[CMD_SIZE];
|
||||||
|
|
||||||
|
if (argc < 2) {
|
||||||
|
printf("Error: too few arguments\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
fd = open(argv[1], O_RDWR);
|
||||||
|
|
||||||
|
if (fd < 0) {
|
||||||
|
printf("Error: open %s\n", argv[1]);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
page_size = sysconf(_SC_PAGESIZE);
|
||||||
|
file_map_size = (FILE_SIZE / page_size + 1) * page_size;
|
||||||
|
|
||||||
|
file_map = mmap(0, file_map_size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
|
||||||
|
if (file_map == MAP_FAILED) {
|
||||||
|
printf("Error: mmap file\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
sprintf(command, "cat /proc/%d/maps", getpid());
|
||||||
|
system(command);
|
||||||
|
|
||||||
|
close(fd);
|
||||||
|
munmap(file_map, file_map_size);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
13
test/issues/1065/print_maps.c
Normal file
13
test/issues/1065/print_maps.c
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
int main(void)
|
||||||
|
{
|
||||||
|
char command[128];
|
||||||
|
|
||||||
|
sprintf(command, "cat /proc/%d/maps", getpid());
|
||||||
|
system(command);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
21
test/issues/1065/print_maps_and_cmdline.c
Normal file
21
test/issues/1065/print_maps_and_cmdline.c
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#define CMD_SIZE 128
|
||||||
|
|
||||||
|
int main(void)
|
||||||
|
{
|
||||||
|
char command[CMD_SIZE];
|
||||||
|
|
||||||
|
memset(command, '0', CMD_SIZE);
|
||||||
|
sprintf(command, "cat /proc/%d/maps", getpid());
|
||||||
|
system(command);
|
||||||
|
|
||||||
|
memset(command, '0', CMD_SIZE);
|
||||||
|
sprintf(command, "cat /proc/%d/cmdline 1>&2", getpid());
|
||||||
|
system(command);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
225
test/issues/1065/result.log
Normal file
225
test/issues/1065/result.log
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
./CT_001.sh
|
||||||
|
*** CT_001 start *******************
|
||||||
|
file map: /home/satoken/2018_work/04/test/dummy_file
|
||||||
|
000000400000-000000401000 r-xs 0 0:0 0 /home/satoken/2018_work/04/test/file_map
|
||||||
|
000000600000-000000601000 r--s 0 0:0 0 /home/satoken/2018_work/04/test/file_map
|
||||||
|
000000601000-000000602000 rw-s 0 0:0 0 /home/satoken/2018_work/04/test/file_map
|
||||||
|
2aaaaa9f8000-2aaaaaa00000 rw-s 0 0:0 0
|
||||||
|
2aaaaaa00000-2aaaaaa21000 r-xs 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac21000-2aaaaac22000 r--s 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac22000-2aaaaac23000 rw-s 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac23000-2aaaaac24000 rw-p 0 0:0 0
|
||||||
|
2aaaaac24000-2aaaaac26000 r-xs 0 0:0 0 [vdso]
|
||||||
|
2aaaaac26000-2aaaaac27000 rw-p 0 0:0 0
|
||||||
|
2aaaaac4d000-2aaaaac4e000 rw-p 0 0:0 0
|
||||||
|
2aaaaac4e000-2aaaaae06000 r-xp 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaaae06000-2aaaab006000 ---p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab006000-2aaaab00a000 r--p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab00a000-2aaaab00c000 rw-p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab00c000-2aaaab011000 rw-p 0 0:0 0
|
||||||
|
2aaaab011000-2aaaab013000 rw-p 0 0:0 0
|
||||||
|
2aaaab013000-2aaaab014000 rw-s 0 0:0 0 /home/satoken/2018_work/04/test/dummy_file
|
||||||
|
547fff800000-548000000000 rw-s 0 0:0 0 [stack]
|
||||||
|
|
||||||
|
** grep /home/satoken/2018_work/04/test/dummy_file from maps
|
||||||
|
2aaaab013000-2aaaab014000 rw-s 0 0:0 0 /home/satoken/2018_work/04/test/dummy_file
|
||||||
|
[OK] /home/satoken/2018_work/04/test/dummy_file is found
|
||||||
|
*** CT_001 PASSED
|
||||||
|
|
||||||
|
./CT_002.sh
|
||||||
|
*** CT_002 start *******************
|
||||||
|
file map: ./dummy_file
|
||||||
|
000000400000-000000401000 r-xs 0 0:0 0 /home/satoken/2018_work/04/test/file_map
|
||||||
|
000000600000-000000601000 r--s 0 0:0 0 /home/satoken/2018_work/04/test/file_map
|
||||||
|
000000601000-000000602000 rw-s 0 0:0 0 /home/satoken/2018_work/04/test/file_map
|
||||||
|
2aaaaa9f8000-2aaaaaa00000 rw-s 0 0:0 0
|
||||||
|
2aaaaaa00000-2aaaaaa21000 r-xs 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac21000-2aaaaac22000 r--s 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac22000-2aaaaac23000 rw-s 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac23000-2aaaaac24000 rw-p 0 0:0 0
|
||||||
|
2aaaaac24000-2aaaaac26000 r-xs 0 0:0 0 [vdso]
|
||||||
|
2aaaaac26000-2aaaaac27000 rw-p 0 0:0 0
|
||||||
|
2aaaaac4d000-2aaaaac4e000 rw-p 0 0:0 0
|
||||||
|
2aaaaac4e000-2aaaaae06000 r-xp 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaaae06000-2aaaab006000 ---p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab006000-2aaaab00a000 r--p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab00a000-2aaaab00c000 rw-p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab00c000-2aaaab011000 rw-p 0 0:0 0
|
||||||
|
2aaaab011000-2aaaab013000 rw-p 0 0:0 0
|
||||||
|
2aaaab013000-2aaaab014000 rw-s 0 0:0 0 /home/satoken/2018_work/04/test/dummy_file
|
||||||
|
547fff800000-548000000000 rw-s 0 0:0 0 [stack]
|
||||||
|
|
||||||
|
** grep /home/satoken/2018_work/04/test/dummy_file from maps
|
||||||
|
2aaaab013000-2aaaab014000 rw-s 0 0:0 0 /home/satoken/2018_work/04/test/dummy_file
|
||||||
|
[OK] /home/satoken/2018_work/04/test/dummy_file is found
|
||||||
|
*** CT_002 PASSED
|
||||||
|
|
||||||
|
./CT_003.sh
|
||||||
|
*** CT_003 start *******************
|
||||||
|
file map: ./lnk_to_dummy
|
||||||
|
000000400000-000000401000 r-xs 0 0:0 0 /home/satoken/2018_work/04/test/file_map
|
||||||
|
000000600000-000000601000 r--s 0 0:0 0 /home/satoken/2018_work/04/test/file_map
|
||||||
|
000000601000-000000602000 rw-s 0 0:0 0 /home/satoken/2018_work/04/test/file_map
|
||||||
|
2aaaaa9f8000-2aaaaaa00000 rw-s 0 0:0 0
|
||||||
|
2aaaaaa00000-2aaaaaa21000 r-xs 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac21000-2aaaaac22000 r--s 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac22000-2aaaaac23000 rw-s 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac23000-2aaaaac24000 rw-p 0 0:0 0
|
||||||
|
2aaaaac24000-2aaaaac26000 r-xs 0 0:0 0 [vdso]
|
||||||
|
2aaaaac26000-2aaaaac27000 rw-p 0 0:0 0
|
||||||
|
2aaaaac4d000-2aaaaac4e000 rw-p 0 0:0 0
|
||||||
|
2aaaaac4e000-2aaaaae06000 r-xp 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaaae06000-2aaaab006000 ---p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab006000-2aaaab00a000 r--p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab00a000-2aaaab00c000 rw-p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab00c000-2aaaab011000 rw-p 0 0:0 0
|
||||||
|
2aaaab011000-2aaaab013000 rw-p 0 0:0 0
|
||||||
|
2aaaab013000-2aaaab014000 rw-s 0 0:0 0 /home/satoken/2018_work/04/test/dummy_file
|
||||||
|
547fff800000-548000000000 rw-s 0 0:0 0 [stack]
|
||||||
|
|
||||||
|
** grep /home/satoken/2018_work/04/test/dummy_file from maps
|
||||||
|
2aaaab013000-2aaaab014000 rw-s 0 0:0 0 /home/satoken/2018_work/04/test/dummy_file
|
||||||
|
[OK] /home/satoken/2018_work/04/test/dummy_file is found
|
||||||
|
*** CT_003 PASSED
|
||||||
|
|
||||||
|
./CT_004.sh
|
||||||
|
*** CT_004 start *******************
|
||||||
|
exec : ./print_maps
|
||||||
|
000000400000-000000401000 r-xs 0 0:0 0 /home/satoken/2018_work/04/test/print_maps
|
||||||
|
000000600000-000000601000 r--s 0 0:0 0 /home/satoken/2018_work/04/test/print_maps
|
||||||
|
000000601000-000000602000 rw-s 0 0:0 0 /home/satoken/2018_work/04/test/print_maps
|
||||||
|
2aaaaa9f8000-2aaaaaa00000 rw-s 0 0:0 0
|
||||||
|
2aaaaaa00000-2aaaaaa21000 r-xs 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac21000-2aaaaac22000 r--s 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac22000-2aaaaac23000 rw-s 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac23000-2aaaaac24000 rw-p 0 0:0 0
|
||||||
|
2aaaaac24000-2aaaaac26000 r-xs 0 0:0 0 [vdso]
|
||||||
|
2aaaaac26000-2aaaaac27000 rw-p 0 0:0 0
|
||||||
|
2aaaaac4d000-2aaaaac4e000 rw-p 0 0:0 0
|
||||||
|
2aaaaac4e000-2aaaaae06000 r-xp 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaaae06000-2aaaab006000 ---p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab006000-2aaaab00a000 r--p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab00a000-2aaaab00c000 rw-p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab00c000-2aaaab011000 rw-p 0 0:0 0
|
||||||
|
2aaaab011000-2aaaab013000 rw-p 0 0:0 0
|
||||||
|
547fff800000-548000000000 rw-s 0 0:0 0 [stack]
|
||||||
|
|
||||||
|
** grep /home/satoken/2018_work/04/test/print_maps from maps
|
||||||
|
000000400000-000000401000 r-xs 0 0:0 0 /home/satoken/2018_work/04/test/print_maps
|
||||||
|
000000600000-000000601000 r--s 0 0:0 0 /home/satoken/2018_work/04/test/print_maps
|
||||||
|
000000601000-000000602000 rw-s 0 0:0 0 /home/satoken/2018_work/04/test/print_maps
|
||||||
|
[OK] /home/satoken/2018_work/04/test/print_maps is found
|
||||||
|
|
||||||
|
** grep /usr/lib64/ld-2.17.so from maps
|
||||||
|
2aaaaaa00000-2aaaaaa21000 r-xs 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac21000-2aaaaac22000 r--s 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac22000-2aaaaac23000 rw-s 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
[OK] /usr/lib64/ld-2.17.so is found
|
||||||
|
*** CT_004 PASSED
|
||||||
|
|
||||||
|
./CT_005.sh
|
||||||
|
*** CT_005 start *******************
|
||||||
|
exec : ./static_print_maps
|
||||||
|
000000400000-0000004b8000 r-xs 0 0:0 0 /home/satoken/2018_work/04/test/static_print_maps
|
||||||
|
0000006b7000-0000006ba000 rw-s 0 0:0 0 /home/satoken/2018_work/04/test/static_print_maps
|
||||||
|
0000006ba000-0000006bc000 rw-p 0 0:0 0
|
||||||
|
000000800000-000000802000 rw-s 0 0:0 0 [heap]
|
||||||
|
000000802000-000000823000 rw-s 0 0:0 0 [heap]
|
||||||
|
000000823000-000000824000 rw-s 0 0:0 0 [heap]
|
||||||
|
2aaaaa9f8000-2aaaaaa00000 rw-s 0 0:0 0
|
||||||
|
2aaaaaa00000-2aaaaaa02000 r-xs 0 0:0 0 [vdso]
|
||||||
|
547fff800000-548000000000 rw-s 0 0:0 0 [stack]
|
||||||
|
|
||||||
|
** grep /home/satoken/2018_work/04/test/static_print_maps from maps
|
||||||
|
000000400000-0000004b8000 r-xs 0 0:0 0 /home/satoken/2018_work/04/test/static_print_maps
|
||||||
|
0000006b7000-0000006ba000 rw-s 0 0:0 0 /home/satoken/2018_work/04/test/static_print_maps
|
||||||
|
[OK] /home/satoken/2018_work/04/test/static_print_maps is found
|
||||||
|
|
||||||
|
** grep /usr/lib64/ld-2.17.so from maps
|
||||||
|
[OK] /usr/lib64/ld-2.17.so is not found
|
||||||
|
*** CT_005 PASSED
|
||||||
|
|
||||||
|
./CT_006.sh
|
||||||
|
*** CT_006 start *******************
|
||||||
|
000000400000-00000040b000 r-xs 0 0:0 0 /usr/bin/cat
|
||||||
|
00000060b000-00000060c000 r--s 0 0:0 0 /usr/bin/cat
|
||||||
|
00000060c000-00000060d000 rw-s 0 0:0 0 /usr/bin/cat
|
||||||
|
000000800000-000000821000 rw-s 0 0:0 0 [heap]
|
||||||
|
2aaaaa9f8000-2aaaaaa00000 rw-s 0 0:0 0
|
||||||
|
2aaaaaa00000-2aaaaaa21000 r-xs 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac21000-2aaaaac22000 r--s 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac22000-2aaaaac23000 rw-s 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac23000-2aaaaac24000 rw-p 0 0:0 0
|
||||||
|
2aaaaac24000-2aaaaac26000 r-xs 0 0:0 0 [vdso]
|
||||||
|
2aaaaac26000-2aaaaac27000 rw-p 0 0:0 0
|
||||||
|
2aaaaac4d000-2aaaaac4e000 rw-p 0 0:0 0
|
||||||
|
2aaaaac4e000-2aaaaae06000 r-xp 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaaae06000-2aaaab006000 ---p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab006000-2aaaab00a000 r--p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab00a000-2aaaab00c000 rw-p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab00c000-2aaaab011000 rw-p 0 0:0 0
|
||||||
|
2aaaab011000-2aaaab013000 rw-p 0 0:0 0
|
||||||
|
2aaaab013000-2aaab153c000 r--p 0 0:0 0 /usr/lib/locale/locale-archive
|
||||||
|
547fff800000-548000000000 rw-s 0 0:0 0 [stack]
|
||||||
|
[OK] shell script is running normaly
|
||||||
|
*** CT_006 PASSED
|
||||||
|
|
||||||
|
./CT_007.sh
|
||||||
|
*** CT_007 start *******************
|
||||||
|
exec : ./call_execve ./print_maps_and_cmdline
|
||||||
|
000000400000-000000401000 r-xs 0 0:0 0 /home/satoken/2018_work/04/test/print_maps_and_cmdline
|
||||||
|
000000600000-000000601000 r--s 0 0:0 0 /home/satoken/2018_work/04/test/print_maps_and_cmdline
|
||||||
|
000000601000-000000602000 rw-s 0 0:0 0 /home/satoken/2018_work/04/test/print_maps_and_cmdline
|
||||||
|
2aaaaa9f8000-2aaaaaa00000 rw-s 0 0:0 0
|
||||||
|
2aaaaaa00000-2aaaaaa21000 r-xs 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac21000-2aaaaac22000 r--s 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac22000-2aaaaac23000 rw-s 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac23000-2aaaaac24000 rw-p 0 0:0 0
|
||||||
|
2aaaaac24000-2aaaaac26000 r-xs 0 0:0 0 [vdso]
|
||||||
|
2aaaaac26000-2aaaaac27000 rw-p 0 0:0 0
|
||||||
|
2aaaaac4d000-2aaaaae05000 r-xp 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaaae05000-2aaaab005000 ---p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab005000-2aaaab009000 r--p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab009000-2aaaab00b000 rw-p 0 0:0 0 /usr/lib64/libc-2.17.so
|
||||||
|
2aaaab00b000-2aaaab010000 rw-p 0 0:0 0
|
||||||
|
2aaaab010000-2aaaab011000 rw-p 0 0:0 0
|
||||||
|
2aaaab011000-2aaaab013000 rw-p 0 0:0 0
|
||||||
|
547fff800000-548000000000 rw-s 0 0:0 0 [stack]
|
||||||
|
STKN:[main_loop] filename:./print_maps_and_cmdline shell:0x(nil)
|
||||||
|
STKN:[main_loop] filename:/bin/sh shell:0x(nil)
|
||||||
|
STKN:[main_loop] filename:./print_maps_and_cmdline shell:0x(nil)
|
||||||
|
|
||||||
|
** grep /home/satoken/2018_work/04/test/print_maps_and_cmdline from maps
|
||||||
|
000000400000-000000401000 r-xs 0 0:0 0 /home/satoken/2018_work/04/test/print_maps_and_cmdline
|
||||||
|
000000600000-000000601000 r--s 0 0:0 0 /home/satoken/2018_work/04/test/print_maps_and_cmdline
|
||||||
|
000000601000-000000602000 rw-s 0 0:0 0 /home/satoken/2018_work/04/test/print_maps_and_cmdline
|
||||||
|
[OK] /home/satoken/2018_work/04/test/print_maps_and_cmdline is found
|
||||||
|
|
||||||
|
** grep /usr/lib64/ld-2.17.so from maps
|
||||||
|
2aaaaaa00000-2aaaaaa21000 r-xs 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac21000-2aaaaac22000 r--s 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
2aaaaac22000-2aaaaac23000 rw-s 0 0:0 0 /usr/lib64/ld-2.17.so
|
||||||
|
[OK] /usr/lib64/ld-2.17.so is found
|
||||||
|
./print_maps_and_cmdlineso.6o.
|
||||||
|
** grep ./print_maps_and_cmdline from cmdline
|
||||||
|
./print_maps_and_cmdlineso.6o.
|
||||||
|
[OK] ./print_maps_and_cmdline is found
|
||||||
|
*** CT_007 PASSED
|
||||||
|
|
||||||
|
./CT_008.sh
|
||||||
|
*** CT_008 start *******************
|
||||||
|
exec : ./call_execve.sh ./print_maps_and_cmdline
|
||||||
|
./CT_008.sh: line 18: 25571 Segmentation fault (core dumped) ${MCEXEC} ${test_program} > ./${TESTNAME}_maps.log 2> ./${TESTNAME}_cmdline.log
|
||||||
|
STKN:[main] This is shell script
|
||||||
|
STKN:[main_loop] filename:./call_execve shell:0x(nil)
|
||||||
|
STKN:[main_loop] filename:./print_maps_and_cmdline shell:0x(nil)
|
||||||
|
|
||||||
|
** grep /home/satoken/2018_work/04/test/print_maps_and_cmdline from maps
|
||||||
|
[NG] /home/satoken/2018_work/04/test/print_maps_and_cmdline is not found
|
||||||
|
|
||||||
|
** grep /usr/lib64/ld-2.17.so from maps
|
||||||
|
[NG] /usr/lib64/ld-2.17.so is not found
|
||||||
|
|
||||||
|
** grep ./print_maps_and_cmdline from cmdline
|
||||||
|
[NG] ./print_maps_and_cmdline is not found
|
||||||
|
*** CT_008 FAILED
|
||||||
34
test/issues/1102/CT_001.sh
Executable file
34
test/issues/1102/CT_001.sh
Executable file
@@ -0,0 +1,34 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_001
|
||||||
|
REP=30
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start *******************"
|
||||||
|
echo "** exec ltp-syscall_mkdir09 ${REP} times"
|
||||||
|
echo -n "" > ./${TESTNAME}.log
|
||||||
|
for i in `seq 1 ${REP}`
|
||||||
|
do
|
||||||
|
${MCEXEC} ${LTP_DIR}/testcases/bin/mkdir09 | tee -a ./${TESTNAME}.log
|
||||||
|
done
|
||||||
|
|
||||||
|
grep -a -e "FAIL" ./${TESTNAME}.log
|
||||||
|
|
||||||
|
if [ $? != 0 ]; then
|
||||||
|
echo "[OK] ltp-syscall_mkdir09 ${REP} times all passed"
|
||||||
|
else
|
||||||
|
echo "[NG] ltp-syscall_mkdir09 failed"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ X$fail = X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
rm ./${TESTNAME}.log
|
||||||
29
test/issues/1102/CT_002.sh
Executable file
29
test/issues/1102/CT_002.sh
Executable file
@@ -0,0 +1,29 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_002
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start *******************"
|
||||||
|
echo "** exec ostest siginfo_00"
|
||||||
|
${MCEXEC} ${OSTEST_DIR}/bin/test_mck -s siginfo -n 0| tee -a ./${TESTNAME}.log
|
||||||
|
|
||||||
|
tail -n 1 ./${TESTNAME}.log | grep -a -e "RESULT: ok" &> /dev/null
|
||||||
|
|
||||||
|
if [ $? = 0 ]; then
|
||||||
|
echo "[OK] ostest siginfo_00 passed"
|
||||||
|
else
|
||||||
|
echo "[NG] ostest siginfo_00 failed"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ X$fail = X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
rm ./${TESTNAME}.log
|
||||||
51
test/issues/1102/CT_003.sh
Executable file
51
test/issues/1102/CT_003.sh
Executable file
@@ -0,0 +1,51 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_003
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
SIG_NAME=SIGHUP
|
||||||
|
SIG_NUM=1
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start *******************"
|
||||||
|
echo "** exec ostest siginfo_01 and then send ${SIG_NAME} to mcexec"
|
||||||
|
${MCEXEC} ${OSTEST_DIR}/bin/test_mck -s siginfo -n 1 &
|
||||||
|
sleep 1
|
||||||
|
|
||||||
|
echo "** back ground process(mcexec): $!"
|
||||||
|
echo "** send ${SIG_NAME} to mcexec once"
|
||||||
|
kill -${SIG_NUM} $!
|
||||||
|
sleep 1
|
||||||
|
|
||||||
|
echo "** check existing of $!"
|
||||||
|
ps -p $!
|
||||||
|
|
||||||
|
if [ $? = 0 ]; then
|
||||||
|
echo "[OK] $! exists yet"
|
||||||
|
else
|
||||||
|
echo "[NG] $! doesn't exist"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "** send ${SIG_NAME} to mcexec again"
|
||||||
|
kill -${SIG_NUM} $!
|
||||||
|
sleep 1
|
||||||
|
echo "** check existing of $!"
|
||||||
|
ps -p $!
|
||||||
|
|
||||||
|
if [ $? != 0 ]; then
|
||||||
|
echo "[OK] $! doesn't exist (be killed by signal)"
|
||||||
|
else
|
||||||
|
echo "[NG] exist yet"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ X$fail = X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
|
||||||
51
test/issues/1102/CT_004.sh
Executable file
51
test/issues/1102/CT_004.sh
Executable file
@@ -0,0 +1,51 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_004
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
SIG_NAME=SIGINT
|
||||||
|
SIG_NUM=2
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start *******************"
|
||||||
|
echo "** exec ostest siginfo_01 and then send ${SIG_NAME} to mcexec"
|
||||||
|
${MCEXEC} ${OSTEST_DIR}/bin/test_mck -s siginfo -n 1 &
|
||||||
|
sleep 1
|
||||||
|
|
||||||
|
echo "** back ground process(mcexec): $!"
|
||||||
|
echo "** send ${SIG_NAME} to mcexec once"
|
||||||
|
kill -${SIG_NUM} $!
|
||||||
|
sleep 1
|
||||||
|
|
||||||
|
echo "** check existing of $!"
|
||||||
|
ps -p $!
|
||||||
|
|
||||||
|
if [ $? = 0 ]; then
|
||||||
|
echo "[OK] $! exists yet"
|
||||||
|
else
|
||||||
|
echo "[NG] $! doesn't exist"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "** send ${SIG_NAME} to mcexec again"
|
||||||
|
kill -${SIG_NUM} $!
|
||||||
|
sleep 1
|
||||||
|
echo "** check existing of $!"
|
||||||
|
ps -p $!
|
||||||
|
|
||||||
|
if [ $? != 0 ]; then
|
||||||
|
echo "[OK] $! doesn't exist (be killed by signal)"
|
||||||
|
else
|
||||||
|
echo "[NG] exist yet"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ X$fail = X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
|
||||||
51
test/issues/1102/CT_005.sh
Executable file
51
test/issues/1102/CT_005.sh
Executable file
@@ -0,0 +1,51 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_005
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
SIG_NAME=SIGTERM
|
||||||
|
SIG_NUM=15
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start *******************"
|
||||||
|
echo "** exec ostest siginfo_01 and then send ${SIG_NAME} to mcexec"
|
||||||
|
${MCEXEC} ${OSTEST_DIR}/bin/test_mck -s siginfo -n 1 &
|
||||||
|
sleep 1
|
||||||
|
|
||||||
|
echo "** back ground process(mcexec): $!"
|
||||||
|
echo "** send ${SIG_NAME} to mcexec once"
|
||||||
|
kill -${SIG_NUM} $!
|
||||||
|
sleep 1
|
||||||
|
|
||||||
|
echo "** check existing of $!"
|
||||||
|
ps -p $!
|
||||||
|
|
||||||
|
if [ $? = 0 ]; then
|
||||||
|
echo "[OK] $! exists yet"
|
||||||
|
else
|
||||||
|
echo "[NG] $! doesn't exist"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "** send ${SIG_NAME} to mcexec again"
|
||||||
|
kill -${SIG_NUM} $!
|
||||||
|
sleep 1
|
||||||
|
echo "** check existing of $!"
|
||||||
|
ps -p $!
|
||||||
|
|
||||||
|
if [ $? != 0 ]; then
|
||||||
|
echo "[OK] $! doesn't exist (be killed by signal)"
|
||||||
|
else
|
||||||
|
echo "[NG] exist yet"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ X$fail = X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
|
||||||
29
test/issues/1102/Makefile
Normal file
29
test/issues/1102/Makefile
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
CC = gcc
|
||||||
|
MCK_DIR=/home/satoken/ppos
|
||||||
|
MCEXEC=$(MCK_DIR)/bin/mcexec
|
||||||
|
|
||||||
|
LTP_DIR=/home/satoken/ltp
|
||||||
|
OSTEST_DIR=/home/satoken/ostest
|
||||||
|
|
||||||
|
TARGET=config
|
||||||
|
|
||||||
|
CPPFLAGS =
|
||||||
|
LDFLAGS =
|
||||||
|
|
||||||
|
all: $(TARGET)
|
||||||
|
|
||||||
|
config:
|
||||||
|
@echo "MCEXEC=$(MCEXEC)" > ./config
|
||||||
|
@echo "LTP_DIR=$(LTP_DIR)" >> ./config
|
||||||
|
@echo "OSTEST_DIR=$(OSTEST_DIR)" >> ./config
|
||||||
|
|
||||||
|
test: all
|
||||||
|
./CT_001.sh
|
||||||
|
./CT_002.sh
|
||||||
|
./CT_003.sh
|
||||||
|
./CT_004.sh
|
||||||
|
./CT_005.sh
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f $(TARGET) *.o
|
||||||
|
|
||||||
26
test/issues/1102/README
Normal file
26
test/issues/1102/README
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
CT_001:
|
||||||
|
ltp-syscall_mkdir09 を繰り返し実行する
|
||||||
|
-> いずれの実行結果もFAILとならない
|
||||||
|
|
||||||
|
CT_002:
|
||||||
|
ostest のsiginfo_00 を実行する
|
||||||
|
-> 実行結果がRESULT: ok となる
|
||||||
|
|
||||||
|
CT_003:
|
||||||
|
ostest のsiginfo_01 を実行する
|
||||||
|
動作の確認には、SIGHUP を用いる
|
||||||
|
-> 1度目のSIGHUPはハンドルされ、プロセスが残存する
|
||||||
|
2度目のSIGHUPにより、プロセスが終了する
|
||||||
|
|
||||||
|
CT_004:
|
||||||
|
ostest のsiginfo_01 を実行する
|
||||||
|
動作の確認には、SIGINT を用いる
|
||||||
|
-> 1度目のSIGINTはハンドルされ、プロセスが残存する
|
||||||
|
2度目のSIGINTにより、プロセスが終了する
|
||||||
|
|
||||||
|
CT_005:
|
||||||
|
ostest のsiginfo_01 を実行する
|
||||||
|
動作の確認には、SIGTERM を用いる
|
||||||
|
-> 1度目のSIGTERMはハンドルされ、プロセスが残存する
|
||||||
|
2度目のSIGTERMにより、プロセスが終了する
|
||||||
273
test/issues/1102/result.log
Normal file
273
test/issues/1102/result.log
Normal file
@@ -0,0 +1,273 @@
|
|||||||
|
./CT_001.sh
|
||||||
|
*** CT_001 start *******************
|
||||||
|
** exec ltp-syscall_mkdir09 30 times
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
mkdir09 1 TPASS : PASS
|
||||||
|
[OK] ltp-syscall_mkdir09 30 times all passed
|
||||||
|
*** CT_001 PASSED
|
||||||
|
|
||||||
|
./CT_002.sh
|
||||||
|
*** CT_002 start *******************
|
||||||
|
** exec ostest siginfo_00
|
||||||
|
TEST_SUITE: siginfo
|
||||||
|
TEST_NUMBER: 0
|
||||||
|
ARGS:
|
||||||
|
=== raise signal #1 ===
|
||||||
|
Catch signal #1
|
||||||
|
siginfo->si_signo = 1
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #2 ===
|
||||||
|
Catch signal #2
|
||||||
|
siginfo->si_signo = 2
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #3 ===
|
||||||
|
Catch signal #3
|
||||||
|
siginfo->si_signo = 3
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #4 ===
|
||||||
|
Catch signal #4
|
||||||
|
siginfo->si_signo = 4
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #5 ===
|
||||||
|
Catch signal #5
|
||||||
|
siginfo->si_signo = 5
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #6 ===
|
||||||
|
Catch signal #6
|
||||||
|
siginfo->si_signo = 6
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #7 ===
|
||||||
|
Catch signal #7
|
||||||
|
siginfo->si_signo = 7
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #8 ===
|
||||||
|
Catch signal #8
|
||||||
|
siginfo->si_signo = 8
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #10 ===
|
||||||
|
Catch signal #10
|
||||||
|
siginfo->si_signo = 10
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #11 ===
|
||||||
|
Catch signal #11
|
||||||
|
siginfo->si_signo = 11
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #12 ===
|
||||||
|
Catch signal #12
|
||||||
|
siginfo->si_signo = 12
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #13 ===
|
||||||
|
Catch signal #13
|
||||||
|
siginfo->si_signo = 13
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #14 ===
|
||||||
|
Catch signal #14
|
||||||
|
siginfo->si_signo = 14
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #15 ===
|
||||||
|
Catch signal #15
|
||||||
|
siginfo->si_signo = 15
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #16 ===
|
||||||
|
Catch signal #16
|
||||||
|
siginfo->si_signo = 16
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #17 ===
|
||||||
|
Catch signal #17
|
||||||
|
siginfo->si_signo = 17
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #18 ===
|
||||||
|
Catch signal #18
|
||||||
|
siginfo->si_signo = 18
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #20 ===
|
||||||
|
Catch signal #20
|
||||||
|
siginfo->si_signo = 20
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #21 ===
|
||||||
|
Catch signal #21
|
||||||
|
siginfo->si_signo = 21
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #22 ===
|
||||||
|
Catch signal #22
|
||||||
|
siginfo->si_signo = 22
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #23 ===
|
||||||
|
Catch signal #23
|
||||||
|
siginfo->si_signo = 23
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #24 ===
|
||||||
|
Catch signal #24
|
||||||
|
siginfo->si_signo = 24
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #25 ===
|
||||||
|
Catch signal #25
|
||||||
|
siginfo->si_signo = 25
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #26 ===
|
||||||
|
Catch signal #26
|
||||||
|
siginfo->si_signo = 26
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #27 ===
|
||||||
|
Catch signal #27
|
||||||
|
siginfo->si_signo = 27
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #28 ===
|
||||||
|
Catch signal #28
|
||||||
|
siginfo->si_signo = 28
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #29 ===
|
||||||
|
Catch signal #29
|
||||||
|
siginfo->si_signo = 29
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #30 ===
|
||||||
|
Catch signal #30
|
||||||
|
siginfo->si_signo = 30
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
=== raise signal #31 ===
|
||||||
|
Catch signal #31
|
||||||
|
siginfo->si_signo = 31
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0xfffffffa
|
||||||
|
RESULT: ok
|
||||||
|
[OK] ostest siginfo_00 passed
|
||||||
|
*** CT_002 PASSED
|
||||||
|
|
||||||
|
./CT_003.sh
|
||||||
|
*** CT_003 start *******************
|
||||||
|
** exec ostest siginfo_01 and then send SIGHUP to mcexec
|
||||||
|
TEST_SUITE: siginfo
|
||||||
|
TEST_NUMBER: 1
|
||||||
|
ARGS:
|
||||||
|
==================================================
|
||||||
|
Please send signal to mcexec(pid=12295) from console.
|
||||||
|
Exit Once you throw twice the same signal.
|
||||||
|
==================================================
|
||||||
|
** back ground process(mcexec): 12295
|
||||||
|
** send SIGHUP to mcexec once
|
||||||
|
Catch signal #1
|
||||||
|
siginfo->si_signo = 1
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0x0
|
||||||
|
** check existing of 12295
|
||||||
|
PID TTY TIME CMD
|
||||||
|
12295 pts/0 00:00:00 exe
|
||||||
|
[OK] 12295 exists yet
|
||||||
|
** send SIGHUP to mcexec again
|
||||||
|
Terminate by signal 1
|
||||||
|
./CT_003.sh: line 34: 12295 Hangup ${MCEXEC} ${OSTEST_DIR}/bin/test_mck -s siginfo -n 1
|
||||||
|
** check existing of 12295
|
||||||
|
PID TTY TIME CMD
|
||||||
|
[OK] 12295 doesn't exist (be killed by signal)
|
||||||
|
*** CT_003 PASSED
|
||||||
|
|
||||||
|
./CT_004.sh
|
||||||
|
*** CT_004 start *******************
|
||||||
|
** exec ostest siginfo_01 and then send SIGINT to mcexec
|
||||||
|
TEST_SUITE: siginfo
|
||||||
|
TEST_NUMBER: 1
|
||||||
|
ARGS:
|
||||||
|
==================================================
|
||||||
|
Please send signal to mcexec(pid=12311) from console.
|
||||||
|
Exit Once you throw twice the same signal.
|
||||||
|
==================================================
|
||||||
|
** back ground process(mcexec): 12311
|
||||||
|
** send SIGINT to mcexec once
|
||||||
|
Catch signal #2
|
||||||
|
siginfo->si_signo = 2
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0x0
|
||||||
|
** check existing of 12311
|
||||||
|
PID TTY TIME CMD
|
||||||
|
12311 pts/0 00:00:00 exe
|
||||||
|
[OK] 12311 exists yet
|
||||||
|
** send SIGINT to mcexec again
|
||||||
|
Terminate by signal 2
|
||||||
|
** check existing of 12311
|
||||||
|
PID TTY TIME CMD
|
||||||
|
[OK] 12311 doesn't exist (be killed by signal)
|
||||||
|
*** CT_004 PASSED
|
||||||
|
|
||||||
|
./CT_005.sh
|
||||||
|
*** CT_005 start *******************
|
||||||
|
** exec ostest siginfo_01 and then send SIGTERM to mcexec
|
||||||
|
TEST_SUITE: siginfo
|
||||||
|
TEST_NUMBER: 1
|
||||||
|
ARGS:
|
||||||
|
==================================================
|
||||||
|
Please send signal to mcexec(pid=12327) from console.
|
||||||
|
Exit Once you throw twice the same signal.
|
||||||
|
==================================================
|
||||||
|
** back ground process(mcexec): 12327
|
||||||
|
** send SIGTERM to mcexec once
|
||||||
|
Catch signal #15
|
||||||
|
siginfo->si_signo = 15
|
||||||
|
siginfo->si_errno = 0
|
||||||
|
siginfo->si_code = 0x0
|
||||||
|
** check existing of 12327
|
||||||
|
PID TTY TIME CMD
|
||||||
|
12327 pts/0 00:00:00 exe
|
||||||
|
[OK] 12327 exists yet
|
||||||
|
** send SIGTERM to mcexec again
|
||||||
|
Terminate by signal 15
|
||||||
|
./CT_005.sh: line 34: 12327 Terminated ${MCEXEC} ${OSTEST_DIR}/bin/test_mck -s siginfo -n 1
|
||||||
|
** check existing of 12327
|
||||||
|
PID TTY TIME CMD
|
||||||
|
[OK] 12327 doesn't exist (be killed by signal)
|
||||||
|
*** CT_005 PASSED
|
||||||
108
test/issues/1121/C1121.sh
Normal file
108
test/issues/1121/C1121.sh
Normal file
@@ -0,0 +1,108 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
BIN=
|
||||||
|
SBIN=
|
||||||
|
OSTEST=
|
||||||
|
LTP=
|
||||||
|
BOOTPARAM="-c 1-7,9-15,17-23,25-31 -m 10G@0,10G@1 -r 1-7:0+9-15:8+17-23:16+25-31:24"
|
||||||
|
|
||||||
|
if [ -f ../../../config.h ]; then
|
||||||
|
str=`grep "^#define BINDIR " ../../../config.h | head -1 | sed 's/^#define BINDIR /BINDIR=/'`
|
||||||
|
eval $str
|
||||||
|
fi
|
||||||
|
if [ "x$BINDIR" = x ];then
|
||||||
|
BINDIR="$BIN"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f ../../../Makefile ]; then
|
||||||
|
str=`grep ^SBINDIR ../../../Makefile | head -1 | sed 's/ //g'`
|
||||||
|
eval $str
|
||||||
|
fi
|
||||||
|
if [ "x$SBINDIR" = x ];then
|
||||||
|
SBINDIR="$SBIN"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f $HOME/ltp/testcases/bin/sched_setaffinity01 ]; then
|
||||||
|
LTPDIR=$HOME/ltp/testcases
|
||||||
|
fi
|
||||||
|
if [ "x$LTPDIR" = x ]; then
|
||||||
|
LTPDIR="$LTP"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f $HOME/ostest/bin/test_mck ]; then
|
||||||
|
OSTESTDIR=$HOME/ostest/
|
||||||
|
fi
|
||||||
|
if [ "x$OSTESTDIR" = x ]; then
|
||||||
|
OSTESTDIR="$OSTEST"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -x $SBINDIR/mcstop+release.sh ]; then
|
||||||
|
echo mcstop+releas: not found >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo -n "mcstop+release.sh ... "
|
||||||
|
sudo $SBINDIR/mcstop+release.sh
|
||||||
|
echo "done"
|
||||||
|
|
||||||
|
if [ ! -x $SBINDIR/mcreboot.sh ]; then
|
||||||
|
echo mcreboot: not found >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo -n "mcreboot.sh $BOOTPARAM ... "
|
||||||
|
sudo $SBINDIR/mcreboot.sh $BOOTPARAM
|
||||||
|
echo "done"
|
||||||
|
|
||||||
|
if [ ! -x $BINDIR/mcexec ]; then
|
||||||
|
echo mcexec: not found >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
tid=001
|
||||||
|
echo "*** RT_$tid start *******************************"
|
||||||
|
sudo $BINDIR/mcexec $OSTESTDIR/bin/test_mck -s sched_setaffinity -n 0 -- -p 20 2>&1 | tee ./RT_${tid}.txt
|
||||||
|
if grep "RESULT: ok" ./RT_${tid}.txt > /dev/null 2>&1 ; then
|
||||||
|
echo "*** RT_$tid: PASSED"
|
||||||
|
else
|
||||||
|
echo "*** RT_$tid: FAILED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
tid=002
|
||||||
|
echo "*** RT_$tid start *******************************"
|
||||||
|
sudo $BINDIR/mcexec $OSTESTDIR/bin/test_mck -s sched_setaffinity -n 1 -- -p 20 2>&1 | tee ./RT_${tid}.txt
|
||||||
|
if grep "RESULT: ok" ./RT_${tid}.txt > /dev/null 2>&1 ; then
|
||||||
|
echo "*** RT_$tid: PASSED"
|
||||||
|
else
|
||||||
|
echo "*** RT_$tid: FAILED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
tid=003
|
||||||
|
echo "*** RT_$tid start *******************************"
|
||||||
|
sudo $BINDIR/mcexec $OSTESTDIR/bin/test_mck -s sched_getaffinity -n 3 -- -p 20 2>&1 | tee ./RT_${tid}.txt
|
||||||
|
if grep "RESULT: ok" ./RT_${tid}.txt > /dev/null 2>&1 ; then
|
||||||
|
echo "*** RT_$tid: PASSED"
|
||||||
|
else
|
||||||
|
echo "*** RT_$tid: FAILED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
tid=004
|
||||||
|
echo "*** RT_$tid start *******************************"
|
||||||
|
sudo $BINDIR/mcexec $OSTESTDIR/bin/test_mck -s sched_getaffinity -n 5 -- -p 20 2>&1 | tee ./RT_${tid}.txt
|
||||||
|
if grep "RESULT: ok" ./RT_${tid}.txt > /dev/null 2>&1 ; then
|
||||||
|
echo "*** RT_$tid: PASSED"
|
||||||
|
else
|
||||||
|
echo "*** RT_$tid: FAILED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
tid=001
|
||||||
|
echo "*** LT_$tid start *******************************"
|
||||||
|
sudo $BINDIR/mcexec $LTPDIR/bin/sched_setaffinity01 2>&1 | tee ./LT_${tid}.txt
|
||||||
|
ok=`grep TPASS LT_${tid}.txt | wc -l`
|
||||||
|
ng=`grep TFAIL LT_${tid}.txt | wc -l`
|
||||||
|
if [ $ng = 0 ]; then
|
||||||
|
echo "*** LT_$tid: PASSED (ok:$ok)"
|
||||||
|
else
|
||||||
|
echo "*** LT_$tid: FAILED (ok:$ok, ng:$ng)"
|
||||||
|
fi
|
||||||
14
test/issues/1121/Makefile
Normal file
14
test/issues/1121/Makefile
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
CC = gcc
|
||||||
|
TARGET=
|
||||||
|
|
||||||
|
CPPFLAGS =
|
||||||
|
LDFLAGS =
|
||||||
|
|
||||||
|
all: $(TARGET)
|
||||||
|
|
||||||
|
test: all
|
||||||
|
@sh ./C1121.sh
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f $(TARGET) *.o
|
||||||
|
|
||||||
36
test/issues/1121/README
Normal file
36
test/issues/1121/README
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
【Issue#1121 動作確認】
|
||||||
|
□ テスト内容
|
||||||
|
1. Issueで報告された再現プログラムでの確認
|
||||||
|
RT_001: ostest-sched_setaffinity.000
|
||||||
|
自プロセスのaffinityの設定と取得が行えることを確認
|
||||||
|
|
||||||
|
RT_002: ostest-sched_setaffinity.001
|
||||||
|
自プロセスのaffinityを設定し、CPUのmigrateができることを確認
|
||||||
|
|
||||||
|
RT_003: ostest-sched_getaffinity.003
|
||||||
|
存在しないプロセスIDを指定したsched_getaffinity()を実行し、
|
||||||
|
-1 が返り、errnoにESRCH が設定されることを確認
|
||||||
|
|
||||||
|
RT_004: ostest-sched_getaffinity.005
|
||||||
|
子プロセスを生成し、以下を確認
|
||||||
|
- 子プロセスが親プロセスのaffinityを取得
|
||||||
|
- 子プロセスが自プロセスのaffinityを取得
|
||||||
|
- 親プロセス、自プロセスから取得したaffinityが等しいことを確認
|
||||||
|
|
||||||
|
2. 既存のsched_setaffinity機能に影響がないことをLTPを用いて確認
|
||||||
|
LT_001: ltp-sched_setaffinity01
|
||||||
|
異常な引数を指定した際に返される値と
|
||||||
|
設定されるerrnoが正しいことを確認 (OK 4件)
|
||||||
|
|
||||||
|
□ 実行手順
|
||||||
|
$ make test
|
||||||
|
|
||||||
|
実行できない場合は、C1121.shの以下の行を適切に書き換えた後に実行。
|
||||||
|
BIN= mcexec が存在するパス
|
||||||
|
SBIN= mcreboot.sh が存在するパス
|
||||||
|
OSTEST= OSTESTが存在するパス
|
||||||
|
LTP= LTPが存在するパス
|
||||||
|
|
||||||
|
□ 実行結果
|
||||||
|
result.log 参照。
|
||||||
|
すべての項目をPASSしていることを確認。
|
||||||
35
test/issues/1121/result.log
Normal file
35
test/issues/1121/result.log
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
*** RT_001 start *******************************
|
||||||
|
TEST_SUITE: sched_setaffinity
|
||||||
|
TEST_NUMBER: 0
|
||||||
|
ARGS: -p 20
|
||||||
|
RESULT: ok
|
||||||
|
*** RT_001: PASSED
|
||||||
|
|
||||||
|
*** RT_002 start *******************************
|
||||||
|
TEST_SUITE: sched_setaffinity
|
||||||
|
TEST_NUMBER: 1
|
||||||
|
ARGS: -p 20
|
||||||
|
RESULT: ok
|
||||||
|
*** RT_002: PASSED
|
||||||
|
|
||||||
|
*** RT_003 start *******************************
|
||||||
|
TEST_SUITE: sched_getaffinity
|
||||||
|
TEST_NUMBER: 3
|
||||||
|
ARGS: -p 20
|
||||||
|
sched_getaffinity result:-1, errno:3 (expect error is "ESRCH"=3)
|
||||||
|
RESULT: ok
|
||||||
|
*** RT_003: PASSED
|
||||||
|
|
||||||
|
*** RT_004 start *******************************
|
||||||
|
TEST_SUITE: sched_getaffinity
|
||||||
|
TEST_NUMBER: 5
|
||||||
|
ARGS: -p 20
|
||||||
|
RESULT: ok
|
||||||
|
*** RT_004: PASSED
|
||||||
|
|
||||||
|
*** LT_001 start *******************************
|
||||||
|
sched_setaffinity01 1 TPASS : expected failure with 'Bad address'
|
||||||
|
sched_setaffinity01 2 TPASS : expected failure with 'Invalid argument'
|
||||||
|
sched_setaffinity01 3 TPASS : expected failure with 'No such process'
|
||||||
|
sched_setaffinity01 4 TPASS : expected failure with 'Operation not permitted'
|
||||||
|
*** LT_001: PASSED (ok:4)
|
||||||
66
test/issues/731/C731.sh
Normal file
66
test/issues/731/C731.sh
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
BIN=
|
||||||
|
SBIN=
|
||||||
|
LTP=
|
||||||
|
BOOTPARAM="-c 1-7,17-23,9-15,25-31 -m 10G@0,10G@1"
|
||||||
|
|
||||||
|
if [ -f ../../../config.h ]; then
|
||||||
|
str=`grep "^#define BINDIR " ../../../config.h | head -1 | sed 's/^#define BINDIR /BINDIR=/'`
|
||||||
|
eval $str
|
||||||
|
fi
|
||||||
|
if [ "x$BINDIR" = x ];then
|
||||||
|
BINDIR="$BIN"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f ../../../Makefile ]; then
|
||||||
|
str=`grep ^SBINDIR ../../../Makefile | head -1 | sed 's/ //g'`
|
||||||
|
eval $str
|
||||||
|
fi
|
||||||
|
if [ "x$SBINDIR" = x ];then
|
||||||
|
SBINDIR="$SBIN"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f $HOME/ltp/testcases/bin/fork01 ]; then
|
||||||
|
LTPDIR=$HOME/ltp/testcases
|
||||||
|
fi
|
||||||
|
if [ "x$LTPDIR" = x ]; then
|
||||||
|
LTPDIR="$LTP"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! lsmod | grep mcctrl > /dev/null 2>&1; then
|
||||||
|
if [ ! -x $SBINDIR/mcreboot.sh ]; then
|
||||||
|
echo no mcreboot found >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
sudo $SBINDIR/mcreboot.sh $BOOTPARAM
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -x $BINDIR/mcexec ]; then
|
||||||
|
echo no mcexec found >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
sudo $BINDIR/mcexec ./g310a 2>&1 | tee g310a.txt
|
||||||
|
if grep "fork: Permission denied" g310a.txt > /dev/null 2>&1 ; then
|
||||||
|
echo "*** C731T001: g310a OK"
|
||||||
|
else
|
||||||
|
echo "*** C731T001: g310a NG"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ x$LTPDIR = x ]; then
|
||||||
|
echo no LTP found >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
for i in 01:002 02:003 03:004 04:005 07:006 08:007; do
|
||||||
|
tp=`echo $i|sed 's/:.*//'`
|
||||||
|
id=`echo $i|sed 's/.*://'`
|
||||||
|
$BINDIR/mcexec $LTPDIR/bin/fork$tp 2>&1 | tee fork$tp.txt
|
||||||
|
ok=`grep TPASS fork$tp.txt | wc -l`
|
||||||
|
ng=`grep TFAIL fork$tp.txt | wc -l`
|
||||||
|
if [ $ng = 0 ]; then
|
||||||
|
echo "*** C731T$id: fork$tp OK ($ok)"
|
||||||
|
else
|
||||||
|
echo "*** C731T$id: fork$tp NG (ok=$ok ng=%ng)"
|
||||||
|
fi
|
||||||
|
done
|
||||||
46
test/issues/731/C731.txt
Normal file
46
test/issues/731/C731.txt
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
Script started on Thu Jun 28 09:16:36 2018
|
||||||
|
bash-4.2$ make test
|
||||||
|
gcc -o g310a g310a.c -Wall -g
|
||||||
|
sh ./C731.sh
|
||||||
|
Error: Failed to open /dev/mcos0.
|
||||||
|
ERROR: opening /dev/mcos0
|
||||||
|
fork(): error with child process after fork
|
||||||
|
fork: Permission denied
|
||||||
|
waitpid: No child processes
|
||||||
|
*** C731T001: g310a OK
|
||||||
|
fork01 1 TPASS : fork() returned 14513
|
||||||
|
fork01 2 TPASS : child pid and fork() return agree: 14513
|
||||||
|
*** C731T002: fork01 OK (2)
|
||||||
|
fork02 0 TINFO : Inside parent
|
||||||
|
fork02 0 TINFO : Inside child
|
||||||
|
fork02 0 TINFO : exit status of wait 0
|
||||||
|
fork02 1 TPASS : test 1 PASSED
|
||||||
|
*** C731T003: fork02 OK (1)
|
||||||
|
fork03 0 TINFO : process id in parent of child from fork : 14669
|
||||||
|
fork03 1 TPASS : test 1 PASSED
|
||||||
|
*** C731T004: fork03 OK (1)
|
||||||
|
fork04 1 TPASS : Env var TERM unchanged after fork(): xterm
|
||||||
|
fork04 2 TPASS : Env var NoTSetzWq unchanged after fork(): getenv() does not find variable set
|
||||||
|
fork04 3 TPASS : Env var TESTPROG unchanged after fork(): FRKTCS04
|
||||||
|
*** C731T005: fork04 OK (3)
|
||||||
|
fork07 0 TINFO : Forking 100 children
|
||||||
|
fork07 0 TINFO : Forked all 100 children, now collecting
|
||||||
|
fork07 0 TINFO : Collected all 100 children
|
||||||
|
fork07 1 TPASS : 100/100 children read correctly from an inheritted fd
|
||||||
|
*** C731T006: fork07 OK (1)
|
||||||
|
fork08 0 TINFO : parent forksval: 1
|
||||||
|
fork08 0 TINFO : parent forksval: 2
|
||||||
|
fork08 0 TINFO : second child got char: b
|
||||||
|
fork08 1 TPASS : Test passed in childnumber 2
|
||||||
|
fork08 0 TINFO : exit status of wait expected 0 got 0
|
||||||
|
fork08 1 TPASS : parent test PASSED
|
||||||
|
fork08 0 TINFO : exit status of wait expected 0 got 0
|
||||||
|
fork08 2 TPASS : parent test PASSED
|
||||||
|
fork08 0 TINFO : exit status of wait expected 0 got 0
|
||||||
|
fork08 3 TPASS : parent test PASSED
|
||||||
|
fork08 0 TINFO : Number of processes forked is 2
|
||||||
|
*** C731T007: fork08 OK (4)
|
||||||
|
bash-4.2$ exit
|
||||||
|
exit
|
||||||
|
|
||||||
|
Script done on Thu Jun 28 09:17:21 2018
|
||||||
13
test/issues/731/Makefile
Normal file
13
test/issues/731/Makefile
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
CC=gcc
|
||||||
|
TARGET=g310a
|
||||||
|
|
||||||
|
all:: $(TARGET)
|
||||||
|
|
||||||
|
g310a: g310a.c
|
||||||
|
$(CC) -o g310a g310a.c -Wall -g
|
||||||
|
|
||||||
|
test:: $(TARGET)
|
||||||
|
sh ./C731.sh
|
||||||
|
|
||||||
|
clean::
|
||||||
|
rm -f *.o $(TARGET)
|
||||||
35
test/issues/731/README
Normal file
35
test/issues/731/README
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
【Issue#731 動作確認】
|
||||||
|
□ テスト内容
|
||||||
|
1. g310aの実行確認
|
||||||
|
C731T001 g310aを実行し、forkが Permission denied でエラーとなることを確認
|
||||||
|
|
||||||
|
2. 既存fork機能に影響しないことをLTPを用いて確認
|
||||||
|
C731T002 fork01 の実行確認
|
||||||
|
fork後に子プロセスのプロセスIDが正しいことを確認 (OK 2件)
|
||||||
|
C731T003 fork02 の実行確認
|
||||||
|
fork後にwaitを行い、waitが子プロセスのPIDを返却することを確認(OK 1件)
|
||||||
|
C731T004 fork03 の実行確認
|
||||||
|
子プロセスがfork後に計算を行えること、また子プロセスでのfork返却値が0で
|
||||||
|
あることを確認 (OK 1件)
|
||||||
|
C731T005 fork04 の実行確認
|
||||||
|
forkで生成した子プロセスが環境変数を変更しても、親プロセス側の
|
||||||
|
環境変数に変化が無いことを確認 (OK 3件)
|
||||||
|
C731T006 fork07 の実行確認
|
||||||
|
forkした子プロセスに、親プロセスからファイルディスクリプタを
|
||||||
|
引き継いでいることを確認 (OK 1件)
|
||||||
|
C731T007 fork08 の実行確認
|
||||||
|
forkした複数の子プロセスが、それぞれ親プロセスから引き継いだファイル
|
||||||
|
ディスクリプタを別個に操作できることを確認
|
||||||
|
(ある子プロセスがcloseしても別な子プロセスがI/O可能) (OK 4件)
|
||||||
|
|
||||||
|
□ 実行手順
|
||||||
|
$ make test
|
||||||
|
|
||||||
|
実行できない場合は、C731.shの以下の行を適切に書き換えた後に実行。
|
||||||
|
BIN= mcexec が存在するパス
|
||||||
|
SBIN= mcreboot.sh が存在するパス
|
||||||
|
LTP= LTPが存在するパス
|
||||||
|
|
||||||
|
□ 実行結果
|
||||||
|
C731.txt 参照。
|
||||||
|
全ての項目が OK となっていることを確認。
|
||||||
2
test/issues/731/fork01.txt
Normal file
2
test/issues/731/fork01.txt
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
fork01 1 TPASS : fork() returned 14513
|
||||||
|
fork01 2 TPASS : child pid and fork() return agree: 14513
|
||||||
4
test/issues/731/fork02.txt
Normal file
4
test/issues/731/fork02.txt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
fork02 0 TINFO : Inside parent
|
||||||
|
fork02 0 TINFO : Inside child
|
||||||
|
fork02 0 TINFO : exit status of wait 0
|
||||||
|
fork02 1 TPASS : test 1 PASSED
|
||||||
2
test/issues/731/fork03.txt
Normal file
2
test/issues/731/fork03.txt
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
fork03 0 TINFO : process id in parent of child from fork : 14669
|
||||||
|
fork03 1 TPASS : test 1 PASSED
|
||||||
3
test/issues/731/fork04.txt
Normal file
3
test/issues/731/fork04.txt
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
fork04 1 TPASS : Env var TERM unchanged after fork(): xterm
|
||||||
|
fork04 2 TPASS : Env var NoTSetzWq unchanged after fork(): getenv() does not find variable set
|
||||||
|
fork04 3 TPASS : Env var TESTPROG unchanged after fork(): FRKTCS04
|
||||||
4
test/issues/731/fork07.txt
Normal file
4
test/issues/731/fork07.txt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
fork07 0 TINFO : Forking 100 children
|
||||||
|
fork07 0 TINFO : Forked all 100 children, now collecting
|
||||||
|
fork07 0 TINFO : Collected all 100 children
|
||||||
|
fork07 1 TPASS : 100/100 children read correctly from an inheritted fd
|
||||||
11
test/issues/731/fork08.txt
Normal file
11
test/issues/731/fork08.txt
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
fork08 0 TINFO : parent forksval: 1
|
||||||
|
fork08 0 TINFO : parent forksval: 2
|
||||||
|
fork08 0 TINFO : second child got char: b
|
||||||
|
fork08 1 TPASS : Test passed in childnumber 2
|
||||||
|
fork08 0 TINFO : exit status of wait expected 0 got 0
|
||||||
|
fork08 1 TPASS : parent test PASSED
|
||||||
|
fork08 0 TINFO : exit status of wait expected 0 got 0
|
||||||
|
fork08 2 TPASS : parent test PASSED
|
||||||
|
fork08 0 TINFO : exit status of wait expected 0 got 0
|
||||||
|
fork08 3 TPASS : parent test PASSED
|
||||||
|
fork08 0 TINFO : Number of processes forked is 2
|
||||||
55
test/issues/731/g310a.c
Normal file
55
test/issues/731/g310a.c
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
/*
|
||||||
|
* g310a: If superuser try to fork() after seteuid(bin), ...
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <pwd.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <sys/wait.h>
|
||||||
|
|
||||||
|
int main(void)
|
||||||
|
{
|
||||||
|
int error;
|
||||||
|
struct passwd *pwd;
|
||||||
|
pid_t pid;
|
||||||
|
int ws;
|
||||||
|
|
||||||
|
if (geteuid()) {
|
||||||
|
printf("not a superuser\n");
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
pwd = getpwnam("bin");
|
||||||
|
if (!pwd) {
|
||||||
|
perror("getpwnam");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
error = seteuid(pwd->pw_uid);
|
||||||
|
if (error) {
|
||||||
|
perror("seteuid");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
pid = fork();
|
||||||
|
if (pid == -1) {
|
||||||
|
perror("fork");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!pid) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
pid = waitpid(pid, &ws, 0);
|
||||||
|
if (pid == -1) {
|
||||||
|
perror("waitpid");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
if (ws) {
|
||||||
|
printf("ws: %#x\n", ws);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("done.\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
5
test/issues/731/g310a.txt
Normal file
5
test/issues/731/g310a.txt
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
Error: Failed to open /dev/mcos0.
|
||||||
|
ERROR: opening /dev/mcos0
|
||||||
|
fork(): error with child process after fork
|
||||||
|
fork: Permission denied
|
||||||
|
waitpid: No child processes
|
||||||
29
test/issues/732/CT_001.sh
Executable file
29
test/issues/732/CT_001.sh
Executable file
@@ -0,0 +1,29 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_001
|
||||||
|
tgt_file=maps
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start ***************************"
|
||||||
|
|
||||||
|
${MCEXEC} cat -v /proc/self/${tgt_file} | tee ./${TESTNAME}.log
|
||||||
|
tail -1 ${TESTNAME}.log | grep -e "\^@$"
|
||||||
|
|
||||||
|
if [ $? != 0 ]; then
|
||||||
|
echo "[OK] end of /proc/<PID>/${tgt_file} is not NULL character"
|
||||||
|
else
|
||||||
|
echo "[NG] end of /proc/<PID>/${tgt_file} is unnecessary NULL character"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm ./${TESTNAME}.log
|
||||||
|
|
||||||
|
if [ X${fail} != X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
29
test/issues/732/CT_002.sh
Executable file
29
test/issues/732/CT_002.sh
Executable file
@@ -0,0 +1,29 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_002
|
||||||
|
tgt_file=stat
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start ***************************"
|
||||||
|
|
||||||
|
${MCEXEC} cat -v /proc/self/${tgt_file} | tee ./${TESTNAME}.log
|
||||||
|
tail -1 ${TESTNAME}.log | grep -e "\^@$"
|
||||||
|
|
||||||
|
if [ $? != 0 ]; then
|
||||||
|
echo "[OK] end of /proc/<PID>/${tgt_file} is not NULL character"
|
||||||
|
else
|
||||||
|
echo "[NG] end of /proc/<PID>/${tgt_file} is unnecessary NULL character"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm ./${TESTNAME}.log
|
||||||
|
|
||||||
|
if [ X${fail} != X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
29
test/issues/732/CT_003.sh
Executable file
29
test/issues/732/CT_003.sh
Executable file
@@ -0,0 +1,29 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_003
|
||||||
|
tgt_file=status
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start ***************************"
|
||||||
|
|
||||||
|
${MCEXEC} cat -v /proc/self/${tgt_file} | tee ./${TESTNAME}.log
|
||||||
|
tail -1 ${TESTNAME}.log | grep -e "\^@$"
|
||||||
|
|
||||||
|
if [ $? != 0 ]; then
|
||||||
|
echo "[OK] end of /proc/<PID>/${tgt_file} is not NULL character"
|
||||||
|
else
|
||||||
|
echo "[NG] end of /proc/<PID>/${tgt_file} is unnecessary NULL character"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm ./${TESTNAME}.log
|
||||||
|
|
||||||
|
if [ X${fail} != X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
29
test/issues/732/CT_004.sh
Executable file
29
test/issues/732/CT_004.sh
Executable file
@@ -0,0 +1,29 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_004
|
||||||
|
tgt_file=stack
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start ***************************"
|
||||||
|
|
||||||
|
${MCEXEC} cat -v /proc/self/${tgt_file} | tee ./${TESTNAME}.log
|
||||||
|
tail -1 ${TESTNAME}.log | grep -e "\^@$"
|
||||||
|
|
||||||
|
if [ $? != 0 ]; then
|
||||||
|
echo "[OK] end of /proc/<PID>/${tgt_file} is not NULL character"
|
||||||
|
else
|
||||||
|
echo "[NG] end of /proc/<PID>/${tgt_file} is unnecessary NULL character"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm ./${TESTNAME}.log
|
||||||
|
|
||||||
|
if [ X${fail} != X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
29
test/issues/732/CT_005.sh
Executable file
29
test/issues/732/CT_005.sh
Executable file
@@ -0,0 +1,29 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTNAME=CT_005
|
||||||
|
tgt_file=numa_maps
|
||||||
|
|
||||||
|
fail=0
|
||||||
|
|
||||||
|
. ./config
|
||||||
|
|
||||||
|
echo "*** ${TESTNAME} start ***************************"
|
||||||
|
|
||||||
|
${MCEXEC} cat -v /proc/self/${tgt_file} | tee ./${TESTNAME}.log
|
||||||
|
tail -1 ${TESTNAME}.log | grep -e "\^@$"
|
||||||
|
|
||||||
|
if [ $? != 0 ]; then
|
||||||
|
echo "[OK] end of /proc/<PID>/${tgt_file} is not NULL character"
|
||||||
|
else
|
||||||
|
echo "[NG] end of /proc/<PID>/${tgt_file} is unnecessary NULL character"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm ./${TESTNAME}.log
|
||||||
|
|
||||||
|
if [ X${fail} != X0 ]; then
|
||||||
|
echo "*** ${TESTNAME} FAILED"
|
||||||
|
else
|
||||||
|
echo "*** ${TESTNAME} PASSED"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
24
test/issues/732/Makefile
Normal file
24
test/issues/732/Makefile
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
CC = gcc
|
||||||
|
MCK_DIR=/home/satoken/ppos
|
||||||
|
|
||||||
|
MCEXEC=$(MCK_DIR)/bin/mcexec
|
||||||
|
TARGET=config
|
||||||
|
|
||||||
|
CPPFLAGS =
|
||||||
|
LDFLAGS =
|
||||||
|
|
||||||
|
all: $(TARGET)
|
||||||
|
|
||||||
|
config:
|
||||||
|
@echo "MCEXEC=$(MCEXEC)" > ./config
|
||||||
|
|
||||||
|
test: all
|
||||||
|
./CT_001.sh
|
||||||
|
./CT_002.sh
|
||||||
|
./CT_003.sh
|
||||||
|
./CT_004.sh
|
||||||
|
./CT_005.sh
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f $(TARGET) *.o
|
||||||
|
|
||||||
20
test/issues/732/README
Normal file
20
test/issues/732/README
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
|
||||||
|
CT_001:
|
||||||
|
/proc/<PID>/maps の内容を出力する
|
||||||
|
-> 出力結果の末尾に不要なNULL文字が存在しない
|
||||||
|
|
||||||
|
CT_002:
|
||||||
|
/proc/<PID>/stat の内容を出力する
|
||||||
|
-> 出力結果の末尾に不要なNULL文字が存在しない
|
||||||
|
|
||||||
|
CT_003:
|
||||||
|
/proc/<PID>/status の内容を出力する
|
||||||
|
-> 出力結果の末尾に不要なNULL文字が存在しない
|
||||||
|
|
||||||
|
CT_004:
|
||||||
|
/proc/<PID>/stack の内容を出力する
|
||||||
|
-> 出力結果の末尾に不要なNULL文字が存在しない
|
||||||
|
|
||||||
|
CT_005:
|
||||||
|
/proc/<PID>/numa_maps の内容を出力する
|
||||||
|
-> 出力結果の末尾に不要なNULL文字が存在しない
|
||||||
127
test/issues/732/resul.log
Normal file
127
test/issues/732/resul.log
Normal file
@@ -0,0 +1,127 @@
|
|||||||
|
./CT_001.sh
|
||||||
|
*** CT_001 start ***************************
|
||||||
|
000000400000-00000040b000 r-xs 0 0:0 0
|
||||||
|
00000060b000-00000060c000 r--s 0 0:0 0
|
||||||
|
00000060c000-00000060d000 rw-s 0 0:0 0
|
||||||
|
000000800000-000000821000 rw-s 0 0:0 0 [heap]
|
||||||
|
2aaaaa9f8000-2aaaaaa00000 rw-s 0 0:0 0
|
||||||
|
2aaaaaa00000-2aaaaaa21000 r-xs 0 0:0 0
|
||||||
|
2aaaaac21000-2aaaaac22000 r--s 0 0:0 0
|
||||||
|
2aaaaac22000-2aaaaac24000 rw-s 0 0:0 0
|
||||||
|
2aaaaac24000-2aaaaac26000 r-xs 0 0:0 0 [vdso]
|
||||||
|
2aaaaac26000-2aaaaac27000 rw-p 0 0:0 0
|
||||||
|
2aaaaac4d000-2aaaaac4e000 rw-p 0 0:0 0
|
||||||
|
2aaaaac4e000-2aaaaae06000 r-xp 0 0:0 0
|
||||||
|
2aaaaae06000-2aaaab006000 ---p 0 0:0 0
|
||||||
|
2aaaab006000-2aaaab00a000 r--p 0 0:0 0
|
||||||
|
2aaaab00a000-2aaaab00c000 rw-p 0 0:0 0
|
||||||
|
2aaaab00c000-2aaaab011000 rw-p 0 0:0 0
|
||||||
|
2aaaab011000-2aaaab013000 rw-p 0 0:0 0
|
||||||
|
2aaaab013000-2aaab153c000 r--p 0 0:0 0
|
||||||
|
2aaab153c000-2aaab158e000 rw-p 0 0:0 0
|
||||||
|
547fff800000-548000000000 rw-s 0 0:0 0 [stack]
|
||||||
|
[OK] end of /proc/<PID>/maps is not NULL character
|
||||||
|
*** CT_001 PASSED
|
||||||
|
|
||||||
|
./CT_002.sh
|
||||||
|
*** CT_002 start ***************************
|
||||||
|
9360 (exe) S 9359 9342 21102 34816 9342 1073750272 661 0 0 0 0 0 0 0 20 0 10 0 51949304 92908821254144 772 18446744073709551615 93824992231424 93824992276796 140737488343392 140737488328480 140737345437527 0 0 0 2147155711 18446744073709551615 0 0 17 0 0 0 0 0 0 93824994377104 93824994379104 93824994390016 140737488344339 140737488344392 140737488344392 140737488351209 0
|
||||||
|
[OK] end of /proc/<PID>/stat is not NULL character
|
||||||
|
*** CT_002 PASSED
|
||||||
|
|
||||||
|
./CT_003.sh
|
||||||
|
*** CT_003 start ***************************
|
||||||
|
Uid: 3505 3505 3505 3505
|
||||||
|
Gid: 3002 3002 3002 3002
|
||||||
|
State: R (running)
|
||||||
|
VmLck: 0 kB
|
||||||
|
Cpus_allowed: ff
|
||||||
|
Cpus_allowed_list: 0-7
|
||||||
|
Mems_allowed: 00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001
|
||||||
|
Mems_allowed_list: 0
|
||||||
|
[OK] end of /proc/<PID>/status is not NULL character
|
||||||
|
*** CT_003 PASSED
|
||||||
|
|
||||||
|
./CT_004.sh
|
||||||
|
*** CT_004 start ***************************
|
||||||
|
[<ffffffff810e26e4>] futex_wait_queue_me+0xc4/0x120
|
||||||
|
[<ffffffff810e3259>] futex_wait+0x179/0x280
|
||||||
|
[<ffffffff810e52ee>] do_futex+0xfe/0x5b0
|
||||||
|
[<ffffffff810e5820>] SyS_futex+0x80/0x180
|
||||||
|
[<ffffffff81646c49>] system_call_fastpath+0x16/0x1b
|
||||||
|
[<ffffffffffffffff>] 0xffffffffffffffff
|
||||||
|
[OK] end of /proc/<PID>/stack is not NULL character
|
||||||
|
*** CT_004 PASSED
|
||||||
|
|
||||||
|
./CT_005.sh
|
||||||
|
*** CT_005 start ***************************
|
||||||
|
00000000 prefer:0 file=anon_inode:[mckernel]
|
||||||
|
0060b000 prefer:0 file=anon_inode:[mckernel]
|
||||||
|
0060c000 prefer:0 file=anon_inode:[mckernel] mapped=3 mapmax=3 active=0 N0=3 kernelpagesize_kB=4
|
||||||
|
2aaaaac21000 prefer:0 file=anon_inode:[mckernel]
|
||||||
|
2aaaaac22000 prefer:0 file=anon_inode:[mckernel] mapped=1 mapmax=3 active=0 N0=1 kernelpagesize_kB=4
|
||||||
|
2aaaaac27000 prefer:0 file=anon_inode:[mckernel]
|
||||||
|
2aaaaac4d000 prefer:0 file=anon_inode:[mckernel]
|
||||||
|
2aaaaac4e000 prefer:0 file=anon_inode:[mckernel] mapped=1 mapmax=3 active=0 N0=1 kernelpagesize_kB=4
|
||||||
|
2aaaab006000 prefer:0 file=anon_inode:[mckernel]
|
||||||
|
2aaaab00a000 prefer:0 file=anon_inode:[mckernel] dirty=1 mapmax=3 active=0 N0=1 kernelpagesize_kB=4
|
||||||
|
2aaaab00c000 prefer:0 file=anon_inode:[mckernel]
|
||||||
|
2aaaab011000 prefer:0 file=anon_inode:[mckernel]
|
||||||
|
2aaaab013000 prefer:0 file=anon_inode:[mckernel]
|
||||||
|
2aaab153c000 prefer:0 file=anon_inode:[mckernel] dirty=3 mapped=512 mapmax=3 active=0 N0=512 kernelpagesize_kB=4
|
||||||
|
555555554000 prefer:0 file=/home/satoken/mck_srcs/pposs/ppos_development/bin/mcexec mapped=10 N0=10 kernelpagesize_kB=4
|
||||||
|
55555575f000 prefer:0 file=/home/satoken/mck_srcs/pposs/ppos_development/bin/mcexec anon=1 dirty=1 N1=1 kernelpagesize_kB=4
|
||||||
|
555555760000 prefer:0 file=/home/satoken/mck_srcs/pposs/ppos_development/bin/mcexec anon=1 dirty=1 N1=1 kernelpagesize_kB=4
|
||||||
|
555555761000 prefer:0 heap anon=11 dirty=11 N1=11 kernelpagesize_kB=4
|
||||||
|
7ffff29c9000 prefer:0
|
||||||
|
7ffff29ca000 prefer:0 stack:9416 anon=3 dirty=3 N0=2 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff31ca000 prefer:0
|
||||||
|
7ffff31cb000 prefer:0 stack:9415 anon=7 dirty=7 N0=6 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff39cb000 prefer:0
|
||||||
|
7ffff39cc000 prefer:0 stack:9414 anon=3 dirty=3 N0=2 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff41cc000 prefer:0
|
||||||
|
7ffff41cd000 prefer:0 stack:9413 anon=3 dirty=3 N0=3 kernelpagesize_kB=4
|
||||||
|
7ffff49cd000 prefer:0
|
||||||
|
7ffff49ce000 prefer:0 stack:9412 anon=3 dirty=3 N0=3 kernelpagesize_kB=4
|
||||||
|
7ffff51ce000 prefer:0
|
||||||
|
7ffff51cf000 prefer:0 stack:9411 anon=3 dirty=3 N0=3 kernelpagesize_kB=4
|
||||||
|
7ffff59cf000 prefer:0
|
||||||
|
7ffff59d0000 prefer:0 stack:9410 anon=3 dirty=3 N0=2 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff61d0000 prefer:0
|
||||||
|
7ffff61d1000 prefer:0 stack:9409 anon=3 dirty=3 N0=3 kernelpagesize_kB=4
|
||||||
|
7ffff69d1000 prefer:0
|
||||||
|
7ffff69d2000 prefer:0 stack:9408 anon=3 dirty=3 N0=2 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff71d2000 prefer:0 file=/usr/lib64/libgcc_s-4.8.5-20150702.so.1 mapped=3 mapmax=25 N0=3 kernelpagesize_kB=4
|
||||||
|
7ffff71e7000 prefer:0 file=/usr/lib64/libgcc_s-4.8.5-20150702.so.1
|
||||||
|
7ffff73e6000 prefer:0 file=/usr/lib64/libgcc_s-4.8.5-20150702.so.1 anon=1 dirty=1 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff73e7000 prefer:0 file=/usr/lib64/libgcc_s-4.8.5-20150702.so.1 anon=1 dirty=1 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff73e8000 prefer:0 file=/usr/lib64/libc-2.17.so mapped=111 mapmax=52 N0=105 N1=6 kernelpagesize_kB=4
|
||||||
|
7ffff75a0000 prefer:0 file=/usr/lib64/libc-2.17.so
|
||||||
|
7ffff77a0000 prefer:0 file=/usr/lib64/libc-2.17.so anon=4 dirty=4 N1=4 kernelpagesize_kB=4
|
||||||
|
7ffff77a4000 prefer:0 file=/usr/lib64/libc-2.17.so anon=2 dirty=2 N1=2 kernelpagesize_kB=4
|
||||||
|
7ffff77a6000 prefer:0 anon=3 dirty=3 N1=3 kernelpagesize_kB=4
|
||||||
|
7ffff77ab000 prefer:0 file=/usr/lib64/libpthread-2.17.so mapped=17 mapmax=42 N0=17 kernelpagesize_kB=4
|
||||||
|
7ffff77c2000 prefer:0 file=/usr/lib64/libpthread-2.17.so
|
||||||
|
7ffff79c1000 prefer:0 file=/usr/lib64/libpthread-2.17.so anon=1 dirty=1 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff79c2000 prefer:0 file=/usr/lib64/libpthread-2.17.so anon=1 dirty=1 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff79c3000 prefer:0 anon=1 dirty=1 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff79c7000 prefer:0 file=/usr/lib64/libnuma.so.1 mapped=8 mapmax=3 N1=8 kernelpagesize_kB=4
|
||||||
|
7ffff79d1000 prefer:0 file=/usr/lib64/libnuma.so.1
|
||||||
|
7ffff7bd1000 prefer:0 file=/usr/lib64/libnuma.so.1 anon=1 dirty=1 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff7bd2000 prefer:0 file=/usr/lib64/libnuma.so.1 anon=1 dirty=1 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff7bd3000 prefer:0 file=/usr/lib64/librt-2.17.so mapped=3 mapmax=33 N0=3 kernelpagesize_kB=4
|
||||||
|
7ffff7bda000 prefer:0 file=/usr/lib64/librt-2.17.so
|
||||||
|
7ffff7dd9000 prefer:0 file=/usr/lib64/librt-2.17.so anon=1 dirty=1 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff7dda000 prefer:0 file=/usr/lib64/librt-2.17.so anon=1 dirty=1 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff7ddb000 prefer:0 file=/usr/lib64/ld-2.17.so mapped=28 mapmax=50 N0=28 kernelpagesize_kB=4
|
||||||
|
7ffff7fce000 prefer:0 anon=5 dirty=5 N1=5 kernelpagesize_kB=4
|
||||||
|
7ffff7ff2000 prefer:0 anon=1 dirty=1 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff7ff3000 prefer:0 anon=6 dirty=6 N1=6 kernelpagesize_kB=4
|
||||||
|
7ffff7ff9000 prefer:0 anon=1 dirty=1 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff7ffa000 prefer:0
|
||||||
|
7ffff7ffc000 prefer:0 file=/usr/lib64/ld-2.17.so anon=1 dirty=1 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff7ffd000 prefer:0 file=/usr/lib64/ld-2.17.so anon=1 dirty=1 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffff7ffe000 prefer:0 anon=1 dirty=1 N1=1 kernelpagesize_kB=4
|
||||||
|
7ffffffdc000 prefer:0 stack anon=9 dirty=9 N1=9 kernelpagesize_kB=4
|
||||||
|
[OK] end of /proc/<PID>/numa_maps is not NULL character
|
||||||
|
*** CT_005 PASSED
|
||||||
152
test/issues/840/C840.sh
Normal file
152
test/issues/840/C840.sh
Normal file
@@ -0,0 +1,152 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
if ! sudo ls /sys/kernel/debug | grep kmemleak > /dev/null 2>&1; then
|
||||||
|
echo kmemleak: not found >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo 'C840T01... '
|
||||||
|
ng=0
|
||||||
|
sync
|
||||||
|
sudo /sbin/sysctl vm.drop_caches=3 > /dev/null 2>&1
|
||||||
|
./ihkosctl 0 clear_kmsg
|
||||||
|
sudo dmesg -c > /dev/null
|
||||||
|
sudo sh -c 'echo clear > /sys/kernel/debug/kmemleak'
|
||||||
|
./mcexec ./C840T01
|
||||||
|
if [ `sudo cat /sys/kernel/debug/kmemleak | wc -l` != 0 ]; then
|
||||||
|
echo 'C840T01: NG (kmemleak)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if ! dmesg | grep 'remote_page_fault:interrupted. -512' > /dev/null 2>&1; then
|
||||||
|
echo 'C840T01: WARN (remote_page_fault)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if ! ./ihkosctl 0 kmsg | grep 'is dead, terminate()' > /dev/null 2>&1; then
|
||||||
|
echo 'C840T01: WARN (syscall offloading)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if [ $ng = 0 ]; then
|
||||||
|
echo C840T01: OK
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo 'C840T02... '
|
||||||
|
ng=0
|
||||||
|
sync
|
||||||
|
sudo /sbin/sysctl vm.drop_caches=3 > /dev/null 2>&1
|
||||||
|
./ihkosctl 0 clear_kmsg
|
||||||
|
sudo dmesg -c > /dev/null
|
||||||
|
sudo sh -c 'echo clear > /sys/kernel/debug/kmemleak'
|
||||||
|
./mcexec ./C840T02
|
||||||
|
if [ `sudo cat /sys/kernel/debug/kmemleak | wc -l` != 0 ]; then
|
||||||
|
echo 'C840T02: NG (kmemleak)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if dmesg | grep 'remote_page_fault:interrupted. -512' > /dev/null 2>&1; then
|
||||||
|
echo 'C840T02: WARN (remote_page_fault)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if ! ./ihkosctl 0 kmsg | grep 'is dead, terminate()' > /dev/null 2>&1; then
|
||||||
|
echo 'C840T02: WARN (syscall offloading)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if [ $ng = 0 ]; then
|
||||||
|
echo C840T02: OK
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo 'C840T03... '
|
||||||
|
ng=0
|
||||||
|
sync
|
||||||
|
sudo /sbin/sysctl vm.drop_caches=3 > /dev/null 2>&1
|
||||||
|
./ihkosctl 0 clear_kmsg
|
||||||
|
sudo dmesg -c > /dev/null
|
||||||
|
sudo sh -c 'echo clear > /sys/kernel/debug/kmemleak'
|
||||||
|
./mcexec ./C840T03
|
||||||
|
if [ `sudo cat /sys/kernel/debug/kmemleak | wc -l` != 0 ]; then
|
||||||
|
echo 'C840T03: NG (kmemleak)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if dmesg | grep 'remote_page_fault:interrupted. -512' > /dev/null 2>&1; then
|
||||||
|
echo 'C840T03: WARN (remote_page_fault)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if ./ihkosctl 0 kmsg | grep 'is dead, terminate()' > /dev/null 2>&1; then
|
||||||
|
echo 'C840T03: WARN (syscall offloading)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if [ $ng = 0 ]; then
|
||||||
|
echo C840T03: OK
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo 'C840T04... '
|
||||||
|
ng=0
|
||||||
|
sync
|
||||||
|
sudo /sbin/sysctl vm.drop_caches=3 > /dev/null 2>&1
|
||||||
|
./ihkosctl 0 clear_kmsg
|
||||||
|
sudo dmesg -c > /dev/null
|
||||||
|
sudo sh -c 'echo clear > /sys/kernel/debug/kmemleak'
|
||||||
|
timeout -s 9 2 ./mcexec ./C840T04
|
||||||
|
sleep 2
|
||||||
|
if [ `sudo cat /sys/kernel/debug/kmemleak | wc -l` != 0 ]; then
|
||||||
|
echo 'C840T04: NG (kmemleak)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if ! dmesg | grep 'remote_page_fault:interrupted. -512' > /dev/null 2>&1; then
|
||||||
|
echo 'C840T04: WARN (remote_page_fault)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if ! ./ihkosctl 0 kmsg | grep 'is dead, terminate()' > /dev/null 2>&1; then
|
||||||
|
echo 'C840T04: WARN (syscall offloading)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if [ $ng = 0 ]; then
|
||||||
|
echo C840T04: OK
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo 'C840T05... '
|
||||||
|
ng=0
|
||||||
|
sync
|
||||||
|
sudo /sbin/sysctl vm.drop_caches=3 > /dev/null 2>&1
|
||||||
|
./ihkosctl 0 clear_kmsg
|
||||||
|
sudo dmesg -c > /dev/null
|
||||||
|
sudo sh -c 'echo clear > /sys/kernel/debug/kmemleak'
|
||||||
|
timeout -s 9 2 ./mcexec ./C840T05
|
||||||
|
sleep 2
|
||||||
|
if [ `sudo cat /sys/kernel/debug/kmemleak | wc -l` != 0 ]; then
|
||||||
|
echo 'C840T05: NG (kmemleak)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if dmesg | grep 'remote_page_fault:interrupted. -512' > /dev/null 2>&1; then
|
||||||
|
echo 'C840T05: WARN (remote_page_fault)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if ! ./ihkosctl 0 kmsg | grep 'is dead, terminate()' > /dev/null 2>&1; then
|
||||||
|
echo 'C840T05: WARN (syscall offloading)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if [ $ng = 0 ]; then
|
||||||
|
echo C840T05: OK
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo 'C840T06... '
|
||||||
|
ng=0
|
||||||
|
sync
|
||||||
|
sudo /sbin/sysctl vm.drop_caches=3 > /dev/null 2>&1
|
||||||
|
./ihkosctl 0 clear_kmsg
|
||||||
|
sudo dmesg -c > /dev/null
|
||||||
|
sudo sh -c 'echo clear > /sys/kernel/debug/kmemleak'
|
||||||
|
timeout -s 9 2 ./mcexec ./C840T06
|
||||||
|
sleep 2
|
||||||
|
if [ `sudo cat /sys/kernel/debug/kmemleak | wc -l` != 0 ]; then
|
||||||
|
echo 'C840T06: NG (kmemleak)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if dmesg | grep 'remote_page_fault:interrupted. -512' > /dev/null 2>&1; then
|
||||||
|
echo 'C840T06: WARN (remote_page_fault)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if ./ihkosctl 0 kmsg | grep 'is dead, terminate()' > /dev/null 2>&1; then
|
||||||
|
echo 'C840T06: WARN (syscall offloading)'
|
||||||
|
ng=1
|
||||||
|
fi
|
||||||
|
if [ $ng = 0 ]; then
|
||||||
|
echo C840T06: OK
|
||||||
|
fi
|
||||||
28
test/issues/840/C840.txt
Normal file
28
test/issues/840/C840.txt
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
スクリプトは Wed Jun 6 14:38:21 2018
|
||||||
|
に開始しました[?1034hbash-4.2$ sh C840.sh
|
||||||
|
C840T01...
|
||||||
|
Terminate by signal 9
|
||||||
|
C840.sh: 14 行: 22464 強制終了 ./mcexec ./C840T01
|
||||||
|
C840T01: OK
|
||||||
|
C840T02...
|
||||||
|
Terminate by signal 9
|
||||||
|
C840.sh: 38 行: 22500 強制終了 ./mcexec ./C840T02
|
||||||
|
C840T02: OK
|
||||||
|
C840T03...
|
||||||
|
Terminate by signal 9
|
||||||
|
C840.sh: 62 行: 22535 強制終了 ./mcexec ./C840T03
|
||||||
|
C840T03: OK
|
||||||
|
C840T04...
|
||||||
|
C840.sh: 86 行: 22570 強制終了 timeout -s 9 2 ./mcexec ./C840T04
|
||||||
|
C840T04: OK
|
||||||
|
C840T05...
|
||||||
|
C840.sh: 111 行: 22598 強制終了 timeout -s 9 2 ./mcexec ./C840T05
|
||||||
|
C840T05: OK
|
||||||
|
C840T06...
|
||||||
|
C840.sh: 136 行: 22626 強制終了 timeout -s 9 2 ./mcexec ./C840T06
|
||||||
|
C840T06: OK
|
||||||
|
bash-4.2$ exit
|
||||||
|
exit
|
||||||
|
|
||||||
|
スクリプトは Wed Jun 6 14:38:51 2018
|
||||||
|
に終了しました
|
||||||
46
test/issues/840/C840T01.c
Normal file
46
test/issues/840/C840T01.c
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <sys/mman.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <signal.h>
|
||||||
|
#include <errno.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
int fd;
|
||||||
|
void *p;
|
||||||
|
long l;
|
||||||
|
pid_t pid;
|
||||||
|
|
||||||
|
pid = fork();
|
||||||
|
if (pid == 0) {
|
||||||
|
sleep(1);
|
||||||
|
kill(getppid(), SIGKILL);
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
fd = open("rpf.data", O_RDONLY);
|
||||||
|
if (fd == -1) {
|
||||||
|
perror("open(rpf.data)");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
p = mmap(NULL, 512*1024*1024, PROT_READ, MAP_PRIVATE, fd, 0);
|
||||||
|
if (p == (void *)-1) {
|
||||||
|
perror("mmap");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
close(fd);
|
||||||
|
fd = open("rpf.out", O_WRONLY|O_CREAT|O_TRUNC, 0600);
|
||||||
|
if (fd == -1) {
|
||||||
|
perror("open(fpt.out)");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
l = write(fd, p, 512*1024*1024);
|
||||||
|
printf("write=%ld\n", l);
|
||||||
|
close(fd);
|
||||||
|
munmap(p, 512*1024*1024);
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
27
test/issues/840/C840T02.c
Normal file
27
test/issues/840/C840T02.c
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <sys/mman.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <signal.h>
|
||||||
|
#include <errno.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
pid_t pid;
|
||||||
|
int pfd[2];
|
||||||
|
char c;
|
||||||
|
|
||||||
|
pid = fork();
|
||||||
|
if (pid == 0) {
|
||||||
|
sleep(1);
|
||||||
|
kill(getppid(), SIGKILL);
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
pipe(pfd);
|
||||||
|
read(pfd[0], &c, 1);
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
24
test/issues/840/C840T03.c
Normal file
24
test/issues/840/C840T03.c
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <sys/mman.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <signal.h>
|
||||||
|
#include <errno.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
pid_t pid;
|
||||||
|
|
||||||
|
pid = fork();
|
||||||
|
if (pid == 0) {
|
||||||
|
sleep(1);
|
||||||
|
kill(getppid(), SIGKILL);
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
for(;;);
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
38
test/issues/840/C840T04.c
Normal file
38
test/issues/840/C840T04.c
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <sys/mman.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <signal.h>
|
||||||
|
#include <errno.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
int fd;
|
||||||
|
void *p;
|
||||||
|
long l;
|
||||||
|
|
||||||
|
fd = open("rpf.data", O_RDONLY);
|
||||||
|
if (fd == -1) {
|
||||||
|
perror("open(rpf.data)");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
p = mmap(NULL, 512*1024*1024, PROT_READ, MAP_PRIVATE, fd, 0);
|
||||||
|
if (p == (void *)-1) {
|
||||||
|
perror("mmap");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
close(fd);
|
||||||
|
fd = open("rpf.out", O_WRONLY|O_CREAT|O_TRUNC, 0600);
|
||||||
|
if (fd == -1) {
|
||||||
|
perror("open(fpt.out)");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
l = write(fd, p, 512*1024*1024);
|
||||||
|
printf("write=%ld\n", l);
|
||||||
|
close(fd);
|
||||||
|
munmap(p, 512*1024*1024);
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
19
test/issues/840/C840T05.c
Normal file
19
test/issues/840/C840T05.c
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <sys/mman.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <signal.h>
|
||||||
|
#include <errno.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
int pfd[2];
|
||||||
|
char c;
|
||||||
|
|
||||||
|
pipe(pfd);
|
||||||
|
read(pfd[0], &c, 1);
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
15
test/issues/840/C840T06.c
Normal file
15
test/issues/840/C840T06.c
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <sys/mman.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <signal.h>
|
||||||
|
#include <errno.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
for(;;);
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
587
test/issues/926/C926.c
Normal file
587
test/issues/926/C926.c
Normal file
@@ -0,0 +1,587 @@
|
|||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#include <sys/mman.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <sys/wait.h>
|
||||||
|
#include <sys/ipc.h>
|
||||||
|
#include <sys/shm.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
pid_t pid1;
|
||||||
|
pid_t pid2;
|
||||||
|
pid_t pid3;
|
||||||
|
int st;
|
||||||
|
int p[2];
|
||||||
|
int shmid;
|
||||||
|
int *sp;
|
||||||
|
key_t key;
|
||||||
|
int valid1;
|
||||||
|
int valid2;
|
||||||
|
int valid3;
|
||||||
|
char c;
|
||||||
|
int result;
|
||||||
|
struct shmid_ds buf;
|
||||||
|
|
||||||
|
key = ftok(argv[0], 0);
|
||||||
|
|
||||||
|
printf("C926T01... ");
|
||||||
|
fflush(stdout);
|
||||||
|
valid1 = 1;
|
||||||
|
valid2 = 2;
|
||||||
|
valid3 = 2;
|
||||||
|
if (socketpair(AF_UNIX, SOCK_STREAM, 0, p) == -1) {
|
||||||
|
perror("socketpair");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((pid1 = fork()) == 0) {
|
||||||
|
close(p[0]);
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
// step 0
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
*sp = 1;
|
||||||
|
// step 1
|
||||||
|
st = *sp == valid1? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
write(p[1], &c, 1);
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((pid2 = fork()) == 0) {
|
||||||
|
close(p[1]);
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
// step 2
|
||||||
|
read(p[0], &c, 1);
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
(*sp)++;
|
||||||
|
// step 3
|
||||||
|
st = *sp == valid2? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
// step 4
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
close(p[0]);
|
||||||
|
close(p[1]);
|
||||||
|
result = 0;
|
||||||
|
waitpid(pid1, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
waitpid(pid2, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
|
||||||
|
if ((pid3 = fork()) == 0) {
|
||||||
|
// step 5
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
st = *sp == valid3? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
waitpid(pid3, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
|
||||||
|
if (result == 3) {
|
||||||
|
printf("OK\n");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("NG\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("C926T02... ");
|
||||||
|
fflush(stdout);
|
||||||
|
valid1 = 1;
|
||||||
|
valid2 = 2;
|
||||||
|
valid3 = 2;
|
||||||
|
if (socketpair(AF_UNIX, SOCK_STREAM, 0, p) == -1) {
|
||||||
|
perror("socketpair");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((pid1 = fork()) == 0) {
|
||||||
|
close(p[0]);
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
// step 0
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
*sp = 1;
|
||||||
|
// step 1
|
||||||
|
st = *sp == valid1? 1: 0;
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((pid2 = fork()) == 0) {
|
||||||
|
close(p[1]);
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
// step 2
|
||||||
|
read(p[0], &c, 1);
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
(*sp)++;
|
||||||
|
// step 3
|
||||||
|
st = *sp == valid2? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
// step 4
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
close(p[0]);
|
||||||
|
close(p[1]);
|
||||||
|
result = 0;
|
||||||
|
waitpid(pid1, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
waitpid(pid2, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
|
||||||
|
if ((pid3 = fork()) == 0) {
|
||||||
|
// step 5
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
st = *sp == valid3? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
waitpid(pid3, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
|
||||||
|
if (result == 3) {
|
||||||
|
printf("OK\n");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("NG\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("C926T03... ");
|
||||||
|
fflush(stdout);
|
||||||
|
valid1 = 1;
|
||||||
|
valid2 = 1;
|
||||||
|
valid3 = 1;
|
||||||
|
if (socketpair(AF_UNIX, SOCK_STREAM, 0, p) == -1) {
|
||||||
|
perror("socketpair");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((pid1 = fork()) == 0) {
|
||||||
|
close(p[0]);
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
// step 0
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
*sp = 1;
|
||||||
|
// step 1
|
||||||
|
shmctl(shmid, IPC_RMID, &buf);
|
||||||
|
write(p[1], &c, 1);
|
||||||
|
|
||||||
|
// step3
|
||||||
|
read(p[1], &c, 1);
|
||||||
|
st = *sp == valid1? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
write(p[1], &c, 1);
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((pid2 = fork()) == 0) {
|
||||||
|
close(p[1]);
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
// step 2
|
||||||
|
read(p[0], &c, 1);
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
(*sp)++;
|
||||||
|
write(p[0], &c, 1);
|
||||||
|
// step 4
|
||||||
|
read(p[0], &c, 1);
|
||||||
|
st = *sp == valid2? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
close(p[0]);
|
||||||
|
close(p[1]);
|
||||||
|
result = 0;
|
||||||
|
waitpid(pid1, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
waitpid(pid2, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
|
||||||
|
if ((pid3 = fork()) == 0) {
|
||||||
|
// step 5
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
st = *sp == valid3? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
waitpid(pid3, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
|
||||||
|
if (result == 3) {
|
||||||
|
printf("OK\n");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("NG\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("C926T04... ");
|
||||||
|
fflush(stdout);
|
||||||
|
valid1 = 1;
|
||||||
|
valid2 = 1;
|
||||||
|
valid3 = 1;
|
||||||
|
if (socketpair(AF_UNIX, SOCK_STREAM, 0, p) == -1) {
|
||||||
|
perror("socketpair");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((pid1 = fork()) == 0) {
|
||||||
|
close(p[0]);
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
// step 0
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
*sp = 1;
|
||||||
|
// step 1
|
||||||
|
shmctl(shmid, IPC_RMID, &buf);
|
||||||
|
write(p[1], &c, 1);
|
||||||
|
|
||||||
|
// step4
|
||||||
|
read(p[1], &c, 1);
|
||||||
|
st = *sp == valid1? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((pid2 = fork()) == 0) {
|
||||||
|
close(p[1]);
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
// step 2
|
||||||
|
read(p[0], &c, 1);
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
(*sp)++;
|
||||||
|
// step 3
|
||||||
|
st = *sp == valid2? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
write(p[0], &c, 1);
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
close(p[0]);
|
||||||
|
close(p[1]);
|
||||||
|
result = 0;
|
||||||
|
waitpid(pid1, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
waitpid(pid2, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
|
||||||
|
if ((pid3 = fork()) == 0) {
|
||||||
|
// step 5
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
st = *sp == valid3? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
waitpid(pid3, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
|
||||||
|
if (result == 3) {
|
||||||
|
printf("OK\n");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("NG\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("C926T05... ");
|
||||||
|
fflush(stdout);
|
||||||
|
valid1 = 1;
|
||||||
|
valid2 = 1;
|
||||||
|
valid3 = 1;
|
||||||
|
if (socketpair(AF_UNIX, SOCK_STREAM, 0, p) == -1) {
|
||||||
|
perror("socketpair");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((pid1 = fork()) == 0) {
|
||||||
|
close(p[0]);
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
// step 0
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
*sp = 1;
|
||||||
|
// step 1
|
||||||
|
shmctl(shmid, IPC_RMID, &buf);
|
||||||
|
// step2
|
||||||
|
st = *sp == valid1? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
write(p[1], &c, 1);
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((pid2 = fork()) == 0) {
|
||||||
|
close(p[1]);
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
// step 3
|
||||||
|
read(p[0], &c, 1);
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
(*sp)++;
|
||||||
|
// step 4
|
||||||
|
st = *sp == valid2? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
close(p[0]);
|
||||||
|
close(p[1]);
|
||||||
|
result = 0;
|
||||||
|
waitpid(pid1, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
waitpid(pid2, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
|
||||||
|
if ((pid3 = fork()) == 0) {
|
||||||
|
// step 5
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
st = *sp == valid3? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
waitpid(pid3, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
|
||||||
|
if (result == 3) {
|
||||||
|
printf("OK\n");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("NG\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("C926T06... ");
|
||||||
|
fflush(stdout);
|
||||||
|
valid1 = 1;
|
||||||
|
valid2 = 1;
|
||||||
|
valid3 = 1;
|
||||||
|
if (socketpair(AF_UNIX, SOCK_STREAM, 0, p) == -1) {
|
||||||
|
perror("socketpair");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((pid1 = fork()) == 0) {
|
||||||
|
close(p[0]);
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
// step 0
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
*sp = 1;
|
||||||
|
// step 1
|
||||||
|
shmctl(shmid, IPC_RMID, &buf);
|
||||||
|
// step2
|
||||||
|
st = *sp == valid1? 1: 0;
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((pid2 = fork()) == 0) {
|
||||||
|
close(p[1]);
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
// step 3
|
||||||
|
read(p[0], &c, 1);
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
(*sp)++;
|
||||||
|
// step 4
|
||||||
|
st = *sp == valid2? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
close(p[0]);
|
||||||
|
close(p[1]);
|
||||||
|
result = 0;
|
||||||
|
waitpid(pid1, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
waitpid(pid2, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
|
||||||
|
if ((pid3 = fork()) == 0) {
|
||||||
|
// step 5
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
st = *sp == valid3? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
waitpid(pid3, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
|
||||||
|
if (result == 3) {
|
||||||
|
printf("OK\n");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("NG\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("C926T07... ");
|
||||||
|
fflush(stdout);
|
||||||
|
valid1 = 2;
|
||||||
|
valid2 = 2;
|
||||||
|
valid3 = 0;
|
||||||
|
if (socketpair(AF_UNIX, SOCK_STREAM, 0, p) == -1) {
|
||||||
|
perror("socketpair");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((pid1 = fork()) == 0) {
|
||||||
|
close(p[0]);
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
// step 0
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
*sp = 1;
|
||||||
|
write(p[1], &c, 1);
|
||||||
|
// step 2
|
||||||
|
read(p[1], &c, 1);
|
||||||
|
shmctl(shmid, IPC_RMID, &buf);
|
||||||
|
// step2
|
||||||
|
st = *sp == valid1? 1: 0;
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((pid2 = fork()) == 0) {
|
||||||
|
close(p[1]);
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
// step 1
|
||||||
|
read(p[0], &c, 1);
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
(*sp)++;
|
||||||
|
write(p[0], &c, 1);
|
||||||
|
// step 3
|
||||||
|
read(p[0], &c, 1);
|
||||||
|
st = *sp == valid2? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
// step 4
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
close(p[0]);
|
||||||
|
close(p[1]);
|
||||||
|
result = 0;
|
||||||
|
waitpid(pid1, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
waitpid(pid2, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
|
||||||
|
if ((pid3 = fork()) == 0) {
|
||||||
|
// step 5
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
st = *sp == valid3? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
waitpid(pid3, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
|
||||||
|
if (result == 3) {
|
||||||
|
printf("OK\n");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("NG\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("C926T08... ");
|
||||||
|
fflush(stdout);
|
||||||
|
valid1 = 2;
|
||||||
|
valid2 = 2;
|
||||||
|
valid3 = 2;
|
||||||
|
if (socketpair(AF_UNIX, SOCK_STREAM, 0, p) == -1) {
|
||||||
|
perror("socketpair");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((pid1 = fork()) == 0) {
|
||||||
|
close(p[0]);
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
// step 0
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
*sp = 1;
|
||||||
|
write(p[1], &c, 1);
|
||||||
|
// step 2
|
||||||
|
read(p[1], &c, 1);
|
||||||
|
// step2
|
||||||
|
st = *sp == valid1? 1: 0;
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((pid2 = fork()) == 0) {
|
||||||
|
close(p[1]);
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
// step 1
|
||||||
|
read(p[0], &c, 1);
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
(*sp)++;
|
||||||
|
write(p[0], &c, 1);
|
||||||
|
// step 3
|
||||||
|
read(p[0], &c, 1);
|
||||||
|
st = *sp == valid2? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
// step 4
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
close(p[0]);
|
||||||
|
close(p[1]);
|
||||||
|
result = 0;
|
||||||
|
waitpid(pid1, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
waitpid(pid2, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
|
||||||
|
if ((pid3 = fork()) == 0) {
|
||||||
|
// step 5
|
||||||
|
shmid = shmget(key, 4096, IPC_CREAT | 0660);
|
||||||
|
sp = shmat(shmid, NULL, 0);
|
||||||
|
st = *sp == valid3? 1: 0;
|
||||||
|
shmdt(sp);
|
||||||
|
exit(st);
|
||||||
|
}
|
||||||
|
|
||||||
|
waitpid(pid3, &st, 0);
|
||||||
|
if (WIFEXITED(st))
|
||||||
|
result += WEXITSTATUS(st);
|
||||||
|
|
||||||
|
if (result == 3) {
|
||||||
|
printf("OK\n");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("NG\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
15
test/issues/926/C926.txt
Normal file
15
test/issues/926/C926.txt
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
スクリプトは Wed Jun 6 14:39:24 2018
|
||||||
|
に開始しました[?1034hbash-4.2$ ./mcexec C[K./C926
|
||||||
|
C926T01... OK
|
||||||
|
C926T02... OK
|
||||||
|
C926T03... OK
|
||||||
|
C926T04... OK
|
||||||
|
C926T05... OK
|
||||||
|
C926T06... OK
|
||||||
|
C926T07... OK
|
||||||
|
C926T08... OK
|
||||||
|
bash-4.2$ exit
|
||||||
|
exit
|
||||||
|
|
||||||
|
スクリプトは Wed Jun 6 14:39:38 2018
|
||||||
|
に終了しました
|
||||||
@@ -1,18 +1,18 @@
|
|||||||
.SUFFIXES: # Clear suffixes
|
.SUFFIXES: # Clear suffixes
|
||||||
.SUFFIXES: .c
|
.SUFFIXES: .c
|
||||||
|
|
||||||
CC = gcc
|
CC = gcc
|
||||||
|
|
||||||
CPPFLAGS = -I$(HOME)/project/os/install/include
|
CPPFLAGS = -I$(HOME)/project/os/install/include
|
||||||
CCFLAGS = -g
|
CCFLAGS = -g
|
||||||
LDFLAGS = -L$(HOME)/project/os/install/lib -lihk -Wl,-rpath -Wl,$(HOME)/project/os/install/lib
|
LDFLAGS = -L$(HOME)/project/os/install/lib -lihk -Wl,-rpath -Wl,$(HOME)/project/os/install/lib -lpthread
|
||||||
EXES =
|
EXES =
|
||||||
SRCS =
|
SRCS =
|
||||||
OBJS = $(SRCS:.c=.o)
|
OBJS = $(SRCS:.c=.o)
|
||||||
|
|
||||||
CPPFLAGSMCK = -I$(HOME)/usr/include
|
CPPFLAGSMCK = -I$(HOME)/usr/include
|
||||||
CCFLAGSMCK = -g -O0
|
CCFLAGSMCK = -g -O0
|
||||||
LDFLAGSMCK = -static
|
LDFLAGSMCK = -static -lpthread
|
||||||
SRCSMCK = $(shell ls rusage*.c)
|
SRCSMCK = $(shell ls rusage*.c)
|
||||||
EXESMCK = $(SRCSMCK:.c=)
|
EXESMCK = $(SRCSMCK:.c=)
|
||||||
OBJSMCK = $(SRCSMCK:.c=.o)
|
OBJSMCK = $(SRCSMCK:.c=.o)
|
||||||
@@ -163,5 +163,17 @@ rusage103: rusage103.o
|
|||||||
rusage103.o: rusage103.c
|
rusage103.o: rusage103.c
|
||||||
$(CC) $(CCFLAGS) $(CPPFLAGS) -c $<
|
$(CC) $(CCFLAGS) $(CPPFLAGS) -c $<
|
||||||
|
|
||||||
|
%_mck: %_mck.o
|
||||||
|
$(CC) -o $@ $^ $(LDFLAGSMCK)
|
||||||
|
|
||||||
|
%_mck.o:: %_mck.c
|
||||||
|
$(CC) $(CCFLAGSMCK) $(CPPFLAGSMCK) -c $<
|
||||||
|
|
||||||
|
%_lin.o:: %_lin.c
|
||||||
|
$(CC) $(CCFLAGS) $(CPPFLAGS) -c $<
|
||||||
|
|
||||||
|
%_lin: %_lin.o
|
||||||
|
$(CC) -o $@ $^ $(LDFLAGS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f core $(EXES) $(OBJS) $(EXESMCK) $(OBJSMCK)
|
rm -f core $(EXES) $(OBJS) $(EXESMCK) $(OBJSMCK)
|
||||||
|
|||||||
@@ -102,15 +102,16 @@ rusage021: Run npb bt-mz.S.4
|
|||||||
2-ppn x 2-tpn x 2-node (wallaby{14,15}) [OK]
|
2-ppn x 2-tpn x 2-node (wallaby{14,15}) [OK]
|
||||||
2-ppn x 1-tpn x 2-node (polaris,kochab) [OK]
|
2-ppn x 1-tpn x 2-node (polaris,kochab) [OK]
|
||||||
|
|
||||||
rusage100: Test ihk_os_getrusage()
|
rusage100: Test ihk_os_getrusage()
|
||||||
anon mmap,num_threads=1 [OK]
|
anon mmap,num_threads=1 [OK]
|
||||||
|
|
||||||
rusage101: Test ihk_os_getrusage()
|
rusage101: Test ihk_os_getrusage()
|
||||||
anon mmap,num_threads=2 [OK]
|
anon mmap,num_threads=2 [OK]
|
||||||
|
|
||||||
rusage102: Test ihk_os_getrusage()
|
rusage102: Test ihk_os_getrusage()
|
||||||
file map,num_threads=1 [OK]
|
file map,num_threads=1 [OK]
|
||||||
|
|
||||||
rusage103: Test ihk_os_getrusage()
|
rusage103: Test ihk_os_getrusage()
|
||||||
anon mmap@numa#1 [OK]
|
anon mmap@numa#1 [OK]
|
||||||
|
|
||||||
|
rusage104: Test ihk_os_getrusage(), user time per CPU
|
||||||
|
|||||||
@@ -17,13 +17,18 @@ case ${testname} in
|
|||||||
printf "*** Enable debug messages in rusage.h, memory.c, fileobj.c, shmobj.c, process.c by defining DEBUG macro, e.g. #define RUSAGE_DEBUG and then recompile IHK/McKernel.\n"
|
printf "*** Enable debug messages in rusage.h, memory.c, fileobj.c, shmobj.c, process.c by defining DEBUG macro, e.g. #define RUSAGE_DEBUG and then recompile IHK/McKernel.\n"
|
||||||
printf "*** Install xpmem by git-clone https://github.com/hjelmn/xpmem.\n"
|
printf "*** Install xpmem by git-clone https://github.com/hjelmn/xpmem.\n"
|
||||||
;;
|
;;
|
||||||
rusage10?)
|
rusage100 | rusage101 | rusage102 | rusage103)
|
||||||
printf "*** Refer to rusage100.patch to add syscall #900 by editing syscall_list.h and syscall.c and recompile IHK/McKernel.\n"
|
printf "*** Refer to rusage100.patch to add syscall #900 by editing syscall_list.h and syscall.c and recompile IHK/McKernel.\n"
|
||||||
;;
|
;;
|
||||||
|
rusage104)
|
||||||
|
printf "*** Apply rusage104.patch to enable syscall #900"
|
||||||
|
printf "which reports rusage values.\n"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
printf "*** Enable debug messages in rusage.h, memory.c, fileobj.c, shmobj.c, process.c by defining DEBUG macro, e.g. #define RUSAGE_DEBUG and then recompile IHK/McKernel.\n"
|
printf "*** Enable debug messages in rusage.h, memory.c, fileobj.c, shmobj.c, process.c by defining DEBUG macro, e.g. #define RUSAGE_DEBUG and then recompile IHK/McKernel.\n"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
read -p "*** Hit return when ready!" key
|
read -p "*** Hit return when ready!" key
|
||||||
|
|
||||||
case ${testname} in
|
case ${testname} in
|
||||||
@@ -45,6 +50,11 @@ case ${testname} in
|
|||||||
bn=npb/NPB3.3.1-MZ/NPB3.3-MZ-MPI/bin/bt-mz.S.4
|
bn=npb/NPB3.3.1-MZ/NPB3.3-MZ-MPI/bin/bt-mz.S.4
|
||||||
perl -e 'print "polaris:2\nkochab:2\n"' > ./hostfile
|
perl -e 'print "polaris:2\nkochab:2\n"' > ./hostfile
|
||||||
;;
|
;;
|
||||||
|
rusage104)
|
||||||
|
bn=${testname}
|
||||||
|
make clean > /dev/null 2> /dev/null
|
||||||
|
make ${bn}_mck ${bn}_lin
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
bn=${testname}
|
bn=${testname}
|
||||||
make clean > /dev/null 2> /dev/null
|
make clean > /dev/null 2> /dev/null
|
||||||
@@ -141,8 +151,11 @@ case ${testname} in
|
|||||||
rusage103)
|
rusage103)
|
||||||
bootopt="-m 256M@1"
|
bootopt="-m 256M@1"
|
||||||
;;
|
;;
|
||||||
|
rusage104)
|
||||||
|
bootopt="-c 1,2,3 -m 256M"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
echo Unknown test case
|
echo Unknown test case
|
||||||
exit 255
|
exit 255
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@@ -199,6 +212,12 @@ else
|
|||||||
echo "================================================" >> ./${testname}.log
|
echo "================================================" >> ./${testname}.log
|
||||||
sudo ${install}/sbin/ihkosctl 0 kmsg >> ./${testname}.log
|
sudo ${install}/sbin/ihkosctl 0 kmsg >> ./${testname}.log
|
||||||
;;
|
;;
|
||||||
|
rusage104)
|
||||||
|
${install}/bin/mcexec ${mcexecopt} ./${bn}_mck
|
||||||
|
${install}/bin/mcexec ${mcexecopt} ./${bn}_lin
|
||||||
|
sudo ${install}/sbin/ihkosctl 0 kmsg > ./${testname}.log
|
||||||
|
grep user ./${testname}.log
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
${install}/bin/mcexec ${mcexecopt} ./${bn} ${testopt}
|
${install}/bin/mcexec ${mcexecopt} ./${bn} ${testopt}
|
||||||
sudo ${install}/sbin/ihkosctl 0 kmsg > ./${testname}.log
|
sudo ${install}/sbin/ihkosctl 0 kmsg > ./${testname}.log
|
||||||
@@ -206,10 +225,13 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
case ${testname} in
|
case ${testname} in
|
||||||
rusage10?)
|
rusage100 | rusage101 | rusage102 | rusage103)
|
||||||
printf "*** Check the ihk_os_getrusage() result (the first part of ${testname}.log) matches with the syscall #900 result (the second part) \n"
|
printf "*** Check the ihk_os_getrusage() result (the first part of ${testname}.log) matches with the syscall #900 result (the second part) \n"
|
||||||
;;
|
;;
|
||||||
|
rusage104)
|
||||||
|
printf "*** It behaves as expected when there's no [NG] and "
|
||||||
|
printf "\"All tests finished\" is shown\n"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
printf "*** cat ${testname}.log (kmsg) > ./match.pl to confirm there's no stray add/sub.\n"
|
printf "*** cat ${testname}.log (kmsg) > ./match.pl to confirm there's no stray add/sub.\n"
|
||||||
printf "*** Look ${testname}.log (kmsg) to confirm memory_stat_*[*] returned to zero when the last thread exits.\n"
|
printf "*** Look ${testname}.log (kmsg) to confirm memory_stat_*[*] returned to zero when the last thread exits.\n"
|
||||||
|
|||||||
47
test/rusage/rusage104.patch
Normal file
47
test/rusage/rusage104.patch
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
diff --git arch/x86_64/kernel/include/syscall_list.h arch/x86_64/kernel/include/syscall_list.h
|
||||||
|
index 48b1ea0..3717bb2 100644
|
||||||
|
--- arch/x86_64/kernel/include/syscall_list.h
|
||||||
|
+++ arch/x86_64/kernel/include/syscall_list.h
|
||||||
|
@@ -168,4 +168,6 @@ SYSCALL_HANDLED(802, linux_mlock)
|
||||||
|
SYSCALL_HANDLED(803, suspend_threads)
|
||||||
|
SYSCALL_HANDLED(804, resume_threads)
|
||||||
|
SYSCALL_HANDLED(811, linux_spawn)
|
||||||
|
+
|
||||||
|
+SYSCALL_HANDLED(900, dump_rusage)
|
||||||
|
/**** End of File ****/
|
||||||
|
diff --git kernel/syscall.c kernel/syscall.c
|
||||||
|
index 8dc0a0e..9969a4b 100644
|
||||||
|
--- kernel/syscall.c
|
||||||
|
+++ kernel/syscall.c
|
||||||
|
@@ -9477,3 +9477,31 @@ long syscall(int num, ihk_mc_user_context_t *ctx)
|
||||||
|
|
||||||
|
return l;
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+SYSCALL_DECLARE(dump_rusage)
|
||||||
|
+{
|
||||||
|
+ /* rusage debug */
|
||||||
|
+ int i;
|
||||||
|
+ for(i = 0; i < IHK_MAX_NUM_PGSIZES; i++) {
|
||||||
|
+ kprintf("memory_stat_rss[%d]=%ld\n", i, rusage->memory_stat_rss[i]);
|
||||||
|
+ }
|
||||||
|
+ for(i = 0; i < IHK_MAX_NUM_PGSIZES; i++) {
|
||||||
|
+ kprintf("memory_stat_mapped_file[%d]=%ld\n", i, rusage->memory_stat_mapped_file[i]);
|
||||||
|
+ }
|
||||||
|
+ kprintf("memory_max_usage=%ld\n", rusage->memory_max_usage);
|
||||||
|
+ kprintf("memory_kmem_usage=%ld\n", rusage->memory_kmem_usage);
|
||||||
|
+ kprintf("memory_kmem_max_usage=%ld\n", rusage->memory_kmem_max_usage);
|
||||||
|
+ for (i = 0; i < rusage->num_numa_nodes; i++) {
|
||||||
|
+ kprintf("memory_numa_stat[%d]=%ld\n", i, rusage->memory_numa_stat[i]);
|
||||||
|
+ }
|
||||||
|
+ kprintf("ns_per_tsc=%ld\n", rusage->ns_per_tsc);
|
||||||
|
+ for (i = 0; i < rusage->num_processors; i++) {
|
||||||
|
+ kprintf("cpu[%d].user_tsc=%ld\n", i, rusage->cpu[i].user_tsc);
|
||||||
|
+ kprintf("cpu[%d].system_tsc=%ld\n", i, rusage->cpu[i].system_tsc);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ kprintf("num_threads=%d\n", rusage->num_threads);
|
||||||
|
+ kprintf("max_num_threads=%d\n", rusage->max_num_threads);
|
||||||
|
+
|
||||||
|
+ return 0;
|
||||||
|
+}
|
||||||
38
test/rusage/rusage104_lin.c
Normal file
38
test/rusage/rusage104_lin.c
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
#define _GNU_SOURCE
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include "ihklib.h"
|
||||||
|
#include "mckernel/ihklib_rusage.h"
|
||||||
|
#include "util.h"
|
||||||
|
|
||||||
|
#define DELAY0 (100UL * 1000 * 1000)
|
||||||
|
#define DELAY1 (200UL * 1000 * 1000)
|
||||||
|
#define SCALE 1.5
|
||||||
|
#define WITHIN_RANGE(x, y, s) (x >= y && x <= y * s)
|
||||||
|
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
int ret = 0;
|
||||||
|
struct mckernel_rusage rusage;
|
||||||
|
|
||||||
|
if ((ret = ihk_os_getrusage(0, &rusage, sizeof(rusage)))) {
|
||||||
|
fprintf(stderr, "%s: ihk_os_getrusage failed\n", __func__);
|
||||||
|
ret = -EINVAL;
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
OKNG(WITHIN_RANGE(rusage.cpuacct_usage_percpu[1], DELAY0, SCALE),
|
||||||
|
"cpu 0: user time: expected: %ld nsec, reported: %ld nsec\n",
|
||||||
|
DELAY0, rusage.cpuacct_usage_percpu[1]);
|
||||||
|
OKNG(WITHIN_RANGE(rusage.cpuacct_usage_percpu[2], DELAY1, SCALE),
|
||||||
|
"cpu 1: user time: expected: %ld nsec, reported: %ld nsec\n",
|
||||||
|
DELAY1, rusage.cpuacct_usage_percpu[2]);
|
||||||
|
|
||||||
|
printf("All tests finished\n");
|
||||||
|
|
||||||
|
out:
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
221
test/rusage/rusage104_mck.c
Normal file
221
test/rusage/rusage104_mck.c
Normal file
@@ -0,0 +1,221 @@
|
|||||||
|
#define _GNU_SOURCE
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <sys/mman.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <pthread.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <sys/mman.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <sys/syscall.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
|
||||||
|
|
||||||
|
#define DELAY0 (100UL * 1000 * 1000)
|
||||||
|
#define DELAY1 (200UL * 1000 * 1000)
|
||||||
|
|
||||||
|
struct thr_arg {
|
||||||
|
unsigned long delay;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct thr_arg thr_arg[2] = { { .delay = DELAY0 }, { .delay = DELAY1 } };
|
||||||
|
pthread_t thr[2];
|
||||||
|
|
||||||
|
#define DIFFNSEC(end, start) ((end.tv_sec - start.tv_sec) * 1000000000UL + \
|
||||||
|
(end.tv_nsec - start.tv_nsec))
|
||||||
|
#define TIMER_KIND CLOCK_MONOTONIC_RAW /* CLOCK_THREAD_CPUTIME_ID */
|
||||||
|
|
||||||
|
static int print_cpu_last_executed_on(void)
|
||||||
|
{
|
||||||
|
int ret = 0;
|
||||||
|
char fn[256];
|
||||||
|
char *result;
|
||||||
|
pid_t tid = syscall(SYS_gettid);
|
||||||
|
int fd;
|
||||||
|
int offset;
|
||||||
|
int amount = 0;
|
||||||
|
char *list;
|
||||||
|
char *token;
|
||||||
|
int i;
|
||||||
|
int cpu;
|
||||||
|
|
||||||
|
sprintf(fn, "/proc/%d/task/%d/stat", getpid(), (int)tid);
|
||||||
|
fd = open(fn, O_RDONLY);
|
||||||
|
if (fd == -1) {
|
||||||
|
printf("open() failed\n");
|
||||||
|
goto fn_fail;
|
||||||
|
}
|
||||||
|
|
||||||
|
result = malloc(65536);
|
||||||
|
if (result == NULL) {
|
||||||
|
printf("malloc() failed");
|
||||||
|
goto fn_fail;
|
||||||
|
}
|
||||||
|
|
||||||
|
offset = 0;
|
||||||
|
while (1) {
|
||||||
|
amount = read(fd, result + offset, 65536);
|
||||||
|
// printf("amount=%d\n", amount);
|
||||||
|
if (amount == -1) {
|
||||||
|
printf("read() failed");
|
||||||
|
goto fn_fail;
|
||||||
|
}
|
||||||
|
if (amount == 0) {
|
||||||
|
goto eof;
|
||||||
|
}
|
||||||
|
offset += amount;
|
||||||
|
}
|
||||||
|
eof:;
|
||||||
|
//printf("result:%s\n", result);
|
||||||
|
|
||||||
|
list = result;
|
||||||
|
for (i = 0; i < 39; i++) {
|
||||||
|
token = strsep(&list, " ");
|
||||||
|
}
|
||||||
|
|
||||||
|
cpu = sched_getcpu();
|
||||||
|
if (cpu == -1) {
|
||||||
|
printf("getcpu() failed\n");
|
||||||
|
goto fn_fail;
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("[INFO] stat-cpu=%02d,sched_getcpu=%02d,tid=%d\n",
|
||||||
|
token ? atoi(token) : -1, cpu, tid);
|
||||||
|
fn_exit:
|
||||||
|
free(result);
|
||||||
|
return ret;
|
||||||
|
fn_fail:
|
||||||
|
ret = -1;
|
||||||
|
goto fn_exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void asm_loop(unsigned long n)
|
||||||
|
{
|
||||||
|
int j;
|
||||||
|
|
||||||
|
for (j = 0; j < (n); j++) {
|
||||||
|
asm volatile(
|
||||||
|
"movq $0, %%rcx\n\t"
|
||||||
|
"1:\t"
|
||||||
|
"addq $1, %%rcx\n\t"
|
||||||
|
"cmpq $99, %%rcx\n\t"
|
||||||
|
"jle 1b\n\t"
|
||||||
|
:
|
||||||
|
:
|
||||||
|
: "rcx", "cc");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
double nspw; /* nsec per work */
|
||||||
|
unsigned long nsec;
|
||||||
|
|
||||||
|
void fwq_init(void)
|
||||||
|
{
|
||||||
|
struct timespec start, end;
|
||||||
|
int i;
|
||||||
|
|
||||||
|
clock_gettime(TIMER_KIND, &start);
|
||||||
|
#define N_INIT 10000000
|
||||||
|
asm_loop(N_INIT);
|
||||||
|
clock_gettime(TIMER_KIND, &end);
|
||||||
|
nsec = DIFFNSEC(end, start);
|
||||||
|
nspw = nsec / (double)N_INIT;
|
||||||
|
}
|
||||||
|
|
||||||
|
#if 1
|
||||||
|
void fwq(long delay_nsec)
|
||||||
|
{
|
||||||
|
if (delay_nsec < 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
asm_loop(delay_nsec / nspw);
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
/* For machines with large core-to-core performance variation (e.g. OFP) */
|
||||||
|
void fwq(long delay_nsec)
|
||||||
|
{
|
||||||
|
struct timespec start, end;
|
||||||
|
|
||||||
|
if (delay_nsec < 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
clock_gettime(TIMER_KIND, &start);
|
||||||
|
|
||||||
|
while (1) {
|
||||||
|
clock_gettime(TIMER_KIND, &end);
|
||||||
|
if (DIFFNSEC(end, start) >= delay_nsec) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
asm_loop(2); /* ~150 ns per iteration on FOP */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
void *util_thread(void *_arg)
|
||||||
|
{
|
||||||
|
struct thr_arg *arg = (struct thr_arg *)_arg;
|
||||||
|
|
||||||
|
print_cpu_last_executed_on();
|
||||||
|
fwq(arg->delay);
|
||||||
|
pthread_exit(NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
int ret = 0;
|
||||||
|
cpu_set_t cpuset;
|
||||||
|
pthread_attr_t attr[2];
|
||||||
|
|
||||||
|
fwq_init();
|
||||||
|
|
||||||
|
/* Migrate to cpu#0 */
|
||||||
|
CPU_ZERO(&cpuset);
|
||||||
|
CPU_SET(0, &cpuset);
|
||||||
|
sched_setaffinity(0, sizeof(cpu_set_t), &cpuset);
|
||||||
|
print_cpu_last_executed_on();
|
||||||
|
|
||||||
|
for (i = 0; i < 2; i++) {
|
||||||
|
CPU_ZERO(&cpuset);
|
||||||
|
CPU_SET(i + 1, &cpuset);
|
||||||
|
|
||||||
|
if ((ret = pthread_attr_init(&attr[i]))) {
|
||||||
|
printf("%s: ERROR: pthread_attr_init failed (%d)\n",
|
||||||
|
__func__, ret);
|
||||||
|
ret = -EINVAL;
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((ret = pthread_attr_setaffinity_np(&attr[i],
|
||||||
|
sizeof(cpu_set_t), &cpuset))) {
|
||||||
|
printf("%s: ERROR: pthread_attr_setaffinity_np "
|
||||||
|
"failed (%d)\n", __func__, ret);
|
||||||
|
ret = -EINVAL;
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((ret = pthread_create(&thr[i], &attr[i],
|
||||||
|
util_thread, &thr_arg[i]))) {
|
||||||
|
fprintf(stderr, "ERROR: pthread_create failed (%d)\n",
|
||||||
|
ret);
|
||||||
|
ret = -EINVAL;
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < 2; i++) {
|
||||||
|
pthread_join(thr[i], NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((ret = syscall(900))) {
|
||||||
|
fprintf(stderr, "%s: syscall failed\n", __func__);
|
||||||
|
ret = -EINVAL;
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
out:
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
44
test/rusage/util.h
Normal file
44
test/rusage/util.h
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
#ifndef __UTIL_H_INCLUDED__
|
||||||
|
#define __UTIL_H_INCLUDED__
|
||||||
|
|
||||||
|
#define DEBUG
|
||||||
|
|
||||||
|
#ifdef DEBUG
|
||||||
|
#define dprintf(...) do { \
|
||||||
|
char msg[1024]; \
|
||||||
|
sprintf(msg, __VA_ARGS__); \
|
||||||
|
fprintf(stderr, "%s,%s", __func__, msg); \
|
||||||
|
} while (0)
|
||||||
|
#else
|
||||||
|
#define dprintf(...) do { } while (0)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define eprintf(...) do { \
|
||||||
|
char msg[1024]; \
|
||||||
|
sprintf(msg, __VA_ARGS__); \
|
||||||
|
fprintf(stderr, "%s,%s", __func__, msg); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
#define CHKANDJUMP(cond, err, ...) do { \
|
||||||
|
if (cond) { \
|
||||||
|
eprintf(__VA_ARGS__); \
|
||||||
|
ret = err; \
|
||||||
|
goto fn_fail; \
|
||||||
|
} \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
|
||||||
|
#define OKNG(cond, ...) do { \
|
||||||
|
if (cond) { \
|
||||||
|
printf("[ OK ] "); \
|
||||||
|
printf(__VA_ARGS__); \
|
||||||
|
} else { \
|
||||||
|
printf("[ NG ] "); \
|
||||||
|
printf(__VA_ARGS__); \
|
||||||
|
ret = -EINVAL; \
|
||||||
|
goto out; \
|
||||||
|
} \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
Reference in New Issue
Block a user