2009-05-31 02:28:45 +02:00
|
|
|
// Segments in proc->gdt.
|
|
|
|
#define NSEGS 7
|
2015-03-16 19:02:07 +01:00
|
|
|
#define NO_OF_SYSCALLS 22
|
2006-06-12 17:22:12 +02:00
|
|
|
|
2010-09-02 10:15:17 +02:00
|
|
|
// Per-CPU state
|
|
|
|
struct cpu {
|
|
|
|
uchar id; // Local APIC ID; index into cpus[] below
|
2010-09-13 21:34:44 +02:00
|
|
|
struct context *scheduler; // swtch() here to enter scheduler
|
2010-09-02 10:15:17 +02:00
|
|
|
struct taskstate ts; // Used by x86 to find stack for interrupt
|
|
|
|
struct segdesc gdt[NSEGS]; // x86 global descriptor table
|
2012-08-28 18:57:05 +02:00
|
|
|
volatile uint started; // Has the CPU started?
|
2010-09-02 10:15:17 +02:00
|
|
|
int ncli; // Depth of pushcli nesting.
|
|
|
|
int intena; // Were interrupts enabled before pushcli?
|
|
|
|
|
|
|
|
// Cpu-local storage variables; see below
|
|
|
|
struct cpu *cpu;
|
2010-09-13 21:34:44 +02:00
|
|
|
struct proc *proc; // The currently-running process.
|
2010-09-02 10:15:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct cpu cpus[NCPU];
|
|
|
|
extern int ncpu;
|
|
|
|
|
|
|
|
// Per-CPU variables, holding pointers to the
|
|
|
|
// current cpu and to the current process.
|
|
|
|
// The asm suffix tells gcc to use "%gs:0" to refer to cpu
|
2010-09-13 21:34:44 +02:00
|
|
|
// and "%gs:4" to refer to proc. seginit sets up the
|
2010-09-02 10:15:17 +02:00
|
|
|
// %gs segment register so that %gs refers to the memory
|
|
|
|
// holding those two variables in the local cpu's struct cpu.
|
|
|
|
// This is similar to how thread-local variables are implemented
|
|
|
|
// in thread libraries such as Linux pthreads.
|
2010-09-13 21:34:44 +02:00
|
|
|
extern struct cpu *cpu asm("%gs:0"); // &cpus[cpunum()]
|
|
|
|
extern struct proc *proc asm("%gs:4"); // cpus[cpunum()].proc
|
2010-09-02 10:15:17 +02:00
|
|
|
|
|
|
|
//PAGEBREAK: 17
|
2006-09-07 16:12:30 +02:00
|
|
|
// Saved registers for kernel context switches.
|
2008-10-15 07:14:10 +02:00
|
|
|
// Don't need to save all the segment registers (%cs, etc),
|
2006-09-07 16:12:30 +02:00
|
|
|
// because they are constant across kernel contexts.
|
2009-05-31 02:28:45 +02:00
|
|
|
// Don't need to save %eax, %ecx, %edx, because the
|
|
|
|
// x86 convention is that the caller has saved them.
|
|
|
|
// Contexts are stored at the bottom of the stack they
|
|
|
|
// describe; the stack pointer is the address of the context.
|
2009-10-07 21:31:55 +02:00
|
|
|
// The layout of the context matches the layout of the stack in swtch.S
|
2010-08-06 17:12:18 +02:00
|
|
|
// at the "Switch stacks" comment. Switch doesn't save eip explicitly,
|
2009-10-07 23:42:14 +02:00
|
|
|
// but it is on the stack and allocproc() manipulates it.
|
2007-08-28 14:48:33 +02:00
|
|
|
struct context {
|
2008-10-15 07:14:10 +02:00
|
|
|
uint edi;
|
|
|
|
uint esi;
|
|
|
|
uint ebx;
|
|
|
|
uint ebp;
|
|
|
|
uint eip;
|
Changes to allow use of native x86 ELF compilers, which on my
Linux 2.4 box using gcc 3.4.6 don't seem to follow the same
conventions as the i386-jos-elf-gcc compilers.
Can run make 'TOOLPREFIX=' or edit the Makefile.
curproc[cpu()] can now be NULL, indicating that no proc is running.
This seemed safer to me than having curproc[0] and curproc[1]
both pointing at proc[0] potentially.
The old implementation of swtch depended on the stack frame layout
used inside swtch being okay to return from on the other stack
(exactly the V6 you are not expected to understand this).
It also could be called in two contexts: at boot time, to schedule
the very first process, and later, on behalf of a process, to sleep
or schedule some other process.
I split this into two functions: scheduler and swtch.
The scheduler is now a separate never-returning function, invoked
by each cpu once set up. The scheduler looks like:
scheduler() {
setjmp(cpu.context);
pick proc to schedule
blah blah blah
longjmp(proc.context)
}
The new swtch is intended to be called only when curproc[cpu()] is not NULL,
that is, only on behalf of a user proc. It does:
swtch() {
if(setjmp(proc.context) == 0)
longjmp(cpu.context)
}
to save the current proc context and then jump over to the scheduler,
running on the cpu stack.
Similarly the system call stubs are now in assembly in usys.S to avoid
needing to know the details of stack frame layout used by the compiler.
Also various changes in the debugging prints.
2006-07-11 03:07:40 +02:00
|
|
|
};
|
|
|
|
|
2009-05-31 07:12:21 +02:00
|
|
|
enum procstate { UNUSED, EMBRYO, SLEEPING, RUNNABLE, RUNNING, ZOMBIE };
|
2006-07-12 03:48:35 +02:00
|
|
|
|
2006-09-07 16:12:30 +02:00
|
|
|
// Per-process state
|
|
|
|
struct proc {
|
2008-10-15 07:15:32 +02:00
|
|
|
uint sz; // Size of process memory (bytes)
|
2010-09-13 21:34:44 +02:00
|
|
|
pde_t* pgdir; // Page table
|
2008-10-15 07:15:32 +02:00
|
|
|
char *kstack; // Bottom of kernel stack for this process
|
2009-08-31 08:02:08 +02:00
|
|
|
enum procstate state; // Process state
|
2009-05-31 02:39:17 +02:00
|
|
|
volatile int pid; // Process ID
|
2008-10-15 07:15:32 +02:00
|
|
|
struct proc *parent; // Parent process
|
2009-05-31 02:28:45 +02:00
|
|
|
struct trapframe *tf; // Trap frame for current syscall
|
2010-09-13 21:34:44 +02:00
|
|
|
struct context *context; // swtch() here to run process
|
2008-10-15 07:15:32 +02:00
|
|
|
void *chan; // If non-zero, sleeping on chan
|
|
|
|
int killed; // If non-zero, have been killed
|
2006-09-07 16:12:30 +02:00
|
|
|
struct file *ofile[NOFILE]; // Open files
|
2008-10-15 07:15:32 +02:00
|
|
|
struct inode *cwd; // Current directory
|
|
|
|
char name[16]; // Process name (debugging)
|
2015-03-16 19:02:07 +01:00
|
|
|
uint syscall_count[NO_OF_SYSCALLS]; // Number of particular syscalls
|
2006-06-12 17:22:12 +02:00
|
|
|
};
|
|
|
|
|
2007-08-24 16:56:17 +02:00
|
|
|
// Process memory is laid out contiguously, low addresses first:
|
2006-09-07 16:12:30 +02:00
|
|
|
// text
|
|
|
|
// original data and bss
|
|
|
|
// fixed-size stack
|
|
|
|
// expandable heap
|