123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458 |
- /* Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #include "fspr_arch_file_io.h"
- #include "fspr_strings.h"
- #include "fspr_thread_mutex.h"
- #include "fspr_support.h"
- /* The only case where we don't use wait_for_io_or_timeout is on
- * pre-BONE BeOS, so this check should be sufficient and simpler */
- #if !BEOS_R5
- #define USE_WAIT_FOR_IO
- #endif
- APR_DECLARE(fspr_status_t) fspr_file_read(fspr_file_t *thefile, void *buf, fspr_size_t *nbytes)
- {
- fspr_ssize_t rv;
- fspr_size_t bytes_read;
- if (*nbytes <= 0) {
- *nbytes = 0;
- return APR_SUCCESS;
- }
- if (thefile->buffered) {
- char *pos = (char *)buf;
- fspr_uint64_t blocksize;
- fspr_uint64_t size = *nbytes;
- #if APR_HAS_THREADS
- if (thefile->thlock) {
- fspr_thread_mutex_lock(thefile->thlock);
- }
- #endif
- if (thefile->direction == 1) {
- rv = fspr_file_flush(thefile);
- if (rv) {
- #if APR_HAS_THREADS
- if (thefile->thlock) {
- fspr_thread_mutex_unlock(thefile->thlock);
- }
- #endif
- return rv;
- }
- thefile->bufpos = 0;
- thefile->direction = 0;
- thefile->dataRead = 0;
- }
- rv = 0;
- if (thefile->ungetchar != -1) {
- *pos = (char)thefile->ungetchar;
- ++pos;
- --size;
- thefile->ungetchar = -1;
- }
- while (rv == 0 && size > 0) {
- if (thefile->bufpos >= thefile->dataRead) {
- int bytesread = read(thefile->filedes, thefile->buffer, APR_FILE_BUFSIZE);
- if (bytesread == 0) {
- thefile->eof_hit = TRUE;
- rv = APR_EOF;
- break;
- }
- else if (bytesread == -1) {
- rv = errno;
- break;
- }
- thefile->dataRead = bytesread;
- thefile->filePtr += thefile->dataRead;
- thefile->bufpos = 0;
- }
- blocksize = size > thefile->dataRead - thefile->bufpos ? thefile->dataRead - thefile->bufpos : size;
- memcpy(pos, thefile->buffer + thefile->bufpos, blocksize);
- thefile->bufpos += blocksize;
- pos += blocksize;
- size -= blocksize;
- }
- *nbytes = pos - (char *)buf;
- if (*nbytes) {
- rv = 0;
- }
- #if APR_HAS_THREADS
- if (thefile->thlock) {
- fspr_thread_mutex_unlock(thefile->thlock);
- }
- #endif
- return rv;
- }
- else {
- bytes_read = 0;
- if (thefile->ungetchar != -1) {
- bytes_read = 1;
- *(char *)buf = (char)thefile->ungetchar;
- buf = (char *)buf + 1;
- (*nbytes)--;
- thefile->ungetchar = -1;
- if (*nbytes == 0) {
- *nbytes = bytes_read;
- return APR_SUCCESS;
- }
- }
- do {
- rv = read(thefile->filedes, buf, *nbytes);
- } while (rv == -1 && errno == EINTR);
- #ifdef USE_WAIT_FOR_IO
- if (rv == -1 &&
- (errno == EAGAIN || errno == EWOULDBLOCK) &&
- thefile->timeout != 0) {
- fspr_status_t arv = fspr_wait_for_io_or_timeout(thefile, NULL, 1);
- if (arv != APR_SUCCESS) {
- *nbytes = bytes_read;
- return arv;
- }
- else {
- do {
- rv = read(thefile->filedes, buf, *nbytes);
- } while (rv == -1 && errno == EINTR);
- }
- }
- #endif
- *nbytes = bytes_read;
- if (rv == 0) {
- thefile->eof_hit = TRUE;
- return APR_EOF;
- }
- if (rv > 0) {
- *nbytes += rv;
- return APR_SUCCESS;
- }
- return errno;
- }
- }
- APR_DECLARE(fspr_status_t) fspr_file_write(fspr_file_t *thefile, const void *buf, fspr_size_t *nbytes)
- {
- fspr_size_t rv;
- if (thefile->buffered) {
- char *pos = (char *)buf;
- int blocksize;
- int size = *nbytes;
- #if APR_HAS_THREADS
- if (thefile->thlock) {
- fspr_thread_mutex_lock(thefile->thlock);
- }
- #endif
- if ( thefile->direction == 0 ) {
- /* Position file pointer for writing at the offset we are
- * logically reading from
- */
- fspr_int64_t offset = thefile->filePtr - thefile->dataRead + thefile->bufpos;
- if (offset != thefile->filePtr)
- lseek(thefile->filedes, offset, SEEK_SET);
- thefile->bufpos = thefile->dataRead = 0;
- thefile->direction = 1;
- }
- rv = 0;
- while (rv == 0 && size > 0) {
- if (thefile->bufpos == APR_FILE_BUFSIZE) /* write buffer is full*/
- rv = fspr_file_flush(thefile);
- blocksize = size > APR_FILE_BUFSIZE - thefile->bufpos ?
- APR_FILE_BUFSIZE - thefile->bufpos : size;
- memcpy(thefile->buffer + thefile->bufpos, pos, blocksize);
- thefile->bufpos += blocksize;
- pos += blocksize;
- size -= blocksize;
- }
- #if APR_HAS_THREADS
- if (thefile->thlock) {
- fspr_thread_mutex_unlock(thefile->thlock);
- }
- #endif
- return rv;
- }
- else {
- do {
- rv = write(thefile->filedes, buf, *nbytes);
- } while (rv == (fspr_size_t)-1 && errno == EINTR);
- #ifdef USE_WAIT_FOR_IO
- if (rv == (fspr_size_t)-1 &&
- (errno == EAGAIN || errno == EWOULDBLOCK) &&
- thefile->timeout != 0) {
- fspr_status_t arv = fspr_wait_for_io_or_timeout(thefile, NULL, 0);
- if (arv != APR_SUCCESS) {
- *nbytes = 0;
- return arv;
- }
- else {
- do {
- do {
- rv = write(thefile->filedes, buf, *nbytes);
- } while (rv == (fspr_size_t)-1 && errno == EINTR);
- if (rv == (fspr_size_t)-1 &&
- (errno == EAGAIN || errno == EWOULDBLOCK)) {
- *nbytes /= 2; /* yes, we'll loop if kernel lied
- * and we can't even write 1 byte
- */
- }
- else {
- break;
- }
- } while (1);
- }
- }
- #endif
- if (rv == (fspr_size_t)-1) {
- (*nbytes) = 0;
- return errno;
- }
- *nbytes = rv;
- return APR_SUCCESS;
- }
- }
- APR_DECLARE(fspr_status_t) fspr_file_writev(fspr_file_t *thefile, const struct iovec *vec,
- fspr_size_t nvec, fspr_size_t *nbytes)
- {
- #ifdef HAVE_WRITEV
- int bytes;
- if ((bytes = writev(thefile->filedes, vec, nvec)) < 0) {
- *nbytes = 0;
- return errno;
- }
- else {
- *nbytes = bytes;
- return APR_SUCCESS;
- }
- #else
- /**
- * The problem with trying to output the entire iovec is that we cannot
- * maintain the behavoir that a real writev would have. If we iterate
- * over the iovec one at a time, we loose the atomic properties of
- * writev(). The other option is to combine the entire iovec into one
- * buffer that we could then send in one call to write(). This is not
- * reasonable since we do not know how much data an iovec could contain.
- *
- * The only reasonable option, that maintains the semantics of a real
- * writev(), is to only write the first iovec. Callers of file_writev()
- * must deal with partial writes as they normally would. If you want to
- * ensure an entire iovec is written, use fspr_file_writev_full().
- */
- *nbytes = vec[0].iov_len;
- return fspr_file_write(thefile, vec[0].iov_base, nbytes);
- #endif
- }
- APR_DECLARE(fspr_status_t) fspr_file_putc(char ch, fspr_file_t *thefile)
- {
- fspr_size_t nbytes = 1;
- return fspr_file_write(thefile, &ch, &nbytes);
- }
- APR_DECLARE(fspr_status_t) fspr_file_ungetc(char ch, fspr_file_t *thefile)
- {
- thefile->ungetchar = (unsigned char)ch;
- return APR_SUCCESS;
- }
- APR_DECLARE(fspr_status_t) fspr_file_getc(char *ch, fspr_file_t *thefile)
- {
- fspr_size_t nbytes = 1;
- return fspr_file_read(thefile, ch, &nbytes);
- }
- APR_DECLARE(fspr_status_t) fspr_file_puts(const char *str, fspr_file_t *thefile)
- {
- return fspr_file_write_full(thefile, str, strlen(str), NULL);
- }
- APR_DECLARE(fspr_status_t) fspr_file_flush(fspr_file_t *thefile)
- {
- if (thefile->buffered) {
- fspr_int64_t written = 0;
- if (thefile->direction == 1 && thefile->bufpos) {
- do {
- written = write(thefile->filedes, thefile->buffer, thefile->bufpos);
- } while (written == (fspr_int64_t)-1 && errno == EINTR);
- if (written == (fspr_int64_t)-1) {
- return errno;
- }
- thefile->filePtr += written;
- thefile->bufpos = 0;
- }
- }
- /* There isn't anything to do if we aren't buffering the output
- * so just return success.
- */
- return APR_SUCCESS;
- }
- APR_DECLARE(fspr_status_t) fspr_file_gets(char *str, int len, fspr_file_t *thefile)
- {
- fspr_status_t rv = APR_SUCCESS; /* get rid of gcc warning */
- fspr_size_t nbytes;
- const char *str_start = str;
- char *final = str + len - 1;
- if (len <= 1) {
- /* sort of like fgets(), which returns NULL and stores no bytes
- */
- return APR_SUCCESS;
- }
- /* If we have an underlying buffer, we can be *much* more efficient
- * and skip over the fspr_file_read calls.
- */
- if (thefile->buffered) {
- #if APR_HAS_THREADS
- if (thefile->thlock) {
- fspr_thread_mutex_lock(thefile->thlock);
- }
- #endif
- if (thefile->direction == 1) {
- rv = fspr_file_flush(thefile);
- if (rv) {
- #if APR_HAS_THREADS
- if (thefile->thlock) {
- fspr_thread_mutex_unlock(thefile->thlock);
- }
- #endif
- return rv;
- }
- thefile->direction = 0;
- thefile->bufpos = 0;
- thefile->dataRead = 0;
- }
- while (str < final) { /* leave room for trailing '\0' */
- /* Force ungetc leftover to call fspr_file_read. */
- if (thefile->bufpos < thefile->dataRead &&
- thefile->ungetchar == -1) {
- *str = thefile->buffer[thefile->bufpos++];
- }
- else {
- nbytes = 1;
- rv = fspr_file_read(thefile, str, &nbytes);
- if (rv != APR_SUCCESS) {
- break;
- }
- }
- if (*str == '\n') {
- ++str;
- break;
- }
- ++str;
- }
- #if APR_HAS_THREADS
- if (thefile->thlock) {
- fspr_thread_mutex_unlock(thefile->thlock);
- }
- #endif
- }
- else {
- while (str < final) { /* leave room for trailing '\0' */
- nbytes = 1;
- rv = fspr_file_read(thefile, str, &nbytes);
- if (rv != APR_SUCCESS) {
- break;
- }
- if (*str == '\n') {
- ++str;
- break;
- }
- ++str;
- }
- }
- /* We must store a terminating '\0' if we've stored any chars. We can
- * get away with storing it if we hit an error first.
- */
- *str = '\0';
- if (str > str_start) {
- /* we stored chars; don't report EOF or any other errors;
- * the app will find out about that on the next call
- */
- return APR_SUCCESS;
- }
- return rv;
- }
- struct fspr_file_printf_data {
- fspr_vformatter_buff_t vbuff;
- fspr_file_t *fptr;
- char *buf;
- };
- static int file_printf_flush(fspr_vformatter_buff_t *buff)
- {
- struct fspr_file_printf_data *data = (struct fspr_file_printf_data *)buff;
- if (fspr_file_write_full(data->fptr, data->buf,
- data->vbuff.curpos - data->buf, NULL)) {
- return -1;
- }
- data->vbuff.curpos = data->buf;
- return 0;
- }
- APR_DECLARE_NONSTD(int) fspr_file_printf(fspr_file_t *fptr,
- const char *format, ...)
- {
- struct fspr_file_printf_data data;
- va_list ap;
- int count;
- /* don't really need a HUGE_STRING_LEN anymore */
- data.buf = malloc(HUGE_STRING_LEN);
- if (data.buf == NULL) {
- return -1;
- }
- data.vbuff.curpos = data.buf;
- data.vbuff.endpos = data.buf + HUGE_STRING_LEN;
- data.fptr = fptr;
- va_start(ap, format);
- count = fspr_vformatter(file_printf_flush,
- (fspr_vformatter_buff_t *)&data, format, ap);
- /* fspr_vformatter does not call flush for the last bits */
- if (count >= 0) file_printf_flush((fspr_vformatter_buff_t *)&data);
- va_end(ap);
- free(data.buf);
- return count;
- }
|