xref: /PHP-7.4/ext/fileinfo/libmagic/buffer.c (revision f002761e)
1 /*
2  * Copyright (c) Christos Zoulas 2017.
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 immediately at the beginning of the file, without modification,
10  *    this list of conditions, and the following disclaimer.
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 AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
19  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27 #include "file.h"
28 
29 #ifndef	lint
30 FILE_RCSID("@(#)$File: buffer.c,v 1.6 2019/05/07 02:27:11 christos Exp $")
31 #endif	/* lint */
32 
33 #include "magic.h"
34 #ifdef PHP_WIN32
35 #include "win32/unistd.h"
36 #else
37 #include <unistd.h>
38 #endif
39 #include <string.h>
40 #include <stdlib.h>
41 #include <sys/stat.h>
42 
43 void
buffer_init(struct buffer * b,int fd,const zend_stat_t * st,const void * data,size_t len)44 buffer_init(struct buffer *b, int fd, const zend_stat_t *st, const void *data,
45     size_t len)
46 {
47 	b->fd = fd;
48 	if (st)
49 		memcpy(&b->st, st, sizeof(b->st));
50 	else if (b->fd == -1 || zend_fstat(b->fd, &b->st) == -1)
51 		memset(&b->st, 0, sizeof(b->st));
52 	b->fbuf = data;
53 	b->flen = len;
54 	b->eoff = 0;
55 	b->ebuf = NULL;
56 	b->elen = 0;
57 }
58 
59 void
buffer_fini(struct buffer * b)60 buffer_fini(struct buffer *b)
61 {
62 	efree(b->ebuf);
63 }
64 
65 int
buffer_fill(const struct buffer * bb)66 buffer_fill(const struct buffer *bb)
67 {
68 	struct buffer *b = CCAST(struct buffer *, bb);
69 
70 	if (b->elen != 0)
71 		return b->elen == CAST(size_t, ~0) ? -1 : 0;
72 
73 	if (!S_ISREG(b->st.st_mode))
74 		goto out;
75 
76 	b->elen =  CAST(size_t, b->st.st_size) < b->flen ?
77 	    CAST(size_t, b->st.st_size) : b->flen;
78 	if ((b->ebuf = emalloc(b->elen)) == NULL)
79 		goto out;
80 
81 	b->eoff = b->st.st_size - b->elen;
82 	if (FINFO_LSEEK_FUNC(b->fd, b->eoff, SEEK_SET) == (zend_off_t)-1 ||
83 		FINFO_READ_FUNC(b->fd, b->ebuf, b->elen) != (ssize_t)b->elen)
84 	{
85 		efree(b->ebuf);
86 		b->ebuf = NULL;
87 		goto out;
88 	}
89 
90 	return 0;
91 out:
92 	b->elen = CAST(size_t, ~0);
93 	return -1;
94 }
95