SimpleOS

LXR

Navigation



Site hébergé par : enix

The LXR Cross Referencer for SOS

source navigation ]
diff markup ]
identifier search ]
general search ]
 
 
Article:1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 6 ] [ 6.5 ] [ 7 ] [ 7.5 ] [ 8 ] [ 9 ] [ 9.5 ]

Diff markup

Differences between /hwcore/cpu_context.c (Article 6.5) and /hwcore/cpu_context.c (Article 8)


001 /* Copyright (C) 2005  David Decotigny            001 /* Copyright (C) 2005  David Decotigny
002    Copyright (C) 2000-2004, The KOS team          002    Copyright (C) 2000-2004, The KOS team
003                                                   003 
004    This program is free software; you can redi    004    This program is free software; you can redistribute it and/or
005    modify it under the terms of the GNU Genera    005    modify it under the terms of the GNU General Public License
006    as published by the Free Software Foundatio    006    as published by the Free Software Foundation; either version 2
007    of the License, or (at your option) any lat    007    of the License, or (at your option) any later version.
008                                                   008    
009    This program is distributed in the hope tha    009    This program is distributed in the hope that it will be useful,
010    but WITHOUT ANY WARRANTY; without even the     010    but WITHOUT ANY WARRANTY; without even the implied warranty of
011    MERCHANTABILITY or FITNESS FOR A PARTICULAR    011    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
012    GNU General Public License for more details    012    GNU General Public License for more details.
013                                                   013    
014    You should have received a copy of the GNU     014    You should have received a copy of the GNU General Public License
015    along with this program; if not, write to t    015    along with this program; if not, write to the Free Software
016    Foundation, Inc., 59 Temple Place - Suite 3    016    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
017    USA.                                           017    USA. 
018 */                                                018 */
019                                                   019 
020                                                   020 
021 #include <sos/assert.h>                           021 #include <sos/assert.h>
022 #include <sos/klibc.h>                            022 #include <sos/klibc.h>
023 #include <drivers/bochs.h>                        023 #include <drivers/bochs.h>
024 #include <drivers/x86_videomem.h>                 024 #include <drivers/x86_videomem.h>
025 #include <hwcore/segment.h>                       025 #include <hwcore/segment.h>
                                                   >> 026 #include <hwcore/gdt.h>
                                                   >> 027 #include <sos/uaccess.h>
026                                                   028 
027 #include "cpu_context.h"                          029 #include "cpu_context.h"
028                                                   030 
029                                                   031 
030 /**                                               032 /**
031  * Here is the definition of a CPU context for    033  * Here is the definition of a CPU context for IA32 processors. This
032  * is a SOS convention, not a specification gi    034  * is a SOS convention, not a specification given by the IA32
033  * spec. However there is a strong constraint     035  * spec. However there is a strong constraint related to the x86
034  * interrupt handling specification: the top o    036  * interrupt handling specification: the top of the stack MUST be
035  * compatible with the 'iret' instruction, ie     037  * compatible with the 'iret' instruction, ie there must be the
036  * err_code (might be 0), eip, cs and eflags o    038  * err_code (might be 0), eip, cs and eflags of the destination
037  * context in that order (see Intel x86 specs     039  * context in that order (see Intel x86 specs vol 3, figure 5-4).
038  *                                                040  *
039  * @note IMPORTANT: This definition MUST be co    041  * @note IMPORTANT: This definition MUST be consistent with the way
040  * the registers are stored on the stack in       042  * the registers are stored on the stack in
041  * irq_wrappers.S/exception_wrappers.S !!! Hen    043  * irq_wrappers.S/exception_wrappers.S !!! Hence the constraint above.
042  */                                               044  */
043 struct sos_cpu_state {                            045 struct sos_cpu_state {
044   /* (Lower addresses) */                         046   /* (Lower addresses) */
045                                                   047 
046   /* These are SOS convention */                  048   /* These are SOS convention */
047   sos_ui16_t  gs;                                 049   sos_ui16_t  gs;
048   sos_ui16_t  fs;                                 050   sos_ui16_t  fs;
049   sos_ui16_t  es;                                 051   sos_ui16_t  es;
050   sos_ui16_t  ds;                                 052   sos_ui16_t  ds;
051   sos_ui16_t  cpl0_ss; /* This is ALWAYS the S    053   sos_ui16_t  cpl0_ss; /* This is ALWAYS the Stack Segment of the
052                           Kernel context (CPL0    054                           Kernel context (CPL0) of the interrupted
053                           thread, even for a u    055                           thread, even for a user thread */
054   sos_ui16_t  alignment_padding; /* unused */     056   sos_ui16_t  alignment_padding; /* unused */
055   sos_ui32_t  eax;                                057   sos_ui32_t  eax;
056   sos_ui32_t  ebx;                                058   sos_ui32_t  ebx;
057   sos_ui32_t  ecx;                                059   sos_ui32_t  ecx;
058   sos_ui32_t  edx;                                060   sos_ui32_t  edx;
059   sos_ui32_t  esi;                                061   sos_ui32_t  esi;
060   sos_ui32_t  edi;                                062   sos_ui32_t  edi;
061   sos_ui32_t  ebp;                                063   sos_ui32_t  ebp;
062                                                   064 
063   /* MUST NEVER CHANGE (dependent on the IA32     065   /* MUST NEVER CHANGE (dependent on the IA32 iret instruction) */
064   sos_ui32_t  error_code;                         066   sos_ui32_t  error_code;
065   sos_vaddr_t eip;                                067   sos_vaddr_t eip;
066   sos_ui32_t  cs; /* 32bits according to the s    068   sos_ui32_t  cs; /* 32bits according to the specs ! However, the CS
067                      register is really 16bits    069                      register is really 16bits long */
068   sos_ui32_t  eflags;                             070   sos_ui32_t  eflags;
069                                                   071 
070   /* (Higher addresses) */                        072   /* (Higher addresses) */
071 } __attribute__((packed));                        073 } __attribute__((packed));
072                                                   074 
073                                                   075 
074 /**                                               076 /**
075  * The CS value pushed on the stack by the CPU    077  * The CS value pushed on the stack by the CPU upon interrupt, and
076  * needed by the iret instruction, is 32bits l    078  * needed by the iret instruction, is 32bits long while the real CPU
077  * CS register is 16bits only: this macro simp    079  * CS register is 16bits only: this macro simply retrieves the CPU
078  * "CS" register value from the CS value pushe    080  * "CS" register value from the CS value pushed on the stack by the
079  * CPU upon interrupt.                            081  * CPU upon interrupt.
080  *                                                082  *
081  * The remaining 16bits pushed by the CPU shou    083  * The remaining 16bits pushed by the CPU should be considered
082  * "reserved" and architecture dependent. IMHO    084  * "reserved" and architecture dependent. IMHO, the specs don't say
083  * anything about them. Considering that some     085  * anything about them. Considering that some architectures generate
084  * non-zero values for these 16bits (at least     086  * non-zero values for these 16bits (at least Cyrix), we'd better
085  * ignore them.                                   087  * ignore them.
086  */                                               088  */
087 #define GET_CPU_CS_REGISTER_VALUE(pushed_ui32_    089 #define GET_CPU_CS_REGISTER_VALUE(pushed_ui32_cs_value) \
088   ( (pushed_ui32_cs_value) & 0xffff )             090   ( (pushed_ui32_cs_value) & 0xffff )
089                                                   091 
090                                                   092 
091 /**                                               093 /**
092  * Structure of an interrupted Kernel thread's    094  * Structure of an interrupted Kernel thread's context
093  */                                               095  */
094 struct sos_cpu_kstate                             096 struct sos_cpu_kstate
095 {                                                 097 {
096   struct sos_cpu_state regs;                      098   struct sos_cpu_state regs;
097 } __attribute__((packed));                        099 } __attribute__((packed));
098                                                   100 
099                                                   101 
100 /**                                               102 /**
                                                   >> 103  * Structure of an interrupted User thread's context. This is almost
                                                   >> 104  * the same as a kernel context, except that 2 additional values are
                                                   >> 105  * pushed on the stack before the eflags/cs/eip of the interrupted
                                                   >> 106  * context: the stack configuration of the interrupted user context.
                                                   >> 107  *
                                                   >> 108  * @see Section 6.4.1 of Intel x86 vol 1
                                                   >> 109  */
                                                   >> 110 struct sos_cpu_ustate
                                                   >> 111 {
                                                   >> 112   struct sos_cpu_state regs;
                                                   >> 113   struct
                                                   >> 114   {
                                                   >> 115     sos_ui32_t cpl3_esp;
                                                   >> 116     sos_ui16_t cpl3_ss;
                                                   >> 117   };
                                                   >> 118 } __attribute__((packed));
                                                   >> 119 
                                                   >> 120 
                                                   >> 121 /*
                                                   >> 122  * Structure of a Task State Segment on the x86 Architecture.
                                                   >> 123  *
                                                   >> 124  * @see Intel x86 spec vol 3, figure 6-2
                                                   >> 125  *
                                                   >> 126  * @note Such a data structure should not cross any page boundary (see
                                                   >> 127  * end of section 6.2.1 of Intel spec vol 3). This is the reason why
                                                   >> 128  * we tell gcc to align it on a 128B boundary (its size is 104B, which
                                                   >> 129  * is <= 128).
                                                   >> 130  */
                                                   >> 131 struct x86_tss {
                                                   >> 132 
                                                   >> 133   /**
                                                   >> 134    * Intel provides a way for a task to switch to another in an
                                                   >> 135    * automatic way (call gates). In this case, the back_link field
                                                   >> 136    * stores the source TSS of the context switch. This allows to
                                                   >> 137    * easily implement coroutines, task backtracking, ... In SOS we
                                                   >> 138    * don't use TSS for the context switch purpouse, so we always
                                                   >> 139    * ignore this field.
                                                   >> 140    * (+0)
                                                   >> 141    */
                                                   >> 142   sos_ui16_t back_link;
                                                   >> 143 
                                                   >> 144   sos_ui16_t reserved1;
                                                   >> 145 
                                                   >> 146   /* CPL0 saved context. (+4) */
                                                   >> 147   sos_vaddr_t esp0;
                                                   >> 148   sos_ui16_t ss0;
                                                   >> 149 
                                                   >> 150   sos_ui16_t reserved2;
                                                   >> 151 
                                                   >> 152   /* CPL1 saved context. (+12) */
                                                   >> 153   sos_vaddr_t esp1;
                                                   >> 154   sos_ui16_t ss1;
                                                   >> 155 
                                                   >> 156   sos_ui16_t reserved3;
                                                   >> 157 
                                                   >> 158   /* CPL2 saved context. (+20) */
                                                   >> 159   sos_vaddr_t esp2;
                                                   >> 160   sos_ui16_t ss2;
                                                   >> 161 
                                                   >> 162   sos_ui16_t reserved4;
                                                   >> 163 
                                                   >> 164   /* Interrupted context's saved registers. (+28) */
                                                   >> 165   sos_vaddr_t cr3;
                                                   >> 166   sos_vaddr_t eip;
                                                   >> 167   sos_ui32_t eflags;
                                                   >> 168   sos_ui32_t eax;
                                                   >> 169   sos_ui32_t ecx;
                                                   >> 170   sos_ui32_t edx;
                                                   >> 171   sos_ui32_t ebx;
                                                   >> 172   sos_ui32_t esp;
                                                   >> 173   sos_ui32_t ebp;
                                                   >> 174   sos_ui32_t esi;
                                                   >> 175   sos_ui32_t edi;
                                                   >> 176 
                                                   >> 177   /* +72 */
                                                   >> 178   sos_ui16_t es;
                                                   >> 179   sos_ui16_t reserved5;
                                                   >> 180 
                                                   >> 181   /* +76 */
                                                   >> 182   sos_ui16_t cs;
                                                   >> 183   sos_ui16_t reserved6;
                                                   >> 184 
                                                   >> 185   /* +80 */
                                                   >> 186   sos_ui16_t ss;
                                                   >> 187   sos_ui16_t reserved7;
                                                   >> 188 
                                                   >> 189   /* +84 */
                                                   >> 190   sos_ui16_t ds;
                                                   >> 191   sos_ui16_t reserved8;
                                                   >> 192 
                                                   >> 193   /* +88 */
                                                   >> 194   sos_ui16_t fs;
                                                   >> 195   sos_ui16_t reserved9;
                                                   >> 196 
                                                   >> 197   /* +92 */
                                                   >> 198   sos_ui16_t gs;
                                                   >> 199   sos_ui16_t reserved10;
                                                   >> 200 
                                                   >> 201   /* +96 */
                                                   >> 202   sos_ui16_t ldtr;
                                                   >> 203   sos_ui16_t reserved11;
                                                   >> 204 
                                                   >> 205   /* +100 */
                                                   >> 206   sos_ui16_t debug_trap_flag :1;
                                                   >> 207   sos_ui16_t reserved12      :15;
                                                   >> 208   sos_ui16_t iomap_base_addr;
                                                   >> 209 
                                                   >> 210   /* 104 */
                                                   >> 211 } __attribute__((packed, aligned(128)));
                                                   >> 212 
                                                   >> 213 
                                                   >> 214 static struct x86_tss kernel_tss;
                                                   >> 215 
                                                   >> 216 
                                                   >> 217 sos_ret_t sos_cpu_context_subsystem_setup()
                                                   >> 218 {
                                                   >> 219   /* Reset the kernel TSS */
                                                   >> 220   memset(&kernel_tss, 0x0, sizeof(kernel_tss));
                                                   >> 221 
                                                   >> 222   /**
                                                   >> 223    * Now setup the kernel TSS.
                                                   >> 224    *
                                                   >> 225    * Considering the privilege change method we choose (cpl3 -> cpl0
                                                   >> 226    * through a software interrupt), we don't need to initialize a
                                                   >> 227    * full-fledged TSS. See section 6.4.1 of Intel x86 vol 1. Actually,
                                                   >> 228    * only a correct value for the kernel esp and ss are required (aka
                                                   >> 229    * "ss0" and "esp0" fields). Since the esp0 will have to be updated
                                                   >> 230    * at privilege change time, we don't have to set it up now.
                                                   >> 231    */
                                                   >> 232   kernel_tss.ss0 = SOS_BUILD_SEGMENT_REG_VALUE(0, FALSE, SOS_SEG_KDATA);
                                                   >> 233 
                                                   >> 234   /* Register this TSS into the gdt */
                                                   >> 235   sos_gdt_register_kernel_tss((sos_vaddr_t) &kernel_tss);
                                                   >> 236 
                                                   >> 237   return SOS_OK;
                                                   >> 238 }
                                                   >> 239 
                                                   >> 240 
                                                   >> 241 /**
101  * THE main operation of a kernel thread. This    242  * THE main operation of a kernel thread. This routine calls the
102  * kernel thread function start_func and calls    243  * kernel thread function start_func and calls exit_func when
103  * start_func returns.                            244  * start_func returns.
104  */                                               245  */
105 static void core_routine (sos_cpu_kstate_funct    246 static void core_routine (sos_cpu_kstate_function_arg1_t *start_func,
106                           sos_ui32_t start_arg    247                           sos_ui32_t start_arg,
107                           sos_cpu_kstate_funct    248                           sos_cpu_kstate_function_arg1_t *exit_func,
108                           sos_ui32_t exit_arg)    249                           sos_ui32_t exit_arg)
109      __attribute__((noreturn));                   250      __attribute__((noreturn));
110                                                   251 
111 static void core_routine (sos_cpu_kstate_funct    252 static void core_routine (sos_cpu_kstate_function_arg1_t *start_func,
112                           sos_ui32_t start_arg    253                           sos_ui32_t start_arg,
113                           sos_cpu_kstate_funct    254                           sos_cpu_kstate_function_arg1_t *exit_func,
114                           sos_ui32_t exit_arg)    255                           sos_ui32_t exit_arg)
115 {                                                 256 {
116   start_func(start_arg);                          257   start_func(start_arg);
117   exit_func(exit_arg);                            258   exit_func(exit_arg);
118                                                   259 
119   SOS_ASSERT_FATAL(! "The exit function of the    260   SOS_ASSERT_FATAL(! "The exit function of the thread should NOT return !");
120   for(;;);                                        261   for(;;);
121 }                                                 262 }
122                                                   263 
123                                                   264 
124 sos_ret_t sos_cpu_kstate_init(struct sos_cpu_s    265 sos_ret_t sos_cpu_kstate_init(struct sos_cpu_state **ctxt,
125                               sos_cpu_kstate_f    266                               sos_cpu_kstate_function_arg1_t *start_func,
126                               sos_ui32_t  star    267                               sos_ui32_t  start_arg,
127                               sos_vaddr_t stac    268                               sos_vaddr_t stack_bottom,
128                               sos_size_t  stac    269                               sos_size_t  stack_size,
129                               sos_cpu_kstate_f    270                               sos_cpu_kstate_function_arg1_t *exit_func,
130                               sos_ui32_t  exit    271                               sos_ui32_t  exit_arg)
131 {                                                 272 {
132   /* We are initializing a Kernel thread's con    273   /* We are initializing a Kernel thread's context */
133   struct sos_cpu_kstate *kctxt;                   274   struct sos_cpu_kstate *kctxt;
134                                                   275 
135   /* This is a critical internal function, so     276   /* This is a critical internal function, so that it is assumed that
136      the caller knows what he does: we legitim    277      the caller knows what he does: we legitimally assume that values
137      for ctxt, start_func, stack_* and exit_fu    278      for ctxt, start_func, stack_* and exit_func are allways VALID ! */
138                                                   279 
139   /* Setup the stack.                             280   /* Setup the stack.
140    *                                              281    *
141    * On x86, the stack goes downward. Each fra    282    * On x86, the stack goes downward. Each frame is configured this
142    * way (higher addresses first):                283    * way (higher addresses first):
143    *                                              284    *
144    *  - (optional unused space. As of gcc 3.3,    285    *  - (optional unused space. As of gcc 3.3, this space is 24 bytes)
145    *  - arg n                                     286    *  - arg n
146    *  - arg n-1                                   287    *  - arg n-1
147    *  - ...                                       288    *  - ...
148    *  - arg 1                                     289    *  - arg 1
149    *  - return instruction address: The addres    290    *  - return instruction address: The address the function returns to
150    *    once finished                             291    *    once finished
151    *  - local variables                           292    *  - local variables
152    *                                              293    *
153    * The remaining of the code should be read     294    * The remaining of the code should be read from the end upward to
154    * understand how the processor will handle     295    * understand how the processor will handle it.
155    */                                             296    */
156                                                   297 
157   sos_vaddr_t tmp_vaddr = stack_bottom + stack    298   sos_vaddr_t tmp_vaddr = stack_bottom + stack_size;
158   sos_ui32_t *stack = (sos_ui32_t*)tmp_vaddr;     299   sos_ui32_t *stack = (sos_ui32_t*)tmp_vaddr;
159                                                   300 
160   /* If needed, poison the stack */               301   /* If needed, poison the stack */
161 #ifdef SOS_CPU_STATE_DETECT_UNINIT_KERNEL_VARS    302 #ifdef SOS_CPU_STATE_DETECT_UNINIT_KERNEL_VARS
162   memset((void*)stack_bottom, SOS_CPU_STATE_ST    303   memset((void*)stack_bottom, SOS_CPU_STATE_STACK_POISON, stack_size);
163 #elif defined(SOS_CPU_STATE_DETECT_KERNEL_STAC    304 #elif defined(SOS_CPU_STATE_DETECT_KERNEL_STACK_OVERFLOW)
164   sos_cpu_state_prepare_detect_kernel_stack_ov    305   sos_cpu_state_prepare_detect_kernel_stack_overflow(stack_bottom, stack_size);
165 #endif                                            306 #endif
166                                                   307 
167   /* Simulate a call to the core_routine() fun    308   /* Simulate a call to the core_routine() function: prepare its
168      arguments */                                 309      arguments */
169   *(--stack) = exit_arg;                          310   *(--stack) = exit_arg;
170   *(--stack) = (sos_ui32_t)exit_func;             311   *(--stack) = (sos_ui32_t)exit_func;
171   *(--stack) = start_arg;                         312   *(--stack) = start_arg;
172   *(--stack) = (sos_ui32_t)start_func;            313   *(--stack) = (sos_ui32_t)start_func;
173   *(--stack) = 0; /* Return address of core_ro    314   *(--stack) = 0; /* Return address of core_routine => force page fault */
174                                                   315 
175   /*                                              316   /*
176    * Setup the initial context structure, so t    317    * Setup the initial context structure, so that the CPU will execute
177    * the function core_routine() once this new    318    * the function core_routine() once this new context has been
178    * restored on CPU                              319    * restored on CPU
179    */                                             320    */
180                                                   321 
181   /* Compute the base address of the structure    322   /* Compute the base address of the structure, which must be located
182      below the previous elements */               323      below the previous elements */
183   tmp_vaddr  = ((sos_vaddr_t)stack) - sizeof(s    324   tmp_vaddr  = ((sos_vaddr_t)stack) - sizeof(struct sos_cpu_kstate);
184   kctxt = (struct sos_cpu_kstate*)tmp_vaddr;      325   kctxt = (struct sos_cpu_kstate*)tmp_vaddr;
185                                                   326 
186   /* Initialize the CPU context structure */      327   /* Initialize the CPU context structure */
187   memset(kctxt, 0x0, sizeof(struct sos_cpu_kst    328   memset(kctxt, 0x0, sizeof(struct sos_cpu_kstate));
188                                                   329 
189   /* Tell the CPU context structure that the f    330   /* Tell the CPU context structure that the first instruction to
190      execute will be that of the core_routine(    331      execute will be that of the core_routine() function */
191   kctxt->regs.eip = (sos_ui32_t)core_routine;     332   kctxt->regs.eip = (sos_ui32_t)core_routine;
192                                                   333 
193   /* Setup the segment registers */               334   /* Setup the segment registers */
194   kctxt->regs.cs                                  335   kctxt->regs.cs
195     = SOS_BUILD_SEGMENT_REG_VALUE(0, FALSE, SO    336     = SOS_BUILD_SEGMENT_REG_VALUE(0, FALSE, SOS_SEG_KCODE); /* Code */
196   kctxt->regs.ds                                  337   kctxt->regs.ds
197     = SOS_BUILD_SEGMENT_REG_VALUE(0, FALSE, SO    338     = SOS_BUILD_SEGMENT_REG_VALUE(0, FALSE, SOS_SEG_KDATA); /* Data */
198   kctxt->regs.es                                  339   kctxt->regs.es
199     = SOS_BUILD_SEGMENT_REG_VALUE(0, FALSE, SO    340     = SOS_BUILD_SEGMENT_REG_VALUE(0, FALSE, SOS_SEG_KDATA); /* Data */
200   kctxt->regs.cpl0_ss                             341   kctxt->regs.cpl0_ss
201     = SOS_BUILD_SEGMENT_REG_VALUE(0, FALSE, SO    342     = SOS_BUILD_SEGMENT_REG_VALUE(0, FALSE, SOS_SEG_KDATA); /* Stack */
202   /* fs and gs unused for the moment. */          343   /* fs and gs unused for the moment. */
203                                                   344 
204   /* The newly created context is initially in    345   /* The newly created context is initially interruptible */
205   kctxt->regs.eflags = (1 << 9); /* set IF bit    346   kctxt->regs.eflags = (1 << 9); /* set IF bit */
206                                                   347 
207   /* Finally, update the generic kernel/user t    348   /* Finally, update the generic kernel/user thread context */
208   *ctxt = (struct sos_cpu_state*) kctxt;          349   *ctxt = (struct sos_cpu_state*) kctxt;
209                                                   350 
210   return SOS_OK;                                  351   return SOS_OK;
211 }                                                 352 }
212                                                   353 
213                                                   354 
                                                   >> 355 /**
                                                   >> 356  * Helper function to create a new user thread context.  When
                                                   >> 357  * model_uctxt is NON NULL, the new user context is the copy of
                                                   >> 358  * model_uctxt, otherwise the SP/PC registers are initialized to the
                                                   >> 359  * user_initial_SP/PC arguments
                                                   >> 360  */
                                                   >> 361 static sos_ret_t cpu_ustate_init(struct sos_cpu_state **ctxt,
                                                   >> 362                                  const struct sos_cpu_state *model_uctxt,
                                                   >> 363                                  sos_uaddr_t  user_start_PC,
                                                   >> 364                                  sos_ui32_t   user_start_arg1,
                                                   >> 365                                  sos_ui32_t   user_start_arg2,
                                                   >> 366                                  sos_uaddr_t  user_initial_SP,
                                                   >> 367                                  sos_vaddr_t  kernel_stack_bottom,
                                                   >> 368                                  sos_size_t   kernel_stack_size)
                                                   >> 369 {
                                                   >> 370   /* We are initializing a User thread's context */
                                                   >> 371   struct sos_cpu_ustate *uctxt;
                                                   >> 372 
                                                   >> 373   /* This is a critical internal function, so that it is assumed that
                                                   >> 374      the caller knows what he does: we legitimally assume that values
                                                   >> 375      for ctxt, etc. are allways VALID ! */
                                                   >> 376 
                                                   >> 377   /* Compute the address of the CPU state to restore on CPU when
                                                   >> 378      switching to this new user thread */
                                                   >> 379   sos_vaddr_t uctxt_vaddr = kernel_stack_bottom
                                                   >> 380                              + kernel_stack_size
                                                   >> 381                              - sizeof(struct sos_cpu_ustate);
                                                   >> 382   uctxt = (struct sos_cpu_ustate*)uctxt_vaddr;
                                                   >> 383 
                                                   >> 384   if (model_uctxt && !sos_cpu_context_is_in_user_mode(model_uctxt))
                                                   >> 385     return -SOS_EINVAL;
                                                   >> 386 
                                                   >> 387   /* If needed, poison the kernel stack */
                                                   >> 388 #ifdef SOS_CPU_STATE_DETECT_UNINIT_KERNEL_VARS
                                                   >> 389   memset((void*)kernel_stack_bottom,
                                                   >> 390          SOS_CPU_STATE_STACK_POISON,
                                                   >> 391          kernel_stack_size);
                                                   >> 392 #elif defined(SOS_CPU_STATE_DETECT_KERNEL_STACK_OVERFLOW)
                                                   >> 393   sos_cpu_state_prepare_detect_kernel_stack_overflow(kernel_stack_bottom,
                                                   >> 394                                                      kernel_stack_size);
                                                   >> 395 #endif
                                                   >> 396 
                                                   >> 397   /*
                                                   >> 398    * Setup the initial context structure, so that the CPU will restore
                                                   >> 399    * the initial registers' value for the user thread. The
                                                   >> 400    * user thread argument is passed in the EAX register.
                                                   >> 401    */
                                                   >> 402 
                                                   >> 403   /* Initialize the CPU context structure */
                                                   >> 404   if (! model_uctxt)
                                                   >> 405     {
                                                   >> 406       memset(uctxt, 0x0, sizeof(struct sos_cpu_ustate));
                                                   >> 407 
                                                   >> 408       /* Tell the CPU context structure that the first instruction to
                                                   >> 409          execute will be located at user_start_PC (in user space) */
                                                   >> 410       uctxt->regs.eip = (sos_ui32_t)user_start_PC;
                                                   >> 411       
                                                   >> 412       /* Tell the CPU where will be the user stack */
                                                   >> 413       uctxt->cpl3_esp = user_initial_SP;
                                                   >> 414     }
                                                   >> 415   else
                                                   >> 416     memcpy(uctxt, model_uctxt, sizeof(struct sos_cpu_ustate));
                                                   >> 417 
                                                   >> 418   /* The parameter to the start function is not passed by the stack to
                                                   >> 419      avoid a possible page fault */
                                                   >> 420   uctxt->regs.eax = user_start_arg1;
                                                   >> 421 
                                                   >> 422   /* Optional additional argument for non-duplicated threads */
                                                   >> 423   if (! model_uctxt)
                                                   >> 424     uctxt->regs.ebx = user_start_arg2;
                                                   >> 425 
                                                   >> 426   /* Setup the segment registers */
                                                   >> 427   uctxt->regs.cs
                                                   >> 428     = SOS_BUILD_SEGMENT_REG_VALUE(3, FALSE, SOS_SEG_UCODE); /* Code */
                                                   >> 429   uctxt->regs.ds
                                                   >> 430     = SOS_BUILD_SEGMENT_REG_VALUE(3, FALSE, SOS_SEG_UDATA); /* Data */
                                                   >> 431   uctxt->regs.es
                                                   >> 432     = SOS_BUILD_SEGMENT_REG_VALUE(3, FALSE, SOS_SEG_UDATA); /* Data */
                                                   >> 433   uctxt->cpl3_ss
                                                   >> 434     = SOS_BUILD_SEGMENT_REG_VALUE(3, FALSE, SOS_SEG_UDATA); /* User Stack */
                                                   >> 435 
                                                   >> 436   /* We need also to update the segment for the kernel stack
                                                   >> 437      segment. It will be used when this context will be restored on
                                                   >> 438      CPU: initially it will be executing in kernel mode and will
                                                   >> 439      switch immediatly to user mode */
                                                   >> 440   uctxt->regs.cpl0_ss
                                                   >> 441     = SOS_BUILD_SEGMENT_REG_VALUE(0, FALSE, SOS_SEG_KDATA); /* Kernel Stack */
                                                   >> 442 
                                                   >> 443   /* fs and gs unused for the moment. */
                                                   >> 444 
                                                   >> 445   /* The newly created context is initially interruptible */
                                                   >> 446   uctxt->regs.eflags = (1 << 9); /* set IF bit */
                                                   >> 447 
                                                   >> 448   /* Finally, update the generic kernel/user thread context */
                                                   >> 449   *ctxt = (struct sos_cpu_state*) uctxt;
                                                   >> 450 
                                                   >> 451   return SOS_OK;
                                                   >> 452 }
                                                   >> 453 
                                                   >> 454 
                                                   >> 455 sos_ret_t sos_cpu_ustate_init(struct sos_cpu_state **ctxt,
                                                   >> 456                               sos_uaddr_t  user_start_PC,
                                                   >> 457                               sos_ui32_t   user_start_arg1,
                                                   >> 458                               sos_ui32_t   user_start_arg2,
                                                   >> 459                               sos_uaddr_t  user_initial_SP,
                                                   >> 460                               sos_vaddr_t  kernel_stack_bottom,
                                                   >> 461                               sos_size_t   kernel_stack_size)
                                                   >> 462 {
                                                   >> 463   return cpu_ustate_init(ctxt, NULL,
                                                   >> 464                          user_start_PC,
                                                   >> 465                          user_start_arg1, user_start_arg2,
                                                   >> 466                          user_initial_SP,
                                                   >> 467                          kernel_stack_bottom, kernel_stack_size);
                                                   >> 468 }
                                                   >> 469 
                                                   >> 470 
                                                   >> 471 sos_ret_t sos_cpu_ustate_duplicate(struct sos_cpu_state **ctxt,
                                                   >> 472                                    const struct sos_cpu_state *model_uctxt,
                                                   >> 473                                    sos_ui32_t   user_retval,
                                                   >> 474                                    sos_vaddr_t  kernel_stack_bottom,
                                                   >> 475                                    sos_size_t   kernel_stack_size)
                                                   >> 476 {
                                                   >> 477   return cpu_ustate_init(ctxt, model_uctxt,
                                                   >> 478                          /* ignored */0,
                                                   >> 479                          user_retval, /* ignored */0,
                                                   >> 480                          /* ignored */0,
                                                   >> 481                          kernel_stack_bottom, kernel_stack_size);
                                                   >> 482 }
                                                   >> 483 
                                                   >> 484 
                                                   >> 485 sos_ret_t
                                                   >> 486 sos_cpu_context_is_in_user_mode(const struct sos_cpu_state *ctxt)
                                                   >> 487 {
                                                   >> 488   /* An interrupted user thread has its CS register set to that of the
                                                   >> 489      User code segment */
                                                   >> 490   switch (GET_CPU_CS_REGISTER_VALUE(ctxt->cs))
                                                   >> 491     {
                                                   >> 492     case SOS_BUILD_SEGMENT_REG_VALUE(3, FALSE, SOS_SEG_UCODE):
                                                   >> 493       return TRUE;
                                                   >> 494       break;
                                                   >> 495 
                                                   >> 496     case SOS_BUILD_SEGMENT_REG_VALUE(0, FALSE, SOS_SEG_KCODE):
                                                   >> 497       return FALSE;
                                                   >> 498       break;
                                                   >> 499 
                                                   >> 500     default:
                                                   >> 501       SOS_FATAL_ERROR("Invalid saved context Code segment register: 0x%x (k=%x, u=%x) !",
                                                   >> 502                       (unsigned) GET_CPU_CS_REGISTER_VALUE(ctxt->cs),
                                                   >> 503                       SOS_BUILD_SEGMENT_REG_VALUE(0, FALSE, SOS_SEG_KCODE),
                                                   >> 504                       SOS_BUILD_SEGMENT_REG_VALUE(3, FALSE, SOS_SEG_UCODE));
                                                   >> 505       break;
                                                   >> 506     }
                                                   >> 507 
                                                   >> 508   /* Should never get here */
                                                   >> 509   return -SOS_EFATAL;
                                                   >> 510 }
                                                   >> 511 
                                                   >> 512 
214 #if defined(SOS_CPU_STATE_DETECT_KERNEL_STACK_    513 #if defined(SOS_CPU_STATE_DETECT_KERNEL_STACK_OVERFLOW)
215 void                                              514 void
216 sos_cpu_state_prepare_detect_kernel_stack_over    515 sos_cpu_state_prepare_detect_kernel_stack_overflow(const struct sos_cpu_state *ctxt,
217                                                   516                                                    sos_vaddr_t stack_bottom,
218                                                   517                                                    sos_size_t stack_size)
219 {                                                 518 {
220   sos_size_t poison_size = SOS_CPU_STATE_DETEC    519   sos_size_t poison_size = SOS_CPU_STATE_DETECT_KERNEL_STACK_OVERFLOW;
221   if (poison_size > stack_size)                   520   if (poison_size > stack_size)
222     poison_size = stack_size;                     521     poison_size = stack_size;
223                                                   522 
224   memset((void*)stack_bottom, SOS_CPU_STATE_ST    523   memset((void*)stack_bottom, SOS_CPU_STATE_STACK_POISON, poison_size);
225 }                                                 524 }
226                                                   525 
227                                                   526 
228 void                                              527 void
229 sos_cpu_state_detect_kernel_stack_overflow(con    528 sos_cpu_state_detect_kernel_stack_overflow(const struct sos_cpu_state *ctxt,
230                                            sos    529                                            sos_vaddr_t stack_bottom,
231                                            sos    530                                            sos_size_t stack_size)
232 {                                                 531 {
233   unsigned char *c;                               532   unsigned char *c;
234   int i;                                          533   int i;
235                                                   534 
236   /* On SOS, "ctxt" corresponds to the address    535   /* On SOS, "ctxt" corresponds to the address of the esp register of
237      the saved context in Kernel mode (always,    536      the saved context in Kernel mode (always, even for the interrupted
238      context of a user thread). Here we make s    537      context of a user thread). Here we make sure that this stack
239      pointer is within the allowed stack area     538      pointer is within the allowed stack area */
240   SOS_ASSERT_FATAL(((sos_vaddr_t)ctxt) >= stac    539   SOS_ASSERT_FATAL(((sos_vaddr_t)ctxt) >= stack_bottom);
241   SOS_ASSERT_FATAL(((sos_vaddr_t)ctxt) + sizeo    540   SOS_ASSERT_FATAL(((sos_vaddr_t)ctxt) + sizeof(struct sos_cpu_kstate)
242                    <= stack_bottom + stack_siz    541                    <= stack_bottom + stack_size);
243                                                   542 
244   /* Check that the bottom of the stack has no    543   /* Check that the bottom of the stack has not been altered */
245   for (c = (unsigned char*) stack_bottom, i =     544   for (c = (unsigned char*) stack_bottom, i = 0 ;
246        (i < SOS_CPU_STATE_DETECT_KERNEL_STACK_    545        (i < SOS_CPU_STATE_DETECT_KERNEL_STACK_OVERFLOW) && (i < stack_size) ;
247        c++, i++)                                  546        c++, i++)
248     {                                             547     {
249       SOS_ASSERT_FATAL(SOS_CPU_STATE_STACK_POI    548       SOS_ASSERT_FATAL(SOS_CPU_STATE_STACK_POISON == *c);
250     }                                             549     }
251 }                                                 550 }
252 #endif                                            551 #endif
253                                                   552 
254                                                   553 
255 /* ===========================================    554 /* =======================================================================
256  * Public Accessor functions                      555  * Public Accessor functions
257  */                                               556  */
258                                                   557 
259                                                   558 
260 sos_vaddr_t sos_cpu_context_get_PC(const struc    559 sos_vaddr_t sos_cpu_context_get_PC(const struct sos_cpu_state *ctxt)
261 {                                                 560 {
262   SOS_ASSERT_FATAL(NULL != ctxt);                 561   SOS_ASSERT_FATAL(NULL != ctxt);
263                                                   562 
264   /* This is the PC of the interrupted context    563   /* This is the PC of the interrupted context (ie kernel or user
265      context). */                                 564      context). */
266   return ctxt->eip;                               565   return ctxt->eip;
267 }                                                 566 }
268                                                   567 
269                                                   568 
270 sos_vaddr_t sos_cpu_context_get_SP(const struc    569 sos_vaddr_t sos_cpu_context_get_SP(const struct sos_cpu_state *ctxt)
271 {                                                 570 {
272   SOS_ASSERT_FATAL(NULL != ctxt);                 571   SOS_ASSERT_FATAL(NULL != ctxt);
273                                                   572 
                                                   >> 573   /* 'ctxt' corresponds to the SP of the interrupted context, in Kernel
                                                   >> 574      mode. We have to test whether the original interrupted context
                                                   >> 575      was that of a kernel or user thread */
                                                   >> 576   if (TRUE == sos_cpu_context_is_in_user_mode(ctxt))
                                                   >> 577     {
                                                   >> 578       struct sos_cpu_ustate * uctxt = (struct sos_cpu_ustate*)ctxt;
                                                   >> 579       return uctxt->cpl3_esp;
                                                   >> 580     }
                                                   >> 581 
274   /* On SOS, "ctxt" corresponds to the address    582   /* On SOS, "ctxt" corresponds to the address of the esp register of
275      the saved context in Kernel mode (always,    583      the saved context in Kernel mode (always, even for the interrupted
276      context of a user thread). */                584      context of a user thread). */
277   return (sos_vaddr_t)ctxt;                       585   return (sos_vaddr_t)ctxt;
278 }                                                 586 }
279                                                   587 
280                                                   588 
                                                   >> 589 sos_ret_t
                                                   >> 590 sos_cpu_context_set_EX_return_address(struct sos_cpu_state *ctxt,
                                                   >> 591                                       sos_vaddr_t ret_vaddr)
                                                   >> 592 {
                                                   >> 593   ctxt->eip = ret_vaddr;
                                                   >> 594   return SOS_OK;
                                                   >> 595 }
                                                   >> 596 
                                                   >> 597 
281 void sos_cpu_context_dump(const struct sos_cpu    598 void sos_cpu_context_dump(const struct sos_cpu_state *ctxt)
282 {                                                 599 {
283   char buf[128];                                  600   char buf[128];
                                                   >> 601 
284   snprintf(buf, sizeof(buf),                      602   snprintf(buf, sizeof(buf),
285            "CPU: eip=%x esp=%x eflags=%x cs=%x !! 603            "CPU: eip=%x esp0=%x eflags=%x cs=%x ds=%x ss0=%x err=%x",
286            (unsigned)ctxt->eip, (unsigned)ctxt    604            (unsigned)ctxt->eip, (unsigned)ctxt, (unsigned)ctxt->eflags,
287            (unsigned)GET_CPU_CS_REGISTER_VALUE    605            (unsigned)GET_CPU_CS_REGISTER_VALUE(ctxt->cs), (unsigned)ctxt->ds,
288            (unsigned)ctxt->cpl0_ss,               606            (unsigned)ctxt->cpl0_ss,
289            (unsigned)ctxt->error_code);           607            (unsigned)ctxt->error_code);
                                                   >> 608   if (TRUE == sos_cpu_context_is_in_user_mode(ctxt))
                                                   >> 609     {
                                                   >> 610       struct sos_cpu_ustate * uctxt = (struct sos_cpu_ustate*)ctxt;
                                                   >> 611       snprintf(buf, sizeof(buf),
                                                   >> 612                "%s esp3=%x ss3=%x",
                                                   >> 613                buf, (unsigned)uctxt->cpl3_esp, (unsigned)uctxt->cpl3_ss);
                                                   >> 614     }
                                                   >> 615   else
                                                   >> 616     snprintf(buf, sizeof(buf), "%s [KERNEL MODE]", buf);
                                                   >> 617 
290   sos_bochs_putstring(buf); sos_bochs_putstrin    618   sos_bochs_putstring(buf); sos_bochs_putstring("\n");
291   sos_x86_videomem_putstring(23, 0,               619   sos_x86_videomem_putstring(23, 0,
292                           SOS_X86_VIDEO_FG_BLA !! 620                              SOS_X86_VIDEO_FG_BLACK | SOS_X86_VIDEO_BG_LTGRAY,
293                           buf);                !! 621                              buf);
294 }                                                 622 }
295                                                   623 
296                                                   624 
297 /* ===========================================    625 /* =======================================================================
298  * Public Accessor functions TO BE USED ONLY B    626  * Public Accessor functions TO BE USED ONLY BY Exception handlers
299  */                                               627  */
300                                                   628 
301                                                   629 
302 sos_ui32_t sos_cpu_context_get_EX_info(const s    630 sos_ui32_t sos_cpu_context_get_EX_info(const struct sos_cpu_state *ctxt)
303 {                                                 631 {
304   SOS_ASSERT_FATAL(NULL != ctxt);                 632   SOS_ASSERT_FATAL(NULL != ctxt);
305   return ctxt->error_code;                        633   return ctxt->error_code;
306 }                                                 634 }
307                                                   635 
308                                                   636 
309 sos_vaddr_t                                       637 sos_vaddr_t
310 sos_cpu_context_get_EX_faulting_vaddr(const st    638 sos_cpu_context_get_EX_faulting_vaddr(const struct sos_cpu_state *ctxt)
311 {                                                 639 {
312   sos_ui32_t cr2;                                 640   sos_ui32_t cr2;
313                                                   641 
314   /*                                              642   /*
315    * See Intel Vol 3 (section 5.14): the addre    643    * See Intel Vol 3 (section 5.14): the address of the faulting
316    * virtual address of a page fault is stored    644    * virtual address of a page fault is stored in the cr2
317    * register.                                    645    * register.
318    *                                              646    *
319    * Actually, we do not store the cr2 registe    647    * Actually, we do not store the cr2 register in a saved
320    * kernel thread's context. So we retrieve t    648    * kernel thread's context. So we retrieve the cr2's value directly
321    * from the processor. The value we retrieve    649    * from the processor. The value we retrieve in an exception handler
322    * is actually the correct one because an ex    650    * is actually the correct one because an exception is synchronous
323    * with the code causing the fault, and cann    651    * with the code causing the fault, and cannot be interrupted since
324    * the IDT entries in SOS are "interrupt gat    652    * the IDT entries in SOS are "interrupt gates" (ie IRQ are
325    * disabled).                                   653    * disabled).
326    */                                             654    */
327   asm volatile ("movl %%cr2, %0"                  655   asm volatile ("movl %%cr2, %0"
328                 :"=r"(cr2)                        656                 :"=r"(cr2)
329                 : );                              657                 : );
330                                                   658 
331   return cr2;                                     659   return cr2;
332 }                                                 660 }
333                                                   661 
334                                                   662 
335 /* ===========================================    663 /* =======================================================================
                                                   >> 664  * Public Accessor functions TO BE USED ONLY BY the SYSCALL handler
                                                   >> 665  */
                                                   >> 666 
                                                   >> 667 
                                                   >> 668 /*
                                                   >> 669  * By convention, the USER SOS programs always pass 4 arguments to the
                                                   >> 670  * kernel syscall handler: in eax/../edx. For less arguments, the
                                                   >> 671  * unused registers are filled with 0s. For more arguments, the 4th
                                                   >> 672  * syscall parameter gives the address of the array containing the
                                                   >> 673  * remaining arguments. In any case, eax corresponds to the syscall
                                                   >> 674  * IDentifier.
                                                   >> 675  */
                                                   >> 676 
                                                   >> 677 
                                                   >> 678 inline
                                                   >> 679 sos_ret_t sos_syscall_get3args(const struct sos_cpu_state *user_ctxt,
                                                   >> 680                                /* out */unsigned int *arg1,
                                                   >> 681                                /* out */unsigned int *arg2,
                                                   >> 682                                /* out */unsigned int *arg3)
                                                   >> 683 {
                                                   >> 684   *arg1 = user_ctxt->ebx;
                                                   >> 685   *arg2 = user_ctxt->ecx;
                                                   >> 686   *arg3 = user_ctxt->edx; 
                                                   >> 687   return SOS_OK;
                                                   >> 688 }
                                                   >> 689 
                                                   >> 690 
                                                   >> 691 sos_ret_t sos_syscall_get1arg(const struct sos_cpu_state *user_ctxt,
                                                   >> 692                               /* out */unsigned int *arg1)
                                                   >> 693 {
                                                   >> 694   unsigned int unused;
                                                   >> 695   return sos_syscall_get3args(user_ctxt, arg1, & unused, & unused);
                                                   >> 696 }
                                                   >> 697 
                                                   >> 698 
                                                   >> 699 sos_ret_t sos_syscall_get2args(const struct sos_cpu_state *user_ctxt,
                                                   >> 700                                /* out */unsigned int *arg1,
                                                   >> 701                                /* out */unsigned int *arg2)
                                                   >> 702 {
                                                   >> 703   unsigned int unused;
                                                   >> 704   return sos_syscall_get3args(user_ctxt, arg1, arg2, & unused);
                                                   >> 705 }
                                                   >> 706 
                                                   >> 707 
                                                   >> 708 /*
                                                   >> 709  * sos_syscall_get3args() is defined in cpu_context.c because it needs
                                                   >> 710  * to know the structure of a struct spu_state
                                                   >> 711  */
                                                   >> 712 
                                                   >> 713 sos_ret_t sos_syscall_get4args(const struct sos_cpu_state *user_ctxt,
                                                   >> 714                                /* out */unsigned int *arg1,
                                                   >> 715                                /* out */unsigned int *arg2,
                                                   >> 716                                /* out */unsigned int *arg3,
                                                   >> 717                                /* out */unsigned int *arg4)
                                                   >> 718 {
                                                   >> 719   sos_uaddr_t  uaddr_other_args;
                                                   >> 720   unsigned int other_args[2];
                                                   >> 721   sos_ret_t    retval;
                                                   >> 722 
                                                   >> 723   /* Retrieve the 3 arguments. The last one is an array containing the
                                                   >> 724      remaining arguments */
                                                   >> 725   retval = sos_syscall_get3args(user_ctxt, arg1, arg2,
                                                   >> 726                                 (unsigned int *)& uaddr_other_args);
                                                   >> 727   if (SOS_OK != retval)
                                                   >> 728     return retval;
                                                   >> 729   
                                                   >> 730   /* Copy the array containing the remaining arguments from user
                                                   >> 731      space */
                                                   >> 732   retval = sos_memcpy_from_user((sos_vaddr_t)other_args,
                                                   >> 733                                 (sos_uaddr_t)uaddr_other_args,
                                                   >> 734                                 sizeof(other_args));
                                                   >> 735   if (sizeof(other_args) != retval)
                                                   >> 736     return -SOS_EFAULT;
                                                   >> 737 
                                                   >> 738   *arg3 = other_args[0];
                                                   >> 739   *arg4 = other_args[1];
                                                   >> 740   return SOS_OK;
                                                   >> 741 }
                                                   >> 742 
                                                   >> 743 
                                                   >> 744 sos_ret_t sos_syscall_get5args(const struct sos_cpu_state *user_ctxt,
                                                   >> 745                                /* out */unsigned int *arg1,
                                                   >> 746                                /* out */unsigned int *arg2,
                                                   >> 747                                /* out */unsigned int *arg3,
                                                   >> 748                                /* out */unsigned int *arg4,
                                                   >> 749                                /* out */unsigned int *arg5)
                                                   >> 750 {
                                                   >> 751   sos_uaddr_t  uaddr_other_args;
                                                   >> 752   unsigned int other_args[3];
                                                   >> 753   sos_ret_t    retval;
                                                   >> 754 
                                                   >> 755   /* Retrieve the 3 arguments. The last one is an array containing the
                                                   >> 756      remaining arguments */
                                                   >> 757   retval = sos_syscall_get3args(user_ctxt, arg1, arg2,
                                                   >> 758                                 (unsigned int *)& uaddr_other_args);
                                                   >> 759   if (SOS_OK != retval)
                                                   >> 760     return retval;
                                                   >> 761   
                                                   >> 762   /* Copy the array containing the remaining arguments from user
                                                   >> 763      space */
                                                   >> 764   retval = sos_memcpy_from_user((sos_vaddr_t)other_args,
                                                   >> 765                                 (sos_uaddr_t)uaddr_other_args,
                                                   >> 766                                 sizeof(other_args));
                                                   >> 767   if (sizeof(other_args) != retval)
                                                   >> 768     return -SOS_EFAULT;
                                                   >> 769 
                                                   >> 770   *arg3 = other_args[0];
                                                   >> 771   *arg4 = other_args[1];
                                                   >> 772   *arg5 = other_args[2];
                                                   >> 773   return SOS_OK;
                                                   >> 774 }
                                                   >> 775 
                                                   >> 776 
                                                   >> 777 sos_ret_t sos_syscall_get6args(const struct sos_cpu_state *user_ctxt,
                                                   >> 778                                /* out */unsigned int *arg1,
                                                   >> 779                                /* out */unsigned int *arg2,
                                                   >> 780                                /* out */unsigned int *arg3,
                                                   >> 781                                /* out */unsigned int *arg4,
                                                   >> 782                                /* out */unsigned int *arg5,
                                                   >> 783                                /* out */unsigned int *arg6)
                                                   >> 784 {
                                                   >> 785   sos_uaddr_t  uaddr_other_args;
                                                   >> 786   unsigned int other_args[4];
                                                   >> 787   sos_ret_t    retval;
                                                   >> 788 
                                                   >> 789   /* Retrieve the 3 arguments. The last one is an array containing the
                                                   >> 790      remaining arguments */
                                                   >> 791   retval = sos_syscall_get3args(user_ctxt, arg1, arg2,
                                                   >> 792                                 (unsigned int *)& uaddr_other_args);
                                                   >> 793   if (SOS_OK != retval)
                                                   >> 794     return retval;
                                                   >> 795   
                                                   >> 796   /* Copy the array containing the remaining arguments from user
                                                   >> 797      space */
                                                   >> 798   retval = sos_memcpy_from_user((sos_vaddr_t)other_args,
                                                   >> 799                                 (sos_uaddr_t)uaddr_other_args,
                                                   >> 800                                 sizeof(other_args));
                                                   >> 801   if (sizeof(other_args) != retval)
                                                   >> 802     return -SOS_EFAULT;
                                                   >> 803 
                                                   >> 804   *arg3 = other_args[0];
                                                   >> 805   *arg4 = other_args[1];
                                                   >> 806   *arg5 = other_args[2];
                                                   >> 807   *arg6 = other_args[3];
                                                   >> 808   return SOS_OK;
                                                   >> 809 }
                                                   >> 810 
                                                   >> 811 
                                                   >> 812 sos_ret_t sos_syscall_get7args(const struct sos_cpu_state *user_ctxt,
                                                   >> 813                                /* out */unsigned int *arg1,
                                                   >> 814                                /* out */unsigned int *arg2,
                                                   >> 815                                /* out */unsigned int *arg3,
                                                   >> 816                                /* out */unsigned int *arg4,
                                                   >> 817                                /* out */unsigned int *arg5,
                                                   >> 818                                /* out */unsigned int *arg6,
                                                   >> 819                                /* out */unsigned int *arg7)
                                                   >> 820 {
                                                   >> 821   sos_uaddr_t  uaddr_other_args;
                                                   >> 822   unsigned int other_args[5];
                                                   >> 823   sos_ret_t    retval;
                                                   >> 824 
                                                   >> 825   /* Retrieve the 3 arguments. The last one is an array containing the
                                                   >> 826      remaining arguments */
                                                   >> 827   retval = sos_syscall_get3args(user_ctxt, arg1, arg2,
                                                   >> 828                                 (unsigned int *)& uaddr_other_args);
                                                   >> 829   if (SOS_OK != retval)
                                                   >> 830     return retval;
                                                   >> 831   
                                                   >> 832   /* Copy the array containing the remaining arguments from user
                                                   >> 833      space */
                                                   >> 834   retval = sos_memcpy_from_user((sos_vaddr_t)other_args,
                                                   >> 835                                 (sos_uaddr_t)uaddr_other_args,
                                                   >> 836                                 sizeof(other_args));
                                                   >> 837   if (sizeof(other_args) != retval)
                                                   >> 838     return -SOS_EFAULT;
                                                   >> 839 
                                                   >> 840   *arg3 = other_args[0];
                                                   >> 841   *arg4 = other_args[1];
                                                   >> 842   *arg5 = other_args[2];
                                                   >> 843   *arg6 = other_args[3];
                                                   >> 844   *arg7 = other_args[4];
                                                   >> 845   return SOS_OK;
                                                   >> 846 }
                                                   >> 847 
                                                   >> 848 
                                                   >> 849 sos_ret_t sos_syscall_get8args(const struct sos_cpu_state *user_ctxt,
                                                   >> 850                                /* out */unsigned int *arg1,
                                                   >> 851                                /* out */unsigned int *arg2,
                                                   >> 852                                /* out */unsigned int *arg3,
                                                   >> 853                                /* out */unsigned int *arg4,
                                                   >> 854                                /* out */unsigned int *arg5,
                                                   >> 855                                /* out */unsigned int *arg6,
                                                   >> 856                                /* out */unsigned int *arg7,
                                                   >> 857                                /* out */unsigned int *arg8)
                                                   >> 858 {
                                                   >> 859   sos_uaddr_t  uaddr_other_args;
                                                   >> 860   unsigned int other_args[6];
                                                   >> 861   sos_ret_t    retval;
                                                   >> 862 
                                                   >> 863   /* Retrieve the 3 arguments. The last one is an array containing the
                                                   >> 864      remaining arguments */
                                                   >> 865   retval = sos_syscall_get3args(user_ctxt, arg1, arg2,
                                                   >> 866                                 (unsigned int *)& uaddr_other_args);
                                                   >> 867   if (SOS_OK != retval)
                                                   >> 868     return retval;
                                                   >> 869   
                                                   >> 870   /* Copy the array containing the remaining arguments from user
                                                   >> 871      space */
                                                   >> 872   retval = sos_memcpy_from_user((sos_vaddr_t)other_args,
                                                   >> 873                                 (sos_uaddr_t)uaddr_other_args,
                                                   >> 874                                 sizeof(other_args));
                                                   >> 875   if (sizeof(other_args) != retval)
                                                   >> 876     return -SOS_EFAULT;
                                                   >> 877 
                                                   >> 878   *arg3 = other_args[0];
                                                   >> 879   *arg4 = other_args[1];
                                                   >> 880   *arg5 = other_args[2];
                                                   >> 881   *arg6 = other_args[3];
                                                   >> 882   *arg7 = other_args[4];
                                                   >> 883   *arg8 = other_args[5];
                                                   >> 884   return SOS_OK;
                                                   >> 885 }
                                                   >> 886 
                                                   >> 887 
                                                   >> 888 /* =======================================================================
336  * Backtrace facility. To be used for DEBUGgin    889  * Backtrace facility. To be used for DEBUGging purpose ONLY.
337  */                                               890  */
338                                                   891 
339                                                   892 
340 sos_ui32_t sos_backtrace(const struct sos_cpu_    893 sos_ui32_t sos_backtrace(const struct sos_cpu_state *cpu_state,
341                          sos_ui32_t max_depth,    894                          sos_ui32_t max_depth,
342                          sos_vaddr_t stack_bot    895                          sos_vaddr_t stack_bottom,
343                          sos_size_t stack_size    896                          sos_size_t stack_size,
344                          sos_backtrace_callbac    897                          sos_backtrace_callback_t * backtracer,
345                          void *custom_arg)        898                          void *custom_arg)
346 {                                                 899 {
347   int depth;                                      900   int depth;
348   sos_vaddr_t callee_PC, caller_frame;            901   sos_vaddr_t callee_PC, caller_frame;
349                                                   902 
                                                   >> 903   /* Cannot backtrace an interrupted user thread ! */
                                                   >> 904   if ((NULL != cpu_state)
                                                   >> 905       &&
                                                   >> 906       (TRUE == sos_cpu_context_is_in_user_mode(cpu_state)))
                                                   >> 907     {
                                                   >> 908       return 0;
                                                   >> 909     }
                                                   >> 910   
350   /*                                              911   /*
351    * Layout of a frame on the x86 (compiler=gc    912    * Layout of a frame on the x86 (compiler=gcc):
352    *                                              913    *
353    * funcA calls funcB calls funcC                914    * funcA calls funcB calls funcC
354    *                                              915    *
355    *         ....                                 916    *         ....
356    *         funcB Argument 2                     917    *         funcB Argument 2
357    *         funcB Argument 1                     918    *         funcB Argument 1
358    *         funcA Return eip                     919    *         funcA Return eip
359    * frameB: funcA ebp (ie previous stack fram    920    * frameB: funcA ebp (ie previous stack frame)
360    *         ....                                 921    *         ....
361    *         (funcB local variables)              922    *         (funcB local variables)
362    *         ....                                 923    *         ....
363    *         funcC Argument 2                     924    *         funcC Argument 2
364    *         funcC Argument 1                     925    *         funcC Argument 1
365    *         funcB Return eip                     926    *         funcB Return eip
366    * frameC: funcB ebp (ie previous stack fram    927    * frameC: funcB ebp (ie previous stack frame == A0) <---- a frame address
367    *         ....                                 928    *         ....
368    *         (funcC local variables)              929    *         (funcC local variables)
369    *         ....                                 930    *         ....
370    *                                              931    *
371    * The presence of "ebp" on the stack depend    932    * The presence of "ebp" on the stack depends on 2 things:
372    *   + the compiler is gcc                      933    *   + the compiler is gcc
373    *   + the source is compiled WITHOUT the -f    934    *   + the source is compiled WITHOUT the -fomit-frame-pointer option
374    * In the absence of "ebp", chances are high    935    * In the absence of "ebp", chances are high that the value pushed
375    * at that address is outside the stack boun    936    * at that address is outside the stack boundaries, meaning that the
376    * function will return -SOS_ENOSUP.            937    * function will return -SOS_ENOSUP.
377    */                                             938    */
378                                                   939 
379   if (cpu_state)                                  940   if (cpu_state)
380     {                                             941     {
381       callee_PC    = cpu_state->eip;              942       callee_PC    = cpu_state->eip;
382       caller_frame = cpu_state->ebp;              943       caller_frame = cpu_state->ebp;
383     }                                             944     }
384   else                                            945   else
385     {                                             946     {
386       /* Skip the sos_backtrace() frame */        947       /* Skip the sos_backtrace() frame */
387       callee_PC    = (sos_vaddr_t)__builtin_re    948       callee_PC    = (sos_vaddr_t)__builtin_return_address(0);
388       caller_frame = (sos_vaddr_t)__builtin_fr    949       caller_frame = (sos_vaddr_t)__builtin_frame_address(1);
389     }                                             950     }
390                                                   951 
391   for(depth=0 ; depth < max_depth ; depth ++)     952   for(depth=0 ; depth < max_depth ; depth ++)
392     {                                             953     {
393       /* Call the callback */                     954       /* Call the callback */
394       backtracer(callee_PC, caller_frame + 8,     955       backtracer(callee_PC, caller_frame + 8, depth, custom_arg);
395                                                   956 
396       /* If the frame address is funky, don't     957       /* If the frame address is funky, don't go further */
397       if ( (caller_frame < stack_bottom)          958       if ( (caller_frame < stack_bottom)
398            || (caller_frame + 4 >= stack_botto    959            || (caller_frame + 4 >= stack_bottom + stack_size) )
399         return depth;                             960         return depth;
400                                                   961 
401       /* Go to caller frame */                    962       /* Go to caller frame */
402       callee_PC    = *((sos_vaddr_t*) (caller_    963       callee_PC    = *((sos_vaddr_t*) (caller_frame + 4));
403       caller_frame = *((sos_vaddr_t*) caller_f    964       caller_frame = *((sos_vaddr_t*) caller_frame);
404     }                                             965     }
405                                                   966   
406   return depth;                                   967   return depth;
                                                   >> 968 }
                                                   >> 969 
                                                   >> 970 
                                                   >> 971 /* *************************************************************
                                                   >> 972  * Function to manage the TSS.  This function is not really "public":
                                                   >> 973  * it is reserved to the assembler routines defined in
                                                   >> 974  * cpu_context_switch.S
                                                   >> 975  *
                                                   >> 976  * Update the kernel stack address so that the IRQ, syscalls and
                                                   >> 977  * exception return in a correct stack location when coming back into
                                                   >> 978  * kernel mode.
                                                   >> 979  */
                                                   >> 980 void
                                                   >> 981 sos_cpu_context_update_kernel_tss(struct sos_cpu_state *next_ctxt)
                                                   >> 982 {
                                                   >> 983   /* next_ctxt corresponds to an interrupted user thread ? */
                                                   >> 984   if (sos_cpu_context_is_in_user_mode(next_ctxt))
                                                   >> 985     {
                                                   >> 986       /*
                                                   >> 987        * Yes: "next_ctxt" is an interrupted user thread => we are
                                                   >> 988        * going to switch to user mode ! Setup the stack address so
                                                   >> 989        * that the user thread "next_ctxt" can come back to the correct
                                                   >> 990        * stack location when returning in kernel mode.
                                                   >> 991        *
                                                   >> 992        * This stack location corresponds to the SP of the next user
                                                   >> 993        * thread once its context has been transferred on the CPU, ie
                                                   >> 994        * once the CPU has executed all the pop/iret instruction of the
                                                   >> 995        * context switch with privilege change.
                                                   >> 996        */
                                                   >> 997       kernel_tss.esp0 = ((sos_vaddr_t)next_ctxt)
                                                   >> 998                         + sizeof(struct sos_cpu_ustate);
                                                   >> 999       /* Note: no need to protect this agains IRQ because IRQs are not
                                                   >> 1000          allowed to update it by themselves, and they are not allowed
                                                   >> 1001          to block */
                                                   >> 1002     }
                                                   >> 1003   else
                                                   >> 1004     {
                                                   >> 1005       /* No: No need to update kernel TSS when we stay in kernel
                                                   >> 1006          mode */
                                                   >> 1007     }
407 }                                                 1008 }
                                                      

source navigation ] diff markup ] identifier search ] general search ]