blob: f8d7605c0d4ab707766a9dedd223b7546e035c8d [file] [log] [blame]
Glenn L McGrath655d8142003-06-22 15:32:41 +00001/* vi: set sw=4 ts=4: */
2/*
3 * busybox patch applet to handle the unified diff format.
Glenn L McGrathc6992fe2004-04-25 05:11:19 +00004 * Copyright (C) 2003 Glenn McGrath <bug1@iinet.net.au>
Glenn L McGrath655d8142003-06-22 15:32:41 +00005 *
Bernhard Reutner-Fischeree9cf482005-10-27 06:59:05 +00006 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Glenn L McGrath655d8142003-06-22 15:32:41 +00007 *
8 * This applet is written to work with patches generated by GNU diff,
9 * where there is equivalent functionality busybox patch shall behave
10 * as per GNU patch.
11 *
12 * There is a SUSv3 specification for patch, however it looks to be
13 * incomplete, it doesnt even mention unified diff format.
14 * http://www.opengroup.org/onlinepubs/007904975/utilities/patch.html
15 *
16 * Issues
17 * - Non-interactive
Denis Vlasenko0a10da22006-12-17 00:49:56 +000018 * - Patches must apply cleanly or patch (not just one hunk) will fail.
Glenn L McGrath655d8142003-06-22 15:32:41 +000019 * - Reject file isnt saved
Glenn L McGrath655d8142003-06-22 15:32:41 +000020 */
21
22#include <getopt.h>
23#include <string.h>
24#include <stdlib.h>
25#include <unistd.h>
26#include "busybox.h"
Glenn L McGrath655d8142003-06-22 15:32:41 +000027
"Vladimir N. Oleynik"dfe6e742006-01-31 09:44:04 +000028static unsigned int copy_lines(FILE *src_stream, FILE *dest_stream, const unsigned int lines_count)
Glenn L McGrath655d8142003-06-22 15:32:41 +000029{
"Vladimir N. Oleynik"dfe6e742006-01-31 09:44:04 +000030 unsigned int i = 0;
Glenn L McGrath655d8142003-06-22 15:32:41 +000031
32 while (src_stream && (i < lines_count)) {
33 char *line;
Denis Vlasenko2d5ca602006-10-12 22:43:20 +000034 line = xmalloc_fgets(src_stream);
Glenn L McGrath655d8142003-06-22 15:32:41 +000035 if (line == NULL) {
36 break;
37 }
38 if (fputs(line, dest_stream) == EOF) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +000039 bb_perror_msg_and_die("error writing to new file");
Glenn L McGrath655d8142003-06-22 15:32:41 +000040 }
41 free(line);
Eric Andersenc7bda1c2004-03-15 08:29:22 +000042
Glenn L McGrath655d8142003-06-22 15:32:41 +000043 i++;
44 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +000045 return i;
Glenn L McGrath655d8142003-06-22 15:32:41 +000046}
47
48/* If patch_level is -1 it will remove all directory names
49 * char *line must be greater than 4 chars
50 * returns NULL if the file doesnt exist or error
51 * returns malloc'ed filename
52 */
53
"Vladimir N. Oleynik"dfe6e742006-01-31 09:44:04 +000054static char *extract_filename(char *line, int patch_level)
Glenn L McGrath655d8142003-06-22 15:32:41 +000055{
Rob Landleybaa89b32006-05-07 21:10:06 +000056 char *temp, *filename_start_ptr = line + 4;
Glenn L McGrath655d8142003-06-22 15:32:41 +000057 int i;
58
59 /* Terminate string at end of source filename */
Rob Landleybaa89b32006-05-07 21:10:06 +000060 temp = strchr(filename_start_ptr, '\t');
61 if (temp) *temp = 0;
Glenn L McGrath655d8142003-06-22 15:32:41 +000062
Rob Landleybaa89b32006-05-07 21:10:06 +000063 /* skip over (patch_level) number of leading directories */
Glenn L McGrath655d8142003-06-22 15:32:41 +000064 for (i = 0; i < patch_level; i++) {
Rob Landleybaa89b32006-05-07 21:10:06 +000065 if(!(temp = strchr(filename_start_ptr, '/'))) break;
66 filename_start_ptr = temp + 1;
Glenn L McGrath655d8142003-06-22 15:32:41 +000067 }
68
Denis Vlasenko079f8af2006-11-27 16:49:31 +000069 return xstrdup(filename_start_ptr);
Glenn L McGrath655d8142003-06-22 15:32:41 +000070}
71
72static int file_doesnt_exist(const char *filename)
73{
74 struct stat statbuf;
Denis Vlasenko079f8af2006-11-27 16:49:31 +000075 return stat(filename, &statbuf);
Glenn L McGrath655d8142003-06-22 15:32:41 +000076}
77
Rob Landleydfba7412006-03-06 20:47:33 +000078int patch_main(int argc, char **argv)
Glenn L McGrath655d8142003-06-22 15:32:41 +000079{
"Vladimir N. Oleynik"dfe6e742006-01-31 09:44:04 +000080 int patch_level = -1;
Glenn L McGrath655d8142003-06-22 15:32:41 +000081 char *patch_line;
Rob Landley078bacf2005-09-01 03:02:23 +000082 int ret;
83 FILE *patch_file = NULL;
Glenn L McGrath655d8142003-06-22 15:32:41 +000084
Rob Landley078bacf2005-09-01 03:02:23 +000085 {
86 char *p, *i;
Denis Vlasenko67b23e62006-10-03 21:00:06 +000087 ret = getopt32(argc, argv, "p:i:", &p, &i);
Rob Landley078bacf2005-09-01 03:02:23 +000088 if (ret & 1)
Denis Vlasenko13858992006-10-08 12:49:22 +000089 patch_level = xatol_range(p, -1, USHRT_MAX);
Rob Landley078bacf2005-09-01 03:02:23 +000090 if (ret & 2) {
Rob Landleyd921b2e2006-08-03 15:41:12 +000091 patch_file = xfopen(i, "r");
Bernhard Reutner-Fischer554a9ff2005-10-10 13:34:19 +000092 } else {
93 patch_file = stdin;
Rob Landley078bacf2005-09-01 03:02:23 +000094 }
95 ret = 0;
Glenn L McGrath655d8142003-06-22 15:32:41 +000096 }
97
Denis Vlasenko2d5ca602006-10-12 22:43:20 +000098 patch_line = xmalloc_fgets(patch_file);
Glenn L McGrath655d8142003-06-22 15:32:41 +000099 while (patch_line) {
100 FILE *src_stream;
101 FILE *dst_stream;
102 char *original_filename;
103 char *new_filename;
104 char *backup_filename;
105 unsigned int src_cur_line = 1;
106 unsigned int dest_cur_line = 0;
107 unsigned int dest_beg_line;
108 unsigned int bad_hunk_count = 0;
109 unsigned int hunk_count = 0;
110 char copy_trailing_lines_flag = 0;
111
112 /* Skip everything upto the "---" marker
113 * No need to parse the lines "Only in <dir>", and "diff <args>"
114 */
115 while (patch_line && strncmp(patch_line, "--- ", 4) != 0) {
116 free(patch_line);
Denis Vlasenko2d5ca602006-10-12 22:43:20 +0000117 patch_line = xmalloc_fgets(patch_file);
Glenn L McGrath655d8142003-06-22 15:32:41 +0000118 }
Denis Vlasenkoab24e182006-11-30 16:41:15 +0000119 /* FIXME: patch_line NULL check?? */
Glenn L McGrath655d8142003-06-22 15:32:41 +0000120
121 /* Extract the filename used before the patch was generated */
122 original_filename = extract_filename(patch_line, patch_level);
123 free(patch_line);
124
Denis Vlasenko2d5ca602006-10-12 22:43:20 +0000125 patch_line = xmalloc_fgets(patch_file);
Denis Vlasenkoab24e182006-11-30 16:41:15 +0000126 /* FIXME: NULL check?? */
Glenn L McGrath655d8142003-06-22 15:32:41 +0000127 if (strncmp(patch_line, "+++ ", 4) != 0) {
128 ret = 2;
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000129 bb_error_msg("invalid patch");
Glenn L McGrath655d8142003-06-22 15:32:41 +0000130 continue;
131 }
132 new_filename = extract_filename(patch_line, patch_level);
133 free(patch_line);
134
135 if (file_doesnt_exist(new_filename)) {
136 char *line_ptr;
137 /* Create leading directories */
138 line_ptr = strrchr(new_filename, '/');
139 if (line_ptr) {
140 *line_ptr = '\0';
141 bb_make_directory(new_filename, -1, FILEUTILS_RECUR);
142 *line_ptr = '/';
143 }
Rob Landleyd921b2e2006-08-03 15:41:12 +0000144 dst_stream = xfopen(new_filename, "w+");
Glenn L McGrath655d8142003-06-22 15:32:41 +0000145 backup_filename = NULL;
146 } else {
147 backup_filename = xmalloc(strlen(new_filename) + 6);
148 strcpy(backup_filename, new_filename);
149 strcat(backup_filename, ".orig");
150 if (rename(new_filename, backup_filename) == -1) {
Denis Vlasenkoa6dbb082006-10-12 19:29:44 +0000151 bb_perror_msg_and_die("cannot create file %s",
Bernhard Reutner-Fischer554a9ff2005-10-10 13:34:19 +0000152 backup_filename);
Glenn L McGrath655d8142003-06-22 15:32:41 +0000153 }
Rob Landleyd921b2e2006-08-03 15:41:12 +0000154 dst_stream = xfopen(new_filename, "w");
Glenn L McGrath655d8142003-06-22 15:32:41 +0000155 }
156
157 if ((backup_filename == NULL) || file_doesnt_exist(original_filename)) {
158 src_stream = NULL;
159 } else {
160 if (strcmp(original_filename, new_filename) == 0) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000161 src_stream = xfopen(backup_filename, "r");
Glenn L McGrath655d8142003-06-22 15:32:41 +0000162 } else {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000163 src_stream = xfopen(original_filename, "r");
Glenn L McGrath655d8142003-06-22 15:32:41 +0000164 }
165 }
166
167 printf("patching file %s\n", new_filename);
168
169 /* Handle each hunk */
Denis Vlasenko2d5ca602006-10-12 22:43:20 +0000170 patch_line = xmalloc_fgets(patch_file);
Glenn L McGrath655d8142003-06-22 15:32:41 +0000171 while (patch_line) {
172 unsigned int count;
173 unsigned int src_beg_line;
174 unsigned int unused;
175 unsigned int hunk_offset_start = 0;
176 int hunk_error = 0;
177
178 /* This bit should be improved */
179 if ((sscanf(patch_line, "@@ -%d,%d +%d,%d @@", &src_beg_line, &unused, &dest_beg_line, &unused) != 4) &&
180 (sscanf(patch_line, "@@ -%d,%d +%d @@", &src_beg_line, &unused, &dest_beg_line) != 3) &&
181 (sscanf(patch_line, "@@ -%d +%d,%d @@", &src_beg_line, &dest_beg_line, &unused) != 3)) {
182 /* No more hunks for this file */
183 break;
184 }
185 free(patch_line);
186 hunk_count++;
187
188 if (src_beg_line && dest_beg_line) {
189 /* Copy unmodified lines upto start of hunk */
190 /* src_beg_line will be 0 if its a new file */
191 count = src_beg_line - src_cur_line;
192 if (copy_lines(src_stream, dst_stream, count) != count) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000193 bb_error_msg_and_die("bad src file");
Glenn L McGrath655d8142003-06-22 15:32:41 +0000194 }
195 src_cur_line += count;
196 dest_cur_line += count;
197 copy_trailing_lines_flag = 1;
198 }
199 hunk_offset_start = src_cur_line;
200
Denis Vlasenko2d5ca602006-10-12 22:43:20 +0000201 while ((patch_line = xmalloc_fgets(patch_file)) != NULL) {
Glenn L McGrath655d8142003-06-22 15:32:41 +0000202 if ((*patch_line == '-') || (*patch_line == ' ')) {
203 char *src_line = NULL;
204 if (src_stream) {
Denis Vlasenko2d5ca602006-10-12 22:43:20 +0000205 src_line = xmalloc_fgets(src_stream);
Glenn L McGrath655d8142003-06-22 15:32:41 +0000206 if (!src_line) {
207 hunk_error++;
208 break;
209 } else {
210 src_cur_line++;
211 }
212 if (strcmp(src_line, patch_line + 1) != 0) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000213 bb_error_msg("hunk #%d FAILED at %d", hunk_count, hunk_offset_start);
Glenn L McGrath655d8142003-06-22 15:32:41 +0000214 hunk_error++;
215 free(patch_line);
Denis Vlasenko0a10da22006-12-17 00:49:56 +0000216 /* Probably need to find next hunk, etc... */
217 /* but for now we just bail out */
Denis Vlasenkof7583d82006-12-17 00:33:29 +0000218 patch_line = NULL;
Glenn L McGrath655d8142003-06-22 15:32:41 +0000219 break;
220 }
221 free(src_line);
222 }
223 if (*patch_line == ' ') {
224 fputs(patch_line + 1, dst_stream);
225 dest_cur_line++;
226 }
227 } else if (*patch_line == '+') {
228 fputs(patch_line + 1, dst_stream);
229 dest_cur_line++;
230 } else {
231 break;
232 }
233 free(patch_line);
234 }
235 if (hunk_error) {
236 bad_hunk_count++;
237 }
238 }
239
240 /* Cleanup last patched file */
241 if (copy_trailing_lines_flag) {
242 copy_lines(src_stream, dst_stream, -1);
243 }
244 if (src_stream) {
245 fclose(src_stream);
246 }
247 if (dst_stream) {
248 fclose(dst_stream);
249 }
250 if (bad_hunk_count) {
251 if (!ret) {
252 ret = 1;
253 }
254 bb_error_msg("%d out of %d hunk FAILED", bad_hunk_count, hunk_count);
255 } else {
256 /* It worked, we can remove the backup */
257 if (backup_filename) {
258 unlink(backup_filename);
259 }
260 if ((dest_cur_line == 0) || (dest_beg_line == 0)) {
261 /* The new patched file is empty, remove it */
262 if (unlink(new_filename) == -1) {
Denis Vlasenkoa6dbb082006-10-12 19:29:44 +0000263 bb_perror_msg_and_die("cannot remove file %s", new_filename);
Glenn L McGrath655d8142003-06-22 15:32:41 +0000264 }
265 if (unlink(original_filename) == -1) {
Denis Vlasenkoa6dbb082006-10-12 19:29:44 +0000266 bb_perror_msg_and_die("cannot remove original file %s", new_filename);
Glenn L McGrath655d8142003-06-22 15:32:41 +0000267 }
268 }
269 }
270 }
271
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000272 /* 0 = SUCCESS
Glenn L McGrath655d8142003-06-22 15:32:41 +0000273 * 1 = Some hunks failed
274 * 2 = More serious problems
275 */
Denis Vlasenko079f8af2006-11-27 16:49:31 +0000276 return ret;
Glenn L McGrath655d8142003-06-22 15:32:41 +0000277}