aboutsummaryrefslogtreecommitdiffstats
path: root/tools/debugger/gdbsx/gx/xg_dummy.c
blob: b82899f5e80ebbb0443538d5bfbf8bc4f2b7bb37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
 * Copyright (C) 2009, Mukesh Rathor, Oracle Corp.  All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public
 * License v2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 021110-1307, USA.
 */
#include <stdio.h>
#include <stddef.h>
#include <stdarg.h>
#include <stdint.h>
#include <unistd.h>

#include "gx.h"
#include "../xg/xg_public.h"

int xgtrc_on = 1;

/* This file is NOT part of gdbsx binary, but a dummy so gdbsx bin can be built
 * and used to learn/test "gdb <-> gdbserver" protocol */

void
xgtrc(const char *fn, const char *fmt, ...)
{
    char buf[2048];
    va_list     args;

    fprintf(stderr, "%s:", fn);
    va_start(args, fmt);
    (void)vsnprintf(buf, sizeof(buf), fmt, args);
    va_end(args);
    fprintf(stderr, "%s", buf);
    fflush (stderr);
}   
    
void
xgprt(const char *fn, const char *fmt, ...)
{   
    char buf[2048];
    va_list     args;

    fprintf(stderr, "%s:", fn);
    va_start(args, fmt);
    (void)vsnprintf(buf, sizeof(buf), fmt, args);
    va_end(args);
    fprintf (stderr, "%s", buf);
    fflush (stderr);
}

int
xg_init()
{
    return 0;
}

void
xg_deinit()
{
    /* reset debugging info in guest */
    /* unpause the guest */
}

int
xg_attach(domid_t domid)
{
    return 2;
}

int
xg_step(vcpuid_t which_vcpu, int guest_bitness)
{
    return 0;
}

int
xg_resume(int guest_bitness)
{
    return 0;
}

int
xg_regs_read(regstype_t which_regs, vcpuid_t which_vcpu,
             struct xg_gdb_regs *regsp, int guest_bitness)
{
    return 0;
}

int
xg_regs_write(regstype_t which_regs, vcpuid_t which_vcpu,
              struct xg_gdb_regs *regsp, int guest_bitness)
{
    return 0;
}

int
xg_read_mem(uint64_t guestva, char *tobuf, int len)
{
    return 0;
}

int
xg_write_mem(uint64_t guestva, char *frombuf, int len)
{
    return 0;
}

int
xg_wait_domain(vcpuid_t *vcpu_p, int guest_bitness)
{
    return 0;
}