Blame view

security/min_addr.c 1.31 KB
788084aba   Eric Paris   Security/SELinux:...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  #include <linux/init.h>
  #include <linux/mm.h>
  #include <linux/security.h>
  #include <linux/sysctl.h>
  
  /* amount of vm to protect from userspace access by both DAC and the LSM*/
  unsigned long mmap_min_addr;
  /* amount of vm to protect from userspace using CAP_SYS_RAWIO (DAC) */
  unsigned long dac_mmap_min_addr = CONFIG_DEFAULT_MMAP_MIN_ADDR;
  /* amount of vm to protect from userspace using the LSM = CONFIG_LSM_MMAP_MIN_ADDR */
  
  /*
   * Update mmap_min_addr = max(dac_mmap_min_addr, CONFIG_LSM_MMAP_MIN_ADDR)
   */
  static void update_mmap_min_addr(void)
  {
  #ifdef CONFIG_LSM_MMAP_MIN_ADDR
  	if (dac_mmap_min_addr > CONFIG_LSM_MMAP_MIN_ADDR)
  		mmap_min_addr = dac_mmap_min_addr;
  	else
  		mmap_min_addr = CONFIG_LSM_MMAP_MIN_ADDR;
  #else
  	mmap_min_addr = dac_mmap_min_addr;
  #endif
  }
  
  /*
   * sysctl handler which just sets dac_mmap_min_addr = the new value and then
   * calls update_mmap_min_addr() so non MAP_FIXED hints get rounded properly
   */
8d65af789   Alexey Dobriyan   sysctl: remove "s...
31
  int mmap_min_addr_handler(struct ctl_table *table, int write,
788084aba   Eric Paris   Security/SELinux:...
32
33
34
  			  void __user *buffer, size_t *lenp, loff_t *ppos)
  {
  	int ret;
4ae69e6b7   Kees Cook   mmap_min_addr che...
35
  	if (write && !capable(CAP_SYS_RAWIO))
0e1a6ef2d   Kees Cook   sysctl: require C...
36
  		return -EPERM;
8d65af789   Alexey Dobriyan   sysctl: remove "s...
37
  	ret = proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
788084aba   Eric Paris   Security/SELinux:...
38
39
40
41
42
  
  	update_mmap_min_addr();
  
  	return ret;
  }
dd880fbe8   H Hartley Sweeten   security/min_addr...
43
  static int __init init_mmap_min_addr(void)
788084aba   Eric Paris   Security/SELinux:...
44
45
46
47
48
49
  {
  	update_mmap_min_addr();
  
  	return 0;
  }
  pure_initcall(init_mmap_min_addr);