Skip to main content
版本:2.4.3

模拟时间故障

本文主要介绍如何使用 Chaosd 模拟时间偏移的场景。本功能支持通过命令行模式或服务模式创建实验。

使用命令行模式创建实验

本节介绍如何在命令行模式中创建时间故障实验。

在创建时间故障实验前,可运行以下命令行查看时间故障的相关配置项:

chaosd attack clock -h

结果如下所示:

$ chaosd attack clock -h

clock skew

Usage:
chaosd attack clock attack [flags]

Flags:
-c, --clock-ids-slice string The identifier of the particular clock on which to act.More clock description in linux kernel can be found in man page of clock_getres, clock_gettime, clock_settime.Muti clock ids should be split with "," (default "CLOCK_REALTIME")
-h, --help help for clock
-p, --pid int Pid of target program.
-t, --time-offset string Specifies the length of time offset.

Global Flags:
--log-level string the log level of chaosd, the value can be 'debug', 'info', 'warn' and 'error'
--uid string the experiment ID

快速使用

准备测试程序:

cat > time.c << EOF
#include <stdio.h>
#include <time.h>
#include <unistd.h>
#include <sys/types.h>

int main() {
printf("PID : %ld\n", (long)getpid());
struct timespec ts;
for(;;) {
clock_gettime(CLOCK_REALTIME, &ts);
printf("Time : %lld.%.9ld\n", (long long)ts.tv_sec, ts.tv_nsec);
sleep(10);
}
}
EOF

gcc -o get_time ./time.c

接下来执行 get_time 并且使用 chaosd 尝试创建时间故障如下:

chaosd attack clock -p $PID -t 11s

模拟时间故障的相关配置

配置项类型说明默认值必要项例子
timeOffsetstring指定时间的偏移量。None-5m
clockIds[]string指定时间偏移作用的时钟,详见 clock_gettime documentation["CLOCK_REALTIME"]["CLOCK_REALTIME", "CLOCK_MONOTONIC"]
pidstring进程的标识符。None1

使用服务模式创建实验

模拟时间故障相关参数说明

参数说明
pid进程的标识符。int 类型
time-offset指定时间的偏移量。string 类型,例如:"-5m"
clock-ids-slice指定时间偏移作用的时钟,详见 clock_gettime documentationstring 数组类型,默认为 ["CLOCK_REALTIME"]

使用服务模式模拟时间故障示例

运行快速使用中的测试程序,使用以下命令创建时间故障:

curl -X POST 172.16.112.130:31767/api/attack/clock -H "Content-Type:application/json" -d '{"pid":123, "time-offset":"11s"}'