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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
|
/*==========================================================================
//
// gdb-fileio.c
//
// Implementation of File I/O using the GDB remote protocol
//
//==========================================================================
// ####ECOSGPLCOPYRIGHTBEGIN####
// -------------------------------------------
// This file is part of eCos, the Embedded Configurable Operating System.
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
//
// eCos 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 or (at your option) any later
// version.
//
// eCos 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 eCos; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
// As a special exception, if other files instantiate templates or use
// macros or inline functions from this file, or you compile this file
// and link it with other works to produce a work based on this file,
// this file does not by itself cause the resulting work to be covered by
// the GNU General Public License. However the source code for this file
// must still be made available in accordance with section (3) of the GNU
// General Public License v2.
//
// This exception does not invalidate any other reasons why a work based
// on this file might be covered by the GNU General Public License.
// -------------------------------------------
// ####ECOSGPLCOPYRIGHTEND####
//==========================================================================
//#####DESCRIPTIONBEGIN####
//
// Author(s): jlarmour
// Contributors:
// Date: 2002-04-09
// Purpose: Implementation of File I/O using the GDB remote
// protocol
// Description: 'F' packet requests are of the form:
// F<name>[,<parameter>]...
// where name is the ASCII syscall name, and the
// parameters are generally included as hex ints,
// in ASCII.
//
//####DESCRIPTIONEND####
//========================================================================*/
/* CONFIGURATION */
#include <pkgconf/hal.h>
/* HEADERS */
#include <stddef.h> // size_t
#include <cyg/infra/cyg_type.h>
#ifdef CYGPKG_ISOINFRA
# include <pkgconf/isoinfra.h>
# include <string.h>
#endif
#include "board.h" // sets correct definitions for generic stub header
#include <cyg/hal/generic-stub.h>
#include "gdb-fileio.h"
/* TYPES */
// this is used by newlib's mode_t so we should match it
#ifdef __GNUC__
#define _ST_INT32 __attribute__ ((__mode__ (__SI__)))
#else
#define _ST_INT32
#endif
typedef int newlib_int_t;
typedef unsigned int newlib_uint_t;
typedef long newlib_long_t;
typedef long newlib_time_t;
typedef unsigned int newlib_mode_t _ST_INT32;
typedef short newlib_dev_t;
typedef unsigned short newlib_uid_t;
typedef unsigned short newlib_gid_t;
typedef unsigned short newlib_ino_t;
typedef unsigned short newlib_nlink_t;
typedef long newlib_off_t;
struct newlib_timeval {
newlib_time_t tv_sec;
newlib_long_t tv_usec;
};
struct newlib_stat
{
newlib_dev_t st_dev;
newlib_ino_t st_ino;
newlib_mode_t st_mode;
newlib_nlink_t st_nlink;
newlib_uid_t st_uid;
newlib_gid_t st_gid;
newlib_dev_t st_rdev;
newlib_off_t st_size;
// We assume we've been compiled with the same flags as newlib here
#if defined(__svr4__) && !defined(__PPC__) && !defined(__sun__)
newlib_time_t st_atime;
newlib_time_t st_mtime;
newlib_time_t st_ctime;
#else
newlib_time_t st_atime;
newlib_long_t st_spare1;
newlib_time_t st_mtime;
newlib_long_t st_spare2;
newlib_time_t st_ctime;
newlib_long_t st_spare3;
newlib_long_t st_blksize;
newlib_long_t st_blocks;
newlib_long_t st_spare4[2];
#endif
};
/* EXTERNS */
__externC char __remcomInBuffer[]; // from generic-stub.c, for packet data
__externC char __remcomOutBuffer[]; // ditto
/* STATICS/GLOBALS */
static int __fileio_retcode, __fileio_errno;
static cyg_bool __fileio_retcode_set, __fileio_errno_set, __fileio_ctrlc_set;
/* MACROS */
// endian independent conversion functions from big endian protocol types
// to newlib types
#define GDBFILEIO_FIO_TO_NEWLIB( _f, _n, _ftype ) \
CYG_MACRO_START \
char *_cf = (char *)(_f); \
int _i; \
char _sign = 0; \
if (*_cf == '-') { \
_sign = 1; \
_cf++; \
} \
(_n) = 0; \
for (_i=0; _i<sizeof(_ftype); _i++) { \
(_n) = ((_n) << 8) | _cf[_i]; \
} \
if (_sign) \
(_n) = -(_n); \
CYG_MACRO_END
#define GDBABS(_x_) (((_x_) < 0) ? (-(_x_)) : (_x_))
#define GDBFILEIO_NEWLIB_TO_FIO( _f, _n, _ftype ) \
CYG_MACRO_START \
char *_cf = (char *)(_f); \
int _i = 0; \
if ((_n) < 0) \
_cf[_i++] = '-'; \
for (; _i<sizeof(_ftype); _i++) { \
_cf[_i] = ((GDBABS(_n)) >> 8*(sizeof(_ftype)-_i-1)) & 0xff; \
} \
CYG_MACRO_END
/* FUNCTIONS */
#ifndef CYGINT_ISO_STRING_STRFUNCS
static size_t strlen( const char *s )
{
size_t retval;
const char *start = s;
while (*s)
s++;
retval = s - start;
return retval;
}
#endif
static int
chars_to_hex( char *charsin, char *hexout, int bytes )
{
int numChars = 0;
int allzero = true;
while (bytes--) {
if (0 != *charsin)
allzero = false;
*hexout++ = __tohex( (*charsin / 16) & 15 );
*hexout++ = __tohex( (*charsin++) & 15 );
numChars += 2;
}
if (allzero) // doesn't matter if we actually set more than needed above
return (numChars > 2 ? 2 : numChars);
return numChars;
}
static void
gdbfileio_fio_to_newlib_time_t( fio_time_t *f, newlib_time_t *n )
{
GDBFILEIO_FIO_TO_NEWLIB( f, *n, fio_time_t );
} // gdbfileio_fio_to_newlib_time_t()
static void
gdbfileio_newlib_to_fio_int_t( newlib_int_t *n, fio_int_t *f )
{
GDBFILEIO_NEWLIB_TO_FIO( f, *n, fio_int_t );
} // gdbfileio_newlib_to_fio_int_t()
static void
gdbfileio_newlib_to_fio_uint_t( newlib_uint_t *n, fio_uint_t *f )
{
GDBFILEIO_NEWLIB_TO_FIO( f, *n, fio_uint_t );
} // gdbfileio_newlib_to_fio_uint_t()
static void
gdbfileio_fio_to_newlib_long_t( fio_long_t *f, newlib_long_t *n )
{
GDBFILEIO_FIO_TO_NEWLIB( f, *n, fio_long_t );
} // gdbfileio_fio_to_newlib_long_t()
static void
gdbfileio_newlib_to_fio_long_t( newlib_long_t *n, fio_long_t *f )
{
GDBFILEIO_NEWLIB_TO_FIO( f, *n, fio_long_t );
} // gdbfileio_newlib_to_fio_long_t()
static void
gdbfileio_fio_to_newlib_mode_t( fio_mode_t *f, newlib_mode_t *n )
{
GDBFILEIO_FIO_TO_NEWLIB( f, *n, fio_mode_t );
} // gdbfileio_fio_to_newlib_mode_t()
static void
gdbfileio_newlib_to_fio_mode_t( newlib_mode_t *n, fio_mode_t *f )
{
GDBFILEIO_NEWLIB_TO_FIO( f, *n, fio_mode_t );
} // gdbfileio_newlib_to_fio_mode_t()
static void
gdbfileio_fio_to_newlib_dev_t( fio_uint_t *f, newlib_dev_t *n )
{
GDBFILEIO_FIO_TO_NEWLIB( f, *n, fio_uint_t );
} // gdbfileio_fio_to_newlib_dev_t()
static void
gdbfileio_fio_to_newlib_ino_t( fio_uint_t *f, newlib_ino_t *n )
{
GDBFILEIO_FIO_TO_NEWLIB( f, *n, fio_uint_t );
} // gdbfileio_fio_to_newlib_ino_t()
// these defines are good enough for now (to save code size) as they
// are the same functions in practice
#define gdbfileio_fio_to_newlib_nlink_t gdbfileio_fio_to_newlib_ino_t
#define gdbfileio_fio_to_newlib_uid_t gdbfileio_fio_to_newlib_ino_t
#define gdbfileio_fio_to_newlib_gid_t gdbfileio_fio_to_newlib_ino_t
#define gdbfileio_fio_to_newlib_off_t gdbfileio_fio_to_newlib_long_t
// this function is commonly used by most functions to handle everything
// once the packet has been constructed. It doesn't have to be used - it's
// just nice to keep this in one place for maintenance reasons.
static int
gdbfileio_common_sendpkt( char *buf, int *sig )
{
int status;
__putpacket( buf );
do {
__getpacket( __remcomInBuffer );
status = __process_packet( __remcomInBuffer );
} while ( status == 0 );
if ( __fileio_ctrlc_set )
*sig = SIGINT;
if ( !__fileio_retcode_set ) // deal with protocol failure
return -FILEIO_EINVAL;
if ( __fileio_retcode < 0 && __fileio_errno_set )
return -__fileio_errno;
else
return __fileio_retcode;
} // gdbfileio_common_sendpkt()
// deal with a received F packet. This is called from __process_packet in
// generic-stub.c
__externC void
cyg_hal_gdbfileio_process_F_packet( char *packet,
char *__remcomOutBuffer )
{
// Reply packet structure:
// F<retcode>[,<errno>[,<Ctrl-C flag>]][;<call specific attachment>]
char *p = &packet[1];
cyg_bool minus = false;
target_register_t temptrt;
__fileio_retcode_set = __fileio_errno_set = __fileio_ctrlc_set = false;
if (*p == '-') {
minus = true;
p++;
}
__hexToInt( &p, &temptrt );
__fileio_retcode = minus ? -(int)temptrt : (int)temptrt;
__fileio_retcode_set = true;
if ( *p++ == ',' ) {
// get errno
__hexToInt( &p, &temptrt );
__fileio_errno = (int)temptrt;
__fileio_errno_set = true;
if ( *p++ == ',' ) {
if ( *p == 'C' ) {
__fileio_ctrlc_set = true;
}
}
}
// ignore anything afterwards (e.g. call specific attachment) for now
} // cyg_hal_gdbfileio_process_F_packet()
__externC int
cyg_hal_gdbfileio_open( const char *name, int flags, int mode, int *sig )
{
size_t namelen;
unsigned int i=0;
fio_mode_t fmode;
fio_int_t fflags;
// clear out unsupported flags/modes, as per the spec
flags &= FILEIO_O_SUPPORTED;
mode &= FILEIO_S_SUPPORTED;
gdbfileio_newlib_to_fio_int_t( &flags, &fflags );
gdbfileio_newlib_to_fio_mode_t( &mode, &fmode );
__remcomOutBuffer[i++] = 'F';
__remcomOutBuffer[i++] = 'o';
__remcomOutBuffer[i++] = 'p';
__remcomOutBuffer[i++] = 'e';
__remcomOutBuffer[i++] = 'n';
__remcomOutBuffer[i++] = ',';
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)name,
sizeof(name)*8 );
// i now points after the parameter
__remcomOutBuffer[i++] = '/';
namelen = strlen( name )+1; // includes '\0'
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)namelen,
sizeof(namelen)*8 );
__remcomOutBuffer[i++] = ',';
i += chars_to_hex( (char *)&fflags, &__remcomOutBuffer[i], sizeof(fflags) );
__remcomOutBuffer[i++] = ',';
i += chars_to_hex( (char *)&fmode, &__remcomOutBuffer[i], sizeof(fmode) );
__remcomOutBuffer[i] = 0;
return gdbfileio_common_sendpkt( __remcomOutBuffer, sig );
} // cyg_hal_gdbfileio_open()
__externC int
cyg_hal_gdbfileio_close( int fd, int *sig )
{
unsigned int i=0;
fio_int_t ffd;
gdbfileio_newlib_to_fio_int_t( &fd, &ffd );
__remcomOutBuffer[i++] = 'F';
__remcomOutBuffer[i++] = 'c';
__remcomOutBuffer[i++] = 'l';
__remcomOutBuffer[i++] = 'o';
__remcomOutBuffer[i++] = 's';
__remcomOutBuffer[i++] = 'e';
__remcomOutBuffer[i++] = ',';
i += chars_to_hex( (char *)&ffd, &__remcomOutBuffer[i], sizeof(ffd) );
// i now points after the parameter
__remcomOutBuffer[i] = 0;
return gdbfileio_common_sendpkt( __remcomOutBuffer, sig );
} // cyg_hal_gdbfileio_close()
__externC int
cyg_hal_gdbfileio_read( int fd, void *buf, size_t count, int *sig )
{
unsigned int i=0;
fio_int_t ffd;
fio_uint_t fcount;
unsigned int uicount = (unsigned int)count;
gdbfileio_newlib_to_fio_int_t( &fd, &ffd );
gdbfileio_newlib_to_fio_uint_t( &uicount, &fcount );
__remcomOutBuffer[i++] = 'F';
__remcomOutBuffer[i++] = 'r';
__remcomOutBuffer[i++] = 'e';
__remcomOutBuffer[i++] = 'a';
__remcomOutBuffer[i++] = 'd';
__remcomOutBuffer[i++] = ',';
i += chars_to_hex( (char *)&ffd, &__remcomOutBuffer[i], sizeof(ffd) );
// i now points after the parameter
__remcomOutBuffer[i++] = ',';
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)buf,
sizeof(buf)*8 );
__remcomOutBuffer[i++] = ',';
i += chars_to_hex( (char *)&fcount, &__remcomOutBuffer[i], sizeof(fcount) );
__remcomOutBuffer[i] = 0;
return gdbfileio_common_sendpkt( __remcomOutBuffer, sig );
} // cyg_hal_gdbfileio_read()
__externC int
cyg_hal_gdbfileio_write( int fd, const void *buf, size_t count, int *sig )
{
unsigned int i=0;
fio_int_t ffd;
fio_uint_t fcount;
unsigned int uicount = (unsigned int)count;
gdbfileio_newlib_to_fio_int_t( &fd, &ffd );
gdbfileio_newlib_to_fio_uint_t( &uicount, &fcount );
__remcomOutBuffer[i++] = 'F';
__remcomOutBuffer[i++] = 'w';
__remcomOutBuffer[i++] = 'r';
__remcomOutBuffer[i++] = 'i';
__remcomOutBuffer[i++] = 't';
__remcomOutBuffer[i++] = 'e';
__remcomOutBuffer[i++] = ',';
i += chars_to_hex( (char *)&ffd, &__remcomOutBuffer[i], sizeof(ffd) );
// i now points after the parameter
__remcomOutBuffer[i++] = ',';
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)buf,
sizeof(buf)*8 );
__remcomOutBuffer[i++] = ',';
i += chars_to_hex( (char *)&fcount, &__remcomOutBuffer[i], sizeof(fcount) );
__remcomOutBuffer[i] = 0;
return gdbfileio_common_sendpkt( __remcomOutBuffer, sig );
} // cyg_hal_gdbfileio_write()
__externC int
cyg_hal_gdbfileio_lseek( int fd, /* off_t */ long offset, int whence, int *sig )
{
unsigned int i=0;
fio_int_t ffd;
fio_long_t foffset;
fio_int_t fwhence;
gdbfileio_newlib_to_fio_int_t( &fd, &ffd );
gdbfileio_newlib_to_fio_long_t( &offset, &foffset );
gdbfileio_newlib_to_fio_int_t( &whence, &fwhence );
__remcomOutBuffer[i++] = 'F';
__remcomOutBuffer[i++] = 'l';
__remcomOutBuffer[i++] = 's';
__remcomOutBuffer[i++] = 'e';
__remcomOutBuffer[i++] = 'e';
__remcomOutBuffer[i++] = 'k';
__remcomOutBuffer[i++] = ',';
i += chars_to_hex( (char *)&ffd, &__remcomOutBuffer[i], sizeof(ffd) );
// i now points after the parameter
__remcomOutBuffer[i++] = ',';
i += chars_to_hex( (char *)&foffset, &__remcomOutBuffer[i],
sizeof(foffset) );
__remcomOutBuffer[i++] = ',';
i += chars_to_hex( (char *)&fwhence, &__remcomOutBuffer[i],
sizeof(fwhence) );
__remcomOutBuffer[i] = 0;
return gdbfileio_common_sendpkt( __remcomOutBuffer, sig );
} // cyg_hal_gdbfileio_lseek()
__externC int
cyg_hal_gdbfileio_rename( const char *oldpath, const char *newpath, int *sig )
{
unsigned int i=0;
size_t namelen;
__remcomOutBuffer[i++] = 'F';
__remcomOutBuffer[i++] = 'r';
__remcomOutBuffer[i++] = 'e';
__remcomOutBuffer[i++] = 'n';
__remcomOutBuffer[i++] = 'a';
__remcomOutBuffer[i++] = 'm';
__remcomOutBuffer[i++] = 'e';
__remcomOutBuffer[i++] = ',';
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)oldpath,
sizeof(oldpath)*8 );
// i now points after the parameter
__remcomOutBuffer[i++] = '/';
namelen = strlen( oldpath )+1; // includes '\0'
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)namelen,
sizeof(namelen)*8 );
__remcomOutBuffer[i++] = ',';
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)newpath,
sizeof(newpath)*8 );
// i now points after the parameter
__remcomOutBuffer[i++] = '/';
namelen = strlen( newpath )+1; // includes '\0'
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)namelen,
sizeof(namelen)*8 );
__remcomOutBuffer[i] = 0;
return gdbfileio_common_sendpkt( __remcomOutBuffer, sig );
} // cyg_hal_gdbfileio_rename()
__externC int
cyg_hal_gdbfileio_unlink( const char *pathname, int *sig )
{
unsigned int i=0;
size_t namelen;
__remcomOutBuffer[i++] = 'F';
__remcomOutBuffer[i++] = 'u';
__remcomOutBuffer[i++] = 'n';
__remcomOutBuffer[i++] = 'l';
__remcomOutBuffer[i++] = 'i';
__remcomOutBuffer[i++] = 'n';
__remcomOutBuffer[i++] = 'k';
__remcomOutBuffer[i++] = ',';
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)pathname,
sizeof(pathname)*8 );
// i now points after the parameter
__remcomOutBuffer[i++] = '/';
namelen = strlen( pathname )+1; // includes '\0'
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)namelen,
sizeof(namelen)*8 );
__remcomOutBuffer[i] = 0;
return gdbfileio_common_sendpkt( __remcomOutBuffer, sig );
} // cyg_hal_gdbfileio_unlink()
__externC int
cyg_hal_gdbfileio_isatty( int fd, int *sig )
{
unsigned int i=0;
fio_int_t ffd;
gdbfileio_newlib_to_fio_int_t( &fd, &ffd );
__remcomOutBuffer[i++] = 'F';
__remcomOutBuffer[i++] = 'i';
__remcomOutBuffer[i++] = 's';
__remcomOutBuffer[i++] = 'a';
__remcomOutBuffer[i++] = 't';
__remcomOutBuffer[i++] = 't';
__remcomOutBuffer[i++] = 'y';
__remcomOutBuffer[i++] = ',';
i += chars_to_hex( (char *)&ffd, &__remcomOutBuffer[i], sizeof(ffd) );
// i now points after the parameter
__remcomOutBuffer[i] = 0;
return gdbfileio_common_sendpkt( __remcomOutBuffer, sig );
} // cyg_hal_gdbfileio_isatty()
__externC int
cyg_hal_gdbfileio_system( const char *command, int *sig )
{
unsigned int i=0;
size_t namelen;
__remcomOutBuffer[i++] = 'F';
__remcomOutBuffer[i++] = 's';
__remcomOutBuffer[i++] = 'y';
__remcomOutBuffer[i++] = 's';
__remcomOutBuffer[i++] = 't';
__remcomOutBuffer[i++] = 'e';
__remcomOutBuffer[i++] = 'm';
__remcomOutBuffer[i++] = ',';
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)command,
sizeof(command)*8 );
// i now points after the parameter
__remcomOutBuffer[i++] = '/';
namelen = strlen( command )+1; // includes '\0'
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)namelen,
sizeof(namelen)*8 );
__remcomOutBuffer[i] = 0;
return gdbfileio_common_sendpkt( __remcomOutBuffer, sig );
} // cyg_hal_gdbfileio_system()
__externC int
cyg_hal_gdbfileio_gettimeofday( void *tv, void *tz, int *sig )
{
unsigned int i=0;
struct newlib_timeval *ntv = (struct newlib_timeval *)tv;
struct fio_timeval ftv;
int rc;
// protocol doesn't support non-null timezone. Just enforce it here.
if (NULL != tz)
return -FILEIO_EINVAL;
__remcomOutBuffer[i++] = 'F';
__remcomOutBuffer[i++] = 'g';
__remcomOutBuffer[i++] = 'e';
__remcomOutBuffer[i++] = 't';
__remcomOutBuffer[i++] = 't';
__remcomOutBuffer[i++] = 'i';
__remcomOutBuffer[i++] = 'm';
__remcomOutBuffer[i++] = 'e';
__remcomOutBuffer[i++] = 'o';
__remcomOutBuffer[i++] = 'f';
__remcomOutBuffer[i++] = 'd';
__remcomOutBuffer[i++] = 'a';
__remcomOutBuffer[i++] = 'y';
__remcomOutBuffer[i++] = ',';
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)&ftv,
sizeof(&ftv)*8 );
__remcomOutBuffer[i++] = ',';
__remcomOutBuffer[i++] = '0'; // tzptr
__remcomOutBuffer[i] = 0;
rc = gdbfileio_common_sendpkt( __remcomOutBuffer, sig );
// now ftv should have its contents filled
gdbfileio_fio_to_newlib_time_t( &ftv.tv_sec, &ntv->tv_sec );
gdbfileio_fio_to_newlib_long_t( &ftv.tv_usec, &ntv->tv_usec );
return rc;
} // cyg_hal_gdbfileio_gettimeofday()
__externC int
cyg_hal_gdbfileio_stat( const char *pathname, struct newlib_stat *buf,
int *sig )
{
unsigned int i=0;
int rc;
size_t namelen;
struct fio_stat fbuf;
__remcomOutBuffer[i++] = 'F';
__remcomOutBuffer[i++] = 's';
__remcomOutBuffer[i++] = 't';
__remcomOutBuffer[i++] = 'a';
__remcomOutBuffer[i++] = 't';
__remcomOutBuffer[i++] = ',';
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)pathname,
sizeof(pathname)*8 );
// i now points after the parameter
__remcomOutBuffer[i++] = '/';
namelen = strlen( pathname )+1; // includes '\0'
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)namelen,
sizeof(namelen)*8 );
__remcomOutBuffer[i++] = ',';
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)&fbuf,
sizeof(&fbuf)*8 );
__remcomOutBuffer[i] = 0;
rc = gdbfileio_common_sendpkt( __remcomOutBuffer, sig );
// now fbuf should have its contents filled
gdbfileio_fio_to_newlib_dev_t( &fbuf.st_dev, &buf->st_dev );
gdbfileio_fio_to_newlib_ino_t( &fbuf.st_ino, &buf->st_ino );
gdbfileio_fio_to_newlib_mode_t( &fbuf.st_mode, &buf->st_mode );
gdbfileio_fio_to_newlib_nlink_t( &fbuf.st_nlink, &buf->st_nlink );
gdbfileio_fio_to_newlib_uid_t( &fbuf.st_uid, &buf->st_uid );
gdbfileio_fio_to_newlib_gid_t( &fbuf.st_gid, &buf->st_gid );
gdbfileio_fio_to_newlib_dev_t( &fbuf.st_rdev, &buf->st_rdev );
gdbfileio_fio_to_newlib_off_t( &fbuf.st_size, &buf->st_size );
gdbfileio_fio_to_newlib_off_t( &fbuf.st_size, &buf->st_size );
gdbfileio_fio_to_newlib_off_t( &fbuf.st_size, &buf->st_size );
gdbfileio_fio_to_newlib_off_t( &fbuf.st_size, &buf->st_size );
#if !defined(__svr4__) || defined(__PPC__) || defined(__sun__)
gdbfileio_fio_to_newlib_long_t( &fbuf.st_blksize, &buf->st_blksize );
gdbfileio_fio_to_newlib_long_t( &fbuf.st_blocks, &buf->st_blocks );
#endif
gdbfileio_fio_to_newlib_time_t( &fbuf.st_atime, &buf->st_atime );
gdbfileio_fio_to_newlib_time_t( &fbuf.st_mtime, &buf->st_mtime );
gdbfileio_fio_to_newlib_time_t( &fbuf.st_ctime, &buf->st_ctime );
return rc;
} // cyg_hal_gdbfileio_stat()
__externC int
cyg_hal_gdbfileio_fstat( int fd, struct newlib_stat *buf, int *sig )
{
unsigned int i=0;
int rc;
struct fio_stat fbuf;
__remcomOutBuffer[i++] = 'F';
__remcomOutBuffer[i++] = 'f';
__remcomOutBuffer[i++] = 's';
__remcomOutBuffer[i++] = 't';
__remcomOutBuffer[i++] = 'a';
__remcomOutBuffer[i++] = 't';
__remcomOutBuffer[i++] = ',';
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)fd,
sizeof(fd)*8 );
// i now points after the parameter
__remcomOutBuffer[i++] = ',';
i += __intToHex( &__remcomOutBuffer[i], (target_register_t)&fbuf,
sizeof(&fbuf)*8 );
__remcomOutBuffer[i] = 0;
rc = gdbfileio_common_sendpkt( __remcomOutBuffer, sig );
// now fbuf should have its contents filled
gdbfileio_fio_to_newlib_dev_t( &fbuf.st_dev, &buf->st_dev );
gdbfileio_fio_to_newlib_ino_t( &fbuf.st_ino, &buf->st_ino );
gdbfileio_fio_to_newlib_mode_t( &fbuf.st_mode, &buf->st_mode );
gdbfileio_fio_to_newlib_nlink_t( &fbuf.st_nlink, &buf->st_nlink );
gdbfileio_fio_to_newlib_uid_t( &fbuf.st_uid, &buf->st_uid );
gdbfileio_fio_to_newlib_gid_t( &fbuf.st_gid, &buf->st_gid );
gdbfileio_fio_to_newlib_dev_t( &fbuf.st_rdev, &buf->st_rdev );
gdbfileio_fio_to_newlib_off_t( &fbuf.st_size, &buf->st_size );
gdbfileio_fio_to_newlib_off_t( &fbuf.st_size, &buf->st_size );
gdbfileio_fio_to_newlib_off_t( &fbuf.st_size, &buf->st_size );
gdbfileio_fio_to_newlib_off_t( &fbuf.st_size, &buf->st_size );
#if !defined(__svr4__) || defined(__PPC__) || defined(__sun__)
gdbfileio_fio_to_newlib_long_t( &fbuf.st_blksize, &buf->st_blksize );
gdbfileio_fio_to_newlib_long_t( &fbuf.st_blocks, &buf->st_blocks );
#endif
gdbfileio_fio_to_newlib_time_t( &fbuf.st_atime, &buf->st_atime );
gdbfileio_fio_to_newlib_time_t( &fbuf.st_mtime, &buf->st_mtime );
gdbfileio_fio_to_newlib_time_t( &fbuf.st_ctime, &buf->st_ctime );
return rc;
} // cyg_hal_gdbfileio_fstat()
/* EOF gdb-fileio.c */
|