跳到主要内容
版本:2.6.7

模拟时间故障

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

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

配置项配置缩写服务模式字段说明类型
time-offsettime-offset指定时间偏移的时长。string 类型例如 -5m。必须要设置
clock-ids-sliceclock-ids-slice指定将被偏移的时钟 ID,多个时钟 ID 以逗号分隔。详见 clock_gettime 文档string 类型默认值为 "CLOCK_REALTIME"
pidpid进程的标识符。int 类型必须要设置

使用命令行模式模拟时间故障场景

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

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

使用服务模式模拟时间故障场景

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

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