2012-03-11 10:57:13 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012.
|
2012-03-11 10:57:13 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This program is free software: you can redistribute it and/or modify it
|
|
|
|
under the terms of the GNU General Public License as published by the Free
|
|
|
|
Software Foundation, either version 3 of the License, or (at your option)
|
|
|
|
any later version.
|
2012-03-11 10:57:13 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
This program 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 General Public License for
|
|
|
|
more details.
|
2012-03-11 10:57:13 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
this program. If not, see <http://www.gnu.org/licenses/>.
|
2012-03-11 10:57:13 -04:00
|
|
|
|
2013-07-10 09:26:01 -04:00
|
|
|
uname.cpp
|
|
|
|
Print system information.
|
2012-03-11 10:57:13 -04:00
|
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2012-03-07 12:06:23 -05:00
|
|
|
#include <sys/kernelinfo.h>
|
2013-07-10 15:37:07 -04:00
|
|
|
|
|
|
|
#include <brand.h>
|
2012-03-07 12:06:23 -05:00
|
|
|
#include <errno.h>
|
|
|
|
#include <error.h>
|
2013-01-15 19:45:51 -05:00
|
|
|
#include <limits.h>
|
2013-07-10 15:37:07 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2011-08-27 17:03:39 -04:00
|
|
|
|
2013-11-04 07:41:01 -05:00
|
|
|
#if !defined(VERSIONSTR)
|
|
|
|
#define VERSIONSTR "unknown version"
|
|
|
|
#endif
|
|
|
|
|
2012-07-26 10:04:45 -04:00
|
|
|
const unsigned long PRINT_KERNELNAME = 1UL << 0UL;
|
|
|
|
const unsigned long PRINT_NODENAME = 1UL << 1UL;
|
|
|
|
const unsigned long PRINT_KERNELREL = 1UL << 2UL;
|
|
|
|
const unsigned long PRINT_KERNELVER = 1UL << 3UL;
|
|
|
|
const unsigned long PRINT_MACHINE = 1UL << 4UL;
|
|
|
|
const unsigned long PRINT_PROCESSOR = 1UL << 5UL;
|
2012-07-26 12:51:50 -04:00
|
|
|
const unsigned long PRINT_HWPLATFORM = 1UL << 6UL;
|
2012-07-26 10:04:45 -04:00
|
|
|
const unsigned long PRINT_OPSYS = 1UL << 7UL;
|
|
|
|
|
|
|
|
const size_t INFOBUFSIZE = 256UL;
|
|
|
|
char infobuf[INFOBUFSIZE];
|
|
|
|
|
|
|
|
const char* GetProcessorArchitecture()
|
|
|
|
{
|
|
|
|
#if defined(__x86_64__)
|
|
|
|
return "x86_64";
|
|
|
|
#elif defined(__i386__)
|
|
|
|
return "i386";
|
|
|
|
#else
|
|
|
|
return "unknown";
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* GetKernelName()
|
|
|
|
{
|
|
|
|
if ( kernelinfo("name", infobuf, INFOBUFSIZE) )
|
|
|
|
return "unknown";
|
|
|
|
return infobuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* GetNodeName()
|
|
|
|
{
|
|
|
|
return "sortix";
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* GetKernelRelease()
|
|
|
|
{
|
|
|
|
if ( kernelinfo("version", infobuf, INFOBUFSIZE) )
|
|
|
|
return "unknown";
|
|
|
|
return infobuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* GetKernelVersion()
|
|
|
|
{
|
|
|
|
if ( kernelinfo("builddate", infobuf, INFOBUFSIZE) )
|
|
|
|
return "unknown";
|
|
|
|
return infobuf;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* GetMachine()
|
|
|
|
{
|
|
|
|
return GetProcessorArchitecture();
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* GetProcessor()
|
|
|
|
{
|
|
|
|
return GetProcessorArchitecture();
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* GetHardwarePlatform()
|
|
|
|
{
|
|
|
|
return GetProcessorArchitecture();
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* GetOperatingSystem()
|
|
|
|
{
|
2013-07-10 15:37:07 -04:00
|
|
|
return BRAND_OPERATING_SYSTEM_NAME;
|
2012-07-26 10:04:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool has_printed = false;
|
|
|
|
|
|
|
|
void DoPrint(const char* msg)
|
|
|
|
{
|
|
|
|
if ( has_printed )
|
|
|
|
printf(" ");
|
|
|
|
printf("%s", msg);
|
|
|
|
has_printed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Usage(FILE* fp, const char* argv0)
|
|
|
|
{
|
2012-07-26 12:51:50 -04:00
|
|
|
fprintf(fp, "Usage: %s [OPTION]...\n", argv0);
|
2012-07-26 10:04:45 -04:00
|
|
|
fprintf(fp, "Print certain system information.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void Help(FILE* fp, const char* argv0)
|
|
|
|
{
|
|
|
|
Usage(fp, argv0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Version(FILE* fp, const char* argv0)
|
|
|
|
{
|
2013-11-04 07:41:01 -05:00
|
|
|
fprintf(fp, "%s (Sortix) %s\n", argv0, VERSIONSTR);
|
|
|
|
fprintf(fp, "License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.\n");
|
|
|
|
fprintf(fp, "This is free software: you are free to change and redistribute it.\n");
|
|
|
|
fprintf(fp, "There is NO WARRANTY, to the extent permitted by law.\n");
|
2012-07-26 10:04:45 -04:00
|
|
|
}
|
|
|
|
|
2011-08-27 17:03:39 -04:00
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
2012-07-26 10:04:45 -04:00
|
|
|
const char* argv0 = argv[0];
|
|
|
|
unsigned long flags = 0;
|
|
|
|
for ( int i = 1; i < argc; i++ )
|
2012-03-07 12:06:23 -05:00
|
|
|
{
|
2012-07-26 10:04:45 -04:00
|
|
|
const char* arg = argv[i];
|
|
|
|
if ( arg[0] != '-' )
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%s: extra operand: %s\n", argv0, arg);
|
|
|
|
Usage(stderr, argv0);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if ( arg[1] != '-' )
|
|
|
|
for ( size_t i = 1; arg[i]; i++ )
|
|
|
|
switch ( arg[i] )
|
|
|
|
{
|
|
|
|
case 'a': flags |= LONG_MAX; break;
|
|
|
|
case 's': flags |= PRINT_KERNELNAME; break;
|
|
|
|
case 'n': flags |= PRINT_NODENAME; break;
|
|
|
|
case 'r': flags |= PRINT_KERNELREL; break;
|
|
|
|
case 'v': flags |= PRINT_KERNELVER; break;
|
|
|
|
case 'm': flags |= PRINT_MACHINE; break;
|
|
|
|
case 'p': flags |= PRINT_PROCESSOR; break;
|
2012-07-26 12:51:50 -04:00
|
|
|
case 'i': flags |= PRINT_HWPLATFORM; break;
|
2012-07-26 10:04:45 -04:00
|
|
|
case 'o': flags |= PRINT_OPSYS; break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "%s: unknown option -- '%c'\n", argv0, arg[i]);
|
|
|
|
Usage(stderr, argv0);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
else if ( !strcmp(arg, "--kernel-name") )
|
|
|
|
flags |= PRINT_KERNELNAME;
|
|
|
|
else if ( !strcmp(arg, "--nodename") )
|
|
|
|
flags |= PRINT_NODENAME;
|
|
|
|
else if ( !strcmp(arg, "--kernel-release") )
|
|
|
|
flags |= PRINT_KERNELREL;
|
|
|
|
else if ( !strcmp(arg, "--kernel-version") )
|
|
|
|
flags |= PRINT_KERNELVER;
|
|
|
|
else if ( !strcmp(arg, "--machine") )
|
|
|
|
flags |= PRINT_MACHINE;
|
|
|
|
else if ( !strcmp(arg, "--processor") )
|
|
|
|
flags |= PRINT_PROCESSOR;
|
|
|
|
else if ( !strcmp(arg, "--hardware-platform") )
|
2012-07-26 12:51:50 -04:00
|
|
|
flags |= PRINT_HWPLATFORM;
|
2012-07-26 10:04:45 -04:00
|
|
|
else if ( !strcmp(arg, "--operating-system") )
|
|
|
|
flags |= PRINT_OPSYS;
|
|
|
|
else if ( !strcmp(arg, "--help") ) { Help(stdout, argv0); exit(0); }
|
|
|
|
else if ( !strcmp(arg, "--usage") ) { Usage(stdout, argv0); exit(0); }
|
|
|
|
else if ( !strcmp(arg, "--version") ) { Version(stdout, argv0); exit(0); }
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%s: unknown option: %s\n", argv0, arg);
|
|
|
|
Usage(stderr, argv0);
|
|
|
|
exit(1);
|
|
|
|
}
|
2012-03-07 12:06:23 -05:00
|
|
|
}
|
2012-07-26 10:04:45 -04:00
|
|
|
|
|
|
|
if ( !flags )
|
|
|
|
flags = PRINT_KERNELNAME;
|
|
|
|
if ( flags & PRINT_KERNELNAME )
|
|
|
|
DoPrint(GetKernelName());
|
|
|
|
if ( flags & PRINT_NODENAME )
|
|
|
|
DoPrint(GetNodeName());
|
|
|
|
if ( flags & PRINT_KERNELREL )
|
|
|
|
DoPrint(GetKernelRelease());
|
|
|
|
if ( flags & PRINT_KERNELVER )
|
|
|
|
DoPrint(GetKernelVersion());
|
|
|
|
if ( flags & PRINT_MACHINE )
|
|
|
|
DoPrint(GetMachine());
|
|
|
|
if ( flags & PRINT_PROCESSOR )
|
|
|
|
DoPrint(GetProcessor());
|
2012-07-26 12:51:50 -04:00
|
|
|
if ( flags & PRINT_HWPLATFORM )
|
2012-07-26 10:04:45 -04:00
|
|
|
DoPrint(GetHardwarePlatform());
|
|
|
|
if ( flags & PRINT_OPSYS )
|
|
|
|
DoPrint(GetOperatingSystem());
|
|
|
|
printf("\n");
|
2011-08-27 17:03:39 -04:00
|
|
|
return 0;
|
|
|
|
}
|