source: rtems/c/src/exec/score/cpu/unix/cpu.c @ e71ce071

4.104.114.84.95
Last change on this file since e71ce071 was e71ce071, checked in by Joel Sherrill <joel.sherrill@…>, on 04/22/97 at 17:47:16

updated with new license information per Tony Bennett.

  • Property mode set to 100644
File size: 20.3 KB
RevLine 
[ac7d5ef0]1/*
[3652ad35]2 *  UNIX Simulator Dependent Source
[ac7d5ef0]3 *
[e71ce071]4 *  COPYRIGHT (c) 1994,95 by Division Incorporated
[ac7d5ef0]5 *
[e71ce071]6 *  The license and distribution terms for this file may in
7 *  the file LICENSE in this distribution or at
8 *  http://www.OARcorp.com/rtems/license.html.
[ac7d5ef0]9 *
10 *  $Id$
11 */
12
13#include <rtems/system.h>
[5e9b32b]14#include <rtems/score/isr.h>
15#include <rtems/score/interr.h>
[ac7d5ef0]16
[37f4c2d]17#if defined(solaris2)
[1ceface]18/*
[37f4c2d]19#undef  _POSIX_C_SOURCE
20#define _POSIX_C_SOURCE 3
21#undef  __STRICT_ANSI__
22#define __STRICT_ANSI__
[1ceface]23*/
24#define __EXTENSIONS__
[37f4c2d]25#endif
[d1193c7]26
[37f4c2d]27#if defined(linux)
28#define MALLOC_0_RETURNS_NULL
29#endif
[d1193c7]30
[1c964ffa]31#include <sys/types.h>
32#include <sys/times.h>
[ac7d5ef0]33#include <stdio.h>
34#include <stdlib.h>
[37f4c2d]35#include <setjmp.h>
[ac7d5ef0]36#include <signal.h>
37#include <time.h>
[10aed1e3]38#include <sys/time.h>
[37f4c2d]39#include <errno.h>
40#include <unistd.h>
41#include <sys/ipc.h>
42#include <sys/shm.h>
43#include <sys/sem.h>
[cc4c1fe4]44#include <string.h>   /* memset */
[ac7d5ef0]45
[637df35]46#ifndef SA_RESTART
47#define SA_RESTART 0
48#endif
[ac7d5ef0]49
[37f4c2d]50typedef struct {
51  jmp_buf   regs;
[d196e48]52  unsigned32  isr_level;
[37f4c2d]53} Context_Control_overlay;
54
[637df35]55void  _CPU_Signal_initialize(void);
56void  _CPU_Stray_signal(int);
57void  _CPU_ISR_Handler(int);
[ac7d5ef0]58
[d196e48]59static sigset_t         _CPU_Signal_mask;
[d1193c7]60static Context_Control_overlay
[855edec]61          _CPU_Context_Default_with_ISRs_enabled CPU_STRUCTURE_ALIGNMENT;
[d1193c7]62static Context_Control_overlay
[855edec]63          _CPU_Context_Default_with_ISRs_disabled CPU_STRUCTURE_ALIGNMENT;
[ac7d5ef0]64
65/*
66 * Which cpu are we? Used by libcpu and libbsp.
67 */
68
69int cpu_number;
70
[637df35]71/*PAGE
72 *
73 *  _CPU_ISR_From_CPU_Init
74 */
75
[e7e016f]76sigset_t  posix_empty_mask;
77
[637df35]78void _CPU_ISR_From_CPU_Init()
79{
80  unsigned32        i;
81  proc_ptr          old_handler;
82
[e7e016f]83  /*
84   * Generate an empty mask to be used by disable_support
85   */
[637df35]86
[e7e016f]87  sigemptyset(&posix_empty_mask);
[c64e4ed4]88
[637df35]89  /*
90   * Block all the signals except SIGTRAP for the debugger
[d196e48]91   * and fatal error signals.
[637df35]92   */
93
94  (void) sigfillset(&_CPU_Signal_mask);
95  (void) sigdelset(&_CPU_Signal_mask, SIGTRAP);
96  (void) sigdelset(&_CPU_Signal_mask, SIGABRT);
97  (void) sigdelset(&_CPU_Signal_mask, SIGIOT);
98  (void) sigdelset(&_CPU_Signal_mask, SIGCONT);
[d196e48]99  (void) sigdelset(&_CPU_Signal_mask, SIGSEGV);
100  (void) sigdelset(&_CPU_Signal_mask, SIGBUS);
101  (void) sigdelset(&_CPU_Signal_mask, SIGFPE);
[637df35]102
[e7e016f]103  _CPU_ISR_Enable(1);
[637df35]104
105  /*
106   * Set the handler for all signals to be signal_handler
107   * which will then vector out to the correct handler
108   * for whichever signal actually happened. Initially
109   * set the vectors to the stray signal handler.
110   */
111
112  for (i = 0; i < CPU_INTERRUPT_NUMBER_OF_VECTORS; i++)
113      (void)_CPU_ISR_install_vector(i, _CPU_Stray_signal, &old_handler);
114
115  _CPU_Signal_initialize();
116}
117
118void _CPU_Signal_initialize( void )
119{
120  struct sigaction  act;
121  sigset_t          mask;
[d1193c7]122
[637df35]123  /* mark them all active except for TraceTrap  and Abort */
[d1193c7]124
[d196e48]125  mask = _CPU_Signal_mask;
[637df35]126  sigprocmask(SIG_UNBLOCK, &mask, 0);
[d1193c7]127
[637df35]128  act.sa_handler = _CPU_ISR_Handler;
129  act.sa_mask = mask;
130  act.sa_flags = SA_RESTART;
[d1193c7]131
[637df35]132  sigaction(SIGHUP, &act, 0);
133  sigaction(SIGINT, &act, 0);
134  sigaction(SIGQUIT, &act, 0);
135  sigaction(SIGILL, &act, 0);
[10aed1e3]136#ifdef SIGEMT
[637df35]137  sigaction(SIGEMT, &act, 0);
[10aed1e3]138#endif
[637df35]139  sigaction(SIGFPE, &act, 0);
140  sigaction(SIGKILL, &act, 0);
141  sigaction(SIGBUS, &act, 0);
142  sigaction(SIGSEGV, &act, 0);
[10aed1e3]143#ifdef SIGSYS
[637df35]144  sigaction(SIGSYS, &act, 0);
[10aed1e3]145#endif
[637df35]146  sigaction(SIGPIPE, &act, 0);
147  sigaction(SIGALRM, &act, 0);
148  sigaction(SIGTERM, &act, 0);
149  sigaction(SIGUSR1, &act, 0);
150  sigaction(SIGUSR2, &act, 0);
151  sigaction(SIGCHLD, &act, 0);
152  sigaction(SIGCLD, &act, 0);
153  sigaction(SIGPWR, &act, 0);
154  sigaction(SIGVTALRM, &act, 0);
155  sigaction(SIGPROF, &act, 0);
156  sigaction(SIGIO, &act, 0);
157  sigaction(SIGWINCH, &act, 0);
158  sigaction(SIGSTOP, &act, 0);
159  sigaction(SIGTTIN, &act, 0);
160  sigaction(SIGTTOU, &act, 0);
161  sigaction(SIGURG, &act, 0);
[e7e016f]162#ifdef SIGLOST
[637df35]163    sigaction(SIGLOST, &act, 0);
164#endif
165}
166
167/*PAGE
168 *
169 *  _CPU_Context_From_CPU_Init
170 */
171
172void _CPU_Context_From_CPU_Init()
173{
174
[11290355]175#if defined(hppa1_1) && defined(RTEMS_UNIXLIB_SETJMP)
[637df35]176    /*
177     * HACK - set the _SYSTEM_ID to 0x20c so that setjmp/longjmp
178     * will handle the full 32 floating point registers.
179     */
180
181    {
182      extern unsigned32 _SYSTEM_ID;
183
184      _SYSTEM_ID = 0x20c;
185    }
186#endif
187
188  /*
189   *  get default values to use in _CPU_Context_Initialize()
190   */
191
[d1193c7]192
[cc4c1fe4]193  (void) memset(
194    &_CPU_Context_Default_with_ISRs_enabled,
195    0,
196    sizeof(Context_Control)
197  );
198  (void) memset(
199    &_CPU_Context_Default_with_ISRs_disabled,
200    0,
201    sizeof(Context_Control)
202  );
203
[637df35]204  _CPU_ISR_Set_level( 0 );
[3652ad35]205  _CPU_Context_switch(
[d196e48]206    (Context_Control *) &_CPU_Context_Default_with_ISRs_enabled,
207    (Context_Control *) &_CPU_Context_Default_with_ISRs_enabled
[637df35]208  );
[d1193c7]209
[637df35]210  _CPU_ISR_Set_level( 1 );
[3652ad35]211  _CPU_Context_switch(
[d196e48]212    (Context_Control *) &_CPU_Context_Default_with_ISRs_disabled,
213    (Context_Control *) &_CPU_Context_Default_with_ISRs_disabled
[637df35]214  );
215}
216
[3a4ae6c]217/*PAGE
218 *
219 *  _CPU_ISR_Get_level
220 */
221
222unsigned32 _CPU_ISR_Get_level( void )
223{
[d196e48]224  sigset_t old_mask;
[d1193c7]225
[d196e48]226  sigprocmask(SIG_BLOCK, 0, &old_mask);
[d1193c7]227
[d196e48]228  if (memcmp((void *)&posix_empty_mask, (void *)&old_mask, sizeof(sigset_t)))
229      return 1;
[d1193c7]230
[d196e48]231  return 0;
[3a4ae6c]232}
233
[ac7d5ef0]234/*  _CPU_Initialize
235 *
236 *  This routine performs processor dependent initialization.
237 *
238 *  INPUT PARAMETERS:
239 *    cpu_table       - CPU table to initialize
240 *    thread_dispatch - address of disptaching routine
241 */
242
243
244void _CPU_Initialize(
245  rtems_cpu_table  *cpu_table,
[3a4ae6c]246  void            (*thread_dispatch)      /* ignored on this CPU */
[ac7d5ef0]247)
248{
249  /*
250   *  The thread_dispatch argument is the address of the entry point
251   *  for the routine called at the end of an ISR once it has been
252   *  decided a context switch is necessary.  On some compilation
253   *  systems it is difficult to call a high-level language routine
254   *  from assembly.  This allows us to trick these systems.
255   *
256   *  If you encounter this problem save the entry point in a CPU
257   *  dependent variable.
258   */
259
260  _CPU_Thread_dispatch_pointer = thread_dispatch;
261
262  /*
263   * XXX; If there is not an easy way to initialize the FP context
264   *      during Context_Initialize, then it is usually easier to
265   *      save an "uninitialized" FP context here and copy it to
266   *      the task's during Context_Initialize.
267   */
268
269  /* XXX: FP context initialization support */
270
271  _CPU_Table = *cpu_table;
272
[637df35]273  _CPU_ISR_From_CPU_Init();
[ac7d5ef0]274
[637df35]275  _CPU_Context_From_CPU_Init();
[ac7d5ef0]276
[637df35]277}
[ac7d5ef0]278
[637df35]279/*PAGE
280 *
281 *  _CPU_ISR_install_raw_handler
282 */
[ac7d5ef0]283
[637df35]284void _CPU_ISR_install_raw_handler(
285  unsigned32  vector,
286  proc_ptr    new_handler,
287  proc_ptr   *old_handler
288)
289{
290  _CPU_Fatal_halt( 0xdeaddead );
[ac7d5ef0]291}
292
[637df35]293/*PAGE
294 *
295 *  _CPU_ISR_install_vector
[ac7d5ef0]296 *
297 *  This kernel routine installs the RTEMS handler for the
298 *  specified vector.
299 *
300 *  Input parameters:
301 *    vector      - interrupt vector number
302 *    old_handler - former ISR for this vector number
303 *    new_handler - replacement ISR for this vector number
304 *
305 *  Output parameters:  NONE
306 *
307 */
308
309
310void _CPU_ISR_install_vector(
311  unsigned32  vector,
312  proc_ptr    new_handler,
313  proc_ptr   *old_handler
314)
315{
316   *old_handler = _ISR_Vector_table[ vector ];
317
318   /*
319    *  If the interrupt vector table is a table of pointer to isr entry
320    *  points, then we need to install the appropriate RTEMS interrupt
321    *  handler for this vector number.
322    */
323
324   /*
325    *  We put the actual user ISR address in '_ISR_vector_table'.  This will
[637df35]326    *  be used by the _CPU_ISR_Handler so the user gets control.
[ac7d5ef0]327    */
328
329    _ISR_Vector_table[ vector ] = new_handler;
330}
331
332/*PAGE
333 *
334 *  _CPU_Install_interrupt_stack
335 */
336
337void _CPU_Install_interrupt_stack( void )
338{
339}
340
341/*PAGE
342 *
[75f09e5]343 *  _CPU_Thread_Idle_body
[ac7d5ef0]344 *
[d1193c7]345 *  Stop until we get a signal which is the logically the same thing
[9700578]346 *  entering low-power or sleep mode on a real processor and waiting for
347 *  an interrupt.  This significantly reduces the consumption of host
348 *  CPU cycles which is again similar to low power mode.
[ac7d5ef0]349 */
350
[75f09e5]351void _CPU_Thread_Idle_body( void )
[ac7d5ef0]352{
[d196e48]353  while (1) {
354#ifdef RTEMS_DEBUG
355    /* interrupts had better be enabled at this point! */
356    if (_CPU_ISR_Get_level() != 0)
357       abort();
358#endif
[637df35]359    pause();
[d196e48]360  }
361
[ac7d5ef0]362}
363
[637df35]364/*PAGE
[d1193c7]365 *
[637df35]366 *  _CPU_Context_Initialize
367 */
368
[ac7d5ef0]369void _CPU_Context_Initialize(
370  Context_Control  *_the_context,
371  unsigned32       *_stack_base,
372  unsigned32        _size,
373  unsigned32        _new_level,
[9700578]374  void             *_entry_point,
375  boolean           _is_fp
[ac7d5ef0]376)
377{
[637df35]378  unsigned32  *addr;
379  unsigned32   jmp_addr;
380  unsigned32   _stack_low;   /* lowest "stack aligned" address */
381  unsigned32   _stack_high;  /* highest "stack aligned" address */
382  unsigned32   _the_size;
[ac7d5ef0]383
[637df35]384  jmp_addr = (unsigned32) _entry_point;
[ac7d5ef0]385
[637df35]386  /*
387   *  On CPUs with stacks which grow down, we build the stack
[d1193c7]388   *  based on the _stack_high address.  On CPUs with stacks which
389   *  grow up, we build the stack based on the _stack_low address.
[637df35]390   */
[88d594a]391
[cc4c1fe4]392  _stack_low = (unsigned32)(_stack_base) + CPU_STACK_ALIGNMENT - 1;
[637df35]393  _stack_low &= ~(CPU_STACK_ALIGNMENT - 1);
[88d594a]394
[cc4c1fe4]395  _stack_high = (unsigned32)(_stack_base) + _size;
[637df35]396  _stack_high &= ~(CPU_STACK_ALIGNMENT - 1);
[ac7d5ef0]397
[cc4c1fe4]398  if (_stack_high > _stack_low)
399    _the_size = _stack_high - _stack_low;
400  else
401    _the_size = _stack_low - _stack_high;
[ac7d5ef0]402
[637df35]403  /*
404   * Slam our jmp_buf template into the context we are creating
405   */
[ac7d5ef0]406
[637df35]407  if ( _new_level == 0 )
[d196e48]408      *_the_context = *(Context_Control *)
409                         &_CPU_Context_Default_with_ISRs_enabled;
[637df35]410  else
[d196e48]411      *_the_context = *(Context_Control *)
412                         &_CPU_Context_Default_with_ISRs_disabled;
[d1193c7]413
[637df35]414  addr = (unsigned32 *)_the_context;
[ac7d5ef0]415
416#if defined(hppa1_1)
[637df35]417  *(addr + RP_OFF) = jmp_addr;
418  *(addr + SP_OFF) = (unsigned32)(_stack_low + CPU_FRAME_SIZE);
[ac7d5ef0]419
[637df35]420  /*
421   * See if we are using shared libraries by checking
422   * bit 30 in 24 off of newp. If bit 30 is set then
423   * we are using shared libraries and the jump address
[cc4c1fe4]424   * points to the pointer, so we put that into rp instead.
[637df35]425   */
[ac7d5ef0]426
[637df35]427  if (jmp_addr & 0x40000000) {
428    jmp_addr &= 0xfffffffc;
[cc4c1fe4]429     *(addr + RP_OFF) = *(unsigned32 *)jmp_addr;
[637df35]430  }
[ac7d5ef0]431#elif defined(sparc)
432
[637df35]433  /*
434   *  See /usr/include/sys/stack.h in Solaris 2.3 for a nice
435   *  diagram of the stack.
436   */
[ac7d5ef0]437
[637df35]438  asm ("ta  0x03");            /* flush registers */
[ac7d5ef0]439
[637df35]440  *(addr + RP_OFF) = jmp_addr + ADDR_ADJ_OFFSET;
441  *(addr + SP_OFF) = (unsigned32)(_stack_high - CPU_FRAME_SIZE);
442  *(addr + FP_OFF) = (unsigned32)(_stack_high);
[8044533]443
[254b4450]444#elif defined(i386) || defined(__i386__)
[d1193c7]445
[8044533]446    /*
447     *  This information was gathered by disassembling setjmp().
448     */
[10aed1e3]449
450    {
451      unsigned32 stack_ptr;
452
453      stack_ptr = _stack_high - CPU_FRAME_SIZE;
454
455      *(addr + EBX_OFF) = 0xFEEDFEED;
456      *(addr + ESI_OFF) = 0xDEADDEAD;
457      *(addr + EDI_OFF) = 0xDEAFDEAF;
458      *(addr + EBP_OFF) = stack_ptr;
459      *(addr + ESP_OFF) = stack_ptr;
460      *(addr + RET_OFF) = jmp_addr;
[d1193c7]461
[10aed1e3]462      addr = (unsigned32 *) stack_ptr;
[d1193c7]463
[10aed1e3]464      addr[ 0 ] = jmp_addr;
465      addr[ 1 ] = (unsigned32) stack_ptr;
466      addr[ 2 ] = (unsigned32) stack_ptr;
467    }
[8044533]468
[ac7d5ef0]469#else
470#error "UNKNOWN CPU!!!"
471#endif
472
473}
474
[637df35]475/*PAGE
476 *
477 *  _CPU_Context_restore
478 */
479
[ac7d5ef0]480void _CPU_Context_restore(
481  Context_Control  *next
482)
483{
[37f4c2d]484  Context_Control_overlay *nextp = (Context_Control_overlay *)next;
485
[d196e48]486  _CPU_ISR_Enable(nextp->isr_level);
[37f4c2d]487  longjmp( nextp->regs, 0 );
[ac7d5ef0]488}
489
[637df35]490/*PAGE
491 *
492 *  _CPU_Context_switch
493 */
494
[d196e48]495static void do_jump(
496  Context_Control_overlay *currentp,
497  Context_Control_overlay *nextp
498);
499
[ac7d5ef0]500void _CPU_Context_switch(
501  Context_Control  *current,
502  Context_Control  *next
503)
504{
[37f4c2d]505  Context_Control_overlay *currentp = (Context_Control_overlay *)current;
506  Context_Control_overlay *nextp = (Context_Control_overlay *)next;
[d196e48]507#if 0
[3652ad35]508  int status;
[d196e48]509#endif
[d1193c7]510
[d196e48]511  currentp->isr_level = _CPU_ISR_Disable_support();
[d1193c7]512
[d196e48]513  do_jump( currentp, nextp );
[3652ad35]514
[d196e48]515#if 0
516  if (sigsetjmp(currentp->regs, 1) == 0) {    /* Save the current context */
517     siglongjmp(nextp->regs, 0);           /* Switch to the new context */
518     _Internal_error_Occurred(
519         INTERNAL_ERROR_CORE,
520         TRUE,
521         status
522       );
523  }
524#endif
[d1193c7]525
[d196e48]526#ifdef RTEMS_DEBUG
527    if (_CPU_ISR_Get_level() == 0)
528       abort();
529#endif
[d1193c7]530
[d196e48]531  _CPU_ISR_Enable(currentp->isr_level);
532}
[d1193c7]533
534static void do_jump(
[d196e48]535  Context_Control_overlay *currentp,
[d1193c7]536  Context_Control_overlay *nextp
[d196e48]537)
538{
539  int status;
[ac7d5ef0]540
[37f4c2d]541  if (setjmp(currentp->regs) == 0) {    /* Save the current context */
542     longjmp(nextp->regs, 0);           /* Switch to the new context */
[d196e48]543     _Internal_error_Occurred(
[3652ad35]544         INTERNAL_ERROR_CORE,
545         TRUE,
546         status
547       );
[637df35]548  }
[ac7d5ef0]549}
[d196e48]550
[637df35]551/*PAGE
552 *
553 *  _CPU_Save_float_context
554 */
[ac7d5ef0]555
556void _CPU_Save_float_context(
557  Context_Control_fp *fp_context
558)
559{
560}
561
[637df35]562/*PAGE
563 *
564 *  _CPU_Restore_float_context
565 */
566
[ac7d5ef0]567void _CPU_Restore_float_context(
568  Context_Control_fp *fp_context
569)
570{
571}
572
[637df35]573/*PAGE
574 *
575 *  _CPU_ISR_Disable_support
576 */
[ac7d5ef0]577
[637df35]578unsigned32 _CPU_ISR_Disable_support(void)
[ac7d5ef0]579{
[3652ad35]580  int status;
[637df35]581  sigset_t  old_mask;
[ac7d5ef0]582
[3652ad35]583  status = sigprocmask(SIG_BLOCK, &_CPU_Signal_mask, &old_mask);
584  if ( status )
585    _Internal_error_Occurred(
586      INTERNAL_ERROR_CORE,
587      TRUE,
588      status
589    );
[ac7d5ef0]590
[3652ad35]591  if (memcmp((void *)&posix_empty_mask, (void *)&old_mask, sizeof(sigset_t)))
[637df35]592    return 1;
[ac7d5ef0]593
[637df35]594  return 0;
[ac7d5ef0]595}
596
[637df35]597/*PAGE
598 *
599 *  _CPU_ISR_Enable
600 */
[ac7d5ef0]601
[637df35]602void _CPU_ISR_Enable(
603  unsigned32 level
604)
[ac7d5ef0]605{
[3652ad35]606  int status;
607
[637df35]608  if (level == 0)
[3652ad35]609    status = sigprocmask(SIG_UNBLOCK, &_CPU_Signal_mask, 0);
[637df35]610  else
[3652ad35]611    status = sigprocmask(SIG_BLOCK, &_CPU_Signal_mask, 0);
612
613  if ( status )
614    _Internal_error_Occurred(
615      INTERNAL_ERROR_CORE,
616      TRUE,
617      status
618    );
[ac7d5ef0]619}
620
[637df35]621/*PAGE
[ac7d5ef0]622 *
[637df35]623 *  _CPU_ISR_Handler
624 *
625 *  External interrupt handler.
626 *  This is installed as a UNIX signal handler.
627 *  It vectors out to specific user interrupt handlers.
[ac7d5ef0]628 */
629
[637df35]630void _CPU_ISR_Handler(int vector)
[ac7d5ef0]631{
[637df35]632  extern void        _Thread_Dispatch(void);
633  extern unsigned32  _Thread_Dispatch_disable_level;
634  extern boolean     _Context_Switch_necessary;
[ac7d5ef0]635
[637df35]636  if (_ISR_Nest_level++ == 0) {
637      /* switch to interrupt stack */
638  }
[ac7d5ef0]639
[637df35]640  _Thread_Dispatch_disable_level++;
[ac7d5ef0]641
[637df35]642  if (_ISR_Vector_table[vector]) {
643     _ISR_Vector_table[vector](vector);
644  } else {
645     _CPU_Stray_signal(vector);
646  }
[ac7d5ef0]647
[637df35]648  if (_ISR_Nest_level-- == 0) {
649      /* switch back to original stack */
650  }
[ac7d5ef0]651
[637df35]652  _Thread_Dispatch_disable_level--;
[ac7d5ef0]653
[637df35]654  if (_Thread_Dispatch_disable_level == 0 &&
655      (_Context_Switch_necessary || _ISR_Signals_to_thread_executing)) {
[8a38f3b]656      _ISR_Signals_to_thread_executing = FALSE;
[637df35]657      _CPU_ISR_Enable(0);
658      _Thread_Dispatch();
659  }
[ac7d5ef0]660}
661
[637df35]662/*PAGE
663 *
664 *  _CPU_Stray_signal
665 */
[ac7d5ef0]666
[637df35]667void _CPU_Stray_signal(int sig_num)
[ac7d5ef0]668{
[c64e4ed4]669  char buffer[ 4 ];
[d1193c7]670
[c64e4ed4]671  /*
672   * print "stray" msg about ones which that might mean something
673   * Avoid using the stdio section of the library.
674   * The following is generally safe.
[637df35]675   */
[d1193c7]676
[c64e4ed4]677  switch (sig_num)
678  {
679      case SIGCLD:
680          break;
[d1193c7]681
[c64e4ed4]682      default:
683      {
[cc4c1fe4]684        /*
685         *  We avoid using the stdio section of the library.
686         *  The following is generally safe
687         */
[d1193c7]688
[cc4c1fe4]689        int digit;
690        int number = sig_num;
691        int len = 0;
692
693        digit = number / 100;
694        number %= 100;
695        if (digit) buffer[len++] = '0' + digit;
696
697        digit = number / 10;
698        number %= 10;
699        if (digit || len) buffer[len++] = '0' + digit;
700
701        digit = number;
702        buffer[len++] = '0' + digit;
[d1193c7]703
[cc4c1fe4]704        buffer[ len++ ] = '\n';
[d1193c7]705
[cc4c1fe4]706        write( 2, "Stray signal ", 13 );
707        write( 2, buffer, len );
708
[c64e4ed4]709      }
710  }
[d1193c7]711
[637df35]712  /*
713   * If it was a "fatal" signal, then exit here
714   * If app code has installed a hander for one of these, then
715   * we won't call _CPU_Stray_signal, so this is ok.
716   */
[d1193c7]717
[637df35]718  switch (sig_num) {
719      case SIGINT:
720      case SIGHUP:
721      case SIGQUIT:
722      case SIGILL:
[10aed1e3]723#ifdef SIGEMT
[637df35]724      case SIGEMT:
[10aed1e3]725#endif
[637df35]726      case SIGKILL:
727      case SIGBUS:
728      case SIGSEGV:
729      case SIGTERM:
[d196e48]730      case SIGIOT:
[cc4c1fe4]731        _CPU_Fatal_error(0x100 + sig_num);
[637df35]732  }
[ac7d5ef0]733}
734
[637df35]735/*PAGE
736 *
737 *  _CPU_Fatal_error
738 */
[ac7d5ef0]739
[637df35]740void _CPU_Fatal_error(unsigned32 error)
[ac7d5ef0]741{
[637df35]742  setitimer(ITIMER_REAL, 0, 0);
[ac7d5ef0]743
[e7e016f]744  if ( error ) {
745#ifdef RTEMS_DEBUG
746    abort();
747#endif
748    if (getenv("RTEMS_DEBUG"))
749      abort();
750  }
751
[637df35]752  _exit(error);
[ac7d5ef0]753}
754
[37f4c2d]755/*
756 *  Special Purpose Routines to hide the use of UNIX system calls.
757 */
758
759int _CPU_Get_clock_vector( void )
760{
761  return SIGALRM;
762}
763
[d1193c7]764void _CPU_Start_clock(
[37f4c2d]765  int microseconds
766)
767{
768  struct itimerval  new;
769
770  new.it_value.tv_sec = 0;
771  new.it_value.tv_usec = microseconds;
772  new.it_interval.tv_sec = 0;
773  new.it_interval.tv_usec = microseconds;
774
775  setitimer(ITIMER_REAL, &new, 0);
776}
777
778void _CPU_Stop_clock( void )
779{
780  struct itimerval  new;
781  struct sigaction  act;
[d1193c7]782
[37f4c2d]783  /*
784   * Set the SIGALRM signal to ignore any last
785   * signals that might come in while we are
786   * disarming the timer and removing the interrupt
787   * vector.
788   */
[d1193c7]789
[cc4c1fe4]790  (void) memset(&act, 0, sizeof(act));
[37f4c2d]791  act.sa_handler = SIG_IGN;
[d1193c7]792
[cc4c1fe4]793  sigaction(SIGALRM, &act, 0);
[d1193c7]794
[cc4c1fe4]795  (void) memset(&new, 0, sizeof(new));
[37f4c2d]796  setitimer(ITIMER_REAL, &new, 0);
797}
798
799int  _CPU_SHM_Semid;
800extern       void fix_syscall_errno( void );
801
[d1193c7]802void _CPU_SHM_Init(
[37f4c2d]803  unsigned32   maximum_nodes,
804  boolean      is_master_node,
805  void       **shm_address,
806  unsigned32  *shm_length
807)
808{
809  int          i;
810  int          shmid;
811  char        *shm_addr;
812  key_t        shm_key;
813  key_t        sem_key;
[d6ba279]814  int          status = 0;  /* to avoid unitialized warnings */
[37f4c2d]815  int          shm_size;
[d1193c7]816
[37f4c2d]817  if (getenv("RTEMS_SHM_KEY"))
818    shm_key = strtol(getenv("RTEMS_SHM_KEY"), 0, 0);
819  else
820#ifdef RTEMS_SHM_KEY
821    shm_key = RTEMS_SHM_KEY;
822#else
823    shm_key = 0xa000;
824#endif
[d1193c7]825
[37f4c2d]826    if (getenv("RTEMS_SHM_SIZE"))
827      shm_size = strtol(getenv("RTEMS_SHM_SIZE"), 0, 0);
828    else
829#ifdef RTEMS_SHM_SIZE
830      shm_size = RTEMS_SHM_SIZE;
831#else
832      shm_size = 64 * 1024;
833#endif
[d1193c7]834
[37f4c2d]835    if (getenv("RTEMS_SHM_SEMAPHORE_KEY"))
836      sem_key = strtol(getenv("RTEMS_SHM_SEMAPHORE_KEY"), 0, 0);
837    else
838#ifdef RTEMS_SHM_SEMAPHORE_KEY
839      sem_key = RTEMS_SHM_SEMAPHORE_KEY;
840#else
841      sem_key = 0xa001;
842#endif
[d1193c7]843
[37f4c2d]844    shmid = shmget(shm_key, shm_size, IPC_CREAT | 0660);
845    if ( shmid == -1 ) {
846      fix_syscall_errno(); /* in case of newlib */
847      perror( "shmget" );
848      _CPU_Fatal_halt( 0xdead0001 );
849    }
[d1193c7]850
[37f4c2d]851    shm_addr = shmat(shmid, (char *)0, SHM_RND);
852    if ( shm_addr == (void *)-1 ) {
853      fix_syscall_errno(); /* in case of newlib */
854      perror( "shmat" );
855      _CPU_Fatal_halt( 0xdead0002 );
856    }
[d1193c7]857
[37f4c2d]858    _CPU_SHM_Semid = semget(sem_key, maximum_nodes + 1, IPC_CREAT | 0660);
859    if ( _CPU_SHM_Semid == -1 ) {
860      fix_syscall_errno(); /* in case of newlib */
861      perror( "semget" );
862      _CPU_Fatal_halt( 0xdead0003 );
863    }
[d1193c7]864
[37f4c2d]865    if ( is_master_node ) {
866      for ( i=0 ; i <= maximum_nodes ; i++ ) {
867#if defined(solaris2)
868        union semun {
869          int val;
870          struct semid_ds *buf;
871          ushort *array;
872        } help;
[d1193c7]873
[37f4c2d]874        help.val = 1;
875        status = semctl( _CPU_SHM_Semid, i, SETVAL, help );
876#endif
877#if defined(hpux)
878        status = semctl( _CPU_SHM_Semid, i, SETVAL, 1 );
879#endif
[d1193c7]880
[37f4c2d]881        fix_syscall_errno(); /* in case of newlib */
882        if ( status == -1 ) {
883          _CPU_Fatal_halt( 0xdead0004 );
884        }
885      }
886    }
[d1193c7]887
[37f4c2d]888  *shm_address = shm_addr;
889  *shm_length = shm_size;
890
891}
892
893int _CPU_Get_pid( void )
894{
895  return getpid();
896}
897
898/*
899 * Define this to use signals for MPCI shared memory driver.
900 * If undefined, the shared memory driver will poll from the
901 * clock interrupt.
902 * Ref: ../shmsupp/getcfg.c
903 *
904 * BEWARE:: many UN*X kernels and debuggers become severely confused when
905 *          debugging programs which use signals.  The problem is *much*
906 *          worse when using multiple signals, since ptrace(2) tends to
907 *          drop all signals except 1 in the case of multiples.
908 *          On hpux9, this problem was so bad, we couldn't use interrupts
909 *          with the shared memory driver if we ever hoped to debug
910 *          RTEMS programs.
911 *          Maybe systems that use /proc don't have this problem...
912 */
[d1193c7]913
914
[37f4c2d]915int _CPU_SHM_Get_vector( void )
916{
917#ifdef CPU_USE_SHM_INTERRUPTS
918  return SIGUSR1;
919#else
920  return 0;
921#endif
922}
923
924void _CPU_SHM_Send_interrupt(
925  int pid,
926  int vector
927)
928{
929  kill((pid_t) pid, vector);
930}
931
[d1193c7]932void _CPU_SHM_Lock(
[37f4c2d]933  int semaphore
934)
935{
936  struct sembuf      sb;
937  int                status;
[d1193c7]938
[37f4c2d]939  sb.sem_num = semaphore;
940  sb.sem_op  = -1;
941  sb.sem_flg = 0;
[d1193c7]942
[37f4c2d]943  while (1) {
944    status = semop(_CPU_SHM_Semid, &sb, 1);
945    if ( status >= 0 )
946      break;
947    if ( status == -1 ) {
948       fix_syscall_errno();    /* in case of newlib */
949        if (errno == EINTR)
950            continue;
951        perror("shm lock");
952        _CPU_Fatal_halt( 0xdead0005 );
953    }
954  }
955
956}
957
958void _CPU_SHM_Unlock(
959  int semaphore
960)
961{
962  struct sembuf  sb;
963  int            status;
[d1193c7]964
[37f4c2d]965  sb.sem_num = semaphore;
966  sb.sem_op  = 1;
967  sb.sem_flg = 0;
[d1193c7]968
[37f4c2d]969  while (1) {
970    status = semop(_CPU_SHM_Semid, &sb, 1);
971    if ( status >= 0 )
972      break;
[d1193c7]973
[37f4c2d]974    if ( status == -1 ) {
975      fix_syscall_errno();    /* in case of newlib */
976      if (errno == EINTR)
977          continue;
978      perror("shm unlock");
979      _CPU_Fatal_halt( 0xdead0006 );
980    }
981  }
982
983}
Note: See TracBrowser for help on using the repository browser.