1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /******************************************************************************
4 * Module Name: dbhistry - debugger HISTORY command
6 * Copyright (C) 2000 - 2018, Intel Corp.
8 *****************************************************************************/
10 #include <acpi/acpi.h>
14 #define _COMPONENT ACPI_CA_DEBUGGER
15 ACPI_MODULE_NAME("dbhistry")
17 #define HI_NO_HISTORY 0
18 #define HI_RECORD_HISTORY 1
19 #define HISTORY_SIZE 40
20 typedef struct history_info
{
26 static HISTORY_INFO acpi_gbl_history_buffer
[HISTORY_SIZE
];
27 static u16 acpi_gbl_lo_history
= 0;
28 static u16 acpi_gbl_num_history
= 0;
29 static u16 acpi_gbl_next_history_index
= 0;
30 u32 acpi_gbl_next_cmd_num
= 1;
32 /*******************************************************************************
34 * FUNCTION: acpi_db_add_to_history
36 * PARAMETERS: command_line - Command to add
40 * DESCRIPTION: Add a command line to the history buffer.
42 ******************************************************************************/
44 void acpi_db_add_to_history(char *command_line
)
49 /* Put command into the next available slot */
51 cmd_len
= (u16
)strlen(command_line
);
56 if (acpi_gbl_history_buffer
[acpi_gbl_next_history_index
].command
!=
60 strlen(acpi_gbl_history_buffer
[acpi_gbl_next_history_index
].
63 if (cmd_len
> buffer_len
) {
64 acpi_os_free(acpi_gbl_history_buffer
65 [acpi_gbl_next_history_index
].command
);
66 acpi_gbl_history_buffer
[acpi_gbl_next_history_index
].
67 command
= acpi_os_allocate(cmd_len
+ 1);
70 acpi_gbl_history_buffer
[acpi_gbl_next_history_index
].command
=
71 acpi_os_allocate(cmd_len
+ 1);
74 strcpy(acpi_gbl_history_buffer
[acpi_gbl_next_history_index
].command
,
77 acpi_gbl_history_buffer
[acpi_gbl_next_history_index
].cmd_num
=
78 acpi_gbl_next_cmd_num
;
82 if ((acpi_gbl_num_history
== HISTORY_SIZE
) &&
83 (acpi_gbl_next_history_index
== acpi_gbl_lo_history
)) {
84 acpi_gbl_lo_history
++;
85 if (acpi_gbl_lo_history
>= HISTORY_SIZE
) {
86 acpi_gbl_lo_history
= 0;
90 acpi_gbl_next_history_index
++;
91 if (acpi_gbl_next_history_index
>= HISTORY_SIZE
) {
92 acpi_gbl_next_history_index
= 0;
95 acpi_gbl_next_cmd_num
++;
96 if (acpi_gbl_num_history
< HISTORY_SIZE
) {
97 acpi_gbl_num_history
++;
101 /*******************************************************************************
103 * FUNCTION: acpi_db_display_history
109 * DESCRIPTION: Display the contents of the history buffer
111 ******************************************************************************/
113 void acpi_db_display_history(void)
118 history_index
= acpi_gbl_lo_history
;
120 /* Dump entire history buffer */
122 for (i
= 0; i
< acpi_gbl_num_history
; i
++) {
123 if (acpi_gbl_history_buffer
[history_index
].command
) {
124 acpi_os_printf("%3ld %s\n",
125 acpi_gbl_history_buffer
[history_index
].
127 acpi_gbl_history_buffer
[history_index
].
132 if (history_index
>= HISTORY_SIZE
) {
138 /*******************************************************************************
140 * FUNCTION: acpi_db_get_from_history
142 * PARAMETERS: command_num_arg - String containing the number of the
143 * command to be retrieved
145 * RETURN: Pointer to the retrieved command. Null on error.
147 * DESCRIPTION: Get a command from the history buffer
149 ******************************************************************************/
151 char *acpi_db_get_from_history(char *command_num_arg
)
155 if (command_num_arg
== NULL
) {
156 cmd_num
= acpi_gbl_next_cmd_num
- 1;
160 cmd_num
= strtoul(command_num_arg
, NULL
, 0);
163 return (acpi_db_get_history_by_index(cmd_num
));
166 /*******************************************************************************
168 * FUNCTION: acpi_db_get_history_by_index
170 * PARAMETERS: cmd_num - Index of the desired history entry.
171 * Values are 0...(acpi_gbl_next_cmd_num - 1)
173 * RETURN: Pointer to the retrieved command. Null on error.
175 * DESCRIPTION: Get a command from the history buffer
177 ******************************************************************************/
179 char *acpi_db_get_history_by_index(u32 cmd_num
)
184 /* Search history buffer */
186 history_index
= acpi_gbl_lo_history
;
187 for (i
= 0; i
< acpi_gbl_num_history
; i
++) {
188 if (acpi_gbl_history_buffer
[history_index
].cmd_num
== cmd_num
) {
190 /* Found the command, return it */
192 return (acpi_gbl_history_buffer
[history_index
].command
);
195 /* History buffer is circular */
198 if (history_index
>= HISTORY_SIZE
) {
203 acpi_os_printf("Invalid history number: %u\n", history_index
);