fstream.c 8.62 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446
/* GNU mailutils - a suite of utilities for electronic mail
   Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Library Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif

#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>

#include <mailutils/sys/fstream.h>
#include <mailutils/error.h>


static int
_fs_add_ref (stream_t stream)
{
  struct _fs *fs = (struct _fs *)stream;
  int status;
  monitor_lock (fs->lock);
  status = ++fs->ref;
  monitor_unlock (fs->lock);
  return status;
}

static int
_fs_destroy (stream_t stream)
{
  struct _fs *fs = (struct _fs *)stream;
  if (fs->file)
    fclose (fs->file);
  monitor_destroy (fs->lock);
  free (fs);
  return 0;
}

static int
_fs_release (stream_t stream)
{
  int status;
  struct _fs *fs = (struct _fs *)stream;
  monitor_lock (fs->lock);
  status = --fs->ref;
  if (status <= 0)
    {
      monitor_unlock (fs->lock);
      _fs_destroy (stream);
      return 0;
    }
  monitor_unlock (fs->lock);
  return status;
}

static int
_fs_read (stream_t stream, void *optr, size_t osize, size_t *nbytes)
{
  struct _fs *fs = (struct _fs *)stream;
  size_t n = 0;
  int err = 0;

  if (fs->file)
    {
      n = fread (optr, 1, osize, fs->file);
      if (n == 0)
	{
	  if (ferror(fs->file))
	    err = MU_ERROR_IO;
	}
    }

  if (nbytes)
    *nbytes = n;
  return err;
}

static int
_fs_readline (stream_t stream, char *optr, size_t osize, size_t *nbytes)
{
  struct _fs *fs = (struct _fs *)stream;
  size_t n = 0;
  int err = 0;

  if (fs->file)
    {
      if (fgets (optr, osize, fs->file) != NULL)
	{
	  n = strlen (optr);
	}
      else
	{
	  if (ferror (fs->file))
	    err = MU_ERROR_IO;
	}
    }

  if (nbytes)
    *nbytes = n;
  return err;
}

static int
_fs_write (stream_t stream, const void *iptr, size_t isize, size_t *nbytes)
{
  struct _fs *fs = (struct _fs *)stream;
  size_t n = 0;
  int err = 0;

  if (fs->file)
    {
      n = fwrite (iptr, 1, isize, fs->file);
      if (n != isize)
	{
	  if (feof (fs->file) == 0)
	    err = MU_ERROR_IO;
	  clearerr(fs->file);
	  n = 0;
	}
    }

  if (nbytes)
    *nbytes = n;
  return err;
}

static int
_fs_truncate (stream_t stream, off_t len)
{
  struct _fs *fs = (struct _fs *)stream;
  if (fs->file && ftruncate (fileno (fs->file), len) != 0)
    return MU_ERROR_IO;
  return 0;
}

static int
_fs_get_size (stream_t stream, off_t *psize)
{
  struct _fs *fs = (struct _fs *)stream;
  struct stat stbuf;
  stbuf.st_size = 0;
  if (fs->file)
    {
      fflush (fs->file);
      if (fstat (fileno (fs->file), &stbuf) == -1)
	return errno;
    }
  if (psize)
    *psize = stbuf.st_size;
  return 0;
}

static int
_fs_flush (stream_t stream)
{
  struct _fs *fs = (struct _fs *)stream;
  if (fs->file)
    return fflush (fs->file);
  return 0;
}

static int
_fs_get_fd (stream_t stream, int *pfd)
{
  struct _fs *fs = (struct _fs *)stream;
  int status = 0;
  if (pfd)
    {
      if (fs->file)
	*pfd = fileno (fs->file);
      else
	status = MU_ERROR_INVALID_PARAMETER;
    }
  return status;
}

static int
_fs_seek (stream_t stream, off_t off, enum stream_whence whence)
{
  struct _fs *fs = (struct _fs *)stream;
  int err = 0;
  if (fs->file)
    {
      errno = MU_ERROR_INVALID_PARAMETER;
      if (whence == MU_STREAM_WHENCE_SET)
	err = fseek (fs->file, off, SEEK_SET);
      else if (whence == MU_STREAM_WHENCE_CUR)
	err = fseek (fs->file, off, SEEK_CUR);
      else if (whence == MU_STREAM_WHENCE_END)
	err = fseek (fs->file, off, SEEK_END);
      else
	err = MU_ERROR_INVALID_PARAMETER;
      if (err != 0)
	err = errno;
    }
  return err;
}

static int
_fs_tell (stream_t stream, off_t *off)
{
  struct _fs *fs = (struct _fs *)stream;
  if (off == NULL)
    return MU_ERROR_INVALID_PARAMETER;
  *off = (fs->file) ? ftell (fs->file) : 0;
  return 0;
}

static int
_fs_get_flags (stream_t stream, int *flags)
{
  struct _fs *fs = (struct _fs *)stream;
  if (flags == NULL)
    return MU_ERROR_INVALID_PARAMETER;
  *flags = fs->flags;
  return 0;
}

static int
_fs_get_state (stream_t stream, enum stream_state *state)
{
  (void)stream;
  if (state == NULL)
    return MU_ERROR_INVALID_PARAMETER;
  *state = MU_STREAM_NO_STATE;
  return 0;
}

static int
_fs_is_open (stream_t stream)
{
  struct _fs *fs = (struct _fs *)stream;
  return (fs->file) ? 1 : 0;
}

static int
_fs_is_readready (stream_t stream, int timeout)
{
  (void)timeout;
  return _fs_is_open (stream);
}

static int
_fs_is_writeready (stream_t stream, int timeout)
{
  (void)timeout;
  return _fs_is_open (stream);
}

static int
_fs_is_exceptionpending (stream_t stream, int timeout)
{
  (void)stream;
  (void)timeout;
  return 0;
}


static int
_fs_close (stream_t stream)
{
  struct _fs *fs = (struct _fs *)stream;
  int err = 0;
  if (fs->file)
    {
      if (fclose (fs->file) != 0)
	err = errno;
      fs->file = NULL;
    }
  return err;
}

static int
_fs_open (stream_t stream, const char *filename, int port, int flags)
{
  struct _fs *fs = (struct _fs *)stream;
  int flg;
  int fd;
  const char *mode;

  (void)port; /* Ignored.  */

  if (fs->file)
    {
      fclose (fs->file);
      fs->file = NULL;
    }

  /* Map the flags to the system equivalent.  */
  if (flags & MU_STREAM_WRITE && flags & MU_STREAM_READ)
    return EINVAL;
  else if (flags & MU_STREAM_WRITE)
    flg = O_WRONLY;
  else if (flags & MU_STREAM_RDWR)
    flg = O_RDWR;
  else /* default */
    flg = O_RDONLY;

  /* Local folders should not block it is local disk ???
     We simply ignore the O_NONBLOCK flag
     But take care of the APPEND.  */
  if (flags & MU_STREAM_APPEND)
    flg |= O_APPEND;

  /* Handle CREAT with care, not to follow symlinks.  */
  if (flags & MU_STREAM_CREAT)
    {
      /* First see if the file already exists.  */
      fd = open(filename, flg);
      if (fd == -1)
	{
	  /* Oops bail out.  */
	  if (errno != ENOENT)
	    return errno;
	  /* Race condition here when creating the file ??.  */
	  fd = open(filename, flg|O_CREAT|O_EXCL, 0600);
	  if (fd < 0)
	    return errno;
	}
    }
  else
    {
      fd = open (filename, flg);
      if (fd < 0)
        return errno;
    }

  /* We have to make sure that We did not open
     a symlink. From Casper D. in bugtraq.  */
  if ((flg & MU_STREAM_CREAT) ||
      (flg & MU_STREAM_RDWR) ||
      (flg & MU_STREAM_WRITE))
    {
      struct stat fdbuf, filebuf;

      /* The next two stats should never fail.  */
      if (fstat(fd, &fdbuf) == -1)
	return errno;
      if (lstat(filename, &filebuf) == -1)
	return errno;

      /* Now check that: file and fd reference the same file,
	 file only has one link, file is plain file.  */
      if (fdbuf.st_dev != filebuf.st_dev
	  || fdbuf.st_ino != filebuf.st_ino
	  || fdbuf.st_nlink != 1
	  || filebuf.st_nlink != 1
	  || !S_ISREG(fdbuf.st_mode))
	{
	  mu_error ("%s must be a plain file with one link\n", filename);
	  close (fd);
	  return EINVAL;
	}
    }
  /* We use FILE * object.  */
  if (flags & MU_STREAM_APPEND)
    mode = "a";
  else if (flags & MU_STREAM_RDWR)
    mode = "r+b";
  else if (flags & MU_STREAM_WRITE)
    mode = "wb";
  else /* Default readonly.  */
    mode = "rb";

  fs->file = fdopen (fd, mode);
  if (fs->file == NULL)
    {
      int ret = errno;
      free (fs);
      return ret;
    }
  fs->flags = flags;
  return 0;
}

static struct _stream_vtable _fs_vtable =
{
  _fs_add_ref,
  _fs_release,
  _fs_destroy,

  _fs_open,
  _fs_close,

  _fs_read,
  _fs_readline,
  _fs_write,

  _fs_seek,
  _fs_tell,

  _fs_get_size,
  _fs_truncate,
  _fs_flush,

  _fs_get_fd,
  _fs_get_flags,
  _fs_get_state,

  _fs_is_readready,
  _fs_is_writeready,
  _fs_is_exceptionpending,

  _fs_is_open
};

int
stream_file_create (stream_t *pstream)
{
  struct _fs *fs;

  if (pstream == NULL)
    return MU_ERROR_INVALID_PARAMETER;

  fs = calloc (1, sizeof *fs);
  if (fs == NULL)
    return MU_ERROR_NO_MEMORY ;

  fs->base.vtable = &_fs_vtable;
  fs->ref = 1;
  fs->file = NULL;
  fs->flags = 0;
  monitor_create (&(fs->lock));
  *pstream = &fs->base;
  return 0;
}