summaryrefslogtreecommitdiffstats
path: root/lib/file/file.c
blob: b575d343150ebbb246d8c0ccf5961a68fd434708 (plain)
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
/*
 *  Copyright (C) 2013 Jeremy Kerr <jk@ozlabs.org>
 *  Copyright (C) 2016 Raptor Engineering, LLC
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; version 2 of the License.
 *
 *  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 General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

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

#include <talloc/talloc.h>
#include <log/log.h>

#include "file.h"

#define MAX_FILENAME_SIZE	8192
#define FILE_XFER_BUFFER_SIZE	8192

static const int max_file_size = 1024 * 1024;

int copy_file_secure_dest(void *ctx, const char *source_file,
		char **destination_file)
{
	char readlink_buffer[MAX_FILENAME_SIZE + 1];
	char dest_filename[MAX_FILENAME_SIZE + 1] = "";
	char template[] = "/tmp/petitbootXXXXXX";
	FILE *destination_handle, *source_handle;
	int destination_fd, result = 0;
	unsigned char *buffer;
	ssize_t r;
	size_t l1;

	source_handle = fopen(source_file, "r");
	if (!source_handle) {
		pb_log("%s: unable to open source file '%s': %m\n",
			__func__, source_file);
			return -1;
	}

	destination_fd = mkstemp(template);
	if (destination_fd < 0) {
		pb_log("%s: unable to create temp file, %m\n", __func__);
		fclose(source_handle);
		return -1;
	}
	destination_handle = fdopen(destination_fd, "w");
	if (!destination_handle) {
		pb_log("%s: unable to open destination file, %m\n", __func__);
		fclose(source_handle);
		close(destination_fd);
		return -1;
	}

	buffer = talloc_array(ctx, unsigned char, FILE_XFER_BUFFER_SIZE);
	if (!buffer) {
		pb_log("%s: failed: unable to allocate file transfer buffer\n",
			__func__);
		result = -1;
		goto out;
	}

	/* Copy data */
	while ((l1 = fread(buffer, 1, FILE_XFER_BUFFER_SIZE, source_handle)) > 0) {
		size_t l2 = fwrite(buffer, 1, l1, destination_handle);
		if (l2 < l1) {
			if (ferror(destination_handle)) {
				/* General error */
				result = -1;
				pb_log("%s: failed: unknown fault\n", __func__);
			}
			else {
				/* No space on destination device */
				result = -1;
				pb_log("%s: failed: temporary storage full\n",
					__func__);
			}
			break;
		}
	}

	if (result) {
		*destination_file = NULL;
		goto out;
	}

	snprintf(readlink_buffer, MAX_FILENAME_SIZE, "/proc/self/fd/%d",
		destination_fd);
	r = readlink(readlink_buffer, dest_filename, MAX_FILENAME_SIZE);
	if (r < 0) {
		/* readlink failed */
		result = -1;
		r = 0;
		pb_log("%s: failed: unable to obtain temporary filename\n",
			__func__);
	}
	dest_filename[r] = '\0';

	*destination_file = talloc_strdup(ctx, dest_filename);
out:
	talloc_free(buffer);
	fclose(source_handle);
	fclose(destination_handle);
	close(destination_fd);
	return result;
}

int read_file(void *ctx, const char *filename, char **bufp, int *lenp)
{
	struct stat statbuf;
	int rc, fd, i, len;
	char *buf;

	fd = open(filename, O_RDONLY);
	if (fd < 0)
		return -1;

	rc = fstat(fd, &statbuf);
	if (rc < 0)
		goto err_close;

	len = statbuf.st_size;
	if (len > max_file_size)
		goto err_close;

	buf = talloc_array(ctx, char, len + 1);
	if (!buf)
		goto err_close;

	for (i = 0; i < len; i += rc) {
		rc = read(fd, buf + i, len - i);

		/* unexpected EOF: trim and return */
		if (rc == 0) {
			len = i;
			break;
		}

		if (rc < 0)
			goto err_free;

	}

	buf[len] = '\0';

	close(fd);
	*bufp = buf;
	*lenp = len;
	return 0;

err_free:
	talloc_free(buf);
err_close:
	close(fd);
	return -1;
}

static int write_fd(int fd, char *buf, int len)
{
	int i, rc;

	for (i = 0; i < len; i += rc) {
		rc = write(fd, buf + i, len - i);
		if (rc < 0 && errno != -EINTR)
			return rc;
	}

	return 0;
}

int replace_file(const char *filename, char *buf, int len)
{
	char *tempfile;
	mode_t oldmask;
	int rc, fd;

	tempfile = talloc_asprintf(NULL, "%s.XXXXXX", filename);

	oldmask = umask(0644);
	fd = mkstemp(tempfile);
	umask(oldmask);
	if (fd < 0) {
		talloc_free(tempfile);
		return fd;
	}

	rc = write_fd(fd, buf, len);
	if (rc) {
		unlink(tempfile);
	} else {
		rc = rename(tempfile, filename);
	}

	talloc_free(tempfile);

	fchmod(fd, 0644);

	close(fd);
	return rc;
}
OpenPOWER on IntegriCloud