1 /* vi: set sw=4 ts=4: */
3 * busybox patch applet to handle the unified diff format.
4 * Copyright (C) 2003 Glenn McGrath <bug1@iinet.net.au>
6 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
8 * This applet is written to work with patches generated by GNU diff,
9 * where there is equivalent functionality busybox patch shall behave
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
18 * - Patches must apply cleanly or the hunk will fail.
19 * - Reject file isnt saved
29 static unsigned int copy_lines(FILE *src_stream, FILE *dest_stream, const unsigned int lines_count)
33 while (src_stream && (i < lines_count)) {
35 line = xmalloc_fgets(src_stream);
39 if (fputs(line, dest_stream) == EOF) {
40 bb_perror_msg_and_die("error writing to new file");
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
55 static char *extract_filename(char *line, int patch_level)
57 char *temp, *filename_start_ptr = line + 4;
60 /* Terminate string at end of source filename */
61 temp = strchr(filename_start_ptr, '\t');
64 /* skip over (patch_level) number of leading directories */
65 for (i = 0; i < patch_level; i++) {
66 if(!(temp = strchr(filename_start_ptr, '/'))) break;
67 filename_start_ptr = temp + 1;
70 return(xstrdup(filename_start_ptr));
73 static int file_doesnt_exist(const char *filename)
76 return(stat(filename, &statbuf));
79 int patch_main(int argc, char **argv)
84 FILE *patch_file = NULL;
88 ret = getopt32(argc, argv, "p:i:", &p, &i);
90 patch_level = xatol_range(p, -1, USHRT_MAX);
92 patch_file = xfopen(i, "r");
99 patch_line = xmalloc_fgets(patch_file);
103 char *original_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;
113 /* Skip everything upto the "---" marker
114 * No need to parse the lines "Only in <dir>", and "diff <args>"
116 while (patch_line && strncmp(patch_line, "--- ", 4) != 0) {
118 patch_line = xmalloc_fgets(patch_file);
121 /* Extract the filename used before the patch was generated */
122 original_filename = extract_filename(patch_line, patch_level);
125 patch_line = xmalloc_fgets(patch_file);
126 if (strncmp(patch_line, "+++ ", 4) != 0) {
128 bb_error_msg("invalid patch");
131 new_filename = extract_filename(patch_line, patch_level);
134 if (file_doesnt_exist(new_filename)) {
136 /* Create leading directories */
137 line_ptr = strrchr(new_filename, '/');
140 bb_make_directory(new_filename, -1, FILEUTILS_RECUR);
143 dst_stream = xfopen(new_filename, "w+");
144 backup_filename = NULL;
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) {
150 bb_perror_msg_and_die("cannot create file %s",
153 dst_stream = xfopen(new_filename, "w");
156 if ((backup_filename == NULL) || file_doesnt_exist(original_filename)) {
159 if (strcmp(original_filename, new_filename) == 0) {
160 src_stream = xfopen(backup_filename, "r");
162 src_stream = xfopen(original_filename, "r");
166 printf("patching file %s\n", new_filename);
168 /* Handle each hunk */
169 patch_line = xmalloc_fgets(patch_file);
172 unsigned int src_beg_line;
174 unsigned int hunk_offset_start = 0;
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 */
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");
194 src_cur_line += count;
195 dest_cur_line += count;
196 copy_trailing_lines_flag = 1;
198 hunk_offset_start = src_cur_line;
200 while ((patch_line = xmalloc_fgets(patch_file)) != NULL) {
201 if ((*patch_line == '-') || (*patch_line == ' ')) {
202 char *src_line = NULL;
204 src_line = xmalloc_fgets(src_stream);
211 if (strcmp(src_line, patch_line + 1) != 0) {
212 bb_error_msg("hunk #%d FAILED at %d", hunk_count, hunk_offset_start);
219 if (*patch_line == ' ') {
220 fputs(patch_line + 1, dst_stream);
223 } else if (*patch_line == '+') {
224 fputs(patch_line + 1, dst_stream);
236 /* Cleanup last patched file */
237 if (copy_trailing_lines_flag) {
238 copy_lines(src_stream, dst_stream, -1);
246 if (bad_hunk_count) {
250 bb_error_msg("%d out of %d hunk FAILED", bad_hunk_count, hunk_count);
252 /* It worked, we can remove the backup */
253 if (backup_filename) {
254 unlink(backup_filename);
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("cannot remove file %s", new_filename);
261 if (unlink(original_filename) == -1) {
262 bb_perror_msg_and_die("cannot remove original file %s", new_filename);
269 * 1 = Some hunks failed
270 * 2 = More serious problems