Function report

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:arch\x86\lib\insn-eval.c Create Date:2022-07-28 07:25:33
Last Modify:2020-03-12 14:18:49 Copyright©Brick
home page Tree
Annotation kernel can get tool activityDownload SCCTChinese

Name:get_desc() - Obtain contents of a segment descriptor*@out: Segment descriptor contents on success*@sel: Segment selector* Given a segment selector, obtain a pointer to the segment descriptor

Proto:static bool get_desc(struct desc_struct *out, unsigned short sel)

Type:bool

Parameter:

TypeParameterName
struct desc_struct *out
unsigned shortsel
575  struct desc_ptr gdt_desc = {0, 0}
598  native_store_gdt( & gdt_desc)
607  desc_base = sel & ~(Bottom two bits of selector give the ring* privilege level | Bit 2 is Table Indicator (TI): selects between LDT or GDT )
609  If desc_base > size Then Return false
612  out = *(address + desc_base)
613  Return true
Caller
NameDescribe
insn_get_seg_basesn_get_seg_base() - Obtain base address of segment descriptor
get_seg_limitget_seg_limit() - Obtain the limit of a segment descriptor*@regs: Register values as seen when entering kernel mode*@seg_reg_idx: Index of the segment register pointing to seg descriptor* Obtain the limit of the segment as indicated by the segment
insn_get_code_seg_paramssn_get_code_seg_params() - Obtain code segment parameters*@regs: Structure with register values as seen when entering kernel mode* Obtain address and operand sizes of the code segment. It is obtained from the* selector contained in the CS register in regs