--- embedaddon/sudo/plugins/sudoers/boottime.c 2012/05/29 12:26:49 1.1.1.2 +++ embedaddon/sudo/plugins/sudoers/boottime.c 2014/06/15 16:12:54 1.1.1.4 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009-2011 Todd C. Miller + * Copyright (c) 2009-2013 Todd C. Miller * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -16,7 +16,6 @@ #include -#include #include #include @@ -29,6 +28,11 @@ # include # endif #endif /* STDC_HEADERS */ +#ifdef HAVE_STDBOOL_H +# include +#else +# include "compat/stdbool.h" +#endif /* HAVE_STDBOOL_H */ #ifdef HAVE_STRING_H # if defined(HAVE_MEMORY_H) && !defined(STDC_HEADERS) # include @@ -39,7 +43,7 @@ # include #endif /* HAVE_STRINGS_H */ #include -#if TIME_WITH_SYS_TIME +#ifdef TIME_WITH_SYS_TIME # include #endif #ifndef __linux__ @@ -61,13 +65,14 @@ */ #if defined(__linux__) -int +bool get_boottime(struct timeval *tv) { - char *line = NULL; + char *ep, *line = NULL; size_t linesize = 0; + bool found = false; ssize_t len; - FILE * fp; + FILE *fp; debug_decl(get_boottime, SUDO_DEBUG_UTIL) /* read btime from /proc/stat */ @@ -75,21 +80,25 @@ get_boottime(struct timeval *tv) if (fp != NULL) { while ((len = getline(&line, &linesize, fp)) != -1) { if (strncmp(line, "btime ", 6) == 0) { - tv->tv_sec = atoi(line + 6); - tv->tv_usec = 0; - debug_return_bool(1); + long long llval = strtonum(line + 6, 1, LLONG_MAX, NULL); + if (llval > 0) { + tv->tv_sec = (time_t)llval; + tv->tv_usec = 0; + found = true; + break; + } } } fclose(fp); free(line); } - debug_return_bool(0); + debug_return_bool(found); } #elif defined(HAVE_SYSCTL) && defined(KERN_BOOTTIME) -int +bool get_boottime(struct timeval *tv) { size_t size; @@ -100,9 +109,9 @@ get_boottime(struct timeval *tv) mib[1] = KERN_BOOTTIME; size = sizeof(*tv); if (sysctl(mib, 2, tv, &size, NULL, 0) != -1) - debug_return_bool(1); + debug_return_bool(true); - debug_return_bool(0); + debug_return_bool(false); } #elif defined(HAVE_GETUTXID) @@ -149,6 +158,6 @@ int get_boottime(struct timeval *tv) { debug_decl(get_boottime, SUDO_DEBUG_UTIL) - debug_return_bool(0); + debug_return_bool(false); } #endif