mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-09-18 22:14:16 +00:00 
			
		
		
		
	SECURITY: selinux, fix update_rlimit_cpu parameter
Don't pass current RLIMIT_RTTIME to update_rlimit_cpu() in selinux_bprm_committing_creds, since update_rlimit_cpu expects RLIMIT_CPU limit. Use proper rlim[RLIMIT_CPU].rlim_cur instead to fix that. Signed-off-by: Jiri Slaby <jirislaby@gmail.com> Acked-by: James Morris <jmorris@namei.org> Cc: Stephen Smalley <sds@tycho.nsa.gov> Cc: Eric Paris <eparis@parisplace.org> Cc: David Howells <dhowells@redhat.com>
This commit is contained in:
		
							parent
							
								
									45d28b0972
								
							
						
					
					
						commit
						17740d8978
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -2365,7 +2365,7 @@ static void selinux_bprm_committing_creds(struct linux_binprm *bprm) | |||
| 			initrlim = init_task.signal->rlim + i; | ||||
| 			rlim->rlim_cur = min(rlim->rlim_max, initrlim->rlim_cur); | ||||
| 		} | ||||
| 		update_rlimit_cpu(rlim->rlim_cur); | ||||
| 		update_rlimit_cpu(current->signal->rlim[RLIMIT_CPU].rlim_cur); | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Jiri Slaby
						Jiri Slaby