]> granicus.if.org Git - procps-ng/commitdiff
library: Change linux version
authorCraig Small <csmall@enc.com.au>
Fri, 19 Jun 2015 11:00:46 +0000 (21:00 +1000)
committerCraig Small <csmall@enc.com.au>
Fri, 19 Jun 2015 11:00:46 +0000 (21:00 +1000)
Added function procps_linux_version() which used to be an
exported integer instead.  Also changed the method of obtaining
the linux version (more correctly the os release) to use a specific
procfs entry. This works for both Linux and FreeBSD.

proc/libprocps.sym
proc/procps-private.h [new file with mode: 0644]
proc/procps.h
proc/sysinfo.c
proc/version.c
proc/version.h
ps/global.c
top/top.c

index b08d571491e9ae96b04570c8ccdd6cf0abbcbc74..ba2dbf7b05a4637497b617ff6b63c8add096a583 100644 (file)
@@ -35,7 +35,6 @@ global:
        kb_swap_free;
        kb_swap_total;
        kb_swap_used;
-       linux_version_code;
        loadavg;
        look_up_our_self;
        lookup_wchan;
@@ -60,6 +59,7 @@ global:
        unix_print_signals;
        uptime;
        user_from_uid;
+       procps_linux_version;
 local:
        *;
 };
diff --git a/proc/procps-private.h b/proc/procps-private.h
new file mode 100644 (file)
index 0000000..ea9479b
--- /dev/null
@@ -0,0 +1,25 @@
+/*
+ * libprocps - Library to read proc filesystem
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+#ifndef PROCPS_PRIVATE_H
+#define PROCPS_PRIVATE_H
+
+#include <proc/procps.h>
+
+#define PROCPS_EXPORT __attribute__ ((visibility("default")))
+
+#endif
index e39df798997f9899c374ea66a50a363983880b36..c34dc056a7e123660c7ef94a45e67cd94407137a 100644 (file)
 #define OBSOLETE
 #endif
 
-#if ( __GNUC__ == 3 && __GNUC_MINOR__ > 1 ) || __GNUC__ > 3
-// Tells gcc that function is library-internal;
-// so no need to do dynamic linking at run-time.
-// This might work with slightly older compilers too.
-#define HIDDEN __attribute__((visibility("hidden")))
-// The opposite, in case -fvisibility=hidden used
-#define EXPORT __attribute__((visibility("default")))
-// Tell g++ that a function won't throw exceptions.
-#define NOTHROW __attribute__((__nothrow__))
-#else
-#define HIDDEN
-#define EXPORT
-#define NOTHROW
-#endif
-
 // Like HIDDEN, but for an alias that gets created.
 // In gcc-3.2 there is an alias+hidden conflict.
 // Many will have patched this bug, but oh well.
index e6450effa218a4e8ae8fa3d37e9cbaae39d20bd7..b0af54f0e2459c0da3f92a280ddd2b55ab698172 100644 (file)
@@ -275,7 +275,7 @@ static int check_for_privs(void){
 static void init_libproc(void) __attribute__((constructor));
 static void init_libproc(void){
   have_privs = check_for_privs();
-  init_Linux_version(); /* Must be called before we check code */
+  int linux_version_code = procps_linux_version();
 
   cpuinfo();
   page_bytes = sysconf(_SC_PAGESIZE);
@@ -623,6 +623,7 @@ static unsigned long kb_inactive_file;
 
 void meminfo(void){
   char namebuf[32]; /* big enough to hold any row name */
+  int linux_version_code = procps_linux_version();
   mem_table_struct findme = { namebuf, NULL};
   mem_table_struct *found;
   char *head;
index 88b6eeb4122923d18892abc85b6adc41b12fffe7..a78f9377647653f8170ba0223c068d5ffc15f27d 100644 (file)
@@ -1,9 +1,10 @@
 /*
- * Suite version information for procps-ng utilities
- * Copyright (c) 1995 Martin Schulze <joey@infodrom.north.de>
- * Amended by cblake to only export the function symbol.
+ * libprocps - Library to read proc filesystem
  *
- * Modified by Albert Cahalan, ????-2003
+ * Copyright (C) 1995 Martin Schulze <joey@infodrom.north.de>
+ * Copyright (C) 1996 Charles Blake <cblake@bbn.com>
+ * Copyright (C) 2003 Albert Cahalan
+ * Copyright (C) 2015 Craig Small <csmall@enc.com.au>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
-
+#include <errno.h>
 #include <stdio.h>
-#include <stdlib.h>
+#include "procps-private.h"
 #include "version.h"
 
-/* Linux kernel version information for procps-ng utilities
- * Copyright (c) 1996 Charles Blake <cblake@bbn.com>
- */
-#include <sys/utsname.h>
-
-#define LINUX_VERSION(x,y,z)   (0x10000*(x) + 0x100*(y) + z)
-
-int linux_version_code;
-
-void init_Linux_version(void) {
-    int x = 0, y = 0, z = 0;   /* cleared in case sscanf() < 3 */
-    int version_string_depth;
-
-#ifdef __linux__
-    static struct utsname uts;
+#define PROCFS_OSRELEASE "/proc/sys/kernel/osrelease"
 
-    if (uname(&uts) == -1)     /* failure implies impending death */
-       exit(1);
-
-    version_string_depth = sscanf(uts.release, "%d.%d.%d", &x, &y, &z);
-#else
+/*
+ * procps_linux_version
+ * 
+ * Return the current running Linux version release as shown in 
+ * the procps filesystem.
+ *
+ * There are three ways you can get OS release:
+ *  1) /proc/sys/kernel/osrelease - returns correct version of procfs
+ *  2) /proc/version - returns version of kernel e.g. BSD this is wrong
+ *  3) uname and uts.release - same as /proc/version field #3
+ *
+ * Returns: version as an integer
+ * Negative value means an error
+ */
+PROCPS_EXPORT int procps_linux_version(void)
+{
     FILE *fp;
     char buf[256];
+    unsigned int x = 0, y = 0, z = 0;
+    int version_string_depth;
 
-    if ( (fp=fopen("/proc/version","r")) == NULL) {
-      fprintf(stderr, "Cannot find /proc/version - is /proc mounted?\n");
-      exit(1);
-       }
+    if ((fp = fopen(PROCFS_OSRELEASE, "r")) == NULL)
+       return -errno;
     if (fgets(buf, 256, fp) == NULL) {
-      fprintf(stderr, "Cannot read kernel version from /proc/version\n");
-      fclose(fp);
-      exit(1);
+       fclose(fp);
+       return -EIO;
     }
     fclose(fp);
-    version_string_depth = sscanf(buf, "Linux version %d.%d.%d", &x, &y, &z);
-#endif /* __linux__ */
-
+    version_string_depth = sscanf(buf, "%u.%u.%u", &x, &y, &z);
     if ((version_string_depth < 2) ||           /* Non-standard for all known kernels */
        ((version_string_depth < 3) && (x < 3))) /* Non-standard for 2.x.x kernels */
-#ifdef __linux__
-       fprintf(stderr,         /* *very* unlikely to happen by accident */
-               "Non-standard uts for running kernel:\n"
-               "release %s=%d.%d.%d gives version code %d\n",
-               uts.release, x, y, z, LINUX_VERSION(x,y,z));
-#else
-       fprintf(stderr,         /* *very* unlikely to happen by accident */
-               "%s=%d.%d.%d gives version code %d\n",
-               buf, x, y, z, LINUX_VERSION(x,y,z));
-#endif /* __linux__ */
-    linux_version_code = LINUX_VERSION(x, y, z);
+       return -ERANGE;
+    return LINUX_VERSION(x,y,z);
 }
index f1848ff0b1984b977b33f3b621fad88b8d89677b..e4dcef4621d5c26a2d867e564d6cb1bc1c76bf24 100644 (file)
@@ -1,23 +1,33 @@
-#ifndef PROC_VERSION_H
-#define PROC_VERSION_H
-
-#include "procps.h"
-
-/* Suite version information for procps-ng utilities
- * Copyright (c) 1995 Martin Schulze <joey@infodrom.north.de>
- * Linux kernel version information for procps-ng utilities
- * Copyright (c) 1996 Charles Blake <cblake@bbn.com>
- * Distributable under the terms of the GNU Library General Public License
+/*
+ * libprocps - Library to read proc filesystem
+ *
+ * Copyright (C) 1995 Martin Schulze <joey@infodrom.north.de>
+ * Copyright (C) 1996 Charles Blake <cblake@bbn.com>
+ * Copyright (C) 2003 Albert Cahalan
+ * Copyright (C) 2015 Craig Small <csmall@enc.com.au>
  *
- * Copyright 2002 Albert Cahalan
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
+#ifndef PROC_VERSION_H
+#define PROC_VERSION_H
 
-EXTERN_C_BEGIN
-
-void init_Linux_version(void);    /* Get Linux version */
+#ifdef __cplusplus
+extern "C" {
+#endif
 
-extern int linux_version_code;         /* runtime version of LINUX_VERSION_CODE
-                                          in /usr/include/linux/version.h */
+int procps_linux_version(void);
 
 /* Convenience macros for composing/decomposing version codes */
 #define LINUX_VERSION(x,y,z)   (0x10000*(x) + 0x100*(y) + z)
@@ -25,6 +35,8 @@ extern int linux_version_code;                /* runtime version of LINUX_VERSION_CODE
 #define LINUX_VERSION_MINOR(x) (((x)>> 8) & 0xFF)
 #define LINUX_VERSION_PATCH(x) ( (x)      & 0xFF)
 
-EXTERN_C_END
+#ifdef __cplusplus
+} /* extern "C" */
+#endif
 
 #endif /* PROC_VERSION_H */
index 5abd3a26411bf9ec78f488c228cfc595da272044..91ca7426b2e16fbd1ad64590cc6847ab8e1047f4 100644 (file)
@@ -455,6 +455,7 @@ static const char archdefs[] =
 
 /*********** spew variables ***********/
 void self_info(void){
+  int linux_version_code = procps_linux_version();
   fprintf(stderr,
     "BSD j    %s\n"
     "BSD l    %s\n"
index 891fd96a5671f16085d6de23f6671168c58f0285..16554be19c37c88bc833575301ee3cef9dce069c 100644 (file)
--- a/top/top.c
+++ b/top/top.c
@@ -407,6 +407,7 @@ static void bye_bye (const char *str) {
    at_eoj();                 // restore tty in preparation for exit
 #ifdef ATEOJ_RPTSTD
 {  proc_t *p;
+   int linux_version_code = procps_linux_version();
    if (!str && !Frames_signal && Ttychanged) { fprintf(stderr,
       "\n%s's Summary report:"
       "\n\tProgram"
@@ -3263,6 +3264,7 @@ static void before (char *me) {
    struct sigaction sa;
    proc_t p;
    int i;
+   int linux_version_code = procps_linux_version();
 
    atexit(close_stdout);