So, I know that Linux uses four default segments for an x86 processor (kernel code, kernel data, user code, user data), but they all have the same base and limit (0x00000000 and 0xfffff), meaning each segment maps to the same set of linear addresses.

Given this, why even have user/kernel segments? I understand why there should be separate segments for code and data (just due to how the x86 processor deals with the cs and ds registers), but why not have a single code segment and a single data segment? Memory protection is done through paging, and the user and kernel segments map to the same linear addresses anyway.

Thanks!

anjruu

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

The x86 architecture associates a type and a privilege level with each segment descriptor. The type of a descriptor allows segments to be made read only, read/write, executable, etc., but the main reason for different segments having the same base and limit is to allow a different descriptor privilege level (DPL) to be used.

The DPL is two bits, allowing the values 0 through 3 to be encoded. When the privilege level is 0, then it is said to be ring 0, which is the most privileged. The segment descriptors for the Linux kernel are ring 0 whereas the segment descriptors for user space are ring 3 (least privileged). This is true for most segmented operating systems; the core of the operating system is ring 0 and the rest is ring 3.

The Linux kernel sets up, as you mentioned, four segments:

  • __KERNEL_CS (Kernel code segment, base=0, limit=4GB, type=10, DPL=0)
  • __KERNEL_DS (Kernel data segment, base=0, limit=4GB, type=2, DPL=0)
  • __USER_CS (User code segment, base=0, limit=4GB, type=10, DPL=3)
  • __USER_DS (User data segment, base=0, limit=4GB, type=2, DPL=3)

The base and limit of all four are the same, but the kernel segments are DPL 0, the user segments are DPL 3, the code segments are executable and readable (not writable), and the data segments are readable and writable (not executable).

See also:

link|improve this answer
Ok, so the DPL sets the minimum security level for each segment, but it seems like I can access any linear address as the user anyway, so why have the extra segment for the kernel? If, as a user, I want to access memory address x, I just use the user data segment, with an offset of x. The kernel can use the kernel data segment with an offset of x, but this maps to the same linear address, thus the same address in physical memory, so how does this provide any protection? – anjruu Jan 1 '11 at 22:19
1  
@anjruu: Some assembly instructions require a certain privilege level or else a general protection (GP) fault is raised. For example, the IN instruction to read a byte from a port requires the current PL (CPL) to be less than or equal to the input/output PL (IOPL; bits 12 and 13 of the FLAGS register), which is 0 for Linux. The CPL is the DPL of the segment descriptor corresponding to the CS (code segment) register. – Daniel Trebbien Jan 1 '11 at 22:59
@Daniel: Gotcha, that makes sense. Thanks! – anjruu Jan 2 '11 at 0:36
@Daniel: Wait, no I don't, sorry to be so dense. I imagine the CPU could be running in Kernel mode, with a privilege level of 0, and be able to execute any instruction, and still have a segment in the CS, SS, or DS registers with a privilege level of 3. The CPU could access any address in the segment, and then once the CPU is done with the syscall, the CPU could switch to level 3, still be able to access anything in the segment, and be unable to execute protected instructions. The paging system could provide memory protection. Sorry, I'm still not seeing it... – anjruu Jan 2 '11 at 1:30
@anjruu: "sorry to be so dense" It's okay. I don't mind; in fact, it helps me to remember this stuff. One thing to be clear about is that the CPU does not run in "kernel mode". In order to take advantage of segmentation, the CPU needs to be in protected mode, but the CPL is a property of each task. Each task is fully described by its Task State Descriptor, which, among other things, includes the values of all registers including the segment registers... – Daniel Trebbien Jan 2 '11 at 2:17
show 2 more comments
feedback

The x86 memory management architecture uses both segmentation and paging. Very roughly speaking, a segment is a partition of a process's address space that has its own protection policy. So, in the x86 architecture, it is possible to split the range of memory addresses that a process sees into multiple contiguous segments, and assign different protection modes to each. Paging is a technique for mapping small (usually 4KB) regions of a process's address space to chunks of real, physical memory. Paging thus controls how regions inside a segment are mapped onto physical RAM.

All processes have two segments:

  1. one segment (addresses 0x00000000 through 0xBFFFFFFF) for user-level, process-specific data such as the program's code, static data, heap, and stack. Every process has its own, independent user segment.

  2. one segment (addresses 0xC0000000 through 0xFFFFFFFF), which contains kernel-specific data such as the kernel instructions, data, some stacks on which kernel code can execute, and more interestingly, a region in this segment is directly mapped to physical memory, so that the kernel can directly access physical memory locations without having to worry about address translation. The same kernel segment is mapped into every process, but processes can access it only when executing in protected kernel mode.

So, in user-mode, the process may only access addresses less than 0xC0000000; any access to an address higher than this results in a fault. However, when a user-mode process begins executing in the kernel (for instance, after having made a system call), the protection bit in the CPU is changed to supervisor mode (and some segmentation registers are changed), meaning that the process is thereby able to access addresses above 0xC0000000.

Refer ed from: HERE

link|improve this answer
feedback

Kernel memory should not be readable from programs running in user space.

Program data is often not executable (DEP, a processor feature, which helps guard against executing an overflowed buffer and other malicious attacks).

It's all about access control - different segments have different rights. That's why accessing the wrong segment will give you a "segmentation fault".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.