os.c revision 066877f1a045103acfdd376d48cdd473c33f409b
/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000 The Apache Software Foundation. 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. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Apache" and "Apache Software Foundation" 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 name, without prior written
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``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 SOFTWARE FOUNDATION 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 Software Foundation. For more
* information on the Apache Software Foundation, please see
*
* Portions of this software are based upon public domain software
* originally written at the National Center for Supercomputing Applications,
* University of Illinois, Urbana-Champaign.
*/
/*
* This file will include OS specific functions which are not inlineable.
* Any inlineable functions should be defined in os-inline.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;
}
const request_rec *r,
const char * const *args,
const char * const *env,
{
}