os.c revision b4c8a80f7dbfc9b56dbe03bdc28f0b5eb5f23697
/* ====================================================================
* Copyright (c) 1998-1999 The Apache Group. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* distribution.
*
* 3. All advertising materials mentioning features or use of this
* software must display the following acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
*
* 4. The names "Apache Server" and "Apache Group" must not be used to
* endorse or promote products derived from this software without
* prior written permission. For written permission, please contact
* apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache"
* nor may "Apache" appear in their names without prior written
* permission of the Apache Group.
*
* 6. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by the Apache Group
* for use in the Apache HTTP server project (http://www.apache.org/)."
*
* THIS SOFTWARE IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE APACHE GROUP OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Group and was originally based
* on public domain software written at the National Center for
* Supercomputing Applications, University of Illinois, Urbana-Champaign.
* For more information on the Apache Group and the Apache HTTP server
* project, please see <http://www.apache.org/>.
*
*/
/*
* This file will include OS specific functions which are not inlineable.
* Any inlineable functions should be defined in os ap_context_t nline.c instead.
*/
#include "httpd.h"
#include "http_core.h"
#include "os.h"
#include "scoreboard.h"
#include "http_log.h"
#include "http_conf_globals.h"
/* Check the Content-Type to decide if conversion is needed */
int ap_checkconv(struct request_rec *r)
{
int convert_to_ascii;
const char *type;
/* To make serving of "raw ASCII text" files easy (they serve faster
* since they don't have to be converted from EBCDIC), a new
* If we detect one of these content types here, we simply correct
* the type to the real text/{plain,html,...} type. Otherwise, we
* set a flag that translation is required later on.
*/
/* Conversion is applied to text/ files only, if ever. */
sizeof(ASCIITEXT_MAGIC_TYPE_PREFIX)-1) == 0){
if (r->method_number == M_PUT)
}
else
/* translate EBCDIC to ASCII */
convert_to_ascii = 1;
}
else{
if (r->method_number == M_PUT)
/* don't translate non-text files to EBCDIC */
}
/* Enable conversion if it's a text document */
return convert_to_ascii;
}
{
/* We're going to force our way through select. We're only interested reads and TPF allows
2billion+ socket descriptors for we don't want an fd_set that big. Just assume that maxfds-1
contains the socket descriptor we're interested in. If it's 0, leave it alone. */
int sockets[1];
int no_reads = 0;
int no_writes = 0;
int no_excepts = 0;
int timeout = 0;
int rv;
if(maxfds) {
if(tv)
no_reads++;
}
else
sockets[0] = 0;
return rv;
}
{
int socks[1];
int rv;
errno = sock_errno();
if(rv>0) {
errno = sock_errno();
}
return rv;
}
/* the getpass function is not usable on TPF */
{
return((char *)NULL);
}
#ifndef __PIPE_
{
return(-1);
}
#endif
/* fork and exec functions are not defined on
TPF due to the implementation of tpf_fork() */
{
return(-1);
}
{
return(-1);
}
{
return(-1);
}
{
return(-1);
}
{
return(-1);
}
{
struct tpf_fork_input fork_input;
if (func) {
return 0; /* error from child function */
}
}
if (pipe_out) {
}
if (pipe_in) {
}
if (pipe_err) {
}
if (cld->subprocess_env) {
continue;
}
}
save_errno = errno;
if (pipe_out) {
}
if (pipe_in) {
}
if (pipe_err) {
}
errno = save_errno;
pid = 0;
}
if (cld->subprocess_env) {
continue;
}
}
if (pipe_out) {
}
if (pipe_in) {
}
if (pipe_err) {
}
if (pid) {
if (pipe_out) {
}
if (pipe_in) {
}
if (pipe_err) {
}
}
return pid;
}
{
struct tpf_fork_input fork_input;
int count;
listen_rec *lr;
"unable to replace stdin with sock device driver");
"unable to replace stdout with sock device driver");
#ifdef SCOREBOARD_FILE
#else /* must be USE_TPF_SCOREBOARD or USE_SHMGET_SCOREBOARD */
#endif
lr = ap_listeners;
count = 0;
do {
count++;
} while(lr != ap_listeners);
return tpf_fork(&fork_input);
}
int os_check_server(char *server) {
#ifndef USE_TPF_DAEMON
int rv;
int *current_acn;
return 1;
else {
return 1;
}
#endif
return 0;
}
char sockfilename[50];
/* write the socket to file so that TPF socket device driver will close socket in case
we happen to abend. */
}
tpf_child = 1;
}