]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - sim/common/sim-io.c
b5e874bef794f479cf6aa919c162c2072ad91947
[thirdparty/binutils-gdb.git] / sim / common / sim-io.c
1 /* The common simulator framework for GDB, the GNU Debugger.
2
3 Copyright 2002-2021 Free Software Foundation, Inc.
4
5 Contributed by Andrew Cagney and Red Hat.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22 /* This must come before any other includes. */
23 #include "defs.h"
24
25 #include "sim-main.h"
26 #include "sim-io.h"
27 #include "targ-vals.h"
28
29 #include <errno.h>
30 #if HAVE_FCNTL_H
31 #include <fcntl.h>
32 #endif
33
34 #if HAVE_UNISTD_H
35 #include <unistd.h>
36 #endif
37
38 #include <stdlib.h>
39
40 #undef open
41
42 /* Define the rate at which the simulator should poll the host
43 for a quit. */
44 #ifndef POLL_QUIT_INTERVAL
45 #define POLL_QUIT_INTERVAL 0x10
46 #endif
47
48 static int poll_quit_count = POLL_QUIT_INTERVAL;
49
50 /* See the file include/callbacks.h for a description */
51
52
53 int
54 sim_io_init (SIM_DESC sd)
55 {
56 return STATE_CALLBACK (sd)->init (STATE_CALLBACK (sd));
57 }
58
59
60 int
61 sim_io_shutdown (SIM_DESC sd)
62 {
63 return STATE_CALLBACK (sd)->shutdown (STATE_CALLBACK (sd));
64 }
65
66
67 int
68 sim_io_unlink (SIM_DESC sd,
69 const char *f1)
70 {
71 return STATE_CALLBACK (sd)->unlink (STATE_CALLBACK (sd), f1);
72 }
73
74
75 int64_t
76 sim_io_time (SIM_DESC sd)
77 {
78 return STATE_CALLBACK (sd)->time (STATE_CALLBACK (sd));
79 }
80
81
82 int
83 sim_io_system (SIM_DESC sd, const char *s)
84 {
85 return STATE_CALLBACK (sd)->system (STATE_CALLBACK (sd), s);
86 }
87
88
89 int
90 sim_io_rename (SIM_DESC sd,
91 const char *f1,
92 const char *f2)
93 {
94 return STATE_CALLBACK (sd)->rename (STATE_CALLBACK (sd), f1, f2);
95 }
96
97
98 int
99 sim_io_write_stdout (SIM_DESC sd,
100 const char *buf,
101 int len)
102 {
103 switch (CURRENT_STDIO) {
104 case DO_USE_STDIO:
105 return STATE_CALLBACK (sd)->write_stdout (STATE_CALLBACK (sd), buf, len);
106 break;
107 case DONT_USE_STDIO:
108 return STATE_CALLBACK (sd)->write (STATE_CALLBACK (sd), 1, buf, len);
109 break;
110 default:
111 sim_io_error (sd, "sim_io_write_stdout: unaccounted switch\n");
112 break;
113 }
114 return 0;
115 }
116
117
118 void
119 sim_io_flush_stdout (SIM_DESC sd)
120 {
121 switch (CURRENT_STDIO) {
122 case DO_USE_STDIO:
123 STATE_CALLBACK (sd)->flush_stdout (STATE_CALLBACK (sd));
124 break;
125 case DONT_USE_STDIO:
126 break;
127 default:
128 sim_io_error (sd, "sim_io_flush_stdout: unaccounted switch\n");
129 break;
130 }
131 }
132
133
134 int
135 sim_io_write_stderr (SIM_DESC sd,
136 const char *buf,
137 int len)
138 {
139 switch (CURRENT_STDIO) {
140 case DO_USE_STDIO:
141 return STATE_CALLBACK (sd)->write_stderr (STATE_CALLBACK (sd), buf, len);
142 break;
143 case DONT_USE_STDIO:
144 return STATE_CALLBACK (sd)->write (STATE_CALLBACK (sd), 2, buf, len);
145 break;
146 default:
147 sim_io_error (sd, "sim_io_write_stderr: unaccounted switch\n");
148 break;
149 }
150 return 0;
151 }
152
153
154 void
155 sim_io_flush_stderr (SIM_DESC sd)
156 {
157 switch (CURRENT_STDIO) {
158 case DO_USE_STDIO:
159 STATE_CALLBACK (sd)->flush_stderr (STATE_CALLBACK (sd));
160 break;
161 case DONT_USE_STDIO:
162 break;
163 default:
164 sim_io_error (sd, "sim_io_flush_stderr: unaccounted switch\n");
165 break;
166 }
167 }
168
169
170 int
171 sim_io_write (SIM_DESC sd,
172 int fd,
173 const char *buf,
174 int len)
175 {
176 return STATE_CALLBACK (sd)->write (STATE_CALLBACK (sd), fd, buf, len);
177 }
178
179
180 int
181 sim_io_read_stdin (SIM_DESC sd,
182 char *buf,
183 int len)
184 {
185 switch (CURRENT_STDIO) {
186 case DO_USE_STDIO:
187 return STATE_CALLBACK (sd)->read_stdin (STATE_CALLBACK (sd), buf, len);
188 break;
189 case DONT_USE_STDIO:
190 return STATE_CALLBACK (sd)->read (STATE_CALLBACK (sd), 0, buf, len);
191 break;
192 default:
193 sim_io_error (sd, "sim_io_read_stdin: unaccounted switch\n");
194 break;
195 }
196 return 0;
197 }
198
199
200 int
201 sim_io_read (SIM_DESC sd, int fd,
202 char *buf,
203 int len)
204 {
205 return STATE_CALLBACK (sd)->read (STATE_CALLBACK (sd), fd, buf, len);
206 }
207
208
209 int
210 sim_io_open (SIM_DESC sd,
211 const char *name,
212 int flags)
213 {
214 return STATE_CALLBACK (sd)->open (STATE_CALLBACK (sd), name, flags);
215 }
216
217
218 int64_t
219 sim_io_lseek (SIM_DESC sd,
220 int fd,
221 int64_t off,
222 int way)
223 {
224 return STATE_CALLBACK (sd)->lseek (STATE_CALLBACK (sd), fd, off, way);
225 }
226
227
228 int
229 sim_io_isatty (SIM_DESC sd,
230 int fd)
231 {
232 return STATE_CALLBACK (sd)->isatty (STATE_CALLBACK (sd), fd);
233 }
234
235
236 int
237 sim_io_get_errno (SIM_DESC sd)
238 {
239 return STATE_CALLBACK (sd)->get_errno (STATE_CALLBACK (sd));
240 }
241
242
243 int
244 sim_io_close (SIM_DESC sd,
245 int fd)
246 {
247 return STATE_CALLBACK (sd)->close (STATE_CALLBACK (sd), fd);
248 }
249
250
251 void
252 sim_io_printf (SIM_DESC sd,
253 const char *fmt,
254 ...)
255 {
256 va_list ap;
257 va_start (ap, fmt);
258 STATE_CALLBACK (sd)->vprintf_filtered (STATE_CALLBACK (sd), fmt, ap);
259 va_end (ap);
260 }
261
262
263 void
264 sim_io_vprintf (SIM_DESC sd,
265 const char *fmt,
266 va_list ap)
267 {
268 STATE_CALLBACK (sd)->vprintf_filtered (STATE_CALLBACK (sd), fmt, ap);
269 }
270
271
272 void
273 sim_io_eprintf (SIM_DESC sd,
274 const char *fmt,
275 ...)
276 {
277 va_list ap;
278 va_start (ap, fmt);
279 STATE_CALLBACK (sd)->evprintf_filtered (STATE_CALLBACK (sd), fmt, ap);
280 va_end (ap);
281 }
282
283
284 void
285 sim_io_evprintf (SIM_DESC sd,
286 const char *fmt,
287 va_list ap)
288 {
289 STATE_CALLBACK (sd)->evprintf_filtered (STATE_CALLBACK (sd), fmt, ap);
290 }
291
292
293 void
294 sim_io_error (SIM_DESC sd,
295 const char *fmt,
296 ...)
297 {
298 if (sd == NULL || STATE_CALLBACK (sd) == NULL) {
299 va_list ap;
300 va_start (ap, fmt);
301 vfprintf (stderr, fmt, ap);
302 va_end (ap);
303 fprintf (stderr, "\n");
304 abort ();
305 }
306 else {
307 va_list ap;
308 va_start (ap, fmt);
309 STATE_CALLBACK (sd)->evprintf_filtered (STATE_CALLBACK (sd), fmt, ap);
310 va_end (ap);
311 STATE_CALLBACK (sd)->error (STATE_CALLBACK (sd), "");
312 }
313 }
314
315
316 void
317 sim_io_poll_quit (SIM_DESC sd)
318 {
319 if (STATE_CALLBACK (sd)->poll_quit != NULL && poll_quit_count-- < 0)
320 {
321 poll_quit_count = POLL_QUIT_INTERVAL;
322 if (STATE_CALLBACK (sd)->poll_quit (STATE_CALLBACK (sd)))
323 sim_stop (sd);
324 }
325 }
326
327
328 /* Based on gdb-4.17/sim/ppc/main.c:sim_io_read_stdin().
329
330 FIXME: Should not be calling fcntl() or grubbing around inside of
331 ->fdmap and ->errno.
332
333 FIXME: Some completly new mechanism for handling the general
334 problem of asynchronous IO is needed.
335
336 FIXME: This function does not supress the echoing (ECHO) of input.
337 Consequently polled input is always displayed.
338
339 FIXME: This function does not perform uncooked reads.
340 Consequently, data will not be read until an EOLN character has
341 been entered. A cntrl-d may force the early termination of a line */
342
343
344 int
345 sim_io_poll_read (SIM_DESC sd,
346 int sim_io_fd,
347 char *buf,
348 int sizeof_buf)
349 {
350 #if defined(O_NDELAY) && defined(F_GETFL) && defined(F_SETFL)
351 int fd = STATE_CALLBACK (sd)->fdmap[sim_io_fd];
352 int flags;
353 int status;
354 int nr_read;
355 int result;
356 STATE_CALLBACK (sd)->last_errno = 0;
357 /* get the old status */
358 flags = fcntl (fd, F_GETFL, 0);
359 if (flags == -1)
360 {
361 perror ("sim_io_poll_read");
362 return 0;
363 }
364 /* temp, disable blocking IO */
365 status = fcntl (fd, F_SETFL, flags | O_NDELAY);
366 if (status == -1)
367 {
368 perror ("sim_io_read_stdin");
369 return 0;
370 }
371 /* try for input */
372 nr_read = read (fd, buf, sizeof_buf);
373 if (nr_read >= 0)
374 {
375 /* printf ("<nr-read=%d>\n", nr_read); */
376 result = nr_read;
377 }
378 else
379 { /* nr_read < 0 */
380 result = -1;
381 STATE_CALLBACK (sd)->last_errno = errno;
382 }
383 /* return to regular vewing */
384 status = fcntl (fd, F_SETFL, flags);
385 if (status == -1)
386 {
387 perror ("sim_io_read_stdin");
388 /* return 0; */
389 }
390 return result;
391 #else
392 return sim_io_read (sd, sim_io_fd, buf, sizeof_buf);
393 #endif
394 }
395
396 int
397 sim_io_stat (SIM_DESC sd, const char *path, struct stat *buf)
398 {
399 return STATE_CALLBACK (sd)->to_stat (STATE_CALLBACK (sd), path, buf);
400 }
401
402 int
403 sim_io_fstat (SIM_DESC sd, int fd, struct stat *buf)
404 {
405 return STATE_CALLBACK (sd)->to_fstat (STATE_CALLBACK (sd), fd, buf);
406 }