sortix-mirror/utils/uname.c

170 lines
4.5 KiB
C
Raw Normal View History

/*
* Copyright (c) 2011, 2012, 2014 Jonas 'Sortie' Termansen.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* uname.c
* Print system information.
*/
2014-01-07 23:34:21 +00:00
#include <sys/utsname.h>
2013-07-10 19:37:07 +00:00
#include <errno.h>
#include <error.h>
2013-01-16 00:45:51 +00:00
#include <limits.h>
2016-02-28 23:40:20 +00:00
#include <stdbool.h>
2013-07-10 19:37:07 +00:00
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
static const int PRINT_KERNELNAME = 1 << 0;
static const int PRINT_NODENAME = 1 << 1;
static const int PRINT_KERNELREL = 1 << 2;
static const int PRINT_KERNELVER = 1 << 3;
2015-04-25 21:39:21 +00:00
static const int PRINT_TAGLINE = 1 << 4;
static const int PRINT_MACHINE = 1 << 5;
static const int PRINT_PROCESSOR = 1 << 6;
static const int PRINT_HWPLATFORM = 1 << 7;
static const int PRINT_OPSYS = 1 << 8;
bool has_printed = false;
void DoPrint(const char* msg)
{
if ( has_printed )
printf(" ");
printf("%s", msg);
has_printed = true;
}
static void compact_arguments(int* argc, char*** argv)
{
for ( int i = 0; i < *argc; i++ )
{
while ( i < *argc && !(*argv)[i] )
{
for ( int n = i; n < *argc; n++ )
(*argv)[n] = (*argv)[n+1];
(*argc)--;
}
}
}
static void help(FILE* fp, const char* argv0)
{
2012-07-26 16:51:50 +00:00
fprintf(fp, "Usage: %s [OPTION]...\n", argv0);
fprintf(fp, "Print certain system information.\n");
}
static void version(FILE* fp, const char* argv0)
{
2013-11-04 12:41:01 +00:00
fprintf(fp, "%s (Sortix) %s\n", argv0, VERSIONSTR);
}
int main(int argc, char* argv[])
{
const char* argv0 = argv[0];
int flags = 0;
for ( int i = 1; i < argc; i++ )
{
const char* arg = argv[i];
if ( arg[0] != '-' || !arg[1] )
continue;
argv[i] = NULL;
if ( !strcmp(arg, "--") )
break;
if ( arg[1] != '-' )
{
2016-02-28 23:40:20 +00:00
char c;
while ( (c = *++arg) ) switch ( c )
{
2016-02-28 23:40:20 +00:00
case 'a': flags |= INT_MAX; break;
case 's': flags |= PRINT_KERNELNAME; break;
case 'n': flags |= PRINT_NODENAME; break;
case 'r': flags |= PRINT_KERNELREL; break;
2015-04-25 21:39:21 +00:00
case 't': flags |= PRINT_TAGLINE; break;
case 'v': flags |= PRINT_KERNELVER; break;
case 'm': flags |= PRINT_MACHINE; break;
case 'p': flags |= PRINT_PROCESSOR; break;
case 'i': flags |= PRINT_HWPLATFORM; break;
case 'o': flags |= PRINT_OPSYS; break;
default:
fprintf(stderr, "%s: unknown option -- '%c'\n", argv0, c);
help(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;
2015-04-25 21:39:21 +00:00
else if ( !strcmp(arg, "--tagline") )
flags |= PRINT_TAGLINE;
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 16:51:50 +00:00
flags |= PRINT_HWPLATFORM;
else if ( !strcmp(arg, "--operating-system") )
flags |= PRINT_OPSYS;
else if ( !strcmp(arg, "--help") )
help(stdout, argv0), exit(0);
else if ( !strcmp(arg, "--version") )
version(stdout, argv0), exit(0);
else
{
fprintf(stderr, "%s: unknown option: %s\n", argv0, arg);
help(stderr, argv0);
exit(1);
}
}
compact_arguments(&argc, &argv);
if ( 1 < argc )
error(1, 0, "extra operand");
2014-01-07 23:34:21 +00:00
static struct utsname utsname;
if ( uname(&utsname) < 0 )
error(1, errno, "uname");
if ( !flags )
flags = PRINT_KERNELNAME;
if ( flags & PRINT_KERNELNAME )
2014-01-07 23:34:21 +00:00
DoPrint(utsname.sysname);
if ( flags & PRINT_NODENAME )
2014-01-07 23:34:21 +00:00
DoPrint(utsname.nodename);
if ( flags & PRINT_KERNELREL )
2014-01-07 23:34:21 +00:00
DoPrint(utsname.release);
2015-04-25 21:39:21 +00:00
if ( flags & PRINT_TAGLINE )
DoPrint(utsname.tagline);
if ( flags & PRINT_KERNELVER )
2014-01-07 23:34:21 +00:00
DoPrint(utsname.version);
if ( flags & PRINT_MACHINE )
2014-01-07 23:34:21 +00:00
DoPrint(utsname.machine);
if ( flags & PRINT_PROCESSOR )
2014-01-07 23:34:21 +00:00
DoPrint(utsname.processor);
2012-07-26 16:51:50 +00:00
if ( flags & PRINT_HWPLATFORM )
2014-01-07 23:34:21 +00:00
DoPrint(utsname.hwplatform);
if ( flags & PRINT_OPSYS )
2014-01-07 23:34:21 +00:00
DoPrint(utsname.opsysname);
printf("\n");
return 0;
}