2000-02-18 03:38:33 +08:00
|
|
|
/* uname.cc
|
|
|
|
Written by Steve Chamberlain of Cygnus Support, sac@cygnus.com
|
|
|
|
Rewritten by Geoffrey Noer of Cygnus Solutions, noer@cygnus.com
|
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2000-08-03 00:28:18 +08:00
|
|
|
#include "winsup.h"
|
2022-12-08 04:14:27 +08:00
|
|
|
#include <stdio.h>
|
2000-02-18 03:38:33 +08:00
|
|
|
#include <sys/utsname.h>
|
2019-01-24 19:01:01 +08:00
|
|
|
#include <netdb.h>
|
2000-09-08 10:56:55 +08:00
|
|
|
#include "cygwin_version.h"
|
2005-07-03 10:40:30 +08:00
|
|
|
#include "cygtls.h"
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2015-11-19 05:13:31 +08:00
|
|
|
extern "C" int cygwin_gethostname (char *__name, size_t __len);
|
2019-01-24 19:01:01 +08:00
|
|
|
extern "C" int getdomainname (char *__name, size_t __len);
|
2015-11-19 05:13:31 +08:00
|
|
|
|
2019-07-20 02:14:33 +08:00
|
|
|
#if __GNUC__ >= 8
|
|
|
|
#define ATTRIBUTE_NONSTRING __attribute__ ((nonstring))
|
|
|
|
#else
|
|
|
|
#define ATTRIBUTE_NONSTRING
|
|
|
|
#endif
|
|
|
|
|
2000-02-18 03:38:33 +08:00
|
|
|
/* uname: POSIX 4.4.1.1 */
|
2019-01-24 19:01:01 +08:00
|
|
|
|
|
|
|
/* New entrypoint for applications since API 335 */
|
|
|
|
extern "C" int
|
|
|
|
uname_x (struct utsname *name)
|
|
|
|
{
|
|
|
|
__try
|
|
|
|
{
|
2019-07-20 02:14:33 +08:00
|
|
|
char buf[NI_MAXHOST + 1] ATTRIBUTE_NONSTRING;
|
2019-01-24 19:01:01 +08:00
|
|
|
|
|
|
|
memset (name, 0, sizeof (*name));
|
|
|
|
/* sysname */
|
2022-03-07 17:31:15 +08:00
|
|
|
__small_sprintf (name->sysname, "CYGWIN_%s-%u",
|
|
|
|
wincap.osname (), wincap.build_number ());
|
2019-01-24 19:01:01 +08:00
|
|
|
/* nodename */
|
|
|
|
memset (buf, 0, sizeof buf);
|
|
|
|
cygwin_gethostname (buf, sizeof buf - 1);
|
|
|
|
strncat (name->nodename, buf, sizeof (name->nodename) - 1);
|
|
|
|
/* machine */
|
|
|
|
switch (wincap.cpu_arch ())
|
|
|
|
{
|
|
|
|
case PROCESSOR_ARCHITECTURE_AMD64:
|
2022-12-08 04:14:27 +08:00
|
|
|
strcpy (name->machine, "x86_64");
|
2019-01-24 19:01:01 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
strcpy (name->machine, "unknown");
|
|
|
|
break;
|
|
|
|
}
|
2022-12-08 04:14:27 +08:00
|
|
|
/* release */
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wformat-truncation="
|
|
|
|
#ifdef CYGPORT_RELEASE_INFO
|
|
|
|
snprintf (name->release, _UTSNAME_LENGTH, "%s.%s",
|
|
|
|
__XSTRING (CYGPORT_RELEASE_INFO), name->machine);
|
|
|
|
#else
|
|
|
|
extern const char *uname_dev_version;
|
2022-12-08 05:22:38 +08:00
|
|
|
if (uname_dev_version && uname_dev_version[0])
|
|
|
|
snprintf (name->release, _UTSNAME_LENGTH, "%s.%s",
|
|
|
|
uname_dev_version, name->machine);
|
|
|
|
else
|
|
|
|
__small_sprintf (name->release, "%d.%d.%d-api-%d.%s",
|
|
|
|
cygwin_version.dll_major / 1000,
|
|
|
|
cygwin_version.dll_major % 1000,
|
|
|
|
cygwin_version.dll_minor,
|
|
|
|
cygwin_version.api_minor,
|
|
|
|
name->machine);
|
2022-12-08 04:14:27 +08:00
|
|
|
#endif
|
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
/* version */
|
|
|
|
stpcpy (name->version, cygwin_version.dll_build_date);
|
|
|
|
strcat (name->version, " UTC");
|
2019-01-24 19:01:01 +08:00
|
|
|
/* domainame */
|
|
|
|
memset (buf, 0, sizeof buf);
|
|
|
|
getdomainname (buf, sizeof buf - 1);
|
|
|
|
strncat (name->domainname, buf, sizeof (name->domainname) - 1);
|
|
|
|
}
|
|
|
|
__except (EFAULT) { return -1; }
|
|
|
|
__endtry
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Old entrypoint for applications up to API 334 */
|
|
|
|
struct old_utsname
|
|
|
|
{
|
|
|
|
char sysname[20];
|
|
|
|
char nodename[20];
|
|
|
|
char release[20];
|
|
|
|
char version[20];
|
|
|
|
char machine[20];
|
|
|
|
};
|
|
|
|
|
2000-02-28 13:05:33 +08:00
|
|
|
extern "C" int
|
2019-01-24 19:01:01 +08:00
|
|
|
uname (struct utsname *in_name)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2019-01-24 19:01:01 +08:00
|
|
|
struct old_utsname *name = (struct old_utsname *) in_name;
|
2014-08-22 17:21:33 +08:00
|
|
|
__try
|
|
|
|
{
|
|
|
|
memset (name, 0, sizeof (*name));
|
|
|
|
__small_sprintf (name->sysname, "CYGWIN_%s", wincap.osname ());
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2014-08-22 17:21:33 +08:00
|
|
|
/* Computer name */
|
|
|
|
cygwin_gethostname (name->nodename, sizeof (name->nodename) - 1);
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2014-08-22 17:21:33 +08:00
|
|
|
/* Cygwin dll release */
|
2022-11-24 19:20:50 +08:00
|
|
|
__small_sprintf (name->release, "%d.%d.%d(%d.%d/%d/%d)",
|
2014-08-22 17:21:33 +08:00
|
|
|
cygwin_version.dll_major / 1000,
|
|
|
|
cygwin_version.dll_major % 1000,
|
|
|
|
cygwin_version.dll_minor,
|
|
|
|
cygwin_version.api_major,
|
|
|
|
cygwin_version.api_minor,
|
|
|
|
cygwin_version.shared_data,
|
|
|
|
cygwin_version.mount_registry);
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2014-08-22 17:21:33 +08:00
|
|
|
/* Cygwin "version" aka build date */
|
|
|
|
strcpy (name->version, cygwin_version.dll_build_date);
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2014-08-22 17:21:33 +08:00
|
|
|
/* CPU type */
|
2018-04-11 17:59:35 +08:00
|
|
|
switch (wincap.cpu_arch ())
|
2014-08-22 17:21:33 +08:00
|
|
|
{
|
|
|
|
case PROCESSOR_ARCHITECTURE_AMD64:
|
|
|
|
strcpy (name->machine, "x86_64");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
strcpy (name->machine, "unknown");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
__except (EFAULT)
|
2000-02-18 03:38:33 +08:00
|
|
|
{
|
2014-08-22 17:21:33 +08:00
|
|
|
return -1;
|
2000-02-18 03:38:33 +08:00
|
|
|
}
|
2014-08-22 17:21:33 +08:00
|
|
|
__endtry
|
2000-02-18 03:38:33 +08:00
|
|
|
return 0;
|
|
|
|
}
|