~ubuntu-branches/ubuntu/trusty/libarchive/trusty

« back to all changes in this revision

Viewing changes to archive_read_open_fd.c

  • Committer: Bazaar Package Importer
  • Author(s): John Goerzen
  • Date: 2005-10-18 11:02:06 UTC
  • Revision ID: james.westby@ubuntu.com-20051018110206-akz0ys1qxoojy73o
Tags: upstream-1.02.036
ImportĀ upstreamĀ versionĀ 1.02.036

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-
 
2
 * Copyright (c) 2003-2004 Tim Kientzle
 
3
 * All rights reserved.
 
4
 *
 
5
 * Redistribution and use in source and binary forms, with or without
 
6
 * modification, are permitted provided that the following conditions
 
7
 * are met:
 
8
 * 1. Redistributions of source code must retain the above copyright
 
9
 *    notice, this list of conditions and the following disclaimer
 
10
 *    in this position and unchanged.
 
11
 * 2. Redistributions in binary form must reproduce the above copyright
 
12
 *    notice, this list of conditions and the following disclaimer in the
 
13
 *    documentation and/or other materials provided with the distribution.
 
14
 *
 
15
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
 
16
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
17
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 
18
 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
 
19
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 
20
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
21
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
22
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
23
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 
24
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
25
 */
 
26
 
 
27
#include "archive_platform.h"
 
28
__FBSDID("$FreeBSD: src/lib/libarchive/archive_read_open_fd.c,v 1.4 2005/09/21 04:25:05 kientzle Exp $");
 
29
 
 
30
#include <sys/stat.h>
 
31
#include <errno.h>
 
32
#include <stdlib.h>
 
33
#include <string.h>
 
34
#include <unistd.h>
 
35
 
 
36
#include "archive.h"
 
37
#include "archive_private.h"
 
38
 
 
39
struct read_fd_data {
 
40
        int      fd;
 
41
        size_t   block_size;
 
42
        void    *buffer;
 
43
};
 
44
 
 
45
static int      file_close(struct archive *, void *);
 
46
static int      file_open(struct archive *, void *);
 
47
static ssize_t  file_read(struct archive *, void *, const void **buff);
 
48
 
 
49
int
 
50
archive_read_open_fd(struct archive *a, int fd, size_t block_size)
 
51
{
 
52
        struct read_fd_data *mine;
 
53
 
 
54
        mine = malloc(sizeof(*mine));
 
55
        if (mine == NULL) {
 
56
                archive_set_error(a, ENOMEM, "No memory");
 
57
                return (ARCHIVE_FATAL);
 
58
        }
 
59
        mine->block_size = block_size;
 
60
        mine->buffer = malloc(mine->block_size);
 
61
        if (mine->buffer == NULL) {
 
62
                archive_set_error(a, ENOMEM, "No memory");
 
63
                free(mine);
 
64
                return (ARCHIVE_FATAL);
 
65
        }
 
66
        mine->fd = fd;
 
67
        return (archive_read_open(a, mine, file_open, file_read, file_close));
 
68
}
 
69
 
 
70
static int
 
71
file_open(struct archive *a, void *client_data)
 
72
{
 
73
        struct read_fd_data *mine = client_data;
 
74
        struct stat st;
 
75
 
 
76
        if (fstat(mine->fd, &st) != 0) {
 
77
                archive_set_error(a, errno, "Can't stat fd %d", mine->fd);
 
78
                return (ARCHIVE_FATAL);
 
79
        }
 
80
 
 
81
        a->skip_file_dev = st.st_dev;
 
82
        a->skip_file_ino = st.st_ino;
 
83
        return (ARCHIVE_OK);
 
84
}
 
85
 
 
86
static ssize_t
 
87
file_read(struct archive *a, void *client_data, const void **buff)
 
88
{
 
89
        struct read_fd_data *mine = client_data;
 
90
 
 
91
        (void)a; /* UNUSED */
 
92
        *buff = mine->buffer;
 
93
        return (read(mine->fd, mine->buffer, mine->block_size));
 
94
}
 
95
 
 
96
static int
 
97
file_close(struct archive *a, void *client_data)
 
98
{
 
99
        struct read_fd_data *mine = client_data;
 
100
 
 
101
        (void)a; /* UNUSED */
 
102
        free(mine->buffer);
 
103
        free(mine);
 
104
        return (ARCHIVE_OK);
 
105
}