man-pages/man2/uname.2

158 lines
4.5 KiB
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" Copyright (C) 2001 Andries Brouwer <aeb@cwi.nl>.
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one.
.\"
2004-11-03 13:51:07 +00:00
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date. The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein. The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\"
2004-11-03 13:51:07 +00:00
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.\" 2007-07-05 mtk: Added details on underlying system call interfaces
.\"
.TH UNAME 2 2008-11-20 "Linux" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
uname \- get name and information about current kernel
.SH SYNOPSIS
.B #include <sys/utsname.h>
.sp
.BI "int uname(struct utsname *" buf );
.SH DESCRIPTION
.BR uname ()
2004-11-03 13:51:07 +00:00
returns system information in the structure pointed to by
.IR buf .
The
.I utsname
2004-11-03 13:51:07 +00:00
struct is defined in
.IR <sys/utsname.h> :
.in +4n
2004-11-03 13:51:07 +00:00
.nf
2007-04-03 14:04:54 +00:00
2004-11-03 13:51:07 +00:00
struct utsname {
char sysname[]; /* Operating system name (e.g., "Linux") */
char nodename[]; /* Name within "some implementation-defined
network" */
char release[]; /* OS release (e.g., "2.6.28") */
char version[]; /* OS version */
char machine[]; /* Hardware identifier */
2004-11-03 13:51:07 +00:00
#ifdef _GNU_SOURCE
char domainname[]; /* NIS or YP domain name */
2004-11-03 13:51:07 +00:00
#endif
};
2007-04-03 14:04:54 +00:00
2004-11-03 13:51:07 +00:00
.fi
.in
2004-11-03 13:51:07 +00:00
The length of the arrays in a
.I struct utsname
2008-06-09 15:49:35 +00:00
is unspecified; the fields are terminated by a null byte (\(aq\\0\(aq).
2004-11-03 13:51:07 +00:00
.SH "RETURN VALUE"
On success, zero is returned.
On error, \-1 is returned, and
2004-11-03 13:51:07 +00:00
.I errno
is set appropriately.
.SH ERRORS
.TP
.B EFAULT
.I buf
is not valid.
.SH "CONFORMING TO"
2006-08-03 13:57:17 +00:00
SVr4, POSIX.1-2001.
2004-11-03 13:51:07 +00:00
There is no
.BR uname ()
call in 4.3BSD.
2004-11-03 13:51:07 +00:00
.PP
The
.I domainname
member (the NIS or YP domain name) is a GNU extension.
.SH NOTES
This is a system call, and the operating system presumably knows
its name, release and version.
It also knows what hardware it runs on.
2004-11-03 13:51:07 +00:00
So, four of the fields of the struct are meaningful.
On the other hand, the field \fInodename\fP is meaningless:
it gives the name of the present machine in some undefined
network, but typically machines are in more than one network
and have several names.
Moreover, the kernel has no way of knowing
2004-11-03 13:51:07 +00:00
about such things, so it has to be told what to answer here.
The same holds for the additional \fIdomainname\fP field.
.LP
To this end Linux uses the system calls
.BR sethostname (2)
and
.BR setdomainname (2).
Note that there is no standard that says that the hostname set by
.BR sethostname (2)
is the same string as the \fInodename\fP field of the struct returned by
.BR uname ()
2004-11-03 13:51:07 +00:00
(indeed, some systems allow a 256-byte hostname and an 8-byte nodename),
but this is true on Linux.
The same holds for
2004-11-03 13:51:07 +00:00
.BR setdomainname (2)
and the \fIdomainname\fP field.
.LP
The length of the fields in the struct varies.
Some operating systems
or libraries use a hardcoded 9 or 33 or 65 or 257.
Other systems use
2007-12-16 13:10:53 +00:00
.B SYS_NMLN
or
2007-12-16 13:10:53 +00:00
.B _SYS_NMLN
or
.B UTSLEN
or
.BR _UTSNAME_LENGTH .
Clearly, it is a bad
2005-07-06 06:54:27 +00:00
idea to use any of these constants; just use sizeof(...).
2004-11-03 13:51:07 +00:00
Often 257 is chosen in order to have room for an internet hostname.
.LP
Part of the utsname information is also accessible via
.IR /proc/sys/kernel/ { ostype ,
.IR hostname ,
.IR osrelease ,
.IR version ,
.IR domainname }.
.SS Underlying kernel interface
.LP
Over time, increases in the size of the
2008-11-19 16:13:35 +00:00
.I utsname
structure have led to three successive versions of
.BR uname ():
.IR sys_olduname ()
(slot
.IR __NR_oldolduname ),
.IR sys_uname ()
(slot
.IR __NR_olduname ),
and
.IR sys_newuname ()
(slot
.IR __NR_uname) .
The first one
.\" That was back before Linux 1.0
used length 9 for all fields;
the second
.\" That was also back before Linux 1.0
used 65;
the third also uses 65 but adds the \fIdomainname\fP field.
The glibc
.BR uname ()
wrapper function hides these details from applications,
invoking the most recent version of the system call provided by the kernel.
2004-11-03 13:51:07 +00:00
.SH "SEE ALSO"
.BR uname (1),
.BR getdomainname (2),
.BR gethostname (2)