blob: 9c6d967b9fa5b0a4c474de591ae561c5191732c3 [file] [log] [blame]
Rob Landley1bbc0cd2010-08-13 15:50:26 +02001/* vi: set sw=4 ts=4:
2 *
Denys Vlasenkob82ae982010-11-21 05:53:34 +01003 * Apply a "universal" diff.
4 * Adapted from toybox's patch implementation.
Rob Landley1bbc0cd2010-08-13 15:50:26 +02005 *
6 * Copyright 2007 Rob Landley <rob@landley.net>
7 *
8 * see http://www.opengroup.org/onlinepubs/009695399/utilities/patch.html
9 * (But only does -u, because who still cares about "ed"?)
10 *
11 * TODO:
12 * -b backup
13 * -l treat all whitespace as a single space
Rob Landley1bbc0cd2010-08-13 15:50:26 +020014 * -d chdir first
15 * -D define wrap #ifdef and #ifndef around changes
16 * -o outfile output here instead of in place
17 * -r rejectfile write rejected hunks to this file
18 *
Rob Landley1bbc0cd2010-08-13 15:50:26 +020019 * -f force (no questions asked)
20 * -F fuzz (number, default 2)
21 * [file] which file to patch
Denys Vlasenkob82ae982010-11-21 05:53:34 +010022 */
Rob Landley1bbc0cd2010-08-13 15:50:26 +020023
Denys Vlasenkob82ae982010-11-21 05:53:34 +010024//applet:IF_PATCH(APPLET(patch, _BB_DIR_USR_BIN, _BB_SUID_DROP))
Rob Landley1bbc0cd2010-08-13 15:50:26 +020025
Denys Vlasenkob82ae982010-11-21 05:53:34 +010026//kbuild:lib-$(CONFIG_PATCH) += patch.o
Rob Landley1bbc0cd2010-08-13 15:50:26 +020027
Denys Vlasenkob82ae982010-11-21 05:53:34 +010028//config:config PATCH
29//config: bool "patch"
30//config: default y
31//config: help
32//config: Apply a unified diff formatted patch.
Rob Landley1bbc0cd2010-08-13 15:50:26 +020033
Denys Vlasenkob82ae982010-11-21 05:53:34 +010034//usage:#define patch_trivial_usage
35//usage: "[OPTIONS] [ORIGFILE [PATCHFILE]]"
36//usage:#define patch_full_usage "\n\n"
37//usage: IF_LONG_OPTS(
38//usage: " -p,--strip N Strip N leading components from file names"
39//usage: "\n -i,--input DIFF Read DIFF instead of stdin"
40//usage: "\n -R,--reverse Reverse patch"
41//usage: "\n -N,--forward Ignore already applied patches"
42//usage: "\n --dry-run Don't actually change files"
43//usage: "\n -E,--remove-empty-files Remove output files if they become empty"
44//usage: )
45//usage: IF_NOT_LONG_OPTS(
46//usage: " -p N Strip N leading components from file names"
47//usage: "\n -i DIFF Read DIFF instead of stdin"
48//usage: "\n -R Reverse patch"
49//usage: "\n -N Ignore already applied patches"
50//usage: "\n -E Remove output files if they become empty"
51//usage: )
52//usage:
53//usage:#define patch_example_usage
54//usage: "$ patch -p1 < example.diff\n"
55//usage: "$ patch -p0 -i example.diff"
Rob Landley1bbc0cd2010-08-13 15:50:26 +020056
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000057#include "libbb.h"
Glenn L McGrath655d8142003-06-22 15:32:41 +000058
Denys Vlasenko400ff222010-11-21 05:54:28 +010059
60// libbb candidate?
61
Rob Landley1bbc0cd2010-08-13 15:50:26 +020062struct double_list {
63 struct double_list *next;
64 struct double_list *prev;
65 char *data;
66};
67
Rob Landley1bbc0cd2010-08-13 15:50:26 +020068// Free all the elements of a linked list
Denys Vlasenko400ff222010-11-21 05:54:28 +010069// Call freeit() on each element before freeing it.
Rob Landley1bbc0cd2010-08-13 15:50:26 +020070static
Denys Vlasenko400ff222010-11-21 05:54:28 +010071void dlist_free(struct double_list *list, void (*freeit)(void *data))
Glenn L McGrath655d8142003-06-22 15:32:41 +000072{
Rob Landley1bbc0cd2010-08-13 15:50:26 +020073 while (list) {
Denys Vlasenko400ff222010-11-21 05:54:28 +010074 void *pop = list;
75 list = list->next;
76 freeit(pop);
77 // Bail out also if list is circular.
78 if (list == pop) break;
Glenn L McGrath655d8142003-06-22 15:32:41 +000079 }
Glenn L McGrath655d8142003-06-22 15:32:41 +000080}
81
Denys Vlasenko400ff222010-11-21 05:54:28 +010082// Add an entry before "list" element in (circular) doubly linked list
Rob Landley1bbc0cd2010-08-13 15:50:26 +020083static
84struct double_list *dlist_add(struct double_list **list, char *data)
85{
Denys Vlasenko400ff222010-11-21 05:54:28 +010086 struct double_list *llist;
87 struct double_list *line = xmalloc(sizeof(*line));
Rob Landley1bbc0cd2010-08-13 15:50:26 +020088
89 line->data = data;
Denys Vlasenko400ff222010-11-21 05:54:28 +010090 llist = *list;
91 if (llist) {
92 struct double_list *p;
93 line->next = llist;
94 p = line->prev = llist->prev;
95 // (list is circular, we assume p is never NULL)
96 p->next = line;
97 llist->prev = line;
98 } else
99 *list = line->next = line->prev = line;
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200100
101 return line;
102}
103
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200104
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200105struct globals {
106 char *infile;
107 long prefix;
108
109 struct double_list *current_hunk;
Denys Vlasenko400ff222010-11-21 05:54:28 +0100110
Rob Landley760d0eb2010-08-13 16:40:21 +0200111 long oldline, oldlen, newline, newlen;
112 long linenum;
Denys Vlasenko400ff222010-11-21 05:54:28 +0100113 int context, state, hunknum;
114 int filein, fileout;
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200115 char *tempname;
116
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200117 int exitval;
118};
119#define TT (*ptr_to_globals)
120#define INIT_TT() do { \
121 SET_PTR_TO_GLOBALS(xzalloc(sizeof(TT))); \
122} while (0)
123
124
Lukas Huba08187352010-10-21 00:43:00 +0200125#define FLAG_STR "Rup:i:NEx"
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200126/* FLAG_REVERSE must be == 1! Code uses this fact. */
127#define FLAG_REVERSE (1 << 0)
128#define FLAG_u (1 << 1)
129#define FLAG_PATHLEN (1 << 2)
130#define FLAG_INPUT (1 << 3)
Denys Vlasenkoa4160e12010-08-16 01:33:57 +0200131#define FLAG_IGNORE (1 << 4)
Lukas Huba08187352010-10-21 00:43:00 +0200132#define FLAG_RMEMPTY (1 << 5)
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200133//non-standard:
Lukas Huba08187352010-10-21 00:43:00 +0200134#define FLAG_DEBUG (1 << 6)
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200135
136// Dispose of a line of input, either by writing it out or discarding it.
137
138// state < 2: just free
139// state = 2: write whole line to stderr
140// state = 3: write whole line to fileout
141// state > 3: write line+1 to fileout when *line != state
142
143#define PATCH_DEBUG (option_mask32 & FLAG_DEBUG)
144
145static void do_line(void *data)
146{
Denys Vlasenkob82ae982010-11-21 05:53:34 +0100147 struct double_list *dlist = data;
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200148
149 if (TT.state>1 && *dlist->data != TT.state)
150 fdprintf(TT.state == 2 ? 2 : TT.fileout,
151 "%s\n", dlist->data+(TT.state>3 ? 1 : 0));
152
153 if (PATCH_DEBUG) fdprintf(2, "DO %d: %s\n", TT.state, dlist->data);
154
155 free(dlist->data);
Denys Vlasenkob82ae982010-11-21 05:53:34 +0100156 free(dlist);
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200157}
158
159static void finish_oldfile(void)
160{
Denys Vlasenkob82ae982010-11-21 05:53:34 +0100161 if (TT.tempname) {
162 // Copy the rest of the data and replace the original with the copy.
163 char *temp;
164
165 if (TT.filein != -1) {
166 bb_copyfd_eof(TT.filein, TT.fileout);
167 xclose(TT.filein);
168 }
169 xclose(TT.fileout);
170
171 temp = xstrdup(TT.tempname);
172 temp[strlen(temp) - 6] = '\0';
173 rename(TT.tempname, temp);
174 free(temp);
175
176 free(TT.tempname);
177 TT.tempname = NULL;
178 }
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200179 TT.fileout = TT.filein = -1;
180}
181
182static void fail_hunk(void)
183{
184 if (!TT.current_hunk) return;
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200185
186 fdprintf(2, "Hunk %d FAILED %ld/%ld.\n", TT.hunknum, TT.oldline, TT.newline);
187 TT.exitval = 1;
188
189 // If we got to this point, we've seeked to the end. Discard changes to
190 // this file and advance to next file.
191
192 TT.state = 2;
Denys Vlasenko400ff222010-11-21 05:54:28 +0100193 TT.current_hunk->prev->next = NULL;
194 dlist_free(TT.current_hunk, do_line);
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200195 TT.current_hunk = NULL;
Denys Vlasenkob82ae982010-11-21 05:53:34 +0100196
197 // Abort the copy and delete the temporary file.
198 close(TT.filein);
199 close(TT.fileout);
200 unlink(TT.tempname);
201 free(TT.tempname);
202 TT.tempname = NULL;
203
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200204 TT.state = 0;
205}
206
207// Given a hunk of a unified diff, make the appropriate change to the file.
208// This does not use the location information, but instead treats a hunk
209// as a sort of regex. Copies data from input to output until it finds
210// the change to be made, then outputs the changed data and returns.
211// (Finding EOF first is an error.) This is a single pass operation, so
212// multiple hunks must occur in order in the file.
213
214static int apply_one_hunk(void)
215{
216 struct double_list *plist, *buf = NULL, *check;
217 int matcheof = 0, reverse = option_mask32 & FLAG_REVERSE, backwarn = 0;
Denys Vlasenkocda81592010-08-17 01:31:40 +0200218 /* Do we try "dummy" revert to check whether
219 * to silently skip this hunk? Used to implement -N.
220 */
221 int dummy_revert = 0;
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200222
223 // Break doubly linked list so we can use singly linked traversal function.
224 TT.current_hunk->prev->next = NULL;
225
226 // Match EOF if there aren't as many ending context lines as beginning
227 for (plist = TT.current_hunk; plist; plist = plist->next) {
228 if (plist->data[0]==' ') matcheof++;
229 else matcheof = 0;
230 if (PATCH_DEBUG) fdprintf(2, "HUNK:%s\n", plist->data);
231 }
232 matcheof = matcheof < TT.context;
233
234 if (PATCH_DEBUG) fdprintf(2,"MATCHEOF=%c\n", matcheof ? 'Y' : 'N');
235
236 // Loop through input data searching for this hunk. Match all context
237 // lines and all lines to be removed until we've found the end of a
238 // complete hunk.
239 plist = TT.current_hunk;
240 buf = NULL;
Rob Landley8027a202010-11-29 03:24:51 +0100241 if (reverse ? TT.oldlen : TT.newlen) for (;;) {
Denys Vlasenkob82ae982010-11-21 05:53:34 +0100242 char *data = xmalloc_reads(TT.filein, NULL, NULL);
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200243
244 TT.linenum++;
245
246 // Figure out which line of hunk to compare with next. (Skip lines
247 // of the hunk we'd be adding.)
248 while (plist && *plist->data == "+-"[reverse]) {
249 if (data && !strcmp(data, plist->data+1)) {
250 if (!backwarn) {
Rob Landley9d113ca2010-10-04 00:49:48 +0200251 backwarn = TT.linenum;
Denys Vlasenkocda81592010-08-17 01:31:40 +0200252 if (option_mask32 & FLAG_IGNORE) {
253 dummy_revert = 1;
254 reverse ^= 1;
255 continue;
256 }
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200257 }
258 }
259 plist = plist->next;
260 }
261
262 // Is this EOF?
263 if (!data) {
264 if (PATCH_DEBUG) fdprintf(2, "INEOF\n");
265
266 // Does this hunk need to match EOF?
267 if (!plist && matcheof) break;
268
Rob Landley9d113ca2010-10-04 00:49:48 +0200269 if (backwarn)
270 fdprintf(2,"Possibly reversed hunk %d at %ld\n",
271 TT.hunknum, TT.linenum);
272
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200273 // File ended before we found a place for this hunk.
274 fail_hunk();
275 goto done;
Denys Vlasenkob82ae982010-11-21 05:53:34 +0100276 }
277
278 if (PATCH_DEBUG) fdprintf(2, "IN: %s\n", data);
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200279 check = dlist_add(&buf, data);
280
281 // Compare this line with next expected line of hunk.
282 // todo: teach the strcmp() to ignore whitespace.
283
284 // A match can fail because the next line doesn't match, or because
285 // we hit the end of a hunk that needed EOF, and this isn't EOF.
286
287 // If match failed, flush first line of buffered data and
288 // recheck buffered data for a new match until we find one or run
289 // out of buffer.
290
291 for (;;) {
292 if (!plist || strcmp(check->data, plist->data+1)) {
293 // Match failed. Write out first line of buffered data and
294 // recheck remaining buffered data for a new match.
295
296 if (PATCH_DEBUG)
297 fdprintf(2, "NOT: %s\n", plist->data);
298
299 TT.state = 3;
Denys Vlasenko400ff222010-11-21 05:54:28 +0100300 check = buf;
301 buf = buf->next;
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200302 check->prev->next = buf;
303 buf->prev = check->prev;
304 do_line(check);
305 plist = TT.current_hunk;
306
307 // If we've reached the end of the buffer without confirming a
308 // match, read more lines.
Denys Vlasenkob82ae982010-11-21 05:53:34 +0100309 if (check == buf) {
310 buf = NULL;
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200311 break;
312 }
313 check = buf;
314 } else {
315 if (PATCH_DEBUG)
316 fdprintf(2, "MAYBE: %s\n", plist->data);
317 // This line matches. Advance plist, detect successful match.
318 plist = plist->next;
319 if (!plist && !matcheof) goto out;
320 check = check->next;
321 if (check == buf) break;
322 }
323 }
324 }
325out:
326 // We have a match. Emit changed data.
Denys Vlasenkocda81592010-08-17 01:31:40 +0200327 TT.state = "-+"[reverse ^ dummy_revert];
Denys Vlasenko400ff222010-11-21 05:54:28 +0100328 dlist_free(TT.current_hunk, do_line);
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200329 TT.current_hunk = NULL;
330 TT.state = 1;
331done:
332 if (buf) {
333 buf->prev->next = NULL;
Denys Vlasenko400ff222010-11-21 05:54:28 +0100334 dlist_free(buf, do_line);
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200335 }
336
337 return TT.state;
338}
339
340// Read a patch file and find hunks, opening/creating/deleting files.
341// Call apply_one_hunk() on each hunk.
342
343// state 0: Not in a hunk, look for +++.
344// state 1: Found +++ file indicator, look for @@
345// state 2: In hunk: counting initial context lines
346// state 3: In hunk: getting body
347
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000348int patch_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000349int patch_main(int argc UNUSED_PARAM, char **argv)
Glenn L McGrath655d8142003-06-22 15:32:41 +0000350{
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200351 int opts;
352 int reverse, state = 0;
353 char *oldname = NULL, *newname = NULL;
354 char *opt_p, *opt_i;
Rob Landley8027a202010-11-29 03:24:51 +0100355 long oldlen = oldlen; /* for compiler */
356 long newlen = newlen; /* for compiler */
Denis Vlasenkoc93b1622008-03-23 22:55:25 +0000357
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200358 INIT_TT();
359
360 opts = getopt32(argv, FLAG_STR, &opt_p, &opt_i);
Denys Vlasenkoe7b0a9e2010-08-22 05:39:15 +0200361 argv += optind;
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200362 reverse = opts & FLAG_REVERSE;
363 TT.prefix = (opts & FLAG_PATHLEN) ? xatoi(opt_p) : 0; // can be negative!
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200364 TT.filein = TT.fileout = -1;
Denys Vlasenkoe7b0a9e2010-08-22 05:39:15 +0200365 if (opts & FLAG_INPUT) {
Denys Vlasenkob82ae982010-11-21 05:53:34 +0100366 xmove_fd(xopen_stdin(opt_i), STDIN_FILENO);
Denys Vlasenkoe7b0a9e2010-08-22 05:39:15 +0200367 } else {
368 if (argv[0] && argv[1]) {
Denys Vlasenkob82ae982010-11-21 05:53:34 +0100369 xmove_fd(xopen_stdin(argv[1]), STDIN_FILENO);
Denys Vlasenkoe7b0a9e2010-08-22 05:39:15 +0200370 }
371 }
372 if (argv[0]) {
373 oldname = xstrdup(argv[0]);
374 newname = xstrdup(argv[0]);
375 }
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200376
377 // Loop through the lines in the patch
378 for(;;) {
379 char *patchline;
380
Denys Vlasenkob82ae982010-11-21 05:53:34 +0100381 patchline = xmalloc_fgetline(stdin);
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200382 if (!patchline) break;
383
384 // Other versions of patch accept damaged patches,
385 // so we need to also.
386 if (!*patchline) {
387 free(patchline);
388 patchline = xstrdup(" ");
389 }
390
391 // Are we assembling a hunk?
392 if (state >= 2) {
393 if (*patchline==' ' || *patchline=='+' || *patchline=='-') {
394 dlist_add(&TT.current_hunk, patchline);
395
Rob Landley8027a202010-11-29 03:24:51 +0100396 if (*patchline != '+') oldlen--;
397 if (*patchline != '-') newlen--;
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200398
399 // Context line?
400 if (*patchline==' ' && state==2) TT.context++;
401 else state=3;
402
403 // If we've consumed all expected hunk lines, apply the hunk.
404
Rob Landley8027a202010-11-29 03:24:51 +0100405 if (!oldlen && !newlen) state = apply_one_hunk();
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200406 continue;
407 }
408 fail_hunk();
409 state = 0;
410 continue;
411 }
412
413 // Open a new file?
414 if (!strncmp("--- ", patchline, 4) || !strncmp("+++ ", patchline, 4)) {
415 char *s, **name = reverse ? &newname : &oldname;
416 int i;
417
418 if (*patchline == '+') {
419 name = reverse ? &oldname : &newname;
420 state = 1;
421 }
422
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200423 finish_oldfile();
424
Denys Vlasenkoe7b0a9e2010-08-22 05:39:15 +0200425 if (!argv[0]) {
426 free(*name);
427 // Trim date from end of filename (if any). We don't care.
428 for (s = patchline+4; *s && *s!='\t'; s++)
429 if (*s=='\\' && s[1]) s++;
430 i = atoi(s);
431 if (i>1900 && i<=1970)
432 *name = xstrdup("/dev/null");
433 else {
434 *s = 0;
435 *name = xstrdup(patchline+4);
436 }
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200437 }
438
439 // We defer actually opening the file because svn produces broken
440 // patches that don't signal they want to create a new file the
441 // way the patch man page says, so you have to read the first hunk
442 // and _guess_.
443
Rob Landley760d0eb2010-08-13 16:40:21 +0200444 // Start a new hunk? Usually @@ -oldline,oldlen +newline,newlen @@
445 // but a missing ,value means the value is 1.
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200446 } else if (state == 1 && !strncmp("@@ -", patchline, 4)) {
447 int i;
Rob Landley760d0eb2010-08-13 16:40:21 +0200448 char *s = patchline+4;
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200449
Rob Landley760d0eb2010-08-13 16:40:21 +0200450 // Read oldline[,oldlen] +newline[,newlen]
451
Rob Landley8027a202010-11-29 03:24:51 +0100452 TT.oldlen = oldlen = TT.newlen = newlen = 1;
Rob Landley760d0eb2010-08-13 16:40:21 +0200453 TT.oldline = strtol(s, &s, 10);
Rob Landley8027a202010-11-29 03:24:51 +0100454 if (*s == ',') TT.oldlen = oldlen = strtol(s+1, &s, 10);
Rob Landley760d0eb2010-08-13 16:40:21 +0200455 TT.newline = strtol(s+2, &s, 10);
Rob Landley8027a202010-11-29 03:24:51 +0100456 if (*s == ',') TT.newlen = newlen = strtol(s+1, &s, 10);
457
458 if (oldlen < 1 && newlen < 1)
459 bb_error_msg_and_die("Really? %s", patchline);
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200460
461 TT.context = 0;
462 state = 2;
463
464 // If this is the first hunk, open the file.
465 if (TT.filein == -1) {
Lukas Huba08187352010-10-21 00:43:00 +0200466 int oldsum, newsum, empty = 0;
Rob Landley760d0eb2010-08-13 16:40:21 +0200467 char *name;
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200468
Rob Landley8027a202010-11-29 03:24:51 +0100469 oldsum = TT.oldline + oldlen;
470 newsum = TT.newline + newlen;
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200471
472 name = reverse ? oldname : newname;
473
474 // We're deleting oldname if new file is /dev/null (before -p)
475 // or if new hunk is empty (zero context) after patching
476 if (!strcmp(name, "/dev/null") || !(reverse ? oldsum : newsum))
477 {
478 name = reverse ? newname : oldname;
Lukas Huba08187352010-10-21 00:43:00 +0200479 empty++;
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200480 }
481
482 // handle -p path truncation.
483 for (i=0, s = name; *s;) {
484 if ((option_mask32 & FLAG_PATHLEN) && TT.prefix == i) break;
485 if (*(s++)=='/') {
486 name = s;
487 i++;
488 }
489 }
490
Lukas Huba08187352010-10-21 00:43:00 +0200491 if (empty) {
492 // File is empty after the patches have been applied
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200493 state = 0;
Lukas Huba08187352010-10-21 00:43:00 +0200494 if (option_mask32 & FLAG_RMEMPTY) {
495 // If flag -E or --remove-empty-files is set
496 printf("removing %s\n", name);
497 xunlink(name);
498 } else {
499 printf("patching file %s\n", name);
500 xclose(xopen(name, O_WRONLY | O_TRUNC));
501 }
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200502 // If we've got a file to open, do so.
503 } else if (!(option_mask32 & FLAG_PATHLEN) || i <= TT.prefix) {
Denys Vlasenkob82ae982010-11-21 05:53:34 +0100504 struct stat statbuf;
505
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200506 // If the old file was null, we're creating a new one.
507 if (!strcmp(oldname, "/dev/null") || !oldsum) {
508 printf("creating %s\n", name);
509 s = strrchr(name, '/');
510 if (s) {
511 *s = 0;
Denys Vlasenkob82ae982010-11-21 05:53:34 +0100512 bb_make_directory(name, -1, FILEUTILS_RECUR);
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200513 *s = '/';
514 }
Denys Vlasenkoc05387d2010-10-18 02:38:27 +0200515 TT.filein = xopen(name, O_CREAT|O_EXCL|O_RDWR);
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200516 } else {
517 printf("patching file %s\n", name);
Rob Landley9d113ca2010-10-04 00:49:48 +0200518 TT.filein = xopen(name, O_RDONLY);
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200519 }
Denys Vlasenkob82ae982010-11-21 05:53:34 +0100520
521 TT.tempname = xasprintf("%sXXXXXX", name);
522 TT.fileout = xmkstemp(TT.tempname);
523 // Set permissions of output file
524 fstat(TT.filein, &statbuf);
525 fchmod(TT.fileout, statbuf.st_mode);
526
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200527 TT.linenum = 0;
528 TT.hunknum = 0;
529 }
530 }
531
532 TT.hunknum++;
533
534 continue;
535 }
536
537 // If we didn't continue above, discard this line.
538 free(patchline);
Glenn L McGrath655d8142003-06-22 15:32:41 +0000539 }
540
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200541 finish_oldfile();
Glenn L McGrath655d8142003-06-22 15:32:41 +0000542
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200543 if (ENABLE_FEATURE_CLEAN_UP) {
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200544 free(oldname);
545 free(newname);
546 }
Denis Vlasenko64a76d72008-03-24 18:18:03 +0000547
Rob Landley1bbc0cd2010-08-13 15:50:26 +0200548 return TT.exitval;
Glenn L McGrath655d8142003-06-22 15:32:41 +0000549}