blob: c18659edaea3568af41c234f04a9dbb9ed28a77c [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
18 * - Patches must apply cleanly or the hunk will fail.
19 * - Reject file isnt saved
Eric Andersenc7bda1c2004-03-15 08:29:22 +000020 * -
Glenn L McGrath655d8142003-06-22 15:32:41 +000021 */
22
23#include <getopt.h>
24#include <string.h>
25#include <stdlib.h>
26#include <unistd.h>
27#include "busybox.h"
Glenn L McGrath655d8142003-06-22 15:32:41 +000028
"Vladimir N. Oleynik"dfe6e742006-01-31 09:44:04 +000029static unsigned int copy_lines(FILE *src_stream, FILE *dest_stream, const unsigned int lines_count)
Glenn L McGrath655d8142003-06-22 15:32:41 +000030{
"Vladimir N. Oleynik"dfe6e742006-01-31 09:44:04 +000031 unsigned int i = 0;
Glenn L McGrath655d8142003-06-22 15:32:41 +000032
33 while (src_stream && (i < lines_count)) {
34 char *line;
35 line = bb_get_line_from_file(src_stream);
36 if (line == NULL) {
37 break;
38 }
39 if (fputs(line, dest_stream) == EOF) {
40 bb_perror_msg_and_die("Error writing to new file");
41 }
42 free(line);
Eric Andersenc7bda1c2004-03-15 08:29:22 +000043
Glenn L McGrath655d8142003-06-22 15:32:41 +000044 i++;
45 }
46 return(i);
47}
48
49/* If patch_level is -1 it will remove all directory names
50 * char *line must be greater than 4 chars
51 * returns NULL if the file doesnt exist or error
52 * returns malloc'ed filename
53 */
54
"Vladimir N. Oleynik"dfe6e742006-01-31 09:44:04 +000055static char *extract_filename(char *line, int patch_level)
Glenn L McGrath655d8142003-06-22 15:32:41 +000056{
Rob Landleybaa89b32006-05-07 21:10:06 +000057 char *temp, *filename_start_ptr = line + 4;
Glenn L McGrath655d8142003-06-22 15:32:41 +000058 int i;
59
60 /* Terminate string at end of source filename */
Rob Landleybaa89b32006-05-07 21:10:06 +000061 temp = strchr(filename_start_ptr, '\t');
62 if (temp) *temp = 0;
Glenn L McGrath655d8142003-06-22 15:32:41 +000063
Rob Landleybaa89b32006-05-07 21:10:06 +000064 /* skip over (patch_level) number of leading directories */
Glenn L McGrath655d8142003-06-22 15:32:41 +000065 for (i = 0; i < patch_level; i++) {
Rob Landleybaa89b32006-05-07 21:10:06 +000066 if(!(temp = strchr(filename_start_ptr, '/'))) break;
67 filename_start_ptr = temp + 1;
Glenn L McGrath655d8142003-06-22 15:32:41 +000068 }
69
Rob Landleyd921b2e2006-08-03 15:41:12 +000070 return(xstrdup(filename_start_ptr));
Glenn L McGrath655d8142003-06-22 15:32:41 +000071}
72
73static int file_doesnt_exist(const char *filename)
74{
75 struct stat statbuf;
76 return(stat(filename, &statbuf));
77}
78
Rob Landleydfba7412006-03-06 20:47:33 +000079int patch_main(int argc, char **argv)
Glenn L McGrath655d8142003-06-22 15:32:41 +000080{
"Vladimir N. Oleynik"dfe6e742006-01-31 09:44:04 +000081 int patch_level = -1;
Glenn L McGrath655d8142003-06-22 15:32:41 +000082 char *patch_line;
Rob Landley078bacf2005-09-01 03:02:23 +000083 int ret;
84 FILE *patch_file = NULL;
Glenn L McGrath655d8142003-06-22 15:32:41 +000085
Rob Landley078bacf2005-09-01 03:02:23 +000086 {
87 char *p, *i;
Denis Vlasenko67b23e62006-10-03 21:00:06 +000088 ret = getopt32(argc, argv, "p:i:", &p, &i);
Rob Landley078bacf2005-09-01 03:02:23 +000089 if (ret & 1)
Bernhard Reutner-Fischeree9cf482005-10-27 06:59:05 +000090 patch_level = bb_xgetlarg(p, 10, -1, USHRT_MAX);
Rob Landley078bacf2005-09-01 03:02:23 +000091 if (ret & 2) {
Rob Landleyd921b2e2006-08-03 15:41:12 +000092 patch_file = xfopen(i, "r");
Bernhard Reutner-Fischer554a9ff2005-10-10 13:34:19 +000093 } else {
94 patch_file = stdin;
Rob Landley078bacf2005-09-01 03:02:23 +000095 }
96 ret = 0;
Glenn L McGrath655d8142003-06-22 15:32:41 +000097 }
98
Rob Landley078bacf2005-09-01 03:02:23 +000099 patch_line = bb_get_line_from_file(patch_file);
Glenn L McGrath655d8142003-06-22 15:32:41 +0000100 while (patch_line) {
101 FILE *src_stream;
102 FILE *dst_stream;
103 char *original_filename;
104 char *new_filename;
105 char *backup_filename;
106 unsigned int src_cur_line = 1;
107 unsigned int dest_cur_line = 0;
108 unsigned int dest_beg_line;
109 unsigned int bad_hunk_count = 0;
110 unsigned int hunk_count = 0;
111 char copy_trailing_lines_flag = 0;
112
113 /* Skip everything upto the "---" marker
114 * No need to parse the lines "Only in <dir>", and "diff <args>"
115 */
116 while (patch_line && strncmp(patch_line, "--- ", 4) != 0) {
117 free(patch_line);
Rob Landley078bacf2005-09-01 03:02:23 +0000118 patch_line = bb_get_line_from_file(patch_file);
Glenn L McGrath655d8142003-06-22 15:32:41 +0000119 }
120
121 /* Extract the filename used before the patch was generated */
122 original_filename = extract_filename(patch_line, patch_level);
123 free(patch_line);
124
Rob Landley078bacf2005-09-01 03:02:23 +0000125 patch_line = bb_get_line_from_file(patch_file);
Glenn L McGrath655d8142003-06-22 15:32:41 +0000126 if (strncmp(patch_line, "+++ ", 4) != 0) {
127 ret = 2;
128 bb_error_msg("Invalid patch");
129 continue;
130 }
131 new_filename = extract_filename(patch_line, patch_level);
132 free(patch_line);
133
134 if (file_doesnt_exist(new_filename)) {
135 char *line_ptr;
136 /* Create leading directories */
137 line_ptr = strrchr(new_filename, '/');
138 if (line_ptr) {
139 *line_ptr = '\0';
140 bb_make_directory(new_filename, -1, FILEUTILS_RECUR);
141 *line_ptr = '/';
142 }
Rob Landleyd921b2e2006-08-03 15:41:12 +0000143 dst_stream = xfopen(new_filename, "w+");
Glenn L McGrath655d8142003-06-22 15:32:41 +0000144 backup_filename = NULL;
145 } else {
146 backup_filename = xmalloc(strlen(new_filename) + 6);
147 strcpy(backup_filename, new_filename);
148 strcat(backup_filename, ".orig");
149 if (rename(new_filename, backup_filename) == -1) {
Bernhard Reutner-Fischer554a9ff2005-10-10 13:34:19 +0000150 bb_perror_msg_and_die("Couldnt create file %s",
151 backup_filename);
Glenn L McGrath655d8142003-06-22 15:32:41 +0000152 }
Rob Landleyd921b2e2006-08-03 15:41:12 +0000153 dst_stream = xfopen(new_filename, "w");
Glenn L McGrath655d8142003-06-22 15:32:41 +0000154 }
155
156 if ((backup_filename == NULL) || file_doesnt_exist(original_filename)) {
157 src_stream = NULL;
158 } else {
159 if (strcmp(original_filename, new_filename) == 0) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000160 src_stream = xfopen(backup_filename, "r");
Glenn L McGrath655d8142003-06-22 15:32:41 +0000161 } else {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000162 src_stream = xfopen(original_filename, "r");
Glenn L McGrath655d8142003-06-22 15:32:41 +0000163 }
164 }
165
166 printf("patching file %s\n", new_filename);
167
168 /* Handle each hunk */
Rob Landley078bacf2005-09-01 03:02:23 +0000169 patch_line = bb_get_line_from_file(patch_file);
Glenn L McGrath655d8142003-06-22 15:32:41 +0000170 while (patch_line) {
171 unsigned int count;
172 unsigned int src_beg_line;
173 unsigned int unused;
174 unsigned int hunk_offset_start = 0;
175 int hunk_error = 0;
176
177 /* This bit should be improved */
178 if ((sscanf(patch_line, "@@ -%d,%d +%d,%d @@", &src_beg_line, &unused, &dest_beg_line, &unused) != 4) &&
179 (sscanf(patch_line, "@@ -%d,%d +%d @@", &src_beg_line, &unused, &dest_beg_line) != 3) &&
180 (sscanf(patch_line, "@@ -%d +%d,%d @@", &src_beg_line, &dest_beg_line, &unused) != 3)) {
181 /* No more hunks for this file */
182 break;
183 }
184 free(patch_line);
185 hunk_count++;
186
187 if (src_beg_line && dest_beg_line) {
188 /* Copy unmodified lines upto start of hunk */
189 /* src_beg_line will be 0 if its a new file */
190 count = src_beg_line - src_cur_line;
191 if (copy_lines(src_stream, dst_stream, count) != count) {
192 bb_error_msg_and_die("Bad src file");
193 }
194 src_cur_line += count;
195 dest_cur_line += count;
196 copy_trailing_lines_flag = 1;
197 }
198 hunk_offset_start = src_cur_line;
199
Rob Landley078bacf2005-09-01 03:02:23 +0000200 while ((patch_line = bb_get_line_from_file(patch_file)) != NULL) {
Glenn L McGrath655d8142003-06-22 15:32:41 +0000201 if ((*patch_line == '-') || (*patch_line == ' ')) {
202 char *src_line = NULL;
203 if (src_stream) {
204 src_line = bb_get_line_from_file(src_stream);
205 if (!src_line) {
206 hunk_error++;
207 break;
208 } else {
209 src_cur_line++;
210 }
211 if (strcmp(src_line, patch_line + 1) != 0) {
212 bb_error_msg("Hunk #%d FAILED at %d.", hunk_count, hunk_offset_start);
213 hunk_error++;
214 free(patch_line);
215 break;
216 }
217 free(src_line);
218 }
219 if (*patch_line == ' ') {
220 fputs(patch_line + 1, dst_stream);
221 dest_cur_line++;
222 }
223 } else if (*patch_line == '+') {
224 fputs(patch_line + 1, dst_stream);
225 dest_cur_line++;
226 } else {
227 break;
228 }
229 free(patch_line);
230 }
231 if (hunk_error) {
232 bad_hunk_count++;
233 }
234 }
235
236 /* Cleanup last patched file */
237 if (copy_trailing_lines_flag) {
238 copy_lines(src_stream, dst_stream, -1);
239 }
240 if (src_stream) {
241 fclose(src_stream);
242 }
243 if (dst_stream) {
244 fclose(dst_stream);
245 }
246 if (bad_hunk_count) {
247 if (!ret) {
248 ret = 1;
249 }
250 bb_error_msg("%d out of %d hunk FAILED", bad_hunk_count, hunk_count);
251 } else {
252 /* It worked, we can remove the backup */
253 if (backup_filename) {
254 unlink(backup_filename);
255 }
256 if ((dest_cur_line == 0) || (dest_beg_line == 0)) {
257 /* The new patched file is empty, remove it */
258 if (unlink(new_filename) == -1) {
259 bb_perror_msg_and_die("Couldnt remove file %s", new_filename);
260 }
261 if (unlink(original_filename) == -1) {
262 bb_perror_msg_and_die("Couldnt remove original file %s", new_filename);
263 }
264 }
265 }
266 }
267
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000268 /* 0 = SUCCESS
Glenn L McGrath655d8142003-06-22 15:32:41 +0000269 * 1 = Some hunks failed
270 * 2 = More serious problems
271 */
272 return(ret);
273}