File:  [MW Coherent from dump] / coherent / b / bin / uname.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Wed May 29 04:56:36 2019 UTC (7 years, 2 months ago) by root
Branches: MarkWilliams, MAIN
CVS tags: relic, HEAD
coherent

/*
 * uname.c
 * Print information about current COHERENT system.
 */

#include	<stdio.h>
#include	<fcntl.h>
#include	<sys/utsname.h>
#include	<string.h>

main(argc, argv)
int	argc;
char	*argv[];
{
	extern char	*optarg;
	extern int	optind;
	static int	snf = 0,	/* Default */
			nnf = 0,
			srf = 0, 
			svf = 0, 
			mhf = 0,
			Snf = 0;
	char		*sname;
	int		c;
	struct utsname	tsname;

	while ((c = getopt(argc, argv, "snrvmaS:")) != EOF)
		switch (c) {
		case 's':	/* Print system name (default). */
			snf = 1;
			break;
		case 'n':	/* Print node name */
			nnf = 1;
			break;
		case 'r':	/* Print system release */
			srf = 1;
			break;
		case 'v':	/* Print system version */
			svf = 1;
			break;
		case 'm':	/* Print machine hardware name */
			mhf = 1;
			break;
		case 'a':	/* Print all above */
			nnf = srf = svf = mhf = 1;
			break;
		case 'S':	/* Change system name */
			Snf = 1;
			sname = optarg;			
			break;
		default:
			usage();
		}
	if ((snf || nnf || srf || svf || mhf) && Snf)
		usage();
	if (Snf)
		changename(sname);
	else {
		int space;

		if (uname(&tsname) < 0) {
			perror("uname");
			exit(1);
		}
		space = 0;
		if (snf) {
			printf("%.*s", SYS_NMLN, tsname.sysname);
			space = 1;
		}
		if (nnf) {
			if (space)
				putchar(' ');
			printf("%.*s", SYS_NMLN, tsname.nodename);
			space = 1;
		}
		if (srf) {
			if (space)
				putchar(' ');
			printf("%.*s", SYS_NMLN, tsname.release);
			space = 1;
		}
		if (svf) {
			if (space)
				putchar(' ');
			printf("%.*s", SYS_NMLN, tsname.version);
			space = 1;
		}
		if (mhf) {
			if (space)
				putchar(' ');
			printf("%.*s", SYS_NMLN, tsname.machine);
		}
		putchar('\n');
	}
	exit(0);
}

/*
 * Change system name.
 */
changename(sname)
char	*sname;
{
	char	newname[SYS_NMLN + 2];
	int	fd;
	char	*uucpname = "/etc/uucpname";

	if (strlen(sname) >= SYS_NMLN) {
		fprintf(stderr, "uname: name must be <= 8 characters.\n");
		exit(1);
	}
	strcpy(newname, sname);
	strcat(newname, "\n");
	if ((fd = open(uucpname, O_RDWR | O_TRUNC, 0644)) < 0) {
		perror("uname");
		exit(1);
	}
	if (write(fd, newname, strlen(newname)) != strlen(newname)) {
		perror("uname");
		exit(1);
	}
}

usage()
{
	printf("usage:\tuname [-snrvma]\n\tuname [-S system_name]\n");
	exit(1);
}

/* end of uname.c */

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.