1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
/*
linuxinfo_common.c
Copyright (C) 1998-2000
All Rights Reserved.
Alex Buell <alex.buell@tahallah.demon.co.uk>
Advanced Buell Software Engineering Ltd
Hampshire, GU31 5DG
United Kingdom
Version Author Date Comments
----------------------------------------------------------------------
1.0.0 AIB 199803?? Initial development
1.0.1 AIB 20000405 Added read_line function
1.0.2 AIB 20000405 Moved strstr() from linuxinfo.h to here
Common functions module
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/utsname.h>
#include "linuxinfo.h"
void GetOperatingSystemInfo(struct os_stat *os)
{
#ifndef system_unknown
struct utsname buf;
uname(&buf);
strcpy(os->os_hostname, buf.nodename);
strcpy(os->os_name, buf.sysname);
strcpy(os->os_version, buf.release);
strcpy(os->os_revision, buf.version);
#else
strcpy(os->os_hostname, "Unknown");
strcpy(os->os_name, "Unknown");
strcpy(os->os_version, "Unknown");
strcpy(os->os_revision, "Unknown");
#endif /* system_unknown */
}
/* Really neat hack to detect all libraries known on Linux */
#ifndef system_unknown
asm (".weak gnu_get_libc_version");
asm (".weak __libc_version");
asm (".weak __linux_C_lib_version");
extern char *gnu_get_libc_version (void);
extern char *__linux_C_lib_version;
extern char __libc_version [];
#endif /* only define if on a Linux system :o) */
void GetSystemLibcInfo(struct lib_stat *lib)
{
int libc_major = 0, libc_minor = 0, libc_teeny = 0;
char *ptr;
/* initialise to unknown */
strcpy(lib->lib_version, "Unknown");
#ifndef system_unknown
if (gnu_get_libc_version != 0)
{
ptr = gnu_get_libc_version();
}
else if (&__libc_version != 0)
{
ptr = __libc_version;
}
else
ptr = __linux_C_lib_version;
while (!isdigit (*ptr))
ptr++;
sscanf (ptr, "%d.%d.%d", &libc_major, &libc_minor, &libc_teeny);
sprintf(lib->lib_version, "%d.%d.%d", libc_major, libc_minor, libc_teeny);
#endif /* system_unknown */
}
int read_line(int fd, char *buffer, size_t length)
{
off_t curpos = lseek(fd, 0, SEEK_CUR);
int len = read(fd, buffer, length);
char *p = strchr(buffer, 0x0a);
if (fd < 0)
return 0;
if (len < 0)
return len;
if (p != NULL)
len = (p - buffer) + 1;
lseek(fd, curpos + len, SEEK_SET);
if (p != NULL)
*p = 0;
return len;
}
char *GetStringFromFile(FILE *infile, char *str)
{
int ch, i = 0;
char temp[BUFSIZ];
strcpy(temp, "");
while ((ch = fgetc(infile)) == ' ');
while ((ch != '\n') && (ch != EOF))
{
temp[i] = ch;
i++;
ch = fgetc(infile);
}
if (ch == EOF)
return NULL;
temp[i] = '\0';
strcpy(str, temp);
return(str);
}
int splitstring(char *first_string, char *second_string)
{
char *p;
p = strchr(first_string, ':');
if (!p)
return 0;
*(p-1) = '\0', p++;
while (isspace(*p)) p++;
strcpy(second_string, p);
}
#if !(HAVE_STRSTR)
char *strstr (const char *haystack, const char *needle)
{
c, sc;
size_t len;
if ((c = *find++) != 0)
{
len = strlen(find);
do
{
do
{
if ((sc = *s++) == 0)
return (NULL);
}
while (sc != c);
}
while (strncmp(s, find, len) != 0);
s--;
}
return ((char *)s);
}
#endif
|