2003-05-12 23:52:24 +08:00
|
|
|
|
2004-09-28 16:34:51 +08:00
|
|
|
/*
|
2004-09-30 00:00:49 +08:00
|
|
|
* Copyright (C) Igor Sysoev
|
2004-09-28 16:34:51 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-11-14 00:16:33 +08:00
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
2003-05-12 23:52:24 +08:00
|
|
|
|
|
|
|
|
2004-09-28 16:34:51 +08:00
|
|
|
/* FreeBSD 3.0 at least */
|
2004-11-11 22:07:14 +08:00
|
|
|
char ngx_freebsd_kern_ostype[16];
|
|
|
|
char ngx_freebsd_kern_osrelease[128];
|
2003-05-15 01:13:13 +08:00
|
|
|
int ngx_freebsd_kern_osreldate;
|
|
|
|
int ngx_freebsd_hw_ncpu;
|
|
|
|
int ngx_freebsd_net_inet_tcp_sendspace;
|
2004-09-28 16:34:51 +08:00
|
|
|
|
|
|
|
/* FreeBSD 4.9 */
|
|
|
|
int ngx_freebsd_machdep_hlt_logical_cpus;
|
2003-05-12 23:52:24 +08:00
|
|
|
|
2003-05-29 21:02:09 +08:00
|
|
|
/* FreeBSD 5.0 */
|
|
|
|
int ngx_freebsd_kern_ipc_zero_copy_send;
|
|
|
|
|
2003-05-12 23:52:24 +08:00
|
|
|
|
2004-10-04 04:02:06 +08:00
|
|
|
ngx_uint_t ngx_freebsd_sendfile_nbytes_bug;
|
|
|
|
ngx_uint_t ngx_freebsd_use_tcp_nopush;
|
2004-09-28 16:34:51 +08:00
|
|
|
|
|
|
|
|
2003-05-20 00:39:14 +08:00
|
|
|
ngx_os_io_t ngx_os_io = {
|
|
|
|
ngx_unix_recv,
|
2003-05-21 21:28:21 +08:00
|
|
|
ngx_readv_chain,
|
2004-09-07 23:29:22 +08:00
|
|
|
ngx_unix_send,
|
2004-11-26 00:17:31 +08:00
|
|
|
#if (NGX_HAVE_SENDFILE)
|
2003-05-22 23:23:47 +08:00
|
|
|
ngx_freebsd_sendfile_chain,
|
2003-11-26 23:42:18 +08:00
|
|
|
NGX_IO_SENDFILE
|
2003-10-13 00:49:16 +08:00
|
|
|
#else
|
|
|
|
ngx_writev_chain,
|
2003-11-26 04:44:56 +08:00
|
|
|
0
|
2003-10-13 00:49:16 +08:00
|
|
|
#endif
|
2003-05-20 00:39:14 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-05-29 21:02:09 +08:00
|
|
|
typedef struct {
|
2004-10-04 04:02:06 +08:00
|
|
|
char *name;
|
|
|
|
int *value;
|
|
|
|
size_t size;
|
|
|
|
ngx_uint_t exists;
|
2003-05-29 21:02:09 +08:00
|
|
|
} sysctl_t;
|
|
|
|
|
|
|
|
|
|
|
|
sysctl_t sysctls[] = {
|
2004-10-04 04:02:06 +08:00
|
|
|
{ "hw.ncpu",
|
|
|
|
&ngx_freebsd_hw_ncpu,
|
|
|
|
sizeof(int), 0 },
|
2003-05-29 21:02:09 +08:00
|
|
|
|
2004-10-04 04:02:06 +08:00
|
|
|
{ "machdep.hlt_logical_cpus",
|
|
|
|
&ngx_freebsd_machdep_hlt_logical_cpus,
|
|
|
|
sizeof(int), 0 },
|
2004-06-30 23:30:41 +08:00
|
|
|
|
2004-10-04 04:02:06 +08:00
|
|
|
{ "net.inet.tcp.sendspace",
|
|
|
|
&ngx_freebsd_net_inet_tcp_sendspace,
|
|
|
|
sizeof(int), 0 },
|
2003-05-29 21:02:09 +08:00
|
|
|
|
2004-10-04 04:02:06 +08:00
|
|
|
{ "kern.ipc.zero_copy.send",
|
|
|
|
&ngx_freebsd_kern_ipc_zero_copy_send,
|
|
|
|
sizeof(int), 0 },
|
2003-06-02 23:24:30 +08:00
|
|
|
|
2004-10-04 04:02:06 +08:00
|
|
|
{ NULL, NULL, 0, 0 }
|
2003-05-29 21:02:09 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-12-06 01:07:27 +08:00
|
|
|
void ngx_debug_init()
|
|
|
|
{
|
2004-09-21 13:38:28 +08:00
|
|
|
#if (NGX_DEBUG && !NGX_NO_DEBUG_MALLOC)
|
2003-12-06 01:07:27 +08:00
|
|
|
|
|
|
|
#if __FreeBSD_version >= 500014
|
2004-09-24 00:39:34 +08:00
|
|
|
_malloc_options = "J";
|
2003-12-06 01:07:27 +08:00
|
|
|
#else
|
2004-09-24 00:39:34 +08:00
|
|
|
malloc_options = "J";
|
2003-12-06 01:07:27 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-04 04:02:06 +08:00
|
|
|
ngx_int_t ngx_os_init(ngx_log_t *log)
|
2003-05-12 23:52:24 +08:00
|
|
|
{
|
2004-10-04 04:02:06 +08:00
|
|
|
int version;
|
|
|
|
size_t size;
|
|
|
|
ngx_err_t err;
|
|
|
|
ngx_uint_t i;
|
2003-05-12 23:52:24 +08:00
|
|
|
|
2003-06-05 01:28:33 +08:00
|
|
|
size = sizeof(ngx_freebsd_kern_ostype);
|
2003-05-15 01:13:13 +08:00
|
|
|
if (sysctlbyname("kern.ostype",
|
|
|
|
ngx_freebsd_kern_ostype, &size, NULL, 0) == -1) {
|
2004-07-15 00:01:42 +08:00
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, ngx_errno,
|
2003-05-15 01:13:13 +08:00
|
|
|
"sysctlbyname(kern.ostype) failed");
|
2004-11-11 22:07:14 +08:00
|
|
|
|
|
|
|
if (ngx_errno != NGX_ENOMEM) {
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_freebsd_kern_ostype[size - 1] = '\0';
|
2003-05-15 01:13:13 +08:00
|
|
|
}
|
|
|
|
|
2003-06-05 01:28:33 +08:00
|
|
|
size = sizeof(ngx_freebsd_kern_osrelease);
|
2003-05-15 01:13:13 +08:00
|
|
|
if (sysctlbyname("kern.osrelease",
|
|
|
|
ngx_freebsd_kern_osrelease, &size, NULL, 0) == -1) {
|
2004-07-15 00:01:42 +08:00
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, ngx_errno,
|
2003-05-15 01:13:13 +08:00
|
|
|
"sysctlbyname(kern.osrelease) failed");
|
2004-11-11 22:07:14 +08:00
|
|
|
|
|
|
|
if (ngx_errno != NGX_ENOMEM) {
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_freebsd_kern_osrelease[size - 1] = '\0';
|
2003-05-15 01:13:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-05 01:28:33 +08:00
|
|
|
size = sizeof(int);
|
2003-05-12 23:52:24 +08:00
|
|
|
if (sysctlbyname("kern.osreldate",
|
2003-05-15 01:13:13 +08:00
|
|
|
&ngx_freebsd_kern_osreldate, &size, NULL, 0) == -1) {
|
2004-07-15 00:01:42 +08:00
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, ngx_errno,
|
2003-05-12 23:52:24 +08:00
|
|
|
"sysctlbyname(kern.osreldate) failed");
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
2003-06-02 23:24:30 +08:00
|
|
|
version = ngx_freebsd_kern_osreldate;
|
|
|
|
|
2003-05-12 23:52:24 +08:00
|
|
|
|
2004-11-26 00:17:31 +08:00
|
|
|
#if (NGX_HAVE_SENDFILE)
|
2003-05-12 23:52:24 +08:00
|
|
|
|
2003-10-09 15:00:45 +08:00
|
|
|
/*
|
2004-06-21 03:54:15 +08:00
|
|
|
* The determination of the sendfile() "nbytes bug" is complex enough.
|
2004-02-09 15:46:43 +08:00
|
|
|
* There are two sendfile() syscalls: a new #393 has no bug while
|
|
|
|
* an old #336 has the bug in some versions and has not in others.
|
2003-10-09 15:00:45 +08:00
|
|
|
* Besides libc_r wrapper also emulates the bug in some versions.
|
2004-10-04 04:02:06 +08:00
|
|
|
* There is no way to say exactly if syscall #336 in FreeBSD circa 4.6
|
|
|
|
* has the bug. We use the algorithm that is correct at least for
|
|
|
|
* RELEASEs and for syscalls only (not libc_r wrapper).
|
2003-10-09 15:00:45 +08:00
|
|
|
*
|
2004-06-21 03:54:15 +08:00
|
|
|
* 4.6.1-RELEASE and below have the bug
|
|
|
|
* 4.6.2-RELEASE and above have the new syscall
|
|
|
|
*
|
|
|
|
* We detect the new sendfile() syscall available at the compile time
|
2003-10-09 15:00:45 +08:00
|
|
|
* to allow an old binary to run correctly on an updated FreeBSD system.
|
|
|
|
*/
|
2003-05-12 23:52:24 +08:00
|
|
|
|
|
|
|
#if (__FreeBSD__ == 4 && __FreeBSD_version >= 460102) \
|
|
|
|
|| __FreeBSD_version == 460002 || __FreeBSD_version >= 500039
|
|
|
|
|
|
|
|
/* a new syscall without the bug */
|
2003-10-09 15:00:45 +08:00
|
|
|
|
2003-05-15 01:13:13 +08:00
|
|
|
ngx_freebsd_sendfile_nbytes_bug = 0;
|
2003-05-12 23:52:24 +08:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2004-06-21 03:54:15 +08:00
|
|
|
/* an old syscall that may have the bug */
|
2003-10-09 15:00:45 +08:00
|
|
|
|
2003-05-15 01:13:13 +08:00
|
|
|
ngx_freebsd_sendfile_nbytes_bug = 1;
|
2003-05-12 23:52:24 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2004-11-26 00:17:31 +08:00
|
|
|
#endif /* NGX_HAVE_SENDFILE */
|
2003-05-12 23:52:24 +08:00
|
|
|
|
|
|
|
|
2003-06-02 23:24:30 +08:00
|
|
|
if ((version < 500000 && version >= 440003) || version >= 500017) {
|
2003-10-10 23:10:50 +08:00
|
|
|
ngx_freebsd_use_tcp_nopush = 1;
|
2003-06-02 23:24:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-05-29 21:02:09 +08:00
|
|
|
for (i = 0; sysctls[i].name; i++) {
|
|
|
|
*sysctls[i].value = 0;
|
|
|
|
size = sysctls[i].size;
|
2004-10-04 04:02:06 +08:00
|
|
|
|
2003-05-29 21:02:09 +08:00
|
|
|
if (sysctlbyname(sysctls[i].name, sysctls[i].value, &size, NULL, 0)
|
2004-10-04 04:02:06 +08:00
|
|
|
== 0)
|
|
|
|
{
|
|
|
|
sysctls[i].exists = 1;
|
|
|
|
continue;
|
2003-05-29 21:02:09 +08:00
|
|
|
}
|
2004-10-04 04:02:06 +08:00
|
|
|
|
|
|
|
err = ngx_errno;
|
|
|
|
|
|
|
|
if (err == NGX_ENOENT) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
if (sysctls[i].value == &ngx_freebsd_machdep_hlt_logical_cpus) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, err,
|
|
|
|
"sysctlbyname(%s) failed", sysctls[i].name);
|
|
|
|
return NGX_ERROR;
|
2003-05-15 01:13:13 +08:00
|
|
|
}
|
|
|
|
|
2004-06-30 23:30:41 +08:00
|
|
|
if (ngx_freebsd_machdep_hlt_logical_cpus) {
|
|
|
|
ngx_ncpu = ngx_freebsd_hw_ncpu / 2;
|
|
|
|
} else {
|
|
|
|
ngx_ncpu = ngx_freebsd_hw_ncpu;
|
|
|
|
}
|
|
|
|
|
2004-10-11 23:07:03 +08:00
|
|
|
|
2003-05-21 21:28:21 +08:00
|
|
|
return ngx_posix_init(log);
|
2003-05-12 23:52:24 +08:00
|
|
|
}
|
2004-10-04 04:02:06 +08:00
|
|
|
|
|
|
|
|
|
|
|
void ngx_os_status(ngx_log_t *log)
|
|
|
|
{
|
|
|
|
ngx_uint_t i;
|
|
|
|
|
|
|
|
ngx_log_error(NGX_LOG_INFO, log, 0, "OS: %s %s",
|
|
|
|
ngx_freebsd_kern_ostype, ngx_freebsd_kern_osrelease);
|
|
|
|
|
|
|
|
#ifdef __DragonFly_version
|
|
|
|
ngx_log_error(NGX_LOG_INFO, log, 0,
|
|
|
|
"kern.osreldate: %d, built on %d",
|
|
|
|
ngx_freebsd_kern_osreldate, __DragonFly_version);
|
|
|
|
#else
|
|
|
|
ngx_log_error(NGX_LOG_INFO, log, 0,
|
|
|
|
"kern.osreldate: %d, built on %d",
|
|
|
|
ngx_freebsd_kern_osreldate, __FreeBSD_version);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
for (i = 0; sysctls[i].name; i++) {
|
|
|
|
if (sysctls[i].exists) {
|
|
|
|
ngx_log_error(NGX_LOG_INFO, log, 0, "%s: %d",
|
|
|
|
sysctls[i].name, *sysctls[i].value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-11 23:07:03 +08:00
|
|
|
|
2004-10-04 04:02:06 +08:00
|
|
|
ngx_posix_status(log);
|
|
|
|
}
|