Subversion Repositories HelenOS

Rev

Rev 2808 | Rev 2812 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2801 svoboda 1
#include <stdio.h>
2
#include <unistd.h>
2809 svoboda 3
#include <syscall.h>
2801 svoboda 4
#include <ipc/ipc.h>
5
#include "../tester.h"
6
 
2806 svoboda 7
const char *syscall_name[] = {
8
    "sys_io",
9
    "sys_tls_set",
10
    "sys_thread_create",
11
    "sys_thread_exit",
12
    "sys_thread_get_id",
13
    "sys_task_get_id",
14
    "sys_futex_sleep_timeout",
15
    "sys_futex_wakeup",
16
    "sys_as_area_create",
17
    "sys_as_area_resize",
18
    "sys_as_area_destroy",
19
    "sys_ipc_call_sync_fast",
20
    "sys_ipc_call_sync_slow",
21
    "sys_ipc_call_async_fast",
22
    "sys_ipc_call_async_slow",
23
    "sys_ipc_answer_fast",
24
    "sys_ipc_answer_slow",
25
    "sys_ipc_forward_fast",
26
    "sys_ipc_wait_for_call",
27
    "sys_ipc_hangup",
28
    "sys_ipc_register_irq",
29
    "sys_ipc_unregister_irq",
30
    "sys_cap_grant",
31
    "sys_cap_revoke",
32
    "sys_physmem_map",
33
    "sys_iospace_enable",
34
    "sys_preempt_control",
35
    "sys_sysinfo_valid",
36
    "sys_sysinfo_value",
37
    "sys_debug_enable_console",
38
    "sys_ipc_connect_task"
39
};
2801 svoboda 40
 
2807 svoboda 41
#define TIDBUF_SIZE 64
42
 
2801 svoboda 43
char * test_debug1(bool quiet)
44
{
45
	int taskid;
46
	int rc;
47
	int phoneid;
48
	int i;
2805 svoboda 49
	unsigned sc_args[6];
2809 svoboda 50
	unsigned ipc_args[6];
2805 svoboda 51
	unsigned copied;
52
	unsigned ev_type;
53
	unsigned sc_id;
54
	int sc_rc;
2807 svoboda 55
	unsigned threadid_buf[TIDBUF_SIZE];
56
	int tb_copied, tb_needed;
2801 svoboda 57
 
58
	printf("running debug1 test\n");
59
	taskid = 12;
60
	printf("ipc_connect_task(%d)...\n", taskid);
2808 svoboda 61
	rc = ipc_connect_kbox(taskid);
2801 svoboda 62
	printf("-> %d\n", rc);
63
	phoneid = rc;
64
 
65
	printf("send IPC_M_DEBUG_BEGIN message\n");
66
	rc = ipc_call_sync_0_0(phoneid, IPC_M_DEBUG_BEGIN);
67
	printf("-> %d\n", rc);
68
 
2807 svoboda 69
	printf("send IPC_M_DEBUG_THREAD_READ message\n");
70
	rc = ipc_call_sync_2_2(phoneid, IPC_M_DEBUG_THREAD_READ,
71
		&threadid_buf, TIDBUF_SIZE*sizeof(unsigned),
72
		&tb_copied, &tb_needed);
73
	printf("-> %d\n", rc);
74
 
75
	printf("thread IDs:");
76
	for (i=0; i<tb_copied / sizeof(unsigned); i++) {
2808 svoboda 77
		printf(" %u", threadid_buf[i]);
2807 svoboda 78
	}
79
	printf("\ntotal of %u threads\n", tb_needed/sizeof(unsigned));
80
 
2801 svoboda 81
	while (1) {
2807 svoboda 82
		rc = ipc_call_sync_1_3(phoneid, IPC_M_DEBUG_GO, threadid_buf[0],
83
		    &ev_type, &sc_id, &sc_rc);
2805 svoboda 84
		if (rc >= 0) {
2807 svoboda 85
			rc = ipc_call_sync_3_1(phoneid, IPC_M_DEBUG_ARGS_READ,
86
			    threadid_buf[0], sc_args, 6 * sizeof(unsigned), &copied);
87
		}
88
		if (rc >= 0) {
2806 svoboda 89
			printf("%s[%d](%u, %u, %u, %u, %u, %u) -> %d\n",
90
			    syscall_name[sc_id], sc_id,
2805 svoboda 91
			    sc_args[0], sc_args[1], sc_args[2],
92
			    sc_args[3], sc_args[4], sc_args[5],
93
			    sc_rc);
94
		}
2809 svoboda 95
		if (sc_id == SYS_IPC_CALL_ASYNC_SLOW) {
96
			memset(ipc_args, 0, sizeof(ipc_args));
97
			printf("read async call args..\n");
98
			printf("dest=%u, ptr=%u, len=%u\n",
99
				(sysarg_t)ipc_args, sc_args[1], sizeof(ipc_args));
100
			rc = ipc_call_sync_3_0(phoneid, IPC_M_DEBUG_MEM_READ,
101
				(sysarg_t)ipc_args, sc_args[1], sizeof(ipc_args));
102
			printf("-> %d\n", rc);
103
			printf("args: (%u, %u, %u, %u, %u, %u)\n",
104
			    ipc_args[0], ipc_args[1], ipc_args[2],
105
			    ipc_args[3], ipc_args[4], ipc_args[5]);
106
		}
2801 svoboda 107
	}
108
 
109
	printf("done\n");
110
	return NULL;
111
}