| 
									
										
										
										
											2016-05-18 02:51:26 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2001-02-14 09:35:44 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-05-18 02:51:26 +08:00
										 |  |  |  * Licensed under the OpenSSL license (the "License").  You may not use | 
					
						
							|  |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							| 
									
										
										
										
											2001-02-14 09:35:44 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-20 06:04:02 +08:00
										 |  |  | #include <openssl/crypto.h>
 | 
					
						
							| 
									
										
										
										
											2001-04-26 16:26:18 +08:00
										 |  |  | #include <openssl/opensslconf.h>
 | 
					
						
							| 
									
										
										
										
											2001-02-14 09:35:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-21 21:48:31 +08:00
										 |  |  | #if defined(__OpenBSD__) || (defined(__FreeBSD__) && __FreeBSD__ > 2) || defined(__DragonFly__)
 | 
					
						
							| 
									
										
										
										
											2001-02-14 09:35:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | # include OPENSSL_UNISTD
 | 
					
						
							| 
									
										
										
										
											2001-02-14 09:35:44 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int OPENSSL_issetugid(void) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return issetugid(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-02-14 09:35:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-18 00:53:11 +08:00
										 |  |  | #elif defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VXWORKS)
 | 
					
						
							| 
									
										
										
										
											2001-02-14 09:35:44 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int OPENSSL_issetugid(void) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-02-14 09:35:44 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | # include OPENSSL_UNISTD
 | 
					
						
							|  |  |  | # include <sys/types.h>
 | 
					
						
							| 
									
										
										
										
											2001-02-14 09:35:44 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int OPENSSL_issetugid(void) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (getuid() != geteuid()) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     if (getgid() != getegid()) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-02-14 09:35:44 +08:00
										 |  |  | #endif
 |