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
|
/*
* VBMouse - VirtualBox communication routines
* Copyright (C) 2022 Javier S. Pedro
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef VBOX_H
#define VBOX_H
#include <stdbool.h>
#include <stdint.h>
/** Logs a single character to the VBox debug message port. */
static void vbox_logc(char c);
#pragma aux vbox_logc = \
"mov dx, 0x504" \
"out dx, al" \
__parm [al] \
__modify [dx]
/** Logs a string to the VBox debug message port. */
static void vbox_logs(const char __far *str);
#pragma aux vbox_logs = \
"mov di, si" \
"xor cx, cx" \
"not cx" /* First we have to strlen(str), prepare -1 as max length */ \
"xor al, al" /* The '\0' that we're searching for */ \
"cld" \
"repne scas byte ptr es:[di]" /* afterwards, cx = -(len+2) */ \
"not cx" /* cx = (len+1) */ \
"dec cx" /* cx = len */ \
"mov dx, 0x504" /* And now we can write the string */ \
"rep outs dx, byte ptr es:[si]" \
__parm [es si] \
__modify [ax cx dx si di]
/** Logs a single character followed by '\n' to force log flush.
* A life-saver when there is no data segment available. */
#define vbox_putc(c) do { \
vbox_logc(c); vbox_logc('\n'); \
} while (0);
extern int vbox_init(void);
extern int vbox_report_guest_info(uint32_t osType);
extern int vbox_set_filter_mask(uint32_t add, uint32_t remove);
extern int vbox_set_mouse(bool enable);
extern int vbox_get_mouse(bool *abs, uint16_t *xpos, uint16_t *ypos);
extern void vbox_init_callbacks();
extern void vbox_deinit_callbacks();
// In CALLBACKS segment:
extern int vbox_get_mouse_locked(bool *abs, uint16_t *xpos, uint16_t *ypos);
#endif
|