Here comes the third part of compatibility patch for sendmail. * Introduced new safe_getdomainname() -- will it be useful? * Fixed SEGV if sender address is missed. Should snoop for sender address in mail headers? * More compat: use HOSTNAME instead of HOST when no server is explicitly specified. * crond: fixed mail recipient address. function old new delta safe_getdomainname - 56 +56 sendgetmail_main 1937 1946 +9 grep_file 846 850 +4 crond_main 1423 1425 +2 xstrtoull_range_sfx 295 296 +1 utoa_to_buf 110 108 -2 passwd_main 1053 1049 -4 sv_main 1234 1228 -6 parse_expr 841 833 -8 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 4/4 up/down: 72/-20) Total: 52 bytes
		
			
				
	
	
		
			67 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* vi: set sw=4 ts=4: */
 | |
| /*
 | |
|  * Safe gethostname implementation for busybox
 | |
|  *
 | |
|  * Copyright (C) 2008 Tito Ragusa <farmatito@tiscali.it>
 | |
|  *
 | |
|  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
 | |
|  */
 | |
| 
 | |
| /*
 | |
|  * SUSv2 guarantees that "Host names are limited to 255 bytes"
 | |
|  * POSIX.1-2001 guarantees that "Host names (not including the terminating
 | |
|  * null byte) are limited to HOST_NAME_MAX bytes" (64 bytes on my box).
 | |
|  *
 | |
|  * RFC1123 says:
 | |
|  *
 | |
|  * The syntax of a legal Internet host name was specified in RFC-952
 | |
|  * [DNS:4].  One aspect of host name syntax is hereby changed: the
 | |
|  * restriction on the first character is relaxed to allow either a
 | |
|  * letter or a digit.  Host software MUST support this more liberal
 | |
|  * syntax.
 | |
|  *
 | |
|  * Host software MUST handle host names of up to 63 characters and
 | |
|  * SHOULD handle host names of up to 255 characters.
 | |
|  */
 | |
| 
 | |
| #include "libbb.h"
 | |
| #include <sys/utsname.h>
 | |
| 
 | |
| /*
 | |
|  * On success return the current malloced and NUL terminated hostname.
 | |
|  * On error return malloced and NUL terminated string "?".
 | |
|  * This is an illegal first character for a hostname.
 | |
|  * The returned malloced string must be freed by the caller.
 | |
|  */
 | |
| char* FAST_FUNC safe_gethostname(void)
 | |
| {
 | |
| 	struct utsname uts;
 | |
| 
 | |
| 	/* The length of the arrays in a struct utsname is unspecified;
 | |
| 	 * the fields are terminated by a null byte.
 | |
| 	 * Note that there is no standard that says that the hostname
 | |
| 	 * set by sethostname(2) is the same string as the nodename field of the
 | |
| 	 * struct returned by uname (indeed, some systems allow a 256-byte host-
 | |
| 	 * name and an 8-byte nodename), but this is true on Linux. The same holds
 | |
| 	 * for setdomainname(2) and the domainname field.
 | |
| 	 */
 | |
| 
 | |
| 	/* Uname can fail only if you pass a bad pointer to it. */
 | |
| 	uname(&uts);
 | |
| 	return xstrndup(!uts.nodename[0] ? "?" : uts.nodename, sizeof(uts.nodename));
 | |
| }
 | |
| 
 | |
| /*
 | |
|  * On success return the current malloced and NUL terminated domainname.
 | |
|  * On error return malloced and NUL terminated string "?".
 | |
|  * This is an illegal first character for a domainname.
 | |
|  * The returned malloced string must be freed by the caller.
 | |
|  */
 | |
| char* FAST_FUNC safe_getdomainname(void)
 | |
| {
 | |
| 	struct utsname uts;
 | |
| 
 | |
| 	uname(&uts);
 | |
| 	return xstrndup(!uts.domainname[0] ? "?" : uts.domainname, sizeof(uts.domainname));
 | |
| }
 |