mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	 3b249d2661
			
		
	
	
		3b249d2661
		
	
	
	
	
		
			
			qemu.h is included in various non-linux-user files (which mostly want the TaskState struct and the functions for doing usermode access to guest addresses like lock_user(), unlock_user(), get_user*(), etc). Split out the parts that are only used in linux-user itself into a new user-internals.h. This leaves qemu.h with basically three things: * the definition of the TaskState struct * the user-access functions and macros * do_brk() all of which are needed by code outside linux-user that includes qemu.h. The addition of all the extra #include lines was done with sed -i '/include.*qemu\.h/a #include "user-internals.h"' $(git grep -l 'include.*qemu\.h' linux-user) (and then undoing the change to fpa11.h). Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20210908154405.15417-8-peter.maydell@linaro.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * ARM Compatible Semihosting Console Support.
 | |
|  *
 | |
|  * Copyright (c) 2019 Linaro Ltd
 | |
|  *
 | |
|  * Currently ARM and RISC-V are unique in having support for
 | |
|  * semihosting support in linux-user. So for now we implement the
 | |
|  * common console API but just for arm and risc-v linux-user.
 | |
|  *
 | |
|  * SPDX-License-Identifier: GPL-2.0-or-later
 | |
|  */
 | |
| 
 | |
| #include "qemu/osdep.h"
 | |
| #include "semihosting/console.h"
 | |
| #include "qemu.h"
 | |
| #include "user-internals.h"
 | |
| #include <termios.h>
 | |
| 
 | |
| int qemu_semihosting_console_outs(CPUArchState *env, target_ulong addr)
 | |
| {
 | |
|     int len = target_strlen(addr);
 | |
|     void *s;
 | |
|     if (len < 0){
 | |
|        qemu_log_mask(LOG_GUEST_ERROR,
 | |
|                      "%s: passed inaccessible address " TARGET_FMT_lx,
 | |
|                      __func__, addr);
 | |
|        return 0;
 | |
|     }
 | |
|     s = lock_user(VERIFY_READ, addr, (long)(len + 1), 1);
 | |
|     g_assert(s);  /* target_strlen has already verified this will work */
 | |
|     len = write(STDERR_FILENO, s, len);
 | |
|     unlock_user(s, addr, 0);
 | |
|     return len;
 | |
| }
 | |
| 
 | |
| void qemu_semihosting_console_outc(CPUArchState *env, target_ulong addr)
 | |
| {
 | |
|     char c;
 | |
| 
 | |
|     if (get_user_u8(c, addr)) {
 | |
|         qemu_log_mask(LOG_GUEST_ERROR,
 | |
|                       "%s: passed inaccessible address " TARGET_FMT_lx,
 | |
|                       __func__, addr);
 | |
|     } else {
 | |
|         if (write(STDERR_FILENO, &c, 1) != 1) {
 | |
|             qemu_log_mask(LOG_UNIMP, "%s: unexpected write to stdout failure",
 | |
|                           __func__);
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| /*
 | |
|  * For linux-user we can safely block. However as we want to return as
 | |
|  * soon as a character is read we need to tweak the termio to disable
 | |
|  * line buffering. We restore the old mode afterwards in case the
 | |
|  * program is expecting more normal behaviour. This is slow but
 | |
|  * nothing using semihosting console reading is expecting to be fast.
 | |
|  */
 | |
| target_ulong qemu_semihosting_console_inc(CPUArchState *env)
 | |
| {
 | |
|     uint8_t c;
 | |
|     struct termios old_tio, new_tio;
 | |
| 
 | |
|     /* Disable line-buffering and echo */
 | |
|     tcgetattr(STDIN_FILENO, &old_tio);
 | |
|     new_tio = old_tio;
 | |
|     new_tio.c_lflag &= (~ICANON & ~ECHO);
 | |
|     tcsetattr(STDIN_FILENO, TCSANOW, &new_tio);
 | |
| 
 | |
|     c = getchar();
 | |
| 
 | |
|     /* restore config */
 | |
|     tcsetattr(STDIN_FILENO, TCSANOW, &old_tio);
 | |
| 
 | |
|     return (target_ulong) c;
 | |
| }
 |