2003-05-12 23:52:24 +08:00
|
|
|
|
|
|
|
#include <ngx_freebsd_init.h>
|
|
|
|
|
|
|
|
|
2003-05-29 21:02:09 +08:00
|
|
|
/* FreeBSD 3.4 at least */
|
2003-05-15 01:13:13 +08:00
|
|
|
char ngx_freebsd_kern_ostype[20];
|
|
|
|
char ngx_freebsd_kern_osrelease[20];
|
|
|
|
int ngx_freebsd_kern_osreldate;
|
|
|
|
int ngx_freebsd_hw_ncpu;
|
|
|
|
int ngx_freebsd_net_inet_tcp_sendspace;
|
|
|
|
int ngx_freebsd_sendfile_nbytes_bug;
|
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
|
|
|
|
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,
|
2003-05-20 00:39:14 +08:00
|
|
|
NULL,
|
2003-05-22 23:23:47 +08:00
|
|
|
ngx_freebsd_sendfile_chain,
|
2003-05-21 21:28:21 +08:00
|
|
|
NGX_HAVE_SENDFILE|NGX_HAVE_ZEROCOPY
|
2003-05-20 00:39:14 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-05-29 21:02:09 +08:00
|
|
|
typedef struct {
|
|
|
|
char *name;
|
|
|
|
int *value;
|
|
|
|
size_t size;
|
|
|
|
} sysctl_t;
|
|
|
|
|
|
|
|
|
|
|
|
sysctl_t sysctls[] = {
|
|
|
|
{"hw.ncpu",
|
|
|
|
&ngx_freebsd_hw_ncpu,
|
|
|
|
sizeof(int)},
|
|
|
|
|
|
|
|
{"net.inet.tcp.sendspace",
|
|
|
|
&ngx_freebsd_net_inet_tcp_sendspace,
|
|
|
|
sizeof(int)},
|
|
|
|
|
|
|
|
{"kern.ipc.zero_copy.send",
|
|
|
|
&ngx_freebsd_kern_ipc_zero_copy_send,
|
|
|
|
sizeof(int)},
|
|
|
|
|
|
|
|
{NULL, NULL, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-05-12 23:52:24 +08:00
|
|
|
int ngx_os_init(ngx_log_t *log)
|
|
|
|
{
|
2003-05-29 21:02:09 +08:00
|
|
|
int i;
|
|
|
|
size_t size;
|
|
|
|
ngx_err_t err;
|
2003-05-12 23:52:24 +08:00
|
|
|
|
2003-05-15 01:13:13 +08:00
|
|
|
size = 20;
|
|
|
|
if (sysctlbyname("kern.ostype",
|
|
|
|
ngx_freebsd_kern_ostype, &size, NULL, 0) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, errno,
|
|
|
|
"sysctlbyname(kern.ostype) failed");
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
size = 20;
|
|
|
|
if (sysctlbyname("kern.osrelease",
|
|
|
|
ngx_freebsd_kern_osrelease, &size, NULL, 0) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, errno,
|
|
|
|
"sysctlbyname(kern.osrelease) failed");
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_log_error(NGX_LOG_INFO, log, 0, "OS: %s %s",
|
|
|
|
ngx_freebsd_kern_ostype, ngx_freebsd_kern_osrelease);
|
|
|
|
|
|
|
|
|
2003-05-12 23:52:24 +08:00
|
|
|
size = 4;
|
|
|
|
if (sysctlbyname("kern.osreldate",
|
2003-05-15 01:13:13 +08:00
|
|
|
&ngx_freebsd_kern_osreldate, &size, NULL, 0) == -1) {
|
2003-05-12 23:52:24 +08:00
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, errno,
|
|
|
|
"sysctlbyname(kern.osreldate) failed");
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_log_error(NGX_LOG_INFO, log, 0,
|
|
|
|
"kern.osreldate: %d, built on %d",
|
2003-05-15 01:13:13 +08:00
|
|
|
ngx_freebsd_kern_osreldate, __FreeBSD_version);
|
2003-05-12 23:52:24 +08:00
|
|
|
|
|
|
|
|
2003-05-22 23:23:47 +08:00
|
|
|
#if (HAVE_FREEBSD_SENDFILE)
|
2003-05-12 23:52:24 +08:00
|
|
|
|
|
|
|
/* The determination of the sendfile() nbytes bug is complex enough.
|
|
|
|
There're two sendfile() syscalls: a new 393 has no bug while
|
|
|
|
an old 336 has the bug in some versions and has not in others.
|
|
|
|
libc_r wrapper also emulates the bug in some versions.
|
|
|
|
There's no way to say exactly if a given FreeBSD version has bug.
|
|
|
|
Here is the algorithm that work at least for RELEASEs
|
|
|
|
and for syscalls only (not libc_r wrapper). */
|
|
|
|
|
|
|
|
/* detect was the new sendfile() version available at the compile time
|
|
|
|
to allow an old binary to run correctly on an updated FreeBSD system. */
|
|
|
|
|
|
|
|
#if (__FreeBSD__ == 4 && __FreeBSD_version >= 460102) \
|
|
|
|
|| __FreeBSD_version == 460002 || __FreeBSD_version >= 500039
|
|
|
|
|
|
|
|
/* a new syscall without the bug */
|
2003-05-15 01:13:13 +08:00
|
|
|
ngx_freebsd_sendfile_nbytes_bug = 0;
|
2003-05-12 23:52:24 +08:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
/* an old syscall that can have the bug */
|
2003-05-15 01:13:13 +08:00
|
|
|
ngx_freebsd_sendfile_nbytes_bug = 1;
|
2003-05-12 23:52:24 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* HAVE_FREEBSD_SENDFILE */
|
|
|
|
|
|
|
|
|
2003-05-29 21:02:09 +08:00
|
|
|
for (i = 0; sysctls[i].name; i++) {
|
|
|
|
*sysctls[i].value = 0;
|
|
|
|
size = sysctls[i].size;
|
|
|
|
if (sysctlbyname(sysctls[i].name, sysctls[i].value, &size, NULL, 0)
|
|
|
|
== -1) {
|
|
|
|
err = errno;
|
|
|
|
if (err != NGX_ENOENT) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, err,
|
|
|
|
"sysctlbyname(%s) failed", sysctls[i].name);
|
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
ngx_log_error(NGX_LOG_INFO, log, 0, "%s: %d",
|
|
|
|
sysctls[i].name, *sysctls[i].value);
|
|
|
|
}
|
2003-05-15 01:13:13 +08:00
|
|
|
}
|
|
|
|
|
2003-05-21 21:28:21 +08:00
|
|
|
return ngx_posix_init(log);
|
2003-05-12 23:52:24 +08:00
|
|
|
}
|