用戶空間與內核空間,進程上下文與中斷上下文[總結]

一、前言html

  最近在學習linux內核方面的知識,常常會看到用戶空間與內核空間及進程上下文與中斷上下文。看着很熟悉,半天又說不出究竟是怎麼回事,有什麼區別。看書過程常常被感受欺騙,似懂非懂的感受,非常不爽,今天好好結合書和網上的資料總結一下,加深理解。linux

二、用戶空間與內核空間  安全

  咱們知道如今操做系統都是採用虛擬存儲器,那麼對32位操做系統而言,它的尋址空間(虛擬存儲空間)爲4G(2的32次方)。操心繫統的核心是內核,獨立於普通的應用程序,能夠訪問受保護的內存空間,也有訪問底層硬件設備的全部權限。爲了保證用戶進程不能直接操做內核,保證內核的安全,操心繫統將虛擬空間劃分爲兩部分,一部分爲內核空間,一部分爲用戶空間。針對linux操做系統而言,將最高的1G字節(從虛擬地址0xC0000000到0xFFFFFFFF),供內核使用,稱爲內核空間,而將較低的3G字節(從虛擬地址0x00000000到0xBFFFFFFF),供各個進程使用,稱爲用戶空間。每一個進程能夠經過系統調用進入內核,所以,Linux內核由系統內的全部進程共享。因而,從具體進程的角度來看,每一個進程能夠擁有4G字節的虛擬空間。空間分配以下圖所示:數據結構

  有了用戶空間和內核空間,整個linux內部結構能夠分爲三部分,從最底層到最上層依次是:硬件-->內核空間-->用戶空間。以下圖所示:less

  須要注意的細節問題:async

(1) 內核空間中存放的是內核代碼和數據,而進程的用戶空間中存放的是用戶程序的代碼和數據。不論是內核空間仍是用戶空間,它們都處於虛擬空間中。 函數

(2) Linux使用兩級保護機制:0級供內核使用,3級供用戶程序使用。oop

  內核態與用戶態:學習

(1)當一個任務(進程)執行系統調用而陷入內核代碼中執行時,稱進程處於內核運行態(內核態)。此時處理器處於特權級最高的(0級)內核代碼中執行。當進程處於內核態時,執行的內核代碼會使用當前進程的內核棧。每一個進程都有本身的內核棧。ui

(2)當進程在執行用戶本身的代碼時,則稱其處於用戶運行態(用戶態)此時處理器在特權級最低的(3級)用戶代碼中運行。當正在執行用戶程序而忽然被中斷程序中斷時,此時用戶程序也能夠象徵性地稱爲處於進程的內核態。由於中斷處理程序將使用當前進程的內核棧。

參考資料:

http://blog.csdn.net/f22jay/article/details/7925531

http://blog.csdn.net/zhangskd/article/details/6956638

http://blog.chinaunix.net/uid-26838492-id-3162146.html

三、進程上下文與中斷上下文

  我在看《linux內核設計與實現》這本書的第三章進程管理時候,看到進程上下文。書中說當一個程序執行了系統調用或者觸發某個異常(軟中斷),此時就會陷入內核空間,內核此時表明進程執行,並處於進程上下文中。看後仍是沒有弄清楚,什麼是進程上下文,如何上google上面狂搜一把,總結以下:

  程序在執行過程當中一般有用戶態和內核態兩種狀態,CPU對處於內核態根據上下文環境進一步細分,所以有了下面三種狀態:

(1)內核態,運行於進程上下文,內核表明進程運行於內核空間。
(2)內核態,運行於中斷上下文,內核表明硬件運行於內核空間。
(3)用戶態,運行於用戶空間。

  上下文context: 上下文簡單說來就是一個環境。

  用戶空間的應用程序,經過系統調用,進入內核空間。這個時候用戶空間的進程要傳遞 不少變量、參數的值給內核,內核態運行的時候也要保存用戶進程的一些寄存 器值、變量等。所謂的「進程上下文」,能夠看做是用戶進程傳遞給內核的這些參數以及內核要保存的那一整套的變量和寄存器值和當時的環境等。

  相對於進程而言,就是進程執行時的環境。具體來講就是各個變量和數據,包括全部的寄存器變量、進程打開的文件、內存信息等。一個進程的上下文能夠分爲三個部分:用戶級上下文、寄存器上下文以及系統級上下文。

(1)用戶級上下文: 正文、數據、用戶堆棧以及共享存儲區;
(2)寄存器上下文: 通用寄存器、程序寄存器(IP)、處理器狀態寄存器(EFLAGS)、棧指針(ESP);
(3)系統級上下文: 進程控制塊task_struct、內存管理信息(mm_struct、vm_area_struct、pgd、pte)、內核棧。

    當發生進程調度時,進行進程切換就是上下文切換(context switch).操做系統必須對上面提到的所有信息進行切換,新調度的進程才能運行。而系統調用進行的模式切換(mode switch)。模式切換與進程切換比較起來,容易不少,並且節省時間,由於模式切換最主要的任務只是切換進程寄存器上下文的切換。

  硬件經過觸發信號,致使內核調用中斷處理程序,進入內核空間。這個過程當中,硬件的 一些變量和參數也要傳遞給內核,內核經過這些參數進行中斷處理。所謂的「 中斷上下文」,其實也能夠看做就是硬件傳遞過來的這些參數和內核須要保存的一些其餘環境(主要是當前被打斷執行的進程環境)。中斷時,內核不表明任何進程運行,它通常只訪問系統空間,而不會訪問進程空間,內核在中斷上下文中執行時通常不會阻塞。

摘錄Linux註釋的內容以下:

Process Context
-------------------------------------------
    One of the most important parts of a process is the executing program code. This code is read in from an executable file and executed within the program's address space. Normal program execution occurs in user-space. When a program executes a system call or triggers an exception, it enters kernel-space. At this point, the kernel is said to be "executing on behalf of the process" and is in process context. When in process context, the current macro is valid[7]. Upon exiting the kernel, the process resumes execution in user-space, unless a higher-priority process has become runnable in the interim(過渡期), in which case the scheduler is invoked to select the higher priority process.

    Other than process context there is interrupt context, In interrupt context, the system is not running on behalf of a process, but is executing an interrupt handler. There is no process tied to interrupt handlers and consequently no process context. 

    System calls and exception handlers are well-defined interfaces into the kernel. A process can begin executing in kernel-space only through one of these interfaces -- all access to the kernel is through these interfaces.

-------------------------------------------

Interrupt Context
-------------------------------------------
    When executing an interrupt handler or bottom half, the kernel is in interrupt context. Recall that process context is the mode of operation the kernel is in while it is executing on behalf of a process -- for example, executing a system call or running a kernel thread. In process context, the current macro points to the associated task. Furthermore, because a process is coupled to the kernel in process context(由於進程是以進程上文的形式鏈接到內核中的), process context can sleep or otherwise invoke the scheduler.

    Interrupt context, on the other hand, is not associated with a process. The current macro is not relevant (although it points to the interrupted process). Without a backing process(因爲沒有進程的背景),interrupt context cannot sleep -- how would it ever reschedule?(不然怎麼再對它從新調度?) Therefore, you cannot call certain functions from interrupt context. If a function sleeps, you cannot use it from your interrupt handler -- this limits the functions that one can call from an interrupt handler.(這是對什麼樣的函數能夠在中斷處理程序中使用的限制)

    Interrupt context is time critical because the interrupt handler interrupts other code. Code should be quick and simple. Busy looping is discouraged. This is a very important point; always keep in mind that your interrupt handler has interrupted other code (possibly even another interrupt handler on a different line!). Because of this asynchronous nature, it is imperative(必須) that all interrupt handlers be as quick and as simple as possible. As much as possible, work should be pushed out from the interrupt handler and performed in a bottom half, which runs at a more convenient time.

    The setup of an interrupt handler's stacks is a configuration option. Historically, interrupt handlers did not receive(擁有) their own stacks. Instead, they would share the stack of the process that they interrupted[1]. The kernel stack is two pages in size; typically, that is 8KB on 32-bit architectures and 16KB on 64-bit architectures. Because in this setup interrupt handlers share the stack, they must be exceptionally frugal(必須很是節省) with what data they allocate there. Of course, the kernel stack is limited to begin with, so all kernel code should be cautious.

   A process is always running. When nothing else is schedulable, the idle task runs. 

-------------------------------------------

LINUX徹底註釋中的一段話:

  當一個進程在執行時,CPU的全部寄存器中的值、進程的狀態以及堆棧中的內容被稱爲該進程的上下文。當內核須要切換到另外一個進程時,它須要保存當前進程的全部狀態,即保存當前進程的上下文,以便在再次執行該進程時,可以必獲得切換時的狀態執行下去。在LINUX中,當前進程上下文均保存在進程的任務數據結構中。在發生中斷時,內核就在被中斷進程的上下文中,在內核態下執行中斷服務例程。但同時會保留全部須要用到的資源,以便中繼服務結束時能恢復被中斷進程的執行

參考資料

http://www.cnblogs.com/hustcat/articles/1505618.html

http://mprc.pku.edu.cn/~zhengyansong/blog/?p=199

http://blog.chinaunix.net/uid-26980210-id-3235544.html

相關文章
相關標籤/搜索